pixel-react 1.3.8 → 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (157) hide show
  1. package/lib/StyleGuide/ColorPalette/ColorPalette.stories.d.ts +6 -0
  2. package/lib/StyleGuide/Typography/Typography.stories.d.ts +6 -0
  3. package/lib/components/Accordion/Accordion.stories.d.ts +6 -0
  4. package/lib/components/AddButton/AddButton.d.ts +5 -0
  5. package/lib/components/AddButton/AddButton.stories.d.ts +6 -0
  6. package/lib/components/AddButton/index.d.ts +1 -0
  7. package/lib/components/AddButton/types.d.ts +4 -0
  8. package/lib/components/AddResourceButton/AddButton.stories.d.ts +8 -0
  9. package/lib/components/AllProjectsDropdown/AllProjectsDropdown.stories.d.ts +7 -0
  10. package/lib/components/AppHeader/AppHeader.stories.d.ts +7 -0
  11. package/lib/components/AttachImage/AttachImage.stories.d.ts +7 -0
  12. package/lib/components/AttachmentButton/AttachmentButton.stories.d.ts +9 -0
  13. package/lib/components/Avatar/Avatar.stories.d.ts +10 -0
  14. package/lib/components/Button/Button.stories.d.ts +13 -0
  15. package/lib/components/Charts/BarChart/BarChart.stories.d.ts +6 -0
  16. package/lib/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.d.ts +7 -0
  17. package/lib/components/Charts/DonutChart/DonutChart.stories.d.ts +6 -0
  18. package/lib/components/Charts/IconRadialChart/IconRadialChart.stories.d.ts +8 -0
  19. package/lib/components/Charts/LineChart/LineChart.stories.d.ts +7 -0
  20. package/lib/components/Charts/MultiRadialChart/MultiRadialChart.stories.d.ts +8 -0
  21. package/lib/components/Charts/PieChart/PieChart.stories.d.ts +7 -0
  22. package/lib/components/Charts/RadialChart/RadialChart.stories.d.ts +6 -0
  23. package/lib/components/Checkbox/Checkbox.stories.d.ts +8 -0
  24. package/lib/components/Chip/Chip.stories.d.ts +14 -0
  25. package/lib/components/ConnectingBranch/ConnectingBranch.stories.d.ts +6 -0
  26. package/lib/components/DatePicker/DatePicker.stories.d.ts +9 -0
  27. package/lib/components/DragAndDrop/DragAndDrop.stories.d.ts +6 -0
  28. package/lib/components/Drawer/Drawer.stories.d.ts +12 -0
  29. package/lib/components/EditTextField/EditTextField.stories.d.ts +10 -0
  30. package/lib/components/Editor/Editor.stories.d.ts +6 -0
  31. package/lib/components/Excel/ExcelFile.stories.d.ts +6 -0
  32. package/lib/components/ExcelFile/ChangeExcelStyles.d.ts +14 -0
  33. package/lib/components/ExcelFile/ColorBarSelector/ColorBarSelector.d.ts +8 -0
  34. package/lib/components/ExcelFile/ContextMenu/ContextMenu.d.ts +4 -0
  35. package/lib/components/ExcelFile/ExcelFile/Excel/ActiveCell.d.ts +7 -0
  36. package/lib/components/ExcelFile/ExcelFile/Excel/Cell.d.ts +4 -0
  37. package/lib/components/ExcelFile/ExcelFile/Excel/ColumnIndicator.d.ts +5 -0
  38. package/lib/components/ExcelFile/ExcelFile/Excel/Copied.d.ts +3 -0
  39. package/lib/components/ExcelFile/ExcelFile/Excel/CornerIndicator.d.ts +5 -0
  40. package/lib/components/ExcelFile/ExcelFile/Excel/DataEditor.d.ts +5 -0
  41. package/lib/components/ExcelFile/ExcelFile/Excel/DataViewer.d.ts +8 -0
  42. package/lib/components/ExcelFile/ExcelFile/Excel/FloatingRect.d.ts +10 -0
  43. package/lib/components/ExcelFile/ExcelFile/Excel/HeaderRow.d.ts +3 -0
  44. package/lib/components/ExcelFile/ExcelFile/Excel/Row.d.ts +3 -0
  45. package/lib/components/ExcelFile/ExcelFile/Excel/RowIndicator.d.ts +5 -0
  46. package/lib/components/ExcelFile/ExcelFile/Excel/Selected.d.ts +3 -0
  47. package/lib/components/ExcelFile/ExcelFile/Excel/Spreadsheet.d.ts +80 -0
  48. package/lib/components/ExcelFile/ExcelFile/Excel/Table.d.ts +3 -0
  49. package/lib/components/ExcelFile/ExcelFile/Excel/actions.d.ts +174 -0
  50. package/lib/components/ExcelFile/ExcelFile/Excel/areModelsEqual.d.ts +1 -0
  51. package/lib/components/ExcelFile/ExcelFile/Excel/context.d.ts +8 -0
  52. package/lib/components/ExcelFile/ExcelFile/Excel/engine/engine.d.ts +22 -0
  53. package/lib/components/ExcelFile/ExcelFile/Excel/engine/formula.d.ts +17 -0
  54. package/lib/components/ExcelFile/ExcelFile/Excel/engine/index.d.ts +2 -0
  55. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-graph.d.ts +21 -0
  56. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-hash.d.ts +3 -0
  57. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-set.d.ts +24 -0
  58. package/lib/components/ExcelFile/ExcelFile/Excel/index.d.ts +13 -0
  59. package/lib/components/ExcelFile/ExcelFile/Excel/matrix.d.ts +67 -0
  60. package/lib/components/ExcelFile/ExcelFile/Excel/point-range.d.ts +22 -0
  61. package/lib/components/ExcelFile/ExcelFile/Excel/point.d.ts +11 -0
  62. package/lib/components/ExcelFile/ExcelFile/Excel/reducer.d.ts +27 -0
  63. package/lib/components/ExcelFile/ExcelFile/Excel/selection.d.ts +95 -0
  64. package/lib/components/ExcelFile/ExcelFile/Excel/types.d.ts +178 -0
  65. package/lib/components/ExcelFile/ExcelFile/Excel/use-dispatch.d.ts +3 -0
  66. package/lib/components/ExcelFile/ExcelFile/Excel/use-selector.d.ts +3 -0
  67. package/lib/components/ExcelFile/ExcelFile/Excel/util.d.ts +44 -0
  68. package/lib/components/ExcelFile/ExcelFile/ExcelFile.d.ts +19 -0
  69. package/lib/components/ExcelFile/ExcelFile.stories.d.ts +6 -0
  70. package/lib/components/ExcelFile/ExcelSheetBar/ExcelSheetBar.d.ts +12 -0
  71. package/lib/components/ExcelFile/ExcelToolBar/ExcelToolBar.d.ts +15 -0
  72. package/lib/components/ExcelFile/ImportExcelStyles.d.ts +24 -0
  73. package/lib/components/ExcelFile/Types.d.ts +129 -0
  74. package/lib/components/ExcelFile/index.d.ts +1 -0
  75. package/lib/components/ExpandableMenu/ExpandableMenu.stories.d.ts +7 -0
  76. package/lib/components/FF_Captcha/captcha.stories.d.ts +8 -0
  77. package/lib/components/FileDropzone/FileDropzone.stories.d.ts +8 -0
  78. package/lib/components/Form/Form.stories.d.ts +7 -0
  79. package/lib/components/GridLayout/GridLayout.stories.d.ts +8 -0
  80. package/lib/components/HighlightText/HighlightText.stories.d.ts +6 -0
  81. package/lib/components/Icon/Icon.stories.d.ts +8 -0
  82. package/lib/components/IconButton/IconButton.stories.d.ts +7 -0
  83. package/lib/components/IconRadioGroup/IconRadioGroup.stories.d.ts +7 -0
  84. package/lib/components/Input/Input.stories.d.ts +9 -0
  85. package/lib/components/InputWithDropdown/InputWithDropdown.stories.d.ts +9 -0
  86. package/lib/components/LabelEditTextField/LabelEditTextField.stories.d.ts +13 -0
  87. package/lib/components/LazyLoad/LazyLoad.stories.d.ts +6 -0
  88. package/lib/components/MachineInputField/MachineInputField.stories.d.ts +6 -0
  89. package/lib/components/MenuOption/MenuOption.stories.d.ts +16 -0
  90. package/lib/components/MiniModal/MiniModal.stories.d.ts +10 -0
  91. package/lib/components/Modal/Modal.stories.d.ts +7 -0
  92. package/lib/components/ModulesChip/ModuleChip.stories.d.ts +6 -0
  93. package/lib/components/MultiSelect/MultiSelect.stories.d.ts +11 -0
  94. package/lib/components/NLPInput/NlpInput.stories.d.ts +7 -0
  95. package/lib/components/Paper/Paper.stories.d.ts +11 -0
  96. package/lib/components/RadioButton/RadioButton.stories.d.ts +10 -0
  97. package/lib/components/RadioGroup/RadioGroup.stories.d.ts +9 -0
  98. package/lib/components/Search/Search.stories.d.ts +6 -0
  99. package/lib/components/Select/Select.stories.d.ts +14 -0
  100. package/lib/components/Select/components/Dropdown/Dropdown.d.ts +4 -0
  101. package/lib/components/Select/components/Dropdown/dropdownTypes.d.ts +17 -0
  102. package/lib/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.d.ts +6 -0
  103. package/lib/components/StateDropdown/StateDropdown.stories.d.ts +10 -0
  104. package/lib/components/StatusButton/StatusButton.stories.d.ts +14 -0
  105. package/lib/components/StatusCard/StatusCard.stories.d.ts +11 -0
  106. package/lib/components/Table/Table.stories.d.ts +13 -0
  107. package/lib/components/TableTree/TableTree.stories.d.ts +7 -0
  108. package/lib/components/Tabs/Tabs.stories.d.ts +9 -0
  109. package/lib/components/TextArea/Textarea.stories.d.ts +9 -0
  110. package/lib/components/Toast/Toast.stories.d.ts +6 -0
  111. package/lib/components/Toastify/Toastify.stories.d.ts +6 -0
  112. package/lib/components/Toggle/Toggle.stories.d.ts +12 -0
  113. package/lib/components/Tooltip/Tooltip.stories.d.ts +15 -0
  114. package/lib/components/Typography/Typography.stories.d.ts +10 -0
  115. package/lib/components/VariableInput/VariableInput.stories.d.ts +6 -0
  116. package/lib/index.d.ts +3 -1
  117. package/lib/index.esm.js +114 -78
  118. package/lib/index.esm.js.map +1 -1
  119. package/lib/index.js +114 -77
  120. package/lib/index.js.map +1 -1
  121. package/lib/tsconfig.tsbuildinfo +1 -1
  122. package/lib/utils/checkEmpty/checkEmpty.stories.d.ts +6 -0
  123. package/lib/utils/compareArrays/compareArrays.stories.d.ts +6 -0
  124. package/lib/utils/compareObjects/compareObjects.stories.d.ts +6 -0
  125. package/lib/utils/debounce/debounce.stories.d.ts +6 -0
  126. package/lib/utils/downloadFile/saveFileFromBlob.d.ts +1 -0
  127. package/lib/utils/ffID/ffID.stories.d.ts +6 -0
  128. package/lib/utils/find/findAndInsert.d.ts +7 -0
  129. package/lib/utils/find/findAndInsert.stories.d.ts +7 -0
  130. package/lib/utils/findAndInsert/findAndInsert.stories.d.ts +7 -0
  131. package/lib/utils/getEncryptedData/getEncryptedData.stories.d.ts +6 -0
  132. package/lib/utils/getExtension/getExtension.stories.d.ts +6 -0
  133. package/lib/utils/getSequentialPayload/getSequentialPayload.stories.d.ts +10 -0
  134. package/lib/utils/throttle/throttle.stories.d.ts +6 -0
  135. package/lib/utils/truncateText/truncateText.stories.d.ts +6 -0
  136. package/package.json +1 -1
  137. package/src/assets/icons/sample_template_first.svg +29 -0
  138. package/src/assets/icons/sample_template_second.svg +47 -0
  139. package/src/assets/styles/_fonts.scss +4 -4
  140. package/src/components/AllProjectsDropdown/AllProjectsDropdown.scss +2 -3
  141. package/src/components/AllProjectsDropdown/AllProjectsDropdown.tsx +1 -0
  142. package/src/components/AppHeader/AppHeader.scss +0 -1
  143. package/src/components/Icon/Icon.tsx +1 -0
  144. package/src/components/Icon/iconList.ts +6 -2
  145. package/src/components/Modal/Modal.tsx +2 -2
  146. package/src/index.ts +2 -0
  147. package/src/utils/downloadFile/saveFileFromBlob.stories.tsx +62 -0
  148. package/src/utils/downloadFile/saveFileFromBlob.ts +40 -0
  149. /package/lib/assets/fonts/{Poppins/Poppins-Bold.ttf → Poppins-Bold.ttf} +0 -0
  150. /package/lib/assets/fonts/{Poppins/Poppins-Medium.ttf → Poppins-Medium.ttf} +0 -0
  151. /package/lib/assets/fonts/{Poppins/Poppins-Regular.ttf → Poppins-Regular.ttf} +0 -0
  152. /package/lib/assets/fonts/{Poppins/Poppins-SemiBold.ttf → Poppins-SemiBold.ttf} +0 -0
  153. /package/src/assets/fonts/{Poppins/Poppins-Bold.ttf → Poppins-Bold.ttf} +0 -0
  154. /package/src/assets/fonts/{Poppins/Poppins-Medium.ttf → Poppins-Medium.ttf} +0 -0
  155. /package/src/assets/fonts/{Poppins/Poppins-Regular.ttf → Poppins-Regular.ttf} +0 -0
  156. /package/src/assets/fonts/{Poppins/Poppins-SemiBold.ttf → Poppins-SemiBold.ttf} +0 -0
  157. /package/src/assets/icons/{fireflink_standard_template.svg → standard_template.svg} +0 -0
package/lib/index.js CHANGED
@@ -48,7 +48,7 @@ function styleInject(css, ref) {
48
48
  }
49
49
  }
50
50
 
51
- var css_248z$14 = ":root {\n --tooltip-bg-color: #1e161f;\n --status-approved-text-color: #016102;\n --status-warning-text-color: #ff8b00;\n --status-rejected-text-color: #c60202;\n --status-skipped-text-color: #3c3838;\n --status-approved-bg-color: #c6efcd;\n --status-rejected-bg-color: #f7d9d9;\n --status-warning-bg-color: #fae2c6;\n --status-skipped-bg-color: #c4c3c3;\n --brand-color: #71347b;\n --icons-default-color: #71347b;\n --default-icon-color: #a3a3a3;\n --default-color: #747474;\n --primary-icon-color: #ffffff;\n --secondary-icon-color: #71347b;\n --system-color--error: #c50303;\n --hover-color: #f7ebff;\n --brand2-color: #610b86;\n --status-warning-hover-bg-color: #fcd8ac;\n --status-percentage-growth-bg-color: #ecedf8;\n --primary-icon-color: #ffffff;\n --secondary-icon-color: #71347b;\n --description-text-color: #d9d9d9;\n --expandable-menu-default-bg: #fdfaff;\n --expandable-menu-option-bg: rgba(97, 11, 134, 0.1019607843);\n --text-color: #1e161f;\n --file-dropzone-default-color: rgba(113, 52, 123, 0.1019607843);\n --file-dropzone-selected-color: rgba(113, 52, 123, 0.2);\n --file-details-container-shadow: rgba(30, 22, 31, 0.1607843137);\n --file-details-bg: #ffffff;\n --error-light: #e42525;\n --tabs-label-default-color: tabs-label-default-color;\n --tabs-label-active-color: tabs-label-active-color;\n --tabs-border-color: tabs-border-color;\n --tabs-bg-color: tabs-bg-color;\n --tab-bg-color: tab-bg-color;\n --toggle-button-bg-color: #ffffff;\n --toggle-strip-shadow: rgba(0, 0, 0, 0.2509803922);\n --toggle-strip-color: #cfd1e2;\n --disable-color: rgba(113, 52, 123, 0.5019607843);\n --toggle-strip-color: #cfd1e2;\n --add-icon-hover-color: #431b4a;\n --arrows-button-border-color: #ded1e5;\n --arrow-button-bg-color: #ffffff;\n --text-bg-highlight: #f5fb00;\n --slider-table-color: #efe1f9;\n --variable-dropdown-bg: #($variable-dropdown-bg);\n}\n\n@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs, .ff-button, .ff-button--small, .ff-button--medium {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd, .ff-button--large {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-button {\n width: auto;\n background-color: #ffffff;\n border-radius: 4px;\n padding: 4px 8px;\n text-align: center;\n text-decoration: none;\n font-weight: 500;\n cursor: pointer;\n display: flex;\n gap: 4px;\n justify-content: center;\n align-items: center;\n border: 2px solid transparent;\n}\n.ff-button--transparent {\n background-color: transparent;\n}\n.ff-button--primary, .ff-button--delete, .ff-button--secondary {\n position: relative;\n cursor: pointer;\n border-radius: 4px;\n z-index: 1;\n border: none;\n overflow: hidden;\n}\n.ff-button--primary:before, .ff-button--delete:before, .ff-button--secondary:before {\n content: \"\";\n position: absolute;\n inset: 0;\n border-radius: 4px;\n padding: 0.6px;\n background: linear-gradient(180deg, #46164d 3.04%, #71347b 100%);\n mask: linear-gradient(#ffffff 0 0) content-box, linear-gradient(#ffffff 0 0);\n mask-composite: exclude;\n -webkit-mask: linear-gradient(#ffffff 0 0) content-box, linear-gradient(#ffffff 0 0);\n -webkit-mask-composite: destination-out;\n z-index: -1;\n}\n.ff-button--primary:hover, .ff-button--delete:hover, .ff-button--secondary:hover {\n background: linear-gradient(179.06deg, #8d3b9a 3.49%, #781f86 99.22%);\n}\n.ff-button--primary:disabled, .ff-button--delete:disabled, .ff-button--secondary:disabled {\n opacity: 50%;\n cursor: no-drop;\n}\n.ff-button--primary:disabled:before, .ff-button--delete:disabled:before, .ff-button--secondary:disabled:before {\n content: \"\";\n position: absolute;\n inset: 0;\n border-radius: 4px;\n padding: 0.6px;\n -webkit-mask-composite: destination-out;\n mask-composite: exclude;\n z-index: -1;\n}\n.ff-button--primary {\n background: linear-gradient(188.79deg, #71347b 2.94%, #46164d 93.09%);\n}\n.ff-button--primary:before {\n background: linear-gradient(180deg, #46164d 3.04%, #71347b 100%);\n}\n.ff-button--primary:hover {\n background: linear-gradient(179.06deg, #8d3b9a 3.49%, #781f86 99.22%);\n}\n.ff-button--delete {\n background: linear-gradient(179.06deg, #e42525 3.49%, #c90000 99.22%);\n color: #ffffff;\n}\n.ff-button--delete:before {\n background: linear-gradient(180deg, #a90707 3.04%, #e42525 100%);\n}\n.ff-button--delete:hover {\n background: linear-gradient(179.06deg, #e95151 3.49%, #d43434 99.22%);\n}\n.ff-button--warning {\n background: var(--warning-button-color);\n border: var(--warning-button-border);\n}\n.ff-button--secondary:before {\n background: linear-gradient(180deg, #46164d 3.04%, #71347b 100%);\n}\n.ff-button--secondary:hover {\n background: linear-gradient(179.06deg, rgba(113, 52, 123, 0.0509803922) 3.49%, rgba(70, 22, 77, 0.0509803922) 99.22%);\n}\n.ff-button--tertiary {\n border: none;\n background: linear-gradient(179.06deg, rgba(113, 52, 123, 0.0509803922) 3.49%, rgba(70, 22, 77, 0.0509803922) 99.22%);\n}\n.ff-button--tertiary:hover {\n background: linear-gradient(179.06deg, rgba(113, 52, 123, 0.1019607843) 3.49%, rgba(70, 22, 77, 0.1019607843) 99.22%);\n}\n.ff-button--tertiary:disabled {\n opacity: 0.5;\n cursor: no-drop;\n}\n.ff-button--small {\n font-weight: 500;\n padding: 4.5px 8px;\n line-height: 15px;\n}\n.ff-button--medium {\n font-weight: 500;\n padding: 6px 12px;\n}\n.ff-button--large {\n padding: 8px 16px;\n}\n.ff-button-primary--text {\n color: #ffffff;\n}\n.ff-button-secondary--text, .ff-button-tertiary--text {\n background: linear-gradient(179.06deg, #71347b 3.49%, #46164d 99.22%);\n -webkit-background-clip: text;\n background-clip: text;\n color: transparent;\n}";
51
+ var css_248z$14 = ":root {\n --tooltip-bg-color: #1e161f;\n --status-approved-text-color: #016102;\n --status-warning-text-color: #ff8b00;\n --status-rejected-text-color: #c60202;\n --status-skipped-text-color: #3c3838;\n --status-approved-bg-color: #c6efcd;\n --status-rejected-bg-color: #f7d9d9;\n --status-warning-bg-color: #fae2c6;\n --status-skipped-bg-color: #c4c3c3;\n --brand-color: #71347b;\n --icons-default-color: #71347b;\n --default-icon-color: #a3a3a3;\n --default-color: #747474;\n --primary-icon-color: #ffffff;\n --secondary-icon-color: #71347b;\n --system-color--error: #c50303;\n --hover-color: #f7ebff;\n --brand2-color: #610b86;\n --status-warning-hover-bg-color: #fcd8ac;\n --status-percentage-growth-bg-color: #ecedf8;\n --primary-icon-color: #ffffff;\n --secondary-icon-color: #71347b;\n --description-text-color: #d9d9d9;\n --expandable-menu-default-bg: #fdfaff;\n --expandable-menu-option-bg: rgba(97, 11, 134, 0.1019607843);\n --text-color: #1e161f;\n --file-dropzone-default-color: rgba(113, 52, 123, 0.1019607843);\n --file-dropzone-selected-color: rgba(113, 52, 123, 0.2);\n --file-details-container-shadow: rgba(30, 22, 31, 0.1607843137);\n --file-details-bg: #ffffff;\n --error-light: #e42525;\n --tabs-label-default-color: tabs-label-default-color;\n --tabs-label-active-color: tabs-label-active-color;\n --tabs-border-color: tabs-border-color;\n --tabs-bg-color: tabs-bg-color;\n --tab-bg-color: tab-bg-color;\n --toggle-button-bg-color: #ffffff;\n --toggle-strip-shadow: rgba(0, 0, 0, 0.2509803922);\n --toggle-strip-color: #cfd1e2;\n --disable-color: rgba(113, 52, 123, 0.5019607843);\n --toggle-strip-color: #cfd1e2;\n --add-icon-hover-color: #431b4a;\n --arrows-button-border-color: #ded1e5;\n --arrow-button-bg-color: #ffffff;\n --text-bg-highlight: #f5fb00;\n --slider-table-color: #efe1f9;\n --variable-dropdown-bg: #($variable-dropdown-bg);\n}\n\n@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs, .ff-button, .ff-button--small, .ff-button--medium {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd, .ff-button--large {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-button {\n width: auto;\n background-color: #ffffff;\n border-radius: 4px;\n padding: 4px 8px;\n text-align: center;\n text-decoration: none;\n font-weight: 500;\n cursor: pointer;\n display: flex;\n gap: 4px;\n justify-content: center;\n align-items: center;\n border: 2px solid transparent;\n}\n.ff-button--transparent {\n background-color: transparent;\n}\n.ff-button--primary, .ff-button--delete, .ff-button--secondary {\n position: relative;\n cursor: pointer;\n border-radius: 4px;\n z-index: 1;\n border: none;\n overflow: hidden;\n}\n.ff-button--primary:before, .ff-button--delete:before, .ff-button--secondary:before {\n content: \"\";\n position: absolute;\n inset: 0;\n border-radius: 4px;\n padding: 0.6px;\n background: linear-gradient(180deg, #46164d 3.04%, #71347b 100%);\n mask: linear-gradient(#ffffff 0 0) content-box, linear-gradient(#ffffff 0 0);\n mask-composite: exclude;\n -webkit-mask: linear-gradient(#ffffff 0 0) content-box, linear-gradient(#ffffff 0 0);\n -webkit-mask-composite: destination-out;\n z-index: -1;\n}\n.ff-button--primary:hover, .ff-button--delete:hover, .ff-button--secondary:hover {\n background: linear-gradient(179.06deg, #8d3b9a 3.49%, #781f86 99.22%);\n}\n.ff-button--primary:disabled, .ff-button--delete:disabled, .ff-button--secondary:disabled {\n opacity: 50%;\n cursor: no-drop;\n}\n.ff-button--primary:disabled:before, .ff-button--delete:disabled:before, .ff-button--secondary:disabled:before {\n content: \"\";\n position: absolute;\n inset: 0;\n border-radius: 4px;\n padding: 0.6px;\n -webkit-mask-composite: destination-out;\n mask-composite: exclude;\n z-index: -1;\n}\n.ff-button--primary {\n background: linear-gradient(188.79deg, #71347b 2.94%, #46164d 93.09%);\n}\n.ff-button--primary:before {\n background: linear-gradient(180deg, #46164d 3.04%, #71347b 100%);\n}\n.ff-button--primary:hover {\n background: linear-gradient(179.06deg, #8d3b9a 3.49%, #781f86 99.22%);\n}\n.ff-button--delete {\n background: linear-gradient(179.06deg, #e42525 3.49%, #c90000 99.22%);\n color: #ffffff;\n}\n.ff-button--delete:before {\n background: linear-gradient(180deg, #a90707 3.04%, #e42525 100%);\n}\n.ff-button--delete:hover {\n background: linear-gradient(179.06deg, #e95151 3.49%, #d43434 99.22%);\n}\n.ff-button--warning {\n background: var(--warning-button-color);\n border: var(--warning-button-border);\n}\n.ff-button--secondary:before {\n background: linear-gradient(180deg, #46164d 3.04%, #71347b 100%);\n}\n.ff-button--secondary:hover {\n background: linear-gradient(179.06deg, rgba(113, 52, 123, 0.0509803922) 3.49%, rgba(70, 22, 77, 0.0509803922) 99.22%);\n}\n.ff-button--tertiary {\n border: none;\n background: linear-gradient(179.06deg, rgba(113, 52, 123, 0.0509803922) 3.49%, rgba(70, 22, 77, 0.0509803922) 99.22%);\n}\n.ff-button--tertiary:hover {\n background: linear-gradient(179.06deg, rgba(113, 52, 123, 0.1019607843) 3.49%, rgba(70, 22, 77, 0.1019607843) 99.22%);\n}\n.ff-button--tertiary:disabled {\n opacity: 0.5;\n cursor: no-drop;\n}\n.ff-button--small {\n font-weight: 500;\n padding: 4.5px 8px;\n line-height: 15px;\n}\n.ff-button--medium {\n font-weight: 500;\n padding: 6px 12px;\n}\n.ff-button--large {\n padding: 8px 16px;\n}\n.ff-button-primary--text {\n color: #ffffff;\n}\n.ff-button-secondary--text, .ff-button-tertiary--text {\n background: linear-gradient(179.06deg, #71347b 3.49%, #46164d 99.22%);\n -webkit-background-clip: text;\n background-clip: text;\n color: transparent;\n}";
52
52
  styleInject(css_248z$14);
53
53
 
54
54
  var css_248z$13 = ":root {\n --tooltip-bg-color: #1e161f;\n --status-approved-text-color: #016102;\n --status-warning-text-color: #ff8b00;\n --status-rejected-text-color: #c60202;\n --status-skipped-text-color: #3c3838;\n --status-approved-bg-color: #c6efcd;\n --status-rejected-bg-color: #f7d9d9;\n --status-warning-bg-color: #fae2c6;\n --status-skipped-bg-color: #c4c3c3;\n --brand-color: #71347b;\n --icons-default-color: #71347b;\n --default-icon-color: #a3a3a3;\n --default-color: #747474;\n --primary-icon-color: #ffffff;\n --secondary-icon-color: #71347b;\n --system-color--error: #c50303;\n --hover-color: #f7ebff;\n --brand2-color: #610b86;\n --status-warning-hover-bg-color: #fcd8ac;\n --status-percentage-growth-bg-color: #ecedf8;\n --primary-icon-color: #ffffff;\n --secondary-icon-color: #71347b;\n --description-text-color: #d9d9d9;\n --expandable-menu-default-bg: #fdfaff;\n --expandable-menu-option-bg: rgba(97, 11, 134, 0.1019607843);\n --text-color: #1e161f;\n --file-dropzone-default-color: rgba(113, 52, 123, 0.1019607843);\n --file-dropzone-selected-color: rgba(113, 52, 123, 0.2);\n --file-details-container-shadow: rgba(30, 22, 31, 0.1607843137);\n --file-details-bg: #ffffff;\n --error-light: #e42525;\n --tabs-label-default-color: tabs-label-default-color;\n --tabs-label-active-color: tabs-label-active-color;\n --tabs-border-color: tabs-border-color;\n --tabs-bg-color: tabs-bg-color;\n --tab-bg-color: tab-bg-color;\n --toggle-button-bg-color: #ffffff;\n --toggle-strip-shadow: rgba(0, 0, 0, 0.2509803922);\n --toggle-strip-color: #cfd1e2;\n --disable-color: rgba(113, 52, 123, 0.5019607843);\n --toggle-strip-color: #cfd1e2;\n --add-icon-hover-color: #431b4a;\n --arrows-button-border-color: #ded1e5;\n --arrow-button-bg-color: #ffffff;\n --text-bg-highlight: #f5fb00;\n --slider-table-color: #efe1f9;\n --variable-dropdown-bg: #($variable-dropdown-bg);\n}";
@@ -435,7 +435,11 @@ const SvgSendStep = (props) => /* @__PURE__ */ React__namespace.createElement("s
435
435
 
436
436
  const SvgNoLicenseFound = (props) => /* @__PURE__ */ React__namespace.createElement("svg", { width: "1em", height: "1em", viewBox: "0 0 121 121", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props }, /* @__PURE__ */ React__namespace.createElement("g", { clipPath: "url(#clip0_5382_30932)" }, /* @__PURE__ */ React__namespace.createElement("path", { d: "M58.9145 5.52071H13.7748C7.73823 5.52071 2.84479 10.387 2.84479 16.3895V97.0915C2.84479 103.094 7.73823 107.96 13.7748 107.96H65.9273C71.9638 107.96 76.8572 103.094 76.8572 97.0915V26.2608L58.9145 5.52071Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M76.857 35.818C76.2387 35.787 75.6178 35.7713 74.9944 35.7713C65.2515 35.7713 56.0944 39.5718 49.2101 46.4728C35.0342 60.6834 35.0342 83.8055 49.2101 98.0161C54.2205 103.039 60.4347 106.419 67.2025 107.887C72.6381 107.259 76.857 102.665 76.857 97.0915V35.818Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M58.9146 26.2608H76.857L58.9146 5.52071V26.2608Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M47.6293 86.3579L45.3719 93.4883H20.2798V79.2273H39.2461L45.9098 82.35L47.6293 86.3579Z", fill: "#9E30B0" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M45.3719 93.4883H61.234V79.2273H39.2461C40.2209 84.2719 42.2628 89.1483 45.3719 93.4883Z", fill: "#9E30B0" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M74.9941 98.2046C89.2966 98.2046 100.891 86.5819 100.891 72.2446C100.891 57.9073 89.2966 46.2846 74.9941 46.2846C60.6916 46.2846 49.0972 57.9073 49.0972 72.2446C49.0972 86.5819 60.6916 98.2046 74.9941 98.2046Z", fill: "#8D359C" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M116.66 113.971C114.656 115.98 111.403 115.982 109.397 113.975L96.1038 100.679L103.359 93.4056L116.656 106.706C118.661 108.712 118.663 111.964 116.66 113.971Z", fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M56.8663 55.4009H20.2799C18.9854 55.4009 17.936 54.3516 17.936 53.0571C17.936 51.7626 18.9854 50.7132 20.2799 50.7132H56.8665C58.161 50.7132 59.2104 51.7626 59.2104 53.0571C59.2104 54.3516 58.1608 55.4009 56.8663 55.4009Z", fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M49.7692 67.2698H20.2799C18.9854 67.2698 17.936 66.2205 17.936 64.926C17.936 63.6315 18.9854 62.5821 20.2799 62.5821H49.7692C51.0637 62.5821 52.113 63.6315 52.113 64.926C52.113 66.2205 51.0637 67.2698 49.7692 67.2698Z", fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M61.2338 43.532H20.2799C18.9854 43.532 17.936 42.4826 17.936 41.1881C17.936 39.8937 18.9854 38.8443 20.2799 38.8443H61.2338C62.5283 38.8443 63.5776 39.8937 63.5776 41.1881C63.5776 42.4826 62.5283 43.532 61.2338 43.532Z", fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M43.9835 31.6631H20.2799C18.9854 31.6631 17.936 30.6137 17.936 29.3192C17.936 28.0247 18.9854 26.9754 20.2799 26.9754H43.9835C45.278 26.9754 46.3273 28.0247 46.3273 29.3192C46.3273 30.6137 45.278 31.6631 43.9835 31.6631Z", fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M118.314 105.049L105.017 91.7485C104.577 91.3088 103.981 91.0618 103.359 91.0618H103.358C102.736 91.062 102.139 91.3097 101.7 91.7504L99.7316 93.7234L96.5492 90.5332C105.945 79.4258 105.417 62.7101 94.9654 52.2327C90.6362 47.8929 85.1483 45.1354 79.2009 44.2506V26.2608C79.2009 25.6976 78.9981 25.1531 78.6294 24.7274L60.687 3.98738C60.2419 3.47268 59.595 3.17689 58.9143 3.17689H13.7748C6.45547 3.17689 0.500977 9.10419 0.500977 16.3895V97.0915C0.500977 104.377 6.45547 110.304 13.7748 110.304H65.9271C72.0297 110.304 77.3506 106.084 78.8066 100.294C84.1381 99.5778 89.1148 97.3613 93.2385 93.8519L96.4207 97.042L94.4444 99.0233C93.531 99.9388 93.5317 101.421 94.446 102.336L107.739 115.632C109.152 117.045 111.029 117.823 113.026 117.823H113.03C115.029 117.822 116.907 117.042 118.319 115.626C121.23 112.709 121.228 107.964 118.314 105.049ZM91.6468 88.9457C87.1985 93.4049 81.2845 95.8607 74.9941 95.8607C68.704 95.8607 62.7901 93.4049 58.3417 88.9457C49.1551 79.7366 49.1551 64.7525 58.3417 55.5434C62.7901 51.0843 68.704 48.6284 74.9941 48.6284C81.2843 48.6284 87.1985 51.0843 91.6468 55.5434C100.833 64.7525 100.833 79.7366 91.6468 88.9457ZM65.9271 105.616H13.7748C9.04048 105.616 5.18863 101.792 5.18863 97.0915V16.3895C5.18863 11.6887 9.04048 7.86454 13.7748 7.86454H57.8432L74.5134 27.1339V43.9447C67.1489 44.0671 60.244 46.9992 55.0233 52.2327C44.0155 63.2672 44.0155 81.2219 55.0233 92.2564C60.0719 97.3174 66.6956 100.226 73.7868 100.523C72.4406 103.538 69.3772 105.616 65.9271 105.616ZM115.001 112.316C114.474 112.844 113.774 113.135 113.028 113.135H113.027C112.282 113.135 111.581 112.845 111.054 112.318L99.4161 100.677L103.361 96.7226L114.999 108.363C116.088 109.453 116.089 111.225 115.001 112.316Z", fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M78.2987 72.2446L83.0537 67.4603C83.9661 66.5423 83.9617 65.0582 83.0436 64.1457C82.1257 63.2333 80.6416 63.2377 79.7289 64.1558L74.9942 68.9196L70.2594 64.1558C69.3465 63.2375 67.8626 63.2333 66.9448 64.1457C66.0267 65.0584 66.022 66.5423 66.9347 67.4603L71.6896 72.2446L66.9347 77.0288C66.0222 77.9469 66.0267 79.431 66.9448 80.3434C67.402 80.7979 67.9995 81.0248 68.5969 81.0248C69.199 81.0248 69.8014 80.7941 70.2594 80.3331L74.9942 75.5693L79.7289 80.3331C80.1872 80.7941 80.789 81.0248 81.3914 81.0248C81.9889 81.0248 82.5865 80.7977 83.0436 80.3434C83.9617 79.4307 83.9663 77.9469 83.0537 77.0288L78.2987 72.2446Z", fill: "white" })), /* @__PURE__ */ React__namespace.createElement("defs", null, /* @__PURE__ */ React__namespace.createElement("clipPath", { id: "clip0_5382_30932" }, /* @__PURE__ */ React__namespace.createElement("rect", { width: 120, height: 120, fill: "white", transform: "translate(0.500977 0.5)" }))));
437
437
 
438
- const SvgFireflinkStandardTemplate = (props) => /* @__PURE__ */ React__namespace.createElement("svg", { width: "1em", height: "1em", viewBox: "0 0 840 164", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props }, /* @__PURE__ */ React__namespace.createElement("rect", { x: 160, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M214.492 17H212.812L209.008 11.252V17H207.328V8.612H209.008L212.812 14.372V8.612H214.492V17ZM222.332 13.532C222.332 13.772 222.316 13.988 222.284 14.18H217.424C217.464 14.66 217.632 15.036 217.928 15.308C218.224 15.58 218.588 15.716 219.02 15.716C219.644 15.716 220.088 15.448 220.352 14.912H222.164C221.972 15.552 221.604 16.08 221.06 16.496C220.516 16.904 219.848 17.108 219.056 17.108C218.416 17.108 217.84 16.968 217.328 16.688C216.824 16.4 216.428 15.996 216.14 15.476C215.86 14.956 215.72 14.356 215.72 13.676C215.72 12.988 215.86 12.384 216.14 11.864C216.42 11.344 216.812 10.944 217.316 10.664C217.82 10.384 218.4 10.244 219.056 10.244C219.688 10.244 220.252 10.38 220.748 10.652C221.252 10.924 221.64 11.312 221.912 11.816C222.192 12.312 222.332 12.884 222.332 13.532ZM220.592 13.052C220.584 12.62 220.428 12.276 220.124 12.02C219.82 11.756 219.448 11.624 219.008 11.624C218.592 11.624 218.24 11.752 217.952 12.008C217.672 12.256 217.5 12.604 217.436 13.052H220.592ZM232.774 10.352L230.83 17H229.018L227.806 12.356L226.594 17H224.77L222.814 10.352H224.518L225.694 15.416L226.966 10.352H228.742L229.99 15.404L231.166 10.352H232.774Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M219.646 46.3536C219.842 46.5488 220.158 46.5488 220.354 46.3536L223.536 43.1716C223.731 42.9763 223.731 42.6597 223.536 42.4645C223.34 42.2692 223.024 42.2692 222.828 42.4645L220 45.2929L217.172 42.4645C216.976 42.2692 216.66 42.2692 216.464 42.4645C216.269 42.6597 216.269 42.9763 216.464 43.1716L219.646 46.3536ZM219.5 26V46H220.5V26H219.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 160, y: 46, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M197.464 61.404H194.128L193.576 63H191.812L194.824 54.612H196.78L199.792 63H198.016L197.464 61.404ZM197.008 60.06L195.796 56.556L194.584 60.06H197.008ZM203.462 63.108C202.918 63.108 202.43 63.012 201.998 62.82C201.566 62.62 201.222 62.352 200.966 62.016C200.718 61.68 200.582 61.308 200.558 60.9H202.25C202.282 61.156 202.406 61.368 202.622 61.536C202.846 61.704 203.122 61.788 203.45 61.788C203.77 61.788 204.018 61.724 204.194 61.596C204.378 61.468 204.47 61.304 204.47 61.104C204.47 60.888 204.358 60.728 204.134 60.624C203.918 60.512 203.57 60.392 203.09 60.264C202.594 60.144 202.186 60.02 201.866 59.892C201.554 59.764 201.282 59.568 201.05 59.304C200.826 59.04 200.714 58.684 200.714 58.236C200.714 57.868 200.818 57.532 201.026 57.228C201.242 56.924 201.546 56.684 201.938 56.508C202.338 56.332 202.806 56.244 203.342 56.244C204.134 56.244 204.766 56.444 205.238 56.844C205.71 57.236 205.97 57.768 206.018 58.44H204.41C204.386 58.176 204.274 57.968 204.074 57.816C203.882 57.656 203.622 57.576 203.294 57.576C202.99 57.576 202.754 57.632 202.586 57.744C202.426 57.856 202.346 58.012 202.346 58.212C202.346 58.436 202.458 58.608 202.682 58.728C202.906 58.84 203.254 58.956 203.726 59.076C204.206 59.196 204.602 59.32 204.914 59.448C205.226 59.576 205.494 59.776 205.718 60.048C205.95 60.312 206.07 60.664 206.078 61.104C206.078 61.488 205.97 61.832 205.754 62.136C205.546 62.44 205.242 62.68 204.842 62.856C204.45 63.024 203.99 63.108 203.462 63.108ZM210.001 63.108C209.457 63.108 208.969 63.012 208.537 62.82C208.105 62.62 207.761 62.352 207.505 62.016C207.257 61.68 207.121 61.308 207.097 60.9H208.789C208.821 61.156 208.945 61.368 209.161 61.536C209.385 61.704 209.661 61.788 209.989 61.788C210.309 61.788 210.557 61.724 210.733 61.596C210.917 61.468 211.009 61.304 211.009 61.104C211.009 60.888 210.897 60.728 210.673 60.624C210.457 60.512 210.109 60.392 209.629 60.264C209.133 60.144 208.725 60.02 208.405 59.892C208.093 59.764 207.821 59.568 207.589 59.304C207.365 59.04 207.253 58.684 207.253 58.236C207.253 57.868 207.357 57.532 207.565 57.228C207.781 56.924 208.085 56.684 208.477 56.508C208.877 56.332 209.345 56.244 209.881 56.244C210.673 56.244 211.305 56.444 211.777 56.844C212.249 57.236 212.509 57.768 212.557 58.44H210.949C210.925 58.176 210.813 57.968 210.613 57.816C210.421 57.656 210.161 57.576 209.833 57.576C209.529 57.576 209.293 57.632 209.125 57.744C208.965 57.856 208.885 58.012 208.885 58.212C208.885 58.436 208.997 58.608 209.221 58.728C209.445 58.84 209.793 58.956 210.265 59.076C210.745 59.196 211.141 59.32 211.453 59.448C211.765 59.576 212.033 59.776 212.257 60.048C212.489 60.312 212.609 60.664 212.617 61.104C212.617 61.488 212.509 61.832 212.293 62.136C212.085 62.44 211.781 62.68 211.381 62.856C210.989 63.024 210.529 63.108 210.001 63.108ZM214.848 55.56C214.552 55.56 214.304 55.468 214.104 55.284C213.912 55.092 213.816 54.856 213.816 54.576C213.816 54.296 213.912 54.064 214.104 53.88C214.304 53.688 214.552 53.592 214.848 53.592C215.144 53.592 215.388 53.688 215.58 53.88C215.78 54.064 215.88 54.296 215.88 54.576C215.88 54.856 215.78 55.092 215.58 55.284C215.388 55.468 215.144 55.56 214.848 55.56ZM215.676 56.352V63H213.996V56.352H215.676ZM219.94 56.244C220.436 56.244 220.872 56.344 221.248 56.544C221.624 56.736 221.92 56.988 222.136 57.3V56.352H223.828V63.048C223.828 63.664 223.704 64.212 223.456 64.692C223.208 65.18 222.836 65.564 222.34 65.844C221.844 66.132 221.244 66.276 220.54 66.276C219.596 66.276 218.82 66.056 218.212 65.616C217.612 65.176 217.272 64.576 217.192 63.816H218.86C218.948 64.12 219.136 64.36 219.424 64.536C219.72 64.72 220.076 64.812 220.492 64.812C220.98 64.812 221.376 64.664 221.68 64.368C221.984 64.08 222.136 63.64 222.136 63.048V62.016C221.92 62.328 221.62 62.588 221.236 62.796C220.86 63.004 220.428 63.108 219.94 63.108C219.38 63.108 218.868 62.964 218.404 62.676C217.94 62.388 217.572 61.984 217.3 61.464C217.036 60.936 216.904 60.332 216.904 59.652C216.904 58.98 217.036 58.384 217.3 57.864C217.572 57.344 217.936 56.944 218.392 56.664C218.856 56.384 219.372 56.244 219.94 56.244ZM222.136 59.676C222.136 59.268 222.056 58.92 221.896 58.632C221.736 58.336 221.52 58.112 221.248 57.96C220.976 57.8 220.684 57.72 220.372 57.72C220.06 57.72 219.772 57.796 219.508 57.948C219.244 58.1 219.028 58.324 218.86 58.62C218.7 58.908 218.62 59.252 218.62 59.652C218.62 60.052 218.7 60.404 218.86 60.708C219.028 61.004 219.244 61.232 219.508 61.392C219.78 61.552 220.068 61.632 220.372 61.632C220.684 61.632 220.976 61.556 221.248 61.404C221.52 61.244 221.736 61.02 221.896 60.732C222.056 60.436 222.136 60.084 222.136 59.676ZM229.153 56.256C229.945 56.256 230.585 56.508 231.073 57.012C231.561 57.508 231.805 58.204 231.805 59.1V63H230.125V59.328C230.125 58.8 229.993 58.396 229.729 58.116C229.465 57.828 229.105 57.684 228.649 57.684C228.185 57.684 227.817 57.828 227.545 58.116C227.281 58.396 227.149 58.8 227.149 59.328V63H225.469V56.352H227.149V57.18C227.373 56.892 227.657 56.668 228.001 56.508C228.353 56.34 228.737 56.256 229.153 56.256ZM239.582 59.532C239.582 59.772 239.566 59.988 239.534 60.18H234.674C234.714 60.66 234.882 61.036 235.178 61.308C235.474 61.58 235.838 61.716 236.27 61.716C236.894 61.716 237.338 61.448 237.602 60.912H239.414C239.222 61.552 238.854 62.08 238.31 62.496C237.766 62.904 237.098 63.108 236.306 63.108C235.666 63.108 235.09 62.968 234.578 62.688C234.074 62.4 233.678 61.996 233.39 61.476C233.11 60.956 232.97 60.356 232.97 59.676C232.97 58.988 233.11 58.384 233.39 57.864C233.67 57.344 234.062 56.944 234.566 56.664C235.07 56.384 235.65 56.244 236.306 56.244C236.938 56.244 237.502 56.38 237.998 56.652C238.502 56.924 238.89 57.312 239.162 57.816C239.442 58.312 239.582 58.884 239.582 59.532ZM237.842 59.052C237.834 58.62 237.678 58.276 237.374 58.02C237.07 57.756 236.698 57.624 236.258 57.624C235.842 57.624 235.49 57.752 235.202 58.008C234.922 58.256 234.75 58.604 234.686 59.052H237.842ZM240.376 59.652C240.376 58.98 240.508 58.384 240.772 57.864C241.044 57.344 241.412 56.944 241.876 56.664C242.34 56.384 242.856 56.244 243.424 56.244C243.856 56.244 244.268 56.34 244.66 56.532C245.052 56.716 245.364 56.964 245.596 57.276V54.12H247.3V63H245.596V62.016C245.388 62.344 245.096 62.608 244.72 62.808C244.344 63.008 243.908 63.108 243.412 63.108C242.852 63.108 242.34 62.964 241.876 62.676C241.412 62.388 241.044 61.984 240.772 61.464C240.508 60.936 240.376 60.332 240.376 59.652ZM245.608 59.676C245.608 59.268 245.528 58.92 245.368 58.632C245.208 58.336 244.992 58.112 244.72 57.96C244.448 57.8 244.156 57.72 243.844 57.72C243.532 57.72 243.244 57.796 242.98 57.948C242.716 58.1 242.5 58.324 242.332 58.62C242.172 58.908 242.092 59.252 242.092 59.652C242.092 60.052 242.172 60.404 242.332 60.708C242.5 61.004 242.716 61.232 242.98 61.392C243.252 61.552 243.54 61.632 243.844 61.632C244.156 61.632 244.448 61.556 244.72 61.404C244.992 61.244 245.208 61.02 245.368 60.732C245.528 60.436 245.608 60.084 245.608 59.676Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M219.646 92.3536C219.842 92.5488 220.158 92.5488 220.354 92.3536L223.536 89.1716C223.731 88.9763 223.731 88.6597 223.536 88.4645C223.34 88.2692 223.024 88.2692 222.828 88.4645L220 91.2929L217.172 88.4645C216.976 88.2692 216.66 88.2692 216.464 88.4645C216.269 88.6597 216.269 88.9763 216.464 89.1716L219.646 92.3536ZM219.5 72V92H220.5V72H219.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 160, y: 92, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M210 100.624V101.98H206.508V104.128H209.184V105.46H206.508V109H204.828V100.624H210ZM212.043 101.56C211.747 101.56 211.499 101.468 211.299 101.284C211.107 101.092 211.011 100.856 211.011 100.576C211.011 100.296 211.107 100.064 211.299 99.88C211.499 99.688 211.747 99.592 212.043 99.592C212.339 99.592 212.583 99.688 212.775 99.88C212.975 100.064 213.075 100.296 213.075 100.576C213.075 100.856 212.975 101.092 212.775 101.284C212.583 101.468 212.339 101.56 212.043 101.56ZM212.871 102.352V109H211.191V102.352H212.871ZM218.203 109L216.835 106.936L215.623 109H213.823L215.995 105.664L213.799 102.352H215.695L217.051 104.404L218.275 102.352H220.075L217.891 105.664L220.099 109H218.203ZM227.192 105.532C227.192 105.772 227.176 105.988 227.144 106.18H222.284C222.324 106.66 222.492 107.036 222.788 107.308C223.084 107.58 223.448 107.716 223.88 107.716C224.504 107.716 224.948 107.448 225.212 106.912H227.024C226.832 107.552 226.464 108.08 225.92 108.496C225.376 108.904 224.708 109.108 223.916 109.108C223.276 109.108 222.7 108.968 222.188 108.688C221.684 108.4 221.288 107.996 221 107.476C220.72 106.956 220.58 106.356 220.58 105.676C220.58 104.988 220.72 104.384 221 103.864C221.28 103.344 221.672 102.944 222.176 102.664C222.68 102.384 223.26 102.244 223.916 102.244C224.548 102.244 225.112 102.38 225.608 102.652C226.112 102.924 226.5 103.312 226.772 103.816C227.052 104.312 227.192 104.884 227.192 105.532ZM225.452 105.052C225.444 104.62 225.288 104.276 224.984 104.02C224.68 103.756 224.308 103.624 223.868 103.624C223.452 103.624 223.1 103.752 222.812 104.008C222.532 104.256 222.36 104.604 222.296 105.052H225.452ZM227.986 105.652C227.986 104.98 228.118 104.384 228.382 103.864C228.654 103.344 229.022 102.944 229.486 102.664C229.95 102.384 230.466 102.244 231.034 102.244C231.466 102.244 231.878 102.34 232.27 102.532C232.662 102.716 232.974 102.964 233.206 103.276V100.12H234.91V109H233.206V108.016C232.998 108.344 232.706 108.608 232.33 108.808C231.954 109.008 231.518 109.108 231.022 109.108C230.462 109.108 229.95 108.964 229.486 108.676C229.022 108.388 228.654 107.984 228.382 107.464C228.118 106.936 227.986 106.332 227.986 105.652ZM233.218 105.676C233.218 105.268 233.138 104.92 232.978 104.632C232.818 104.336 232.602 104.112 232.33 103.96C232.058 103.8 231.766 103.72 231.454 103.72C231.142 103.72 230.854 103.796 230.59 103.948C230.326 104.1 230.11 104.324 229.942 104.62C229.782 104.908 229.702 105.252 229.702 105.652C229.702 106.052 229.782 106.404 229.942 106.708C230.11 107.004 230.326 107.232 230.59 107.392C230.862 107.552 231.15 107.632 231.454 107.632C231.766 107.632 232.058 107.556 232.33 107.404C232.602 107.244 232.818 107.02 232.978 106.732C233.138 106.436 233.218 106.084 233.218 105.676Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M219.646 138.354C219.842 138.549 220.158 138.549 220.354 138.354L223.536 135.172C223.731 134.976 223.731 134.66 223.536 134.464C223.34 134.269 223.024 134.269 222.828 134.464L220 137.293L217.172 134.464C216.976 134.269 216.66 134.269 216.464 134.464C216.269 134.66 216.269 134.976 216.464 135.172L219.646 138.354ZM219.5 118V138H220.5V118H219.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 160, y: 138, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M198.92 150.8C198.92 149.976 199.104 149.24 199.472 148.592C199.848 147.936 200.356 147.428 200.996 147.068C201.644 146.7 202.368 146.516 203.168 146.516C204.104 146.516 204.924 146.756 205.628 147.236C206.332 147.716 206.824 148.38 207.104 149.228H205.172C204.98 148.828 204.708 148.528 204.356 148.328C204.012 148.128 203.612 148.028 203.156 148.028C202.668 148.028 202.232 148.144 201.848 148.376C201.472 148.6 201.176 148.92 200.96 149.336C200.752 149.752 200.648 150.24 200.648 150.8C200.648 151.352 200.752 151.84 200.96 152.264C201.176 152.68 201.472 153.004 201.848 153.236C202.232 153.46 202.668 153.572 203.156 153.572C203.612 153.572 204.012 153.472 204.356 153.272C204.708 153.064 204.98 152.76 205.172 152.36H207.104C206.824 153.216 206.332 153.884 205.628 154.364C204.932 154.836 204.112 155.072 203.168 155.072C202.368 155.072 201.644 154.892 200.996 154.532C200.356 154.164 199.848 153.656 199.472 153.008C199.104 152.36 198.92 151.624 198.92 150.8ZM210.219 146.12V155H208.539V146.12H210.219ZM214.831 155.108C214.191 155.108 213.615 154.968 213.103 154.688C212.591 154.4 212.187 153.996 211.891 153.476C211.603 152.956 211.459 152.356 211.459 151.676C211.459 150.996 211.607 150.396 211.903 149.876C212.207 149.356 212.619 148.956 213.139 148.676C213.659 148.388 214.239 148.244 214.879 148.244C215.519 148.244 216.099 148.388 216.619 148.676C217.139 148.956 217.547 149.356 217.843 149.876C218.147 150.396 218.299 150.996 218.299 151.676C218.299 152.356 218.143 152.956 217.831 153.476C217.527 153.996 217.111 154.4 216.583 154.688C216.063 154.968 215.479 155.108 214.831 155.108ZM214.831 153.644C215.135 153.644 215.419 153.572 215.683 153.428C215.955 153.276 216.171 153.052 216.331 152.756C216.491 152.46 216.571 152.1 216.571 151.676C216.571 151.044 216.403 150.56 216.067 150.224C215.739 149.88 215.335 149.708 214.855 149.708C214.375 149.708 213.971 149.88 213.643 150.224C213.323 150.56 213.163 151.044 213.163 151.676C213.163 152.308 213.319 152.796 213.631 153.14C213.951 153.476 214.351 153.644 214.831 153.644ZM222.075 155.108C221.531 155.108 221.043 155.012 220.611 154.82C220.179 154.62 219.835 154.352 219.579 154.016C219.331 153.68 219.195 153.308 219.171 152.9H220.863C220.895 153.156 221.019 153.368 221.235 153.536C221.459 153.704 221.735 153.788 222.063 153.788C222.383 153.788 222.631 153.724 222.807 153.596C222.991 153.468 223.083 153.304 223.083 153.104C223.083 152.888 222.971 152.728 222.747 152.624C222.531 152.512 222.183 152.392 221.703 152.264C221.207 152.144 220.799 152.02 220.479 151.892C220.167 151.764 219.895 151.568 219.663 151.304C219.439 151.04 219.327 150.684 219.327 150.236C219.327 149.868 219.431 149.532 219.639 149.228C219.855 148.924 220.159 148.684 220.551 148.508C220.951 148.332 221.419 148.244 221.955 148.244C222.747 148.244 223.379 148.444 223.851 148.844C224.323 149.236 224.583 149.768 224.631 150.44H223.023C222.999 150.176 222.887 149.968 222.687 149.816C222.495 149.656 222.235 149.576 221.907 149.576C221.603 149.576 221.367 149.632 221.199 149.744C221.039 149.856 220.959 150.012 220.959 150.212C220.959 150.436 221.071 150.608 221.295 150.728C221.519 150.84 221.867 150.956 222.339 151.076C222.819 151.196 223.215 151.32 223.527 151.448C223.839 151.576 224.107 151.776 224.331 152.048C224.563 152.312 224.683 152.664 224.691 153.104C224.691 153.488 224.583 153.832 224.367 154.136C224.159 154.44 223.855 154.68 223.455 154.856C223.063 155.024 222.603 155.108 222.075 155.108ZM232.25 151.532C232.25 151.772 232.234 151.988 232.202 152.18H227.342C227.382 152.66 227.55 153.036 227.846 153.308C228.142 153.58 228.506 153.716 228.938 153.716C229.562 153.716 230.006 153.448 230.27 152.912H232.082C231.89 153.552 231.522 154.08 230.978 154.496C230.434 154.904 229.766 155.108 228.974 155.108C228.334 155.108 227.758 154.968 227.246 154.688C226.742 154.4 226.346 153.996 226.058 153.476C225.778 152.956 225.638 152.356 225.638 151.676C225.638 150.988 225.778 150.384 226.058 149.864C226.338 149.344 226.73 148.944 227.234 148.664C227.738 148.384 228.318 148.244 228.974 148.244C229.606 148.244 230.17 148.38 230.666 148.652C231.17 148.924 231.558 149.312 231.83 149.816C232.11 150.312 232.25 150.884 232.25 151.532ZM230.51 151.052C230.502 150.62 230.346 150.276 230.042 150.02C229.738 149.756 229.366 149.624 228.926 149.624C228.51 149.624 228.158 149.752 227.87 150.008C227.59 150.256 227.418 150.604 227.354 151.052H230.51ZM233.044 151.652C233.044 150.98 233.176 150.384 233.44 149.864C233.712 149.344 234.08 148.944 234.544 148.664C235.008 148.384 235.524 148.244 236.092 148.244C236.524 148.244 236.936 148.34 237.328 148.532C237.72 148.716 238.032 148.964 238.264 149.276V146.12H239.968V155H238.264V154.016C238.056 154.344 237.764 154.608 237.388 154.808C237.012 155.008 236.576 155.108 236.08 155.108C235.52 155.108 235.008 154.964 234.544 154.676C234.08 154.388 233.712 153.984 233.44 153.464C233.176 152.936 233.044 152.332 233.044 151.652ZM238.276 151.676C238.276 151.268 238.196 150.92 238.036 150.632C237.876 150.336 237.66 150.112 237.388 149.96C237.116 149.8 236.824 149.72 236.512 149.72C236.2 149.72 235.912 149.796 235.648 149.948C235.384 150.1 235.168 150.324 235 150.62C234.84 150.908 234.76 151.252 234.76 151.652C234.76 152.052 234.84 152.404 235 152.708C235.168 153.004 235.384 153.232 235.648 153.392C235.92 153.552 236.208 153.632 236.512 153.632C236.824 153.632 237.116 153.556 237.388 153.404C237.66 153.244 237.876 153.02 238.036 152.732C238.196 152.436 238.276 152.084 238.276 151.676Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M359.646 46.3536C359.842 46.5488 360.158 46.5488 360.354 46.3536L363.536 43.1716C363.731 42.9763 363.731 42.6597 363.536 42.4645C363.34 42.2692 363.024 42.2692 362.828 42.4645L360 45.2929L357.172 42.4645C356.976 42.2692 356.66 42.2692 356.464 42.4645C356.269 42.6597 356.269 42.9763 356.464 43.1716L359.646 46.3536ZM359.5 34V46H360.5V34H359.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 300, y: 46, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M334.256 54.624C335.136 54.624 335.908 54.796 336.572 55.14C337.244 55.484 337.76 55.976 338.12 56.616C338.488 57.248 338.672 57.984 338.672 58.824C338.672 59.664 338.488 60.4 338.12 61.032C337.76 61.656 337.244 62.14 336.572 62.484C335.908 62.828 335.136 63 334.256 63H331.328V54.624H334.256ZM334.196 61.572C335.076 61.572 335.756 61.332 336.236 60.852C336.716 60.372 336.956 59.696 336.956 58.824C336.956 57.952 336.716 57.272 336.236 56.784C335.756 56.288 335.076 56.04 334.196 56.04H333.008V61.572H334.196ZM346.206 56.352V63H344.514V62.16C344.298 62.448 344.014 62.676 343.662 62.844C343.318 63.004 342.942 63.084 342.534 63.084C342.014 63.084 341.554 62.976 341.154 62.76C340.754 62.536 340.438 62.212 340.206 61.788C339.982 61.356 339.87 60.844 339.87 60.252V56.352H341.55V60.012C341.55 60.54 341.682 60.948 341.946 61.236C342.21 61.516 342.57 61.656 343.026 61.656C343.49 61.656 343.854 61.516 344.118 61.236C344.382 60.948 344.514 60.54 344.514 60.012V56.352H346.206ZM349.543 57.312C349.759 57.008 350.055 56.756 350.431 56.556C350.815 56.348 351.251 56.244 351.739 56.244C352.307 56.244 352.819 56.384 353.275 56.664C353.739 56.944 354.103 57.344 354.367 57.864C354.639 58.376 354.775 58.972 354.775 59.652C354.775 60.332 354.639 60.936 354.367 61.464C354.103 61.984 353.739 62.388 353.275 62.676C352.819 62.964 352.307 63.108 351.739 63.108C351.251 63.108 350.819 63.008 350.443 62.808C350.075 62.608 349.775 62.356 349.543 62.052V66.168H347.863V56.352H349.543V57.312ZM353.059 59.652C353.059 59.252 352.975 58.908 352.807 58.62C352.647 58.324 352.431 58.1 352.159 57.948C351.895 57.796 351.607 57.72 351.295 57.72C350.991 57.72 350.703 57.8 350.431 57.96C350.167 58.112 349.951 58.336 349.783 58.632C349.623 58.928 349.543 59.276 349.543 59.676C349.543 60.076 349.623 60.424 349.783 60.72C349.951 61.016 350.167 61.244 350.431 61.404C350.703 61.556 350.991 61.632 351.295 61.632C351.607 61.632 351.895 61.552 352.159 61.392C352.431 61.232 352.647 61.004 352.807 60.708C352.975 60.412 353.059 60.06 353.059 59.652ZM357.676 54.12V63H355.996V54.12H357.676ZM360.188 55.56C359.892 55.56 359.644 55.468 359.444 55.284C359.252 55.092 359.156 54.856 359.156 54.576C359.156 54.296 359.252 54.064 359.444 53.88C359.644 53.688 359.892 53.592 360.188 53.592C360.484 53.592 360.728 53.688 360.92 53.88C361.12 54.064 361.22 54.296 361.22 54.576C361.22 54.856 361.12 55.092 360.92 55.284C360.728 55.468 360.484 55.56 360.188 55.56ZM361.016 56.352V63H359.336V56.352H361.016ZM362.244 59.676C362.244 58.988 362.384 58.388 362.664 57.876C362.944 57.356 363.332 56.956 363.828 56.676C364.324 56.388 364.892 56.244 365.532 56.244C366.356 56.244 367.036 56.452 367.572 56.868C368.116 57.276 368.48 57.852 368.664 58.596H366.852C366.756 58.308 366.592 58.084 366.36 57.924C366.136 57.756 365.856 57.672 365.52 57.672C365.04 57.672 364.66 57.848 364.38 58.2C364.1 58.544 363.96 59.036 363.96 59.676C363.96 60.308 364.1 60.8 364.38 61.152C364.66 61.496 365.04 61.668 365.52 61.668C366.2 61.668 366.644 61.364 366.852 60.756H368.664C368.48 61.476 368.116 62.048 367.572 62.472C367.028 62.896 366.348 63.108 365.532 63.108C364.892 63.108 364.324 62.968 363.828 62.688C363.332 62.4 362.944 62 362.664 61.488C362.384 60.968 362.244 60.364 362.244 59.676ZM369.462 59.652C369.462 58.98 369.594 58.384 369.858 57.864C370.13 57.344 370.494 56.944 370.95 56.664C371.414 56.384 371.93 56.244 372.498 56.244C372.994 56.244 373.426 56.344 373.794 56.544C374.17 56.744 374.47 56.996 374.694 57.3V56.352H376.386V63H374.694V62.028C374.478 62.34 374.178 62.6 373.794 62.808C373.418 63.008 372.982 63.108 372.486 63.108C371.926 63.108 371.414 62.964 370.95 62.676C370.494 62.388 370.13 61.984 369.858 61.464C369.594 60.936 369.462 60.332 369.462 59.652ZM374.694 59.676C374.694 59.268 374.614 58.92 374.454 58.632C374.294 58.336 374.078 58.112 373.806 57.96C373.534 57.8 373.242 57.72 372.93 57.72C372.618 57.72 372.33 57.796 372.066 57.948C371.802 58.1 371.586 58.324 371.418 58.62C371.258 58.908 371.178 59.252 371.178 59.652C371.178 60.052 371.258 60.404 371.418 60.708C371.586 61.004 371.802 61.232 372.066 61.392C372.338 61.552 372.626 61.632 372.93 61.632C373.242 61.632 373.534 61.556 373.806 61.404C374.078 61.244 374.294 61.02 374.454 60.732C374.614 60.436 374.694 60.084 374.694 59.676ZM379.983 57.732V60.948C379.983 61.172 380.035 61.336 380.139 61.44C380.251 61.536 380.435 61.584 380.691 61.584H381.471V63H380.415C378.999 63 378.291 62.312 378.291 60.936V57.732H377.499V56.352H378.291V54.708H379.983V56.352H381.471V57.732H379.983ZM388.86 59.532C388.86 59.772 388.844 59.988 388.812 60.18H383.952C383.992 60.66 384.16 61.036 384.456 61.308C384.752 61.58 385.116 61.716 385.548 61.716C386.172 61.716 386.616 61.448 386.88 60.912H388.692C388.5 61.552 388.132 62.08 387.588 62.496C387.044 62.904 386.376 63.108 385.584 63.108C384.944 63.108 384.368 62.968 383.856 62.688C383.352 62.4 382.956 61.996 382.668 61.476C382.388 60.956 382.248 60.356 382.248 59.676C382.248 58.988 382.388 58.384 382.668 57.864C382.948 57.344 383.34 56.944 383.844 56.664C384.348 56.384 384.928 56.244 385.584 56.244C386.216 56.244 386.78 56.38 387.276 56.652C387.78 56.924 388.168 57.312 388.44 57.816C388.72 58.312 388.86 58.884 388.86 59.532ZM387.12 59.052C387.112 58.62 386.956 58.276 386.652 58.02C386.348 57.756 385.976 57.624 385.536 57.624C385.12 57.624 384.768 57.752 384.48 58.008C384.2 58.256 384.028 58.604 383.964 59.052H387.12Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M499.646 46.3536C499.842 46.5488 500.158 46.5488 500.354 46.3536L503.536 43.1716C503.731 42.9763 503.731 42.6597 503.536 42.4645C503.34 42.2692 503.024 42.2692 502.828 42.4645L500 45.2929L497.172 42.4645C496.976 42.2692 496.66 42.2692 496.464 42.4645C496.269 42.6597 496.269 42.9763 496.464 43.1716L499.646 46.3536ZM499.5 34V46H500.5V34H499.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 440, y: 46, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M478.148 63L476.3 59.736H475.508V63H473.828V54.624H476.972C477.62 54.624 478.172 54.74 478.628 54.972C479.084 55.196 479.424 55.504 479.648 55.896C479.88 56.28 479.996 56.712 479.996 57.192C479.996 57.744 479.836 58.244 479.516 58.692C479.196 59.132 478.72 59.436 478.088 59.604L480.092 63H478.148ZM475.508 58.476H476.912C477.368 58.476 477.708 58.368 477.932 58.152C478.156 57.928 478.268 57.62 478.268 57.228C478.268 56.844 478.156 56.548 477.932 56.34C477.708 56.124 477.368 56.016 476.912 56.016H475.508V58.476ZM487.696 59.532C487.696 59.772 487.68 59.988 487.648 60.18H482.788C482.828 60.66 482.996 61.036 483.292 61.308C483.588 61.58 483.952 61.716 484.384 61.716C485.008 61.716 485.452 61.448 485.716 60.912H487.528C487.336 61.552 486.968 62.08 486.424 62.496C485.88 62.904 485.212 63.108 484.42 63.108C483.78 63.108 483.204 62.968 482.692 62.688C482.188 62.4 481.792 61.996 481.504 61.476C481.224 60.956 481.083 60.356 481.083 59.676C481.083 58.988 481.224 58.384 481.504 57.864C481.784 57.344 482.176 56.944 482.68 56.664C483.184 56.384 483.764 56.244 484.42 56.244C485.052 56.244 485.616 56.38 486.112 56.652C486.616 56.924 487.004 57.312 487.276 57.816C487.556 58.312 487.696 58.884 487.696 59.532ZM485.956 59.052C485.948 58.62 485.792 58.276 485.488 58.02C485.184 57.756 484.812 57.624 484.372 57.624C483.956 57.624 483.604 57.752 483.316 58.008C483.036 58.256 482.864 58.604 482.8 59.052H485.956ZM489.774 55.56C489.47 55.56 489.218 55.468 489.018 55.284C488.826 55.092 488.73 54.856 488.73 54.576C488.73 54.296 488.826 54.064 489.018 53.88C489.218 53.688 489.47 53.592 489.774 53.592C490.07 53.592 490.314 53.688 490.506 53.88C490.698 54.064 490.794 54.296 490.794 54.576C490.794 54.856 490.698 55.092 490.506 55.284C490.314 55.468 490.07 55.56 489.774 55.56ZM490.602 64.092C490.602 64.828 490.418 65.356 490.05 65.676C489.69 66.004 489.17 66.168 488.49 66.168H487.746V64.74H488.226C488.482 64.74 488.662 64.688 488.766 64.584C488.87 64.488 488.922 64.328 488.922 64.104V56.352H490.602V64.092ZM498.442 59.532C498.442 59.772 498.426 59.988 498.394 60.18H493.534C493.574 60.66 493.742 61.036 494.038 61.308C494.334 61.58 494.698 61.716 495.13 61.716C495.754 61.716 496.198 61.448 496.462 60.912H498.274C498.082 61.552 497.714 62.08 497.17 62.496C496.626 62.904 495.958 63.108 495.166 63.108C494.526 63.108 493.95 62.968 493.438 62.688C492.934 62.4 492.538 61.996 492.25 61.476C491.97 60.956 491.83 60.356 491.83 59.676C491.83 58.988 491.97 58.384 492.25 57.864C492.53 57.344 492.922 56.944 493.426 56.664C493.93 56.384 494.51 56.244 495.166 56.244C495.798 56.244 496.362 56.38 496.858 56.652C497.362 56.924 497.75 57.312 498.022 57.816C498.302 58.312 498.442 58.884 498.442 59.532ZM496.702 59.052C496.694 58.62 496.538 58.276 496.234 58.02C495.93 57.756 495.558 57.624 495.118 57.624C494.702 57.624 494.35 57.752 494.062 58.008C493.782 58.256 493.61 58.604 493.546 59.052H496.702ZM499.236 59.676C499.236 58.988 499.376 58.388 499.656 57.876C499.936 57.356 500.324 56.956 500.82 56.676C501.316 56.388 501.884 56.244 502.524 56.244C503.348 56.244 504.028 56.452 504.564 56.868C505.108 57.276 505.472 57.852 505.656 58.596H503.844C503.748 58.308 503.584 58.084 503.352 57.924C503.128 57.756 502.848 57.672 502.512 57.672C502.032 57.672 501.652 57.848 501.372 58.2C501.092 58.544 500.952 59.036 500.952 59.676C500.952 60.308 501.092 60.8 501.372 61.152C501.652 61.496 502.032 61.668 502.512 61.668C503.192 61.668 503.636 61.364 503.844 60.756H505.656C505.472 61.476 505.108 62.048 504.564 62.472C504.02 62.896 503.34 63.108 502.524 63.108C501.884 63.108 501.316 62.968 500.82 62.688C500.324 62.4 499.936 62 499.656 61.488C499.376 60.968 499.236 60.364 499.236 59.676ZM508.843 57.732V60.948C508.843 61.172 508.895 61.336 508.999 61.44C509.111 61.536 509.295 61.584 509.551 61.584H510.331V63H509.275C507.859 63 507.151 62.312 507.151 60.936V57.732H506.359V56.352H507.151V54.708H508.843V56.352H510.331V57.732H508.843ZM517.719 59.532C517.719 59.772 517.703 59.988 517.671 60.18H512.811C512.851 60.66 513.019 61.036 513.315 61.308C513.611 61.58 513.975 61.716 514.407 61.716C515.031 61.716 515.475 61.448 515.739 60.912H517.551C517.359 61.552 516.991 62.08 516.447 62.496C515.903 62.904 515.235 63.108 514.443 63.108C513.803 63.108 513.227 62.968 512.715 62.688C512.211 62.4 511.815 61.996 511.527 61.476C511.247 60.956 511.107 60.356 511.107 59.676C511.107 58.988 511.247 58.384 511.527 57.864C511.807 57.344 512.199 56.944 512.703 56.664C513.207 56.384 513.787 56.244 514.443 56.244C515.075 56.244 515.639 56.38 516.135 56.652C516.639 56.924 517.027 57.312 517.299 57.816C517.579 58.312 517.719 58.884 517.719 59.532ZM515.979 59.052C515.971 58.62 515.815 58.276 515.511 58.02C515.207 57.756 514.835 57.624 514.395 57.624C513.979 57.624 513.627 57.752 513.339 58.008C513.059 58.256 512.887 58.604 512.823 59.052H515.979ZM518.513 59.652C518.513 58.98 518.645 58.384 518.909 57.864C519.181 57.344 519.549 56.944 520.013 56.664C520.477 56.384 520.993 56.244 521.561 56.244C521.993 56.244 522.405 56.34 522.797 56.532C523.189 56.716 523.501 56.964 523.733 57.276V54.12H525.437V63H523.733V62.016C523.525 62.344 523.233 62.608 522.857 62.808C522.481 63.008 522.045 63.108 521.549 63.108C520.989 63.108 520.477 62.964 520.013 62.676C519.549 62.388 519.181 61.984 518.909 61.464C518.645 60.936 518.513 60.332 518.513 59.652ZM523.745 59.676C523.745 59.268 523.665 58.92 523.505 58.632C523.345 58.336 523.129 58.112 522.857 57.96C522.585 57.8 522.293 57.72 521.981 57.72C521.669 57.72 521.381 57.796 521.117 57.948C520.853 58.1 520.637 58.324 520.469 58.62C520.309 58.908 520.229 59.252 520.229 59.652C520.229 60.052 520.309 60.404 520.469 60.708C520.637 61.004 520.853 61.232 521.117 61.392C521.389 61.552 521.677 61.632 521.981 61.632C522.293 61.632 522.585 61.556 522.857 61.404C523.129 61.244 523.345 61.02 523.505 60.732C523.665 60.436 523.745 60.084 523.745 59.676Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M639.646 46.3536C639.842 46.5488 640.158 46.5488 640.354 46.3536L643.536 43.1716C643.731 42.9763 643.731 42.6597 643.536 42.4645C643.34 42.2692 643.024 42.2692 642.828 42.4645L640 45.2929L637.172 42.4645C636.976 42.2692 636.66 42.2692 636.464 42.4645C636.269 42.6597 636.269 42.9763 636.464 43.1716L639.646 46.3536ZM639.5 34V46H640.5V34H639.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 580, y: 46, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M617.256 54.624C618.136 54.624 618.908 54.796 619.572 55.14C620.244 55.484 620.76 55.976 621.12 56.616C621.488 57.248 621.672 57.984 621.672 58.824C621.672 59.664 621.488 60.4 621.12 61.032C620.76 61.656 620.244 62.14 619.572 62.484C618.908 62.828 618.136 63 617.256 63H614.328V54.624H617.256ZM617.196 61.572C618.076 61.572 618.756 61.332 619.236 60.852C619.716 60.372 619.956 59.696 619.956 58.824C619.956 57.952 619.716 57.272 619.236 56.784C618.756 56.288 618.076 56.04 617.196 56.04H616.008V61.572H617.196ZM629.11 59.532C629.11 59.772 629.094 59.988 629.062 60.18H624.202C624.242 60.66 624.41 61.036 624.706 61.308C625.002 61.58 625.366 61.716 625.798 61.716C626.422 61.716 626.866 61.448 627.13 60.912H628.942C628.75 61.552 628.382 62.08 627.838 62.496C627.294 62.904 626.626 63.108 625.834 63.108C625.194 63.108 624.618 62.968 624.106 62.688C623.602 62.4 623.206 61.996 622.918 61.476C622.638 60.956 622.498 60.356 622.498 59.676C622.498 58.988 622.638 58.384 622.918 57.864C623.198 57.344 623.59 56.944 624.094 56.664C624.598 56.384 625.178 56.244 625.834 56.244C626.466 56.244 627.03 56.38 627.526 56.652C628.03 56.924 628.418 57.312 628.69 57.816C628.97 58.312 629.11 58.884 629.11 59.532ZM627.37 59.052C627.362 58.62 627.206 58.276 626.902 58.02C626.598 57.756 626.226 57.624 625.786 57.624C625.37 57.624 625.018 57.752 624.73 58.008C624.45 58.256 624.278 58.604 624.214 59.052H627.37ZM633.384 57.732H632.22V63H630.516V57.732H629.76V56.352H630.516V56.016C630.516 55.2 630.748 54.6 631.212 54.216C631.676 53.832 632.376 53.652 633.312 53.676V55.092C632.904 55.084 632.62 55.152 632.46 55.296C632.3 55.44 632.22 55.7 632.22 56.076V56.352H633.384V57.732ZM640.653 59.532C640.653 59.772 640.637 59.988 640.605 60.18H635.745C635.785 60.66 635.953 61.036 636.249 61.308C636.545 61.58 636.909 61.716 637.341 61.716C637.965 61.716 638.409 61.448 638.673 60.912H640.485C640.293 61.552 639.925 62.08 639.381 62.496C638.837 62.904 638.169 63.108 637.377 63.108C636.737 63.108 636.161 62.968 635.649 62.688C635.145 62.4 634.749 61.996 634.461 61.476C634.181 60.956 634.041 60.356 634.041 59.676C634.041 58.988 634.181 58.384 634.461 57.864C634.741 57.344 635.133 56.944 635.637 56.664C636.141 56.384 636.721 56.244 637.377 56.244C638.009 56.244 638.573 56.38 639.069 56.652C639.573 56.924 639.961 57.312 640.233 57.816C640.513 58.312 640.653 58.884 640.653 59.532ZM638.913 59.052C638.905 58.62 638.749 58.276 638.445 58.02C638.141 57.756 637.769 57.624 637.329 57.624C636.913 57.624 636.561 57.752 636.273 58.008C635.993 58.256 635.821 58.604 635.757 59.052H638.913ZM643.559 57.384C643.775 57.032 644.055 56.756 644.399 56.556C644.751 56.356 645.151 56.256 645.599 56.256V58.02H645.155C644.627 58.02 644.227 58.144 643.955 58.392C643.691 58.64 643.559 59.072 643.559 59.688V63H641.879V56.352H643.559V57.384ZM648.41 57.384C648.626 57.032 648.906 56.756 649.25 56.556C649.602 56.356 650.002 56.256 650.45 56.256V58.02H650.006C649.478 58.02 649.078 58.144 648.806 58.392C648.542 58.64 648.41 59.072 648.41 59.688V63H646.73V56.352H648.41V57.384ZM657.762 59.532C657.762 59.772 657.746 59.988 657.714 60.18H652.854C652.894 60.66 653.062 61.036 653.358 61.308C653.654 61.58 654.018 61.716 654.45 61.716C655.074 61.716 655.518 61.448 655.782 60.912H657.594C657.402 61.552 657.034 62.08 656.49 62.496C655.946 62.904 655.278 63.108 654.486 63.108C653.846 63.108 653.27 62.968 652.758 62.688C652.254 62.4 651.858 61.996 651.57 61.476C651.29 60.956 651.15 60.356 651.15 59.676C651.15 58.988 651.29 58.384 651.57 57.864C651.85 57.344 652.242 56.944 652.746 56.664C653.25 56.384 653.83 56.244 654.486 56.244C655.118 56.244 655.682 56.38 656.178 56.652C656.682 56.924 657.07 57.312 657.342 57.816C657.622 58.312 657.762 58.884 657.762 59.532ZM656.022 59.052C656.014 58.62 655.858 58.276 655.554 58.02C655.25 57.756 654.878 57.624 654.438 57.624C654.022 57.624 653.67 57.752 653.382 58.008C653.102 58.256 652.93 58.604 652.866 59.052H656.022ZM658.556 59.652C658.556 58.98 658.688 58.384 658.952 57.864C659.224 57.344 659.592 56.944 660.056 56.664C660.52 56.384 661.036 56.244 661.604 56.244C662.036 56.244 662.448 56.34 662.84 56.532C663.232 56.716 663.544 56.964 663.776 57.276V54.12H665.48V63H663.776V62.016C663.568 62.344 663.276 62.608 662.9 62.808C662.524 63.008 662.088 63.108 661.592 63.108C661.032 63.108 660.52 62.964 660.056 62.676C659.592 62.388 659.224 61.984 658.952 61.464C658.688 60.936 658.556 60.332 658.556 59.652ZM663.788 59.676C663.788 59.268 663.708 58.92 663.548 58.632C663.388 58.336 663.172 58.112 662.9 57.96C662.628 57.8 662.336 57.72 662.024 57.72C661.712 57.72 661.424 57.796 661.16 57.948C660.896 58.1 660.68 58.324 660.512 58.62C660.352 58.908 660.272 59.252 660.272 59.652C660.272 60.052 660.352 60.404 660.512 60.708C660.68 61.004 660.896 61.232 661.16 61.392C661.432 61.552 661.72 61.632 662.024 61.632C662.336 61.632 662.628 61.556 662.9 61.404C663.172 61.244 663.388 61.02 663.548 60.732C663.708 60.436 663.788 60.084 663.788 59.676Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M779.646 46.3536C779.842 46.5488 780.158 46.5488 780.354 46.3536L783.536 43.1716C783.731 42.9763 783.731 42.6597 783.536 42.4645C783.34 42.2692 783.024 42.2692 782.828 42.4645L780 45.2929L777.172 42.4645C776.976 42.2692 776.66 42.2692 776.464 42.4645C776.269 42.6597 776.269 42.9763 776.464 43.1716L779.646 46.3536ZM779.5 34V46H780.5V34H779.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 720, y: 46, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M750.492 63H748.812L745.008 57.252V63H743.328V54.612H745.008L748.812 60.372V54.612H750.492V63ZM755.104 63.108C754.464 63.108 753.888 62.968 753.376 62.688C752.864 62.4 752.46 61.996 752.164 61.476C751.876 60.956 751.732 60.356 751.732 59.676C751.732 58.996 751.88 58.396 752.176 57.876C752.48 57.356 752.892 56.956 753.412 56.676C753.932 56.388 754.512 56.244 755.152 56.244C755.792 56.244 756.372 56.388 756.892 56.676C757.412 56.956 757.82 57.356 758.116 57.876C758.42 58.396 758.572 58.996 758.572 59.676C758.572 60.356 758.416 60.956 758.104 61.476C757.8 61.996 757.384 62.4 756.856 62.688C756.336 62.968 755.752 63.108 755.104 63.108ZM755.104 61.644C755.408 61.644 755.692 61.572 755.956 61.428C756.228 61.276 756.444 61.052 756.604 60.756C756.764 60.46 756.844 60.1 756.844 59.676C756.844 59.044 756.676 58.56 756.34 58.224C756.012 57.88 755.608 57.708 755.128 57.708C754.648 57.708 754.244 57.88 753.916 58.224C753.596 58.56 753.436 59.044 753.436 59.676C753.436 60.308 753.592 60.796 753.904 61.14C754.224 61.476 754.624 61.644 755.104 61.644ZM761.761 57.732V60.948C761.761 61.172 761.813 61.336 761.917 61.44C762.029 61.536 762.213 61.584 762.469 61.584H763.249V63H762.193C760.777 63 760.069 62.312 760.069 60.936V57.732H759.277V56.352H760.069V54.708H761.761V56.352H763.249V57.732H761.761ZM766.884 59.652C766.884 58.98 767.016 58.384 767.28 57.864C767.552 57.344 767.916 56.944 768.372 56.664C768.836 56.384 769.352 56.244 769.92 56.244C770.416 56.244 770.848 56.344 771.216 56.544C771.592 56.744 771.892 56.996 772.116 57.3V56.352H773.808V63H772.116V62.028C771.9 62.34 771.6 62.6 771.216 62.808C770.84 63.008 770.404 63.108 769.908 63.108C769.348 63.108 768.836 62.964 768.372 62.676C767.916 62.388 767.552 61.984 767.28 61.464C767.016 60.936 766.884 60.332 766.884 59.652ZM772.116 59.676C772.116 59.268 772.036 58.92 771.876 58.632C771.716 58.336 771.5 58.112 771.228 57.96C770.956 57.8 770.664 57.72 770.352 57.72C770.04 57.72 769.752 57.796 769.488 57.948C769.224 58.1 769.008 58.324 768.84 58.62C768.68 58.908 768.6 59.252 768.6 59.652C768.6 60.052 768.68 60.404 768.84 60.708C769.008 61.004 769.224 61.232 769.488 61.392C769.76 61.552 770.048 61.632 770.352 61.632C770.664 61.632 770.956 61.556 771.228 61.404C771.5 61.244 771.716 61.02 771.876 60.732C772.036 60.436 772.116 60.084 772.116 59.676ZM781.236 54.624C782.116 54.624 782.888 54.796 783.552 55.14C784.224 55.484 784.74 55.976 785.1 56.616C785.468 57.248 785.652 57.984 785.652 58.824C785.652 59.664 785.468 60.4 785.1 61.032C784.74 61.656 784.224 62.14 783.552 62.484C782.888 62.828 782.116 63 781.236 63H778.308V54.624H781.236ZM781.176 61.572C782.056 61.572 782.736 61.332 783.216 60.852C783.696 60.372 783.936 59.696 783.936 58.824C783.936 57.952 783.696 57.272 783.216 56.784C782.736 56.288 782.056 56.04 781.176 56.04H779.988V61.572H781.176ZM793.09 59.532C793.09 59.772 793.074 59.988 793.042 60.18H788.182C788.222 60.66 788.39 61.036 788.686 61.308C788.982 61.58 789.346 61.716 789.778 61.716C790.402 61.716 790.846 61.448 791.11 60.912H792.922C792.73 61.552 792.362 62.08 791.818 62.496C791.274 62.904 790.606 63.108 789.814 63.108C789.174 63.108 788.598 62.968 788.086 62.688C787.582 62.4 787.186 61.996 786.898 61.476C786.618 60.956 786.478 60.356 786.478 59.676C786.478 58.988 786.618 58.384 786.898 57.864C787.178 57.344 787.57 56.944 788.074 56.664C788.578 56.384 789.158 56.244 789.814 56.244C790.446 56.244 791.01 56.38 791.506 56.652C792.01 56.924 792.398 57.312 792.67 57.816C792.95 58.312 793.09 58.884 793.09 59.532ZM791.35 59.052C791.342 58.62 791.186 58.276 790.882 58.02C790.578 57.756 790.206 57.624 789.766 57.624C789.35 57.624 788.998 57.752 788.71 58.008C788.43 58.256 788.258 58.604 788.194 59.052H791.35ZM797.364 57.732H796.2V63H794.496V57.732H793.74V56.352H794.496V56.016C794.496 55.2 794.728 54.6 795.192 54.216C795.656 53.832 796.356 53.652 797.292 53.676V55.092C796.884 55.084 796.6 55.152 796.44 55.296C796.28 55.44 796.2 55.7 796.2 56.076V56.352H797.364V57.732ZM804.633 59.532C804.633 59.772 804.617 59.988 804.585 60.18H799.725C799.765 60.66 799.933 61.036 800.229 61.308C800.525 61.58 800.889 61.716 801.321 61.716C801.945 61.716 802.389 61.448 802.653 60.912H804.465C804.273 61.552 803.905 62.08 803.361 62.496C802.817 62.904 802.149 63.108 801.357 63.108C800.717 63.108 800.141 62.968 799.629 62.688C799.125 62.4 798.729 61.996 798.441 61.476C798.161 60.956 798.021 60.356 798.021 59.676C798.021 58.988 798.161 58.384 798.441 57.864C798.721 57.344 799.113 56.944 799.617 56.664C800.121 56.384 800.701 56.244 801.357 56.244C801.989 56.244 802.553 56.38 803.049 56.652C803.553 56.924 803.941 57.312 804.213 57.816C804.493 58.312 804.633 58.884 804.633 59.532ZM802.893 59.052C802.885 58.62 802.729 58.276 802.425 58.02C802.121 57.756 801.749 57.624 801.309 57.624C800.893 57.624 800.541 57.752 800.253 58.008C799.973 58.256 799.801 58.604 799.737 59.052H802.893ZM805.427 59.676C805.427 58.988 805.567 58.388 805.847 57.876C806.127 57.356 806.515 56.956 807.011 56.676C807.507 56.388 808.075 56.244 808.715 56.244C809.539 56.244 810.219 56.452 810.755 56.868C811.299 57.276 811.663 57.852 811.847 58.596H810.035C809.939 58.308 809.775 58.084 809.543 57.924C809.319 57.756 809.039 57.672 808.703 57.672C808.223 57.672 807.843 57.848 807.563 58.2C807.283 58.544 807.143 59.036 807.143 59.676C807.143 60.308 807.283 60.8 807.563 61.152C807.843 61.496 808.223 61.668 808.703 61.668C809.383 61.668 809.827 61.364 810.035 60.756H811.847C811.663 61.476 811.299 62.048 810.755 62.472C810.211 62.896 809.531 63.108 808.715 63.108C808.075 63.108 807.507 62.968 807.011 62.688C806.515 62.4 806.127 62 805.847 61.488C805.567 60.968 805.427 60.364 805.427 59.676ZM815.034 57.732V60.948C815.034 61.172 815.086 61.336 815.19 61.44C815.302 61.536 815.486 61.584 815.742 61.584H816.522V63H815.466C814.05 63 813.342 62.312 813.342 60.936V57.732H812.55V56.352H813.342V54.708H815.034V56.352H816.522V57.732H815.034Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 20, y: 92, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M61.648 109L59.8 105.736H59.008V109H57.328V100.624H60.472C61.12 100.624 61.672 100.74 62.128 100.972C62.584 101.196 62.924 101.504 63.148 101.896C63.38 102.28 63.496 102.712 63.496 103.192C63.496 103.744 63.336 104.244 63.016 104.692C62.696 105.132 62.22 105.436 61.588 105.604L63.592 109H61.648ZM59.008 104.476H60.412C60.868 104.476 61.208 104.368 61.432 104.152C61.656 103.928 61.768 103.62 61.768 103.228C61.768 102.844 61.656 102.548 61.432 102.34C61.208 102.124 60.868 102.016 60.412 102.016H59.008V104.476ZM71.1955 105.532C71.1955 105.772 71.1795 105.988 71.1475 106.18H66.2875C66.3275 106.66 66.4955 107.036 66.7915 107.308C67.0875 107.58 67.4515 107.716 67.8835 107.716C68.5075 107.716 68.9515 107.448 69.2155 106.912H71.0275C70.8355 107.552 70.4675 108.08 69.9235 108.496C69.3795 108.904 68.7115 109.108 67.9195 109.108C67.2795 109.108 66.7035 108.968 66.1915 108.688C65.6875 108.4 65.2915 107.996 65.0035 107.476C64.7235 106.956 64.5835 106.356 64.5835 105.676C64.5835 104.988 64.7235 104.384 65.0035 103.864C65.2835 103.344 65.6755 102.944 66.1795 102.664C66.6835 102.384 67.2635 102.244 67.9195 102.244C68.5515 102.244 69.1155 102.38 69.6115 102.652C70.1155 102.924 70.5035 103.312 70.7755 103.816C71.0555 104.312 71.1955 104.884 71.1955 105.532ZM69.4555 105.052C69.4475 104.62 69.2915 104.276 68.9875 104.02C68.6835 103.756 68.3115 103.624 67.8715 103.624C67.4555 103.624 67.1035 103.752 66.8155 104.008C66.5355 104.256 66.3635 104.604 66.2995 105.052H69.4555ZM75.3738 109.108C74.7338 109.108 74.1578 108.968 73.6458 108.688C73.1338 108.4 72.7298 107.996 72.4338 107.476C72.1458 106.956 72.0018 106.356 72.0018 105.676C72.0018 104.996 72.1498 104.396 72.4458 103.876C72.7498 103.356 73.1618 102.956 73.6818 102.676C74.2018 102.388 74.7818 102.244 75.4218 102.244C76.0618 102.244 76.6418 102.388 77.1618 102.676C77.6818 102.956 78.0898 103.356 78.3858 103.876C78.6898 104.396 78.8418 104.996 78.8418 105.676C78.8418 106.356 78.6858 106.956 78.3737 107.476C78.0698 107.996 77.6538 108.4 77.1258 108.688C76.6058 108.968 76.0218 109.108 75.3738 109.108ZM75.3738 107.644C75.6778 107.644 75.9618 107.572 76.2258 107.428C76.4978 107.276 76.7138 107.052 76.8738 106.756C77.0338 106.46 77.1138 106.1 77.1138 105.676C77.1138 105.044 76.9458 104.56 76.6098 104.224C76.2818 103.88 75.8778 103.708 75.3978 103.708C74.9178 103.708 74.5138 103.88 74.1858 104.224C73.8658 104.56 73.7058 105.044 73.7058 105.676C73.7058 106.308 73.8618 106.796 74.1738 107.14C74.4938 107.476 74.8938 107.644 75.3738 107.644ZM81.7541 103.312C81.9701 103.008 82.2661 102.756 82.6421 102.556C83.0261 102.348 83.4621 102.244 83.9501 102.244C84.5181 102.244 85.0301 102.384 85.4861 102.664C85.9501 102.944 86.3141 103.344 86.5781 103.864C86.8501 104.376 86.9861 104.972 86.9861 105.652C86.9861 106.332 86.8501 106.936 86.5781 107.464C86.3141 107.984 85.9501 108.388 85.4861 108.676C85.0301 108.964 84.5181 109.108 83.9501 109.108C83.4621 109.108 83.0301 109.008 82.6541 108.808C82.2861 108.608 81.9861 108.356 81.7541 108.052V112.168H80.0741V102.352H81.7541V103.312ZM85.2701 105.652C85.2701 105.252 85.1861 104.908 85.0181 104.62C84.8581 104.324 84.6421 104.1 84.3701 103.948C84.1061 103.796 83.8181 103.72 83.5061 103.72C83.2021 103.72 82.9141 103.8 82.6421 103.96C82.3781 104.112 82.1621 104.336 81.9941 104.632C81.8341 104.928 81.7541 105.276 81.7541 105.676C81.7541 106.076 81.8341 106.424 81.9941 106.72C82.1621 107.016 82.3781 107.244 82.6421 107.404C82.9141 107.556 83.2021 107.632 83.5061 107.632C83.8181 107.632 84.1061 107.552 84.3701 107.392C84.6421 107.232 84.8581 107.004 85.0181 106.708C85.1861 106.412 85.2701 106.06 85.2701 105.652ZM94.3869 105.532C94.3869 105.772 94.3709 105.988 94.3389 106.18H89.4789C89.5189 106.66 89.6869 107.036 89.9829 107.308C90.2789 107.58 90.6429 107.716 91.0749 107.716C91.6989 107.716 92.1429 107.448 92.4069 106.912H94.2189C94.0269 107.552 93.6589 108.08 93.1149 108.496C92.5709 108.904 91.9029 109.108 91.1109 109.108C90.4709 109.108 89.8949 108.968 89.3829 108.688C88.8789 108.4 88.4829 107.996 88.1949 107.476C87.9149 106.956 87.7749 106.356 87.7749 105.676C87.7749 104.988 87.9149 104.384 88.1949 103.864C88.4749 103.344 88.8669 102.944 89.3709 102.664C89.8749 102.384 90.4549 102.244 91.1109 102.244C91.7429 102.244 92.3069 102.38 92.8029 102.652C93.3069 102.924 93.6949 103.312 93.9669 103.816C94.2469 104.312 94.3869 104.884 94.3869 105.532ZM92.6469 105.052C92.6389 104.62 92.4829 104.276 92.1789 104.02C91.8749 103.756 91.5029 103.624 91.0629 103.624C90.6469 103.624 90.2949 103.752 90.0069 104.008C89.7269 104.256 89.5549 104.604 89.4909 105.052H92.6469ZM99.2972 102.256C100.089 102.256 100.729 102.508 101.217 103.012C101.705 103.508 101.949 104.204 101.949 105.1V109H100.269V105.328C100.269 104.8 100.137 104.396 99.8732 104.116C99.6092 103.828 99.2492 103.684 98.7932 103.684C98.3292 103.684 97.9612 103.828 97.6892 104.116C97.4252 104.396 97.2932 104.8 97.2932 105.328V109H95.6132V102.352H97.2932V103.18C97.5172 102.892 97.8012 102.668 98.1452 102.508C98.4972 102.34 98.8812 102.256 99.2972 102.256Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M139.646 104.646C139.451 104.842 139.451 105.158 139.646 105.354L142.828 108.536C143.024 108.731 143.34 108.731 143.536 108.536C143.731 108.34 143.731 108.024 143.536 107.828L140.707 105L143.536 102.172C143.731 101.976 143.731 101.66 143.536 101.464C143.34 101.269 143.024 101.269 142.828 101.464L139.646 104.646ZM140 105.5H160V104.5H140V105.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M160.354 60.3536C160.549 60.1583 160.549 59.8417 160.354 59.6464L157.172 56.4645C156.976 56.2692 156.66 56.2692 156.464 56.4645C156.269 56.6597 156.269 56.9763 156.464 57.1716L159.293 60L156.464 62.8284C156.269 63.0237 156.269 63.3403 156.464 63.5355C156.66 63.7308 156.976 63.7308 157.172 63.5355L160.354 60.3536ZM80 60V59.5H79.5V60H80ZM80.5 92V60H79.5V92H80.5ZM80 60.5H160V59.5L80 59.5V60.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M249 46V34L780.5 34", stroke: "#A3A3A3" }));
438
+ const SvgStandardTemplate = (props) => /* @__PURE__ */ React__namespace.createElement("svg", { width: "1em", height: "1em", viewBox: "0 0 840 164", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props }, /* @__PURE__ */ React__namespace.createElement("rect", { x: 160, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M214.492 17H212.812L209.008 11.252V17H207.328V8.612H209.008L212.812 14.372V8.612H214.492V17ZM222.332 13.532C222.332 13.772 222.316 13.988 222.284 14.18H217.424C217.464 14.66 217.632 15.036 217.928 15.308C218.224 15.58 218.588 15.716 219.02 15.716C219.644 15.716 220.088 15.448 220.352 14.912H222.164C221.972 15.552 221.604 16.08 221.06 16.496C220.516 16.904 219.848 17.108 219.056 17.108C218.416 17.108 217.84 16.968 217.328 16.688C216.824 16.4 216.428 15.996 216.14 15.476C215.86 14.956 215.72 14.356 215.72 13.676C215.72 12.988 215.86 12.384 216.14 11.864C216.42 11.344 216.812 10.944 217.316 10.664C217.82 10.384 218.4 10.244 219.056 10.244C219.688 10.244 220.252 10.38 220.748 10.652C221.252 10.924 221.64 11.312 221.912 11.816C222.192 12.312 222.332 12.884 222.332 13.532ZM220.592 13.052C220.584 12.62 220.428 12.276 220.124 12.02C219.82 11.756 219.448 11.624 219.008 11.624C218.592 11.624 218.24 11.752 217.952 12.008C217.672 12.256 217.5 12.604 217.436 13.052H220.592ZM232.774 10.352L230.83 17H229.018L227.806 12.356L226.594 17H224.77L222.814 10.352H224.518L225.694 15.416L226.966 10.352H228.742L229.99 15.404L231.166 10.352H232.774Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M219.646 46.3536C219.842 46.5488 220.158 46.5488 220.354 46.3536L223.536 43.1716C223.731 42.9763 223.731 42.6597 223.536 42.4645C223.34 42.2692 223.024 42.2692 222.828 42.4645L220 45.2929L217.172 42.4645C216.976 42.2692 216.66 42.2692 216.464 42.4645C216.269 42.6597 216.269 42.9763 216.464 43.1716L219.646 46.3536ZM219.5 26V46H220.5V26H219.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 160, y: 46, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M197.464 61.404H194.128L193.576 63H191.812L194.824 54.612H196.78L199.792 63H198.016L197.464 61.404ZM197.008 60.06L195.796 56.556L194.584 60.06H197.008ZM203.462 63.108C202.918 63.108 202.43 63.012 201.998 62.82C201.566 62.62 201.222 62.352 200.966 62.016C200.718 61.68 200.582 61.308 200.558 60.9H202.25C202.282 61.156 202.406 61.368 202.622 61.536C202.846 61.704 203.122 61.788 203.45 61.788C203.77 61.788 204.018 61.724 204.194 61.596C204.378 61.468 204.47 61.304 204.47 61.104C204.47 60.888 204.358 60.728 204.134 60.624C203.918 60.512 203.57 60.392 203.09 60.264C202.594 60.144 202.186 60.02 201.866 59.892C201.554 59.764 201.282 59.568 201.05 59.304C200.826 59.04 200.714 58.684 200.714 58.236C200.714 57.868 200.818 57.532 201.026 57.228C201.242 56.924 201.546 56.684 201.938 56.508C202.338 56.332 202.806 56.244 203.342 56.244C204.134 56.244 204.766 56.444 205.238 56.844C205.71 57.236 205.97 57.768 206.018 58.44H204.41C204.386 58.176 204.274 57.968 204.074 57.816C203.882 57.656 203.622 57.576 203.294 57.576C202.99 57.576 202.754 57.632 202.586 57.744C202.426 57.856 202.346 58.012 202.346 58.212C202.346 58.436 202.458 58.608 202.682 58.728C202.906 58.84 203.254 58.956 203.726 59.076C204.206 59.196 204.602 59.32 204.914 59.448C205.226 59.576 205.494 59.776 205.718 60.048C205.95 60.312 206.07 60.664 206.078 61.104C206.078 61.488 205.97 61.832 205.754 62.136C205.546 62.44 205.242 62.68 204.842 62.856C204.45 63.024 203.99 63.108 203.462 63.108ZM210.001 63.108C209.457 63.108 208.969 63.012 208.537 62.82C208.105 62.62 207.761 62.352 207.505 62.016C207.257 61.68 207.121 61.308 207.097 60.9H208.789C208.821 61.156 208.945 61.368 209.161 61.536C209.385 61.704 209.661 61.788 209.989 61.788C210.309 61.788 210.557 61.724 210.733 61.596C210.917 61.468 211.009 61.304 211.009 61.104C211.009 60.888 210.897 60.728 210.673 60.624C210.457 60.512 210.109 60.392 209.629 60.264C209.133 60.144 208.725 60.02 208.405 59.892C208.093 59.764 207.821 59.568 207.589 59.304C207.365 59.04 207.253 58.684 207.253 58.236C207.253 57.868 207.357 57.532 207.565 57.228C207.781 56.924 208.085 56.684 208.477 56.508C208.877 56.332 209.345 56.244 209.881 56.244C210.673 56.244 211.305 56.444 211.777 56.844C212.249 57.236 212.509 57.768 212.557 58.44H210.949C210.925 58.176 210.813 57.968 210.613 57.816C210.421 57.656 210.161 57.576 209.833 57.576C209.529 57.576 209.293 57.632 209.125 57.744C208.965 57.856 208.885 58.012 208.885 58.212C208.885 58.436 208.997 58.608 209.221 58.728C209.445 58.84 209.793 58.956 210.265 59.076C210.745 59.196 211.141 59.32 211.453 59.448C211.765 59.576 212.033 59.776 212.257 60.048C212.489 60.312 212.609 60.664 212.617 61.104C212.617 61.488 212.509 61.832 212.293 62.136C212.085 62.44 211.781 62.68 211.381 62.856C210.989 63.024 210.529 63.108 210.001 63.108ZM214.848 55.56C214.552 55.56 214.304 55.468 214.104 55.284C213.912 55.092 213.816 54.856 213.816 54.576C213.816 54.296 213.912 54.064 214.104 53.88C214.304 53.688 214.552 53.592 214.848 53.592C215.144 53.592 215.388 53.688 215.58 53.88C215.78 54.064 215.88 54.296 215.88 54.576C215.88 54.856 215.78 55.092 215.58 55.284C215.388 55.468 215.144 55.56 214.848 55.56ZM215.676 56.352V63H213.996V56.352H215.676ZM219.94 56.244C220.436 56.244 220.872 56.344 221.248 56.544C221.624 56.736 221.92 56.988 222.136 57.3V56.352H223.828V63.048C223.828 63.664 223.704 64.212 223.456 64.692C223.208 65.18 222.836 65.564 222.34 65.844C221.844 66.132 221.244 66.276 220.54 66.276C219.596 66.276 218.82 66.056 218.212 65.616C217.612 65.176 217.272 64.576 217.192 63.816H218.86C218.948 64.12 219.136 64.36 219.424 64.536C219.72 64.72 220.076 64.812 220.492 64.812C220.98 64.812 221.376 64.664 221.68 64.368C221.984 64.08 222.136 63.64 222.136 63.048V62.016C221.92 62.328 221.62 62.588 221.236 62.796C220.86 63.004 220.428 63.108 219.94 63.108C219.38 63.108 218.868 62.964 218.404 62.676C217.94 62.388 217.572 61.984 217.3 61.464C217.036 60.936 216.904 60.332 216.904 59.652C216.904 58.98 217.036 58.384 217.3 57.864C217.572 57.344 217.936 56.944 218.392 56.664C218.856 56.384 219.372 56.244 219.94 56.244ZM222.136 59.676C222.136 59.268 222.056 58.92 221.896 58.632C221.736 58.336 221.52 58.112 221.248 57.96C220.976 57.8 220.684 57.72 220.372 57.72C220.06 57.72 219.772 57.796 219.508 57.948C219.244 58.1 219.028 58.324 218.86 58.62C218.7 58.908 218.62 59.252 218.62 59.652C218.62 60.052 218.7 60.404 218.86 60.708C219.028 61.004 219.244 61.232 219.508 61.392C219.78 61.552 220.068 61.632 220.372 61.632C220.684 61.632 220.976 61.556 221.248 61.404C221.52 61.244 221.736 61.02 221.896 60.732C222.056 60.436 222.136 60.084 222.136 59.676ZM229.153 56.256C229.945 56.256 230.585 56.508 231.073 57.012C231.561 57.508 231.805 58.204 231.805 59.1V63H230.125V59.328C230.125 58.8 229.993 58.396 229.729 58.116C229.465 57.828 229.105 57.684 228.649 57.684C228.185 57.684 227.817 57.828 227.545 58.116C227.281 58.396 227.149 58.8 227.149 59.328V63H225.469V56.352H227.149V57.18C227.373 56.892 227.657 56.668 228.001 56.508C228.353 56.34 228.737 56.256 229.153 56.256ZM239.582 59.532C239.582 59.772 239.566 59.988 239.534 60.18H234.674C234.714 60.66 234.882 61.036 235.178 61.308C235.474 61.58 235.838 61.716 236.27 61.716C236.894 61.716 237.338 61.448 237.602 60.912H239.414C239.222 61.552 238.854 62.08 238.31 62.496C237.766 62.904 237.098 63.108 236.306 63.108C235.666 63.108 235.09 62.968 234.578 62.688C234.074 62.4 233.678 61.996 233.39 61.476C233.11 60.956 232.97 60.356 232.97 59.676C232.97 58.988 233.11 58.384 233.39 57.864C233.67 57.344 234.062 56.944 234.566 56.664C235.07 56.384 235.65 56.244 236.306 56.244C236.938 56.244 237.502 56.38 237.998 56.652C238.502 56.924 238.89 57.312 239.162 57.816C239.442 58.312 239.582 58.884 239.582 59.532ZM237.842 59.052C237.834 58.62 237.678 58.276 237.374 58.02C237.07 57.756 236.698 57.624 236.258 57.624C235.842 57.624 235.49 57.752 235.202 58.008C234.922 58.256 234.75 58.604 234.686 59.052H237.842ZM240.376 59.652C240.376 58.98 240.508 58.384 240.772 57.864C241.044 57.344 241.412 56.944 241.876 56.664C242.34 56.384 242.856 56.244 243.424 56.244C243.856 56.244 244.268 56.34 244.66 56.532C245.052 56.716 245.364 56.964 245.596 57.276V54.12H247.3V63H245.596V62.016C245.388 62.344 245.096 62.608 244.72 62.808C244.344 63.008 243.908 63.108 243.412 63.108C242.852 63.108 242.34 62.964 241.876 62.676C241.412 62.388 241.044 61.984 240.772 61.464C240.508 60.936 240.376 60.332 240.376 59.652ZM245.608 59.676C245.608 59.268 245.528 58.92 245.368 58.632C245.208 58.336 244.992 58.112 244.72 57.96C244.448 57.8 244.156 57.72 243.844 57.72C243.532 57.72 243.244 57.796 242.98 57.948C242.716 58.1 242.5 58.324 242.332 58.62C242.172 58.908 242.092 59.252 242.092 59.652C242.092 60.052 242.172 60.404 242.332 60.708C242.5 61.004 242.716 61.232 242.98 61.392C243.252 61.552 243.54 61.632 243.844 61.632C244.156 61.632 244.448 61.556 244.72 61.404C244.992 61.244 245.208 61.02 245.368 60.732C245.528 60.436 245.608 60.084 245.608 59.676Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M219.646 92.3536C219.842 92.5488 220.158 92.5488 220.354 92.3536L223.536 89.1716C223.731 88.9763 223.731 88.6597 223.536 88.4645C223.34 88.2692 223.024 88.2692 222.828 88.4645L220 91.2929L217.172 88.4645C216.976 88.2692 216.66 88.2692 216.464 88.4645C216.269 88.6597 216.269 88.9763 216.464 89.1716L219.646 92.3536ZM219.5 72V92H220.5V72H219.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 160, y: 92, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M210 100.624V101.98H206.508V104.128H209.184V105.46H206.508V109H204.828V100.624H210ZM212.043 101.56C211.747 101.56 211.499 101.468 211.299 101.284C211.107 101.092 211.011 100.856 211.011 100.576C211.011 100.296 211.107 100.064 211.299 99.88C211.499 99.688 211.747 99.592 212.043 99.592C212.339 99.592 212.583 99.688 212.775 99.88C212.975 100.064 213.075 100.296 213.075 100.576C213.075 100.856 212.975 101.092 212.775 101.284C212.583 101.468 212.339 101.56 212.043 101.56ZM212.871 102.352V109H211.191V102.352H212.871ZM218.203 109L216.835 106.936L215.623 109H213.823L215.995 105.664L213.799 102.352H215.695L217.051 104.404L218.275 102.352H220.075L217.891 105.664L220.099 109H218.203ZM227.192 105.532C227.192 105.772 227.176 105.988 227.144 106.18H222.284C222.324 106.66 222.492 107.036 222.788 107.308C223.084 107.58 223.448 107.716 223.88 107.716C224.504 107.716 224.948 107.448 225.212 106.912H227.024C226.832 107.552 226.464 108.08 225.92 108.496C225.376 108.904 224.708 109.108 223.916 109.108C223.276 109.108 222.7 108.968 222.188 108.688C221.684 108.4 221.288 107.996 221 107.476C220.72 106.956 220.58 106.356 220.58 105.676C220.58 104.988 220.72 104.384 221 103.864C221.28 103.344 221.672 102.944 222.176 102.664C222.68 102.384 223.26 102.244 223.916 102.244C224.548 102.244 225.112 102.38 225.608 102.652C226.112 102.924 226.5 103.312 226.772 103.816C227.052 104.312 227.192 104.884 227.192 105.532ZM225.452 105.052C225.444 104.62 225.288 104.276 224.984 104.02C224.68 103.756 224.308 103.624 223.868 103.624C223.452 103.624 223.1 103.752 222.812 104.008C222.532 104.256 222.36 104.604 222.296 105.052H225.452ZM227.986 105.652C227.986 104.98 228.118 104.384 228.382 103.864C228.654 103.344 229.022 102.944 229.486 102.664C229.95 102.384 230.466 102.244 231.034 102.244C231.466 102.244 231.878 102.34 232.27 102.532C232.662 102.716 232.974 102.964 233.206 103.276V100.12H234.91V109H233.206V108.016C232.998 108.344 232.706 108.608 232.33 108.808C231.954 109.008 231.518 109.108 231.022 109.108C230.462 109.108 229.95 108.964 229.486 108.676C229.022 108.388 228.654 107.984 228.382 107.464C228.118 106.936 227.986 106.332 227.986 105.652ZM233.218 105.676C233.218 105.268 233.138 104.92 232.978 104.632C232.818 104.336 232.602 104.112 232.33 103.96C232.058 103.8 231.766 103.72 231.454 103.72C231.142 103.72 230.854 103.796 230.59 103.948C230.326 104.1 230.11 104.324 229.942 104.62C229.782 104.908 229.702 105.252 229.702 105.652C229.702 106.052 229.782 106.404 229.942 106.708C230.11 107.004 230.326 107.232 230.59 107.392C230.862 107.552 231.15 107.632 231.454 107.632C231.766 107.632 232.058 107.556 232.33 107.404C232.602 107.244 232.818 107.02 232.978 106.732C233.138 106.436 233.218 106.084 233.218 105.676Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M219.646 138.354C219.842 138.549 220.158 138.549 220.354 138.354L223.536 135.172C223.731 134.976 223.731 134.66 223.536 134.464C223.34 134.269 223.024 134.269 222.828 134.464L220 137.293L217.172 134.464C216.976 134.269 216.66 134.269 216.464 134.464C216.269 134.66 216.269 134.976 216.464 135.172L219.646 138.354ZM219.5 118V138H220.5V118H219.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 160, y: 138, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M198.92 150.8C198.92 149.976 199.104 149.24 199.472 148.592C199.848 147.936 200.356 147.428 200.996 147.068C201.644 146.7 202.368 146.516 203.168 146.516C204.104 146.516 204.924 146.756 205.628 147.236C206.332 147.716 206.824 148.38 207.104 149.228H205.172C204.98 148.828 204.708 148.528 204.356 148.328C204.012 148.128 203.612 148.028 203.156 148.028C202.668 148.028 202.232 148.144 201.848 148.376C201.472 148.6 201.176 148.92 200.96 149.336C200.752 149.752 200.648 150.24 200.648 150.8C200.648 151.352 200.752 151.84 200.96 152.264C201.176 152.68 201.472 153.004 201.848 153.236C202.232 153.46 202.668 153.572 203.156 153.572C203.612 153.572 204.012 153.472 204.356 153.272C204.708 153.064 204.98 152.76 205.172 152.36H207.104C206.824 153.216 206.332 153.884 205.628 154.364C204.932 154.836 204.112 155.072 203.168 155.072C202.368 155.072 201.644 154.892 200.996 154.532C200.356 154.164 199.848 153.656 199.472 153.008C199.104 152.36 198.92 151.624 198.92 150.8ZM210.219 146.12V155H208.539V146.12H210.219ZM214.831 155.108C214.191 155.108 213.615 154.968 213.103 154.688C212.591 154.4 212.187 153.996 211.891 153.476C211.603 152.956 211.459 152.356 211.459 151.676C211.459 150.996 211.607 150.396 211.903 149.876C212.207 149.356 212.619 148.956 213.139 148.676C213.659 148.388 214.239 148.244 214.879 148.244C215.519 148.244 216.099 148.388 216.619 148.676C217.139 148.956 217.547 149.356 217.843 149.876C218.147 150.396 218.299 150.996 218.299 151.676C218.299 152.356 218.143 152.956 217.831 153.476C217.527 153.996 217.111 154.4 216.583 154.688C216.063 154.968 215.479 155.108 214.831 155.108ZM214.831 153.644C215.135 153.644 215.419 153.572 215.683 153.428C215.955 153.276 216.171 153.052 216.331 152.756C216.491 152.46 216.571 152.1 216.571 151.676C216.571 151.044 216.403 150.56 216.067 150.224C215.739 149.88 215.335 149.708 214.855 149.708C214.375 149.708 213.971 149.88 213.643 150.224C213.323 150.56 213.163 151.044 213.163 151.676C213.163 152.308 213.319 152.796 213.631 153.14C213.951 153.476 214.351 153.644 214.831 153.644ZM222.075 155.108C221.531 155.108 221.043 155.012 220.611 154.82C220.179 154.62 219.835 154.352 219.579 154.016C219.331 153.68 219.195 153.308 219.171 152.9H220.863C220.895 153.156 221.019 153.368 221.235 153.536C221.459 153.704 221.735 153.788 222.063 153.788C222.383 153.788 222.631 153.724 222.807 153.596C222.991 153.468 223.083 153.304 223.083 153.104C223.083 152.888 222.971 152.728 222.747 152.624C222.531 152.512 222.183 152.392 221.703 152.264C221.207 152.144 220.799 152.02 220.479 151.892C220.167 151.764 219.895 151.568 219.663 151.304C219.439 151.04 219.327 150.684 219.327 150.236C219.327 149.868 219.431 149.532 219.639 149.228C219.855 148.924 220.159 148.684 220.551 148.508C220.951 148.332 221.419 148.244 221.955 148.244C222.747 148.244 223.379 148.444 223.851 148.844C224.323 149.236 224.583 149.768 224.631 150.44H223.023C222.999 150.176 222.887 149.968 222.687 149.816C222.495 149.656 222.235 149.576 221.907 149.576C221.603 149.576 221.367 149.632 221.199 149.744C221.039 149.856 220.959 150.012 220.959 150.212C220.959 150.436 221.071 150.608 221.295 150.728C221.519 150.84 221.867 150.956 222.339 151.076C222.819 151.196 223.215 151.32 223.527 151.448C223.839 151.576 224.107 151.776 224.331 152.048C224.563 152.312 224.683 152.664 224.691 153.104C224.691 153.488 224.583 153.832 224.367 154.136C224.159 154.44 223.855 154.68 223.455 154.856C223.063 155.024 222.603 155.108 222.075 155.108ZM232.25 151.532C232.25 151.772 232.234 151.988 232.202 152.18H227.342C227.382 152.66 227.55 153.036 227.846 153.308C228.142 153.58 228.506 153.716 228.938 153.716C229.562 153.716 230.006 153.448 230.27 152.912H232.082C231.89 153.552 231.522 154.08 230.978 154.496C230.434 154.904 229.766 155.108 228.974 155.108C228.334 155.108 227.758 154.968 227.246 154.688C226.742 154.4 226.346 153.996 226.058 153.476C225.778 152.956 225.638 152.356 225.638 151.676C225.638 150.988 225.778 150.384 226.058 149.864C226.338 149.344 226.73 148.944 227.234 148.664C227.738 148.384 228.318 148.244 228.974 148.244C229.606 148.244 230.17 148.38 230.666 148.652C231.17 148.924 231.558 149.312 231.83 149.816C232.11 150.312 232.25 150.884 232.25 151.532ZM230.51 151.052C230.502 150.62 230.346 150.276 230.042 150.02C229.738 149.756 229.366 149.624 228.926 149.624C228.51 149.624 228.158 149.752 227.87 150.008C227.59 150.256 227.418 150.604 227.354 151.052H230.51ZM233.044 151.652C233.044 150.98 233.176 150.384 233.44 149.864C233.712 149.344 234.08 148.944 234.544 148.664C235.008 148.384 235.524 148.244 236.092 148.244C236.524 148.244 236.936 148.34 237.328 148.532C237.72 148.716 238.032 148.964 238.264 149.276V146.12H239.968V155H238.264V154.016C238.056 154.344 237.764 154.608 237.388 154.808C237.012 155.008 236.576 155.108 236.08 155.108C235.52 155.108 235.008 154.964 234.544 154.676C234.08 154.388 233.712 153.984 233.44 153.464C233.176 152.936 233.044 152.332 233.044 151.652ZM238.276 151.676C238.276 151.268 238.196 150.92 238.036 150.632C237.876 150.336 237.66 150.112 237.388 149.96C237.116 149.8 236.824 149.72 236.512 149.72C236.2 149.72 235.912 149.796 235.648 149.948C235.384 150.1 235.168 150.324 235 150.62C234.84 150.908 234.76 151.252 234.76 151.652C234.76 152.052 234.84 152.404 235 152.708C235.168 153.004 235.384 153.232 235.648 153.392C235.92 153.552 236.208 153.632 236.512 153.632C236.824 153.632 237.116 153.556 237.388 153.404C237.66 153.244 237.876 153.02 238.036 152.732C238.196 152.436 238.276 152.084 238.276 151.676Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M359.646 46.3536C359.842 46.5488 360.158 46.5488 360.354 46.3536L363.536 43.1716C363.731 42.9763 363.731 42.6597 363.536 42.4645C363.34 42.2692 363.024 42.2692 362.828 42.4645L360 45.2929L357.172 42.4645C356.976 42.2692 356.66 42.2692 356.464 42.4645C356.269 42.6597 356.269 42.9763 356.464 43.1716L359.646 46.3536ZM359.5 34V46H360.5V34H359.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 300, y: 46, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M334.256 54.624C335.136 54.624 335.908 54.796 336.572 55.14C337.244 55.484 337.76 55.976 338.12 56.616C338.488 57.248 338.672 57.984 338.672 58.824C338.672 59.664 338.488 60.4 338.12 61.032C337.76 61.656 337.244 62.14 336.572 62.484C335.908 62.828 335.136 63 334.256 63H331.328V54.624H334.256ZM334.196 61.572C335.076 61.572 335.756 61.332 336.236 60.852C336.716 60.372 336.956 59.696 336.956 58.824C336.956 57.952 336.716 57.272 336.236 56.784C335.756 56.288 335.076 56.04 334.196 56.04H333.008V61.572H334.196ZM346.206 56.352V63H344.514V62.16C344.298 62.448 344.014 62.676 343.662 62.844C343.318 63.004 342.942 63.084 342.534 63.084C342.014 63.084 341.554 62.976 341.154 62.76C340.754 62.536 340.438 62.212 340.206 61.788C339.982 61.356 339.87 60.844 339.87 60.252V56.352H341.55V60.012C341.55 60.54 341.682 60.948 341.946 61.236C342.21 61.516 342.57 61.656 343.026 61.656C343.49 61.656 343.854 61.516 344.118 61.236C344.382 60.948 344.514 60.54 344.514 60.012V56.352H346.206ZM349.543 57.312C349.759 57.008 350.055 56.756 350.431 56.556C350.815 56.348 351.251 56.244 351.739 56.244C352.307 56.244 352.819 56.384 353.275 56.664C353.739 56.944 354.103 57.344 354.367 57.864C354.639 58.376 354.775 58.972 354.775 59.652C354.775 60.332 354.639 60.936 354.367 61.464C354.103 61.984 353.739 62.388 353.275 62.676C352.819 62.964 352.307 63.108 351.739 63.108C351.251 63.108 350.819 63.008 350.443 62.808C350.075 62.608 349.775 62.356 349.543 62.052V66.168H347.863V56.352H349.543V57.312ZM353.059 59.652C353.059 59.252 352.975 58.908 352.807 58.62C352.647 58.324 352.431 58.1 352.159 57.948C351.895 57.796 351.607 57.72 351.295 57.72C350.991 57.72 350.703 57.8 350.431 57.96C350.167 58.112 349.951 58.336 349.783 58.632C349.623 58.928 349.543 59.276 349.543 59.676C349.543 60.076 349.623 60.424 349.783 60.72C349.951 61.016 350.167 61.244 350.431 61.404C350.703 61.556 350.991 61.632 351.295 61.632C351.607 61.632 351.895 61.552 352.159 61.392C352.431 61.232 352.647 61.004 352.807 60.708C352.975 60.412 353.059 60.06 353.059 59.652ZM357.676 54.12V63H355.996V54.12H357.676ZM360.188 55.56C359.892 55.56 359.644 55.468 359.444 55.284C359.252 55.092 359.156 54.856 359.156 54.576C359.156 54.296 359.252 54.064 359.444 53.88C359.644 53.688 359.892 53.592 360.188 53.592C360.484 53.592 360.728 53.688 360.92 53.88C361.12 54.064 361.22 54.296 361.22 54.576C361.22 54.856 361.12 55.092 360.92 55.284C360.728 55.468 360.484 55.56 360.188 55.56ZM361.016 56.352V63H359.336V56.352H361.016ZM362.244 59.676C362.244 58.988 362.384 58.388 362.664 57.876C362.944 57.356 363.332 56.956 363.828 56.676C364.324 56.388 364.892 56.244 365.532 56.244C366.356 56.244 367.036 56.452 367.572 56.868C368.116 57.276 368.48 57.852 368.664 58.596H366.852C366.756 58.308 366.592 58.084 366.36 57.924C366.136 57.756 365.856 57.672 365.52 57.672C365.04 57.672 364.66 57.848 364.38 58.2C364.1 58.544 363.96 59.036 363.96 59.676C363.96 60.308 364.1 60.8 364.38 61.152C364.66 61.496 365.04 61.668 365.52 61.668C366.2 61.668 366.644 61.364 366.852 60.756H368.664C368.48 61.476 368.116 62.048 367.572 62.472C367.028 62.896 366.348 63.108 365.532 63.108C364.892 63.108 364.324 62.968 363.828 62.688C363.332 62.4 362.944 62 362.664 61.488C362.384 60.968 362.244 60.364 362.244 59.676ZM369.462 59.652C369.462 58.98 369.594 58.384 369.858 57.864C370.13 57.344 370.494 56.944 370.95 56.664C371.414 56.384 371.93 56.244 372.498 56.244C372.994 56.244 373.426 56.344 373.794 56.544C374.17 56.744 374.47 56.996 374.694 57.3V56.352H376.386V63H374.694V62.028C374.478 62.34 374.178 62.6 373.794 62.808C373.418 63.008 372.982 63.108 372.486 63.108C371.926 63.108 371.414 62.964 370.95 62.676C370.494 62.388 370.13 61.984 369.858 61.464C369.594 60.936 369.462 60.332 369.462 59.652ZM374.694 59.676C374.694 59.268 374.614 58.92 374.454 58.632C374.294 58.336 374.078 58.112 373.806 57.96C373.534 57.8 373.242 57.72 372.93 57.72C372.618 57.72 372.33 57.796 372.066 57.948C371.802 58.1 371.586 58.324 371.418 58.62C371.258 58.908 371.178 59.252 371.178 59.652C371.178 60.052 371.258 60.404 371.418 60.708C371.586 61.004 371.802 61.232 372.066 61.392C372.338 61.552 372.626 61.632 372.93 61.632C373.242 61.632 373.534 61.556 373.806 61.404C374.078 61.244 374.294 61.02 374.454 60.732C374.614 60.436 374.694 60.084 374.694 59.676ZM379.983 57.732V60.948C379.983 61.172 380.035 61.336 380.139 61.44C380.251 61.536 380.435 61.584 380.691 61.584H381.471V63H380.415C378.999 63 378.291 62.312 378.291 60.936V57.732H377.499V56.352H378.291V54.708H379.983V56.352H381.471V57.732H379.983ZM388.86 59.532C388.86 59.772 388.844 59.988 388.812 60.18H383.952C383.992 60.66 384.16 61.036 384.456 61.308C384.752 61.58 385.116 61.716 385.548 61.716C386.172 61.716 386.616 61.448 386.88 60.912H388.692C388.5 61.552 388.132 62.08 387.588 62.496C387.044 62.904 386.376 63.108 385.584 63.108C384.944 63.108 384.368 62.968 383.856 62.688C383.352 62.4 382.956 61.996 382.668 61.476C382.388 60.956 382.248 60.356 382.248 59.676C382.248 58.988 382.388 58.384 382.668 57.864C382.948 57.344 383.34 56.944 383.844 56.664C384.348 56.384 384.928 56.244 385.584 56.244C386.216 56.244 386.78 56.38 387.276 56.652C387.78 56.924 388.168 57.312 388.44 57.816C388.72 58.312 388.86 58.884 388.86 59.532ZM387.12 59.052C387.112 58.62 386.956 58.276 386.652 58.02C386.348 57.756 385.976 57.624 385.536 57.624C385.12 57.624 384.768 57.752 384.48 58.008C384.2 58.256 384.028 58.604 383.964 59.052H387.12Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M499.646 46.3536C499.842 46.5488 500.158 46.5488 500.354 46.3536L503.536 43.1716C503.731 42.9763 503.731 42.6597 503.536 42.4645C503.34 42.2692 503.024 42.2692 502.828 42.4645L500 45.2929L497.172 42.4645C496.976 42.2692 496.66 42.2692 496.464 42.4645C496.269 42.6597 496.269 42.9763 496.464 43.1716L499.646 46.3536ZM499.5 34V46H500.5V34H499.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 440, y: 46, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M478.148 63L476.3 59.736H475.508V63H473.828V54.624H476.972C477.62 54.624 478.172 54.74 478.628 54.972C479.084 55.196 479.424 55.504 479.648 55.896C479.88 56.28 479.996 56.712 479.996 57.192C479.996 57.744 479.836 58.244 479.516 58.692C479.196 59.132 478.72 59.436 478.088 59.604L480.092 63H478.148ZM475.508 58.476H476.912C477.368 58.476 477.708 58.368 477.932 58.152C478.156 57.928 478.268 57.62 478.268 57.228C478.268 56.844 478.156 56.548 477.932 56.34C477.708 56.124 477.368 56.016 476.912 56.016H475.508V58.476ZM487.696 59.532C487.696 59.772 487.68 59.988 487.648 60.18H482.788C482.828 60.66 482.996 61.036 483.292 61.308C483.588 61.58 483.952 61.716 484.384 61.716C485.008 61.716 485.452 61.448 485.716 60.912H487.528C487.336 61.552 486.968 62.08 486.424 62.496C485.88 62.904 485.212 63.108 484.42 63.108C483.78 63.108 483.204 62.968 482.692 62.688C482.188 62.4 481.792 61.996 481.504 61.476C481.224 60.956 481.083 60.356 481.083 59.676C481.083 58.988 481.224 58.384 481.504 57.864C481.784 57.344 482.176 56.944 482.68 56.664C483.184 56.384 483.764 56.244 484.42 56.244C485.052 56.244 485.616 56.38 486.112 56.652C486.616 56.924 487.004 57.312 487.276 57.816C487.556 58.312 487.696 58.884 487.696 59.532ZM485.956 59.052C485.948 58.62 485.792 58.276 485.488 58.02C485.184 57.756 484.812 57.624 484.372 57.624C483.956 57.624 483.604 57.752 483.316 58.008C483.036 58.256 482.864 58.604 482.8 59.052H485.956ZM489.774 55.56C489.47 55.56 489.218 55.468 489.018 55.284C488.826 55.092 488.73 54.856 488.73 54.576C488.73 54.296 488.826 54.064 489.018 53.88C489.218 53.688 489.47 53.592 489.774 53.592C490.07 53.592 490.314 53.688 490.506 53.88C490.698 54.064 490.794 54.296 490.794 54.576C490.794 54.856 490.698 55.092 490.506 55.284C490.314 55.468 490.07 55.56 489.774 55.56ZM490.602 64.092C490.602 64.828 490.418 65.356 490.05 65.676C489.69 66.004 489.17 66.168 488.49 66.168H487.746V64.74H488.226C488.482 64.74 488.662 64.688 488.766 64.584C488.87 64.488 488.922 64.328 488.922 64.104V56.352H490.602V64.092ZM498.442 59.532C498.442 59.772 498.426 59.988 498.394 60.18H493.534C493.574 60.66 493.742 61.036 494.038 61.308C494.334 61.58 494.698 61.716 495.13 61.716C495.754 61.716 496.198 61.448 496.462 60.912H498.274C498.082 61.552 497.714 62.08 497.17 62.496C496.626 62.904 495.958 63.108 495.166 63.108C494.526 63.108 493.95 62.968 493.438 62.688C492.934 62.4 492.538 61.996 492.25 61.476C491.97 60.956 491.83 60.356 491.83 59.676C491.83 58.988 491.97 58.384 492.25 57.864C492.53 57.344 492.922 56.944 493.426 56.664C493.93 56.384 494.51 56.244 495.166 56.244C495.798 56.244 496.362 56.38 496.858 56.652C497.362 56.924 497.75 57.312 498.022 57.816C498.302 58.312 498.442 58.884 498.442 59.532ZM496.702 59.052C496.694 58.62 496.538 58.276 496.234 58.02C495.93 57.756 495.558 57.624 495.118 57.624C494.702 57.624 494.35 57.752 494.062 58.008C493.782 58.256 493.61 58.604 493.546 59.052H496.702ZM499.236 59.676C499.236 58.988 499.376 58.388 499.656 57.876C499.936 57.356 500.324 56.956 500.82 56.676C501.316 56.388 501.884 56.244 502.524 56.244C503.348 56.244 504.028 56.452 504.564 56.868C505.108 57.276 505.472 57.852 505.656 58.596H503.844C503.748 58.308 503.584 58.084 503.352 57.924C503.128 57.756 502.848 57.672 502.512 57.672C502.032 57.672 501.652 57.848 501.372 58.2C501.092 58.544 500.952 59.036 500.952 59.676C500.952 60.308 501.092 60.8 501.372 61.152C501.652 61.496 502.032 61.668 502.512 61.668C503.192 61.668 503.636 61.364 503.844 60.756H505.656C505.472 61.476 505.108 62.048 504.564 62.472C504.02 62.896 503.34 63.108 502.524 63.108C501.884 63.108 501.316 62.968 500.82 62.688C500.324 62.4 499.936 62 499.656 61.488C499.376 60.968 499.236 60.364 499.236 59.676ZM508.843 57.732V60.948C508.843 61.172 508.895 61.336 508.999 61.44C509.111 61.536 509.295 61.584 509.551 61.584H510.331V63H509.275C507.859 63 507.151 62.312 507.151 60.936V57.732H506.359V56.352H507.151V54.708H508.843V56.352H510.331V57.732H508.843ZM517.719 59.532C517.719 59.772 517.703 59.988 517.671 60.18H512.811C512.851 60.66 513.019 61.036 513.315 61.308C513.611 61.58 513.975 61.716 514.407 61.716C515.031 61.716 515.475 61.448 515.739 60.912H517.551C517.359 61.552 516.991 62.08 516.447 62.496C515.903 62.904 515.235 63.108 514.443 63.108C513.803 63.108 513.227 62.968 512.715 62.688C512.211 62.4 511.815 61.996 511.527 61.476C511.247 60.956 511.107 60.356 511.107 59.676C511.107 58.988 511.247 58.384 511.527 57.864C511.807 57.344 512.199 56.944 512.703 56.664C513.207 56.384 513.787 56.244 514.443 56.244C515.075 56.244 515.639 56.38 516.135 56.652C516.639 56.924 517.027 57.312 517.299 57.816C517.579 58.312 517.719 58.884 517.719 59.532ZM515.979 59.052C515.971 58.62 515.815 58.276 515.511 58.02C515.207 57.756 514.835 57.624 514.395 57.624C513.979 57.624 513.627 57.752 513.339 58.008C513.059 58.256 512.887 58.604 512.823 59.052H515.979ZM518.513 59.652C518.513 58.98 518.645 58.384 518.909 57.864C519.181 57.344 519.549 56.944 520.013 56.664C520.477 56.384 520.993 56.244 521.561 56.244C521.993 56.244 522.405 56.34 522.797 56.532C523.189 56.716 523.501 56.964 523.733 57.276V54.12H525.437V63H523.733V62.016C523.525 62.344 523.233 62.608 522.857 62.808C522.481 63.008 522.045 63.108 521.549 63.108C520.989 63.108 520.477 62.964 520.013 62.676C519.549 62.388 519.181 61.984 518.909 61.464C518.645 60.936 518.513 60.332 518.513 59.652ZM523.745 59.676C523.745 59.268 523.665 58.92 523.505 58.632C523.345 58.336 523.129 58.112 522.857 57.96C522.585 57.8 522.293 57.72 521.981 57.72C521.669 57.72 521.381 57.796 521.117 57.948C520.853 58.1 520.637 58.324 520.469 58.62C520.309 58.908 520.229 59.252 520.229 59.652C520.229 60.052 520.309 60.404 520.469 60.708C520.637 61.004 520.853 61.232 521.117 61.392C521.389 61.552 521.677 61.632 521.981 61.632C522.293 61.632 522.585 61.556 522.857 61.404C523.129 61.244 523.345 61.02 523.505 60.732C523.665 60.436 523.745 60.084 523.745 59.676Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M639.646 46.3536C639.842 46.5488 640.158 46.5488 640.354 46.3536L643.536 43.1716C643.731 42.9763 643.731 42.6597 643.536 42.4645C643.34 42.2692 643.024 42.2692 642.828 42.4645L640 45.2929L637.172 42.4645C636.976 42.2692 636.66 42.2692 636.464 42.4645C636.269 42.6597 636.269 42.9763 636.464 43.1716L639.646 46.3536ZM639.5 34V46H640.5V34H639.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 580, y: 46, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M617.256 54.624C618.136 54.624 618.908 54.796 619.572 55.14C620.244 55.484 620.76 55.976 621.12 56.616C621.488 57.248 621.672 57.984 621.672 58.824C621.672 59.664 621.488 60.4 621.12 61.032C620.76 61.656 620.244 62.14 619.572 62.484C618.908 62.828 618.136 63 617.256 63H614.328V54.624H617.256ZM617.196 61.572C618.076 61.572 618.756 61.332 619.236 60.852C619.716 60.372 619.956 59.696 619.956 58.824C619.956 57.952 619.716 57.272 619.236 56.784C618.756 56.288 618.076 56.04 617.196 56.04H616.008V61.572H617.196ZM629.11 59.532C629.11 59.772 629.094 59.988 629.062 60.18H624.202C624.242 60.66 624.41 61.036 624.706 61.308C625.002 61.58 625.366 61.716 625.798 61.716C626.422 61.716 626.866 61.448 627.13 60.912H628.942C628.75 61.552 628.382 62.08 627.838 62.496C627.294 62.904 626.626 63.108 625.834 63.108C625.194 63.108 624.618 62.968 624.106 62.688C623.602 62.4 623.206 61.996 622.918 61.476C622.638 60.956 622.498 60.356 622.498 59.676C622.498 58.988 622.638 58.384 622.918 57.864C623.198 57.344 623.59 56.944 624.094 56.664C624.598 56.384 625.178 56.244 625.834 56.244C626.466 56.244 627.03 56.38 627.526 56.652C628.03 56.924 628.418 57.312 628.69 57.816C628.97 58.312 629.11 58.884 629.11 59.532ZM627.37 59.052C627.362 58.62 627.206 58.276 626.902 58.02C626.598 57.756 626.226 57.624 625.786 57.624C625.37 57.624 625.018 57.752 624.73 58.008C624.45 58.256 624.278 58.604 624.214 59.052H627.37ZM633.384 57.732H632.22V63H630.516V57.732H629.76V56.352H630.516V56.016C630.516 55.2 630.748 54.6 631.212 54.216C631.676 53.832 632.376 53.652 633.312 53.676V55.092C632.904 55.084 632.62 55.152 632.46 55.296C632.3 55.44 632.22 55.7 632.22 56.076V56.352H633.384V57.732ZM640.653 59.532C640.653 59.772 640.637 59.988 640.605 60.18H635.745C635.785 60.66 635.953 61.036 636.249 61.308C636.545 61.58 636.909 61.716 637.341 61.716C637.965 61.716 638.409 61.448 638.673 60.912H640.485C640.293 61.552 639.925 62.08 639.381 62.496C638.837 62.904 638.169 63.108 637.377 63.108C636.737 63.108 636.161 62.968 635.649 62.688C635.145 62.4 634.749 61.996 634.461 61.476C634.181 60.956 634.041 60.356 634.041 59.676C634.041 58.988 634.181 58.384 634.461 57.864C634.741 57.344 635.133 56.944 635.637 56.664C636.141 56.384 636.721 56.244 637.377 56.244C638.009 56.244 638.573 56.38 639.069 56.652C639.573 56.924 639.961 57.312 640.233 57.816C640.513 58.312 640.653 58.884 640.653 59.532ZM638.913 59.052C638.905 58.62 638.749 58.276 638.445 58.02C638.141 57.756 637.769 57.624 637.329 57.624C636.913 57.624 636.561 57.752 636.273 58.008C635.993 58.256 635.821 58.604 635.757 59.052H638.913ZM643.559 57.384C643.775 57.032 644.055 56.756 644.399 56.556C644.751 56.356 645.151 56.256 645.599 56.256V58.02H645.155C644.627 58.02 644.227 58.144 643.955 58.392C643.691 58.64 643.559 59.072 643.559 59.688V63H641.879V56.352H643.559V57.384ZM648.41 57.384C648.626 57.032 648.906 56.756 649.25 56.556C649.602 56.356 650.002 56.256 650.45 56.256V58.02H650.006C649.478 58.02 649.078 58.144 648.806 58.392C648.542 58.64 648.41 59.072 648.41 59.688V63H646.73V56.352H648.41V57.384ZM657.762 59.532C657.762 59.772 657.746 59.988 657.714 60.18H652.854C652.894 60.66 653.062 61.036 653.358 61.308C653.654 61.58 654.018 61.716 654.45 61.716C655.074 61.716 655.518 61.448 655.782 60.912H657.594C657.402 61.552 657.034 62.08 656.49 62.496C655.946 62.904 655.278 63.108 654.486 63.108C653.846 63.108 653.27 62.968 652.758 62.688C652.254 62.4 651.858 61.996 651.57 61.476C651.29 60.956 651.15 60.356 651.15 59.676C651.15 58.988 651.29 58.384 651.57 57.864C651.85 57.344 652.242 56.944 652.746 56.664C653.25 56.384 653.83 56.244 654.486 56.244C655.118 56.244 655.682 56.38 656.178 56.652C656.682 56.924 657.07 57.312 657.342 57.816C657.622 58.312 657.762 58.884 657.762 59.532ZM656.022 59.052C656.014 58.62 655.858 58.276 655.554 58.02C655.25 57.756 654.878 57.624 654.438 57.624C654.022 57.624 653.67 57.752 653.382 58.008C653.102 58.256 652.93 58.604 652.866 59.052H656.022ZM658.556 59.652C658.556 58.98 658.688 58.384 658.952 57.864C659.224 57.344 659.592 56.944 660.056 56.664C660.52 56.384 661.036 56.244 661.604 56.244C662.036 56.244 662.448 56.34 662.84 56.532C663.232 56.716 663.544 56.964 663.776 57.276V54.12H665.48V63H663.776V62.016C663.568 62.344 663.276 62.608 662.9 62.808C662.524 63.008 662.088 63.108 661.592 63.108C661.032 63.108 660.52 62.964 660.056 62.676C659.592 62.388 659.224 61.984 658.952 61.464C658.688 60.936 658.556 60.332 658.556 59.652ZM663.788 59.676C663.788 59.268 663.708 58.92 663.548 58.632C663.388 58.336 663.172 58.112 662.9 57.96C662.628 57.8 662.336 57.72 662.024 57.72C661.712 57.72 661.424 57.796 661.16 57.948C660.896 58.1 660.68 58.324 660.512 58.62C660.352 58.908 660.272 59.252 660.272 59.652C660.272 60.052 660.352 60.404 660.512 60.708C660.68 61.004 660.896 61.232 661.16 61.392C661.432 61.552 661.72 61.632 662.024 61.632C662.336 61.632 662.628 61.556 662.9 61.404C663.172 61.244 663.388 61.02 663.548 60.732C663.708 60.436 663.788 60.084 663.788 59.676Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M779.646 46.3536C779.842 46.5488 780.158 46.5488 780.354 46.3536L783.536 43.1716C783.731 42.9763 783.731 42.6597 783.536 42.4645C783.34 42.2692 783.024 42.2692 782.828 42.4645L780 45.2929L777.172 42.4645C776.976 42.2692 776.66 42.2692 776.464 42.4645C776.269 42.6597 776.269 42.9763 776.464 43.1716L779.646 46.3536ZM779.5 34V46H780.5V34H779.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 720, y: 46, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M750.492 63H748.812L745.008 57.252V63H743.328V54.612H745.008L748.812 60.372V54.612H750.492V63ZM755.104 63.108C754.464 63.108 753.888 62.968 753.376 62.688C752.864 62.4 752.46 61.996 752.164 61.476C751.876 60.956 751.732 60.356 751.732 59.676C751.732 58.996 751.88 58.396 752.176 57.876C752.48 57.356 752.892 56.956 753.412 56.676C753.932 56.388 754.512 56.244 755.152 56.244C755.792 56.244 756.372 56.388 756.892 56.676C757.412 56.956 757.82 57.356 758.116 57.876C758.42 58.396 758.572 58.996 758.572 59.676C758.572 60.356 758.416 60.956 758.104 61.476C757.8 61.996 757.384 62.4 756.856 62.688C756.336 62.968 755.752 63.108 755.104 63.108ZM755.104 61.644C755.408 61.644 755.692 61.572 755.956 61.428C756.228 61.276 756.444 61.052 756.604 60.756C756.764 60.46 756.844 60.1 756.844 59.676C756.844 59.044 756.676 58.56 756.34 58.224C756.012 57.88 755.608 57.708 755.128 57.708C754.648 57.708 754.244 57.88 753.916 58.224C753.596 58.56 753.436 59.044 753.436 59.676C753.436 60.308 753.592 60.796 753.904 61.14C754.224 61.476 754.624 61.644 755.104 61.644ZM761.761 57.732V60.948C761.761 61.172 761.813 61.336 761.917 61.44C762.029 61.536 762.213 61.584 762.469 61.584H763.249V63H762.193C760.777 63 760.069 62.312 760.069 60.936V57.732H759.277V56.352H760.069V54.708H761.761V56.352H763.249V57.732H761.761ZM766.884 59.652C766.884 58.98 767.016 58.384 767.28 57.864C767.552 57.344 767.916 56.944 768.372 56.664C768.836 56.384 769.352 56.244 769.92 56.244C770.416 56.244 770.848 56.344 771.216 56.544C771.592 56.744 771.892 56.996 772.116 57.3V56.352H773.808V63H772.116V62.028C771.9 62.34 771.6 62.6 771.216 62.808C770.84 63.008 770.404 63.108 769.908 63.108C769.348 63.108 768.836 62.964 768.372 62.676C767.916 62.388 767.552 61.984 767.28 61.464C767.016 60.936 766.884 60.332 766.884 59.652ZM772.116 59.676C772.116 59.268 772.036 58.92 771.876 58.632C771.716 58.336 771.5 58.112 771.228 57.96C770.956 57.8 770.664 57.72 770.352 57.72C770.04 57.72 769.752 57.796 769.488 57.948C769.224 58.1 769.008 58.324 768.84 58.62C768.68 58.908 768.6 59.252 768.6 59.652C768.6 60.052 768.68 60.404 768.84 60.708C769.008 61.004 769.224 61.232 769.488 61.392C769.76 61.552 770.048 61.632 770.352 61.632C770.664 61.632 770.956 61.556 771.228 61.404C771.5 61.244 771.716 61.02 771.876 60.732C772.036 60.436 772.116 60.084 772.116 59.676ZM781.236 54.624C782.116 54.624 782.888 54.796 783.552 55.14C784.224 55.484 784.74 55.976 785.1 56.616C785.468 57.248 785.652 57.984 785.652 58.824C785.652 59.664 785.468 60.4 785.1 61.032C784.74 61.656 784.224 62.14 783.552 62.484C782.888 62.828 782.116 63 781.236 63H778.308V54.624H781.236ZM781.176 61.572C782.056 61.572 782.736 61.332 783.216 60.852C783.696 60.372 783.936 59.696 783.936 58.824C783.936 57.952 783.696 57.272 783.216 56.784C782.736 56.288 782.056 56.04 781.176 56.04H779.988V61.572H781.176ZM793.09 59.532C793.09 59.772 793.074 59.988 793.042 60.18H788.182C788.222 60.66 788.39 61.036 788.686 61.308C788.982 61.58 789.346 61.716 789.778 61.716C790.402 61.716 790.846 61.448 791.11 60.912H792.922C792.73 61.552 792.362 62.08 791.818 62.496C791.274 62.904 790.606 63.108 789.814 63.108C789.174 63.108 788.598 62.968 788.086 62.688C787.582 62.4 787.186 61.996 786.898 61.476C786.618 60.956 786.478 60.356 786.478 59.676C786.478 58.988 786.618 58.384 786.898 57.864C787.178 57.344 787.57 56.944 788.074 56.664C788.578 56.384 789.158 56.244 789.814 56.244C790.446 56.244 791.01 56.38 791.506 56.652C792.01 56.924 792.398 57.312 792.67 57.816C792.95 58.312 793.09 58.884 793.09 59.532ZM791.35 59.052C791.342 58.62 791.186 58.276 790.882 58.02C790.578 57.756 790.206 57.624 789.766 57.624C789.35 57.624 788.998 57.752 788.71 58.008C788.43 58.256 788.258 58.604 788.194 59.052H791.35ZM797.364 57.732H796.2V63H794.496V57.732H793.74V56.352H794.496V56.016C794.496 55.2 794.728 54.6 795.192 54.216C795.656 53.832 796.356 53.652 797.292 53.676V55.092C796.884 55.084 796.6 55.152 796.44 55.296C796.28 55.44 796.2 55.7 796.2 56.076V56.352H797.364V57.732ZM804.633 59.532C804.633 59.772 804.617 59.988 804.585 60.18H799.725C799.765 60.66 799.933 61.036 800.229 61.308C800.525 61.58 800.889 61.716 801.321 61.716C801.945 61.716 802.389 61.448 802.653 60.912H804.465C804.273 61.552 803.905 62.08 803.361 62.496C802.817 62.904 802.149 63.108 801.357 63.108C800.717 63.108 800.141 62.968 799.629 62.688C799.125 62.4 798.729 61.996 798.441 61.476C798.161 60.956 798.021 60.356 798.021 59.676C798.021 58.988 798.161 58.384 798.441 57.864C798.721 57.344 799.113 56.944 799.617 56.664C800.121 56.384 800.701 56.244 801.357 56.244C801.989 56.244 802.553 56.38 803.049 56.652C803.553 56.924 803.941 57.312 804.213 57.816C804.493 58.312 804.633 58.884 804.633 59.532ZM802.893 59.052C802.885 58.62 802.729 58.276 802.425 58.02C802.121 57.756 801.749 57.624 801.309 57.624C800.893 57.624 800.541 57.752 800.253 58.008C799.973 58.256 799.801 58.604 799.737 59.052H802.893ZM805.427 59.676C805.427 58.988 805.567 58.388 805.847 57.876C806.127 57.356 806.515 56.956 807.011 56.676C807.507 56.388 808.075 56.244 808.715 56.244C809.539 56.244 810.219 56.452 810.755 56.868C811.299 57.276 811.663 57.852 811.847 58.596H810.035C809.939 58.308 809.775 58.084 809.543 57.924C809.319 57.756 809.039 57.672 808.703 57.672C808.223 57.672 807.843 57.848 807.563 58.2C807.283 58.544 807.143 59.036 807.143 59.676C807.143 60.308 807.283 60.8 807.563 61.152C807.843 61.496 808.223 61.668 808.703 61.668C809.383 61.668 809.827 61.364 810.035 60.756H811.847C811.663 61.476 811.299 62.048 810.755 62.472C810.211 62.896 809.531 63.108 808.715 63.108C808.075 63.108 807.507 62.968 807.011 62.688C806.515 62.4 806.127 62 805.847 61.488C805.567 60.968 805.427 60.364 805.427 59.676ZM815.034 57.732V60.948C815.034 61.172 815.086 61.336 815.19 61.44C815.302 61.536 815.486 61.584 815.742 61.584H816.522V63H815.466C814.05 63 813.342 62.312 813.342 60.936V57.732H812.55V56.352H813.342V54.708H815.034V56.352H816.522V57.732H815.034Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 20, y: 92, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M61.648 109L59.8 105.736H59.008V109H57.328V100.624H60.472C61.12 100.624 61.672 100.74 62.128 100.972C62.584 101.196 62.924 101.504 63.148 101.896C63.38 102.28 63.496 102.712 63.496 103.192C63.496 103.744 63.336 104.244 63.016 104.692C62.696 105.132 62.22 105.436 61.588 105.604L63.592 109H61.648ZM59.008 104.476H60.412C60.868 104.476 61.208 104.368 61.432 104.152C61.656 103.928 61.768 103.62 61.768 103.228C61.768 102.844 61.656 102.548 61.432 102.34C61.208 102.124 60.868 102.016 60.412 102.016H59.008V104.476ZM71.1955 105.532C71.1955 105.772 71.1795 105.988 71.1475 106.18H66.2875C66.3275 106.66 66.4955 107.036 66.7915 107.308C67.0875 107.58 67.4515 107.716 67.8835 107.716C68.5075 107.716 68.9515 107.448 69.2155 106.912H71.0275C70.8355 107.552 70.4675 108.08 69.9235 108.496C69.3795 108.904 68.7115 109.108 67.9195 109.108C67.2795 109.108 66.7035 108.968 66.1915 108.688C65.6875 108.4 65.2915 107.996 65.0035 107.476C64.7235 106.956 64.5835 106.356 64.5835 105.676C64.5835 104.988 64.7235 104.384 65.0035 103.864C65.2835 103.344 65.6755 102.944 66.1795 102.664C66.6835 102.384 67.2635 102.244 67.9195 102.244C68.5515 102.244 69.1155 102.38 69.6115 102.652C70.1155 102.924 70.5035 103.312 70.7755 103.816C71.0555 104.312 71.1955 104.884 71.1955 105.532ZM69.4555 105.052C69.4475 104.62 69.2915 104.276 68.9875 104.02C68.6835 103.756 68.3115 103.624 67.8715 103.624C67.4555 103.624 67.1035 103.752 66.8155 104.008C66.5355 104.256 66.3635 104.604 66.2995 105.052H69.4555ZM75.3738 109.108C74.7338 109.108 74.1578 108.968 73.6458 108.688C73.1338 108.4 72.7298 107.996 72.4338 107.476C72.1458 106.956 72.0018 106.356 72.0018 105.676C72.0018 104.996 72.1498 104.396 72.4458 103.876C72.7498 103.356 73.1618 102.956 73.6818 102.676C74.2018 102.388 74.7818 102.244 75.4218 102.244C76.0618 102.244 76.6418 102.388 77.1618 102.676C77.6818 102.956 78.0898 103.356 78.3858 103.876C78.6898 104.396 78.8418 104.996 78.8418 105.676C78.8418 106.356 78.6858 106.956 78.3737 107.476C78.0698 107.996 77.6538 108.4 77.1258 108.688C76.6058 108.968 76.0218 109.108 75.3738 109.108ZM75.3738 107.644C75.6778 107.644 75.9618 107.572 76.2258 107.428C76.4978 107.276 76.7138 107.052 76.8738 106.756C77.0338 106.46 77.1138 106.1 77.1138 105.676C77.1138 105.044 76.9458 104.56 76.6098 104.224C76.2818 103.88 75.8778 103.708 75.3978 103.708C74.9178 103.708 74.5138 103.88 74.1858 104.224C73.8658 104.56 73.7058 105.044 73.7058 105.676C73.7058 106.308 73.8618 106.796 74.1738 107.14C74.4938 107.476 74.8938 107.644 75.3738 107.644ZM81.7541 103.312C81.9701 103.008 82.2661 102.756 82.6421 102.556C83.0261 102.348 83.4621 102.244 83.9501 102.244C84.5181 102.244 85.0301 102.384 85.4861 102.664C85.9501 102.944 86.3141 103.344 86.5781 103.864C86.8501 104.376 86.9861 104.972 86.9861 105.652C86.9861 106.332 86.8501 106.936 86.5781 107.464C86.3141 107.984 85.9501 108.388 85.4861 108.676C85.0301 108.964 84.5181 109.108 83.9501 109.108C83.4621 109.108 83.0301 109.008 82.6541 108.808C82.2861 108.608 81.9861 108.356 81.7541 108.052V112.168H80.0741V102.352H81.7541V103.312ZM85.2701 105.652C85.2701 105.252 85.1861 104.908 85.0181 104.62C84.8581 104.324 84.6421 104.1 84.3701 103.948C84.1061 103.796 83.8181 103.72 83.5061 103.72C83.2021 103.72 82.9141 103.8 82.6421 103.96C82.3781 104.112 82.1621 104.336 81.9941 104.632C81.8341 104.928 81.7541 105.276 81.7541 105.676C81.7541 106.076 81.8341 106.424 81.9941 106.72C82.1621 107.016 82.3781 107.244 82.6421 107.404C82.9141 107.556 83.2021 107.632 83.5061 107.632C83.8181 107.632 84.1061 107.552 84.3701 107.392C84.6421 107.232 84.8581 107.004 85.0181 106.708C85.1861 106.412 85.2701 106.06 85.2701 105.652ZM94.3869 105.532C94.3869 105.772 94.3709 105.988 94.3389 106.18H89.4789C89.5189 106.66 89.6869 107.036 89.9829 107.308C90.2789 107.58 90.6429 107.716 91.0749 107.716C91.6989 107.716 92.1429 107.448 92.4069 106.912H94.2189C94.0269 107.552 93.6589 108.08 93.1149 108.496C92.5709 108.904 91.9029 109.108 91.1109 109.108C90.4709 109.108 89.8949 108.968 89.3829 108.688C88.8789 108.4 88.4829 107.996 88.1949 107.476C87.9149 106.956 87.7749 106.356 87.7749 105.676C87.7749 104.988 87.9149 104.384 88.1949 103.864C88.4749 103.344 88.8669 102.944 89.3709 102.664C89.8749 102.384 90.4549 102.244 91.1109 102.244C91.7429 102.244 92.3069 102.38 92.8029 102.652C93.3069 102.924 93.6949 103.312 93.9669 103.816C94.2469 104.312 94.3869 104.884 94.3869 105.532ZM92.6469 105.052C92.6389 104.62 92.4829 104.276 92.1789 104.02C91.8749 103.756 91.5029 103.624 91.0629 103.624C90.6469 103.624 90.2949 103.752 90.0069 104.008C89.7269 104.256 89.5549 104.604 89.4909 105.052H92.6469ZM99.2972 102.256C100.089 102.256 100.729 102.508 101.217 103.012C101.705 103.508 101.949 104.204 101.949 105.1V109H100.269V105.328C100.269 104.8 100.137 104.396 99.8732 104.116C99.6092 103.828 99.2492 103.684 98.7932 103.684C98.3292 103.684 97.9612 103.828 97.6892 104.116C97.4252 104.396 97.2932 104.8 97.2932 105.328V109H95.6132V102.352H97.2932V103.18C97.5172 102.892 97.8012 102.668 98.1452 102.508C98.4972 102.34 98.8812 102.256 99.2972 102.256Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M139.646 104.646C139.451 104.842 139.451 105.158 139.646 105.354L142.828 108.536C143.024 108.731 143.34 108.731 143.536 108.536C143.731 108.34 143.731 108.024 143.536 107.828L140.707 105L143.536 102.172C143.731 101.976 143.731 101.66 143.536 101.464C143.34 101.269 143.024 101.269 142.828 101.464L139.646 104.646ZM140 105.5H160V104.5H140V105.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M160.354 60.3536C160.549 60.1583 160.549 59.8417 160.354 59.6464L157.172 56.4645C156.976 56.2692 156.66 56.2692 156.464 56.4645C156.269 56.6597 156.269 56.9763 156.464 57.1716L159.293 60L156.464 62.8284C156.269 63.0237 156.269 63.3403 156.464 63.5355C156.66 63.7308 156.976 63.7308 157.172 63.5355L160.354 60.3536ZM80 60V59.5H79.5V60H80ZM80.5 92V60H79.5V92H80.5ZM80 60.5H160V59.5L80 59.5V60.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M249 46V34L780.5 34", stroke: "#A3A3A3" }));
439
+
440
+ const SvgSampleTemplateFirst = (props) => /* @__PURE__ */ React__namespace.createElement("svg", { width: "1em", height: "1em", viewBox: "0 0 390 285", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props }, /* @__PURE__ */ React__namespace.createElement("rect", { x: 130, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M152.484 8.624V13.808C152.484 14.376 152.632 14.812 152.928 15.116C153.224 15.412 153.64 15.56 154.176 15.56C154.72 15.56 155.14 15.412 155.436 15.116C155.732 14.812 155.88 14.376 155.88 13.808V8.624H157.572V13.796C157.572 14.508 157.416 15.112 157.104 15.608C156.8 16.096 156.388 16.464 155.868 16.712C155.356 16.96 154.784 17.084 154.152 17.084C153.528 17.084 152.96 16.96 152.448 16.712C151.944 16.464 151.544 16.096 151.248 15.608C150.952 15.112 150.804 14.508 150.804 13.796V8.624H152.484ZM162.879 10.256C163.671 10.256 164.311 10.508 164.799 11.012C165.287 11.508 165.531 12.204 165.531 13.1V17H163.851V13.328C163.851 12.8 163.719 12.396 163.455 12.116C163.191 11.828 162.831 11.684 162.375 11.684C161.911 11.684 161.543 11.828 161.271 12.116C161.007 12.396 160.875 12.8 160.875 13.328V17H159.195V10.352H160.875V11.18C161.099 10.892 161.383 10.668 161.727 10.508C162.079 10.34 162.463 10.256 162.879 10.256ZM166.697 13.676C166.697 12.988 166.837 12.388 167.117 11.876C167.397 11.356 167.785 10.956 168.281 10.676C168.777 10.388 169.345 10.244 169.985 10.244C170.809 10.244 171.489 10.452 172.025 10.868C172.569 11.276 172.933 11.852 173.117 12.596H171.305C171.209 12.308 171.045 12.084 170.813 11.924C170.589 11.756 170.309 11.672 169.973 11.672C169.493 11.672 169.113 11.848 168.833 12.2C168.553 12.544 168.413 13.036 168.413 13.676C168.413 14.308 168.553 14.8 168.833 15.152C169.113 15.496 169.493 15.668 169.973 15.668C170.653 15.668 171.097 15.364 171.305 14.756H173.117C172.933 15.476 172.569 16.048 172.025 16.472C171.481 16.896 170.801 17.108 169.985 17.108C169.345 17.108 168.777 16.968 168.281 16.688C167.785 16.4 167.397 16 167.117 15.488C166.837 14.968 166.697 14.364 166.697 13.676ZM177.3 17.108C176.66 17.108 176.084 16.968 175.572 16.688C175.06 16.4 174.656 15.996 174.36 15.476C174.072 14.956 173.928 14.356 173.928 13.676C173.928 12.996 174.076 12.396 174.372 11.876C174.676 11.356 175.088 10.956 175.608 10.676C176.128 10.388 176.708 10.244 177.348 10.244C177.988 10.244 178.568 10.388 179.088 10.676C179.608 10.956 180.016 11.356 180.312 11.876C180.616 12.396 180.768 12.996 180.768 13.676C180.768 14.356 180.612 14.956 180.3 15.476C179.996 15.996 179.58 16.4 179.052 16.688C178.532 16.968 177.948 17.108 177.3 17.108ZM177.3 15.644C177.604 15.644 177.888 15.572 178.152 15.428C178.424 15.276 178.64 15.052 178.8 14.756C178.96 14.46 179.04 14.1 179.04 13.676C179.04 13.044 178.872 12.56 178.536 12.224C178.208 11.88 177.804 11.708 177.324 11.708C176.844 11.708 176.44 11.88 176.112 12.224C175.792 12.56 175.632 13.044 175.632 13.676C175.632 14.308 175.788 14.796 176.1 15.14C176.42 15.476 176.82 15.644 177.3 15.644ZM185.684 10.256C186.476 10.256 187.116 10.508 187.604 11.012C188.092 11.508 188.336 12.204 188.336 13.1V17H186.656V13.328C186.656 12.8 186.524 12.396 186.26 12.116C185.996 11.828 185.636 11.684 185.18 11.684C184.716 11.684 184.348 11.828 184.076 12.116C183.812 12.396 183.68 12.8 183.68 13.328V17H182V10.352H183.68V11.18C183.904 10.892 184.188 10.668 184.532 10.508C184.884 10.34 185.268 10.256 185.684 10.256ZM192.981 11.732H191.817V17H190.113V11.732H189.357V10.352H190.113V10.016C190.113 9.2 190.345 8.6 190.809 8.216C191.273 7.832 191.973 7.652 192.909 7.676V9.092C192.501 9.084 192.217 9.152 192.057 9.296C191.897 9.44 191.817 9.7 191.817 10.076V10.352H192.981V11.732ZM194.922 9.56C194.626 9.56 194.378 9.468 194.178 9.284C193.986 9.092 193.89 8.856 193.89 8.576C193.89 8.296 193.986 8.064 194.178 7.88C194.378 7.688 194.626 7.592 194.922 7.592C195.218 7.592 195.462 7.688 195.654 7.88C195.854 8.064 195.954 8.296 195.954 8.576C195.954 8.856 195.854 9.092 195.654 9.284C195.462 9.468 195.218 9.56 194.922 9.56ZM195.75 10.352V17H194.07V10.352H195.75ZM199.09 11.384C199.306 11.032 199.586 10.756 199.93 10.556C200.282 10.356 200.682 10.256 201.13 10.256V12.02H200.686C200.158 12.02 199.758 12.144 199.486 12.392C199.222 12.64 199.09 13.072 199.09 13.688V17H197.41V10.352H199.09V11.384ZM210.518 10.256C211.334 10.256 211.99 10.508 212.486 11.012C212.99 11.508 213.242 12.204 213.242 13.1V17H211.562V13.328C211.562 12.808 211.43 12.412 211.166 12.14C210.902 11.86 210.542 11.72 210.086 11.72C209.63 11.72 209.266 11.86 208.994 12.14C208.73 12.412 208.598 12.808 208.598 13.328V17H206.918V13.328C206.918 12.808 206.786 12.412 206.522 12.14C206.258 11.86 205.898 11.72 205.442 11.72C204.978 11.72 204.61 11.86 204.338 12.14C204.074 12.412 203.942 12.808 203.942 13.328V17H202.262V10.352H203.942V11.156C204.158 10.876 204.434 10.656 204.77 10.496C205.114 10.336 205.49 10.256 205.898 10.256C206.418 10.256 206.882 10.368 207.29 10.592C207.698 10.808 208.014 11.12 208.238 11.528C208.454 11.144 208.766 10.836 209.174 10.604C209.59 10.372 210.038 10.256 210.518 10.256ZM221.016 13.532C221.016 13.772 221 13.988 220.968 14.18H216.108C216.148 14.66 216.316 15.036 216.612 15.308C216.908 15.58 217.272 15.716 217.704 15.716C218.328 15.716 218.772 15.448 219.036 14.912H220.848C220.656 15.552 220.288 16.08 219.744 16.496C219.2 16.904 218.532 17.108 217.74 17.108C217.1 17.108 216.524 16.968 216.012 16.688C215.508 16.4 215.112 15.996 214.824 15.476C214.544 14.956 214.404 14.356 214.404 13.676C214.404 12.988 214.544 12.384 214.824 11.864C215.104 11.344 215.496 10.944 216 10.664C216.504 10.384 217.084 10.244 217.74 10.244C218.372 10.244 218.936 10.38 219.432 10.652C219.936 10.924 220.324 11.312 220.596 11.816C220.876 12.312 221.016 12.884 221.016 13.532ZM219.276 13.052C219.268 12.62 219.112 12.276 218.808 12.02C218.504 11.756 218.132 11.624 217.692 11.624C217.276 11.624 216.924 11.752 216.636 12.008C216.356 12.256 216.184 12.604 216.12 13.052H219.276ZM221.81 13.652C221.81 12.98 221.942 12.384 222.206 11.864C222.478 11.344 222.846 10.944 223.31 10.664C223.774 10.384 224.29 10.244 224.858 10.244C225.29 10.244 225.702 10.34 226.094 10.532C226.486 10.716 226.798 10.964 227.03 11.276V8.12H228.734V17H227.03V16.016C226.822 16.344 226.53 16.608 226.154 16.808C225.778 17.008 225.342 17.108 224.846 17.108C224.286 17.108 223.774 16.964 223.31 16.676C222.846 16.388 222.478 15.984 222.206 15.464C221.942 14.936 221.81 14.332 221.81 13.652ZM227.042 13.676C227.042 13.268 226.962 12.92 226.802 12.632C226.642 12.336 226.426 12.112 226.154 11.96C225.882 11.8 225.59 11.72 225.278 11.72C224.966 11.72 224.678 11.796 224.414 11.948C224.15 12.1 223.934 12.324 223.766 12.62C223.606 12.908 223.526 13.252 223.526 13.652C223.526 14.052 223.606 14.404 223.766 14.708C223.934 15.004 224.15 15.232 224.414 15.392C224.686 15.552 224.974 15.632 225.278 15.632C225.59 15.632 225.882 15.556 226.154 15.404C226.426 15.244 226.642 15.02 226.802 14.732C226.962 14.436 227.042 14.084 227.042 13.676Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M189.646 46.3536C189.842 46.5488 190.158 46.5488 190.354 46.3536L193.536 43.1716C193.731 42.9763 193.731 42.6597 193.536 42.4645C193.34 42.2692 193.024 42.2692 192.828 42.4645L190 45.2929L187.172 42.4645C186.976 42.2692 186.66 42.2692 186.464 42.4645C186.269 42.6597 186.269 42.9763 186.464 43.1716L189.646 46.3536ZM189.5 26V46H190.5V26H189.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 130, y: 46, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M184.492 63H182.812L179.008 57.252V63H177.328V54.612H179.008L182.812 60.372V54.612H184.492V63ZM192.332 59.532C192.332 59.772 192.316 59.988 192.284 60.18H187.424C187.464 60.66 187.632 61.036 187.928 61.308C188.224 61.58 188.588 61.716 189.02 61.716C189.644 61.716 190.088 61.448 190.352 60.912H192.164C191.972 61.552 191.604 62.08 191.06 62.496C190.516 62.904 189.848 63.108 189.056 63.108C188.416 63.108 187.84 62.968 187.328 62.688C186.824 62.4 186.428 61.996 186.14 61.476C185.86 60.956 185.72 60.356 185.72 59.676C185.72 58.988 185.86 58.384 186.14 57.864C186.42 57.344 186.812 56.944 187.316 56.664C187.82 56.384 188.4 56.244 189.056 56.244C189.688 56.244 190.252 56.38 190.748 56.652C191.252 56.924 191.64 57.312 191.912 57.816C192.192 58.312 192.332 58.884 192.332 59.532ZM190.592 59.052C190.584 58.62 190.428 58.276 190.124 58.02C189.82 57.756 189.448 57.624 189.008 57.624C188.592 57.624 188.24 57.752 187.952 58.008C187.672 58.256 187.5 58.604 187.436 59.052H190.592ZM202.774 56.352L200.83 63H199.018L197.806 58.356L196.594 63H194.77L192.814 56.352H194.518L195.694 61.416L196.966 56.352H198.742L199.99 61.404L201.166 56.352H202.774Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M189.646 92.3536C189.842 92.5488 190.158 92.5488 190.354 92.3536L193.536 89.1716C193.731 88.9763 193.731 88.6597 193.536 88.4645C193.34 88.2692 193.024 88.2692 192.828 88.4645L190 91.2929L187.172 88.4645C186.976 88.2692 186.66 88.2692 186.464 88.4645C186.269 88.6597 186.269 88.9763 186.464 89.1716L189.646 92.3536ZM189.5 72V92H190.5V72H189.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 130, y: 92, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M167.464 107.404H164.128L163.576 109H161.812L164.824 100.612H166.78L169.792 109H168.016L167.464 107.404ZM167.008 106.06L165.796 102.556L164.584 106.06H167.008ZM173.462 109.108C172.918 109.108 172.43 109.012 171.998 108.82C171.566 108.62 171.222 108.352 170.966 108.016C170.718 107.68 170.582 107.308 170.558 106.9H172.25C172.282 107.156 172.406 107.368 172.622 107.536C172.846 107.704 173.122 107.788 173.45 107.788C173.77 107.788 174.018 107.724 174.194 107.596C174.378 107.468 174.47 107.304 174.47 107.104C174.47 106.888 174.358 106.728 174.134 106.624C173.918 106.512 173.57 106.392 173.09 106.264C172.594 106.144 172.186 106.02 171.866 105.892C171.554 105.764 171.282 105.568 171.05 105.304C170.826 105.04 170.714 104.684 170.714 104.236C170.714 103.868 170.818 103.532 171.026 103.228C171.242 102.924 171.546 102.684 171.938 102.508C172.338 102.332 172.806 102.244 173.342 102.244C174.134 102.244 174.766 102.444 175.238 102.844C175.71 103.236 175.97 103.768 176.018 104.44H174.41C174.386 104.176 174.274 103.968 174.074 103.816C173.882 103.656 173.622 103.576 173.294 103.576C172.99 103.576 172.754 103.632 172.586 103.744C172.426 103.856 172.346 104.012 172.346 104.212C172.346 104.436 172.458 104.608 172.682 104.728C172.906 104.84 173.254 104.956 173.726 105.076C174.206 105.196 174.602 105.32 174.914 105.448C175.226 105.576 175.494 105.776 175.718 106.048C175.95 106.312 176.07 106.664 176.078 107.104C176.078 107.488 175.97 107.832 175.754 108.136C175.546 108.44 175.242 108.68 174.842 108.856C174.45 109.024 173.99 109.108 173.462 109.108ZM180.001 109.108C179.457 109.108 178.969 109.012 178.537 108.82C178.105 108.62 177.761 108.352 177.505 108.016C177.257 107.68 177.121 107.308 177.097 106.9H178.789C178.821 107.156 178.945 107.368 179.161 107.536C179.385 107.704 179.661 107.788 179.989 107.788C180.309 107.788 180.557 107.724 180.733 107.596C180.917 107.468 181.009 107.304 181.009 107.104C181.009 106.888 180.897 106.728 180.673 106.624C180.457 106.512 180.109 106.392 179.629 106.264C179.133 106.144 178.725 106.02 178.405 105.892C178.093 105.764 177.821 105.568 177.589 105.304C177.365 105.04 177.253 104.684 177.253 104.236C177.253 103.868 177.357 103.532 177.565 103.228C177.781 102.924 178.085 102.684 178.477 102.508C178.877 102.332 179.345 102.244 179.881 102.244C180.673 102.244 181.305 102.444 181.777 102.844C182.249 103.236 182.509 103.768 182.557 104.44H180.949C180.925 104.176 180.813 103.968 180.613 103.816C180.421 103.656 180.161 103.576 179.833 103.576C179.529 103.576 179.293 103.632 179.125 103.744C178.965 103.856 178.885 104.012 178.885 104.212C178.885 104.436 178.997 104.608 179.221 104.728C179.445 104.84 179.793 104.956 180.265 105.076C180.745 105.196 181.141 105.32 181.453 105.448C181.765 105.576 182.033 105.776 182.257 106.048C182.489 106.312 182.609 106.664 182.617 107.104C182.617 107.488 182.509 107.832 182.293 108.136C182.085 108.44 181.781 108.68 181.381 108.856C180.989 109.024 180.529 109.108 180.001 109.108ZM184.848 101.56C184.552 101.56 184.304 101.468 184.104 101.284C183.912 101.092 183.816 100.856 183.816 100.576C183.816 100.296 183.912 100.064 184.104 99.88C184.304 99.688 184.552 99.592 184.848 99.592C185.144 99.592 185.388 99.688 185.58 99.88C185.78 100.064 185.88 100.296 185.88 100.576C185.88 100.856 185.78 101.092 185.58 101.284C185.388 101.468 185.144 101.56 184.848 101.56ZM185.676 102.352V109H183.996V102.352H185.676ZM189.94 102.244C190.436 102.244 190.872 102.344 191.248 102.544C191.624 102.736 191.92 102.988 192.136 103.3V102.352H193.828V109.048C193.828 109.664 193.704 110.212 193.456 110.692C193.208 111.18 192.836 111.564 192.34 111.844C191.844 112.132 191.244 112.276 190.54 112.276C189.596 112.276 188.82 112.056 188.212 111.616C187.612 111.176 187.272 110.576 187.192 109.816H188.86C188.948 110.12 189.136 110.36 189.424 110.536C189.72 110.72 190.076 110.812 190.492 110.812C190.98 110.812 191.376 110.664 191.68 110.368C191.984 110.08 192.136 109.64 192.136 109.048V108.016C191.92 108.328 191.62 108.588 191.236 108.796C190.86 109.004 190.428 109.108 189.94 109.108C189.38 109.108 188.868 108.964 188.404 108.676C187.94 108.388 187.572 107.984 187.3 107.464C187.036 106.936 186.904 106.332 186.904 105.652C186.904 104.98 187.036 104.384 187.3 103.864C187.572 103.344 187.936 102.944 188.392 102.664C188.856 102.384 189.372 102.244 189.94 102.244ZM192.136 105.676C192.136 105.268 192.056 104.92 191.896 104.632C191.736 104.336 191.52 104.112 191.248 103.96C190.976 103.8 190.684 103.72 190.372 103.72C190.06 103.72 189.772 103.796 189.508 103.948C189.244 104.1 189.028 104.324 188.86 104.62C188.7 104.908 188.62 105.252 188.62 105.652C188.62 106.052 188.7 106.404 188.86 106.708C189.028 107.004 189.244 107.232 189.508 107.392C189.78 107.552 190.068 107.632 190.372 107.632C190.684 107.632 190.976 107.556 191.248 107.404C191.52 107.244 191.736 107.02 191.896 106.732C192.056 106.436 192.136 106.084 192.136 105.676ZM199.153 102.256C199.945 102.256 200.585 102.508 201.073 103.012C201.561 103.508 201.805 104.204 201.805 105.1V109H200.125V105.328C200.125 104.8 199.993 104.396 199.729 104.116C199.465 103.828 199.105 103.684 198.649 103.684C198.185 103.684 197.817 103.828 197.545 104.116C197.281 104.396 197.149 104.8 197.149 105.328V109H195.469V102.352H197.149V103.18C197.373 102.892 197.657 102.668 198.001 102.508C198.353 102.34 198.737 102.256 199.153 102.256ZM209.582 105.532C209.582 105.772 209.566 105.988 209.534 106.18H204.674C204.714 106.66 204.882 107.036 205.178 107.308C205.474 107.58 205.838 107.716 206.27 107.716C206.894 107.716 207.338 107.448 207.602 106.912H209.414C209.222 107.552 208.854 108.08 208.31 108.496C207.766 108.904 207.098 109.108 206.306 109.108C205.666 109.108 205.09 108.968 204.578 108.688C204.074 108.4 203.678 107.996 203.39 107.476C203.11 106.956 202.97 106.356 202.97 105.676C202.97 104.988 203.11 104.384 203.39 103.864C203.67 103.344 204.062 102.944 204.566 102.664C205.07 102.384 205.65 102.244 206.306 102.244C206.938 102.244 207.502 102.38 207.998 102.652C208.502 102.924 208.89 103.312 209.162 103.816C209.442 104.312 209.582 104.884 209.582 105.532ZM207.842 105.052C207.834 104.62 207.678 104.276 207.374 104.02C207.07 103.756 206.698 103.624 206.258 103.624C205.842 103.624 205.49 103.752 205.202 104.008C204.922 104.256 204.75 104.604 204.686 105.052H207.842ZM210.376 105.652C210.376 104.98 210.508 104.384 210.772 103.864C211.044 103.344 211.412 102.944 211.876 102.664C212.34 102.384 212.856 102.244 213.424 102.244C213.856 102.244 214.268 102.34 214.66 102.532C215.052 102.716 215.364 102.964 215.596 103.276V100.12H217.3V109H215.596V108.016C215.388 108.344 215.096 108.608 214.72 108.808C214.344 109.008 213.908 109.108 213.412 109.108C212.852 109.108 212.34 108.964 211.876 108.676C211.412 108.388 211.044 107.984 210.772 107.464C210.508 106.936 210.376 106.332 210.376 105.652ZM215.608 105.676C215.608 105.268 215.528 104.92 215.368 104.632C215.208 104.336 214.992 104.112 214.72 103.96C214.448 103.8 214.156 103.72 213.844 103.72C213.532 103.72 213.244 103.796 212.98 103.948C212.716 104.1 212.5 104.324 212.332 104.62C212.172 104.908 212.092 105.252 212.092 105.652C212.092 106.052 212.172 106.404 212.332 106.708C212.5 107.004 212.716 107.232 212.98 107.392C213.252 107.552 213.54 107.632 213.844 107.632C214.156 107.632 214.448 107.556 214.72 107.404C214.992 107.244 215.208 107.02 215.368 106.732C215.528 106.436 215.608 106.084 215.608 105.676Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M189.646 138.354C189.842 138.549 190.158 138.549 190.354 138.354L193.536 135.172C193.731 134.976 193.731 134.66 193.536 134.464C193.34 134.269 193.024 134.269 192.828 134.464L190 137.293L187.172 134.464C186.976 134.269 186.66 134.269 186.464 134.464C186.269 134.66 186.269 134.976 186.464 135.172L189.646 138.354ZM189.5 118V138H190.5V118H189.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 130, y: 138, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M167.148 155L165.3 151.736H164.508V155H162.828V146.624H165.972C166.62 146.624 167.172 146.74 167.628 146.972C168.084 147.196 168.424 147.504 168.648 147.896C168.88 148.28 168.996 148.712 168.996 149.192C168.996 149.744 168.836 150.244 168.516 150.692C168.196 151.132 167.72 151.436 167.088 151.604L169.092 155H167.148ZM164.508 150.476H165.912C166.368 150.476 166.708 150.368 166.932 150.152C167.156 149.928 167.268 149.62 167.268 149.228C167.268 148.844 167.156 148.548 166.932 148.34C166.708 148.124 166.368 148.016 165.912 148.016H164.508V150.476ZM176.696 151.532C176.696 151.772 176.68 151.988 176.648 152.18H171.788C171.828 152.66 171.996 153.036 172.292 153.308C172.588 153.58 172.952 153.716 173.384 153.716C174.008 153.716 174.452 153.448 174.716 152.912H176.528C176.336 153.552 175.968 154.08 175.424 154.496C174.88 154.904 174.212 155.108 173.42 155.108C172.78 155.108 172.204 154.968 171.692 154.688C171.188 154.4 170.792 153.996 170.504 153.476C170.224 152.956 170.083 152.356 170.083 151.676C170.083 150.988 170.224 150.384 170.504 149.864C170.784 149.344 171.176 148.944 171.68 148.664C172.184 148.384 172.764 148.244 173.42 148.244C174.052 148.244 174.616 148.38 175.112 148.652C175.616 148.924 176.004 149.312 176.276 149.816C176.556 150.312 176.696 150.884 176.696 151.532ZM174.956 151.052C174.948 150.62 174.792 150.276 174.488 150.02C174.184 149.756 173.812 149.624 173.372 149.624C172.956 149.624 172.604 149.752 172.316 150.008C172.036 150.256 171.864 150.604 171.8 151.052H174.956ZM180.466 155.108C179.922 155.108 179.434 155.012 179.002 154.82C178.57 154.62 178.226 154.352 177.97 154.016C177.722 153.68 177.586 153.308 177.562 152.9H179.254C179.286 153.156 179.41 153.368 179.626 153.536C179.85 153.704 180.126 153.788 180.454 153.788C180.774 153.788 181.022 153.724 181.198 153.596C181.382 153.468 181.474 153.304 181.474 153.104C181.474 152.888 181.362 152.728 181.138 152.624C180.922 152.512 180.574 152.392 180.094 152.264C179.598 152.144 179.19 152.02 178.87 151.892C178.558 151.764 178.286 151.568 178.054 151.304C177.83 151.04 177.718 150.684 177.718 150.236C177.718 149.868 177.822 149.532 178.03 149.228C178.246 148.924 178.55 148.684 178.942 148.508C179.342 148.332 179.81 148.244 180.346 148.244C181.138 148.244 181.77 148.444 182.242 148.844C182.714 149.236 182.974 149.768 183.022 150.44H181.414C181.39 150.176 181.278 149.968 181.078 149.816C180.886 149.656 180.626 149.576 180.298 149.576C179.994 149.576 179.758 149.632 179.59 149.744C179.43 149.856 179.35 150.012 179.35 150.212C179.35 150.436 179.462 150.608 179.686 150.728C179.91 150.84 180.258 150.956 180.73 151.076C181.21 151.196 181.606 151.32 181.918 151.448C182.23 151.576 182.498 151.776 182.722 152.048C182.954 152.312 183.074 152.664 183.082 153.104C183.082 153.488 182.974 153.832 182.758 154.136C182.55 154.44 182.246 154.68 181.846 154.856C181.454 155.024 180.994 155.108 180.466 155.108ZM187.413 155.108C186.773 155.108 186.197 154.968 185.685 154.688C185.173 154.4 184.769 153.996 184.473 153.476C184.185 152.956 184.041 152.356 184.041 151.676C184.041 150.996 184.189 150.396 184.485 149.876C184.789 149.356 185.201 148.956 185.721 148.676C186.241 148.388 186.821 148.244 187.461 148.244C188.101 148.244 188.681 148.388 189.201 148.676C189.721 148.956 190.129 149.356 190.425 149.876C190.729 150.396 190.881 150.996 190.881 151.676C190.881 152.356 190.725 152.956 190.413 153.476C190.109 153.996 189.693 154.4 189.165 154.688C188.645 154.968 188.061 155.108 187.413 155.108ZM187.413 153.644C187.717 153.644 188.001 153.572 188.265 153.428C188.537 153.276 188.753 153.052 188.913 152.756C189.073 152.46 189.153 152.1 189.153 151.676C189.153 151.044 188.985 150.56 188.649 150.224C188.321 149.88 187.917 149.708 187.437 149.708C186.957 149.708 186.553 149.88 186.225 150.224C185.905 150.56 185.745 151.044 185.745 151.676C185.745 152.308 185.901 152.796 186.213 153.14C186.533 153.476 186.933 153.644 187.413 153.644ZM193.793 146.12V155H192.113V146.12H193.793ZM198.225 153.452L199.905 148.352H201.693L199.233 155H197.193L194.745 148.352H196.545L198.225 153.452ZM208.817 151.532C208.817 151.772 208.801 151.988 208.769 152.18H203.909C203.949 152.66 204.117 153.036 204.413 153.308C204.709 153.58 205.073 153.716 205.505 153.716C206.129 153.716 206.573 153.448 206.837 152.912H208.649C208.457 153.552 208.089 154.08 207.545 154.496C207.001 154.904 206.333 155.108 205.541 155.108C204.901 155.108 204.325 154.968 203.813 154.688C203.309 154.4 202.913 153.996 202.625 153.476C202.345 152.956 202.205 152.356 202.205 151.676C202.205 150.988 202.345 150.384 202.625 149.864C202.905 149.344 203.297 148.944 203.801 148.664C204.305 148.384 204.885 148.244 205.541 148.244C206.173 148.244 206.737 148.38 207.233 148.652C207.737 148.924 208.125 149.312 208.397 149.816C208.677 150.312 208.817 150.884 208.817 151.532ZM207.077 151.052C207.069 150.62 206.913 150.276 206.609 150.02C206.305 149.756 205.933 149.624 205.493 149.624C205.077 149.624 204.725 149.752 204.437 150.008C204.157 150.256 203.985 150.604 203.921 151.052H207.077ZM209.611 151.652C209.611 150.98 209.743 150.384 210.007 149.864C210.279 149.344 210.647 148.944 211.111 148.664C211.575 148.384 212.091 148.244 212.659 148.244C213.091 148.244 213.503 148.34 213.895 148.532C214.287 148.716 214.599 148.964 214.831 149.276V146.12H216.535V155H214.831V154.016C214.623 154.344 214.331 154.608 213.955 154.808C213.579 155.008 213.143 155.108 212.647 155.108C212.087 155.108 211.575 154.964 211.111 154.676C210.647 154.388 210.279 153.984 210.007 153.464C209.743 152.936 209.611 152.332 209.611 151.652ZM214.843 151.676C214.843 151.268 214.763 150.92 214.603 150.632C214.443 150.336 214.227 150.112 213.955 149.96C213.683 149.8 213.391 149.72 213.079 149.72C212.767 149.72 212.479 149.796 212.215 149.948C211.951 150.1 211.735 150.324 211.567 150.62C211.407 150.908 211.327 151.252 211.327 151.652C211.327 152.052 211.407 152.404 211.567 152.708C211.735 153.004 211.951 153.232 212.215 153.392C212.487 153.552 212.775 153.632 213.079 153.632C213.391 153.632 213.683 153.556 213.955 153.404C214.227 153.244 214.443 153.02 214.603 152.732C214.763 152.436 214.843 152.084 214.843 151.676Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M130 109L125 111.887V106.113L130 109ZM48 109H47.5V108.5H48V109ZM47.5 188L47.5 109H48.5L48.5 188H47.5ZM48 108.5H125.5V109.5H48V108.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M130 143L125 145.887V140.113L130 143ZM56 143H55.5V142.5H56V143ZM55.5 188V143H56.5V188H55.5ZM56 142.5H125.5V143.5H56V142.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M64 188L61.1132 183H66.8868L64 188ZM64 159H63.5V158.5H64V159ZM63.5 183.5V159H64.5V183.5H63.5ZM64 158.5H130V159.5H64V158.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M130 56L125 58.8868V53.1132L130 56ZM110 56H109.5V55.5H110V56ZM110 101V101.5H109.5V101H110ZM110 55.5H125.5V56.5H110V55.5ZM130 101.5H110V100.5H130V101.5ZM109.5 101V56H110.5V101H109.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M250 143L255 145.887V140.113L250 143ZM308 56H308.5V55.5H308V56ZM308 143V143.5H308.5V143H308ZM250 56.5H308V55.5H250V56.5ZM307.5 56V143H308.5V56H307.5ZM308 142.5H254.5V143.5H308V142.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M250 151L255 153.887V148.113L250 151ZM321 151V151.5H321.5V151H321ZM321 14H321.5V13.5H321V14ZM321 150.5L254.5 150.5V151.5L321 151.5V150.5ZM250 14.5L321 14.5V13.5L250 13.5V14.5ZM320.5 14L320.5 151H321.5L321.5 14H320.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M321 188L323.887 183H318.113L321 188ZM321 159H321.5V158.5H321V159ZM321.5 183.5V159H320.5V183.5H321.5ZM321 158.5L250 158.5V159.5L321 159.5V158.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { y: 188, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M41.648 205L39.8 201.736H39.008V205H37.328V196.624H40.472C41.12 196.624 41.672 196.74 42.128 196.972C42.584 197.196 42.924 197.504 43.148 197.896C43.38 198.28 43.496 198.712 43.496 199.192C43.496 199.744 43.336 200.244 43.016 200.692C42.696 201.132 42.22 201.436 41.588 201.604L43.592 205H41.648ZM39.008 200.476H40.412C40.868 200.476 41.208 200.368 41.432 200.152C41.656 199.928 41.768 199.62 41.768 199.228C41.768 198.844 41.656 198.548 41.432 198.34C41.208 198.124 40.868 198.016 40.412 198.016H39.008V200.476ZM51.1955 201.532C51.1955 201.772 51.1795 201.988 51.1475 202.18H46.2875C46.3275 202.66 46.4955 203.036 46.7915 203.308C47.0875 203.58 47.4515 203.716 47.8835 203.716C48.5075 203.716 48.9515 203.448 49.2155 202.912H51.0275C50.8355 203.552 50.4675 204.08 49.9235 204.496C49.3795 204.904 48.7115 205.108 47.9195 205.108C47.2795 205.108 46.7035 204.968 46.1915 204.688C45.6875 204.4 45.2915 203.996 45.0035 203.476C44.7235 202.956 44.5835 202.356 44.5835 201.676C44.5835 200.988 44.7235 200.384 45.0035 199.864C45.2835 199.344 45.6755 198.944 46.1795 198.664C46.6835 198.384 47.2635 198.244 47.9195 198.244C48.5515 198.244 49.1155 198.38 49.6115 198.652C50.1155 198.924 50.5035 199.312 50.7755 199.816C51.0555 200.312 51.1955 200.884 51.1955 201.532ZM49.4555 201.052C49.4475 200.62 49.2915 200.276 48.9875 200.02C48.6835 199.756 48.3115 199.624 47.8715 199.624C47.4555 199.624 47.1035 199.752 46.8155 200.008C46.5355 200.256 46.3635 200.604 46.2995 201.052H49.4555ZM55.3738 205.108C54.7338 205.108 54.1578 204.968 53.6458 204.688C53.1338 204.4 52.7298 203.996 52.4338 203.476C52.1458 202.956 52.0018 202.356 52.0018 201.676C52.0018 200.996 52.1498 200.396 52.4458 199.876C52.7498 199.356 53.1618 198.956 53.6818 198.676C54.2018 198.388 54.7818 198.244 55.4218 198.244C56.0618 198.244 56.6418 198.388 57.1618 198.676C57.6818 198.956 58.0898 199.356 58.3858 199.876C58.6898 200.396 58.8418 200.996 58.8418 201.676C58.8418 202.356 58.6858 202.956 58.3737 203.476C58.0698 203.996 57.6538 204.4 57.1258 204.688C56.6058 204.968 56.0218 205.108 55.3738 205.108ZM55.3738 203.644C55.6778 203.644 55.9618 203.572 56.2258 203.428C56.4978 203.276 56.7138 203.052 56.8738 202.756C57.0338 202.46 57.1138 202.1 57.1138 201.676C57.1138 201.044 56.9458 200.56 56.6098 200.224C56.2818 199.88 55.8778 199.708 55.3978 199.708C54.9178 199.708 54.5138 199.88 54.1858 200.224C53.8658 200.56 53.7058 201.044 53.7058 201.676C53.7058 202.308 53.8618 202.796 54.1738 203.14C54.4938 203.476 54.8938 203.644 55.3738 203.644ZM61.7541 199.312C61.9701 199.008 62.2661 198.756 62.6421 198.556C63.0261 198.348 63.4621 198.244 63.9501 198.244C64.5181 198.244 65.0301 198.384 65.4861 198.664C65.9501 198.944 66.3141 199.344 66.5781 199.864C66.8501 200.376 66.9861 200.972 66.9861 201.652C66.9861 202.332 66.8501 202.936 66.5781 203.464C66.3141 203.984 65.9501 204.388 65.4861 204.676C65.0301 204.964 64.5181 205.108 63.9501 205.108C63.4621 205.108 63.0301 205.008 62.6541 204.808C62.2861 204.608 61.9861 204.356 61.7541 204.052V208.168H60.0741V198.352H61.7541V199.312ZM65.2701 201.652C65.2701 201.252 65.1861 200.908 65.0181 200.62C64.8581 200.324 64.6421 200.1 64.3701 199.948C64.1061 199.796 63.8181 199.72 63.5061 199.72C63.2021 199.72 62.9141 199.8 62.6421 199.96C62.3781 200.112 62.1621 200.336 61.9941 200.632C61.8341 200.928 61.7541 201.276 61.7541 201.676C61.7541 202.076 61.8341 202.424 61.9941 202.72C62.1621 203.016 62.3781 203.244 62.6421 203.404C62.9141 203.556 63.2021 203.632 63.5061 203.632C63.8181 203.632 64.1061 203.552 64.3701 203.392C64.6421 203.232 64.8581 203.004 65.0181 202.708C65.1861 202.412 65.2701 202.06 65.2701 201.652ZM74.3869 201.532C74.3869 201.772 74.3709 201.988 74.3389 202.18H69.4789C69.5189 202.66 69.6869 203.036 69.9829 203.308C70.2789 203.58 70.6429 203.716 71.0749 203.716C71.6989 203.716 72.1429 203.448 72.4069 202.912H74.2189C74.0269 203.552 73.6589 204.08 73.1149 204.496C72.5709 204.904 71.9029 205.108 71.1109 205.108C70.4709 205.108 69.8949 204.968 69.3829 204.688C68.8789 204.4 68.4829 203.996 68.1949 203.476C67.9149 202.956 67.7749 202.356 67.7749 201.676C67.7749 200.988 67.9149 200.384 68.1949 199.864C68.4749 199.344 68.8669 198.944 69.3709 198.664C69.8749 198.384 70.4549 198.244 71.1109 198.244C71.7429 198.244 72.3069 198.38 72.8029 198.652C73.3069 198.924 73.6949 199.312 73.9669 199.816C74.2469 200.312 74.3869 200.884 74.3869 201.532ZM72.6469 201.052C72.6389 200.62 72.4829 200.276 72.1789 200.02C71.8749 199.756 71.5029 199.624 71.0629 199.624C70.6469 199.624 70.2949 199.752 70.0069 200.008C69.7269 200.256 69.5549 200.604 69.4909 201.052H72.6469ZM79.2972 198.256C80.0892 198.256 80.7292 198.508 81.2172 199.012C81.7052 199.508 81.9492 200.204 81.9492 201.1V205H80.2692V201.328C80.2692 200.8 80.1372 200.396 79.8732 200.116C79.6092 199.828 79.2492 199.684 78.7932 199.684C78.3292 199.684 77.9612 199.828 77.6892 200.116C77.4252 200.396 77.2932 200.8 77.2932 201.328V205H75.6132V198.352H77.2932V199.18C77.5172 198.892 77.8012 198.668 78.1452 198.508C78.4972 198.34 78.8812 198.256 79.2972 198.256Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M120 201L125 203.887V198.113L120 201ZM124.5 201.5H260V200.5H124.5V201.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 130, y: 259, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M168.92 271.8C168.92 270.976 169.104 270.24 169.472 269.592C169.848 268.936 170.356 268.428 170.996 268.068C171.644 267.7 172.368 267.516 173.168 267.516C174.104 267.516 174.924 267.756 175.628 268.236C176.332 268.716 176.824 269.38 177.104 270.228H175.172C174.98 269.828 174.708 269.528 174.356 269.328C174.012 269.128 173.612 269.028 173.156 269.028C172.668 269.028 172.232 269.144 171.848 269.376C171.472 269.6 171.176 269.92 170.96 270.336C170.752 270.752 170.648 271.24 170.648 271.8C170.648 272.352 170.752 272.84 170.96 273.264C171.176 273.68 171.472 274.004 171.848 274.236C172.232 274.46 172.668 274.572 173.156 274.572C173.612 274.572 174.012 274.472 174.356 274.272C174.708 274.064 174.98 273.76 175.172 273.36H177.104C176.824 274.216 176.332 274.884 175.628 275.364C174.932 275.836 174.112 276.072 173.168 276.072C172.368 276.072 171.644 275.892 170.996 275.532C170.356 275.164 169.848 274.656 169.472 274.008C169.104 273.36 168.92 272.624 168.92 271.8ZM180.219 267.12V276H178.539V267.12H180.219ZM184.831 276.108C184.191 276.108 183.615 275.968 183.103 275.688C182.591 275.4 182.187 274.996 181.891 274.476C181.603 273.956 181.459 273.356 181.459 272.676C181.459 271.996 181.607 271.396 181.903 270.876C182.207 270.356 182.619 269.956 183.139 269.676C183.659 269.388 184.239 269.244 184.879 269.244C185.519 269.244 186.099 269.388 186.619 269.676C187.139 269.956 187.547 270.356 187.843 270.876C188.147 271.396 188.299 271.996 188.299 272.676C188.299 273.356 188.143 273.956 187.831 274.476C187.527 274.996 187.111 275.4 186.583 275.688C186.063 275.968 185.479 276.108 184.831 276.108ZM184.831 274.644C185.135 274.644 185.419 274.572 185.683 274.428C185.955 274.276 186.171 274.052 186.331 273.756C186.491 273.46 186.571 273.1 186.571 272.676C186.571 272.044 186.403 271.56 186.067 271.224C185.739 270.88 185.335 270.708 184.855 270.708C184.375 270.708 183.971 270.88 183.643 271.224C183.323 271.56 183.163 272.044 183.163 272.676C183.163 273.308 183.319 273.796 183.631 274.14C183.951 274.476 184.351 274.644 184.831 274.644ZM192.075 276.108C191.531 276.108 191.043 276.012 190.611 275.82C190.179 275.62 189.835 275.352 189.579 275.016C189.331 274.68 189.195 274.308 189.171 273.9H190.863C190.895 274.156 191.019 274.368 191.235 274.536C191.459 274.704 191.735 274.788 192.063 274.788C192.383 274.788 192.631 274.724 192.807 274.596C192.991 274.468 193.083 274.304 193.083 274.104C193.083 273.888 192.971 273.728 192.747 273.624C192.531 273.512 192.183 273.392 191.703 273.264C191.207 273.144 190.799 273.02 190.479 272.892C190.167 272.764 189.895 272.568 189.663 272.304C189.439 272.04 189.327 271.684 189.327 271.236C189.327 270.868 189.431 270.532 189.639 270.228C189.855 269.924 190.159 269.684 190.551 269.508C190.951 269.332 191.419 269.244 191.955 269.244C192.747 269.244 193.379 269.444 193.851 269.844C194.323 270.236 194.583 270.768 194.631 271.44H193.023C192.999 271.176 192.887 270.968 192.687 270.816C192.495 270.656 192.235 270.576 191.907 270.576C191.603 270.576 191.367 270.632 191.199 270.744C191.039 270.856 190.959 271.012 190.959 271.212C190.959 271.436 191.071 271.608 191.295 271.728C191.519 271.84 191.867 271.956 192.339 272.076C192.819 272.196 193.215 272.32 193.527 272.448C193.839 272.576 194.107 272.776 194.331 273.048C194.563 273.312 194.683 273.664 194.691 274.104C194.691 274.488 194.583 274.832 194.367 275.136C194.159 275.44 193.855 275.68 193.455 275.856C193.063 276.024 192.603 276.108 192.075 276.108ZM202.25 272.532C202.25 272.772 202.234 272.988 202.202 273.18H197.342C197.382 273.66 197.55 274.036 197.846 274.308C198.142 274.58 198.506 274.716 198.938 274.716C199.562 274.716 200.006 274.448 200.27 273.912H202.082C201.89 274.552 201.522 275.08 200.978 275.496C200.434 275.904 199.766 276.108 198.974 276.108C198.334 276.108 197.758 275.968 197.246 275.688C196.742 275.4 196.346 274.996 196.058 274.476C195.778 273.956 195.638 273.356 195.638 272.676C195.638 271.988 195.778 271.384 196.058 270.864C196.338 270.344 196.73 269.944 197.234 269.664C197.738 269.384 198.318 269.244 198.974 269.244C199.606 269.244 200.17 269.38 200.666 269.652C201.17 269.924 201.558 270.312 201.83 270.816C202.11 271.312 202.25 271.884 202.25 272.532ZM200.51 272.052C200.502 271.62 200.346 271.276 200.042 271.02C199.738 270.756 199.366 270.624 198.926 270.624C198.51 270.624 198.158 270.752 197.87 271.008C197.59 271.256 197.418 271.604 197.354 272.052H200.51ZM203.044 272.652C203.044 271.98 203.176 271.384 203.44 270.864C203.712 270.344 204.08 269.944 204.544 269.664C205.008 269.384 205.524 269.244 206.092 269.244C206.524 269.244 206.936 269.34 207.328 269.532C207.72 269.716 208.032 269.964 208.264 270.276V267.12H209.968V276H208.264V275.016C208.056 275.344 207.764 275.608 207.388 275.808C207.012 276.008 206.576 276.108 206.08 276.108C205.52 276.108 205.008 275.964 204.544 275.676C204.08 275.388 203.712 274.984 203.44 274.464C203.176 273.936 203.044 273.332 203.044 272.652ZM208.276 272.676C208.276 272.268 208.196 271.92 208.036 271.632C207.876 271.336 207.66 271.112 207.388 270.96C207.116 270.8 206.824 270.72 206.512 270.72C206.2 270.72 205.912 270.796 205.648 270.948C205.384 271.1 205.168 271.324 205 271.62C204.84 271.908 204.76 272.252 204.76 272.652C204.76 273.052 204.84 273.404 205 273.708C205.168 274.004 205.384 274.232 205.648 274.392C205.92 274.552 206.208 274.632 206.512 274.632C206.824 274.632 207.116 274.556 207.388 274.404C207.66 274.244 207.876 274.02 208.036 273.732C208.196 273.436 208.276 273.084 208.276 272.676Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M250 272L255 274.887V269.113L250 272ZM320 272V272.5H320.5V272H320ZM254.5 272.5H320V271.5H254.5V272.5ZM320.5 272V214H319.5V272H320.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M64 214L66.8867 219H61.1133L64 214ZM64 272V272.5H63.5V272H64ZM130 272.5H64V271.5H130V272.5ZM63.5 272V218.5H64.5V272H63.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 260, y: 188, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M304.352 196.624L301.28 205H299.24L296.168 196.624H297.968L300.272 203.284L302.564 196.624H304.352ZM311.539 201.532C311.539 201.772 311.523 201.988 311.491 202.18H306.631C306.671 202.66 306.839 203.036 307.135 203.308C307.431 203.58 307.795 203.716 308.227 203.716C308.851 203.716 309.295 203.448 309.559 202.912H311.371C311.179 203.552 310.811 204.08 310.267 204.496C309.723 204.904 309.055 205.108 308.263 205.108C307.623 205.108 307.047 204.968 306.535 204.688C306.031 204.4 305.635 203.996 305.347 203.476C305.067 202.956 304.927 202.356 304.927 201.676C304.927 200.988 305.067 200.384 305.347 199.864C305.627 199.344 306.019 198.944 306.523 198.664C307.027 198.384 307.607 198.244 308.263 198.244C308.895 198.244 309.459 198.38 309.955 198.652C310.459 198.924 310.847 199.312 311.119 199.816C311.399 200.312 311.539 200.884 311.539 201.532ZM309.799 201.052C309.791 200.62 309.635 200.276 309.331 200.02C309.027 199.756 308.655 199.624 308.215 199.624C307.799 199.624 307.447 199.752 307.159 200.008C306.879 200.256 306.707 200.604 306.643 201.052H309.799ZM314.446 199.384C314.662 199.032 314.942 198.756 315.286 198.556C315.638 198.356 316.038 198.256 316.486 198.256V200.02H316.042C315.514 200.02 315.114 200.144 314.842 200.392C314.578 200.64 314.446 201.072 314.446 201.688V205H312.766V198.352H314.446V199.384ZM318.469 197.56C318.173 197.56 317.925 197.468 317.725 197.284C317.533 197.092 317.437 196.856 317.437 196.576C317.437 196.296 317.533 196.064 317.725 195.88C317.925 195.688 318.173 195.592 318.469 195.592C318.765 195.592 319.009 195.688 319.201 195.88C319.401 196.064 319.501 196.296 319.501 196.576C319.501 196.856 319.401 197.092 319.201 197.284C319.009 197.468 318.765 197.56 318.469 197.56ZM319.297 198.352V205H317.617V198.352H319.297ZM324.005 199.732H322.841V205H321.137V199.732H320.381V198.352H321.137V198.016C321.137 197.2 321.369 196.6 321.833 196.216C322.297 195.832 322.997 195.652 323.933 195.676V197.092C323.525 197.084 323.241 197.152 323.081 197.296C322.921 197.44 322.841 197.7 322.841 198.076V198.352H324.005V199.732ZM325.946 197.56C325.65 197.56 325.402 197.468 325.202 197.284C325.01 197.092 324.914 196.856 324.914 196.576C324.914 196.296 325.01 196.064 325.202 195.88C325.402 195.688 325.65 195.592 325.946 195.592C326.242 195.592 326.486 195.688 326.678 195.88C326.878 196.064 326.978 196.296 326.978 196.576C326.978 196.856 326.878 197.092 326.678 197.284C326.486 197.468 326.242 197.56 325.946 197.56ZM326.774 198.352V205H325.094V198.352H326.774ZM334.613 201.532C334.613 201.772 334.597 201.988 334.565 202.18H329.705C329.745 202.66 329.913 203.036 330.209 203.308C330.505 203.58 330.869 203.716 331.301 203.716C331.925 203.716 332.369 203.448 332.633 202.912H334.445C334.253 203.552 333.885 204.08 333.341 204.496C332.797 204.904 332.129 205.108 331.337 205.108C330.697 205.108 330.121 204.968 329.609 204.688C329.105 204.4 328.709 203.996 328.421 203.476C328.141 202.956 328.001 202.356 328.001 201.676C328.001 200.988 328.141 200.384 328.421 199.864C328.701 199.344 329.093 198.944 329.597 198.664C330.101 198.384 330.681 198.244 331.337 198.244C331.969 198.244 332.533 198.38 333.029 198.652C333.533 198.924 333.921 199.312 334.193 199.816C334.473 200.312 334.613 200.884 334.613 201.532ZM332.873 201.052C332.865 200.62 332.709 200.276 332.405 200.02C332.101 199.756 331.729 199.624 331.289 199.624C330.873 199.624 330.521 199.752 330.233 200.008C329.953 200.256 329.781 200.604 329.717 201.052H332.873ZM335.408 201.652C335.408 200.98 335.54 200.384 335.804 199.864C336.076 199.344 336.444 198.944 336.908 198.664C337.372 198.384 337.888 198.244 338.456 198.244C338.888 198.244 339.3 198.34 339.692 198.532C340.084 198.716 340.396 198.964 340.628 199.276V196.12H342.332V205H340.628V204.016C340.42 204.344 340.128 204.608 339.752 204.808C339.376 205.008 338.94 205.108 338.444 205.108C337.884 205.108 337.372 204.964 336.908 204.676C336.444 204.388 336.076 203.984 335.804 203.464C335.54 202.936 335.408 202.332 335.408 201.652ZM340.64 201.676C340.64 201.268 340.56 200.92 340.4 200.632C340.24 200.336 340.024 200.112 339.752 199.96C339.48 199.8 339.188 199.72 338.876 199.72C338.564 199.72 338.276 199.796 338.012 199.948C337.748 200.1 337.532 200.324 337.364 200.62C337.204 200.908 337.124 201.252 337.124 201.652C337.124 202.052 337.204 202.404 337.364 202.708C337.532 203.004 337.748 203.232 338.012 203.392C338.284 203.552 338.572 203.632 338.876 203.632C339.188 203.632 339.48 203.556 339.752 203.404C340.024 203.244 340.24 203.02 340.4 202.732C340.56 202.436 340.64 202.084 340.64 201.676Z", fill: "white" }));
441
+
442
+ const SvgSampleTemplateSecond = (props) => /* @__PURE__ */ React__namespace.createElement("svg", { width: "1em", height: "1em", viewBox: "0 0 604 210", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props }, /* @__PURE__ */ React__namespace.createElement("path", { d: "M278 5L283 7.88675V2.11325L278 5ZM282.5 5.5H298V4.5H282.5V5.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M294 13L289 10.1132V15.8868L294 13ZM289.5 12.5L274 12.5V13.5L289.5 13.5V12.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 298, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M334 8.624V9.98H330.508V12.128H333.184V13.46H330.508V17H328.828V8.624H334ZM341.371 13.532C341.371 13.772 341.355 13.988 341.323 14.18H336.463C336.503 14.66 336.671 15.036 336.967 15.308C337.263 15.58 337.627 15.716 338.059 15.716C338.683 15.716 339.127 15.448 339.391 14.912H341.203C341.011 15.552 340.643 16.08 340.099 16.496C339.555 16.904 338.887 17.108 338.095 17.108C337.455 17.108 336.879 16.968 336.367 16.688C335.863 16.4 335.467 15.996 335.179 15.476C334.899 14.956 334.759 14.356 334.759 13.676C334.759 12.988 334.899 12.384 335.179 11.864C335.459 11.344 335.851 10.944 336.355 10.664C336.859 10.384 337.439 10.244 338.095 10.244C338.727 10.244 339.291 10.38 339.787 10.652C340.291 10.924 340.679 11.312 340.951 11.816C341.231 12.312 341.371 12.884 341.371 13.532ZM339.631 13.052C339.623 12.62 339.467 12.276 339.163 12.02C338.859 11.756 338.487 11.624 338.047 11.624C337.631 11.624 337.279 11.752 336.991 12.008C336.711 12.256 336.539 12.604 336.475 13.052H339.631ZM348.778 13.532C348.778 13.772 348.762 13.988 348.73 14.18H343.87C343.91 14.66 344.078 15.036 344.374 15.308C344.67 15.58 345.034 15.716 345.466 15.716C346.09 15.716 346.534 15.448 346.798 14.912H348.61C348.418 15.552 348.05 16.08 347.506 16.496C346.962 16.904 346.294 17.108 345.502 17.108C344.862 17.108 344.286 16.968 343.774 16.688C343.27 16.4 342.874 15.996 342.586 15.476C342.306 14.956 342.166 14.356 342.166 13.676C342.166 12.988 342.306 12.384 342.586 11.864C342.866 11.344 343.258 10.944 343.762 10.664C344.266 10.384 344.846 10.244 345.502 10.244C346.134 10.244 346.698 10.38 347.194 10.652C347.698 10.924 348.086 11.312 348.358 11.816C348.638 12.312 348.778 12.884 348.778 13.532ZM347.038 13.052C347.03 12.62 346.874 12.276 346.57 12.02C346.266 11.756 345.894 11.624 345.454 11.624C345.038 11.624 344.686 11.752 344.398 12.008C344.118 12.256 343.946 12.604 343.882 13.052H347.038ZM349.572 13.652C349.572 12.98 349.704 12.384 349.968 11.864C350.24 11.344 350.608 10.944 351.072 10.664C351.536 10.384 352.052 10.244 352.62 10.244C353.052 10.244 353.464 10.34 353.856 10.532C354.248 10.716 354.56 10.964 354.792 11.276V8.12H356.496V17H354.792V16.016C354.584 16.344 354.292 16.608 353.916 16.808C353.54 17.008 353.104 17.108 352.608 17.108C352.048 17.108 351.536 16.964 351.072 16.676C350.608 16.388 350.24 15.984 349.968 15.464C349.704 14.936 349.572 14.332 349.572 13.652ZM354.804 13.676C354.804 13.268 354.724 12.92 354.564 12.632C354.404 12.336 354.188 12.112 353.916 11.96C353.644 11.8 353.352 11.72 353.04 11.72C352.728 11.72 352.44 11.796 352.176 11.948C351.912 12.1 351.696 12.324 351.528 12.62C351.368 12.908 351.288 13.252 351.288 13.652C351.288 14.052 351.368 14.404 351.528 14.708C351.696 15.004 351.912 15.232 352.176 15.392C352.448 15.552 352.736 15.632 353.04 15.632C353.352 15.632 353.644 15.556 353.916 15.404C354.188 15.244 354.404 15.02 354.564 14.732C354.724 14.436 354.804 14.084 354.804 13.676ZM359.817 11.324C360.033 11.004 360.329 10.744 360.705 10.544C361.089 10.344 361.525 10.244 362.013 10.244C362.581 10.244 363.093 10.384 363.549 10.664C364.013 10.944 364.377 11.344 364.641 11.864C364.913 12.376 365.049 12.972 365.049 13.652C365.049 14.332 364.913 14.936 364.641 15.464C364.377 15.984 364.013 16.388 363.549 16.676C363.093 16.964 362.581 17.108 362.013 17.108C361.517 17.108 361.081 17.012 360.705 16.82C360.337 16.62 360.041 16.364 359.817 16.052V17H358.137V8.12H359.817V11.324ZM363.333 13.652C363.333 13.252 363.249 12.908 363.081 12.62C362.921 12.324 362.705 12.1 362.433 11.948C362.169 11.796 361.881 11.72 361.569 11.72C361.265 11.72 360.977 11.8 360.705 11.96C360.441 12.112 360.225 12.336 360.057 12.632C359.897 12.928 359.817 13.276 359.817 13.676C359.817 14.076 359.897 14.424 360.057 14.72C360.225 15.016 360.441 15.244 360.705 15.404C360.977 15.556 361.265 15.632 361.569 15.632C361.881 15.632 362.169 15.552 362.433 15.392C362.705 15.232 362.921 15.004 363.081 14.708C363.249 14.412 363.333 14.06 363.333 13.652ZM365.837 13.652C365.837 12.98 365.969 12.384 366.233 11.864C366.505 11.344 366.869 10.944 367.325 10.664C367.789 10.384 368.305 10.244 368.873 10.244C369.369 10.244 369.801 10.344 370.169 10.544C370.545 10.744 370.845 10.996 371.069 11.3V10.352H372.761V17H371.069V16.028C370.853 16.34 370.553 16.6 370.169 16.808C369.793 17.008 369.357 17.108 368.861 17.108C368.301 17.108 367.789 16.964 367.325 16.676C366.869 16.388 366.505 15.984 366.233 15.464C365.969 14.936 365.837 14.332 365.837 13.652ZM371.069 13.676C371.069 13.268 370.989 12.92 370.829 12.632C370.669 12.336 370.453 12.112 370.181 11.96C369.909 11.8 369.617 11.72 369.305 11.72C368.993 11.72 368.705 11.796 368.441 11.948C368.177 12.1 367.961 12.324 367.793 12.62C367.633 12.908 367.553 13.252 367.553 13.652C367.553 14.052 367.633 14.404 367.793 14.708C367.961 15.004 368.177 15.232 368.441 15.392C368.713 15.552 369.001 15.632 369.305 15.632C369.617 15.632 369.909 15.556 370.181 15.404C370.453 15.244 370.669 15.02 370.829 14.732C370.989 14.436 371.069 14.084 371.069 13.676ZM373.97 13.676C373.97 12.988 374.11 12.388 374.39 11.876C374.67 11.356 375.058 10.956 375.554 10.676C376.05 10.388 376.618 10.244 377.258 10.244C378.082 10.244 378.762 10.452 379.298 10.868C379.842 11.276 380.206 11.852 380.39 12.596H378.578C378.482 12.308 378.318 12.084 378.086 11.924C377.862 11.756 377.582 11.672 377.246 11.672C376.766 11.672 376.386 11.848 376.106 12.2C375.826 12.544 375.686 13.036 375.686 13.676C375.686 14.308 375.826 14.8 376.106 15.152C376.386 15.496 376.766 15.668 377.246 15.668C377.926 15.668 378.37 15.364 378.578 14.756H380.39C380.206 15.476 379.842 16.048 379.298 16.472C378.754 16.896 378.074 17.108 377.258 17.108C376.618 17.108 376.05 16.968 375.554 16.688C375.058 16.4 374.67 16 374.39 15.488C374.11 14.968 373.97 14.364 373.97 13.676ZM385.557 17L383.301 14.168V17H381.621V8.12H383.301V13.172L385.533 10.352H387.717L384.789 13.688L387.741 17H385.557Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M75 45L77.8868 40H72.1132L75 45ZM75 13V12.5H74.5V13H75ZM154 12.5L75 12.5V13.5L154 13.5V12.5ZM74.5 13V40.5H75.5V13H74.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M154 153L149 150.113V155.887L154 153ZM1 13V12.5H0.5L0.5 13H1ZM1 153H0.5V153.5H1V153ZM154 12.5H1L1 13.5H154V12.5ZM0.5 13L0.5 153H1.5L1.5 13H0.5ZM1 153.5H149.5V152.5H1V153.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M464 29.5V196.5", stroke: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M484 30H464", stroke: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 484, y: 17, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M521.464 32.404H518.128L517.576 34H515.812L518.824 25.612H520.78L523.792 34H522.016L521.464 32.404ZM521.008 31.06L519.796 27.556L518.584 31.06H521.008ZM527.462 34.108C526.918 34.108 526.43 34.012 525.998 33.82C525.566 33.62 525.222 33.352 524.966 33.016C524.718 32.68 524.582 32.308 524.558 31.9H526.25C526.282 32.156 526.406 32.368 526.622 32.536C526.846 32.704 527.122 32.788 527.45 32.788C527.77 32.788 528.018 32.724 528.194 32.596C528.378 32.468 528.47 32.304 528.47 32.104C528.47 31.888 528.358 31.728 528.134 31.624C527.918 31.512 527.57 31.392 527.09 31.264C526.594 31.144 526.186 31.02 525.866 30.892C525.554 30.764 525.282 30.568 525.05 30.304C524.826 30.04 524.714 29.684 524.714 29.236C524.714 28.868 524.818 28.532 525.026 28.228C525.242 27.924 525.546 27.684 525.938 27.508C526.338 27.332 526.806 27.244 527.342 27.244C528.134 27.244 528.766 27.444 529.238 27.844C529.71 28.236 529.97 28.768 530.018 29.44H528.41C528.386 29.176 528.274 28.968 528.074 28.816C527.882 28.656 527.622 28.576 527.294 28.576C526.99 28.576 526.754 28.632 526.586 28.744C526.426 28.856 526.346 29.012 526.346 29.212C526.346 29.436 526.458 29.608 526.682 29.728C526.906 29.84 527.254 29.956 527.726 30.076C528.206 30.196 528.602 30.32 528.914 30.448C529.226 30.576 529.494 30.776 529.718 31.048C529.95 31.312 530.07 31.664 530.078 32.104C530.078 32.488 529.97 32.832 529.754 33.136C529.546 33.44 529.242 33.68 528.842 33.856C528.45 34.024 527.99 34.108 527.462 34.108ZM534.001 34.108C533.457 34.108 532.969 34.012 532.537 33.82C532.105 33.62 531.761 33.352 531.505 33.016C531.257 32.68 531.121 32.308 531.097 31.9H532.789C532.821 32.156 532.945 32.368 533.161 32.536C533.385 32.704 533.661 32.788 533.989 32.788C534.309 32.788 534.557 32.724 534.733 32.596C534.917 32.468 535.009 32.304 535.009 32.104C535.009 31.888 534.897 31.728 534.673 31.624C534.457 31.512 534.109 31.392 533.629 31.264C533.133 31.144 532.725 31.02 532.405 30.892C532.093 30.764 531.821 30.568 531.589 30.304C531.365 30.04 531.253 29.684 531.253 29.236C531.253 28.868 531.357 28.532 531.565 28.228C531.781 27.924 532.085 27.684 532.477 27.508C532.877 27.332 533.345 27.244 533.881 27.244C534.673 27.244 535.305 27.444 535.777 27.844C536.249 28.236 536.509 28.768 536.557 29.44H534.949C534.925 29.176 534.813 28.968 534.613 28.816C534.421 28.656 534.161 28.576 533.833 28.576C533.529 28.576 533.293 28.632 533.125 28.744C532.965 28.856 532.885 29.012 532.885 29.212C532.885 29.436 532.997 29.608 533.221 29.728C533.445 29.84 533.793 29.956 534.265 30.076C534.745 30.196 535.141 30.32 535.453 30.448C535.765 30.576 536.033 30.776 536.257 31.048C536.489 31.312 536.609 31.664 536.617 32.104C536.617 32.488 536.509 32.832 536.293 33.136C536.085 33.44 535.781 33.68 535.381 33.856C534.989 34.024 534.529 34.108 534.001 34.108ZM538.848 26.56C538.552 26.56 538.304 26.468 538.104 26.284C537.912 26.092 537.816 25.856 537.816 25.576C537.816 25.296 537.912 25.064 538.104 24.88C538.304 24.688 538.552 24.592 538.848 24.592C539.144 24.592 539.388 24.688 539.58 24.88C539.78 25.064 539.88 25.296 539.88 25.576C539.88 25.856 539.78 26.092 539.58 26.284C539.388 26.468 539.144 26.56 538.848 26.56ZM539.676 27.352V34H537.996V27.352H539.676ZM543.94 27.244C544.436 27.244 544.872 27.344 545.248 27.544C545.624 27.736 545.92 27.988 546.136 28.3V27.352H547.828V34.048C547.828 34.664 547.704 35.212 547.456 35.692C547.208 36.18 546.836 36.564 546.34 36.844C545.844 37.132 545.244 37.276 544.54 37.276C543.596 37.276 542.82 37.056 542.212 36.616C541.612 36.176 541.272 35.576 541.192 34.816H542.86C542.948 35.12 543.136 35.36 543.424 35.536C543.72 35.72 544.076 35.812 544.492 35.812C544.98 35.812 545.376 35.664 545.68 35.368C545.984 35.08 546.136 34.64 546.136 34.048V33.016C545.92 33.328 545.62 33.588 545.236 33.796C544.86 34.004 544.428 34.108 543.94 34.108C543.38 34.108 542.868 33.964 542.404 33.676C541.94 33.388 541.572 32.984 541.3 32.464C541.036 31.936 540.904 31.332 540.904 30.652C540.904 29.98 541.036 29.384 541.3 28.864C541.572 28.344 541.936 27.944 542.392 27.664C542.856 27.384 543.372 27.244 543.94 27.244ZM546.136 30.676C546.136 30.268 546.056 29.92 545.896 29.632C545.736 29.336 545.52 29.112 545.248 28.96C544.976 28.8 544.684 28.72 544.372 28.72C544.06 28.72 543.772 28.796 543.508 28.948C543.244 29.1 543.028 29.324 542.86 29.62C542.7 29.908 542.62 30.252 542.62 30.652C542.62 31.052 542.7 31.404 542.86 31.708C543.028 32.004 543.244 32.232 543.508 32.392C543.78 32.552 544.068 32.632 544.372 32.632C544.684 32.632 544.976 32.556 545.248 32.404C545.52 32.244 545.736 32.02 545.896 31.732C546.056 31.436 546.136 31.084 546.136 30.676ZM553.153 27.256C553.945 27.256 554.585 27.508 555.073 28.012C555.561 28.508 555.805 29.204 555.805 30.1V34H554.125V30.328C554.125 29.8 553.993 29.396 553.729 29.116C553.465 28.828 553.105 28.684 552.649 28.684C552.185 28.684 551.817 28.828 551.545 29.116C551.281 29.396 551.149 29.8 551.149 30.328V34H549.469V27.352H551.149V28.18C551.373 27.892 551.657 27.668 552.001 27.508C552.353 27.34 552.737 27.256 553.153 27.256ZM563.582 30.532C563.582 30.772 563.566 30.988 563.534 31.18H558.674C558.714 31.66 558.882 32.036 559.178 32.308C559.474 32.58 559.838 32.716 560.27 32.716C560.894 32.716 561.338 32.448 561.602 31.912H563.414C563.222 32.552 562.854 33.08 562.31 33.496C561.766 33.904 561.098 34.108 560.306 34.108C559.666 34.108 559.09 33.968 558.578 33.688C558.074 33.4 557.678 32.996 557.39 32.476C557.11 31.956 556.97 31.356 556.97 30.676C556.97 29.988 557.11 29.384 557.39 28.864C557.67 28.344 558.062 27.944 558.566 27.664C559.07 27.384 559.65 27.244 560.306 27.244C560.938 27.244 561.502 27.38 561.998 27.652C562.502 27.924 562.89 28.312 563.162 28.816C563.442 29.312 563.582 29.884 563.582 30.532ZM561.842 30.052C561.834 29.62 561.678 29.276 561.374 29.02C561.07 28.756 560.698 28.624 560.258 28.624C559.842 28.624 559.49 28.752 559.202 29.008C558.922 29.256 558.75 29.604 558.686 30.052H561.842ZM564.376 30.652C564.376 29.98 564.508 29.384 564.772 28.864C565.044 28.344 565.412 27.944 565.876 27.664C566.34 27.384 566.856 27.244 567.424 27.244C567.856 27.244 568.268 27.34 568.66 27.532C569.052 27.716 569.364 27.964 569.596 28.276V25.12H571.3V34H569.596V33.016C569.388 33.344 569.096 33.608 568.72 33.808C568.344 34.008 567.908 34.108 567.412 34.108C566.852 34.108 566.34 33.964 565.876 33.676C565.412 33.388 565.044 32.984 564.772 32.464C564.508 31.936 564.376 31.332 564.376 30.652ZM569.608 30.676C569.608 30.268 569.528 29.92 569.368 29.632C569.208 29.336 568.992 29.112 568.72 28.96C568.448 28.8 568.156 28.72 567.844 28.72C567.532 28.72 567.244 28.796 566.98 28.948C566.716 29.1 566.5 29.324 566.332 29.62C566.172 29.908 566.092 30.252 566.092 30.652C566.092 31.052 566.172 31.404 566.332 31.708C566.5 32.004 566.716 32.232 566.98 32.392C567.252 32.552 567.54 32.632 567.844 32.632C568.156 32.632 568.448 32.556 568.72 32.404C568.992 32.244 569.208 32.02 569.368 31.732C569.528 31.436 569.608 31.084 569.608 30.676Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M484 67H464", stroke: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 484, y: 54, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M521.464 69.404H518.128L517.576 71H515.812L518.824 62.612H520.78L523.792 71H522.016L521.464 69.404ZM521.008 68.06L519.796 64.556L518.584 68.06H521.008ZM527.462 71.108C526.918 71.108 526.43 71.012 525.998 70.82C525.566 70.62 525.222 70.352 524.966 70.016C524.718 69.68 524.582 69.308 524.558 68.9H526.25C526.282 69.156 526.406 69.368 526.622 69.536C526.846 69.704 527.122 69.788 527.45 69.788C527.77 69.788 528.018 69.724 528.194 69.596C528.378 69.468 528.47 69.304 528.47 69.104C528.47 68.888 528.358 68.728 528.134 68.624C527.918 68.512 527.57 68.392 527.09 68.264C526.594 68.144 526.186 68.02 525.866 67.892C525.554 67.764 525.282 67.568 525.05 67.304C524.826 67.04 524.714 66.684 524.714 66.236C524.714 65.868 524.818 65.532 525.026 65.228C525.242 64.924 525.546 64.684 525.938 64.508C526.338 64.332 526.806 64.244 527.342 64.244C528.134 64.244 528.766 64.444 529.238 64.844C529.71 65.236 529.97 65.768 530.018 66.44H528.41C528.386 66.176 528.274 65.968 528.074 65.816C527.882 65.656 527.622 65.576 527.294 65.576C526.99 65.576 526.754 65.632 526.586 65.744C526.426 65.856 526.346 66.012 526.346 66.212C526.346 66.436 526.458 66.608 526.682 66.728C526.906 66.84 527.254 66.956 527.726 67.076C528.206 67.196 528.602 67.32 528.914 67.448C529.226 67.576 529.494 67.776 529.718 68.048C529.95 68.312 530.07 68.664 530.078 69.104C530.078 69.488 529.97 69.832 529.754 70.136C529.546 70.44 529.242 70.68 528.842 70.856C528.45 71.024 527.99 71.108 527.462 71.108ZM534.001 71.108C533.457 71.108 532.969 71.012 532.537 70.82C532.105 70.62 531.761 70.352 531.505 70.016C531.257 69.68 531.121 69.308 531.097 68.9H532.789C532.821 69.156 532.945 69.368 533.161 69.536C533.385 69.704 533.661 69.788 533.989 69.788C534.309 69.788 534.557 69.724 534.733 69.596C534.917 69.468 535.009 69.304 535.009 69.104C535.009 68.888 534.897 68.728 534.673 68.624C534.457 68.512 534.109 68.392 533.629 68.264C533.133 68.144 532.725 68.02 532.405 67.892C532.093 67.764 531.821 67.568 531.589 67.304C531.365 67.04 531.253 66.684 531.253 66.236C531.253 65.868 531.357 65.532 531.565 65.228C531.781 64.924 532.085 64.684 532.477 64.508C532.877 64.332 533.345 64.244 533.881 64.244C534.673 64.244 535.305 64.444 535.777 64.844C536.249 65.236 536.509 65.768 536.557 66.44H534.949C534.925 66.176 534.813 65.968 534.613 65.816C534.421 65.656 534.161 65.576 533.833 65.576C533.529 65.576 533.293 65.632 533.125 65.744C532.965 65.856 532.885 66.012 532.885 66.212C532.885 66.436 532.997 66.608 533.221 66.728C533.445 66.84 533.793 66.956 534.265 67.076C534.745 67.196 535.141 67.32 535.453 67.448C535.765 67.576 536.033 67.776 536.257 68.048C536.489 68.312 536.609 68.664 536.617 69.104C536.617 69.488 536.509 69.832 536.293 70.136C536.085 70.44 535.781 70.68 535.381 70.856C534.989 71.024 534.529 71.108 534.001 71.108ZM538.848 63.56C538.552 63.56 538.304 63.468 538.104 63.284C537.912 63.092 537.816 62.856 537.816 62.576C537.816 62.296 537.912 62.064 538.104 61.88C538.304 61.688 538.552 61.592 538.848 61.592C539.144 61.592 539.388 61.688 539.58 61.88C539.78 62.064 539.88 62.296 539.88 62.576C539.88 62.856 539.78 63.092 539.58 63.284C539.388 63.468 539.144 63.56 538.848 63.56ZM539.676 64.352V71H537.996V64.352H539.676ZM543.94 64.244C544.436 64.244 544.872 64.344 545.248 64.544C545.624 64.736 545.92 64.988 546.136 65.3V64.352H547.828V71.048C547.828 71.664 547.704 72.212 547.456 72.692C547.208 73.18 546.836 73.564 546.34 73.844C545.844 74.132 545.244 74.276 544.54 74.276C543.596 74.276 542.82 74.056 542.212 73.616C541.612 73.176 541.272 72.576 541.192 71.816H542.86C542.948 72.12 543.136 72.36 543.424 72.536C543.72 72.72 544.076 72.812 544.492 72.812C544.98 72.812 545.376 72.664 545.68 72.368C545.984 72.08 546.136 71.64 546.136 71.048V70.016C545.92 70.328 545.62 70.588 545.236 70.796C544.86 71.004 544.428 71.108 543.94 71.108C543.38 71.108 542.868 70.964 542.404 70.676C541.94 70.388 541.572 69.984 541.3 69.464C541.036 68.936 540.904 68.332 540.904 67.652C540.904 66.98 541.036 66.384 541.3 65.864C541.572 65.344 541.936 64.944 542.392 64.664C542.856 64.384 543.372 64.244 543.94 64.244ZM546.136 67.676C546.136 67.268 546.056 66.92 545.896 66.632C545.736 66.336 545.52 66.112 545.248 65.96C544.976 65.8 544.684 65.72 544.372 65.72C544.06 65.72 543.772 65.796 543.508 65.948C543.244 66.1 543.028 66.324 542.86 66.62C542.7 66.908 542.62 67.252 542.62 67.652C542.62 68.052 542.7 68.404 542.86 68.708C543.028 69.004 543.244 69.232 543.508 69.392C543.78 69.552 544.068 69.632 544.372 69.632C544.684 69.632 544.976 69.556 545.248 69.404C545.52 69.244 545.736 69.02 545.896 68.732C546.056 68.436 546.136 68.084 546.136 67.676ZM553.153 64.256C553.945 64.256 554.585 64.508 555.073 65.012C555.561 65.508 555.805 66.204 555.805 67.1V71H554.125V67.328C554.125 66.8 553.993 66.396 553.729 66.116C553.465 65.828 553.105 65.684 552.649 65.684C552.185 65.684 551.817 65.828 551.545 66.116C551.281 66.396 551.149 66.8 551.149 67.328V71H549.469V64.352H551.149V65.18C551.373 64.892 551.657 64.668 552.001 64.508C552.353 64.34 552.737 64.256 553.153 64.256ZM563.582 67.532C563.582 67.772 563.566 67.988 563.534 68.18H558.674C558.714 68.66 558.882 69.036 559.178 69.308C559.474 69.58 559.838 69.716 560.27 69.716C560.894 69.716 561.338 69.448 561.602 68.912H563.414C563.222 69.552 562.854 70.08 562.31 70.496C561.766 70.904 561.098 71.108 560.306 71.108C559.666 71.108 559.09 70.968 558.578 70.688C558.074 70.4 557.678 69.996 557.39 69.476C557.11 68.956 556.97 68.356 556.97 67.676C556.97 66.988 557.11 66.384 557.39 65.864C557.67 65.344 558.062 64.944 558.566 64.664C559.07 64.384 559.65 64.244 560.306 64.244C560.938 64.244 561.502 64.38 561.998 64.652C562.502 64.924 562.89 65.312 563.162 65.816C563.442 66.312 563.582 66.884 563.582 67.532ZM561.842 67.052C561.834 66.62 561.678 66.276 561.374 66.02C561.07 65.756 560.698 65.624 560.258 65.624C559.842 65.624 559.49 65.752 559.202 66.008C558.922 66.256 558.75 66.604 558.686 67.052H561.842ZM564.376 67.652C564.376 66.98 564.508 66.384 564.772 65.864C565.044 65.344 565.412 64.944 565.876 64.664C566.34 64.384 566.856 64.244 567.424 64.244C567.856 64.244 568.268 64.34 568.66 64.532C569.052 64.716 569.364 64.964 569.596 65.276V62.12H571.3V71H569.596V70.016C569.388 70.344 569.096 70.608 568.72 70.808C568.344 71.008 567.908 71.108 567.412 71.108C566.852 71.108 566.34 70.964 565.876 70.676C565.412 70.388 565.044 69.984 564.772 69.464C564.508 68.936 564.376 68.332 564.376 67.652ZM569.608 67.676C569.608 67.268 569.528 66.92 569.368 66.632C569.208 66.336 568.992 66.112 568.72 65.96C568.448 65.8 568.156 65.72 567.844 65.72C567.532 65.72 567.244 65.796 566.98 65.948C566.716 66.1 566.5 66.324 566.332 66.62C566.172 66.908 566.092 67.252 566.092 67.652C566.092 68.052 566.172 68.404 566.332 68.708C566.5 69.004 566.716 69.232 566.98 69.392C567.252 69.552 567.54 69.632 567.844 69.632C568.156 69.632 568.448 69.556 568.72 69.404C568.992 69.244 569.208 69.02 569.368 68.732C569.528 68.436 569.608 68.084 569.608 67.676Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M484 110H464", stroke: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 484, y: 97, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M521.464 112.404H518.128L517.576 114H515.812L518.824 105.612H520.78L523.792 114H522.016L521.464 112.404ZM521.008 111.06L519.796 107.556L518.584 111.06H521.008ZM527.462 114.108C526.918 114.108 526.43 114.012 525.998 113.82C525.566 113.62 525.222 113.352 524.966 113.016C524.718 112.68 524.582 112.308 524.558 111.9H526.25C526.282 112.156 526.406 112.368 526.622 112.536C526.846 112.704 527.122 112.788 527.45 112.788C527.77 112.788 528.018 112.724 528.194 112.596C528.378 112.468 528.47 112.304 528.47 112.104C528.47 111.888 528.358 111.728 528.134 111.624C527.918 111.512 527.57 111.392 527.09 111.264C526.594 111.144 526.186 111.02 525.866 110.892C525.554 110.764 525.282 110.568 525.05 110.304C524.826 110.04 524.714 109.684 524.714 109.236C524.714 108.868 524.818 108.532 525.026 108.228C525.242 107.924 525.546 107.684 525.938 107.508C526.338 107.332 526.806 107.244 527.342 107.244C528.134 107.244 528.766 107.444 529.238 107.844C529.71 108.236 529.97 108.768 530.018 109.44H528.41C528.386 109.176 528.274 108.968 528.074 108.816C527.882 108.656 527.622 108.576 527.294 108.576C526.99 108.576 526.754 108.632 526.586 108.744C526.426 108.856 526.346 109.012 526.346 109.212C526.346 109.436 526.458 109.608 526.682 109.728C526.906 109.84 527.254 109.956 527.726 110.076C528.206 110.196 528.602 110.32 528.914 110.448C529.226 110.576 529.494 110.776 529.718 111.048C529.95 111.312 530.07 111.664 530.078 112.104C530.078 112.488 529.97 112.832 529.754 113.136C529.546 113.44 529.242 113.68 528.842 113.856C528.45 114.024 527.99 114.108 527.462 114.108ZM534.001 114.108C533.457 114.108 532.969 114.012 532.537 113.82C532.105 113.62 531.761 113.352 531.505 113.016C531.257 112.68 531.121 112.308 531.097 111.9H532.789C532.821 112.156 532.945 112.368 533.161 112.536C533.385 112.704 533.661 112.788 533.989 112.788C534.309 112.788 534.557 112.724 534.733 112.596C534.917 112.468 535.009 112.304 535.009 112.104C535.009 111.888 534.897 111.728 534.673 111.624C534.457 111.512 534.109 111.392 533.629 111.264C533.133 111.144 532.725 111.02 532.405 110.892C532.093 110.764 531.821 110.568 531.589 110.304C531.365 110.04 531.253 109.684 531.253 109.236C531.253 108.868 531.357 108.532 531.565 108.228C531.781 107.924 532.085 107.684 532.477 107.508C532.877 107.332 533.345 107.244 533.881 107.244C534.673 107.244 535.305 107.444 535.777 107.844C536.249 108.236 536.509 108.768 536.557 109.44H534.949C534.925 109.176 534.813 108.968 534.613 108.816C534.421 108.656 534.161 108.576 533.833 108.576C533.529 108.576 533.293 108.632 533.125 108.744C532.965 108.856 532.885 109.012 532.885 109.212C532.885 109.436 532.997 109.608 533.221 109.728C533.445 109.84 533.793 109.956 534.265 110.076C534.745 110.196 535.141 110.32 535.453 110.448C535.765 110.576 536.033 110.776 536.257 111.048C536.489 111.312 536.609 111.664 536.617 112.104C536.617 112.488 536.509 112.832 536.293 113.136C536.085 113.44 535.781 113.68 535.381 113.856C534.989 114.024 534.529 114.108 534.001 114.108ZM538.848 106.56C538.552 106.56 538.304 106.468 538.104 106.284C537.912 106.092 537.816 105.856 537.816 105.576C537.816 105.296 537.912 105.064 538.104 104.88C538.304 104.688 538.552 104.592 538.848 104.592C539.144 104.592 539.388 104.688 539.58 104.88C539.78 105.064 539.88 105.296 539.88 105.576C539.88 105.856 539.78 106.092 539.58 106.284C539.388 106.468 539.144 106.56 538.848 106.56ZM539.676 107.352V114H537.996V107.352H539.676ZM543.94 107.244C544.436 107.244 544.872 107.344 545.248 107.544C545.624 107.736 545.92 107.988 546.136 108.3V107.352H547.828V114.048C547.828 114.664 547.704 115.212 547.456 115.692C547.208 116.18 546.836 116.564 546.34 116.844C545.844 117.132 545.244 117.276 544.54 117.276C543.596 117.276 542.82 117.056 542.212 116.616C541.612 116.176 541.272 115.576 541.192 114.816H542.86C542.948 115.12 543.136 115.36 543.424 115.536C543.72 115.72 544.076 115.812 544.492 115.812C544.98 115.812 545.376 115.664 545.68 115.368C545.984 115.08 546.136 114.64 546.136 114.048V113.016C545.92 113.328 545.62 113.588 545.236 113.796C544.86 114.004 544.428 114.108 543.94 114.108C543.38 114.108 542.868 113.964 542.404 113.676C541.94 113.388 541.572 112.984 541.3 112.464C541.036 111.936 540.904 111.332 540.904 110.652C540.904 109.98 541.036 109.384 541.3 108.864C541.572 108.344 541.936 107.944 542.392 107.664C542.856 107.384 543.372 107.244 543.94 107.244ZM546.136 110.676C546.136 110.268 546.056 109.92 545.896 109.632C545.736 109.336 545.52 109.112 545.248 108.96C544.976 108.8 544.684 108.72 544.372 108.72C544.06 108.72 543.772 108.796 543.508 108.948C543.244 109.1 543.028 109.324 542.86 109.62C542.7 109.908 542.62 110.252 542.62 110.652C542.62 111.052 542.7 111.404 542.86 111.708C543.028 112.004 543.244 112.232 543.508 112.392C543.78 112.552 544.068 112.632 544.372 112.632C544.684 112.632 544.976 112.556 545.248 112.404C545.52 112.244 545.736 112.02 545.896 111.732C546.056 111.436 546.136 111.084 546.136 110.676ZM553.153 107.256C553.945 107.256 554.585 107.508 555.073 108.012C555.561 108.508 555.805 109.204 555.805 110.1V114H554.125V110.328C554.125 109.8 553.993 109.396 553.729 109.116C553.465 108.828 553.105 108.684 552.649 108.684C552.185 108.684 551.817 108.828 551.545 109.116C551.281 109.396 551.149 109.8 551.149 110.328V114H549.469V107.352H551.149V108.18C551.373 107.892 551.657 107.668 552.001 107.508C552.353 107.34 552.737 107.256 553.153 107.256ZM563.582 110.532C563.582 110.772 563.566 110.988 563.534 111.18H558.674C558.714 111.66 558.882 112.036 559.178 112.308C559.474 112.58 559.838 112.716 560.27 112.716C560.894 112.716 561.338 112.448 561.602 111.912H563.414C563.222 112.552 562.854 113.08 562.31 113.496C561.766 113.904 561.098 114.108 560.306 114.108C559.666 114.108 559.09 113.968 558.578 113.688C558.074 113.4 557.678 112.996 557.39 112.476C557.11 111.956 556.97 111.356 556.97 110.676C556.97 109.988 557.11 109.384 557.39 108.864C557.67 108.344 558.062 107.944 558.566 107.664C559.07 107.384 559.65 107.244 560.306 107.244C560.938 107.244 561.502 107.38 561.998 107.652C562.502 107.924 562.89 108.312 563.162 108.816C563.442 109.312 563.582 109.884 563.582 110.532ZM561.842 110.052C561.834 109.62 561.678 109.276 561.374 109.02C561.07 108.756 560.698 108.624 560.258 108.624C559.842 108.624 559.49 108.752 559.202 109.008C558.922 109.256 558.75 109.604 558.686 110.052H561.842ZM564.376 110.652C564.376 109.98 564.508 109.384 564.772 108.864C565.044 108.344 565.412 107.944 565.876 107.664C566.34 107.384 566.856 107.244 567.424 107.244C567.856 107.244 568.268 107.34 568.66 107.532C569.052 107.716 569.364 107.964 569.596 108.276V105.12H571.3V114H569.596V113.016C569.388 113.344 569.096 113.608 568.72 113.808C568.344 114.008 567.908 114.108 567.412 114.108C566.852 114.108 566.34 113.964 565.876 113.676C565.412 113.388 565.044 112.984 564.772 112.464C564.508 111.936 564.376 111.332 564.376 110.652ZM569.608 110.676C569.608 110.268 569.528 109.92 569.368 109.632C569.208 109.336 568.992 109.112 568.72 108.96C568.448 108.8 568.156 108.72 567.844 108.72C567.532 108.72 567.244 108.796 566.98 108.948C566.716 109.1 566.5 109.324 566.332 109.62C566.172 109.908 566.092 110.252 566.092 110.652C566.092 111.052 566.172 111.404 566.332 111.708C566.5 112.004 566.716 112.232 566.98 112.392C567.252 112.552 567.54 112.632 567.844 112.632C568.156 112.632 568.448 112.556 568.72 112.404C568.992 112.244 569.208 112.02 569.368 111.732C569.528 111.436 569.608 111.084 569.608 110.676Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M484 153H464", stroke: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 484, y: 140, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M521.464 155.404H518.128L517.576 157H515.812L518.824 148.612H520.78L523.792 157H522.016L521.464 155.404ZM521.008 154.06L519.796 150.556L518.584 154.06H521.008ZM527.462 157.108C526.918 157.108 526.43 157.012 525.998 156.82C525.566 156.62 525.222 156.352 524.966 156.016C524.718 155.68 524.582 155.308 524.558 154.9H526.25C526.282 155.156 526.406 155.368 526.622 155.536C526.846 155.704 527.122 155.788 527.45 155.788C527.77 155.788 528.018 155.724 528.194 155.596C528.378 155.468 528.47 155.304 528.47 155.104C528.47 154.888 528.358 154.728 528.134 154.624C527.918 154.512 527.57 154.392 527.09 154.264C526.594 154.144 526.186 154.02 525.866 153.892C525.554 153.764 525.282 153.568 525.05 153.304C524.826 153.04 524.714 152.684 524.714 152.236C524.714 151.868 524.818 151.532 525.026 151.228C525.242 150.924 525.546 150.684 525.938 150.508C526.338 150.332 526.806 150.244 527.342 150.244C528.134 150.244 528.766 150.444 529.238 150.844C529.71 151.236 529.97 151.768 530.018 152.44H528.41C528.386 152.176 528.274 151.968 528.074 151.816C527.882 151.656 527.622 151.576 527.294 151.576C526.99 151.576 526.754 151.632 526.586 151.744C526.426 151.856 526.346 152.012 526.346 152.212C526.346 152.436 526.458 152.608 526.682 152.728C526.906 152.84 527.254 152.956 527.726 153.076C528.206 153.196 528.602 153.32 528.914 153.448C529.226 153.576 529.494 153.776 529.718 154.048C529.95 154.312 530.07 154.664 530.078 155.104C530.078 155.488 529.97 155.832 529.754 156.136C529.546 156.44 529.242 156.68 528.842 156.856C528.45 157.024 527.99 157.108 527.462 157.108ZM534.001 157.108C533.457 157.108 532.969 157.012 532.537 156.82C532.105 156.62 531.761 156.352 531.505 156.016C531.257 155.68 531.121 155.308 531.097 154.9H532.789C532.821 155.156 532.945 155.368 533.161 155.536C533.385 155.704 533.661 155.788 533.989 155.788C534.309 155.788 534.557 155.724 534.733 155.596C534.917 155.468 535.009 155.304 535.009 155.104C535.009 154.888 534.897 154.728 534.673 154.624C534.457 154.512 534.109 154.392 533.629 154.264C533.133 154.144 532.725 154.02 532.405 153.892C532.093 153.764 531.821 153.568 531.589 153.304C531.365 153.04 531.253 152.684 531.253 152.236C531.253 151.868 531.357 151.532 531.565 151.228C531.781 150.924 532.085 150.684 532.477 150.508C532.877 150.332 533.345 150.244 533.881 150.244C534.673 150.244 535.305 150.444 535.777 150.844C536.249 151.236 536.509 151.768 536.557 152.44H534.949C534.925 152.176 534.813 151.968 534.613 151.816C534.421 151.656 534.161 151.576 533.833 151.576C533.529 151.576 533.293 151.632 533.125 151.744C532.965 151.856 532.885 152.012 532.885 152.212C532.885 152.436 532.997 152.608 533.221 152.728C533.445 152.84 533.793 152.956 534.265 153.076C534.745 153.196 535.141 153.32 535.453 153.448C535.765 153.576 536.033 153.776 536.257 154.048C536.489 154.312 536.609 154.664 536.617 155.104C536.617 155.488 536.509 155.832 536.293 156.136C536.085 156.44 535.781 156.68 535.381 156.856C534.989 157.024 534.529 157.108 534.001 157.108ZM538.848 149.56C538.552 149.56 538.304 149.468 538.104 149.284C537.912 149.092 537.816 148.856 537.816 148.576C537.816 148.296 537.912 148.064 538.104 147.88C538.304 147.688 538.552 147.592 538.848 147.592C539.144 147.592 539.388 147.688 539.58 147.88C539.78 148.064 539.88 148.296 539.88 148.576C539.88 148.856 539.78 149.092 539.58 149.284C539.388 149.468 539.144 149.56 538.848 149.56ZM539.676 150.352V157H537.996V150.352H539.676ZM543.94 150.244C544.436 150.244 544.872 150.344 545.248 150.544C545.624 150.736 545.92 150.988 546.136 151.3V150.352H547.828V157.048C547.828 157.664 547.704 158.212 547.456 158.692C547.208 159.18 546.836 159.564 546.34 159.844C545.844 160.132 545.244 160.276 544.54 160.276C543.596 160.276 542.82 160.056 542.212 159.616C541.612 159.176 541.272 158.576 541.192 157.816H542.86C542.948 158.12 543.136 158.36 543.424 158.536C543.72 158.72 544.076 158.812 544.492 158.812C544.98 158.812 545.376 158.664 545.68 158.368C545.984 158.08 546.136 157.64 546.136 157.048V156.016C545.92 156.328 545.62 156.588 545.236 156.796C544.86 157.004 544.428 157.108 543.94 157.108C543.38 157.108 542.868 156.964 542.404 156.676C541.94 156.388 541.572 155.984 541.3 155.464C541.036 154.936 540.904 154.332 540.904 153.652C540.904 152.98 541.036 152.384 541.3 151.864C541.572 151.344 541.936 150.944 542.392 150.664C542.856 150.384 543.372 150.244 543.94 150.244ZM546.136 153.676C546.136 153.268 546.056 152.92 545.896 152.632C545.736 152.336 545.52 152.112 545.248 151.96C544.976 151.8 544.684 151.72 544.372 151.72C544.06 151.72 543.772 151.796 543.508 151.948C543.244 152.1 543.028 152.324 542.86 152.62C542.7 152.908 542.62 153.252 542.62 153.652C542.62 154.052 542.7 154.404 542.86 154.708C543.028 155.004 543.244 155.232 543.508 155.392C543.78 155.552 544.068 155.632 544.372 155.632C544.684 155.632 544.976 155.556 545.248 155.404C545.52 155.244 545.736 155.02 545.896 154.732C546.056 154.436 546.136 154.084 546.136 153.676ZM553.153 150.256C553.945 150.256 554.585 150.508 555.073 151.012C555.561 151.508 555.805 152.204 555.805 153.1V157H554.125V153.328C554.125 152.8 553.993 152.396 553.729 152.116C553.465 151.828 553.105 151.684 552.649 151.684C552.185 151.684 551.817 151.828 551.545 152.116C551.281 152.396 551.149 152.8 551.149 153.328V157H549.469V150.352H551.149V151.18C551.373 150.892 551.657 150.668 552.001 150.508C552.353 150.34 552.737 150.256 553.153 150.256ZM563.582 153.532C563.582 153.772 563.566 153.988 563.534 154.18H558.674C558.714 154.66 558.882 155.036 559.178 155.308C559.474 155.58 559.838 155.716 560.27 155.716C560.894 155.716 561.338 155.448 561.602 154.912H563.414C563.222 155.552 562.854 156.08 562.31 156.496C561.766 156.904 561.098 157.108 560.306 157.108C559.666 157.108 559.09 156.968 558.578 156.688C558.074 156.4 557.678 155.996 557.39 155.476C557.11 154.956 556.97 154.356 556.97 153.676C556.97 152.988 557.11 152.384 557.39 151.864C557.67 151.344 558.062 150.944 558.566 150.664C559.07 150.384 559.65 150.244 560.306 150.244C560.938 150.244 561.502 150.38 561.998 150.652C562.502 150.924 562.89 151.312 563.162 151.816C563.442 152.312 563.582 152.884 563.582 153.532ZM561.842 153.052C561.834 152.62 561.678 152.276 561.374 152.02C561.07 151.756 560.698 151.624 560.258 151.624C559.842 151.624 559.49 151.752 559.202 152.008C558.922 152.256 558.75 152.604 558.686 153.052H561.842ZM564.376 153.652C564.376 152.98 564.508 152.384 564.772 151.864C565.044 151.344 565.412 150.944 565.876 150.664C566.34 150.384 566.856 150.244 567.424 150.244C567.856 150.244 568.268 150.34 568.66 150.532C569.052 150.716 569.364 150.964 569.596 151.276V148.12H571.3V157H569.596V156.016C569.388 156.344 569.096 156.608 568.72 156.808C568.344 157.008 567.908 157.108 567.412 157.108C566.852 157.108 566.34 156.964 565.876 156.676C565.412 156.388 565.044 155.984 564.772 155.464C564.508 154.936 564.376 154.332 564.376 153.652ZM569.608 153.676C569.608 153.268 569.528 152.92 569.368 152.632C569.208 152.336 568.992 152.112 568.72 151.96C568.448 151.8 568.156 151.72 567.844 151.72C567.532 151.72 567.244 151.796 566.98 151.948C566.716 152.1 566.5 152.324 566.332 152.62C566.172 152.908 566.092 153.252 566.092 153.652C566.092 154.052 566.172 154.404 566.332 154.708C566.5 155.004 566.716 155.232 566.98 155.392C567.252 155.552 567.54 155.632 567.844 155.632C568.156 155.632 568.448 155.556 568.72 155.404C568.992 155.244 569.208 155.02 569.368 154.732C569.528 154.436 569.608 154.084 569.608 153.676Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M484 196H464", stroke: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 484, y: 183, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M521.464 198.404H518.128L517.576 200H515.812L518.824 191.612H520.78L523.792 200H522.016L521.464 198.404ZM521.008 197.06L519.796 193.556L518.584 197.06H521.008ZM527.462 200.108C526.918 200.108 526.43 200.012 525.998 199.82C525.566 199.62 525.222 199.352 524.966 199.016C524.718 198.68 524.582 198.308 524.558 197.9H526.25C526.282 198.156 526.406 198.368 526.622 198.536C526.846 198.704 527.122 198.788 527.45 198.788C527.77 198.788 528.018 198.724 528.194 198.596C528.378 198.468 528.47 198.304 528.47 198.104C528.47 197.888 528.358 197.728 528.134 197.624C527.918 197.512 527.57 197.392 527.09 197.264C526.594 197.144 526.186 197.02 525.866 196.892C525.554 196.764 525.282 196.568 525.05 196.304C524.826 196.04 524.714 195.684 524.714 195.236C524.714 194.868 524.818 194.532 525.026 194.228C525.242 193.924 525.546 193.684 525.938 193.508C526.338 193.332 526.806 193.244 527.342 193.244C528.134 193.244 528.766 193.444 529.238 193.844C529.71 194.236 529.97 194.768 530.018 195.44H528.41C528.386 195.176 528.274 194.968 528.074 194.816C527.882 194.656 527.622 194.576 527.294 194.576C526.99 194.576 526.754 194.632 526.586 194.744C526.426 194.856 526.346 195.012 526.346 195.212C526.346 195.436 526.458 195.608 526.682 195.728C526.906 195.84 527.254 195.956 527.726 196.076C528.206 196.196 528.602 196.32 528.914 196.448C529.226 196.576 529.494 196.776 529.718 197.048C529.95 197.312 530.07 197.664 530.078 198.104C530.078 198.488 529.97 198.832 529.754 199.136C529.546 199.44 529.242 199.68 528.842 199.856C528.45 200.024 527.99 200.108 527.462 200.108ZM534.001 200.108C533.457 200.108 532.969 200.012 532.537 199.82C532.105 199.62 531.761 199.352 531.505 199.016C531.257 198.68 531.121 198.308 531.097 197.9H532.789C532.821 198.156 532.945 198.368 533.161 198.536C533.385 198.704 533.661 198.788 533.989 198.788C534.309 198.788 534.557 198.724 534.733 198.596C534.917 198.468 535.009 198.304 535.009 198.104C535.009 197.888 534.897 197.728 534.673 197.624C534.457 197.512 534.109 197.392 533.629 197.264C533.133 197.144 532.725 197.02 532.405 196.892C532.093 196.764 531.821 196.568 531.589 196.304C531.365 196.04 531.253 195.684 531.253 195.236C531.253 194.868 531.357 194.532 531.565 194.228C531.781 193.924 532.085 193.684 532.477 193.508C532.877 193.332 533.345 193.244 533.881 193.244C534.673 193.244 535.305 193.444 535.777 193.844C536.249 194.236 536.509 194.768 536.557 195.44H534.949C534.925 195.176 534.813 194.968 534.613 194.816C534.421 194.656 534.161 194.576 533.833 194.576C533.529 194.576 533.293 194.632 533.125 194.744C532.965 194.856 532.885 195.012 532.885 195.212C532.885 195.436 532.997 195.608 533.221 195.728C533.445 195.84 533.793 195.956 534.265 196.076C534.745 196.196 535.141 196.32 535.453 196.448C535.765 196.576 536.033 196.776 536.257 197.048C536.489 197.312 536.609 197.664 536.617 198.104C536.617 198.488 536.509 198.832 536.293 199.136C536.085 199.44 535.781 199.68 535.381 199.856C534.989 200.024 534.529 200.108 534.001 200.108ZM538.848 192.56C538.552 192.56 538.304 192.468 538.104 192.284C537.912 192.092 537.816 191.856 537.816 191.576C537.816 191.296 537.912 191.064 538.104 190.88C538.304 190.688 538.552 190.592 538.848 190.592C539.144 190.592 539.388 190.688 539.58 190.88C539.78 191.064 539.88 191.296 539.88 191.576C539.88 191.856 539.78 192.092 539.58 192.284C539.388 192.468 539.144 192.56 538.848 192.56ZM539.676 193.352V200H537.996V193.352H539.676ZM543.94 193.244C544.436 193.244 544.872 193.344 545.248 193.544C545.624 193.736 545.92 193.988 546.136 194.3V193.352H547.828V200.048C547.828 200.664 547.704 201.212 547.456 201.692C547.208 202.18 546.836 202.564 546.34 202.844C545.844 203.132 545.244 203.276 544.54 203.276C543.596 203.276 542.82 203.056 542.212 202.616C541.612 202.176 541.272 201.576 541.192 200.816H542.86C542.948 201.12 543.136 201.36 543.424 201.536C543.72 201.72 544.076 201.812 544.492 201.812C544.98 201.812 545.376 201.664 545.68 201.368C545.984 201.08 546.136 200.64 546.136 200.048V199.016C545.92 199.328 545.62 199.588 545.236 199.796C544.86 200.004 544.428 200.108 543.94 200.108C543.38 200.108 542.868 199.964 542.404 199.676C541.94 199.388 541.572 198.984 541.3 198.464C541.036 197.936 540.904 197.332 540.904 196.652C540.904 195.98 541.036 195.384 541.3 194.864C541.572 194.344 541.936 193.944 542.392 193.664C542.856 193.384 543.372 193.244 543.94 193.244ZM546.136 196.676C546.136 196.268 546.056 195.92 545.896 195.632C545.736 195.336 545.52 195.112 545.248 194.96C544.976 194.8 544.684 194.72 544.372 194.72C544.06 194.72 543.772 194.796 543.508 194.948C543.244 195.1 543.028 195.324 542.86 195.62C542.7 195.908 542.62 196.252 542.62 196.652C542.62 197.052 542.7 197.404 542.86 197.708C543.028 198.004 543.244 198.232 543.508 198.392C543.78 198.552 544.068 198.632 544.372 198.632C544.684 198.632 544.976 198.556 545.248 198.404C545.52 198.244 545.736 198.02 545.896 197.732C546.056 197.436 546.136 197.084 546.136 196.676ZM553.153 193.256C553.945 193.256 554.585 193.508 555.073 194.012C555.561 194.508 555.805 195.204 555.805 196.1V200H554.125V196.328C554.125 195.8 553.993 195.396 553.729 195.116C553.465 194.828 553.105 194.684 552.649 194.684C552.185 194.684 551.817 194.828 551.545 195.116C551.281 195.396 551.149 195.8 551.149 196.328V200H549.469V193.352H551.149V194.18C551.373 193.892 551.657 193.668 552.001 193.508C552.353 193.34 552.737 193.256 553.153 193.256ZM563.582 196.532C563.582 196.772 563.566 196.988 563.534 197.18H558.674C558.714 197.66 558.882 198.036 559.178 198.308C559.474 198.58 559.838 198.716 560.27 198.716C560.894 198.716 561.338 198.448 561.602 197.912H563.414C563.222 198.552 562.854 199.08 562.31 199.496C561.766 199.904 561.098 200.108 560.306 200.108C559.666 200.108 559.09 199.968 558.578 199.688C558.074 199.4 557.678 198.996 557.39 198.476C557.11 197.956 556.97 197.356 556.97 196.676C556.97 195.988 557.11 195.384 557.39 194.864C557.67 194.344 558.062 193.944 558.566 193.664C559.07 193.384 559.65 193.244 560.306 193.244C560.938 193.244 561.502 193.38 561.998 193.652C562.502 193.924 562.89 194.312 563.162 194.816C563.442 195.312 563.582 195.884 563.582 196.532ZM561.842 196.052C561.834 195.62 561.678 195.276 561.374 195.02C561.07 194.756 560.698 194.624 560.258 194.624C559.842 194.624 559.49 194.752 559.202 195.008C558.922 195.256 558.75 195.604 558.686 196.052H561.842ZM564.376 196.652C564.376 195.98 564.508 195.384 564.772 194.864C565.044 194.344 565.412 193.944 565.876 193.664C566.34 193.384 566.856 193.244 567.424 193.244C567.856 193.244 568.268 193.34 568.66 193.532C569.052 193.716 569.364 193.964 569.596 194.276V191.12H571.3V200H569.596V199.016C569.388 199.344 569.096 199.608 568.72 199.808C568.344 200.008 567.908 200.108 567.412 200.108C566.852 200.108 566.34 199.964 565.876 199.676C565.412 199.388 565.044 198.984 564.772 198.464C564.508 197.936 564.376 197.332 564.376 196.652ZM569.608 196.676C569.608 196.268 569.528 195.92 569.368 195.632C569.208 195.336 568.992 195.112 568.72 194.96C568.448 194.8 568.156 194.72 567.844 194.72C567.532 194.72 567.244 194.796 566.98 194.948C566.716 195.1 566.5 195.324 566.332 195.62C566.172 195.908 566.092 196.252 566.092 196.652C566.092 197.052 566.172 197.404 566.332 197.708C566.5 198.004 566.716 198.232 566.98 198.392C567.252 198.552 567.54 198.632 567.844 198.632C568.156 198.632 568.448 198.556 568.72 198.404C568.992 198.244 569.208 198.02 569.368 197.732C569.528 197.436 569.608 197.084 569.608 196.676Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 154, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M188.992 17H187.312L183.508 11.252V17H181.828V8.612H183.508L187.312 14.372V8.612H188.992V17ZM196.832 13.532C196.832 13.772 196.816 13.988 196.784 14.18H191.924C191.964 14.66 192.132 15.036 192.428 15.308C192.724 15.58 193.088 15.716 193.52 15.716C194.144 15.716 194.588 15.448 194.852 14.912H196.664C196.472 15.552 196.104 16.08 195.56 16.496C195.016 16.904 194.348 17.108 193.556 17.108C192.916 17.108 192.34 16.968 191.828 16.688C191.324 16.4 190.928 15.996 190.64 15.476C190.36 14.956 190.22 14.356 190.22 13.676C190.22 12.988 190.36 12.384 190.64 11.864C190.92 11.344 191.312 10.944 191.816 10.664C192.32 10.384 192.9 10.244 193.556 10.244C194.188 10.244 194.752 10.38 195.248 10.652C195.752 10.924 196.14 11.312 196.412 11.816C196.692 12.312 196.832 12.884 196.832 13.532ZM195.092 13.052C195.084 12.62 194.928 12.276 194.624 12.02C194.32 11.756 193.948 11.624 193.508 11.624C193.092 11.624 192.74 11.752 192.452 12.008C192.172 12.256 192 12.604 191.936 13.052H195.092ZM207.274 10.352L205.33 17H203.518L202.306 12.356L201.094 17H199.27L197.314 10.352H199.018L200.194 15.416L201.466 10.352H203.242L204.49 15.404L205.666 10.352H207.274ZM212.683 5.636L209.443 19.172H207.799L211.039 5.636H212.683ZM217.907 17.084C217.123 17.084 216.403 16.9 215.747 16.532C215.091 16.164 214.571 15.656 214.187 15.008C213.803 14.352 213.611 13.612 213.611 12.788C213.611 11.972 213.803 11.24 214.187 10.592C214.571 9.936 215.091 9.424 215.747 9.056C216.403 8.688 217.123 8.504 217.907 8.504C218.699 8.504 219.419 8.688 220.067 9.056C220.723 9.424 221.239 9.936 221.615 10.592C221.999 11.24 222.191 11.972 222.191 12.788C222.191 13.612 221.999 14.352 221.615 15.008C221.239 15.656 220.723 16.164 220.067 16.532C219.411 16.9 218.691 17.084 217.907 17.084ZM217.907 15.584C218.411 15.584 218.855 15.472 219.239 15.248C219.623 15.016 219.923 14.688 220.139 14.264C220.355 13.84 220.463 13.348 220.463 12.788C220.463 12.228 220.355 11.74 220.139 11.324C219.923 10.9 219.623 10.576 219.239 10.352C218.855 10.128 218.411 10.016 217.907 10.016C217.403 10.016 216.955 10.128 216.563 10.352C216.179 10.576 215.879 10.9 215.663 11.324C215.447 11.74 215.339 12.228 215.339 12.788C215.339 13.348 215.447 13.84 215.663 14.264C215.879 14.688 216.179 15.016 216.563 15.248C216.955 15.472 217.403 15.584 217.907 15.584ZM225.121 11.312C225.337 11.008 225.633 10.756 226.009 10.556C226.393 10.348 226.829 10.244 227.317 10.244C227.885 10.244 228.397 10.384 228.853 10.664C229.317 10.944 229.681 11.344 229.945 11.864C230.217 12.376 230.353 12.972 230.353 13.652C230.353 14.332 230.217 14.936 229.945 15.464C229.681 15.984 229.317 16.388 228.853 16.676C228.397 16.964 227.885 17.108 227.317 17.108C226.829 17.108 226.397 17.008 226.021 16.808C225.653 16.608 225.353 16.356 225.121 16.052V20.168H223.441V10.352H225.121V11.312ZM228.637 13.652C228.637 13.252 228.553 12.908 228.385 12.62C228.225 12.324 228.009 12.1 227.737 11.948C227.473 11.796 227.185 11.72 226.873 11.72C226.569 11.72 226.281 11.8 226.009 11.96C225.745 12.112 225.529 12.336 225.361 12.632C225.201 12.928 225.121 13.276 225.121 13.676C225.121 14.076 225.201 14.424 225.361 14.72C225.529 15.016 225.745 15.244 226.009 15.404C226.281 15.556 226.569 15.632 226.873 15.632C227.185 15.632 227.473 15.552 227.737 15.392C228.009 15.232 228.225 15.004 228.385 14.708C228.553 14.412 228.637 14.06 228.637 13.652ZM237.754 13.532C237.754 13.772 237.738 13.988 237.706 14.18H232.846C232.886 14.66 233.054 15.036 233.35 15.308C233.646 15.58 234.01 15.716 234.442 15.716C235.066 15.716 235.51 15.448 235.774 14.912H237.586C237.394 15.552 237.026 16.08 236.482 16.496C235.938 16.904 235.27 17.108 234.478 17.108C233.838 17.108 233.262 16.968 232.75 16.688C232.246 16.4 231.85 15.996 231.562 15.476C231.282 14.956 231.142 14.356 231.142 13.676C231.142 12.988 231.282 12.384 231.562 11.864C231.842 11.344 232.234 10.944 232.738 10.664C233.242 10.384 233.822 10.244 234.478 10.244C235.11 10.244 235.674 10.38 236.17 10.652C236.674 10.924 237.062 11.312 237.334 11.816C237.614 12.312 237.754 12.884 237.754 13.532ZM236.014 13.052C236.006 12.62 235.85 12.276 235.546 12.02C235.242 11.756 234.87 11.624 234.43 11.624C234.014 11.624 233.662 11.752 233.374 12.008C233.094 12.256 232.922 12.604 232.858 13.052H236.014ZM242.664 10.256C243.456 10.256 244.096 10.508 244.584 11.012C245.072 11.508 245.316 12.204 245.316 13.1V17H243.636V13.328C243.636 12.8 243.504 12.396 243.24 12.116C242.976 11.828 242.616 11.684 242.16 11.684C241.696 11.684 241.328 11.828 241.056 12.116C240.792 12.396 240.66 12.8 240.66 13.328V17H238.98V10.352H240.66V11.18C240.884 10.892 241.168 10.668 241.512 10.508C241.864 10.34 242.248 10.256 242.664 10.256Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M214 46L216.887 41H211.113L214 46ZM213.5 26V41.5H214.5V26H213.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 154, y: 46, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M178.464 61.404H175.128L174.576 63H172.812L175.824 54.612H177.78L180.792 63H179.016L178.464 61.404ZM178.008 60.06L176.796 56.556L175.584 60.06H178.008ZM181.486 59.676C181.486 58.988 181.626 58.388 181.906 57.876C182.186 57.356 182.574 56.956 183.07 56.676C183.566 56.388 184.134 56.244 184.774 56.244C185.598 56.244 186.278 56.452 186.814 56.868C187.358 57.276 187.722 57.852 187.906 58.596H186.094C185.998 58.308 185.834 58.084 185.602 57.924C185.378 57.756 185.098 57.672 184.762 57.672C184.282 57.672 183.902 57.848 183.622 58.2C183.342 58.544 183.202 59.036 183.202 59.676C183.202 60.308 183.342 60.8 183.622 61.152C183.902 61.496 184.282 61.668 184.762 61.668C185.442 61.668 185.886 61.364 186.094 60.756H187.906C187.722 61.476 187.358 62.048 186.814 62.472C186.27 62.896 185.59 63.108 184.774 63.108C184.134 63.108 183.566 62.968 183.07 62.688C182.574 62.4 182.186 62 181.906 61.488C181.626 60.968 181.486 60.364 181.486 59.676ZM193.073 63L190.817 60.168V63H189.137V54.12H190.817V59.172L193.049 56.352H195.233L192.305 59.688L195.257 63H193.073ZM199.828 56.256C200.62 56.256 201.26 56.508 201.748 57.012C202.236 57.508 202.48 58.204 202.48 59.1V63H200.8V59.328C200.8 58.8 200.668 58.396 200.404 58.116C200.14 57.828 199.78 57.684 199.324 57.684C198.86 57.684 198.492 57.828 198.22 58.116C197.956 58.396 197.824 58.8 197.824 59.328V63H196.144V56.352H197.824V57.18C198.048 56.892 198.332 56.668 198.676 56.508C199.028 56.34 199.412 56.256 199.828 56.256ZM207.03 63.108C206.39 63.108 205.814 62.968 205.302 62.688C204.79 62.4 204.386 61.996 204.09 61.476C203.802 60.956 203.658 60.356 203.658 59.676C203.658 58.996 203.806 58.396 204.102 57.876C204.406 57.356 204.818 56.956 205.338 56.676C205.858 56.388 206.438 56.244 207.078 56.244C207.718 56.244 208.298 56.388 208.818 56.676C209.338 56.956 209.746 57.356 210.042 57.876C210.346 58.396 210.498 58.996 210.498 59.676C210.498 60.356 210.342 60.956 210.03 61.476C209.726 61.996 209.31 62.4 208.782 62.688C208.262 62.968 207.678 63.108 207.03 63.108ZM207.03 61.644C207.334 61.644 207.618 61.572 207.882 61.428C208.154 61.276 208.37 61.052 208.53 60.756C208.69 60.46 208.77 60.1 208.77 59.676C208.77 59.044 208.602 58.56 208.266 58.224C207.938 57.88 207.534 57.708 207.054 57.708C206.574 57.708 206.17 57.88 205.842 58.224C205.522 58.56 205.362 59.044 205.362 59.676C205.362 60.308 205.518 60.796 205.83 61.14C206.15 61.476 206.55 61.644 207.03 61.644ZM220.946 56.352L219.002 63H217.19L215.978 58.356L214.766 63H212.942L210.986 56.352H212.69L213.866 61.416L215.138 56.352H216.914L218.162 61.404L219.338 56.352H220.946ZM223.535 54.12V63H221.855V54.12H223.535ZM231.375 59.532C231.375 59.772 231.359 59.988 231.327 60.18H226.467C226.507 60.66 226.675 61.036 226.971 61.308C227.267 61.58 227.631 61.716 228.063 61.716C228.687 61.716 229.131 61.448 229.395 60.912H231.207C231.015 61.552 230.647 62.08 230.103 62.496C229.559 62.904 228.891 63.108 228.099 63.108C227.459 63.108 226.883 62.968 226.371 62.688C225.867 62.4 225.471 61.996 225.183 61.476C224.903 60.956 224.763 60.356 224.763 59.676C224.763 58.988 224.903 58.384 225.183 57.864C225.463 57.344 225.855 56.944 226.359 56.664C226.863 56.384 227.443 56.244 228.099 56.244C228.731 56.244 229.295 56.38 229.791 56.652C230.295 56.924 230.683 57.312 230.955 57.816C231.235 58.312 231.375 58.884 231.375 59.532ZM229.635 59.052C229.627 58.62 229.471 58.276 229.167 58.02C228.863 57.756 228.491 57.624 228.051 57.624C227.635 57.624 227.283 57.752 226.995 58.008C226.715 58.256 226.543 58.604 226.479 59.052H229.635ZM232.169 59.652C232.169 58.98 232.301 58.384 232.565 57.864C232.837 57.344 233.205 56.944 233.669 56.664C234.133 56.384 234.649 56.244 235.217 56.244C235.649 56.244 236.061 56.34 236.453 56.532C236.845 56.716 237.157 56.964 237.389 57.276V54.12H239.093V63H237.389V62.016C237.181 62.344 236.889 62.608 236.513 62.808C236.137 63.008 235.701 63.108 235.205 63.108C234.645 63.108 234.133 62.964 233.669 62.676C233.205 62.388 232.837 61.984 232.565 61.464C232.301 60.936 232.169 60.332 232.169 59.652ZM237.401 59.676C237.401 59.268 237.321 58.92 237.161 58.632C237.001 58.336 236.785 58.112 236.513 57.96C236.241 57.8 235.949 57.72 235.637 57.72C235.325 57.72 235.037 57.796 234.773 57.948C234.509 58.1 234.293 58.324 234.125 58.62C233.965 58.908 233.885 59.252 233.885 59.652C233.885 60.052 233.965 60.404 234.125 60.708C234.293 61.004 234.509 61.232 234.773 61.392C235.045 61.552 235.333 61.632 235.637 61.632C235.949 61.632 236.241 61.556 236.513 61.404C236.785 61.244 237.001 61.02 237.161 60.732C237.321 60.436 237.401 60.084 237.401 59.676ZM243.338 56.244C243.834 56.244 244.27 56.344 244.646 56.544C245.022 56.736 245.318 56.988 245.534 57.3V56.352H247.226V63.048C247.226 63.664 247.102 64.212 246.854 64.692C246.606 65.18 246.234 65.564 245.738 65.844C245.242 66.132 244.642 66.276 243.938 66.276C242.994 66.276 242.218 66.056 241.61 65.616C241.01 65.176 240.67 64.576 240.59 63.816H242.258C242.346 64.12 242.534 64.36 242.822 64.536C243.118 64.72 243.474 64.812 243.89 64.812C244.378 64.812 244.774 64.664 245.078 64.368C245.382 64.08 245.534 63.64 245.534 63.048V62.016C245.318 62.328 245.018 62.588 244.634 62.796C244.258 63.004 243.826 63.108 243.338 63.108C242.778 63.108 242.266 62.964 241.802 62.676C241.338 62.388 240.97 61.984 240.698 61.464C240.434 60.936 240.302 60.332 240.302 59.652C240.302 58.98 240.434 58.384 240.698 57.864C240.97 57.344 241.334 56.944 241.79 56.664C242.254 56.384 242.77 56.244 243.338 56.244ZM245.534 59.676C245.534 59.268 245.454 58.92 245.294 58.632C245.134 58.336 244.918 58.112 244.646 57.96C244.374 57.8 244.082 57.72 243.77 57.72C243.458 57.72 243.17 57.796 242.906 57.948C242.642 58.1 242.426 58.324 242.258 58.62C242.098 58.908 242.018 59.252 242.018 59.652C242.018 60.052 242.098 60.404 242.258 60.708C242.426 61.004 242.642 61.232 242.906 61.392C243.178 61.552 243.466 61.632 243.77 61.632C244.082 61.632 244.374 61.556 244.646 61.404C244.918 61.244 245.134 61.02 245.294 60.732C245.454 60.436 245.534 60.084 245.534 59.676ZM255.047 59.532C255.047 59.772 255.031 59.988 254.999 60.18H250.139C250.179 60.66 250.347 61.036 250.643 61.308C250.939 61.58 251.303 61.716 251.735 61.716C252.359 61.716 252.803 61.448 253.067 60.912H254.879C254.687 61.552 254.319 62.08 253.775 62.496C253.231 62.904 252.563 63.108 251.771 63.108C251.131 63.108 250.555 62.968 250.043 62.688C249.539 62.4 249.143 61.996 248.855 61.476C248.575 60.956 248.435 60.356 248.435 59.676C248.435 58.988 248.575 58.384 248.855 57.864C249.135 57.344 249.527 56.944 250.031 56.664C250.535 56.384 251.115 56.244 251.771 56.244C252.403 56.244 252.967 56.38 253.463 56.652C253.967 56.924 254.355 57.312 254.627 57.816C254.907 58.312 255.047 58.884 255.047 59.532ZM253.307 59.052C253.299 58.62 253.143 58.276 252.839 58.02C252.535 57.756 252.163 57.624 251.723 57.624C251.307 57.624 250.955 57.752 250.667 58.008C250.387 58.256 250.215 58.604 250.151 59.052H253.307Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M214 92L216.887 87H211.113L214 92ZM213.5 72V87.5H214.5V72H213.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 154, y: 92, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M191.464 107.404H188.128L187.576 109H185.812L188.824 100.612H190.78L193.792 109H192.016L191.464 107.404ZM191.008 106.06L189.796 102.556L188.584 106.06H191.008ZM197.462 109.108C196.918 109.108 196.43 109.012 195.998 108.82C195.566 108.62 195.222 108.352 194.966 108.016C194.718 107.68 194.582 107.308 194.558 106.9H196.25C196.282 107.156 196.406 107.368 196.622 107.536C196.846 107.704 197.122 107.788 197.45 107.788C197.77 107.788 198.018 107.724 198.194 107.596C198.378 107.468 198.47 107.304 198.47 107.104C198.47 106.888 198.358 106.728 198.134 106.624C197.918 106.512 197.57 106.392 197.09 106.264C196.594 106.144 196.186 106.02 195.866 105.892C195.554 105.764 195.282 105.568 195.05 105.304C194.826 105.04 194.714 104.684 194.714 104.236C194.714 103.868 194.818 103.532 195.026 103.228C195.242 102.924 195.546 102.684 195.938 102.508C196.338 102.332 196.806 102.244 197.342 102.244C198.134 102.244 198.766 102.444 199.238 102.844C199.71 103.236 199.97 103.768 200.018 104.44H198.41C198.386 104.176 198.274 103.968 198.074 103.816C197.882 103.656 197.622 103.576 197.294 103.576C196.99 103.576 196.754 103.632 196.586 103.744C196.426 103.856 196.346 104.012 196.346 104.212C196.346 104.436 196.458 104.608 196.682 104.728C196.906 104.84 197.254 104.956 197.726 105.076C198.206 105.196 198.602 105.32 198.914 105.448C199.226 105.576 199.494 105.776 199.718 106.048C199.95 106.312 200.07 106.664 200.078 107.104C200.078 107.488 199.97 107.832 199.754 108.136C199.546 108.44 199.242 108.68 198.842 108.856C198.45 109.024 197.99 109.108 197.462 109.108ZM204.001 109.108C203.457 109.108 202.969 109.012 202.537 108.82C202.105 108.62 201.761 108.352 201.505 108.016C201.257 107.68 201.121 107.308 201.097 106.9H202.789C202.821 107.156 202.945 107.368 203.161 107.536C203.385 107.704 203.661 107.788 203.989 107.788C204.309 107.788 204.557 107.724 204.733 107.596C204.917 107.468 205.009 107.304 205.009 107.104C205.009 106.888 204.897 106.728 204.673 106.624C204.457 106.512 204.109 106.392 203.629 106.264C203.133 106.144 202.725 106.02 202.405 105.892C202.093 105.764 201.821 105.568 201.589 105.304C201.365 105.04 201.253 104.684 201.253 104.236C201.253 103.868 201.357 103.532 201.565 103.228C201.781 102.924 202.085 102.684 202.477 102.508C202.877 102.332 203.345 102.244 203.881 102.244C204.673 102.244 205.305 102.444 205.777 102.844C206.249 103.236 206.509 103.768 206.557 104.44H204.949C204.925 104.176 204.813 103.968 204.613 103.816C204.421 103.656 204.161 103.576 203.833 103.576C203.529 103.576 203.293 103.632 203.125 103.744C202.965 103.856 202.885 104.012 202.885 104.212C202.885 104.436 202.997 104.608 203.221 104.728C203.445 104.84 203.793 104.956 204.265 105.076C204.745 105.196 205.141 105.32 205.453 105.448C205.765 105.576 206.033 105.776 206.257 106.048C206.489 106.312 206.609 106.664 206.617 107.104C206.617 107.488 206.509 107.832 206.293 108.136C206.085 108.44 205.781 108.68 205.381 108.856C204.989 109.024 204.529 109.108 204.001 109.108ZM208.848 101.56C208.552 101.56 208.304 101.468 208.104 101.284C207.912 101.092 207.816 100.856 207.816 100.576C207.816 100.296 207.912 100.064 208.104 99.88C208.304 99.688 208.552 99.592 208.848 99.592C209.144 99.592 209.388 99.688 209.58 99.88C209.78 100.064 209.88 100.296 209.88 100.576C209.88 100.856 209.78 101.092 209.58 101.284C209.388 101.468 209.144 101.56 208.848 101.56ZM209.676 102.352V109H207.996V102.352H209.676ZM213.94 102.244C214.436 102.244 214.872 102.344 215.248 102.544C215.624 102.736 215.92 102.988 216.136 103.3V102.352H217.828V109.048C217.828 109.664 217.704 110.212 217.456 110.692C217.208 111.18 216.836 111.564 216.34 111.844C215.844 112.132 215.244 112.276 214.54 112.276C213.596 112.276 212.82 112.056 212.212 111.616C211.612 111.176 211.272 110.576 211.192 109.816H212.86C212.948 110.12 213.136 110.36 213.424 110.536C213.72 110.72 214.076 110.812 214.492 110.812C214.98 110.812 215.376 110.664 215.68 110.368C215.984 110.08 216.136 109.64 216.136 109.048V108.016C215.92 108.328 215.62 108.588 215.236 108.796C214.86 109.004 214.428 109.108 213.94 109.108C213.38 109.108 212.868 108.964 212.404 108.676C211.94 108.388 211.572 107.984 211.3 107.464C211.036 106.936 210.904 106.332 210.904 105.652C210.904 104.98 211.036 104.384 211.3 103.864C211.572 103.344 211.936 102.944 212.392 102.664C212.856 102.384 213.372 102.244 213.94 102.244ZM216.136 105.676C216.136 105.268 216.056 104.92 215.896 104.632C215.736 104.336 215.52 104.112 215.248 103.96C214.976 103.8 214.684 103.72 214.372 103.72C214.06 103.72 213.772 103.796 213.508 103.948C213.244 104.1 213.028 104.324 212.86 104.62C212.7 104.908 212.62 105.252 212.62 105.652C212.62 106.052 212.7 106.404 212.86 106.708C213.028 107.004 213.244 107.232 213.508 107.392C213.78 107.552 214.068 107.632 214.372 107.632C214.684 107.632 214.976 107.556 215.248 107.404C215.52 107.244 215.736 107.02 215.896 106.732C216.056 106.436 216.136 106.084 216.136 105.676ZM223.153 102.256C223.945 102.256 224.585 102.508 225.073 103.012C225.561 103.508 225.805 104.204 225.805 105.1V109H224.125V105.328C224.125 104.8 223.993 104.396 223.729 104.116C223.465 103.828 223.105 103.684 222.649 103.684C222.185 103.684 221.817 103.828 221.545 104.116C221.281 104.396 221.149 104.8 221.149 105.328V109H219.469V102.352H221.149V103.18C221.373 102.892 221.657 102.668 222.001 102.508C222.353 102.34 222.737 102.256 223.153 102.256ZM233.582 105.532C233.582 105.772 233.566 105.988 233.534 106.18H228.674C228.714 106.66 228.882 107.036 229.178 107.308C229.474 107.58 229.838 107.716 230.27 107.716C230.894 107.716 231.338 107.448 231.602 106.912H233.414C233.222 107.552 232.854 108.08 232.31 108.496C231.766 108.904 231.098 109.108 230.306 109.108C229.666 109.108 229.09 108.968 228.578 108.688C228.074 108.4 227.678 107.996 227.39 107.476C227.11 106.956 226.97 106.356 226.97 105.676C226.97 104.988 227.11 104.384 227.39 103.864C227.67 103.344 228.062 102.944 228.566 102.664C229.07 102.384 229.65 102.244 230.306 102.244C230.938 102.244 231.502 102.38 231.998 102.652C232.502 102.924 232.89 103.312 233.162 103.816C233.442 104.312 233.582 104.884 233.582 105.532ZM231.842 105.052C231.834 104.62 231.678 104.276 231.374 104.02C231.07 103.756 230.698 103.624 230.258 103.624C229.842 103.624 229.49 103.752 229.202 104.008C228.922 104.256 228.75 104.604 228.686 105.052H231.842ZM234.376 105.652C234.376 104.98 234.508 104.384 234.772 103.864C235.044 103.344 235.412 102.944 235.876 102.664C236.34 102.384 236.856 102.244 237.424 102.244C237.856 102.244 238.268 102.34 238.66 102.532C239.052 102.716 239.364 102.964 239.596 103.276V100.12H241.3V109H239.596V108.016C239.388 108.344 239.096 108.608 238.72 108.808C238.344 109.008 237.908 109.108 237.412 109.108C236.852 109.108 236.34 108.964 235.876 108.676C235.412 108.388 235.044 107.984 234.772 107.464C234.508 106.936 234.376 106.332 234.376 105.652ZM239.608 105.676C239.608 105.268 239.528 104.92 239.368 104.632C239.208 104.336 238.992 104.112 238.72 103.96C238.448 103.8 238.156 103.72 237.844 103.72C237.532 103.72 237.244 103.796 236.98 103.948C236.716 104.1 236.5 104.324 236.332 104.62C236.172 104.908 236.092 105.252 236.092 105.652C236.092 106.052 236.172 106.404 236.332 106.708C236.5 107.004 236.716 107.232 236.98 107.392C237.252 107.552 237.54 107.632 237.844 107.632C238.156 107.632 238.448 107.556 238.72 107.404C238.992 107.244 239.208 107.02 239.368 106.732C239.528 106.436 239.608 106.084 239.608 105.676Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M214 138L216.887 133H211.113L214 138ZM213.5 118V133.5H214.5V118H213.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 154, y: 138, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M191.148 155L189.3 151.736H188.508V155H186.828V146.624H189.972C190.62 146.624 191.172 146.74 191.628 146.972C192.084 147.196 192.424 147.504 192.648 147.896C192.88 148.28 192.996 148.712 192.996 149.192C192.996 149.744 192.836 150.244 192.516 150.692C192.196 151.132 191.72 151.436 191.088 151.604L193.092 155H191.148ZM188.508 150.476H189.912C190.368 150.476 190.708 150.368 190.932 150.152C191.156 149.928 191.268 149.62 191.268 149.228C191.268 148.844 191.156 148.548 190.932 148.34C190.708 148.124 190.368 148.016 189.912 148.016H188.508V150.476ZM200.696 151.532C200.696 151.772 200.68 151.988 200.648 152.18H195.788C195.828 152.66 195.996 153.036 196.292 153.308C196.588 153.58 196.952 153.716 197.384 153.716C198.008 153.716 198.452 153.448 198.716 152.912H200.528C200.336 153.552 199.968 154.08 199.424 154.496C198.88 154.904 198.212 155.108 197.42 155.108C196.78 155.108 196.204 154.968 195.692 154.688C195.188 154.4 194.792 153.996 194.504 153.476C194.224 152.956 194.083 152.356 194.083 151.676C194.083 150.988 194.224 150.384 194.504 149.864C194.784 149.344 195.176 148.944 195.68 148.664C196.184 148.384 196.764 148.244 197.42 148.244C198.052 148.244 198.616 148.38 199.112 148.652C199.616 148.924 200.004 149.312 200.276 149.816C200.556 150.312 200.696 150.884 200.696 151.532ZM198.956 151.052C198.948 150.62 198.792 150.276 198.488 150.02C198.184 149.756 197.812 149.624 197.372 149.624C196.956 149.624 196.604 149.752 196.316 150.008C196.036 150.256 195.864 150.604 195.8 151.052H198.956ZM204.466 155.108C203.922 155.108 203.434 155.012 203.002 154.82C202.57 154.62 202.226 154.352 201.97 154.016C201.722 153.68 201.586 153.308 201.562 152.9H203.254C203.286 153.156 203.41 153.368 203.626 153.536C203.85 153.704 204.126 153.788 204.454 153.788C204.774 153.788 205.022 153.724 205.198 153.596C205.382 153.468 205.474 153.304 205.474 153.104C205.474 152.888 205.362 152.728 205.138 152.624C204.922 152.512 204.574 152.392 204.094 152.264C203.598 152.144 203.19 152.02 202.87 151.892C202.558 151.764 202.286 151.568 202.054 151.304C201.83 151.04 201.718 150.684 201.718 150.236C201.718 149.868 201.822 149.532 202.03 149.228C202.246 148.924 202.55 148.684 202.942 148.508C203.342 148.332 203.81 148.244 204.346 148.244C205.138 148.244 205.77 148.444 206.242 148.844C206.714 149.236 206.974 149.768 207.022 150.44H205.414C205.39 150.176 205.278 149.968 205.078 149.816C204.886 149.656 204.626 149.576 204.298 149.576C203.994 149.576 203.758 149.632 203.59 149.744C203.43 149.856 203.35 150.012 203.35 150.212C203.35 150.436 203.462 150.608 203.686 150.728C203.91 150.84 204.258 150.956 204.73 151.076C205.21 151.196 205.606 151.32 205.918 151.448C206.23 151.576 206.498 151.776 206.722 152.048C206.954 152.312 207.074 152.664 207.082 153.104C207.082 153.488 206.974 153.832 206.758 154.136C206.55 154.44 206.246 154.68 205.846 154.856C205.454 155.024 204.994 155.108 204.466 155.108ZM211.413 155.108C210.773 155.108 210.197 154.968 209.685 154.688C209.173 154.4 208.769 153.996 208.473 153.476C208.185 152.956 208.041 152.356 208.041 151.676C208.041 150.996 208.189 150.396 208.485 149.876C208.789 149.356 209.201 148.956 209.721 148.676C210.241 148.388 210.821 148.244 211.461 148.244C212.101 148.244 212.681 148.388 213.201 148.676C213.721 148.956 214.129 149.356 214.425 149.876C214.729 150.396 214.881 150.996 214.881 151.676C214.881 152.356 214.725 152.956 214.413 153.476C214.109 153.996 213.693 154.4 213.165 154.688C212.645 154.968 212.061 155.108 211.413 155.108ZM211.413 153.644C211.717 153.644 212.001 153.572 212.265 153.428C212.537 153.276 212.753 153.052 212.913 152.756C213.073 152.46 213.153 152.1 213.153 151.676C213.153 151.044 212.985 150.56 212.649 150.224C212.321 149.88 211.917 149.708 211.437 149.708C210.957 149.708 210.553 149.88 210.225 150.224C209.905 150.56 209.745 151.044 209.745 151.676C209.745 152.308 209.901 152.796 210.213 153.14C210.533 153.476 210.933 153.644 211.413 153.644ZM217.793 146.12V155H216.113V146.12H217.793ZM222.225 153.452L223.905 148.352H225.693L223.233 155H221.193L218.745 148.352H220.545L222.225 153.452ZM232.817 151.532C232.817 151.772 232.801 151.988 232.769 152.18H227.909C227.949 152.66 228.117 153.036 228.413 153.308C228.709 153.58 229.073 153.716 229.505 153.716C230.129 153.716 230.573 153.448 230.837 152.912H232.649C232.457 153.552 232.089 154.08 231.545 154.496C231.001 154.904 230.333 155.108 229.541 155.108C228.901 155.108 228.325 154.968 227.813 154.688C227.309 154.4 226.913 153.996 226.625 153.476C226.345 152.956 226.205 152.356 226.205 151.676C226.205 150.988 226.345 150.384 226.625 149.864C226.905 149.344 227.297 148.944 227.801 148.664C228.305 148.384 228.885 148.244 229.541 148.244C230.173 148.244 230.737 148.38 231.233 148.652C231.737 148.924 232.125 149.312 232.397 149.816C232.677 150.312 232.817 150.884 232.817 151.532ZM231.077 151.052C231.069 150.62 230.913 150.276 230.609 150.02C230.305 149.756 229.933 149.624 229.493 149.624C229.077 149.624 228.725 149.752 228.437 150.008C228.157 150.256 227.985 150.604 227.921 151.052H231.077ZM233.611 151.652C233.611 150.98 233.743 150.384 234.007 149.864C234.279 149.344 234.647 148.944 235.111 148.664C235.575 148.384 236.091 148.244 236.659 148.244C237.091 148.244 237.503 148.34 237.895 148.532C238.287 148.716 238.599 148.964 238.831 149.276V146.12H240.535V155H238.831V154.016C238.623 154.344 238.331 154.608 237.955 154.808C237.579 155.008 237.143 155.108 236.647 155.108C236.087 155.108 235.575 154.964 235.111 154.676C234.647 154.388 234.279 153.984 234.007 153.464C233.743 152.936 233.611 152.332 233.611 151.652ZM238.843 151.676C238.843 151.268 238.763 150.92 238.603 150.632C238.443 150.336 238.227 150.112 237.955 149.96C237.683 149.8 237.391 149.72 237.079 149.72C236.767 149.72 236.479 149.796 236.215 149.948C235.951 150.1 235.735 150.324 235.567 150.62C235.407 150.908 235.327 151.252 235.327 151.652C235.327 152.052 235.407 152.404 235.567 152.708C235.735 153.004 235.951 153.232 236.215 153.392C236.487 153.552 236.775 153.632 237.079 153.632C237.391 153.632 237.683 153.556 237.955 153.404C238.227 153.244 238.443 153.02 238.603 152.732C238.763 152.436 238.843 152.084 238.843 151.676Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M214 184L216.887 179H211.113L214 184ZM213.5 164V179.5H214.5V164H213.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 154, y: 184, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M192.92 196.8C192.92 195.976 193.104 195.24 193.472 194.592C193.848 193.936 194.356 193.428 194.996 193.068C195.644 192.7 196.368 192.516 197.168 192.516C198.104 192.516 198.924 192.756 199.628 193.236C200.332 193.716 200.824 194.38 201.104 195.228H199.172C198.98 194.828 198.708 194.528 198.356 194.328C198.012 194.128 197.612 194.028 197.156 194.028C196.668 194.028 196.232 194.144 195.848 194.376C195.472 194.6 195.176 194.92 194.96 195.336C194.752 195.752 194.648 196.24 194.648 196.8C194.648 197.352 194.752 197.84 194.96 198.264C195.176 198.68 195.472 199.004 195.848 199.236C196.232 199.46 196.668 199.572 197.156 199.572C197.612 199.572 198.012 199.472 198.356 199.272C198.708 199.064 198.98 198.76 199.172 198.36H201.104C200.824 199.216 200.332 199.884 199.628 200.364C198.932 200.836 198.112 201.072 197.168 201.072C196.368 201.072 195.644 200.892 194.996 200.532C194.356 200.164 193.848 199.656 193.472 199.008C193.104 198.36 192.92 197.624 192.92 196.8ZM204.219 192.12V201H202.539V192.12H204.219ZM208.831 201.108C208.191 201.108 207.615 200.968 207.103 200.688C206.591 200.4 206.187 199.996 205.891 199.476C205.603 198.956 205.459 198.356 205.459 197.676C205.459 196.996 205.607 196.396 205.903 195.876C206.207 195.356 206.619 194.956 207.139 194.676C207.659 194.388 208.239 194.244 208.879 194.244C209.519 194.244 210.099 194.388 210.619 194.676C211.139 194.956 211.547 195.356 211.843 195.876C212.147 196.396 212.299 196.996 212.299 197.676C212.299 198.356 212.143 198.956 211.831 199.476C211.527 199.996 211.111 200.4 210.583 200.688C210.063 200.968 209.479 201.108 208.831 201.108ZM208.831 199.644C209.135 199.644 209.419 199.572 209.683 199.428C209.955 199.276 210.171 199.052 210.331 198.756C210.491 198.46 210.571 198.1 210.571 197.676C210.571 197.044 210.403 196.56 210.067 196.224C209.739 195.88 209.335 195.708 208.855 195.708C208.375 195.708 207.971 195.88 207.643 196.224C207.323 196.56 207.163 197.044 207.163 197.676C207.163 198.308 207.319 198.796 207.631 199.14C207.951 199.476 208.351 199.644 208.831 199.644ZM216.075 201.108C215.531 201.108 215.043 201.012 214.611 200.82C214.179 200.62 213.835 200.352 213.579 200.016C213.331 199.68 213.195 199.308 213.171 198.9H214.863C214.895 199.156 215.019 199.368 215.235 199.536C215.459 199.704 215.735 199.788 216.063 199.788C216.383 199.788 216.631 199.724 216.807 199.596C216.991 199.468 217.083 199.304 217.083 199.104C217.083 198.888 216.971 198.728 216.747 198.624C216.531 198.512 216.183 198.392 215.703 198.264C215.207 198.144 214.799 198.02 214.479 197.892C214.167 197.764 213.895 197.568 213.663 197.304C213.439 197.04 213.327 196.684 213.327 196.236C213.327 195.868 213.431 195.532 213.639 195.228C213.855 194.924 214.159 194.684 214.551 194.508C214.951 194.332 215.419 194.244 215.955 194.244C216.747 194.244 217.379 194.444 217.851 194.844C218.323 195.236 218.583 195.768 218.631 196.44H217.023C216.999 196.176 216.887 195.968 216.687 195.816C216.495 195.656 216.235 195.576 215.907 195.576C215.603 195.576 215.367 195.632 215.199 195.744C215.039 195.856 214.959 196.012 214.959 196.212C214.959 196.436 215.071 196.608 215.295 196.728C215.519 196.84 215.867 196.956 216.339 197.076C216.819 197.196 217.215 197.32 217.527 197.448C217.839 197.576 218.107 197.776 218.331 198.048C218.563 198.312 218.683 198.664 218.691 199.104C218.691 199.488 218.583 199.832 218.367 200.136C218.159 200.44 217.855 200.68 217.455 200.856C217.063 201.024 216.603 201.108 216.075 201.108ZM226.25 197.532C226.25 197.772 226.234 197.988 226.202 198.18H221.342C221.382 198.66 221.55 199.036 221.846 199.308C222.142 199.58 222.506 199.716 222.938 199.716C223.562 199.716 224.006 199.448 224.27 198.912H226.082C225.89 199.552 225.522 200.08 224.978 200.496C224.434 200.904 223.766 201.108 222.974 201.108C222.334 201.108 221.758 200.968 221.246 200.688C220.742 200.4 220.346 199.996 220.058 199.476C219.778 198.956 219.638 198.356 219.638 197.676C219.638 196.988 219.778 196.384 220.058 195.864C220.338 195.344 220.73 194.944 221.234 194.664C221.738 194.384 222.318 194.244 222.974 194.244C223.606 194.244 224.17 194.38 224.666 194.652C225.17 194.924 225.558 195.312 225.83 195.816C226.11 196.312 226.25 196.884 226.25 197.532ZM224.51 197.052C224.502 196.62 224.346 196.276 224.042 196.02C223.738 195.756 223.366 195.624 222.926 195.624C222.51 195.624 222.158 195.752 221.87 196.008C221.59 196.256 221.418 196.604 221.354 197.052H224.51ZM227.044 197.652C227.044 196.98 227.176 196.384 227.44 195.864C227.712 195.344 228.08 194.944 228.544 194.664C229.008 194.384 229.524 194.244 230.092 194.244C230.524 194.244 230.936 194.34 231.328 194.532C231.72 194.716 232.032 194.964 232.264 195.276V192.12H233.968V201H232.264V200.016C232.056 200.344 231.764 200.608 231.388 200.808C231.012 201.008 230.576 201.108 230.08 201.108C229.52 201.108 229.008 200.964 228.544 200.676C228.08 200.388 227.712 199.984 227.44 199.464C227.176 198.936 227.044 198.332 227.044 197.652ZM232.276 197.676C232.276 197.268 232.196 196.92 232.036 196.632C231.876 196.336 231.66 196.112 231.388 195.96C231.116 195.8 230.824 195.72 230.512 195.72C230.2 195.72 229.912 195.796 229.648 195.948C229.384 196.1 229.168 196.324 229 196.62C228.84 196.908 228.76 197.252 228.76 197.652C228.76 198.052 228.84 198.404 229 198.708C229.168 199.004 229.384 199.232 229.648 199.392C229.92 199.552 230.208 199.632 230.512 199.632C230.824 199.632 231.116 199.556 231.388 199.404C231.66 199.244 231.876 199.02 232.036 198.732C232.196 198.436 232.276 198.084 232.276 197.676Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("rect", { x: 14, y: 46, width: 120, height: 26, rx: 4, fill: "#71347B" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M41.42 58.8C41.42 57.976 41.604 57.24 41.972 56.592C42.348 55.936 42.856 55.428 43.496 55.068C44.144 54.7 44.868 54.516 45.668 54.516C46.604 54.516 47.424 54.756 48.128 55.236C48.832 55.716 49.324 56.38 49.604 57.228H47.672C47.48 56.828 47.208 56.528 46.856 56.328C46.512 56.128 46.112 56.028 45.656 56.028C45.168 56.028 44.732 56.144 44.348 56.376C43.972 56.6 43.676 56.92 43.46 57.336C43.252 57.752 43.148 58.24 43.148 58.8C43.148 59.352 43.252 59.84 43.46 60.264C43.676 60.68 43.972 61.004 44.348 61.236C44.732 61.46 45.168 61.572 45.656 61.572C46.112 61.572 46.512 61.472 46.856 61.272C47.208 61.064 47.48 60.76 47.672 60.36H49.604C49.324 61.216 48.832 61.884 48.128 62.364C47.432 62.836 46.612 63.072 45.668 63.072C44.868 63.072 44.144 62.892 43.496 62.532C42.856 62.164 42.348 61.656 41.972 61.008C41.604 60.36 41.42 59.624 41.42 58.8ZM53.9909 63.108C53.3509 63.108 52.7749 62.968 52.2629 62.688C51.7509 62.4 51.3469 61.996 51.0509 61.476C50.7629 60.956 50.6189 60.356 50.6189 59.676C50.6189 58.996 50.7669 58.396 51.0629 57.876C51.3669 57.356 51.7789 56.956 52.2989 56.676C52.8189 56.388 53.3989 56.244 54.0389 56.244C54.6789 56.244 55.2589 56.388 55.7789 56.676C56.2989 56.956 56.7069 57.356 57.0029 57.876C57.3069 58.396 57.4589 58.996 57.4589 59.676C57.4589 60.356 57.3029 60.956 56.9909 61.476C56.6869 61.996 56.2709 62.4 55.7429 62.688C55.2229 62.968 54.6389 63.108 53.9909 63.108ZM53.9909 61.644C54.2949 61.644 54.5789 61.572 54.8429 61.428C55.1149 61.276 55.3309 61.052 55.4909 60.756C55.6509 60.46 55.7309 60.1 55.7309 59.676C55.7309 59.044 55.5629 58.56 55.2269 58.224C54.8989 57.88 54.4949 57.708 54.0149 57.708C53.5349 57.708 53.1309 57.88 52.8029 58.224C52.4829 58.56 52.3229 59.044 52.3229 59.676C52.3229 60.308 52.4789 60.796 52.7909 61.14C53.1109 61.476 53.5109 61.644 53.9909 61.644ZM62.3753 56.256C63.1673 56.256 63.8073 56.508 64.2953 57.012C64.7833 57.508 65.0273 58.204 65.0273 59.1V63H63.3473V59.328C63.3473 58.8 63.2153 58.396 62.9513 58.116C62.6873 57.828 62.3273 57.684 61.8713 57.684C61.4073 57.684 61.0393 57.828 60.7673 58.116C60.5033 58.396 60.3713 58.8 60.3713 59.328V63H58.6913V56.352H60.3713V57.18C60.5953 56.892 60.8793 56.668 61.2233 56.508C61.5753 56.34 61.9593 56.256 62.3753 56.256ZM69.6729 57.732H68.5089V63H66.8049V57.732H66.0489V56.352H66.8049V56.016C66.8049 55.2 67.0369 54.6 67.5009 54.216C67.9649 53.832 68.6649 53.652 69.6009 53.676V55.092C69.1929 55.084 68.9089 55.152 68.7489 55.296C68.5889 55.44 68.5089 55.7 68.5089 56.076V56.352H69.6729V57.732ZM71.6136 55.56C71.3176 55.56 71.0696 55.468 70.8696 55.284C70.6776 55.092 70.5816 54.856 70.5816 54.576C70.5816 54.296 70.6776 54.064 70.8696 53.88C71.0696 53.688 71.3176 53.592 71.6136 53.592C71.9096 53.592 72.1536 53.688 72.3456 53.88C72.5456 54.064 72.6456 54.296 72.6456 54.576C72.6456 54.856 72.5456 55.092 72.3456 55.284C72.1536 55.468 71.9096 55.56 71.6136 55.56ZM72.4416 56.352V63H70.7616V56.352H72.4416ZM75.7814 57.384C75.9974 57.032 76.2774 56.756 76.6214 56.556C76.9734 56.356 77.3734 56.256 77.8214 56.256V58.02H77.3774C76.8494 58.02 76.4494 58.144 76.1774 58.392C75.9134 58.64 75.7814 59.072 75.7814 59.688V63H74.1014V56.352H75.7814V57.384ZM87.209 56.256C88.025 56.256 88.681 56.508 89.177 57.012C89.681 57.508 89.933 58.204 89.933 59.1V63H88.253V59.328C88.253 58.808 88.121 58.412 87.857 58.14C87.593 57.86 87.233 57.72 86.777 57.72C86.321 57.72 85.957 57.86 85.685 58.14C85.421 58.412 85.289 58.808 85.289 59.328V63H83.609V59.328C83.609 58.808 83.477 58.412 83.213 58.14C82.949 57.86 82.589 57.72 82.133 57.72C81.669 57.72 81.301 57.86 81.029 58.14C80.765 58.412 80.633 58.808 80.633 59.328V63H78.953V56.352H80.633V57.156C80.849 56.876 81.125 56.656 81.461 56.496C81.805 56.336 82.181 56.256 82.589 56.256C83.109 56.256 83.573 56.368 83.981 56.592C84.389 56.808 84.705 57.12 84.929 57.528C85.145 57.144 85.457 56.836 85.865 56.604C86.281 56.372 86.729 56.256 87.209 56.256ZM97.7072 59.532C97.7072 59.772 97.6912 59.988 97.6592 60.18H92.7992C92.8392 60.66 93.0072 61.036 93.3032 61.308C93.5992 61.58 93.9632 61.716 94.3952 61.716C95.0192 61.716 95.4632 61.448 95.7272 60.912H97.5392C97.3472 61.552 96.9792 62.08 96.4352 62.496C95.8912 62.904 95.2232 63.108 94.4312 63.108C93.7912 63.108 93.2152 62.968 92.7032 62.688C92.1992 62.4 91.8032 61.996 91.5152 61.476C91.2352 60.956 91.0952 60.356 91.0952 59.676C91.0952 58.988 91.2352 58.384 91.5152 57.864C91.7952 57.344 92.1872 56.944 92.6912 56.664C93.1952 56.384 93.7752 56.244 94.4312 56.244C95.0632 56.244 95.6272 56.38 96.1232 56.652C96.6272 56.924 97.0152 57.312 97.2872 57.816C97.5672 58.312 97.7072 58.884 97.7072 59.532ZM95.9672 59.052C95.9592 58.62 95.8032 58.276 95.4992 58.02C95.1952 57.756 94.8232 57.624 94.3832 57.624C93.9672 57.624 93.6152 57.752 93.3272 58.008C93.0472 58.256 92.8752 58.604 92.8112 59.052H95.9672ZM98.5015 59.652C98.5015 58.98 98.6335 58.384 98.8975 57.864C99.1695 57.344 99.5375 56.944 100.001 56.664C100.465 56.384 100.981 56.244 101.549 56.244C101.981 56.244 102.393 56.34 102.785 56.532C103.177 56.716 103.489 56.964 103.721 57.276V54.12H105.425V63H103.721V62.016C103.513 62.344 103.221 62.608 102.845 62.808C102.469 63.008 102.033 63.108 101.537 63.108C100.977 63.108 100.465 62.964 100.001 62.676C99.5375 62.388 99.1695 61.984 98.8975 61.464C98.6335 60.936 98.5015 60.332 98.5015 59.652ZM103.733 59.676C103.733 59.268 103.653 58.92 103.493 58.632C103.333 58.336 103.117 58.112 102.845 57.96C102.573 57.8 102.281 57.72 101.969 57.72C101.657 57.72 101.369 57.796 101.105 57.948C100.841 58.1 100.625 58.324 100.457 58.62C100.297 58.908 100.217 59.252 100.217 59.652C100.217 60.052 100.297 60.404 100.457 60.708C100.625 61.004 100.841 61.232 101.105 61.392C101.377 61.552 101.665 61.632 101.969 61.632C102.281 61.632 102.573 61.556 102.845 61.404C103.117 61.244 103.333 61.02 103.493 60.732C103.653 60.436 103.733 60.084 103.733 59.676Z", fill: "white" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M134 59L139 61.8868V56.1132L134 59ZM138.5 59.5H154V58.5H138.5V59.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M274 105L279 107.887V102.113L274 105ZM278.5 105.5H353V104.5H278.5V105.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M154 106L149 103.113V108.887L154 106ZM74 106H73.5V106.5H74V106ZM73.5 72V106H74.5V72H73.5ZM74 106.5H149.5V105.5H74V106.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M274 20H294V105", stroke: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M274 147L279 149.887V144.113L274 147ZM353 147V147.5H353.5V147H353ZM352.5 26V147H353.5V26L352.5 26ZM353 146.5L278.5 146.5V147.5L353 147.5V146.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M366 26L363.113 31H368.887L366 26ZM366 159V159.5H366.5V159H366ZM365.5 30.5V159H366.5V30.5H365.5ZM366 158.5L274 158.5V159.5L366 159.5V158.5Z", fill: "#A3A3A3" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M463.5 153L355 153L274 153", stroke: "#A3A3A3" }));
439
443
 
440
444
  const SvgDataProvider = (props) => /* @__PURE__ */ React__namespace.createElement("svg", { width: "1em", height: "1em", viewBox: "0 0 18 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props }, /* @__PURE__ */ React__namespace.createElement("mask", { id: "path-1-outside-1_2947_12776", maskUnits: "userSpaceOnUse", x: 0, y: -0.662292, width: 18, height: 17, fill: "black" }, /* @__PURE__ */ React__namespace.createElement("rect", { fill: "white", y: -0.662292, width: 18, height: 17 }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M16.4879 0.337708H7.27574C6.99339 0.337708 6.76368 0.567417 6.76368 0.849772V1.4428H6.17064C5.88832 1.4428 5.65861 1.67251 5.65861 1.95487V2.5479H5.06558C4.78323 2.5479 4.55352 2.77761 4.55352 3.05997V5.73732L4.05406 5.77393C3.61177 5.80635 3.2249 6.07019 2.96471 6.51684L2.61732 7.11313C2.57432 7.187 2.50639 7.22603 2.42087 7.22603H1.25806C1.11555 7.22603 1 7.34158 1 7.48409V11.2388C1 11.3814 1.11555 11.4969 1.25806 11.4969H2.4209C2.46287 11.4969 2.50071 11.5062 2.53342 11.5246C2.79235 11.6702 3.05132 11.738 3.34832 11.738L4.55352 11.7379V15.1502C4.55352 15.4325 4.78323 15.6623 5.06558 15.6623H12.8517C12.9905 15.6623 13.1157 15.6104 13.2138 15.5123L14.1689 14.5572H15.3828C15.6652 14.5572 15.8949 14.3275 15.8949 14.0451V13.4521H16.4879C16.7703 13.4521 17 13.2224 17 12.94V0.849772C17 0.567417 16.7703 0.337708 16.4879 0.337708ZM1.51613 7.74209H2.16284V10.9807H1.51613V7.74209ZM3.34832 11.2218C3.14068 11.2218 2.96735 11.1764 2.78635 11.0746C2.75213 11.0554 2.7161 11.0394 2.67897 11.0259V7.69645C2.83826 7.63816 2.97406 7.52613 3.06335 7.37287L3.41071 6.77661C3.53229 6.56787 3.74916 6.31377 4.09181 6.28867L4.55352 6.2548V7.1349C4.55352 7.27742 4.66906 7.39297 4.81158 7.39297H7.96626C8.1479 7.39297 8.29568 7.54077 8.29568 7.72245C8.29568 7.90409 8.1479 8.05187 7.96626 8.05187H5.58352C5.441 8.05187 5.32545 8.16742 5.32545 8.30993C5.32545 8.45245 5.441 8.568 5.58352 8.568H8.47755C8.65923 8.568 8.807 8.71577 8.807 8.89745C8.807 9.07913 8.65923 9.2269 8.47755 9.2269H5.30471C5.16219 9.2269 5.04665 9.34245 5.04665 9.48497C5.04665 9.62748 5.16219 9.74303 5.30471 9.74303H8.09703C8.24129 9.74303 8.35861 9.86042 8.35861 10.0046C8.35861 10.1489 8.24126 10.2662 8.09703 10.2662H5.09384C4.95132 10.2662 4.83577 10.3818 4.83577 10.5243C4.83577 10.6668 4.95132 10.7824 5.09384 10.7824H7.3759C7.49703 10.7824 7.59561 10.8809 7.59561 11.0021C7.59561 11.1232 7.49703 11.2217 7.3759 11.2217L3.34832 11.2218ZM5.06964 11.7379L7.3759 11.7378C7.78164 11.7378 8.11174 11.4078 8.11174 11.002C8.11174 10.9967 8.11126 10.9915 8.11113 10.9862H12.6734C12.8159 10.9862 12.9315 10.8706 12.9315 10.7281C12.9315 10.5856 12.8159 10.4701 12.6734 10.4701H8.71971C8.81703 10.3402 8.87474 10.179 8.87474 10.0046C8.87474 9.888 8.84894 9.77732 8.80277 9.67793C8.93848 9.62116 9.05619 9.52987 9.14529 9.41526H12.6932C12.8357 9.41526 12.9513 9.29971 12.9513 9.15719C12.9513 9.01468 12.8357 8.89913 12.6932 8.89913H9.32306C9.32306 8.89855 9.32313 8.89797 9.32313 8.89738C9.32313 8.51826 9.07229 8.19655 8.72784 8.08961C8.76471 8.01348 8.79013 7.93097 8.80271 7.84432H12.7132C12.8557 7.84432 12.9712 7.72877 12.9712 7.58626C12.9712 7.44374 12.8557 7.32819 12.7132 7.32819H8.71397C8.57203 7.06 8.29019 6.87677 7.96626 6.87677H5.06964V3.064H14.2737L14.2736 13.5713H13.0839C12.8715 13.5713 12.6988 13.744 12.6988 13.9563V15.1461H5.06964V11.7379ZM13.9087 14.0874L13.215 14.781V14.0874H13.9087ZM15.3788 14.041H14.6798C14.7518 13.9508 14.7898 13.8424 14.7898 13.7241V3.05993C14.7898 2.77761 14.5601 2.54787 14.2778 2.54787H6.17474V1.95893H15.3788V14.041ZM16.4839 12.9359H15.8949V1.95484C15.8949 1.67251 15.6652 1.44277 15.3828 1.44277H7.27981V0.853837H16.4839V12.9359ZM6.39203 4.44445C6.39203 4.30193 6.50758 4.18638 6.6501 4.18638H12.6933C12.8358 4.18638 12.9513 4.30193 12.9513 4.44445C12.9513 4.58697 12.8358 4.70251 12.6933 4.70251H6.6501C6.50758 4.70251 6.39203 4.58697 6.39203 4.44445ZM11.1757 13.7656C11.1757 13.9082 11.0601 14.0237 10.9176 14.0237H6.6501C6.50758 14.0237 6.39203 13.9082 6.39203 13.7656C6.39203 13.6231 6.50758 13.5076 6.6501 13.5076H10.9176C11.0601 13.5076 11.1757 13.6231 11.1757 13.7656ZM6.35229 12.299C6.35229 12.1565 6.46784 12.041 6.61035 12.041H12.6535C12.796 12.041 12.9116 12.1565 12.9116 12.299C12.9116 12.4415 12.796 12.5571 12.6535 12.5571H6.61035C6.46784 12.5571 6.35229 12.4415 6.35229 12.299ZM12.9911 6.01538C12.9911 6.1579 12.8755 6.27345 12.733 6.27345H6.68984C6.54732 6.27345 6.43177 6.1579 6.43177 6.01538C6.43177 5.87287 6.54732 5.75732 6.68984 5.75732H12.733C12.8755 5.75732 12.9911 5.87284 12.9911 6.01538Z" })), /* @__PURE__ */ React__namespace.createElement("path", { d: "M16.4879 0.337708H7.27574C6.99339 0.337708 6.76368 0.567417 6.76368 0.849772V1.4428H6.17064C5.88832 1.4428 5.65861 1.67251 5.65861 1.95487V2.5479H5.06558C4.78323 2.5479 4.55352 2.77761 4.55352 3.05997V5.73732L4.05406 5.77393C3.61177 5.80635 3.2249 6.07019 2.96471 6.51684L2.61732 7.11313C2.57432 7.187 2.50639 7.22603 2.42087 7.22603H1.25806C1.11555 7.22603 1 7.34158 1 7.48409V11.2388C1 11.3814 1.11555 11.4969 1.25806 11.4969H2.4209C2.46287 11.4969 2.50071 11.5062 2.53342 11.5246C2.79235 11.6702 3.05132 11.738 3.34832 11.738L4.55352 11.7379V15.1502C4.55352 15.4325 4.78323 15.6623 5.06558 15.6623H12.8517C12.9905 15.6623 13.1157 15.6104 13.2138 15.5123L14.1689 14.5572H15.3828C15.6652 14.5572 15.8949 14.3275 15.8949 14.0451V13.4521H16.4879C16.7703 13.4521 17 13.2224 17 12.94V0.849772C17 0.567417 16.7703 0.337708 16.4879 0.337708ZM1.51613 7.74209H2.16284V10.9807H1.51613V7.74209ZM3.34832 11.2218C3.14068 11.2218 2.96735 11.1764 2.78635 11.0746C2.75213 11.0554 2.7161 11.0394 2.67897 11.0259V7.69645C2.83826 7.63816 2.97406 7.52613 3.06335 7.37287L3.41071 6.77661C3.53229 6.56787 3.74916 6.31377 4.09181 6.28867L4.55352 6.2548V7.1349C4.55352 7.27742 4.66906 7.39297 4.81158 7.39297H7.96626C8.1479 7.39297 8.29568 7.54077 8.29568 7.72245C8.29568 7.90409 8.1479 8.05187 7.96626 8.05187H5.58352C5.441 8.05187 5.32545 8.16742 5.32545 8.30993C5.32545 8.45245 5.441 8.568 5.58352 8.568H8.47755C8.65923 8.568 8.807 8.71577 8.807 8.89745C8.807 9.07913 8.65923 9.2269 8.47755 9.2269H5.30471C5.16219 9.2269 5.04665 9.34245 5.04665 9.48497C5.04665 9.62748 5.16219 9.74303 5.30471 9.74303H8.09703C8.24129 9.74303 8.35861 9.86042 8.35861 10.0046C8.35861 10.1489 8.24126 10.2662 8.09703 10.2662H5.09384C4.95132 10.2662 4.83577 10.3818 4.83577 10.5243C4.83577 10.6668 4.95132 10.7824 5.09384 10.7824H7.3759C7.49703 10.7824 7.59561 10.8809 7.59561 11.0021C7.59561 11.1232 7.49703 11.2217 7.3759 11.2217L3.34832 11.2218ZM5.06964 11.7379L7.3759 11.7378C7.78164 11.7378 8.11174 11.4078 8.11174 11.002C8.11174 10.9967 8.11126 10.9915 8.11113 10.9862H12.6734C12.8159 10.9862 12.9315 10.8706 12.9315 10.7281C12.9315 10.5856 12.8159 10.4701 12.6734 10.4701H8.71971C8.81703 10.3402 8.87474 10.179 8.87474 10.0046C8.87474 9.888 8.84894 9.77732 8.80277 9.67793C8.93848 9.62116 9.05619 9.52987 9.14529 9.41526H12.6932C12.8357 9.41526 12.9513 9.29971 12.9513 9.15719C12.9513 9.01468 12.8357 8.89913 12.6932 8.89913H9.32306C9.32306 8.89855 9.32313 8.89797 9.32313 8.89738C9.32313 8.51826 9.07229 8.19655 8.72784 8.08961C8.76471 8.01348 8.79013 7.93097 8.80271 7.84432H12.7132C12.8557 7.84432 12.9712 7.72877 12.9712 7.58626C12.9712 7.44374 12.8557 7.32819 12.7132 7.32819H8.71397C8.57203 7.06 8.29019 6.87677 7.96626 6.87677H5.06964V3.064H14.2737L14.2736 13.5713H13.0839C12.8715 13.5713 12.6988 13.744 12.6988 13.9563V15.1461H5.06964V11.7379ZM13.9087 14.0874L13.215 14.781V14.0874H13.9087ZM15.3788 14.041H14.6798C14.7518 13.9508 14.7898 13.8424 14.7898 13.7241V3.05993C14.7898 2.77761 14.5601 2.54787 14.2778 2.54787H6.17474V1.95893H15.3788V14.041ZM16.4839 12.9359H15.8949V1.95484C15.8949 1.67251 15.6652 1.44277 15.3828 1.44277H7.27981V0.853837H16.4839V12.9359ZM6.39203 4.44445C6.39203 4.30193 6.50758 4.18638 6.6501 4.18638H12.6933C12.8358 4.18638 12.9513 4.30193 12.9513 4.44445C12.9513 4.58697 12.8358 4.70251 12.6933 4.70251H6.6501C6.50758 4.70251 6.39203 4.58697 6.39203 4.44445ZM11.1757 13.7656C11.1757 13.9082 11.0601 14.0237 10.9176 14.0237H6.6501C6.50758 14.0237 6.39203 13.9082 6.39203 13.7656C6.39203 13.6231 6.50758 13.5076 6.6501 13.5076H10.9176C11.0601 13.5076 11.1757 13.6231 11.1757 13.7656ZM6.35229 12.299C6.35229 12.1565 6.46784 12.041 6.61035 12.041H12.6535C12.796 12.041 12.9116 12.1565 12.9116 12.299C12.9116 12.4415 12.796 12.5571 12.6535 12.5571H6.61035C6.46784 12.5571 6.35229 12.4415 6.35229 12.299ZM12.9911 6.01538C12.9911 6.1579 12.8755 6.27345 12.733 6.27345H6.68984C6.54732 6.27345 6.43177 6.1579 6.43177 6.01538C6.43177 5.87287 6.54732 5.75732 6.68984 5.75732H12.733C12.8755 5.75732 12.9911 5.87284 12.9911 6.01538Z", fill: "currentColor" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M16.4879 0.337708H7.27574C6.99339 0.337708 6.76368 0.567417 6.76368 0.849772V1.4428H6.17064C5.88832 1.4428 5.65861 1.67251 5.65861 1.95487V2.5479H5.06558C4.78323 2.5479 4.55352 2.77761 4.55352 3.05997V5.73732L4.05406 5.77393C3.61177 5.80635 3.2249 6.07019 2.96471 6.51684L2.61732 7.11313C2.57432 7.187 2.50639 7.22603 2.42087 7.22603H1.25806C1.11555 7.22603 1 7.34158 1 7.48409V11.2388C1 11.3814 1.11555 11.4969 1.25806 11.4969H2.4209C2.46287 11.4969 2.50071 11.5062 2.53342 11.5246C2.79235 11.6702 3.05132 11.738 3.34832 11.738L4.55352 11.7379V15.1502C4.55352 15.4325 4.78323 15.6623 5.06558 15.6623H12.8517C12.9905 15.6623 13.1157 15.6104 13.2138 15.5123L14.1689 14.5572H15.3828C15.6652 14.5572 15.8949 14.3275 15.8949 14.0451V13.4521H16.4879C16.7703 13.4521 17 13.2224 17 12.94V0.849772C17 0.567417 16.7703 0.337708 16.4879 0.337708ZM1.51613 7.74209H2.16284V10.9807H1.51613V7.74209ZM3.34832 11.2218C3.14068 11.2218 2.96735 11.1764 2.78635 11.0746C2.75213 11.0554 2.7161 11.0394 2.67897 11.0259V7.69645C2.83826 7.63816 2.97406 7.52613 3.06335 7.37287L3.41071 6.77661C3.53229 6.56787 3.74916 6.31377 4.09181 6.28867L4.55352 6.2548V7.1349C4.55352 7.27742 4.66906 7.39297 4.81158 7.39297H7.96626C8.1479 7.39297 8.29568 7.54077 8.29568 7.72245C8.29568 7.90409 8.1479 8.05187 7.96626 8.05187H5.58352C5.441 8.05187 5.32545 8.16742 5.32545 8.30993C5.32545 8.45245 5.441 8.568 5.58352 8.568H8.47755C8.65923 8.568 8.807 8.71577 8.807 8.89745C8.807 9.07913 8.65923 9.2269 8.47755 9.2269H5.30471C5.16219 9.2269 5.04665 9.34245 5.04665 9.48497C5.04665 9.62748 5.16219 9.74303 5.30471 9.74303H8.09703C8.24129 9.74303 8.35861 9.86042 8.35861 10.0046C8.35861 10.1489 8.24126 10.2662 8.09703 10.2662H5.09384C4.95132 10.2662 4.83577 10.3818 4.83577 10.5243C4.83577 10.6668 4.95132 10.7824 5.09384 10.7824H7.3759C7.49703 10.7824 7.59561 10.8809 7.59561 11.0021C7.59561 11.1232 7.49703 11.2217 7.3759 11.2217L3.34832 11.2218ZM5.06964 11.7379L7.3759 11.7378C7.78164 11.7378 8.11174 11.4078 8.11174 11.002C8.11174 10.9967 8.11126 10.9915 8.11113 10.9862H12.6734C12.8159 10.9862 12.9315 10.8706 12.9315 10.7281C12.9315 10.5856 12.8159 10.4701 12.6734 10.4701H8.71971C8.81703 10.3402 8.87474 10.179 8.87474 10.0046C8.87474 9.888 8.84894 9.77732 8.80277 9.67793C8.93848 9.62116 9.05619 9.52987 9.14529 9.41526H12.6932C12.8357 9.41526 12.9513 9.29971 12.9513 9.15719C12.9513 9.01468 12.8357 8.89913 12.6932 8.89913H9.32306C9.32306 8.89855 9.32313 8.89797 9.32313 8.89738C9.32313 8.51826 9.07229 8.19655 8.72784 8.08961C8.76471 8.01348 8.79013 7.93097 8.80271 7.84432H12.7132C12.8557 7.84432 12.9712 7.72877 12.9712 7.58626C12.9712 7.44374 12.8557 7.32819 12.7132 7.32819H8.71397C8.57203 7.06 8.29019 6.87677 7.96626 6.87677H5.06964V3.064H14.2737L14.2736 13.5713H13.0839C12.8715 13.5713 12.6988 13.744 12.6988 13.9563V15.1461H5.06964V11.7379ZM13.9087 14.0874L13.215 14.781V14.0874H13.9087ZM15.3788 14.041H14.6798C14.7518 13.9508 14.7898 13.8424 14.7898 13.7241V3.05993C14.7898 2.77761 14.5601 2.54787 14.2778 2.54787H6.17474V1.95893H15.3788V14.041ZM16.4839 12.9359H15.8949V1.95484C15.8949 1.67251 15.6652 1.44277 15.3828 1.44277H7.27981V0.853837H16.4839V12.9359ZM6.39203 4.44445C6.39203 4.30193 6.50758 4.18638 6.6501 4.18638H12.6933C12.8358 4.18638 12.9513 4.30193 12.9513 4.44445C12.9513 4.58697 12.8358 4.70251 12.6933 4.70251H6.6501C6.50758 4.70251 6.39203 4.58697 6.39203 4.44445ZM11.1757 13.7656C11.1757 13.9082 11.0601 14.0237 10.9176 14.0237H6.6501C6.50758 14.0237 6.39203 13.9082 6.39203 13.7656C6.39203 13.6231 6.50758 13.5076 6.6501 13.5076H10.9176C11.0601 13.5076 11.1757 13.6231 11.1757 13.7656ZM6.35229 12.299C6.35229 12.1565 6.46784 12.041 6.61035 12.041H12.6535C12.796 12.041 12.9116 12.1565 12.9116 12.299C12.9116 12.4415 12.796 12.5571 12.6535 12.5571H6.61035C6.46784 12.5571 6.35229 12.4415 6.35229 12.299ZM12.9911 6.01538C12.9911 6.1579 12.8755 6.27345 12.733 6.27345H6.68984C6.54732 6.27345 6.43177 6.1579 6.43177 6.01538C6.43177 5.87287 6.54732 5.75732 6.68984 5.75732H12.733C12.8755 5.75732 12.9911 5.87284 12.9911 6.01538Z", stroke: "currentColor", strokeWidth: 0.4, mask: "url(#path-1-outside-1_2947_12776)" }));
441
445
 
@@ -653,7 +657,9 @@ Components['flaky_status_icon'] = SvgFlakyStatusIcon;
653
657
  Components['drawer_maximize'] = SvgDrawerMaximize;
654
658
  Components['save_as_step'] = SvgSaveAsStep;
655
659
  Components['send_to_steps'] = SvgSendStep;
656
- Components['fireflink_standard_template'] = SvgFireflinkStandardTemplate;
660
+ Components['standard_template'] = SvgStandardTemplate;
661
+ Components['sample_template_first'] = SvgSampleTemplateFirst;
662
+ Components['sample_template_second'] = SvgSampleTemplateSecond;
657
663
  Components['no_license_found'] = SvgNoLicenseFound;
658
664
  Components['data_provider'] = SvgDataProvider;
659
665
  Components['link_expired'] = SvgLinkExpired;
@@ -712,6 +718,7 @@ const Icon = /*#__PURE__*/React.forwardRef(({
712
718
  className: classNames('ff-icon-container', {
713
719
  'ff-icon-click': hoverEffect,
714
720
  'ff-icon-disabled': disabled,
721
+ 'ff-icon-dark': variant === "dark",
715
722
  [className]: !!className
716
723
  }),
717
724
  ...props
@@ -781,7 +788,7 @@ const Button$1 = /*#__PURE__*/React.forwardRef(({
781
788
  });
782
789
  });
783
790
 
784
- var css_248z$11 = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-drawer-container .ff-drawer .ff-drawer-header .ff-drawer-title {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-drawer-container .ff-overlay {\n position: fixed;\n inset: 0;\n background-color: var(--drawer-title-color);\n opacity: 0.5;\n}\n.ff-drawer-container .child-drawer-overlay {\n z-index: 999;\n}\n.ff-drawer-container .ff-drawer {\n margin-bottom: 4px;\n position: fixed;\n right: 0;\n bottom: 0;\n top: 80px;\n min-width: 450px;\n background-color: var(--primary-button-text-color);\n z-index: 999;\n transform: translateX(100%);\n opacity: 0;\n}\n.ff-drawer-container .ff-drawer--open {\n transform: translateX(0);\n opacity: 1;\n}\n.ff-drawer-container .ff-drawer--small {\n width: 444px;\n}\n.ff-drawer-container .ff-drawer--medium {\n width: 666px;\n}\n.ff-drawer-container .ff-drawer--large {\n width: 888px;\n}\n.ff-drawer-container .ff-drawer--x-large {\n width: calc(100vw - 10px);\n}\n.ff-drawer-container .ff-drawer--open, .ff-drawer-container .ff-drawer--medium, .ff-drawer-container .ff-drawer--large, .ff-drawer-container .ff-drawer--x-large {\n transition: all 0.4s ease-in-out;\n border-radius: 5px;\n border: 1px solid var(--border-color);\n}\n.ff-drawer-container .ff-drawer .ff-drawer-header {\n padding: 4px 8px 4px 8px;\n display: flex;\n gap: 10px;\n border-bottom: 1px solid var(--border-color);\n}\n.ff-drawer-container .ff-drawer .ff-drawer-header .ff-drawer-title {\n font-weight: 600;\n color: var(--drawer-title-color);\n display: flex;\n align-items: center;\n gap: 12px;\n}\n.ff-drawer-container .ff-drawer .ff-drawer-header .ff-close-icon {\n height: 16px;\n width: 16px;\n border-radius: 4px;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.ff-drawer-container .ff-drawer .ff-drawer-header .ff-drawer-action-section {\n width: 100%;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 12px;\n height: 24px;\n}\n.ff-drawer-container .ff-drawer .ff-drawer-header .ff-drawer-action-section .ff-action-button {\n display: flex;\n align-items: center;\n gap: 5px;\n}\n.ff-drawer-container .ff-drawer .ff-drawer-header .ff-drawer-action-section .ff-action-button .ff-expand-collapse-button {\n cursor: pointer;\n height: 24px;\n width: 24px;\n background-color: var(--button-bg-color);\n outline: none;\n border: none;\n margin: 0;\n border: 1px solid transparent;\n display: flex;\n align-items: center;\n justify-content: center;\n border-radius: 8px;\n}\n.ff-drawer-container .ff-drawer .ff-drawer-header .ff-drawer-action-section .ff-action-button .ff-custom-header {\n background-color: var(--drawer-footer-bg);\n padding: 4px 8px;\n}\n.ff-drawer-container .ff-drawer .ff-drawer-body {\n background-color: var(--drawer-footer-bg);\n overflow-y: auto;\n}\n.ff-drawer-container .ff-drawer .ff-drawer-footer {\n position: fixed;\n bottom: 0;\n left: 0;\n right: 0;\n padding: 4px 8px 4px 8px;\n display: flex;\n justify-content: space-between;\n border-top: 1px solid var(--drawer-footer-border);\n z-index: 1000;\n}\n.ff-drawer-container .ff-drawer .ff-drawer-footer .button-container {\n display: flex;\n justify-content: flex-end;\n gap: 8px;\n}\n.ff-drawer-container .ff-drawer .ff-drawer-footer .ff-custom-footer {\n background-color: var(--drawer-footer-bg);\n padding: 4px 8px;\n}";
791
+ var css_248z$11 = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-drawer-container .ff-drawer .ff-drawer-header .ff-drawer-title {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-drawer-container .ff-overlay {\n position: fixed;\n inset: 0;\n background-color: var(--drawer-title-color);\n opacity: 0.5;\n}\n.ff-drawer-container .child-drawer-overlay {\n z-index: 999;\n}\n.ff-drawer-container .ff-drawer {\n margin-bottom: 4px;\n position: fixed;\n right: 0;\n bottom: 0;\n top: 80px;\n min-width: 450px;\n background-color: var(--primary-button-text-color);\n z-index: 999;\n transform: translateX(100%);\n opacity: 0;\n}\n.ff-drawer-container .ff-drawer--open {\n transform: translateX(0);\n opacity: 1;\n}\n.ff-drawer-container .ff-drawer--small {\n width: 444px;\n}\n.ff-drawer-container .ff-drawer--medium {\n width: 666px;\n}\n.ff-drawer-container .ff-drawer--large {\n width: 888px;\n}\n.ff-drawer-container .ff-drawer--x-large {\n width: calc(100vw - 10px);\n}\n.ff-drawer-container .ff-drawer--open, .ff-drawer-container .ff-drawer--medium, .ff-drawer-container .ff-drawer--large, .ff-drawer-container .ff-drawer--x-large {\n transition: all 0.4s ease-in-out;\n border-radius: 5px;\n border: 1px solid var(--border-color);\n}\n.ff-drawer-container .ff-drawer .ff-drawer-header {\n padding: 4px 8px 4px 8px;\n display: flex;\n gap: 10px;\n border-bottom: 1px solid var(--border-color);\n}\n.ff-drawer-container .ff-drawer .ff-drawer-header .ff-drawer-title {\n font-weight: 600;\n color: var(--drawer-title-color);\n display: flex;\n align-items: center;\n gap: 12px;\n}\n.ff-drawer-container .ff-drawer .ff-drawer-header .ff-close-icon {\n height: 16px;\n width: 16px;\n border-radius: 4px;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.ff-drawer-container .ff-drawer .ff-drawer-header .ff-drawer-action-section {\n width: 100%;\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 12px;\n height: 24px;\n}\n.ff-drawer-container .ff-drawer .ff-drawer-header .ff-drawer-action-section .ff-action-button {\n display: flex;\n align-items: center;\n gap: 5px;\n}\n.ff-drawer-container .ff-drawer .ff-drawer-header .ff-drawer-action-section .ff-action-button .ff-expand-collapse-button {\n cursor: pointer;\n height: 24px;\n width: 24px;\n background-color: var(--button-bg-color);\n outline: none;\n border: none;\n margin: 0;\n border: 1px solid transparent;\n display: flex;\n align-items: center;\n justify-content: center;\n border-radius: 8px;\n}\n.ff-drawer-container .ff-drawer .ff-drawer-header .ff-drawer-action-section .ff-action-button .ff-custom-header {\n background-color: var(--drawer-footer-bg);\n padding: 4px 8px;\n}\n.ff-drawer-container .ff-drawer .ff-drawer-body {\n background-color: var(--drawer-footer-bg);\n overflow-y: auto;\n}\n.ff-drawer-container .ff-drawer .ff-drawer-footer {\n position: fixed;\n bottom: 0;\n left: 0;\n right: 0;\n padding: 4px 8px 4px 8px;\n display: flex;\n justify-content: space-between;\n border-top: 1px solid var(--drawer-footer-border);\n z-index: 1000;\n}\n.ff-drawer-container .ff-drawer .ff-drawer-footer .button-container {\n display: flex;\n justify-content: flex-end;\n gap: 8px;\n}\n.ff-drawer-container .ff-drawer .ff-drawer-footer .ff-custom-footer {\n background-color: var(--drawer-footer-bg);\n padding: 4px 8px;\n}";
785
792
  styleInject(css_248z$11);
786
793
 
787
794
  function useEscapeKey(key) {
@@ -996,13 +1003,13 @@ const Drawer = ({
996
1003
  }), document.body);
997
1004
  };
998
1005
 
999
- var css_248z$$ = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-accordion {\n border: 1px solid var(--border-color);\n border-radius: 4px;\n min-width: fit-content;\n}\n.ff-accordion .accordion-header {\n display: flex;\n justify-content: space-between;\n min-height: 32px;\n}\n.ff-accordion .accordion-header .header-title {\n padding: 8px;\n}\n.ff-accordion .accordion-header .accordion-arrow {\n display: flex;\n padding: 8px;\n align-items: center;\n transition: transform 0.3s ease;\n}\n.ff-accordion .accordion-header .accordion-arrow.expanded {\n transform: rotate(180deg);\n}\n.ff-accordion .accordion-header .accordion-arrow:hover {\n color: var(--tooltip-bg-color);\n}\n.ff-accordion .accordion-header.expanded {\n background-color: var(--hover-color);\n border-bottom: 1px solid var(--hover-color);\n}\n.ff-accordion .accordion-header:hover {\n background-color: var(--hover-color);\n}\n.ff-accordion .accordion-content {\n padding: 4px;\n}";
1006
+ var css_248z$$ = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-accordion {\n border: 1px solid var(--border-color);\n border-radius: 4px;\n min-width: fit-content;\n}\n.ff-accordion .accordion-header {\n display: flex;\n justify-content: space-between;\n min-height: 32px;\n}\n.ff-accordion .accordion-header .header-title {\n padding: 8px;\n}\n.ff-accordion .accordion-header .accordion-arrow {\n display: flex;\n padding: 8px;\n align-items: center;\n transition: transform 0.3s ease;\n}\n.ff-accordion .accordion-header .accordion-arrow.expanded {\n transform: rotate(180deg);\n}\n.ff-accordion .accordion-header .accordion-arrow:hover {\n color: var(--tooltip-bg-color);\n}\n.ff-accordion .accordion-header.expanded {\n background-color: var(--hover-color);\n border-bottom: 1px solid var(--hover-color);\n}\n.ff-accordion .accordion-header:hover {\n background-color: var(--hover-color);\n}\n.ff-accordion .accordion-content {\n padding: 4px;\n}";
1000
1007
  styleInject(css_248z$$);
1001
1008
 
1002
1009
  var css_248z$_ = "";
1003
1010
  styleInject(css_248z$_);
1004
1011
 
1005
- var css_248z$Z = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-tooltip {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-tooltip-container {\n cursor: pointer;\n display: inline-block;\n}\n\n.ff-tooltip {\n position: fixed;\n width: max-content;\n max-width: 60vw;\n word-wrap: break-word;\n background-color: var(--tooltip-bg-color);\n line-height: 18px;\n color: var(--tooltip-text-color);\n text-align: center;\n border-radius: 5px;\n padding: 6px 12px;\n opacity: 0;\n}\n.ff-tooltip--visible {\n opacity: 1;\n transition: opacity 0.3s;\n}";
1012
+ var css_248z$Z = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-tooltip {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-tooltip-container {\n cursor: pointer;\n display: inline-block;\n}\n\n.ff-tooltip {\n position: fixed;\n width: max-content;\n max-width: 60vw;\n word-wrap: break-word;\n background-color: var(--tooltip-bg-color);\n line-height: 18px;\n color: var(--tooltip-text-color);\n text-align: center;\n border-radius: 5px;\n padding: 6px 12px;\n opacity: 0;\n}\n.ff-tooltip--visible {\n opacity: 1;\n transition: opacity 0.3s;\n}";
1006
1013
  styleInject(css_248z$Z);
1007
1014
 
1008
1015
  const checkEmpty = value => {
@@ -1266,7 +1273,7 @@ const Accordion = ({
1266
1273
  });
1267
1274
  };
1268
1275
 
1269
- var css_248z$X = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs, .ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main .ff-multiselect-chip-container .ff-multiselect-chip .ff-multiselect-chip-label {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main .default-label, .ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect .ff-multiselect-more-chip {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8, .ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main .active-default-label, .ff-multiselect-container-with-icon .ff-multiselect-wrapper .error-text {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-multiselect-container-with-icon {\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 8px;\n width: 100%;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper {\n flex-grow: 1;\n box-sizing: border-box;\n transition: all 0.3s ease;\n cursor: pointer;\n position: relative;\n border: 1px solid var(--default-icon-color);\n border-radius: 4px;\n background: var(--drawer-footer-bg);\n min-width: 150px;\n height: 32px;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect {\n position: relative;\n padding: 6px 3px;\n border: none;\n border-radius: 4px;\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main {\n display: flex;\n flex: 1;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main .default-label {\n font-family: Poppins;\n font-weight: 400;\n letter-spacing: 0.5px;\n transition: all 0.3s ease;\n color: var(--default-icon-color);\n line-height: 18px;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main .active-default-label {\n font-size: 8px !important;\n height: 8px;\n font-family: Poppins;\n font-weight: 400;\n letter-spacing: 0.5px;\n transition: all 0.3s ease;\n background-color: var(--multi-select-label-bg);\n line-height: 12px;\n color: var(--default-icon-color);\n padding: 0 4px;\n position: absolute;\n left: 8px;\n top: -6px;\n pointer-events: none;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main .ff-multiselect-chip-container {\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n gap: 5px;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main .ff-multiselect-chip-container .ff-multiselect-chip {\n display: flex;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n border: 0.5px solid #f1ebf2;\n padding: 0 1px 0 4px;\n gap: 4px;\n border-radius: 15px;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main .ff-multiselect-chip-container .ff-multiselect-chip .ff-multiselect-chip-label {\n line-height: 14px;\n color: var(--tooltip-bg-color);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main .ff-multiselect-chip-container .ff-multiselect-chip .ff-multiselect-chip-label.label-padding {\n padding: 5px 2px;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main .ff-multiselect-chip-container .ff-multiselect-chip .ff-multiselect-chip-close-icon {\n color: var(--brand-color);\n cursor: pointer;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main .ff-multiselect-chip-container .ff-multiselect-input-container {\n flex: 1;\n min-width: 20px;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main .ff-multiselect-chip-container .ff-multiselect-input-container input {\n width: 100%;\n min-width: 30px;\n max-width: calc(100% - 0px);\n padding: 2px;\n box-sizing: border-box;\n border: none;\n font-size: 12px;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main .ff-multiselect-chip-container .ff-multiselect-input-container input:focus {\n outline: none;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect .ff-multiselect-more-chip {\n display: flex;\n align-items: center;\n width: 16px;\n font-weight: 600;\n line-height: 16px;\n color: var(--brand-color);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__toggle {\n display: flex;\n align-items: center;\n cursor: pointer;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__toggle .ff-select-arrow {\n transition: transform 0.3s ease;\n transform: rotate(360deg);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__toggle .ff-select-arrow svg path {\n transition: all 0.3s ease;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__toggle .ff-select-arrow--opened-dropdown {\n transform: rotate(180deg);\n transition: transform 0.3s ease;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper:hover {\n border: 1px solid var(--tooltip-bg-color);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper:hover .ff-multiselect .ff-multiselect__main .default-label,\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper:hover .ff-multiselect .ff-multiselect__main .active-default-label {\n color: var(--tooltip-bg-color);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper:hover .ff-select-arrow svg path {\n fill: var(--tooltip-bg-color);\n transition: all 0.3s ease;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--with-options {\n height: fit-content;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--opened-dropdown {\n border: 1px solid var(--brand-color);\n height: fit-content;\n cursor: default;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--opened-dropdown .ff-multiselect .ff-multiselect__main .active-default-label {\n color: var(--brand-color);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--opened-dropdown:hover {\n border: 1px solid var(--brand-color);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--opened-dropdown:hover .ff-multiselect .ff-multiselect__main .default-label,\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--opened-dropdown:hover .ff-multiselect .ff-multiselect__main .active-default-label {\n color: var(--brand-color);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--error {\n border: 1px solid var(--error-light);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--error .ff-multiselect .ff-multiselect__main .active-default-label {\n color: var(--error-light);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--error:hover {\n border: 1px solid var(--error-light);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--error:hover .ff-multiselect .ff-multiselect__main .default-label,\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--error:hover .ff-multiselect .ff-multiselect__main .active-default-label {\n color: var(--error-light);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--disabled {\n pointer-events: none;\n border: 1px solid var(--multi-select-border);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--disabled .ff-multiselect .ff-multiselect__main .active-default-label {\n color: var(--multi-select-border);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--disabled:hover {\n border: 1px solid var(--multi-select-border);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--disabled:hover .ff-multiselect .ff-multiselect__main .default-label,\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--disabled:hover .ff-multiselect .ff-multiselect__main .active-default-label {\n color: var(--multi-select-border);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--disabled .ff-select-arrow svg path {\n fill: var(--multi-select-border);\n transition: all 0.3s ease;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--disabled:hover .ff-select-arrow svg path {\n fill: var(--multi-select-border);\n transition: all 0.3s ease;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--disabled .ff-multiselect__main .ff-multiselect-chip-container .ff-multiselect-chip .ff-multiselect-chip-label {\n color: var(--text-color-light);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .error-text {\n position: absolute;\n margin-top: 4px;\n left: 12px;\n color: var(--error-light);\n letter-spacing: 0.5px;\n}\n.ff-multiselect-container-with-icon .ff-manage-labels-text {\n position: absolute;\n right: 0;\n margin-top: 4px;\n}\n.ff-multiselect-container-with-icon .ff-label-plus-icon {\n cursor: pointer;\n}";
1276
+ var css_248z$X = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs, .ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main .ff-multiselect-chip-container .ff-multiselect-chip .ff-multiselect-chip-label {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main .default-label, .ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect .ff-multiselect-more-chip {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8, .ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main .active-default-label, .ff-multiselect-container-with-icon .ff-multiselect-wrapper .error-text {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-multiselect-container-with-icon {\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 8px;\n width: 100%;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper {\n flex-grow: 1;\n box-sizing: border-box;\n transition: all 0.3s ease;\n cursor: pointer;\n position: relative;\n border: 1px solid var(--default-icon-color);\n border-radius: 4px;\n background: var(--drawer-footer-bg);\n min-width: 150px;\n height: 32px;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect {\n position: relative;\n padding: 6px 3px;\n border: none;\n border-radius: 4px;\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main {\n display: flex;\n flex: 1;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main .default-label {\n font-family: Poppins;\n font-weight: 400;\n letter-spacing: 0.5px;\n transition: all 0.3s ease;\n color: var(--default-icon-color);\n line-height: 18px;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main .active-default-label {\n font-size: 8px !important;\n height: 8px;\n font-family: Poppins;\n font-weight: 400;\n letter-spacing: 0.5px;\n transition: all 0.3s ease;\n background-color: var(--multi-select-label-bg);\n line-height: 12px;\n color: var(--default-icon-color);\n padding: 0 4px;\n position: absolute;\n left: 8px;\n top: -6px;\n pointer-events: none;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main .ff-multiselect-chip-container {\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n gap: 5px;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main .ff-multiselect-chip-container .ff-multiselect-chip {\n display: flex;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n border: 0.5px solid #f1ebf2;\n padding: 0 1px 0 4px;\n gap: 4px;\n border-radius: 15px;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main .ff-multiselect-chip-container .ff-multiselect-chip .ff-multiselect-chip-label {\n line-height: 14px;\n color: var(--tooltip-bg-color);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main .ff-multiselect-chip-container .ff-multiselect-chip .ff-multiselect-chip-label.label-padding {\n padding: 5px 2px;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main .ff-multiselect-chip-container .ff-multiselect-chip .ff-multiselect-chip-close-icon {\n color: var(--brand-color);\n cursor: pointer;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main .ff-multiselect-chip-container .ff-multiselect-input-container {\n flex: 1;\n min-width: 20px;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main .ff-multiselect-chip-container .ff-multiselect-input-container input {\n width: 100%;\n min-width: 30px;\n max-width: calc(100% - 0px);\n padding: 2px;\n box-sizing: border-box;\n border: none;\n font-size: 12px;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__main .ff-multiselect-chip-container .ff-multiselect-input-container input:focus {\n outline: none;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect .ff-multiselect-more-chip {\n display: flex;\n align-items: center;\n width: 16px;\n font-weight: 600;\n line-height: 16px;\n color: var(--brand-color);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__toggle {\n display: flex;\n align-items: center;\n cursor: pointer;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__toggle .ff-select-arrow {\n transition: transform 0.3s ease;\n transform: rotate(360deg);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__toggle .ff-select-arrow svg path {\n transition: all 0.3s ease;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .ff-multiselect__toggle .ff-select-arrow--opened-dropdown {\n transform: rotate(180deg);\n transition: transform 0.3s ease;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper:hover {\n border: 1px solid var(--tooltip-bg-color);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper:hover .ff-multiselect .ff-multiselect__main .default-label,\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper:hover .ff-multiselect .ff-multiselect__main .active-default-label {\n color: var(--tooltip-bg-color);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper:hover .ff-select-arrow svg path {\n fill: var(--tooltip-bg-color);\n transition: all 0.3s ease;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--with-options {\n height: fit-content;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--opened-dropdown {\n border: 1px solid var(--brand-color);\n height: fit-content;\n cursor: default;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--opened-dropdown .ff-multiselect .ff-multiselect__main .active-default-label {\n color: var(--brand-color);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--opened-dropdown:hover {\n border: 1px solid var(--brand-color);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--opened-dropdown:hover .ff-multiselect .ff-multiselect__main .default-label,\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--opened-dropdown:hover .ff-multiselect .ff-multiselect__main .active-default-label {\n color: var(--brand-color);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--error {\n border: 1px solid var(--error-light);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--error .ff-multiselect .ff-multiselect__main .active-default-label {\n color: var(--error-light);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--error:hover {\n border: 1px solid var(--error-light);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--error:hover .ff-multiselect .ff-multiselect__main .default-label,\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--error:hover .ff-multiselect .ff-multiselect__main .active-default-label {\n color: var(--error-light);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--disabled {\n pointer-events: none;\n border: 1px solid var(--multi-select-border);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--disabled .ff-multiselect .ff-multiselect__main .active-default-label {\n color: var(--multi-select-border);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--disabled:hover {\n border: 1px solid var(--multi-select-border);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--disabled:hover .ff-multiselect .ff-multiselect__main .default-label,\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--disabled:hover .ff-multiselect .ff-multiselect__main .active-default-label {\n color: var(--multi-select-border);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--disabled .ff-select-arrow svg path {\n fill: var(--multi-select-border);\n transition: all 0.3s ease;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--disabled:hover .ff-select-arrow svg path {\n fill: var(--multi-select-border);\n transition: all 0.3s ease;\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper--disabled .ff-multiselect__main .ff-multiselect-chip-container .ff-multiselect-chip .ff-multiselect-chip-label {\n color: var(--text-color-light);\n}\n.ff-multiselect-container-with-icon .ff-multiselect-wrapper .error-text {\n position: absolute;\n margin-top: 4px;\n left: 12px;\n color: var(--error-light);\n letter-spacing: 0.5px;\n}\n.ff-multiselect-container-with-icon .ff-manage-labels-text {\n position: absolute;\n right: 0;\n margin-top: 4px;\n}\n.ff-multiselect-container-with-icon .ff-label-plus-icon {\n cursor: pointer;\n}";
1270
1277
  styleInject(css_248z$X);
1271
1278
 
1272
1279
  const dropdownDefaultCSSData$1 = {
@@ -1275,10 +1282,10 @@ const dropdownDefaultCSSData$1 = {
1275
1282
  maxDropdownHeight: 160
1276
1283
  };
1277
1284
 
1278
- var css_248z$W = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd, .ff-multiselect-dropdown-container .no-options, .ff-multiselect-dropdown-container .dropdown-option-container .dropdown-option-label {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-multiselect-dropdown-container {\n position: absolute;\n background: var(--drawer-footer-bg);\n z-index: 1000;\n box-shadow: 0px 1px 4px 0px var(--ff-select-option-wrapper-box-shadow);\n border: 0.5px solid var(--ff-select-option-border-color);\n border-radius: 4px;\n box-sizing: border-box;\n margin-block: 4px;\n max-height: 160px;\n}\n.ff-multiselect-dropdown-container .ff-multiselect-options-wrapper {\n max-height: 128px;\n overflow-y: auto;\n border-radius: 2px;\n}\n.ff-multiselect-dropdown-container .ff-multiselect-options-wrapper::-webkit-scrollbar {\n width: 4px;\n height: 40px;\n border-radius: 12px 0px 0px 0px;\n background: var(--description-text);\n}\n.ff-multiselect-dropdown-container .ff-multiselect-options-wrapper::-webkit-scrollbar-track {\n background: var(--ff-select-scroll-track-bg);\n}\n.ff-multiselect-dropdown-container .ff-multiselect-options-wrapper::-webkit-scrollbar-thumb {\n background: var(--ff-select-scroll-thumb-color);\n border-radius: 10px;\n}\n.ff-multiselect-dropdown-container .ff-multiselect-options-wrapper::-webkit-scrollbar-thumb:hover {\n background: var(--ff-select-scroll-thumb-hover);\n}\n.ff-multiselect-dropdown-container .no-options {\n color: var(--pop-up-background-blur);\n text-align: center;\n margin: 0;\n padding: 10px;\n line-height: 12px;\n}\n.ff-multiselect-dropdown-container .dropdown-option-container {\n box-sizing: border-box;\n display: flex;\n align-items: center;\n height: 32px;\n padding: 4px 8px;\n gap: 4px;\n border-radius: 4px 0px 0px 0px;\n background-color: white;\n}\n.ff-multiselect-dropdown-container .dropdown-option-container .dropdown-option-label {\n color: var(--ff-select-text-color);\n}\n.ff-multiselect-dropdown-container .dropdown-option-container:hover {\n background-color: var(--hover-color);\n}\n.ff-multiselect-dropdown-container:focus {\n outline: none;\n}\n.ff-multiselect-dropdown-container .select-button-container {\n box-sizing: border-box;\n width: 100%;\n border-top: 1px solid var(--slider-table-color);\n height: 30px;\n display: flex;\n justify-content: center;\n align-items: center;\n}";
1285
+ var css_248z$W = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd, .ff-multiselect-dropdown-container .no-options, .ff-multiselect-dropdown-container .dropdown-option-container .dropdown-option-label {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-multiselect-dropdown-container {\n position: absolute;\n background: var(--drawer-footer-bg);\n z-index: 1000;\n box-shadow: 0px 1px 4px 0px var(--ff-select-option-wrapper-box-shadow);\n border: 0.5px solid var(--ff-select-option-border-color);\n border-radius: 4px;\n box-sizing: border-box;\n margin-block: 4px;\n max-height: 160px;\n}\n.ff-multiselect-dropdown-container .ff-multiselect-options-wrapper {\n max-height: 128px;\n overflow-y: auto;\n border-radius: 2px;\n}\n.ff-multiselect-dropdown-container .ff-multiselect-options-wrapper::-webkit-scrollbar {\n width: 4px;\n height: 40px;\n border-radius: 12px 0px 0px 0px;\n background: var(--description-text);\n}\n.ff-multiselect-dropdown-container .ff-multiselect-options-wrapper::-webkit-scrollbar-track {\n background: var(--ff-select-scroll-track-bg);\n}\n.ff-multiselect-dropdown-container .ff-multiselect-options-wrapper::-webkit-scrollbar-thumb {\n background: var(--ff-select-scroll-thumb-color);\n border-radius: 10px;\n}\n.ff-multiselect-dropdown-container .ff-multiselect-options-wrapper::-webkit-scrollbar-thumb:hover {\n background: var(--ff-select-scroll-thumb-hover);\n}\n.ff-multiselect-dropdown-container .no-options {\n color: var(--pop-up-background-blur);\n text-align: center;\n margin: 0;\n padding: 10px;\n line-height: 12px;\n}\n.ff-multiselect-dropdown-container .dropdown-option-container {\n box-sizing: border-box;\n display: flex;\n align-items: center;\n height: 32px;\n padding: 4px 8px;\n gap: 4px;\n border-radius: 4px 0px 0px 0px;\n background-color: white;\n}\n.ff-multiselect-dropdown-container .dropdown-option-container .dropdown-option-label {\n color: var(--ff-select-text-color);\n}\n.ff-multiselect-dropdown-container .dropdown-option-container:hover {\n background-color: var(--hover-color);\n}\n.ff-multiselect-dropdown-container:focus {\n outline: none;\n}\n.ff-multiselect-dropdown-container .select-button-container {\n box-sizing: border-box;\n width: 100%;\n border-top: 1px solid var(--slider-table-color);\n height: 30px;\n display: flex;\n justify-content: center;\n align-items: center;\n}";
1279
1286
  styleInject(css_248z$W);
1280
1287
 
1281
- var css_248z$V = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-checkbox--overlay {\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n cursor: pointer;\n position: relative;\n}\n.ff-checkbox--overlay .ff-checkbox-input {\n display: none;\n}\n.ff-checkbox--overlay .ff-checkbox-custom {\n width: 16px;\n height: 16px;\n border: 1px solid var(--checkbox-border-color);\n box-sizing: border-box;\n border-radius: 2px;\n margin-right: 8px;\n background-color: var(--checkbox-bg-color);\n position: relative;\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n transition: border-color background-color;\n}\n.ff-checkbox--overlay .ff-checkbox-custom::before {\n content: \"\";\n width: 9px;\n height: 2px;\n background-color: var(--checkbox-partial-color);\n border-radius: 2px;\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%) rotate(180deg);\n opacity: 0;\n transition: border-color background-color;\n}\n.ff-checkbox--overlay .ff-checkbox-custom::after {\n content: \"\";\n width: 16px;\n height: 16px;\n border: 4px solid var(--checkbox-hover-color);\n border-radius: 4px;\n position: absolute;\n opacity: 0;\n background-color: var(--checkbox-hover-color);\n z-index: -1;\n transition: border-color background-color;\n}\n.ff-checkbox--overlay .ff-checkbox-custom:hover {\n border-color: var(--brand-color);\n}\n.ff-checkbox--overlay .ff-checkbox-custom:hover::after {\n opacity: 1;\n}\n.ff-checkbox--overlay .ff-checkbox-input:checked + .ff-checkbox-custom {\n background: var(--brand-color);\n border-color: var(--brand-color);\n}\n.ff-checkbox--overlay .ff-checkbox-input:checked:hover + .ff-checkbox-custom {\n background: var(--brand-color);\n}\n.ff-checkbox--overlay .ff-checkbox-input:checked:hover + .ff-checkbox-custom::after {\n opacity: 1;\n}\n.ff-checkbox--overlay .ff-checkbox-input:disabled + .ff-checkbox-custom {\n opacity: 0.5;\n cursor: not-allowed;\n border: 1px solid var(--checkbox-border-color);\n}\n.ff-checkbox--overlay .ff-checkbox-input:disabled + .ff-checkbox-custom::after {\n opacity: 0;\n}\n.ff-checkbox--overlay .ff-storybook-checkbox--partial {\n background-color: var(--brand-color);\n border: none;\n}\n.ff-checkbox--overlay .ff-storybook-checkbox--partial::before {\n opacity: 1;\n}\n.ff-checkbox--overlay .ff-storybook-checkbox--partial:hover {\n background-color: var(--brand-color);\n}\n.ff-checkbox--overlay .ff-storybook-checkbox--partial:hover::after {\n opacity: 1;\n}";
1288
+ var css_248z$V = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-checkbox--overlay {\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n cursor: pointer;\n position: relative;\n}\n.ff-checkbox--overlay .ff-checkbox-input {\n display: none;\n}\n.ff-checkbox--overlay .ff-checkbox-custom {\n width: 16px;\n height: 16px;\n border: 1px solid var(--checkbox-border-color);\n box-sizing: border-box;\n border-radius: 2px;\n margin-right: 8px;\n background-color: var(--checkbox-bg-color);\n position: relative;\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n transition: border-color background-color;\n}\n.ff-checkbox--overlay .ff-checkbox-custom::before {\n content: \"\";\n width: 9px;\n height: 2px;\n background-color: var(--checkbox-partial-color);\n border-radius: 2px;\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%) rotate(180deg);\n opacity: 0;\n transition: border-color background-color;\n}\n.ff-checkbox--overlay .ff-checkbox-custom::after {\n content: \"\";\n width: 16px;\n height: 16px;\n border: 4px solid var(--checkbox-hover-color);\n border-radius: 4px;\n position: absolute;\n opacity: 0;\n background-color: var(--checkbox-hover-color);\n z-index: -1;\n transition: border-color background-color;\n}\n.ff-checkbox--overlay .ff-checkbox-custom:hover {\n border-color: var(--brand-color);\n}\n.ff-checkbox--overlay .ff-checkbox-custom:hover::after {\n opacity: 1;\n}\n.ff-checkbox--overlay .ff-checkbox-input:checked + .ff-checkbox-custom {\n background: var(--brand-color);\n border-color: var(--brand-color);\n}\n.ff-checkbox--overlay .ff-checkbox-input:checked:hover + .ff-checkbox-custom {\n background: var(--brand-color);\n}\n.ff-checkbox--overlay .ff-checkbox-input:checked:hover + .ff-checkbox-custom::after {\n opacity: 1;\n}\n.ff-checkbox--overlay .ff-checkbox-input:disabled + .ff-checkbox-custom {\n opacity: 0.5;\n cursor: not-allowed;\n border: 1px solid var(--checkbox-border-color);\n}\n.ff-checkbox--overlay .ff-checkbox-input:disabled + .ff-checkbox-custom::after {\n opacity: 0;\n}\n.ff-checkbox--overlay .ff-storybook-checkbox--partial {\n background-color: var(--brand-color);\n border: none;\n}\n.ff-checkbox--overlay .ff-storybook-checkbox--partial::before {\n opacity: 1;\n}\n.ff-checkbox--overlay .ff-storybook-checkbox--partial:hover {\n background-color: var(--brand-color);\n}\n.ff-checkbox--overlay .ff-storybook-checkbox--partial:hover::after {\n opacity: 1;\n}";
1282
1289
  styleInject(css_248z$V);
1283
1290
 
1284
1291
  const Checkbox = ({
@@ -1770,7 +1777,7 @@ const MultiSelect = ({
1770
1777
  });
1771
1778
  };
1772
1779
 
1773
- var css_248z$U = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-toaster-overlay {\n position: fixed;\n bottom: 0;\n right: 0;\n width: 100%;\n height: 100%;\n display: flex;\n pointer-events: none;\n justify-content: flex-end;\n align-items: flex-end;\n}\n.ff-toaster-overlay .ff-toaster {\n background-color: var(--drawer-footer-bg);\n display: flex;\n border-radius: 10px;\n margin: 16px;\n pointer-events: auto;\n min-width: 320px;\n max-width: 600px;\n gap: 8px;\n box-shadow: 0px 1px 4px 0px var(--toaster-boxshadow);\n animation: slideInToasterBottomRight 0.5s forwards;\n}\n.ff-toaster-overlay .ff-toaster .ff-toaster-container {\n padding: 8px;\n display: flex;\n border-radius: 10px;\n gap: 8px;\n width: 100%;\n}\n.ff-toaster-overlay .ff-toaster .ff-toaster-container::before {\n content: \"\";\n position: absolute;\n inset: 0;\n border-radius: 8px;\n padding: 1px;\n -webkit-mask: linear-gradient(var(--drawer-footer-bg) 0 0) content-box, linear-gradient(var(--drawer-footer-bg) 0 0);\n -webkit-mask-composite: xor;\n mask-composite: exclude;\n z-index: -1;\n}\n.ff-toaster-overlay .ff-toaster .ff-toaster-container .ff-toaster-content {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n justify-content: center;\n gap: 4px;\n}\n.ff-toaster-overlay .ff-toaster .ff-toaster-container .ff-toaster-content__title {\n max-width: 500px;\n word-wrap: break-word;\n}\n.ff-toaster-overlay .ff-toaster .ff-toaster-container .ff-toaster-content__message {\n max-width: 500px;\n word-wrap: break-word;\n}\n.ff-toaster-overlay .ff-toaster .ff-toaster-container .ff-toaster-content__prompt {\n margin-top: 4px;\n display: flex;\n gap: 10px;\n}\n.ff-toaster-overlay .ff-toaster--success::before {\n background: var(--toaster-success-border);\n}\n.ff-toaster-overlay .ff-toaster--warning::before {\n background: var(--toaster-warning-border);\n}\n.ff-toaster-overlay .ff-toaster--info::before {\n background: var(--toaster-info-border);\n}\n.ff-toaster-overlay .ff-toaster--danger::before, .ff-toaster-overlay .ff-toaster--confirm::before {\n background: var(--toaster-danger_confirm-border);\n}\n.ff-toaster-overlay .ff-toaster .ff-close-icon-wrapper {\n box-sizing: border-box;\n cursor: pointer;\n height: fit-content;\n width: fit-content;\n border-radius: 8px;\n padding: 8px;\n background: var(--toast-close-icon-wrapper-bg);\n margin-left: auto;\n}\n.ff-toaster-overlay.exiting {\n animation: slideOutToasterBottomRight 0.5s forwards;\n}\n\n@keyframes slideOutToasterBottomRight {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(100%);\n }\n}\n@keyframes slideInToasterBottomRight {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.fireflink-stories-toaster-container .fireflink-stories-toaster-container-row {\n display: flex;\n gap: 5px;\n margin: 15px;\n}";
1780
+ var css_248z$U = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-toaster-overlay {\n position: fixed;\n bottom: 0;\n right: 0;\n width: 100%;\n height: 100%;\n display: flex;\n pointer-events: none;\n justify-content: flex-end;\n align-items: flex-end;\n}\n.ff-toaster-overlay .ff-toaster {\n background-color: var(--drawer-footer-bg);\n display: flex;\n border-radius: 10px;\n margin: 16px;\n pointer-events: auto;\n min-width: 320px;\n max-width: 600px;\n gap: 8px;\n box-shadow: 0px 1px 4px 0px var(--toaster-boxshadow);\n animation: slideInToasterBottomRight 0.5s forwards;\n}\n.ff-toaster-overlay .ff-toaster .ff-toaster-container {\n padding: 8px;\n display: flex;\n border-radius: 10px;\n gap: 8px;\n width: 100%;\n}\n.ff-toaster-overlay .ff-toaster .ff-toaster-container::before {\n content: \"\";\n position: absolute;\n inset: 0;\n border-radius: 8px;\n padding: 1px;\n -webkit-mask: linear-gradient(var(--drawer-footer-bg) 0 0) content-box, linear-gradient(var(--drawer-footer-bg) 0 0);\n -webkit-mask-composite: xor;\n mask-composite: exclude;\n z-index: -1;\n}\n.ff-toaster-overlay .ff-toaster .ff-toaster-container .ff-toaster-content {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n justify-content: center;\n gap: 4px;\n}\n.ff-toaster-overlay .ff-toaster .ff-toaster-container .ff-toaster-content__title {\n max-width: 500px;\n word-wrap: break-word;\n}\n.ff-toaster-overlay .ff-toaster .ff-toaster-container .ff-toaster-content__message {\n max-width: 500px;\n word-wrap: break-word;\n}\n.ff-toaster-overlay .ff-toaster .ff-toaster-container .ff-toaster-content__prompt {\n margin-top: 4px;\n display: flex;\n gap: 10px;\n}\n.ff-toaster-overlay .ff-toaster--success::before {\n background: var(--toaster-success-border);\n}\n.ff-toaster-overlay .ff-toaster--warning::before {\n background: var(--toaster-warning-border);\n}\n.ff-toaster-overlay .ff-toaster--info::before {\n background: var(--toaster-info-border);\n}\n.ff-toaster-overlay .ff-toaster--danger::before, .ff-toaster-overlay .ff-toaster--confirm::before {\n background: var(--toaster-danger_confirm-border);\n}\n.ff-toaster-overlay .ff-toaster .ff-close-icon-wrapper {\n box-sizing: border-box;\n cursor: pointer;\n height: fit-content;\n width: fit-content;\n border-radius: 8px;\n padding: 8px;\n background: var(--toast-close-icon-wrapper-bg);\n margin-left: auto;\n}\n.ff-toaster-overlay.exiting {\n animation: slideOutToasterBottomRight 0.5s forwards;\n}\n\n@keyframes slideOutToasterBottomRight {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(100%);\n }\n}\n@keyframes slideInToasterBottomRight {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(0%);\n }\n}\n.fireflink-stories-toaster-container .fireflink-stories-toaster-container-row {\n display: flex;\n gap: 5px;\n margin: 15px;\n}";
1774
1781
  styleInject(css_248z$U);
1775
1782
 
1776
1783
  const Toaster = ({
@@ -2001,7 +2008,7 @@ const Toggle = ({
2001
2008
  });
2002
2009
  };
2003
2010
 
2004
- var css_248z$R = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs, .ff-chip-wrapper .ff-default-chip-style {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-chip-wrapper .ff-default-chip-style--custom {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-chip-wrapper {\n display: inline-flex;\n margin: 5px;\n justify-content: center;\n align-items: center;\n}\n.ff-chip-wrapper .ff-default-chip-style {\n display: flex;\n align-items: center;\n justify-content: space-around;\n width: fit-content;\n gap: 5px;\n height: 17px;\n border-radius: 25px;\n padding: 1px 6px;\n line-height: 15px;\n border: none;\n transition: transform 0.5s ease, box-shadow 0.5s ease, padding 1s ease;\n box-shadow: 1px 1px 6px 0px var(--ff-chips-blur-color) inset, -1px -1px 2px 0px var(--ff-chip-bg) inset, 1px -1px 2px 0px var(--ff-chips-blur-color) inset, 1px 1px 2px 0px var(--ff-chip-bg);\n}\n.ff-chip-wrapper .ff-default-chip-style--fullText:hover {\n box-shadow: 1px 1px 6px 0px var(--ff-chips-blur-color) inset, -1px -1px 2px 0px var(--ff-chip-bg) inset, 1px -1px 2px 0px var(--ff-chips-blur-color) inset, 1px 1px 2px 0px var(--ff-chip-bg);\n padding-right: 12px;\n}\n.ff-chip-wrapper .ff-default-chip-style--primary {\n background-color: var(--ff-chips-fill-color);\n color: var(--ff-chip-bg);\n color: var(--ff-chip-text-color);\n}\n.ff-chip-wrapper .ff-default-chip-style--success {\n background-color: var(--ff-success);\n color: var(--ff-chip-bg);\n}\n.ff-chip-wrapper .ff-default-chip-style--error {\n background-color: var(--ff-error-light);\n color: var(--ff-chip-bg);\n}\n.ff-chip-wrapper .ff-default-chip-style--warning {\n background-color: var(--ff-warning);\n color: var(--ff-chip-bg);\n}\n.ff-chip-wrapper .ff-default-chip-style--custom {\n background: rgba(97, 11, 134, 0.1019607843);\n color: #610b86;\n padding: 2px 8px;\n border-radius: 12px;\n cursor: pointer;\n white-space: nowrap;\n box-shadow: none;\n transition: background-color 0.3s ease, color 0.3s ease;\n}\n.ff-chip-wrapper .ff-default-chip-style--custom:hover {\n background-color: #610b86;\n color: #fdfaff;\n}";
2011
+ var css_248z$R = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs, .ff-chip-wrapper .ff-default-chip-style {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-chip-wrapper .ff-default-chip-style--custom {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-chip-wrapper {\n display: inline-flex;\n margin: 5px;\n justify-content: center;\n align-items: center;\n}\n.ff-chip-wrapper .ff-default-chip-style {\n display: flex;\n align-items: center;\n justify-content: space-around;\n width: fit-content;\n gap: 5px;\n height: 17px;\n border-radius: 25px;\n padding: 1px 6px;\n line-height: 15px;\n border: none;\n transition: transform 0.5s ease, box-shadow 0.5s ease, padding 1s ease;\n box-shadow: 1px 1px 6px 0px var(--ff-chips-blur-color) inset, -1px -1px 2px 0px var(--ff-chip-bg) inset, 1px -1px 2px 0px var(--ff-chips-blur-color) inset, 1px 1px 2px 0px var(--ff-chip-bg);\n}\n.ff-chip-wrapper .ff-default-chip-style--fullText:hover {\n box-shadow: 1px 1px 6px 0px var(--ff-chips-blur-color) inset, -1px -1px 2px 0px var(--ff-chip-bg) inset, 1px -1px 2px 0px var(--ff-chips-blur-color) inset, 1px 1px 2px 0px var(--ff-chip-bg);\n padding-right: 12px;\n}\n.ff-chip-wrapper .ff-default-chip-style--primary {\n background-color: var(--ff-chips-fill-color);\n color: var(--ff-chip-bg);\n color: var(--ff-chip-text-color);\n}\n.ff-chip-wrapper .ff-default-chip-style--success {\n background-color: var(--ff-success);\n color: var(--ff-chip-bg);\n}\n.ff-chip-wrapper .ff-default-chip-style--error {\n background-color: var(--ff-error-light);\n color: var(--ff-chip-bg);\n}\n.ff-chip-wrapper .ff-default-chip-style--warning {\n background-color: var(--ff-warning);\n color: var(--ff-chip-bg);\n}\n.ff-chip-wrapper .ff-default-chip-style--custom {\n background: rgba(97, 11, 134, 0.1019607843);\n color: #610b86;\n padding: 2px 8px;\n border-radius: 12px;\n cursor: pointer;\n white-space: nowrap;\n box-shadow: none;\n transition: background-color 0.3s ease, color 0.3s ease;\n}\n.ff-chip-wrapper .ff-default-chip-style--custom:hover {\n background-color: #610b86;\n color: #fdfaff;\n}";
2005
2012
  styleInject(css_248z$R);
2006
2013
 
2007
2014
  const Chip = ({
@@ -2031,7 +2038,7 @@ const Chip = ({
2031
2038
  });
2032
2039
  };
2033
2040
 
2034
- var css_248z$Q = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-input-container .ff-input, .ff-input-container .ff-input-label-container {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8, .ff-input-container:focus-within .ff-input-label-container, .ff-input-container:focus-within .ff-input::placeholder, .ff-input-container:focus-within .ff-input-label-container::placeholder, .ff-input-container .ff-input-message, .ff-input-container--float .ff-input-label-container {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-input-container {\n display: flex;\n flex-direction: column;\n position: relative;\n}\n.ff-input-container .ff-input, .ff-input-container .ff-input-label-container {\n padding: 6px 8px;\n border: 1px solid var(--input-default-border-color);\n border-radius: 4px;\n outline: none;\n line-height: 18px;\n}\n.ff-input-container .ff-input--medium {\n padding: 10px 9px;\n}\n.ff-input-container .ff-input:disabled, .ff-input-container .ff-input-label-container:disabled {\n cursor: not-allowed;\n}\n.ff-input-container .ff-input::placeholder, .ff-input-container .ff-input-label-container::placeholder {\n opacity: 0;\n line-height: 18px;\n}\n.ff-input-container .ff-input--disabled {\n background: transparent;\n border-color: var(--input-default-border-color);\n}\n.ff-input-container .ff-input--danger {\n border-color: var(--input-error-text-color);\n}\n.ff-input-container .ff-input--transparentBackground {\n background: transparent;\n}\n.ff-input-container .ff-input--no-border {\n border: none;\n}\n.ff-input-container .ff-input-label-container {\n display: flex;\n gap: 2px;\n position: absolute;\n border: none;\n outline: none;\n line-height: 18px;\n margin-top: 1px;\n transition: all 0.3s ease-in-out;\n}\n.ff-input-container .ff-input-label-container--medium {\n line-height: 25px;\n}\n.ff-input-container .ff-input-label-container .ff-input-label {\n color: var(--input-default-label-color);\n}\n.ff-input-container .ff-input-label-container .ff-input-label--danger {\n color: var(--input-error-text-color);\n}\n.ff-input-container .ff-input-label-container .ff-input-label--disabled {\n color: var(--input-default-border-color);\n background-color: var(--input-label-bg-color);\n}\n.ff-input-container .ff-input-label-container .required-asterisk {\n color: var(--input-error-text-color);\n}\n.ff-input-container:hover .ff-input-label {\n color: var(--input-hover-border-color);\n}\n.ff-input-container:hover .ff-input-label--no-hover {\n color: var(--input-default-label-color);\n}\n.ff-input-container:hover .ff-input-label--disabled {\n color: var(--input-default-border-color);\n}\n.ff-input-container:hover .ff-input-label--danger {\n color: var(--input-error-text-color);\n}\n.ff-input-container:hover .ff-input, .ff-input-container:hover .ff-input-label-container {\n border-color: var(--brand-color);\n}\n.ff-input-container:hover .ff-input--no-hover {\n border-color: var(--input-default-border-color);\n}\n.ff-input-container:hover .ff-input--disabled {\n background: transparent;\n border-color: var(--input-default-border-color);\n}\n.ff-input-container:hover .ff-input--danger {\n border-color: var(--input-error-text-color);\n}\n.ff-input-container:focus-within .ff-input-label-container {\n top: -6px;\n background-color: var(--input-label-bg-color);\n line-height: 12px;\n padding: 0px 2px;\n margin-left: 10px;\n}\n.ff-input-container:focus-within .ff-input-label--primary {\n color: var(--brand-color);\n}\n.ff-input-container:focus-within .ff-input-label--danger {\n color: var(--input-error-text-color);\n}\n.ff-input-container:focus-within .ff-input--primary {\n border-color: var(--brand-color);\n}\n.ff-input-container:focus-within .ff-input--danger {\n border-color: var(--input-error-text-color);\n}\n.ff-input-container:focus-within .ff-input::placeholder, .ff-input-container:focus-within .ff-input-label-container::placeholder {\n opacity: 1;\n margin-bottom: 1px;\n}\n.ff-input-container .ff-input-message {\n padding: 0px 4px;\n margin-left: 8px;\n line-height: 12px;\n}\n.ff-input-container .ff-input-message--danger {\n color: var(--input-error-text-color);\n}\n.ff-input-container--float .ff-input-label-container {\n top: -6px;\n background-color: var(--input-label-bg-color);\n line-height: 12px;\n padding: 0px 2px;\n margin-left: 10px;\n}\n.ff-input-container--float--disabled {\n cursor: not-allowed;\n}\n.ff-input-container--float--disabled .ff-input-label-container {\n cursor: not-allowed;\n}";
2041
+ var css_248z$Q = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-input-container .ff-input, .ff-input-container .ff-input-label-container {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8, .ff-input-container:focus-within .ff-input-label-container, .ff-input-container:focus-within .ff-input::placeholder, .ff-input-container:focus-within .ff-input-label-container::placeholder, .ff-input-container .ff-input-message, .ff-input-container--float .ff-input-label-container {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-input-container {\n display: flex;\n flex-direction: column;\n position: relative;\n}\n.ff-input-container .ff-input, .ff-input-container .ff-input-label-container {\n padding: 6px 8px;\n border: 1px solid var(--input-default-border-color);\n border-radius: 4px;\n outline: none;\n line-height: 18px;\n}\n.ff-input-container .ff-input--medium {\n padding: 10px 9px;\n}\n.ff-input-container .ff-input:disabled, .ff-input-container .ff-input-label-container:disabled {\n cursor: not-allowed;\n}\n.ff-input-container .ff-input::placeholder, .ff-input-container .ff-input-label-container::placeholder {\n opacity: 0;\n line-height: 18px;\n}\n.ff-input-container .ff-input--disabled {\n background: transparent;\n border-color: var(--input-default-border-color);\n}\n.ff-input-container .ff-input--danger {\n border-color: var(--input-error-text-color);\n}\n.ff-input-container .ff-input--transparentBackground {\n background: transparent;\n}\n.ff-input-container .ff-input--no-border {\n border: none;\n}\n.ff-input-container .ff-input-label-container {\n display: flex;\n gap: 2px;\n position: absolute;\n border: none;\n outline: none;\n line-height: 18px;\n margin-top: 1px;\n transition: all 0.3s ease-in-out;\n}\n.ff-input-container .ff-input-label-container--medium {\n line-height: 25px;\n}\n.ff-input-container .ff-input-label-container .ff-input-label {\n color: var(--input-default-label-color);\n}\n.ff-input-container .ff-input-label-container .ff-input-label--danger {\n color: var(--input-error-text-color);\n}\n.ff-input-container .ff-input-label-container .ff-input-label--disabled {\n color: var(--input-default-border-color);\n background-color: var(--input-label-bg-color);\n}\n.ff-input-container .ff-input-label-container .required-asterisk {\n color: var(--input-error-text-color);\n}\n.ff-input-container:hover .ff-input-label {\n color: var(--input-hover-border-color);\n}\n.ff-input-container:hover .ff-input-label--no-hover {\n color: var(--input-default-label-color);\n}\n.ff-input-container:hover .ff-input-label--disabled {\n color: var(--input-default-border-color);\n}\n.ff-input-container:hover .ff-input-label--danger {\n color: var(--input-error-text-color);\n}\n.ff-input-container:hover .ff-input, .ff-input-container:hover .ff-input-label-container {\n border-color: var(--brand-color);\n}\n.ff-input-container:hover .ff-input--no-hover {\n border-color: var(--input-default-border-color);\n}\n.ff-input-container:hover .ff-input--disabled {\n background: transparent;\n border-color: var(--input-default-border-color);\n}\n.ff-input-container:hover .ff-input--danger {\n border-color: var(--input-error-text-color);\n}\n.ff-input-container:focus-within .ff-input-label-container {\n top: -6px;\n background-color: var(--input-label-bg-color);\n line-height: 12px;\n padding: 0px 2px;\n margin-left: 10px;\n}\n.ff-input-container:focus-within .ff-input-label--primary {\n color: var(--brand-color);\n}\n.ff-input-container:focus-within .ff-input-label--danger {\n color: var(--input-error-text-color);\n}\n.ff-input-container:focus-within .ff-input--primary {\n border-color: var(--brand-color);\n}\n.ff-input-container:focus-within .ff-input--danger {\n border-color: var(--input-error-text-color);\n}\n.ff-input-container:focus-within .ff-input::placeholder, .ff-input-container:focus-within .ff-input-label-container::placeholder {\n opacity: 1;\n margin-bottom: 1px;\n}\n.ff-input-container .ff-input-message {\n padding: 0px 4px;\n margin-left: 8px;\n line-height: 12px;\n}\n.ff-input-container .ff-input-message--danger {\n color: var(--input-error-text-color);\n}\n.ff-input-container--float .ff-input-label-container {\n top: -6px;\n background-color: var(--input-label-bg-color);\n line-height: 12px;\n padding: 0px 2px;\n margin-left: 10px;\n}\n.ff-input-container--float--disabled {\n cursor: not-allowed;\n}\n.ff-input-container--float--disabled .ff-input-label-container {\n cursor: not-allowed;\n}";
2035
2042
  styleInject(css_248z$Q);
2036
2043
 
2037
2044
  const Input = ({
@@ -2110,7 +2117,7 @@ const Input = ({
2110
2117
  });
2111
2118
  };
2112
2119
 
2113
- var css_248z$P = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8, .ff-radial-chart-container svg text {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-radial-chart-container {\n cursor: pointer;\n}\n.ff-radial-chart-container svg text {\n font-size: var(--fontSize) !important;\n font-weight: 400;\n}";
2120
+ var css_248z$P = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8, .ff-radial-chart-container svg text {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-radial-chart-container {\n cursor: pointer;\n}\n.ff-radial-chart-container svg text {\n font-size: var(--fontSize) !important;\n font-weight: 400;\n}";
2114
2121
  styleInject(css_248z$P);
2115
2122
 
2116
2123
  const useColorMappings$1 = () => React.useMemo(() => {
@@ -2253,7 +2260,7 @@ const RadialChart = ({
2253
2260
  });
2254
2261
  };
2255
2262
 
2256
- var css_248z$O = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-expandable-chip-menu--medium, .ff-expandable-chip-menu .ff-sub-chip--medium {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-expandable-chip-menu {\n display: inline-flex;\n gap: 16px;\n align-items: center;\n border-radius: 16px;\n cursor: pointer;\n overflow: hidden;\n width: auto;\n padding: 4px 8px;\n transition: all 0.3s ease;\n}\n.ff-expandable-chip-menu--primary {\n border: 0.5px solid var(--brand-color);\n background-color: var(--expandable-menu-default-bg);\n}\n.ff-expandable-chip-menu .ff-label-chip {\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 4px;\n white-space: nowrap;\n padding: 2px 0;\n}\n.ff-expandable-chip-menu .ff-label-chip .arrow-icon {\n height: 14px;\n width: 14px;\n display: grid;\n place-items: center;\n}\n.ff-expandable-chip-menu .ff-label-chip--primary {\n color: var(--brand-color);\n}\n.ff-expandable-chip-menu--disabled {\n opacity: 0.5;\n}\n.ff-expandable-chip-menu--disabled:disabled {\n pointer-events: none;\n}\n.ff-expandable-chip-menu--medium {\n line-height: 18px;\n}\n.ff-expandable-chip-menu .ff-sub-chips {\n display: flex;\n gap: 8px;\n max-width: 500px;\n overflow-x: auto;\n -ms-overflow-style: none;\n transform: scaleX(0);\n transform-origin: left;\n transition: transform 0.3s ease, opacity 0.3s ease;\n opacity: 0;\n}\n.ff-expandable-chip-menu .ff-sub-chips::-webkit-scrollbar {\n display: none;\n}\n.ff-expandable-chip-menu.expanded .ff-sub-chips {\n transform: scaleX(1);\n opacity: 1;\n}\n.ff-expandable-chip-menu .ff-sub-chip {\n padding: 2px 8px;\n border-radius: 12px;\n white-space: nowrap;\n transition: background-color 0.3s ease, color 0.3s ease;\n opacity: 0;\n transform: translateX(-10px);\n animation: fadeIn 0.5s ease forwards;\n}\n.ff-expandable-chip-menu .ff-sub-chip--primary {\n background: var(--expandable-menu-option-bg);\n color: var(--brand-color);\n}\n.ff-expandable-chip-menu .ff-sub-chip--primary:hover, .ff-expandable-chip-menu .ff-sub-chip--primary.selected {\n background-color: var(--brand-color);\n color: var(--expandable-menu-default-bg);\n}\n.ff-expandable-chip-menu .ff-sub-chip--medium {\n line-height: 18px;\n}\n@keyframes fadeIn {\n 0% {\n opacity: 0;\n transform: translateX(-10px);\n }\n 100% {\n opacity: 1;\n transform: translateX(0);\n }\n}\n.ff-expandable-chip-menu.expanded .ff-sub-chip {\n animation: fadeIn 0.5s ease forwards;\n}";
2263
+ var css_248z$O = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-expandable-chip-menu--medium, .ff-expandable-chip-menu .ff-sub-chip--medium {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-expandable-chip-menu {\n display: inline-flex;\n gap: 16px;\n align-items: center;\n border-radius: 16px;\n cursor: pointer;\n overflow: hidden;\n width: auto;\n padding: 4px 8px;\n transition: all 0.3s ease;\n}\n.ff-expandable-chip-menu--primary {\n border: 0.5px solid var(--brand-color);\n background-color: var(--expandable-menu-default-bg);\n}\n.ff-expandable-chip-menu .ff-label-chip {\n display: flex;\n align-items: center;\n justify-content: space-between;\n gap: 4px;\n white-space: nowrap;\n padding: 2px 0;\n}\n.ff-expandable-chip-menu .ff-label-chip .arrow-icon {\n height: 14px;\n width: 14px;\n display: grid;\n place-items: center;\n}\n.ff-expandable-chip-menu .ff-label-chip--primary {\n color: var(--brand-color);\n}\n.ff-expandable-chip-menu--disabled {\n opacity: 0.5;\n}\n.ff-expandable-chip-menu--disabled:disabled {\n pointer-events: none;\n}\n.ff-expandable-chip-menu--medium {\n line-height: 18px;\n}\n.ff-expandable-chip-menu .ff-sub-chips {\n display: flex;\n gap: 8px;\n max-width: 500px;\n overflow-x: auto;\n -ms-overflow-style: none;\n transform: scaleX(0);\n transform-origin: left;\n transition: transform 0.3s ease, opacity 0.3s ease;\n opacity: 0;\n}\n.ff-expandable-chip-menu .ff-sub-chips::-webkit-scrollbar {\n display: none;\n}\n.ff-expandable-chip-menu.expanded .ff-sub-chips {\n transform: scaleX(1);\n opacity: 1;\n}\n.ff-expandable-chip-menu .ff-sub-chip {\n padding: 2px 8px;\n border-radius: 12px;\n white-space: nowrap;\n transition: background-color 0.3s ease, color 0.3s ease;\n opacity: 0;\n transform: translateX(-10px);\n animation: fadeIn 0.5s ease forwards;\n}\n.ff-expandable-chip-menu .ff-sub-chip--primary {\n background: var(--expandable-menu-option-bg);\n color: var(--brand-color);\n}\n.ff-expandable-chip-menu .ff-sub-chip--primary:hover, .ff-expandable-chip-menu .ff-sub-chip--primary.selected {\n background-color: var(--brand-color);\n color: var(--expandable-menu-default-bg);\n}\n.ff-expandable-chip-menu .ff-sub-chip--medium {\n line-height: 18px;\n}\n@keyframes fadeIn {\n 0% {\n opacity: 0;\n transform: translateX(-10px);\n }\n 100% {\n opacity: 1;\n transform: translateX(0);\n }\n}\n.ff-expandable-chip-menu.expanded .ff-sub-chip {\n animation: fadeIn 0.5s ease forwards;\n}";
2257
2264
  styleInject(css_248z$O);
2258
2265
 
2259
2266
  const ExpandableMenu = ({
@@ -2321,7 +2328,7 @@ const ExpandableMenu = ({
2321
2328
  });
2322
2329
  };
2323
2330
 
2324
- var css_248z$N = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-select-wrapper .ff-select .ff-select-inputfield, .ff-select-wrapper .ff-select .ff-select-labels {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8, .ff-select-wrapper .ff-select .ff-select-labels__active, .ff-select-wrapper .ff-select__focus .ff-select-labels, .ff-select-wrapper .ff-select__error .ff-select-labels {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-select-wrapper {\n min-height: 24px;\n min-width: 50px;\n}\n.ff-select-wrapper .ff-select {\n height: 100%;\n border: 1px solid var(--ff-select-border-color);\n border-radius: 4px;\n display: flex;\n align-items: center;\n justify-content: space-evenly;\n position: relative;\n box-sizing: border-box;\n}\n.ff-select-wrapper .ff-select:hover {\n border-color: var(--ff-select-text-hover-color);\n}\n.ff-select-wrapper .ff-select:hover .ff-select-labels {\n color: var(--ff-select-text-hover-color);\n}\n.ff-select-wrapper .ff-select:hover .ff-select-arrows-wrapper .ff-select-arrows svg path {\n fill: var(--ff-select-text-hover-color);\n transition: all 0.18s ease;\n}\n.ff-select-wrapper .ff-select .ff-select-inputfield {\n width: calc(100% - 8px);\n padding: 0px 0px 0px 8px;\n border: none;\n outline: none;\n line-height: 30px;\n letter-spacing: 0.5px;\n z-index: 10;\n background: transparent;\n}\n.ff-select-wrapper .ff-select .ff-select-inputfield__disabled {\n cursor: not-allowed;\n color: var(--ff-select-border-color);\n}\n.ff-select-wrapper .ff-select .ff-select-arrows-wrapper {\n cursor: pointer;\n height: 100%;\n padding: 0px;\n padding-right: 8px;\n display: flex;\n align-items: center;\n}\n.ff-select-wrapper .ff-select .ff-select-arrows-wrapper .ff-select-arrows svg path {\n fill: var(--ff-select-border-color);\n transition: all 0.18s ease;\n}\n.ff-select-wrapper .ff-select .ff-select-arrows-wrapper__disabled {\n cursor: not-allowed;\n border-color: var(--ff-select-border-color);\n}\n.ff-select-wrapper .ff-select .ff-select-labels {\n position: absolute;\n left: 8px;\n color: var(--ff-select-border-color);\n letter-spacing: 0.5px;\n line-height: 18px;\n transition: 0.18s ease all;\n border-radius: 4px;\n}\n.ff-select-wrapper .ff-select .ff-select-labels__active {\n transform: translateY(-15px);\n transition: 0.18s ease all;\n background-color: var(--ff-select-background-color);\n padding: 0px 4px;\n z-index: 100000;\n}\n.ff-select-wrapper .ff-select__focus {\n border-color: var(--ff-select-brand-color);\n}\n.ff-select-wrapper .ff-select__focus:hover {\n border-color: var(--ff-select-brand-color);\n}\n.ff-select-wrapper .ff-select__focus:hover .ff-select-labels {\n color: var(--ff-select-brand-color);\n}\n.ff-select-wrapper .ff-select__focus:hover .ff-select-arrows-wrapper .ff-select-arrows svg path {\n fill: var(--ff-select-brand-color);\n transition: all 0.18s ease;\n}\n.ff-select-wrapper .ff-select__focus .ff-select-labels {\n transform: translateY(-15px);\n transition: 0.18s ease all;\n color: var(--ff-select-brand-color);\n background-color: var(--ff-select-background-color);\n padding: 0px 4px;\n line-height: 18px;\n z-index: 100000;\n}\n.ff-select-wrapper .ff-select__focus .ff-select-arrows-wrapper .ff-select-arrows {\n transform: rotate(180deg);\n transition: 0.18s ease all;\n}\n.ff-select-wrapper .ff-select__focus .ff-select-arrows-wrapper .ff-select-arrows svg path {\n fill: var(--ff-select-brand-color);\n transition: all 0.18s ease;\n}\n.ff-select-wrapper .ff-select__disabled {\n cursor: not-allowed;\n}\n.ff-select-wrapper .ff-select__disabled:hover {\n border-color: var(--ff-select-border-color);\n}\n.ff-select-wrapper .ff-select__disabled:hover .ff-select-labels {\n color: var(--ff-select-border-color);\n}\n.ff-select-wrapper .ff-select__disabled:hover .ff-select-arrows-wrapper .ff-select-arrows svg path {\n fill: var(--ff-select-border-color);\n transition: all 0.18s ease;\n}\n.ff-select-wrapper .ff-select__error {\n border-color: var(--error_light);\n}\n.ff-select-wrapper .ff-select__error:hover {\n border-color: var(--error_light);\n}\n.ff-select-wrapper .ff-select__error:hover .ff-select-labels {\n color: var(--error_light);\n}\n.ff-select-wrapper .ff-select__error:hover .ff-select-arrows-wrapper .ff-select-arrows svg path {\n fill: var(--ff-select-default-color);\n transition: all 0.18s ease;\n}\n.ff-select-wrapper .ff-select__error__focused:hover .ff-select-arrows-wrapper .ff-select-arrows svg path {\n fill: var(--ff-select-brand-color);\n transition: all 0.18s ease;\n}\n.ff-select-wrapper .ff-select__error .ff-select-labels {\n transform: translateY(-16px);\n transition: 0.3s ease all;\n color: var(--error_light);\n background-color: var(--ff-select-background-color);\n padding: 0px 4px;\n line-height: 18px;\n}\n.ff-select-wrapper .ff-select__no_border {\n border-color: transparent;\n}\n.ff-select-wrapper .ff-select__no_border:hover {\n border-color: transparent;\n}\n.ff-select-wrapper .ff-select-error-msg {\n padding-left: 8px;\n letter-spacing: 0.5px;\n}";
2331
+ var css_248z$N = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-select-wrapper .ff-select .ff-select-inputfield, .ff-select-wrapper .ff-select .ff-select-labels {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8, .ff-select-wrapper .ff-select .ff-select-labels__active, .ff-select-wrapper .ff-select__focus .ff-select-labels, .ff-select-wrapper .ff-select__error .ff-select-labels {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-select-wrapper {\n min-height: 24px;\n min-width: 50px;\n}\n.ff-select-wrapper .ff-select {\n height: 100%;\n border: 1px solid var(--ff-select-border-color);\n border-radius: 4px;\n display: flex;\n align-items: center;\n justify-content: space-evenly;\n position: relative;\n box-sizing: border-box;\n}\n.ff-select-wrapper .ff-select:hover {\n border-color: var(--ff-select-text-hover-color);\n}\n.ff-select-wrapper .ff-select:hover .ff-select-labels {\n color: var(--ff-select-text-hover-color);\n}\n.ff-select-wrapper .ff-select:hover .ff-select-arrows-wrapper .ff-select-arrows svg path {\n fill: var(--ff-select-text-hover-color);\n transition: all 0.18s ease;\n}\n.ff-select-wrapper .ff-select .ff-select-inputfield {\n width: calc(100% - 8px);\n padding: 0px 0px 0px 8px;\n border: none;\n outline: none;\n line-height: 30px;\n letter-spacing: 0.5px;\n z-index: 10;\n background: transparent;\n}\n.ff-select-wrapper .ff-select .ff-select-inputfield__disabled {\n cursor: not-allowed;\n color: var(--ff-select-border-color);\n}\n.ff-select-wrapper .ff-select .ff-select-arrows-wrapper {\n cursor: pointer;\n height: 100%;\n padding: 0px;\n padding-right: 8px;\n display: flex;\n align-items: center;\n}\n.ff-select-wrapper .ff-select .ff-select-arrows-wrapper .ff-select-arrows svg path {\n fill: var(--ff-select-border-color);\n transition: all 0.18s ease;\n}\n.ff-select-wrapper .ff-select .ff-select-arrows-wrapper__disabled {\n cursor: not-allowed;\n border-color: var(--ff-select-border-color);\n}\n.ff-select-wrapper .ff-select .ff-select-labels {\n position: absolute;\n left: 8px;\n color: var(--ff-select-border-color);\n letter-spacing: 0.5px;\n line-height: 18px;\n transition: 0.18s ease all;\n border-radius: 4px;\n}\n.ff-select-wrapper .ff-select .ff-select-labels__active {\n transform: translateY(-15px);\n transition: 0.18s ease all;\n background-color: var(--ff-select-background-color);\n padding: 0px 4px;\n z-index: 100000;\n}\n.ff-select-wrapper .ff-select__focus {\n border-color: var(--ff-select-brand-color);\n}\n.ff-select-wrapper .ff-select__focus:hover {\n border-color: var(--ff-select-brand-color);\n}\n.ff-select-wrapper .ff-select__focus:hover .ff-select-labels {\n color: var(--ff-select-brand-color);\n}\n.ff-select-wrapper .ff-select__focus:hover .ff-select-arrows-wrapper .ff-select-arrows svg path {\n fill: var(--ff-select-brand-color);\n transition: all 0.18s ease;\n}\n.ff-select-wrapper .ff-select__focus .ff-select-labels {\n transform: translateY(-15px);\n transition: 0.18s ease all;\n color: var(--ff-select-brand-color);\n background-color: var(--ff-select-background-color);\n padding: 0px 4px;\n line-height: 18px;\n z-index: 100000;\n}\n.ff-select-wrapper .ff-select__focus .ff-select-arrows-wrapper .ff-select-arrows {\n transform: rotate(180deg);\n transition: 0.18s ease all;\n}\n.ff-select-wrapper .ff-select__focus .ff-select-arrows-wrapper .ff-select-arrows svg path {\n fill: var(--ff-select-brand-color);\n transition: all 0.18s ease;\n}\n.ff-select-wrapper .ff-select__disabled {\n cursor: not-allowed;\n}\n.ff-select-wrapper .ff-select__disabled:hover {\n border-color: var(--ff-select-border-color);\n}\n.ff-select-wrapper .ff-select__disabled:hover .ff-select-labels {\n color: var(--ff-select-border-color);\n}\n.ff-select-wrapper .ff-select__disabled:hover .ff-select-arrows-wrapper .ff-select-arrows svg path {\n fill: var(--ff-select-border-color);\n transition: all 0.18s ease;\n}\n.ff-select-wrapper .ff-select__error {\n border-color: var(--error_light);\n}\n.ff-select-wrapper .ff-select__error:hover {\n border-color: var(--error_light);\n}\n.ff-select-wrapper .ff-select__error:hover .ff-select-labels {\n color: var(--error_light);\n}\n.ff-select-wrapper .ff-select__error:hover .ff-select-arrows-wrapper .ff-select-arrows svg path {\n fill: var(--ff-select-default-color);\n transition: all 0.18s ease;\n}\n.ff-select-wrapper .ff-select__error__focused:hover .ff-select-arrows-wrapper .ff-select-arrows svg path {\n fill: var(--ff-select-brand-color);\n transition: all 0.18s ease;\n}\n.ff-select-wrapper .ff-select__error .ff-select-labels {\n transform: translateY(-16px);\n transition: 0.3s ease all;\n color: var(--error_light);\n background-color: var(--ff-select-background-color);\n padding: 0px 4px;\n line-height: 18px;\n}\n.ff-select-wrapper .ff-select__no_border {\n border-color: transparent;\n}\n.ff-select-wrapper .ff-select__no_border:hover {\n border-color: transparent;\n}\n.ff-select-wrapper .ff-select-error-msg {\n padding-left: 8px;\n letter-spacing: 0.5px;\n}";
2325
2332
  styleInject(css_248z$N);
2326
2333
 
2327
2334
  const dropdownDefaultCSSData = {
@@ -2674,7 +2681,7 @@ const Select$1 = ({
2674
2681
  });
2675
2682
  };
2676
2683
 
2677
- var css_248z$L = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-textarea-container {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8, .ff-textarea-container .msg-character-count, .ff-textarea-container:focus-within .ff-textarea-label-container, .ff-textarea-container:focus-within .ff-textarea::placeholder, .ff-textarea-container:focus-within .ff-textarea-label-container::placeholder, .ff-textarea-container .ff-textarea-message, .ff-textarea-container--float .ff-textarea-label-container {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-textarea-container {\n display: flex;\n flex-direction: column;\n position: relative;\n gap: 5px;\n}\n.ff-textarea-container .msg-character-count {\n display: flex;\n color: var(--text-area-default-color);\n justify-content: flex-end;\n}\n.ff-textarea-container .ff-textarea, .ff-textarea-container .ff-textarea-label-container {\n padding: 8px;\n width: 100%;\n min-height: 80px;\n gap: 0px;\n border: 1px solid var(--default-icon-color);\n border-radius: 4px;\n outline: none;\n line-height: 18px;\n font-weight: 400;\n}\n.ff-textarea-container .ff-textarea--resize {\n resize: none;\n}\n.ff-textarea-container .ff-textarea:disabled, .ff-textarea-container .ff-textarea-label-container:disabled {\n opacity: 0.5;\n cursor: not-allowed;\n}\n.ff-textarea-container .ff-textarea:disabled:hover, .ff-textarea-container .ff-textarea-label-container:disabled:hover {\n border-color: var(--default-icon-color);\n color: inherit;\n}\n.ff-textarea-container .ff-textarea::placeholder, .ff-textarea-container .ff-textarea-label-container::placeholder {\n opacity: 0;\n}\n.ff-textarea-container .ff-textarea--danger {\n border-color: var(--error_light);\n}\n.ff-textarea-container .ff-textarea--transparentBackground {\n background: transparent;\n}\n.ff-textarea-container .ff-textarea-label-container {\n display: flex;\n position: absolute;\n border: none;\n outline: none;\n margin-top: 1px;\n transition: all 0.3s ease-in-out;\n}\n.ff-textarea-container .ff-textarea-label-container .ff-textarea-label {\n padding: 1px;\n height: 10px;\n width: auto;\n background-color: var(--drawer-footer-bg);\n color: var(--text-area-default-color);\n}\n.ff-textarea-container .ff-textarea-label-container .ff-textarea-label--danger {\n color: var(--error_light);\n}\n.ff-textarea-container .ff-textarea-label-container .required-asterisk {\n color: var(--error_light);\n}\n.ff-textarea-container:hover .ff-textarea-label {\n color: var(--text-color);\n}\n.ff-textarea-container:hover .ff-textarea, .ff-textarea-container:hover .ff-textarea-label-container {\n border-color: var(--text-color);\n}\n.ff-textarea-container:focus-within .ff-textarea-label-container {\n font-weight: 400;\n line-height: 12px;\n letter-spacing: 0.5px;\n text-align: left;\n top: -6px;\n background-color: transparent;\n padding: 0px 2px;\n margin-left: 7px;\n}\n.ff-textarea-container:focus-within .ff-textarea-label--primary {\n color: var(--brand-color);\n}\n.ff-textarea-container:focus-within .ff-textarea--primary {\n border-color: var(--brand-color);\n}\n.ff-textarea-container:focus-within .ff-textarea::placeholder, .ff-textarea-container:focus-within .ff-textarea-label-container::placeholder {\n opacity: 1;\n margin-bottom: 1px;\n}\n.ff-textarea-container .ff-textarea-message {\n padding: 0px 4px;\n margin-left: 8px;\n line-height: 12px;\n}\n.ff-textarea-container .ff-textarea-message--danger {\n color: var(--error_light);\n}\n.ff-textarea-container--float .ff-textarea-label-container {\n letter-spacing: 0.5px;\n top: -6px;\n background-color: transparent;\n line-height: 12px;\n padding: 0px 2px;\n margin-left: 7px;\n}\n.ff-textarea-container--disabled {\n cursor: not-allowed;\n}\n.ff-textarea-container--disabled:hover .ff-textarea-label {\n color: var(--text-area-default-color);\n}\n.ff-textarea-container--disabled:hover .ff-textarea, .ff-textarea-container--disabled:hover .ff-textarea-container .ff-textarea-label-container, .ff-textarea-container .ff-textarea-container--disabled:hover .ff-textarea-label-container {\n border-color: var(--default-icon-color);\n}\n.ff-textarea-container--disabled .ff-textarea-label-container {\n cursor: not-allowed;\n}";
2684
+ var css_248z$L = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-textarea-container {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8, .ff-textarea-container .msg-character-count, .ff-textarea-container:focus-within .ff-textarea-label-container, .ff-textarea-container:focus-within .ff-textarea::placeholder, .ff-textarea-container:focus-within .ff-textarea-label-container::placeholder, .ff-textarea-container .ff-textarea-message, .ff-textarea-container--float .ff-textarea-label-container {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-textarea-container {\n display: flex;\n flex-direction: column;\n position: relative;\n gap: 5px;\n}\n.ff-textarea-container .msg-character-count {\n display: flex;\n color: var(--text-area-default-color);\n justify-content: flex-end;\n}\n.ff-textarea-container .ff-textarea, .ff-textarea-container .ff-textarea-label-container {\n padding: 8px;\n width: 100%;\n min-height: 80px;\n gap: 0px;\n border: 1px solid var(--default-icon-color);\n border-radius: 4px;\n outline: none;\n line-height: 18px;\n font-weight: 400;\n}\n.ff-textarea-container .ff-textarea--resize {\n resize: none;\n}\n.ff-textarea-container .ff-textarea:disabled, .ff-textarea-container .ff-textarea-label-container:disabled {\n opacity: 0.5;\n cursor: not-allowed;\n}\n.ff-textarea-container .ff-textarea:disabled:hover, .ff-textarea-container .ff-textarea-label-container:disabled:hover {\n border-color: var(--default-icon-color);\n color: inherit;\n}\n.ff-textarea-container .ff-textarea::placeholder, .ff-textarea-container .ff-textarea-label-container::placeholder {\n opacity: 0;\n}\n.ff-textarea-container .ff-textarea--danger {\n border-color: var(--error_light);\n}\n.ff-textarea-container .ff-textarea--transparentBackground {\n background: transparent;\n}\n.ff-textarea-container .ff-textarea-label-container {\n display: flex;\n position: absolute;\n border: none;\n outline: none;\n margin-top: 1px;\n transition: all 0.3s ease-in-out;\n}\n.ff-textarea-container .ff-textarea-label-container .ff-textarea-label {\n padding: 1px;\n height: 10px;\n width: auto;\n background-color: var(--drawer-footer-bg);\n color: var(--text-area-default-color);\n}\n.ff-textarea-container .ff-textarea-label-container .ff-textarea-label--danger {\n color: var(--error_light);\n}\n.ff-textarea-container .ff-textarea-label-container .required-asterisk {\n color: var(--error_light);\n}\n.ff-textarea-container:hover .ff-textarea-label {\n color: var(--text-color);\n}\n.ff-textarea-container:hover .ff-textarea, .ff-textarea-container:hover .ff-textarea-label-container {\n border-color: var(--text-color);\n}\n.ff-textarea-container:focus-within .ff-textarea-label-container {\n font-weight: 400;\n line-height: 12px;\n letter-spacing: 0.5px;\n text-align: left;\n top: -6px;\n background-color: transparent;\n padding: 0px 2px;\n margin-left: 7px;\n}\n.ff-textarea-container:focus-within .ff-textarea-label--primary {\n color: var(--brand-color);\n}\n.ff-textarea-container:focus-within .ff-textarea--primary {\n border-color: var(--brand-color);\n}\n.ff-textarea-container:focus-within .ff-textarea::placeholder, .ff-textarea-container:focus-within .ff-textarea-label-container::placeholder {\n opacity: 1;\n margin-bottom: 1px;\n}\n.ff-textarea-container .ff-textarea-message {\n padding: 0px 4px;\n margin-left: 8px;\n line-height: 12px;\n}\n.ff-textarea-container .ff-textarea-message--danger {\n color: var(--error_light);\n}\n.ff-textarea-container--float .ff-textarea-label-container {\n letter-spacing: 0.5px;\n top: -6px;\n background-color: transparent;\n line-height: 12px;\n padding: 0px 2px;\n margin-left: 7px;\n}\n.ff-textarea-container--disabled {\n cursor: not-allowed;\n}\n.ff-textarea-container--disabled:hover .ff-textarea-label {\n color: var(--text-area-default-color);\n}\n.ff-textarea-container--disabled:hover .ff-textarea, .ff-textarea-container--disabled:hover .ff-textarea-container .ff-textarea-label-container, .ff-textarea-container .ff-textarea-container--disabled:hover .ff-textarea-label-container {\n border-color: var(--default-icon-color);\n}\n.ff-textarea-container--disabled .ff-textarea-label-container {\n cursor: not-allowed;\n}";
2678
2685
  styleInject(css_248z$L);
2679
2686
 
2680
2687
  const Textarea = ({
@@ -2774,7 +2781,7 @@ const StatusButton = ({
2774
2781
  });
2775
2782
  };
2776
2783
 
2777
- var css_248z$J = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-menu-option-container .ff-option-card .ff-options {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-menu-option-container {\n cursor: pointer;\n position: relative;\n}\n.ff-menu-option-container .ff-icon-label {\n display: flex;\n align-items: center;\n gap: 4px;\n}\n.ff-menu-option-container .ff-icon-label .ff-menuicon-container {\n display: flex;\n justify-content: center;\n align-items: center;\n cursor: pointer;\n}\n.ff-menu-option-container .ff-icon-label .ff-menuicon-container:hover {\n background-color: var(--hover-color);\n}\n.ff-menu-option-container .ff-icon-label .ff-menuicon-container.dark {\n background-color: var(--brand-color);\n}\n.ff-menu-option-container .ff-icon-label .ff-menuicon-container.dark:hover {\n background-color: var(--menu-variant-dark-icon-color);\n}\n.ff-menu-option-container .ff-icon-label .ff-menuicon-container.dark:hover svg path {\n fill: var(--brand-color);\n}\n.ff-menu-option-container .ff-icon-label .ff-menuicon-container-clicked {\n display: flex;\n justify-content: center;\n align-items: center;\n background-color: var(--brand-color);\n cursor: pointer;\n}\n.ff-menu-option-container .ff-icon-label .ff-menuicon-container-clicked:hover {\n background-color: var(--brand-color);\n}\n.ff-menu-option-container .ff-icon-label .ff-menuicon-container-clicked.dark {\n background-color: var(--menu-variant-dark-icon-color);\n}\n.ff-menu-option-container .ff-option-card {\n position: absolute;\n border: 1px solid var(--option-card-border-color);\n background: var(--option-card-bg-color);\n border-radius: 4px;\n margin: 2px;\n min-height: 32px;\n min-width: 111px;\n white-space: nowrap;\n}\n.ff-menu-option-container .ff-option-card .ff-options {\n cursor: pointer;\n border-radius: 4px;\n display: flex;\n align-items: center;\n padding: 8px;\n line-height: 16px;\n gap: 8px;\n}\n.ff-menu-option-container .ff-option-card .ff-options:hover {\n background-color: var(--hover-color);\n}\n.ff-menu-option-container .ff-option-card .ff-options label {\n cursor: pointer;\n}\n.ff-menu-option-container .ff-option-card .ff-disable-option {\n opacity: 0.5;\n cursor: no-drop;\n}\n.ff-menu-option-container .ff-option-card .ff-disable-option label {\n cursor: no-drop;\n}";
2784
+ var css_248z$J = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-menu-option-container .ff-option-card .ff-options {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-menu-option-container {\n cursor: pointer;\n position: relative;\n}\n.ff-menu-option-container .ff-icon-label {\n display: flex;\n align-items: center;\n gap: 4px;\n}\n.ff-menu-option-container .ff-icon-label .ff-menuicon-container {\n display: flex;\n justify-content: center;\n align-items: center;\n cursor: pointer;\n}\n.ff-menu-option-container .ff-icon-label .ff-menuicon-container:hover {\n background-color: var(--hover-color);\n}\n.ff-menu-option-container .ff-icon-label .ff-menuicon-container.dark {\n background-color: var(--brand-color);\n}\n.ff-menu-option-container .ff-icon-label .ff-menuicon-container.dark:hover {\n background-color: var(--menu-variant-dark-icon-color);\n}\n.ff-menu-option-container .ff-icon-label .ff-menuicon-container.dark:hover svg path {\n fill: var(--brand-color);\n}\n.ff-menu-option-container .ff-icon-label .ff-menuicon-container-clicked {\n display: flex;\n justify-content: center;\n align-items: center;\n background-color: var(--brand-color);\n cursor: pointer;\n}\n.ff-menu-option-container .ff-icon-label .ff-menuicon-container-clicked:hover {\n background-color: var(--brand-color);\n}\n.ff-menu-option-container .ff-icon-label .ff-menuicon-container-clicked.dark {\n background-color: var(--menu-variant-dark-icon-color);\n}\n.ff-menu-option-container .ff-option-card {\n position: absolute;\n border: 1px solid var(--option-card-border-color);\n background: var(--option-card-bg-color);\n border-radius: 4px;\n margin: 2px;\n min-height: 32px;\n min-width: 111px;\n white-space: nowrap;\n}\n.ff-menu-option-container .ff-option-card .ff-options {\n cursor: pointer;\n border-radius: 4px;\n display: flex;\n align-items: center;\n padding: 8px;\n line-height: 16px;\n gap: 8px;\n}\n.ff-menu-option-container .ff-option-card .ff-options:hover {\n background-color: var(--hover-color);\n}\n.ff-menu-option-container .ff-option-card .ff-options label {\n cursor: pointer;\n}\n.ff-menu-option-container .ff-option-card .ff-disable-option {\n opacity: 0.5;\n cursor: no-drop;\n}\n.ff-menu-option-container .ff-option-card .ff-disable-option label {\n cursor: no-drop;\n}";
2778
2785
  styleInject(css_248z$J);
2779
2786
 
2780
2787
  const Option$1 = ({
@@ -2905,7 +2912,7 @@ const MenuOption = ({
2905
2912
  });
2906
2913
  };
2907
2914
 
2908
- var css_248z$I = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-table tbody tr td {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd, .ff-table thead tr th {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-fixed-header-table {\n overflow-y: auto;\n}\n\n.ff-table-icon {\n position: absolute;\n top: 10px;\n right: 0;\n margin-right: 10px;\n z-index: 100;\n cursor: pointer;\n}\n\n.ff-table {\n width: 100%;\n}\n.ff-table th,\n.ff-table td {\n text-align: left;\n font-size: 12px;\n padding: 9px 8px;\n}\n.ff-table thead tr th {\n border-bottom: 1px solid var(--slider-table-color);\n}\n.ff-table thead tr th .ff-label-checkbox-container {\n display: flex;\n align-items: center;\n}\n.ff-table thead tr th .ff-label-checkbox-container .ff-table-checkbox {\n padding-right: 8px;\n}\n.ff-table tbody tr .action-column {\n opacity: 0;\n}\n.ff-table tbody tr .icon-container {\n padding-left: 10px;\n opacity: 0;\n display: flex;\n justify-content: flex-end;\n transition: opacity 0.3s ease, transform 0.3s ease;\n transform: translateX(20px);\n}\n.ff-table tbody tr:hover {\n background-color: var(--hover-color);\n}\n.ff-table tbody tr:hover .icon-container {\n opacity: 1;\n transform: translateX(0);\n}\n.ff-table tbody tr td {\n position: relative;\n color: var(--table-column-text-color);\n}\n.ff-table tbody tr td.clickable-cell {\n cursor: pointer;\n}\n.ff-table tbody tr td .ff-data-checkbox-container {\n display: flex;\n align-items: center;\n}\n.ff-table tbody tr td .ff-data-checkbox-container .ff-table-checkbox {\n padding-right: 8px;\n}\n.ff-table .primary-bg {\n background-color: var(--brand-color);\n}\n.ff-table .secondary-bg {\n background-color: var(--slider-table-color);\n}\n.ff-table .default-bg {\n background-color: transparent;\n}\n.ff-table .default-color {\n color: var(--table-header-text-color);\n}\n.ff-table .primary-color {\n color: var(--brand-color);\n}\n\n.border-borderRadius {\n border: 1px solid var(--slider-table-color);\n border-radius: 5px;\n border-collapse: none !important;\n}\n\n.ff-fixed-header {\n position: sticky !important;\n top: 0;\n z-index: 99;\n background-color: Var(--file-details-bg);\n}\n\n.no-data-content {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n}\n\ntbody tr.disabled-row {\n opacity: 0.5;\n cursor: not-allowed;\n}";
2915
+ var css_248z$I = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-table tbody tr td {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd, .ff-table thead tr th {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-fixed-header-table {\n overflow-y: auto;\n}\n\n.ff-table-icon {\n position: absolute;\n top: 10px;\n right: 0;\n margin-right: 10px;\n z-index: 100;\n cursor: pointer;\n}\n\n.ff-table {\n width: 100%;\n}\n.ff-table th,\n.ff-table td {\n text-align: left;\n font-size: 12px;\n padding: 9px 8px;\n}\n.ff-table thead tr th {\n border-bottom: 1px solid var(--slider-table-color);\n}\n.ff-table thead tr th .ff-label-checkbox-container {\n display: flex;\n align-items: center;\n}\n.ff-table thead tr th .ff-label-checkbox-container .ff-table-checkbox {\n padding-right: 8px;\n}\n.ff-table tbody tr .action-column {\n opacity: 0;\n}\n.ff-table tbody tr .icon-container {\n padding-left: 10px;\n opacity: 0;\n display: flex;\n justify-content: flex-end;\n transition: opacity 0.3s ease, transform 0.3s ease;\n transform: translateX(20px);\n}\n.ff-table tbody tr:hover {\n background-color: var(--hover-color);\n}\n.ff-table tbody tr:hover .icon-container {\n opacity: 1;\n transform: translateX(0);\n}\n.ff-table tbody tr td {\n position: relative;\n color: var(--table-column-text-color);\n}\n.ff-table tbody tr td.clickable-cell {\n cursor: pointer;\n}\n.ff-table tbody tr td .ff-data-checkbox-container {\n display: flex;\n align-items: center;\n}\n.ff-table tbody tr td .ff-data-checkbox-container .ff-table-checkbox {\n padding-right: 8px;\n}\n.ff-table .primary-bg {\n background-color: var(--brand-color);\n}\n.ff-table .secondary-bg {\n background-color: var(--slider-table-color);\n}\n.ff-table .default-bg {\n background-color: transparent;\n}\n.ff-table .default-color {\n color: var(--table-header-text-color);\n}\n.ff-table .primary-color {\n color: var(--brand-color);\n}\n\n.border-borderRadius {\n border: 1px solid var(--slider-table-color);\n border-radius: 5px;\n border-collapse: none !important;\n}\n\n.ff-fixed-header {\n position: sticky !important;\n top: 0;\n z-index: 99;\n background-color: Var(--file-details-bg);\n}\n\n.no-data-content {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n}\n\ntbody tr.disabled-row {\n opacity: 0.5;\n cursor: not-allowed;\n}";
2909
2916
  styleInject(css_248z$I);
2910
2917
 
2911
2918
  const isFunction$2 = functionToCheck => {
@@ -3222,7 +3229,7 @@ const AddButton = ({
3222
3229
  });
3223
3230
  };
3224
3231
 
3225
- var css_248z$F = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-donut-chart-svg-container svg text:nth-of-type(1), .ff-status-item {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL, .ff-donut-chart-svg-container svg text:nth-of-type(2) {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8, .ff-donut-chart-svg-container svg text:nth-of-type(3) {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-donut-chart-section {\n display: flex;\n align-items: center;\n padding: 8px;\n}\n\n.ff-donut-chart-svg-container {\n display: flex;\n}\n.ff-donut-chart-svg-container svg text:nth-of-type(1) {\n font-weight: 600;\n}\n.ff-donut-chart-svg-container svg text:nth-of-type(2) {\n font-weight: 600;\n}\n.ff-donut-chart-svg-container svg text:nth-of-type(3) {\n font-weight: 500;\n}\n\n.ff-status-container {\n display: flex;\n flex-direction: column;\n gap: 20px;\n}\n\n.ff-status-item {\n display: flex;\n gap: 40px;\n justify-content: space-between;\n opacity: 1;\n}\n.ff-status-item.ff-highlighted {\n opacity: 1;\n}\n.ff-status-item.ff-fade {\n opacity: 10%;\n}\n.ff-status-item .ff-status-text {\n font-weight: 500;\n color: var(--status-skipped-text-color);\n}\n.ff-status-item .ff-status-details-script-count {\n display: flex;\n gap: 4px;\n font-weight: 600;\n}\n.ff-status-item .ff-status-details-script-percentage {\n font-weight: 400;\n color: var(--brand2-color);\n}\n\n.ff-status-label {\n display: flex;\n gap: 8px;\n align-items: center;\n}\n\n.ff-status-details {\n display: flex;\n gap: 4px;\n}\n\n.ff-status-color {\n width: 16px;\n height: 16px;\n border-radius: 4px;\n opacity: 80%;\n}";
3232
+ var css_248z$F = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-donut-chart-svg-container svg text:nth-of-type(1), .ff-status-item {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL, .ff-donut-chart-svg-container svg text:nth-of-type(2) {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8, .ff-donut-chart-svg-container svg text:nth-of-type(3) {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-donut-chart-section {\n display: flex;\n align-items: center;\n padding: 8px;\n}\n\n.ff-donut-chart-svg-container {\n display: flex;\n}\n.ff-donut-chart-svg-container svg text:nth-of-type(1) {\n font-weight: 600;\n}\n.ff-donut-chart-svg-container svg text:nth-of-type(2) {\n font-weight: 600;\n}\n.ff-donut-chart-svg-container svg text:nth-of-type(3) {\n font-weight: 500;\n}\n\n.ff-status-container {\n display: flex;\n flex-direction: column;\n gap: 20px;\n}\n\n.ff-status-item {\n display: flex;\n gap: 40px;\n justify-content: space-between;\n opacity: 1;\n}\n.ff-status-item.ff-highlighted {\n opacity: 1;\n}\n.ff-status-item.ff-fade {\n opacity: 10%;\n}\n.ff-status-item .ff-status-text {\n font-weight: 500;\n color: var(--status-skipped-text-color);\n}\n.ff-status-item .ff-status-details-script-count {\n display: flex;\n gap: 4px;\n font-weight: 600;\n}\n.ff-status-item .ff-status-details-script-percentage {\n font-weight: 400;\n color: var(--brand2-color);\n}\n\n.ff-status-label {\n display: flex;\n gap: 8px;\n align-items: center;\n}\n\n.ff-status-details {\n display: flex;\n gap: 4px;\n}\n\n.ff-status-color {\n width: 16px;\n height: 16px;\n border-radius: 4px;\n opacity: 80%;\n}";
3226
3233
  styleInject(css_248z$F);
3227
3234
 
3228
3235
  const calculateArc$4 = (x, y, radius, startAngle, endAngle) => {
@@ -7276,7 +7283,7 @@ function createFormControl(props = {}) {
7276
7283
  timer = setTimeout(callback, wait);
7277
7284
  };
7278
7285
  const _updateValid = async (shouldUpdateValid) => {
7279
- if (!_options.disabled && (_proxyFormState.isValid || shouldUpdateValid)) {
7286
+ if (!props.disabled && (_proxyFormState.isValid || shouldUpdateValid)) {
7280
7287
  const isValid = _options.resolver
7281
7288
  ? isEmptyObject((await _executeSchema()).errors)
7282
7289
  : await executeBuiltInValidation(_fields, true);
@@ -7288,7 +7295,7 @@ function createFormControl(props = {}) {
7288
7295
  }
7289
7296
  };
7290
7297
  const _updateIsValidating = (names, isValidating) => {
7291
- if (!_options.disabled &&
7298
+ if (!props.disabled &&
7292
7299
  (_proxyFormState.isValidating || _proxyFormState.validatingFields)) {
7293
7300
  (names || Array.from(_names.mount)).forEach((name) => {
7294
7301
  if (name) {
@@ -7304,7 +7311,7 @@ function createFormControl(props = {}) {
7304
7311
  }
7305
7312
  };
7306
7313
  const _updateFieldArray = (name, values = [], method, args, shouldSetValues = true, shouldUpdateFieldsAndState = true) => {
7307
- if (args && method && !_options.disabled) {
7314
+ if (args && method && !props.disabled) {
7308
7315
  _state.action = true;
7309
7316
  if (shouldUpdateFieldsAndState && Array.isArray(get(_fields, name))) {
7310
7317
  const fieldValues = method(get(_fields, name), args.argA, args.argB);
@@ -7368,7 +7375,7 @@ function createFormControl(props = {}) {
7368
7375
  const output = {
7369
7376
  name,
7370
7377
  };
7371
- if (!_options.disabled) {
7378
+ if (!props.disabled) {
7372
7379
  const disabledField = !!(get(_fields, name) &&
7373
7380
  get(_fields, name)._f &&
7374
7381
  get(_fields, name)._f.disabled);
@@ -7504,7 +7511,7 @@ function createFormControl(props = {}) {
7504
7511
  }
7505
7512
  _names.unMount = new Set();
7506
7513
  };
7507
- const _getDirty = (name, data) => !_options.disabled &&
7514
+ const _getDirty = (name, data) => !props.disabled &&
7508
7515
  (name && data && set(_formValues, name, data),
7509
7516
  !deepEqual(getValues(), _defaultValues));
7510
7517
  const _getWatch = (names, defaultValue, isGlobal) => generateWatchOutput(names, _names, {
@@ -7820,7 +7827,7 @@ function createFormControl(props = {}) {
7820
7827
  };
7821
7828
  const register = (name, options = {}) => {
7822
7829
  let field = get(_fields, name);
7823
- const disabledIsDefined = isBoolean(options.disabled) || isBoolean(_options.disabled);
7830
+ const disabledIsDefined = isBoolean(options.disabled) || isBoolean(props.disabled);
7824
7831
  set(_fields, name, {
7825
7832
  ...(field || {}),
7826
7833
  _f: {
@@ -7836,7 +7843,7 @@ function createFormControl(props = {}) {
7836
7843
  field,
7837
7844
  disabled: isBoolean(options.disabled)
7838
7845
  ? options.disabled
7839
- : _options.disabled,
7846
+ : props.disabled,
7840
7847
  name,
7841
7848
  value: options.value,
7842
7849
  });
@@ -7846,7 +7853,7 @@ function createFormControl(props = {}) {
7846
7853
  }
7847
7854
  return {
7848
7855
  ...(disabledIsDefined
7849
- ? { disabled: options.disabled || _options.disabled }
7856
+ ? { disabled: options.disabled || props.disabled }
7850
7857
  : {}),
7851
7858
  ...(_options.progressive
7852
7859
  ? {
@@ -7930,12 +7937,6 @@ function createFormControl(props = {}) {
7930
7937
  e.preventDefault && e.preventDefault();
7931
7938
  e.persist && e.persist();
7932
7939
  }
7933
- if (_options.disabled) {
7934
- if (onInvalid) {
7935
- await onInvalid({ ..._formState.errors }, e);
7936
- }
7937
- return;
7938
- }
7939
7940
  let fieldValues = cloneObject(_formValues);
7940
7941
  _subjects.state.next({
7941
7942
  isSubmitting: true,
@@ -8114,9 +8115,7 @@ function createFormControl(props = {}) {
8114
8115
  : fieldReference.ref;
8115
8116
  if (fieldRef.focus) {
8116
8117
  fieldRef.focus();
8117
- options.shouldSelect &&
8118
- isFunction$1(fieldRef.select) &&
8119
- fieldRef.select();
8118
+ options.shouldSelect && fieldRef.select();
8120
8119
  }
8121
8120
  }
8122
8121
  };
@@ -8317,6 +8316,11 @@ function useForm(props = {}) {
8317
8316
  values: control._getWatch(),
8318
8317
  });
8319
8318
  }, [props.shouldUnregister, control]);
8319
+ React.useEffect(() => {
8320
+ if (_formControl.current) {
8321
+ _formControl.current.watch = _formControl.current.watch.bind({});
8322
+ }
8323
+ }, [formState]);
8320
8324
  _formControl.current.formState = getProxyFormState(formState, control);
8321
8325
  return _formControl.current;
8322
8326
  }
@@ -8354,7 +8358,7 @@ const Forms = ({
8354
8358
  });
8355
8359
  };
8356
8360
 
8357
- var css_248z$D = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-label, .ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-input {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8, .ff-input-with-dropdown-container .ff-helper-text {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-input-with-dropdown-container {\n display: flex;\n flex-direction: column;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown {\n display: flex;\n border: 1px solid var(--input-default-border-color);\n border-radius: 4px;\n padding: 0;\n position: relative;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-input-with-dropdown--left {\n display: flex;\n flex-direction: row-reverse;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-input-with-dropdown--right {\n display: flex;\n flex-direction: row;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-input--left-dropdown {\n width: 698px;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-label {\n position: absolute;\n z-index: 9;\n color: var(--input-default-border-color);\n top: 7px;\n left: 7px;\n transition: all 0.3s ease-in-out;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-label .ff-required-asterisk {\n color: var(--input-error-text-color);\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-label--filled {\n color: var(--input-active-text-color);\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-label--no-hover {\n color: var(--input-default-border-color);\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-label--error {\n color: var(--input-error-text-color);\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-input {\n position: relative;\n padding: 6px 7px;\n line-height: 18px;\n border: none;\n outline: none;\n border-right: 1px solid var(--input-default-border-color);\n border-radius: 4px 0 0 4px;\n top: 1px;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-input::-webkit-outer-spin-button, .ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-input::-webkit-inner-spin-button {\n -webkit-appearance: none;\n margin: 0;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-input::placeholder {\n opacity: 0;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-input:disabled {\n cursor: not-allowed;\n background: transparent;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-input--error {\n border-color: var(--input-error-text-color);\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-input--left-dropdown::placeholder {\n opacity: 1;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown--no-hover {\n border-color: var(--input-default-border-color);\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown--disabled {\n cursor: not-allowed;\n opacity: 0.5;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown--error {\n border-color: var(--input-error-text-color);\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-dropdown {\n min-width: 120px;\n border: none;\n outline: none;\n margin: 0;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-dropdown:disabled {\n cursor: not-allowed;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-dropdown--left {\n min-width: 94px;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .seperatorline {\n height: 26px;\n margin-top: 3px;\n border-right: 0.5px solid var(--brand-color);\n flex-shrink: 0;\n border-radius: 2px;\n}\n.ff-input-with-dropdown-container:hover .ff-input-with-dropdown {\n border-color: var(--input-hover-border-color);\n}\n.ff-input-with-dropdown-container:hover .ff-input-with-dropdown--filled {\n border-color: var(--input-default-border-color);\n}\n.ff-input-with-dropdown-container:hover .ff-input-with-dropdown--disabled {\n border-color: var(--input-default-border-color);\n}\n.ff-input-with-dropdown-container:hover .ff-input-with-dropdown--error {\n border-color: var(--input-error-text-color);\n}\n.ff-input-with-dropdown-container:hover .ff-input-with-dropdown--left .ff-floating-label {\n color: var(--input-hover-border-color);\n}\n.ff-input-with-dropdown-container:hover .ff-input-with-dropdown--left .ff-floating-label--filled {\n color: var(--input-default-border-color);\n}\n.ff-input-with-dropdown-container:hover .ff-input-with-dropdown--left .ff-floating-label--disabled {\n color: var(--input-default-border-color);\n}\n.ff-input-with-dropdown-container:hover .ff-input-with-dropdown--left .ff-floating-label--error {\n color: var(--input-error-text-color);\n}\n.ff-input-with-dropdown-container:hover .ff-input-with-dropdown .ff-floating-input {\n border-color: var(--input-hover-border-color);\n}\n.ff-input-with-dropdown-container:hover .ff-input-with-dropdown .ff-floating-input--filled {\n border-color: var(--input-default-border-color);\n}\n.ff-input-with-dropdown-container:hover .ff-input-with-dropdown .ff-floating-input--disabled {\n border-color: var(--input-default-border-color);\n}\n.ff-input-with-dropdown-container:hover .ff-input-with-dropdown .ff-floating-input--error {\n border-color: var(--input-error-text-color);\n}\n.ff-input-with-dropdown-container:focus-within .ff-input-with-dropdown {\n border-color: var(--input-active-text-color);\n}\n.ff-input-with-dropdown-container:focus-within .ff-input-with-dropdown--error {\n border-color: var(--input-error-text-color);\n}\n.ff-input-with-dropdown-container:focus-within .ff-input-with-dropdown .ff-floating-label {\n top: -6px;\n background-color: var(--input-label-bg-color);\n padding: 0px 2px;\n color: var(--input-active-text-color);\n line-height: 12px;\n font-size: 8px !important;\n}\n.ff-input-with-dropdown-container:focus-within .ff-input-with-dropdown .ff-floating-label--error {\n color: var(--input-error-text-color);\n}\n.ff-input-with-dropdown-container:focus-within .ff-input-with-dropdown .ff-floating-input {\n border-color: var(--input-active-text-color);\n}\n.ff-input-with-dropdown-container:focus-within .ff-input-with-dropdown .ff-floating-input--error {\n border-color: var(--input-error-text-color);\n}\n.ff-input-with-dropdown-container:focus-within .ff-input-with-dropdown .ff-floating-input::placeholder {\n opacity: 1;\n}\n.ff-input-with-dropdown-container--filled .ff-input-with-dropdown .ff-floating-label-input-container {\n border-color: var(--input-active-text-color);\n}\n.ff-input-with-dropdown-container--filled .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-label {\n top: -6px;\n background-color: var(--input-label-bg-color);\n padding: 0px 2px;\n line-height: 12px;\n font-size: 8px !important;\n}\n.ff-input-with-dropdown-container--filled span {\n font-size: 8px;\n}\n.ff-input-with-dropdown-container--filled .required-asterisk {\n color: var(--input-error-text-color);\n}\n.ff-input-with-dropdown-container .ff-helper-text {\n color: var(--input-error-text-color);\n padding: 0 11px;\n}";
8361
+ var css_248z$D = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-label, .ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-input {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8, .ff-input-with-dropdown-container .ff-helper-text {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-input-with-dropdown-container {\n display: flex;\n flex-direction: column;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown {\n display: flex;\n border: 1px solid var(--input-default-border-color);\n border-radius: 4px;\n padding: 0;\n position: relative;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-input-with-dropdown--left {\n display: flex;\n flex-direction: row-reverse;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-input-with-dropdown--right {\n display: flex;\n flex-direction: row;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-input--left-dropdown {\n width: 698px;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-label {\n position: absolute;\n z-index: 9;\n color: var(--input-default-border-color);\n top: 7px;\n left: 7px;\n transition: all 0.3s ease-in-out;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-label .ff-required-asterisk {\n color: var(--input-error-text-color);\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-label--filled {\n color: var(--input-active-text-color);\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-label--no-hover {\n color: var(--input-default-border-color);\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-label--error {\n color: var(--input-error-text-color);\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-input {\n position: relative;\n padding: 6px 7px;\n line-height: 18px;\n border: none;\n outline: none;\n border-right: 1px solid var(--input-default-border-color);\n border-radius: 4px 0 0 4px;\n top: 1px;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-input::-webkit-outer-spin-button, .ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-input::-webkit-inner-spin-button {\n -webkit-appearance: none;\n margin: 0;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-input::placeholder {\n opacity: 0;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-input:disabled {\n cursor: not-allowed;\n background: transparent;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-input--error {\n border-color: var(--input-error-text-color);\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-input--left-dropdown::placeholder {\n opacity: 1;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown--no-hover {\n border-color: var(--input-default-border-color);\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown--disabled {\n cursor: not-allowed;\n opacity: 0.5;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown--error {\n border-color: var(--input-error-text-color);\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-dropdown {\n min-width: 120px;\n border: none;\n outline: none;\n margin: 0;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-dropdown:disabled {\n cursor: not-allowed;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .ff-floating-dropdown--left {\n min-width: 94px;\n}\n.ff-input-with-dropdown-container .ff-input-with-dropdown .seperatorline {\n height: 26px;\n margin-top: 3px;\n border-right: 0.5px solid var(--brand-color);\n flex-shrink: 0;\n border-radius: 2px;\n}\n.ff-input-with-dropdown-container:hover .ff-input-with-dropdown {\n border-color: var(--input-hover-border-color);\n}\n.ff-input-with-dropdown-container:hover .ff-input-with-dropdown--filled {\n border-color: var(--input-default-border-color);\n}\n.ff-input-with-dropdown-container:hover .ff-input-with-dropdown--disabled {\n border-color: var(--input-default-border-color);\n}\n.ff-input-with-dropdown-container:hover .ff-input-with-dropdown--error {\n border-color: var(--input-error-text-color);\n}\n.ff-input-with-dropdown-container:hover .ff-input-with-dropdown--left .ff-floating-label {\n color: var(--input-hover-border-color);\n}\n.ff-input-with-dropdown-container:hover .ff-input-with-dropdown--left .ff-floating-label--filled {\n color: var(--input-default-border-color);\n}\n.ff-input-with-dropdown-container:hover .ff-input-with-dropdown--left .ff-floating-label--disabled {\n color: var(--input-default-border-color);\n}\n.ff-input-with-dropdown-container:hover .ff-input-with-dropdown--left .ff-floating-label--error {\n color: var(--input-error-text-color);\n}\n.ff-input-with-dropdown-container:hover .ff-input-with-dropdown .ff-floating-input {\n border-color: var(--input-hover-border-color);\n}\n.ff-input-with-dropdown-container:hover .ff-input-with-dropdown .ff-floating-input--filled {\n border-color: var(--input-default-border-color);\n}\n.ff-input-with-dropdown-container:hover .ff-input-with-dropdown .ff-floating-input--disabled {\n border-color: var(--input-default-border-color);\n}\n.ff-input-with-dropdown-container:hover .ff-input-with-dropdown .ff-floating-input--error {\n border-color: var(--input-error-text-color);\n}\n.ff-input-with-dropdown-container:focus-within .ff-input-with-dropdown {\n border-color: var(--input-active-text-color);\n}\n.ff-input-with-dropdown-container:focus-within .ff-input-with-dropdown--error {\n border-color: var(--input-error-text-color);\n}\n.ff-input-with-dropdown-container:focus-within .ff-input-with-dropdown .ff-floating-label {\n top: -6px;\n background-color: var(--input-label-bg-color);\n padding: 0px 2px;\n color: var(--input-active-text-color);\n line-height: 12px;\n font-size: 8px !important;\n}\n.ff-input-with-dropdown-container:focus-within .ff-input-with-dropdown .ff-floating-label--error {\n color: var(--input-error-text-color);\n}\n.ff-input-with-dropdown-container:focus-within .ff-input-with-dropdown .ff-floating-input {\n border-color: var(--input-active-text-color);\n}\n.ff-input-with-dropdown-container:focus-within .ff-input-with-dropdown .ff-floating-input--error {\n border-color: var(--input-error-text-color);\n}\n.ff-input-with-dropdown-container:focus-within .ff-input-with-dropdown .ff-floating-input::placeholder {\n opacity: 1;\n}\n.ff-input-with-dropdown-container--filled .ff-input-with-dropdown .ff-floating-label-input-container {\n border-color: var(--input-active-text-color);\n}\n.ff-input-with-dropdown-container--filled .ff-input-with-dropdown .ff-floating-label-input-container .ff-floating-label {\n top: -6px;\n background-color: var(--input-label-bg-color);\n padding: 0px 2px;\n line-height: 12px;\n font-size: 8px !important;\n}\n.ff-input-with-dropdown-container--filled span {\n font-size: 8px;\n}\n.ff-input-with-dropdown-container--filled .required-asterisk {\n color: var(--input-error-text-color);\n}\n.ff-input-with-dropdown-container .ff-helper-text {\n color: var(--input-error-text-color);\n padding: 0 11px;\n}";
8358
8362
  styleInject(css_248z$D);
8359
8363
 
8360
8364
  const InputWithDropdown = ({
@@ -8456,7 +8460,7 @@ const InputWithDropdown = ({
8456
8460
  });
8457
8461
  };
8458
8462
 
8459
- var css_248z$C = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-radio-wrapper .ff-radio {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-radio-wrapper {\n display: flex;\n align-items: center;\n gap: 4px;\n}\n.ff-radio-wrapper .ff-radio {\n position: relative;\n color: var(--text-color);\n display: flex;\n align-items: center;\n cursor: pointer;\n}\n.ff-radio-wrapper .ff-radio .ff-radio-input {\n display: none;\n}\n.ff-radio-wrapper .ff-radio .ff-radio-custom {\n box-sizing: content-box;\n width: 14px;\n height: 14px;\n border-radius: 50%;\n border: 1px solid var(--radio-button-border);\n position: relative;\n margin-right: 8px;\n transition: border-color background-color;\n}\n.ff-radio-wrapper .ff-radio .ff-radio-custom::before {\n content: \"\";\n width: 12px;\n height: 12px;\n border-radius: 50%;\n background: #fbfdff;\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n transition: background-color 0.3s;\n}\n.ff-radio-wrapper .ff-radio .ff-radio-custom::after {\n content: \"\";\n width: 16px;\n height: 16px;\n border-radius: 50%;\n border: 4px solid #f7edff;\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n opacity: 0;\n transition: opacity 0.3s;\n}\n.ff-radio-wrapper .ff-radio:hover .ff-radio-custom {\n border: 1px solid var(--brand-color);\n}\n.ff-radio-wrapper .ff-radio:hover .ff-radio-custom::before {\n background-color: var(--drawer-footer-bg);\n}\n.ff-radio-wrapper .ff-radio:hover .ff-radio-custom::after {\n opacity: 1;\n transition: opacity 0.3s;\n}\n.ff-radio-wrapper .ff-radio .ff-radio-input:checked + .ff-radio-custom {\n border-color: var(--brand-color);\n}\n.ff-radio-wrapper .ff-radio .ff-radio-input:checked + .ff-radio-custom::before {\n background: var(--brand-color);\n height: 12px;\n width: 12px;\n}\n.ff-radio-wrapper .ff-radio .ff-radio-input:disabled + .ff-radio-custom {\n border: 1px solid var(--radio-button-border);\n}\n.ff-radio-wrapper .ff-radio .ff-radio-input:disabled + .ff-radio-custom::before {\n background: var(--drawer-footer-bg);\n}\n.ff-radio-wrapper .ff-radio .ff-radio-input:disabled + .ff-radio-custom::after {\n border: 4px solid var(--radio-button-hover);\n opacity: 0;\n transition: opacity 0.3s;\n}\n.ff-radio-wrapper .ff-radio .ff-radio-input:checked:disabled + .ff-radio-custom {\n border-color: var(--brand-color);\n background-color: var(--drawer-footer-bg);\n}\n.ff-radio-wrapper .ff-radio .ff-radio-input:checked:disabled + .ff-radio-custom::before {\n background: var(--brand-color);\n}\n.ff-radio-wrapper .ff-radio--disabled {\n cursor: default;\n opacity: 0.5;\n}";
8463
+ var css_248z$C = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-radio-wrapper .ff-radio {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-radio-wrapper {\n display: flex;\n align-items: center;\n gap: 4px;\n}\n.ff-radio-wrapper .ff-radio {\n position: relative;\n color: var(--text-color);\n display: flex;\n align-items: center;\n cursor: pointer;\n}\n.ff-radio-wrapper .ff-radio .ff-radio-input {\n display: none;\n}\n.ff-radio-wrapper .ff-radio .ff-radio-custom {\n box-sizing: content-box;\n width: 14px;\n height: 14px;\n border-radius: 50%;\n border: 1px solid var(--radio-button-border);\n position: relative;\n margin-right: 8px;\n transition: border-color background-color;\n}\n.ff-radio-wrapper .ff-radio .ff-radio-custom::before {\n content: \"\";\n width: 12px;\n height: 12px;\n border-radius: 50%;\n background: #fbfdff;\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n transition: background-color 0.3s;\n}\n.ff-radio-wrapper .ff-radio .ff-radio-custom::after {\n content: \"\";\n width: 16px;\n height: 16px;\n border-radius: 50%;\n border: 4px solid #f7edff;\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n opacity: 0;\n transition: opacity 0.3s;\n}\n.ff-radio-wrapper .ff-radio:hover .ff-radio-custom {\n border: 1px solid var(--brand-color);\n}\n.ff-radio-wrapper .ff-radio:hover .ff-radio-custom::before {\n background-color: var(--drawer-footer-bg);\n}\n.ff-radio-wrapper .ff-radio:hover .ff-radio-custom::after {\n opacity: 1;\n transition: opacity 0.3s;\n}\n.ff-radio-wrapper .ff-radio .ff-radio-input:checked + .ff-radio-custom {\n border-color: var(--brand-color);\n}\n.ff-radio-wrapper .ff-radio .ff-radio-input:checked + .ff-radio-custom::before {\n background: var(--brand-color);\n height: 12px;\n width: 12px;\n}\n.ff-radio-wrapper .ff-radio .ff-radio-input:disabled + .ff-radio-custom {\n border: 1px solid var(--radio-button-border);\n}\n.ff-radio-wrapper .ff-radio .ff-radio-input:disabled + .ff-radio-custom::before {\n background: var(--drawer-footer-bg);\n}\n.ff-radio-wrapper .ff-radio .ff-radio-input:disabled + .ff-radio-custom::after {\n border: 4px solid var(--radio-button-hover);\n opacity: 0;\n transition: opacity 0.3s;\n}\n.ff-radio-wrapper .ff-radio .ff-radio-input:checked:disabled + .ff-radio-custom {\n border-color: var(--brand-color);\n background-color: var(--drawer-footer-bg);\n}\n.ff-radio-wrapper .ff-radio .ff-radio-input:checked:disabled + .ff-radio-custom::before {\n background: var(--brand-color);\n}\n.ff-radio-wrapper .ff-radio--disabled {\n cursor: default;\n opacity: 0.5;\n}";
8460
8464
  styleInject(css_248z$C);
8461
8465
 
8462
8466
  const RadioButton = ({
@@ -8752,7 +8756,7 @@ const MiniModal = /*#__PURE__*/React.forwardRef(({
8752
8756
  }), document.body);
8753
8757
  });
8754
8758
 
8755
- var css_248z$z = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-tree-container {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-tree-container {\n width: 100%;\n font-size: 12px;\n color: var(--brand-color);\n transition: all 0.3s ease;\n}\n.ff-tree-container table {\n border-collapse: collapse;\n width: 100%;\n text-align: left;\n}\n.ff-tree-container .ff-toggle-arrow-icon {\n height: 12px;\n width: 12px;\n margin-left: 8px;\n display: grid;\n place-items: center;\n transform: rotate(0deg);\n}\n.ff-tree-container .ff-toggle-arrow-icon svg path {\n fill: var(--brand-color);\n}\n.ff-tree-container .ff-toggle-arrow-icon.ff-expanded {\n transform: rotate(0deg);\n}\n.ff-tree-container .ff-toggle-arrow-icon.ff-collapsed {\n transform: rotate(-90deg);\n}\n.ff-tree-container th,\n.ff-tree-container td {\n padding: 0 8px;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.ff-tree-container th {\n vertical-align: middle;\n height: 32px;\n background-color: var(--slider-table-color);\n color: var(--text-color);\n font-weight: 600;\n text-transform: uppercase;\n}\n.ff-tree-container tr .ff-action-section {\n display: none;\n}\n.ff-tree-container tr:hover {\n background-color: var(--hover-color);\n}\n.ff-tree-container tr:hover .ff-title-action-container {\n display: flex;\n}\n.ff-tree-container .ff-title-container {\n display: flex;\n align-items: center;\n gap: 4px;\n}\n.ff-tree-container .ff-title-container .ff-toggle-folder {\n display: flex;\n cursor: pointer;\n}\n.ff-tree-container .ff-title-container.ff-folder {\n font-weight: 600;\n}\n.ff-tree-container .ff-title-container.ff-file {\n font-weight: 400;\n}\n.ff-tree-container .ff-title-container .ff-title {\n display: flex;\n gap: 4px;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n font-weight: 400;\n cursor: pointer;\n}\n.ff-tree-container .ff-title-container .ff-title .ff-title-label {\n display: flex;\n align-items: center;\n}\n.ff-tree-container .ff-title-container .ff-title .ff-hover-icon {\n display: none;\n position: absolute;\n right: 10px;\n}\n.ff-tree-container .ff-node-li {\n position: relative;\n --indent-size: 18px;\n --total-children-height: var(--node-height);\n}\n.ff-tree-container .ff-node-li td:first-child {\n padding-left: calc(var(--level) * var(--indent-size));\n height: 32px;\n}\n.ff-tree-container .ff-node-li::before {\n content: \"\";\n position: absolute;\n top: 0;\n left: calc(var(--level) * var(--indent-size) - 4px);\n width: 1px;\n height: calc(var(--total-children-height));\n background-color: var(--tree-connecting-lines-color);\n z-index: 1;\n}\n.ff-tree-container .ff-node-li::after {\n content: \"\";\n position: absolute;\n top: 50%;\n left: calc(var(--level) * var(--indent-size) - 4px);\n width: 12px;\n height: 1px;\n background-color: var(--tree-connecting-lines-color);\n z-index: 1;\n}\n.ff-tree-container .ff-node-li.ff-is-last::before {\n height: calc(var(--node-height) / 2);\n}\n.ff-tree-container .ff-node-li[style*=\"--level: 0\"]::before, .ff-tree-container .ff-node-li[style*=\"--level: 0\"]::after {\n content: none;\n}\n\n.ff-title-action-container {\n display: none;\n align-items: center;\n}";
8759
+ var css_248z$z = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-tree-container {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-tree-container {\n width: 100%;\n font-size: 12px;\n color: var(--brand-color);\n transition: all 0.3s ease;\n}\n.ff-tree-container table {\n border-collapse: collapse;\n width: 100%;\n text-align: left;\n}\n.ff-tree-container .ff-toggle-arrow-icon {\n height: 12px;\n width: 12px;\n margin-left: 8px;\n display: grid;\n place-items: center;\n transform: rotate(0deg);\n}\n.ff-tree-container .ff-toggle-arrow-icon svg path {\n fill: var(--brand-color);\n}\n.ff-tree-container .ff-toggle-arrow-icon.ff-expanded {\n transform: rotate(0deg);\n}\n.ff-tree-container .ff-toggle-arrow-icon.ff-collapsed {\n transform: rotate(-90deg);\n}\n.ff-tree-container th,\n.ff-tree-container td {\n padding: 0 8px;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.ff-tree-container th {\n vertical-align: middle;\n height: 32px;\n background-color: var(--slider-table-color);\n color: var(--text-color);\n font-weight: 600;\n text-transform: uppercase;\n}\n.ff-tree-container tr .ff-action-section {\n display: none;\n}\n.ff-tree-container tr:hover {\n background-color: var(--hover-color);\n}\n.ff-tree-container tr:hover .ff-title-action-container {\n display: flex;\n}\n.ff-tree-container .ff-title-container {\n display: flex;\n align-items: center;\n gap: 4px;\n}\n.ff-tree-container .ff-title-container .ff-toggle-folder {\n display: flex;\n cursor: pointer;\n}\n.ff-tree-container .ff-title-container.ff-folder {\n font-weight: 600;\n}\n.ff-tree-container .ff-title-container.ff-file {\n font-weight: 400;\n}\n.ff-tree-container .ff-title-container .ff-title {\n display: flex;\n gap: 4px;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n font-weight: 400;\n cursor: pointer;\n}\n.ff-tree-container .ff-title-container .ff-title .ff-title-label {\n display: flex;\n align-items: center;\n}\n.ff-tree-container .ff-title-container .ff-title .ff-hover-icon {\n display: none;\n position: absolute;\n right: 10px;\n}\n.ff-tree-container .ff-node-li {\n position: relative;\n --indent-size: 18px;\n --total-children-height: var(--node-height);\n}\n.ff-tree-container .ff-node-li td:first-child {\n padding-left: calc(var(--level) * var(--indent-size));\n height: 32px;\n}\n.ff-tree-container .ff-node-li::before {\n content: \"\";\n position: absolute;\n top: 0;\n left: calc(var(--level) * var(--indent-size) - 4px);\n width: 1px;\n height: calc(var(--total-children-height));\n background-color: var(--tree-connecting-lines-color);\n z-index: 1;\n}\n.ff-tree-container .ff-node-li::after {\n content: \"\";\n position: absolute;\n top: 50%;\n left: calc(var(--level) * var(--indent-size) - 4px);\n width: 12px;\n height: 1px;\n background-color: var(--tree-connecting-lines-color);\n z-index: 1;\n}\n.ff-tree-container .ff-node-li.ff-is-last::before {\n height: calc(var(--node-height) / 2);\n}\n.ff-tree-container .ff-node-li[style*=\"--level: 0\"]::before, .ff-tree-container .ff-node-li[style*=\"--level: 0\"]::after {\n content: none;\n}\n\n.ff-title-action-container {\n display: none;\n align-items: center;\n}";
8756
8760
  styleInject(css_248z$z);
8757
8761
 
8758
8762
  const TableTree = ({
@@ -8932,7 +8936,7 @@ const TableTree = ({
8932
8936
  });
8933
8937
  };
8934
8938
 
8935
- var css_248z$y = ":root {\n --tooltip-bg-color: #1e161f;\n --status-approved-text-color: #016102;\n --status-warning-text-color: #ff8b00;\n --status-rejected-text-color: #c60202;\n --status-skipped-text-color: #3c3838;\n --status-approved-bg-color: #c6efcd;\n --status-rejected-bg-color: #f7d9d9;\n --status-warning-bg-color: #fae2c6;\n --status-skipped-bg-color: #c4c3c3;\n --brand-color: #71347b;\n --icons-default-color: #71347b;\n --default-icon-color: #a3a3a3;\n --default-color: #747474;\n --primary-icon-color: #ffffff;\n --secondary-icon-color: #71347b;\n --system-color--error: #c50303;\n --hover-color: #f7ebff;\n --brand2-color: #610b86;\n --status-warning-hover-bg-color: #fcd8ac;\n --status-percentage-growth-bg-color: #ecedf8;\n --primary-icon-color: #ffffff;\n --secondary-icon-color: #71347b;\n --description-text-color: #d9d9d9;\n --expandable-menu-default-bg: #fdfaff;\n --expandable-menu-option-bg: rgba(97, 11, 134, 0.1019607843);\n --text-color: #1e161f;\n --file-dropzone-default-color: rgba(113, 52, 123, 0.1019607843);\n --file-dropzone-selected-color: rgba(113, 52, 123, 0.2);\n --file-details-container-shadow: rgba(30, 22, 31, 0.1607843137);\n --file-details-bg: #ffffff;\n --error-light: #e42525;\n --tabs-label-default-color: tabs-label-default-color;\n --tabs-label-active-color: tabs-label-active-color;\n --tabs-border-color: tabs-border-color;\n --tabs-bg-color: tabs-bg-color;\n --tab-bg-color: tab-bg-color;\n --toggle-button-bg-color: #ffffff;\n --toggle-strip-shadow: rgba(0, 0, 0, 0.2509803922);\n --toggle-strip-color: #cfd1e2;\n --disable-color: rgba(113, 52, 123, 0.5019607843);\n --toggle-strip-color: #cfd1e2;\n --add-icon-hover-color: #431b4a;\n --arrows-button-border-color: #ded1e5;\n --arrow-button-bg-color: #ffffff;\n --text-bg-highlight: #f5fb00;\n --slider-table-color: #efe1f9;\n --variable-dropdown-bg: #($variable-dropdown-bg);\n}\n\n@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-tabs-container {\n box-sizing: border-box;\n}\n.ff-tabs-container .ff-tab-row--default {\n display: flex;\n gap: 8px;\n border: 1px solid var(--tabs-border-color);\n border-radius: 8px 8px 0 0;\n padding: 7px 8px 0;\n}\n.ff-tabs-container .ff-tab-row--default .ff-tab-button--default {\n border: none;\n background: none;\n padding: 0 4px;\n display: flex;\n flex-direction: column;\n cursor: pointer;\n}\n.ff-tabs-container .ff-tab-row--default .ff-tab-button--default .ff-tab-label {\n padding-bottom: 4px;\n}\n.ff-tabs-container .ff-tab-row--default .ff-tab-button--default .ff-tab-bar {\n width: 100%;\n border-radius: 2px 2px 0 0;\n}\n.ff-tabs-container .ff-tab-row--default .ff-tab-button--default .ff-tab-bar--active {\n border-top: 2px solid var(--tabs-label-active-color);\n}\n.ff-tabs-container .ff-tab-row--default .ff-tab-button--default.disabled {\n opacity: 0.5;\n cursor: not-allowed;\n}\n.ff-tabs-container .ff-tab-row--capsule {\n display: flex;\n gap: 8px;\n border: 1px solid var(--tabs-border-color);\n border-radius: 8px;\n padding: 3px 4px;\n background-color: var(--tabs-bg-color);\n}\n.ff-tabs-container .ff-tab-row--capsule .ff-tab-button--capsule {\n background: transparent;\n border: none;\n padding: 3px 4px;\n border-radius: 4px;\n cursor: pointer;\n}\n.ff-tabs-container .ff-tab-row--capsule .ff-tab-button--capsule.active {\n background-color: var(--tab-bg-color);\n}\n.ff-tabs-container .ff-tab-row--capsule .ff-tab-button--capsule .ff-tab-bar {\n display: none;\n}\n.ff-tabs-container .ff-tab-row--no-border {\n border: none;\n}\n.ff-tabs-container .ff-tab-content {\n width: inherit;\n}";
8939
+ var css_248z$y = ":root {\n --tooltip-bg-color: #1e161f;\n --status-approved-text-color: #016102;\n --status-warning-text-color: #ff8b00;\n --status-rejected-text-color: #c60202;\n --status-skipped-text-color: #3c3838;\n --status-approved-bg-color: #c6efcd;\n --status-rejected-bg-color: #f7d9d9;\n --status-warning-bg-color: #fae2c6;\n --status-skipped-bg-color: #c4c3c3;\n --brand-color: #71347b;\n --icons-default-color: #71347b;\n --default-icon-color: #a3a3a3;\n --default-color: #747474;\n --primary-icon-color: #ffffff;\n --secondary-icon-color: #71347b;\n --system-color--error: #c50303;\n --hover-color: #f7ebff;\n --brand2-color: #610b86;\n --status-warning-hover-bg-color: #fcd8ac;\n --status-percentage-growth-bg-color: #ecedf8;\n --primary-icon-color: #ffffff;\n --secondary-icon-color: #71347b;\n --description-text-color: #d9d9d9;\n --expandable-menu-default-bg: #fdfaff;\n --expandable-menu-option-bg: rgba(97, 11, 134, 0.1019607843);\n --text-color: #1e161f;\n --file-dropzone-default-color: rgba(113, 52, 123, 0.1019607843);\n --file-dropzone-selected-color: rgba(113, 52, 123, 0.2);\n --file-details-container-shadow: rgba(30, 22, 31, 0.1607843137);\n --file-details-bg: #ffffff;\n --error-light: #e42525;\n --tabs-label-default-color: tabs-label-default-color;\n --tabs-label-active-color: tabs-label-active-color;\n --tabs-border-color: tabs-border-color;\n --tabs-bg-color: tabs-bg-color;\n --tab-bg-color: tab-bg-color;\n --toggle-button-bg-color: #ffffff;\n --toggle-strip-shadow: rgba(0, 0, 0, 0.2509803922);\n --toggle-strip-color: #cfd1e2;\n --disable-color: rgba(113, 52, 123, 0.5019607843);\n --toggle-strip-color: #cfd1e2;\n --add-icon-hover-color: #431b4a;\n --arrows-button-border-color: #ded1e5;\n --arrow-button-bg-color: #ffffff;\n --text-bg-highlight: #f5fb00;\n --slider-table-color: #efe1f9;\n --variable-dropdown-bg: #($variable-dropdown-bg);\n}\n\n@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-tabs-container {\n box-sizing: border-box;\n}\n.ff-tabs-container .ff-tab-row--default {\n display: flex;\n gap: 8px;\n border: 1px solid var(--tabs-border-color);\n border-radius: 8px 8px 0 0;\n padding: 7px 8px 0;\n}\n.ff-tabs-container .ff-tab-row--default .ff-tab-button--default {\n border: none;\n background: none;\n padding: 0 4px;\n display: flex;\n flex-direction: column;\n cursor: pointer;\n}\n.ff-tabs-container .ff-tab-row--default .ff-tab-button--default .ff-tab-label {\n padding-bottom: 4px;\n}\n.ff-tabs-container .ff-tab-row--default .ff-tab-button--default .ff-tab-bar {\n width: 100%;\n border-radius: 2px 2px 0 0;\n}\n.ff-tabs-container .ff-tab-row--default .ff-tab-button--default .ff-tab-bar--active {\n border-top: 2px solid var(--tabs-label-active-color);\n}\n.ff-tabs-container .ff-tab-row--default .ff-tab-button--default.disabled {\n opacity: 0.5;\n cursor: not-allowed;\n}\n.ff-tabs-container .ff-tab-row--capsule {\n display: flex;\n gap: 8px;\n border: 1px solid var(--tabs-border-color);\n border-radius: 8px;\n padding: 3px 4px;\n background-color: var(--tabs-bg-color);\n}\n.ff-tabs-container .ff-tab-row--capsule .ff-tab-button--capsule {\n background: transparent;\n border: none;\n padding: 3px 4px;\n border-radius: 4px;\n cursor: pointer;\n}\n.ff-tabs-container .ff-tab-row--capsule .ff-tab-button--capsule.active {\n background-color: var(--tab-bg-color);\n}\n.ff-tabs-container .ff-tab-row--capsule .ff-tab-button--capsule .ff-tab-bar {\n display: none;\n}\n.ff-tabs-container .ff-tab-row--no-border {\n border: none;\n}\n.ff-tabs-container .ff-tab-content {\n width: inherit;\n}";
8936
8940
  styleInject(css_248z$y);
8937
8941
 
8938
8942
  const Tabs = ({
@@ -9002,7 +9006,7 @@ const HighlightText = ({
9002
9006
  });
9003
9007
  };
9004
9008
 
9005
- var css_248z$w = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs, .ff-search-container .ff-search-input {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-search-container {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.ff-search-container .ff-search-icon {\n display: flex;\n align-items: center;\n justify-content: center;\n cursor: pointer;\n border: 1px solid var(--border-color);\n border-radius: 4px;\n padding: 4px;\n}\n.ff-search-container .ff-search-icon .ff-icon-container svg path {\n fill: var(--brand-color);\n}\n.ff-search-container .ff-search-input {\n border: none;\n color: var(--tooltip-bg-color);\n line-height: 12px;\n visibility: hidden;\n transition: width 0.4s ease;\n}\n.ff-search-container .ff-search-input:focus {\n outline: none;\n border: none;\n}\n.ff-search-container .ff-search-input:hover {\n border: none;\n}\n.ff-search-container.disabled {\n opacity: 0.5;\n}\n.ff-search-container.expanded {\n border: 1px solid var(--border-color);\n border-radius: 4px;\n}\n.ff-search-container.expanded .ff-vertical-line {\n height: 8px;\n width: 1px;\n position: relative;\n right: 2px;\n border-radius: 1px;\n margin: 8px 0px;\n background-color: var(--border-color);\n}\n.ff-search-container.expanded .ff-search-input {\n visibility: visible;\n}\n.ff-search-container.expanded .ff-search-input::placeholder {\n color: var(--ff-search-filed-placeholder-text);\n}\n.ff-search-container.expanded .ff-search-icon {\n padding: 4px;\n border: none;\n cursor: default;\n}\n.ff-search-container.expanded .ff-search-clear-button {\n display: grid;\n place-items: center;\n cursor: pointer;\n width: 22px;\n}\n.ff-search-container.expanded .ff-search-close-icon {\n margin: 4px;\n cursor: pointer;\n}\n.ff-search-container.expanded .ff-search-close-icon .ff-icon-container svg path {\n fill: var(--ff-search-filed-close-Icon);\n}";
9009
+ var css_248z$w = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs, .ff-search-container .ff-search-input {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-search-container {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n.ff-search-container .ff-search-icon {\n display: flex;\n align-items: center;\n justify-content: center;\n cursor: pointer;\n border: 1px solid var(--border-color);\n border-radius: 4px;\n padding: 4px;\n}\n.ff-search-container .ff-search-icon .ff-icon-container svg path {\n fill: var(--brand-color);\n}\n.ff-search-container .ff-search-input {\n border: none;\n color: var(--tooltip-bg-color);\n line-height: 12px;\n visibility: hidden;\n transition: width 0.4s ease;\n}\n.ff-search-container .ff-search-input:focus {\n outline: none;\n border: none;\n}\n.ff-search-container .ff-search-input:hover {\n border: none;\n}\n.ff-search-container.disabled {\n opacity: 0.5;\n}\n.ff-search-container.expanded {\n border: 1px solid var(--border-color);\n border-radius: 4px;\n}\n.ff-search-container.expanded .ff-vertical-line {\n height: 8px;\n width: 1px;\n position: relative;\n right: 2px;\n border-radius: 1px;\n margin: 8px 0px;\n background-color: var(--border-color);\n}\n.ff-search-container.expanded .ff-search-input {\n visibility: visible;\n}\n.ff-search-container.expanded .ff-search-input::placeholder {\n color: var(--ff-search-filed-placeholder-text);\n}\n.ff-search-container.expanded .ff-search-icon {\n padding: 4px;\n border: none;\n cursor: default;\n}\n.ff-search-container.expanded .ff-search-clear-button {\n display: grid;\n place-items: center;\n cursor: pointer;\n width: 22px;\n}\n.ff-search-container.expanded .ff-search-close-icon {\n margin: 4px;\n cursor: pointer;\n}\n.ff-search-container.expanded .ff-search-close-icon .ff-icon-container svg path {\n fill: var(--ff-search-filed-close-Icon);\n}";
9006
9010
  styleInject(css_248z$w);
9007
9011
 
9008
9012
  const Search = ({
@@ -13379,7 +13383,7 @@ function formatDay(date, options, dateLib) {
13379
13383
  */
13380
13384
  function formatMonthDropdown(/** The month number to format. */
13381
13385
  monthNumber, /** The locale to use for formatting. */
13382
- locale) {
13386
+ locale = enUS) {
13383
13387
  return locale.localize?.month(monthNumber);
13384
13388
  }
13385
13389
 
@@ -13483,7 +13487,7 @@ function getMonthOptions(displayMonth, navStart, navEnd, formatters, dateLib) {
13483
13487
  return a - b;
13484
13488
  });
13485
13489
  const options = sortedMonths.map(value => {
13486
- const label = formatters.formatMonthDropdown(value, dateLib.options.locale ?? enUS);
13490
+ const label = formatters.formatMonthDropdown(value, dateLib.options.locale);
13487
13491
  const month = dateLib.Date ? new dateLib.Date(year, value) : new Date(year, value);
13488
13492
  const disabled = navStart && month < startOfMonth(navStart) || navEnd && month > startOfMonth(navEnd) || false;
13489
13493
  return {
@@ -14097,8 +14101,7 @@ function getDates(displayMonths, maxDate, props, dateLib) {
14097
14101
  // If fixed weeks is enabled, add the extra dates to the array
14098
14102
  const extraDates = NrOfDaysWithFixedWeeks * nOfMonths;
14099
14103
  if (fixedWeeks && dates.length < extraDates) {
14100
- const daysToAdd = extraDates - dates.length;
14101
- for (let i = 0; i < daysToAdd; i++) {
14104
+ for (let i = 0; i < 7; i++) {
14102
14105
  const date = addDays(dates[dates.length - 1], 1);
14103
14106
  dates.push(date);
14104
14107
  }
@@ -14225,10 +14228,9 @@ props, dateLib) {
14225
14228
  const monthDates = dates.filter(date => {
14226
14229
  return date >= firstDateOfFirstWeek && date <= lastDateOfLastWeek;
14227
14230
  });
14228
- if (props.fixedWeeks && monthDates.length < NrOfDaysWithFixedWeeks) {
14231
+ if (props.fixedWeeks && monthDates.length < 42) {
14229
14232
  const extraDates = dates.filter(date => {
14230
- const daysToAdd = NrOfDaysWithFixedWeeks - monthDates.length;
14231
- return date > lastDateOfLastWeek && date <= addDays(lastDateOfLastWeek, daysToAdd);
14233
+ return date > lastDateOfLastWeek && date <= addDays(lastDateOfLastWeek, 7);
14232
14234
  });
14233
14235
  monthDates.push(...extraDates);
14234
14236
  }
@@ -14752,8 +14754,6 @@ function useFocus(props, calendar, getModifiers, isSelected, dateLib) {
14752
14754
  /**
14753
14755
  * Return a function to get the modifiers for a given day.
14754
14756
  *
14755
- * NOTE: this is not an hook, but a factory for `getModifiers`.
14756
- *
14757
14757
  * @private
14758
14758
  */
14759
14759
  function useGetModifiers(days, props, dateLib) {
@@ -14766,14 +14766,8 @@ function useGetModifiers(days, props, dateLib) {
14766
14766
  } = props;
14767
14767
  const {
14768
14768
  isSameDay,
14769
- isSameMonth,
14770
- startOfMonth,
14771
- isBefore,
14772
- endOfMonth,
14773
- isAfter
14769
+ isSameMonth
14774
14770
  } = dateLib;
14775
- const startMonth = props.startMonth && startOfMonth(props.startMonth);
14776
- const endMonth = props.endMonth && endOfMonth(props.endMonth);
14777
14771
  const internalModifiersMap = {
14778
14772
  [DayFlag.focused]: [],
14779
14773
  [DayFlag.outside]: [],
@@ -14782,16 +14776,20 @@ function useGetModifiers(days, props, dateLib) {
14782
14776
  [DayFlag.today]: []
14783
14777
  };
14784
14778
  const customModifiersMap = {};
14779
+ const selectionModifiersMap = {
14780
+ [SelectionState.range_end]: [],
14781
+ [SelectionState.range_middle]: [],
14782
+ [SelectionState.range_start]: [],
14783
+ [SelectionState.selected]: []
14784
+ };
14785
14785
  for (const day of days) {
14786
14786
  const {
14787
14787
  date,
14788
14788
  displayMonth
14789
14789
  } = day;
14790
14790
  const isOutside = Boolean(displayMonth && !isSameMonth(date, displayMonth));
14791
- const isBeforeStartMonth = Boolean(startMonth && isBefore(date, startMonth));
14792
- const isAfterEndMonth = Boolean(endMonth && isAfter(date, endMonth));
14793
14791
  const isDisabled = Boolean(disabled && dateMatchModifiers(date, disabled, dateLib));
14794
- const isHidden = Boolean(hidden && dateMatchModifiers(date, hidden, dateLib)) || isBeforeStartMonth || isAfterEndMonth || !showOutsideDays && isOutside;
14792
+ const isHidden = Boolean(hidden && dateMatchModifiers(date, hidden, dateLib)) || !showOutsideDays && isOutside;
14795
14793
  const isToday = isSameDay(date, today ?? (props.timeZone ? TZDate.tz(props.timeZone) : dateLib.Date ? new dateLib.Date() : new Date()));
14796
14794
  if (isOutside) internalModifiersMap.outside.push(day);
14797
14795
  if (isDisabled) internalModifiersMap.disabled.push(day);
@@ -14820,16 +14818,27 @@ function useGetModifiers(days, props, dateLib) {
14820
14818
  [DayFlag.outside]: false,
14821
14819
  [DayFlag.today]: false
14822
14820
  };
14821
+ const selectionStates = {
14822
+ [SelectionState.range_end]: false,
14823
+ [SelectionState.range_middle]: false,
14824
+ [SelectionState.range_start]: false,
14825
+ [SelectionState.selected]: false
14826
+ };
14823
14827
  const customModifiers = {};
14824
14828
  // Find the modifiers for the given day
14825
14829
  for (const name in internalModifiersMap) {
14826
14830
  const days = internalModifiersMap[name];
14827
14831
  dayFlags[name] = days.some(d => d === day);
14828
14832
  }
14833
+ for (const name in selectionModifiersMap) {
14834
+ const days = selectionModifiersMap[name];
14835
+ selectionStates[name] = days.some(d => d === day);
14836
+ }
14829
14837
  for (const name in customModifiersMap) {
14830
14838
  customModifiers[name] = customModifiersMap[name].some(d => d === day);
14831
14839
  }
14832
14840
  return {
14841
+ ...selectionStates,
14833
14842
  ...dayFlags,
14834
14843
  // custom modifiers should override all the previous ones
14835
14844
  ...customModifiers
@@ -17006,7 +17015,7 @@ const TimePicker = ({
17006
17015
  });
17007
17016
  };
17008
17017
 
17009
- var css_248z$v = "@import 'react-day-picker/style.css';\n@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs, .ff-date-picker .ff-datepicker-input-container .ff-input-with-icon .ff-date-input,\n.ff-date-picker .ff-datepicker-input-container .ff-input-with-icon .ff-time-input {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container .ff-time-input {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8, .ff-date-picker .ff-datepicker-input-container .ff-date-input-field .ff-date-input-message {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n/* Custom date picker styling */\n.ff-date-picker {\n position: relative;\n}\n.ff-date-picker .rdp-root {\n --rdp-accent-color: var(--brand-color);\n --rdp-day-height: 24px;\n --rdp-day-width: 36px;\n font-family: \"Poppins\";\n font-size: 12px;\n --rdp-font-family: \"Poppins\";\n}\n.ff-date-picker .ff-cursor-pointer {\n cursor: pointer;\n}\n.ff-date-picker .ff-datepicker-input-container {\n display: flex;\n gap: 10px;\n}\n.ff-date-picker .ff-datepicker-input-container .ff-input-with-icon {\n position: relative;\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n}\n.ff-date-picker .ff-datepicker-input-container .ff-input-with-icon .ff-date-input,\n.ff-date-picker .ff-datepicker-input-container .ff-input-with-icon .ff-time-input {\n padding: 4px 8px;\n padding-left: 2rem;\n height: 32px;\n border-radius: 5px;\n border: 1px solid var(--border-color);\n color: var(--status-skipped-text-color);\n line-height: 15px;\n box-sizing: border-box;\n}\n.ff-date-picker .ff-datepicker-input-container .ff-input-with-icon .ff-date-input:focus,\n.ff-date-picker .ff-datepicker-input-container .ff-input-with-icon .ff-time-input:focus {\n outline: none;\n}\n.ff-date-picker .ff-datepicker-input-container .ff-input-with-icon .ff-calendar-icon,\n.ff-date-picker .ff-datepicker-input-container .ff-input-with-icon .ff-clock-icon {\n position: absolute;\n transform: translate(50%, 50%);\n display: flex;\n align-items: center;\n pointer-events: none;\n}\n.ff-date-picker .ff-datepicker-input-container .ff-date-input-field {\n flex: 1;\n}\n.ff-date-picker .ff-datepicker-input-container .ff-date-input-field .ff-date-input {\n width: 100%;\n}\n.ff-date-picker .ff-datepicker-input-container .ff-date-input-field .ff-date-input-message {\n padding: 0px 4px;\n margin-left: 8px;\n line-height: 12px;\n}\n.ff-date-picker .ff-datepicker-input-container .ff-date-input-field .ff-date-input-message--danger {\n color: var(--input-error-text-color);\n}\n.ff-date-picker .ff-datepicker-input-container .ff-time-input-field {\n flex: 0 0 120px;\n}\n.ff-date-picker .ff-datepicker-input-container .ff-time-input-field .ff-time-input {\n width: 100%;\n}\n.ff-date-picker .ff-date-picker-container {\n display: flex;\n flex-direction: column;\n position: absolute;\n border-radius: 8px;\n padding: 4px;\n box-sizing: border-box;\n background-color: var(--tab-bg-color);\n box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);\n gap: 8px;\n z-index: 10;\n}\n.ff-date-picker .ff-date-picker-container .ff-calendar-container {\n display: flex;\n align-items: flex-start;\n gap: 4px;\n height: 240px;\n}\n.ff-date-picker .ff-date-picker-container .ff-date-picker-controls {\n padding: 4px;\n display: flex;\n justify-content: end;\n gap: 8px;\n border-top: 1px solid var(--border-color);\n}\n.ff-date-picker .ff-date-picker-container .ff-date-picker-controls .ff-date-picker-button {\n font-weight: 600;\n line-height: 15px;\n}\n.ff-date-picker .ff-calendar .ff-calendar-nav-button {\n margin: 0 5px;\n border: 1px solid var(--border-color);\n background-color: var(--toggle-button-bg-color);\n box-shadow: 0 -2px 2px 0 var(--ff-mini-modal-box-shadow);\n padding: 4px;\n border-radius: 30%;\n cursor: pointer;\n}\n.ff-date-picker .ff-calendar .ff-calendar-nav-button:disabled {\n cursor: auto;\n opacity: 0.5;\n}\n.ff-date-picker .ff-calendar .ff-calendar-haeder {\n display: flex;\n align-items: center;\n gap: 5px;\n color: var(--text-color);\n}\n.ff-date-picker .ff-calendar .ff-custom-year_grid,\n.ff-date-picker .ff-calendar .ff-custom-month_grid {\n width: calc((var(--rdp-day-width) + 4px) * 7);\n display: grid;\n grid-template-columns: repeat(3, 1fr);\n gap: 10px;\n padding: 5px;\n max-width: 100%;\n}\n.ff-date-picker .ff-calendar .ff-custom-year_grid .ff-custom-year,\n.ff-date-picker .ff-calendar .ff-custom-year_grid .ff-custom-month,\n.ff-date-picker .ff-calendar .ff-custom-month_grid .ff-custom-year,\n.ff-date-picker .ff-calendar .ff-custom-month_grid .ff-custom-month {\n padding: 10px 0;\n text-align: center;\n cursor: pointer;\n border-radius: 8px;\n background-color: #f9f9f9;\n}\n.ff-date-picker .ff-calendar .ff-custom-year_grid .ff-custom-year--selected,\n.ff-date-picker .ff-calendar .ff-custom-year_grid .ff-custom-month--selected,\n.ff-date-picker .ff-calendar .ff-custom-month_grid .ff-custom-year--selected,\n.ff-date-picker .ff-calendar .ff-custom-month_grid .ff-custom-month--selected {\n background-color: var(--brand-color);\n color: var(--primary-button-text-color);\n}\n.ff-date-picker .ff-calendar .rdp-weekdays th {\n color: #6f7c8e;\n font-weight: 400;\n}\n.ff-date-picker .ff-calendar .rdp-day {\n padding: 2px;\n font-weight: 500;\n}\n.ff-date-picker .ff-calendar .rdp-day_button {\n border-radius: 4px;\n padding: 3px 9px;\n}\n.ff-date-picker .ff-calendar .rdp-day_button:hover {\n background-color: var(--hover-color);\n}\n.ff-date-picker .ff-calendar .rdp-selected {\n font: inherit;\n}\n.ff-date-picker .ff-calendar .rdp-selected .rdp-day_button {\n background: var(--rdp-accent-color);\n color: var(--drawer-footer-bg);\n border: none;\n}\n.ff-date-picker .ff-calendar .rdp-today:not(.rdp-outside) .rdp-day_button {\n border: 2px solid var(--rdp-accent-color);\n}\n.ff-date-picker .ff-time-picker-container {\n position: relative;\n width: 150px;\n height: 100%;\n overflow-y: hidden;\n border-left: 1px solid #ccc;\n padding: 10px 5px;\n box-sizing: border-box;\n}\n.ff-date-picker .ff-time-picker-container::-webkit-scrollbar {\n display: none;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields {\n display: flex;\n height: 14%;\n width: 100%;\n margin-bottom: 5px;\n box-sizing: border-box;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container {\n display: flex;\n border: 1px solid var(--border-color);\n border-right: 0;\n border-radius: 4px 0 0 4px;\n width: 55%;\n position: relative;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container .ff-time-input {\n border: none;\n padding: 5px;\n width: 100%;\n text-align: center;\n border-radius: 4px 0 0 4px;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container .ff-time-input::placeholder {\n opacity: 0;\n line-height: 18px;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container .ff-time-input-label {\n position: absolute;\n left: 10px;\n top: 50%;\n transform: translateY(-50%);\n transition: 0.2s ease all;\n color: var(--input-default-label-color);\n pointer-events: none;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container--float .ff-time-input-label {\n top: 0;\n left: 5px;\n color: var(--brand-color);\n background-color: var(--input-label-bg-color);\n line-height: 12px;\n padding: 0 2px;\n font-size: 8px !important;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container--float .ff-time-input-label--danger {\n color: var(--input-error-text-color);\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container:hover {\n border-color: var(--input-hover-border-color);\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container:focus-within {\n border-color: var(--brand-color);\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container:focus-within .ff-time-input-label {\n top: 0;\n left: 5px;\n color: var(--brand-color);\n background-color: var(--input-label-bg-color);\n line-height: 12px;\n padding: 0 2px;\n font-size: 8px !important;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container:focus-within .ff-time-input-label--danger {\n color: var(--input-error-text-color);\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container:focus-within .ff-time-input::placeholder {\n opacity: 1;\n margin-bottom: 1px;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container--danger {\n border-color: var(--input-error-text-color) !important;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container .ff-time-input:focus {\n outline: none;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-period-container {\n position: relative;\n width: 45%;\n display: flex;\n border: 1px solid var(--border-color);\n border-radius: 0 4px 4px 0;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-period-container .ff-time-period-select {\n display: flex;\n align-items: center;\n padding: 0 5px;\n width: 100%;\n border-radius: 4px;\n background-color: white;\n cursor: pointer;\n border: none;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-period-container--active {\n border-color: var(--brand-color) !important;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-period-container:hover {\n border-color: var(--input-hover-border-color);\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-period-container .ff-time-period-icon {\n margin-left: auto;\n pointer-events: none;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-period-container .ff-time-period-options {\n position: fixed;\n z-index: 100;\n min-width: 60px;\n margin: 4px 0 0;\n padding: 0;\n list-style: none;\n border: 1px solid var(--ff-select-background-color);\n border-radius: 4px;\n background-color: var(--primary-button-text-color);\n box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-period-container .ff-option-item {\n padding: 8px;\n color: var(--text-color);\n border-radius: 4px;\n cursor: pointer;\n transition: background-color 0.2s ease;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-period-container .ff-option-item:hover {\n background-color: var(--ff-select-option-hover-color);\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-options {\n height: 86%;\n overflow-y: auto;\n padding-right: 5px;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-options::-webkit-scrollbar {\n width: 4px;\n height: 12px;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-options::-webkit-scrollbar-thumb {\n background-color: var(--ff-select-scroll-thumb-color);\n border-radius: 4px;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-options::-webkit-scrollbar-track {\n background-color: var(--hover-color);\n border-radius: 4px;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-options .ff-time-option {\n padding: 10px 12px;\n cursor: pointer;\n text-align: center;\n border-radius: 8px;\n background-color: rgb(249, 249, 249);\n margin: 10px 0;\n}";
17018
+ var css_248z$v = "@import 'react-day-picker/style.css';\n@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs, .ff-date-picker .ff-datepicker-input-container .ff-input-with-icon .ff-date-input,\n.ff-date-picker .ff-datepicker-input-container .ff-input-with-icon .ff-time-input {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container .ff-time-input {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8, .ff-date-picker .ff-datepicker-input-container .ff-date-input-field .ff-date-input-message {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n/* Custom date picker styling */\n.ff-date-picker {\n position: relative;\n}\n.ff-date-picker .rdp-root {\n --rdp-accent-color: var(--brand-color);\n --rdp-day-height: 24px;\n --rdp-day-width: 36px;\n font-family: \"Poppins\";\n font-size: 12px;\n --rdp-font-family: \"Poppins\";\n}\n.ff-date-picker .ff-cursor-pointer {\n cursor: pointer;\n}\n.ff-date-picker .ff-datepicker-input-container {\n display: flex;\n gap: 10px;\n}\n.ff-date-picker .ff-datepicker-input-container .ff-input-with-icon {\n position: relative;\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n}\n.ff-date-picker .ff-datepicker-input-container .ff-input-with-icon .ff-date-input,\n.ff-date-picker .ff-datepicker-input-container .ff-input-with-icon .ff-time-input {\n padding: 4px 8px;\n padding-left: 2rem;\n height: 32px;\n border-radius: 5px;\n border: 1px solid var(--border-color);\n color: var(--status-skipped-text-color);\n line-height: 15px;\n box-sizing: border-box;\n}\n.ff-date-picker .ff-datepicker-input-container .ff-input-with-icon .ff-date-input:focus,\n.ff-date-picker .ff-datepicker-input-container .ff-input-with-icon .ff-time-input:focus {\n outline: none;\n}\n.ff-date-picker .ff-datepicker-input-container .ff-input-with-icon .ff-calendar-icon,\n.ff-date-picker .ff-datepicker-input-container .ff-input-with-icon .ff-clock-icon {\n position: absolute;\n transform: translate(50%, 50%);\n display: flex;\n align-items: center;\n pointer-events: none;\n}\n.ff-date-picker .ff-datepicker-input-container .ff-date-input-field {\n flex: 1;\n}\n.ff-date-picker .ff-datepicker-input-container .ff-date-input-field .ff-date-input {\n width: 100%;\n}\n.ff-date-picker .ff-datepicker-input-container .ff-date-input-field .ff-date-input-message {\n padding: 0px 4px;\n margin-left: 8px;\n line-height: 12px;\n}\n.ff-date-picker .ff-datepicker-input-container .ff-date-input-field .ff-date-input-message--danger {\n color: var(--input-error-text-color);\n}\n.ff-date-picker .ff-datepicker-input-container .ff-time-input-field {\n flex: 0 0 120px;\n}\n.ff-date-picker .ff-datepicker-input-container .ff-time-input-field .ff-time-input {\n width: 100%;\n}\n.ff-date-picker .ff-date-picker-container {\n display: flex;\n flex-direction: column;\n position: absolute;\n border-radius: 8px;\n padding: 4px;\n box-sizing: border-box;\n background-color: var(--tab-bg-color);\n box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);\n gap: 8px;\n z-index: 10;\n}\n.ff-date-picker .ff-date-picker-container .ff-calendar-container {\n display: flex;\n align-items: flex-start;\n gap: 4px;\n height: 240px;\n}\n.ff-date-picker .ff-date-picker-container .ff-date-picker-controls {\n padding: 4px;\n display: flex;\n justify-content: end;\n gap: 8px;\n border-top: 1px solid var(--border-color);\n}\n.ff-date-picker .ff-date-picker-container .ff-date-picker-controls .ff-date-picker-button {\n font-weight: 600;\n line-height: 15px;\n}\n.ff-date-picker .ff-calendar .ff-calendar-nav-button {\n margin: 0 5px;\n border: 1px solid var(--border-color);\n background-color: var(--toggle-button-bg-color);\n box-shadow: 0 -2px 2px 0 var(--ff-mini-modal-box-shadow);\n padding: 4px;\n border-radius: 30%;\n cursor: pointer;\n}\n.ff-date-picker .ff-calendar .ff-calendar-nav-button:disabled {\n cursor: auto;\n opacity: 0.5;\n}\n.ff-date-picker .ff-calendar .ff-calendar-haeder {\n display: flex;\n align-items: center;\n gap: 5px;\n color: var(--text-color);\n}\n.ff-date-picker .ff-calendar .ff-custom-year_grid,\n.ff-date-picker .ff-calendar .ff-custom-month_grid {\n width: calc((var(--rdp-day-width) + 4px) * 7);\n display: grid;\n grid-template-columns: repeat(3, 1fr);\n gap: 10px;\n padding: 5px;\n max-width: 100%;\n}\n.ff-date-picker .ff-calendar .ff-custom-year_grid .ff-custom-year,\n.ff-date-picker .ff-calendar .ff-custom-year_grid .ff-custom-month,\n.ff-date-picker .ff-calendar .ff-custom-month_grid .ff-custom-year,\n.ff-date-picker .ff-calendar .ff-custom-month_grid .ff-custom-month {\n padding: 10px 0;\n text-align: center;\n cursor: pointer;\n border-radius: 8px;\n background-color: #f9f9f9;\n}\n.ff-date-picker .ff-calendar .ff-custom-year_grid .ff-custom-year--selected,\n.ff-date-picker .ff-calendar .ff-custom-year_grid .ff-custom-month--selected,\n.ff-date-picker .ff-calendar .ff-custom-month_grid .ff-custom-year--selected,\n.ff-date-picker .ff-calendar .ff-custom-month_grid .ff-custom-month--selected {\n background-color: var(--brand-color);\n color: var(--primary-button-text-color);\n}\n.ff-date-picker .ff-calendar .rdp-weekdays th {\n color: #6f7c8e;\n font-weight: 400;\n}\n.ff-date-picker .ff-calendar .rdp-day {\n padding: 2px;\n font-weight: 500;\n}\n.ff-date-picker .ff-calendar .rdp-day_button {\n border-radius: 4px;\n padding: 3px 9px;\n}\n.ff-date-picker .ff-calendar .rdp-day_button:hover {\n background-color: var(--hover-color);\n}\n.ff-date-picker .ff-calendar .rdp-selected {\n font: inherit;\n}\n.ff-date-picker .ff-calendar .rdp-selected .rdp-day_button {\n background: var(--rdp-accent-color);\n color: var(--drawer-footer-bg);\n border: none;\n}\n.ff-date-picker .ff-calendar .rdp-today:not(.rdp-outside) .rdp-day_button {\n border: 2px solid var(--rdp-accent-color);\n}\n.ff-date-picker .ff-time-picker-container {\n position: relative;\n width: 150px;\n height: 100%;\n overflow-y: hidden;\n border-left: 1px solid #ccc;\n padding: 10px 5px;\n box-sizing: border-box;\n}\n.ff-date-picker .ff-time-picker-container::-webkit-scrollbar {\n display: none;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields {\n display: flex;\n height: 14%;\n width: 100%;\n margin-bottom: 5px;\n box-sizing: border-box;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container {\n display: flex;\n border: 1px solid var(--border-color);\n border-right: 0;\n border-radius: 4px 0 0 4px;\n width: 55%;\n position: relative;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container .ff-time-input {\n border: none;\n padding: 5px;\n width: 100%;\n text-align: center;\n border-radius: 4px 0 0 4px;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container .ff-time-input::placeholder {\n opacity: 0;\n line-height: 18px;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container .ff-time-input-label {\n position: absolute;\n left: 10px;\n top: 50%;\n transform: translateY(-50%);\n transition: 0.2s ease all;\n color: var(--input-default-label-color);\n pointer-events: none;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container--float .ff-time-input-label {\n top: 0;\n left: 5px;\n color: var(--brand-color);\n background-color: var(--input-label-bg-color);\n line-height: 12px;\n padding: 0 2px;\n font-size: 8px !important;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container--float .ff-time-input-label--danger {\n color: var(--input-error-text-color);\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container:hover {\n border-color: var(--input-hover-border-color);\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container:focus-within {\n border-color: var(--brand-color);\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container:focus-within .ff-time-input-label {\n top: 0;\n left: 5px;\n color: var(--brand-color);\n background-color: var(--input-label-bg-color);\n line-height: 12px;\n padding: 0 2px;\n font-size: 8px !important;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container:focus-within .ff-time-input-label--danger {\n color: var(--input-error-text-color);\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container:focus-within .ff-time-input::placeholder {\n opacity: 1;\n margin-bottom: 1px;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container--danger {\n border-color: var(--input-error-text-color) !important;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-input-container .ff-time-input:focus {\n outline: none;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-period-container {\n position: relative;\n width: 45%;\n display: flex;\n border: 1px solid var(--border-color);\n border-radius: 0 4px 4px 0;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-period-container .ff-time-period-select {\n display: flex;\n align-items: center;\n padding: 0 5px;\n width: 100%;\n border-radius: 4px;\n background-color: white;\n cursor: pointer;\n border: none;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-period-container--active {\n border-color: var(--brand-color) !important;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-period-container:hover {\n border-color: var(--input-hover-border-color);\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-period-container .ff-time-period-icon {\n margin-left: auto;\n pointer-events: none;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-period-container .ff-time-period-options {\n position: fixed;\n z-index: 100;\n min-width: 60px;\n margin: 4px 0 0;\n padding: 0;\n list-style: none;\n border: 1px solid var(--ff-select-background-color);\n border-radius: 4px;\n background-color: var(--primary-button-text-color);\n box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-period-container .ff-option-item {\n padding: 8px;\n color: var(--text-color);\n border-radius: 4px;\n cursor: pointer;\n transition: background-color 0.2s ease;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-fields .ff-time-period-container .ff-option-item:hover {\n background-color: var(--ff-select-option-hover-color);\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-options {\n height: 86%;\n overflow-y: auto;\n padding-right: 5px;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-options::-webkit-scrollbar {\n width: 4px;\n height: 12px;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-options::-webkit-scrollbar-thumb {\n background-color: var(--ff-select-scroll-thumb-color);\n border-radius: 4px;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-options::-webkit-scrollbar-track {\n background-color: var(--hover-color);\n border-radius: 4px;\n}\n.ff-date-picker .ff-time-picker-container .ff-time-picker-options .ff-time-option {\n padding: 10px 12px;\n cursor: pointer;\n text-align: center;\n border-radius: 8px;\n background-color: rgb(249, 249, 249);\n margin: 10px 0;\n}";
17010
17019
  styleInject(css_248z$v);
17011
17020
 
17012
17021
  const CustomDatePicker = ({
@@ -17527,7 +17536,7 @@ const StateDropdown = ({
17527
17536
  });
17528
17537
  };
17529
17538
 
17530
- var css_248z$u = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-plus-icon {\n border-radius: 16px;\n border-style: none;\n text-align: center;\n text-decoration: none;\n cursor: pointer;\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n gap: 8px;\n background-color: var(--secondary-icon-color);\n padding: 2px 8px 2px 2px;\n border: 1px solid transparent;\n}\n.ff-plus-icon .button-icon {\n width: 20px;\n height: 20px;\n border: 1px solid transparent;\n border-radius: 50%;\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n background-color: var(--hover-color);\n}\n.ff-plus-icon .button-icon .ff-icon-color path {\n color: var(--secondary-icon-color);\n}\n.ff-plus-icon .icon-name {\n color: var(--primary-icon-color);\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n}\n.ff-plus-icon:hover {\n border: 1px solid var(--secondary-icon-color);\n background-color: var(--hover-color);\n}\n.ff-plus-icon:hover .icon-name {\n font-weight: 600;\n color: var(--secondary-icon-color);\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n}\n.ff-plus-icon:hover .button-icon {\n width: 20px;\n height: 20px;\n border: 1px solid transparent;\n border-radius: 50%;\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n background-color: var(--secondary-icon-color);\n}\n.ff-plus-icon:hover .button-icon .ff-icon-color path {\n color: var(--primary-icon-color);\n}";
17539
+ var css_248z$u = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-plus-icon {\n border-radius: 16px;\n border-style: none;\n text-align: center;\n text-decoration: none;\n cursor: pointer;\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n gap: 8px;\n background-color: var(--secondary-icon-color);\n padding: 2px 8px 2px 2px;\n border: 1px solid transparent;\n}\n.ff-plus-icon .button-icon {\n width: 20px;\n height: 20px;\n border: 1px solid transparent;\n border-radius: 50%;\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n background-color: var(--hover-color);\n}\n.ff-plus-icon .button-icon .ff-icon-color path {\n color: var(--secondary-icon-color);\n}\n.ff-plus-icon .icon-name {\n color: var(--primary-icon-color);\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n}\n.ff-plus-icon:hover {\n border: 1px solid var(--secondary-icon-color);\n background-color: var(--hover-color);\n}\n.ff-plus-icon:hover .icon-name {\n font-weight: 600;\n color: var(--secondary-icon-color);\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n}\n.ff-plus-icon:hover .button-icon {\n width: 20px;\n height: 20px;\n border: 1px solid transparent;\n border-radius: 50%;\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n background-color: var(--secondary-icon-color);\n}\n.ff-plus-icon:hover .button-icon .ff-icon-color path {\n color: var(--primary-icon-color);\n}";
17531
17540
  styleInject(css_248z$u);
17532
17541
 
17533
17542
  const IconButton = ({
@@ -17609,10 +17618,9 @@ const Modal = ({
17609
17618
  children: jsxRuntime.jsxs("div", {
17610
17619
  style: {
17611
17620
  boxShadow: boxShadow,
17612
- borderRadius: isHeaderDisplayed || isFooterDisplayed ? '12px' : '0px' // Apply based on conditions
17621
+ borderRadius: '12px'
17613
17622
  },
17614
- className: "ff-modal-container" // New container class for consistency
17615
- ,
17623
+ className: "ff-modal-container",
17616
17624
  children: [jsxRuntime.jsxs("div", {
17617
17625
  className: classNames(`ff-modal-content ${currentTheme} ${contentClassName}`, {
17618
17626
  'modal-bottom-border': !isFooterDisplayed,
@@ -22529,7 +22537,7 @@ const VariableInput = ({
22529
22537
  });
22530
22538
  };
22531
22539
 
22532
- var css_248z$r = ".ff-all-project {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n}\n.ff-all-project .ff-all-project-dropdown {\n background-color: var(--secondary-icon-color);\n color: var(--expandable-menu-default-bg);\n height: 24px;\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n gap: 10px;\n padding: 4px;\n}\n.ff-all-project .ff-all-project-dropdown .label-icon {\n height: 16px;\n width: 16px;\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n}\n.ff-all-project .ff-projects-dropdown {\n width: 202px;\n position: absolute;\n top: 50px;\n padding: 1px;\n border: 0.5px solid var(--expandable-menu-default-bg);\n border-radius: 4px;\n background-color: var(--secondary-icon-color);\n color: var(--primary-icon-color);\n}\n.ff-all-project .ff-projects-dropdown .ff-projects-search {\n width: 99%;\n margin-bottom: 1px;\n}\n.ff-all-project .ff-projects-dropdown .ff-projects-search input {\n height: 30px;\n width: inherit;\n border-radius: 4px;\n border-style: none;\n}\n.ff-all-project .ff-projects-dropdown .ff-projects-search input::placeholder {\n padding-left: 28px;\n font-size: 8px;\n line-height: 12px;\n}\n.ff-all-project .ff-projects-dropdown .ff-projects-search span {\n position: absolute;\n top: 11px;\n left: 8px;\n}\n.ff-all-project .ff-projects-dropdown .scroll {\n max-height: 90px;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n.ff-all-project .ff-projects-dropdown .scroll::-webkit-scrollbar {\n width: 2px;\n}\n.ff-all-project .ff-projects-dropdown .scroll::-webkit-scrollbar-thumb {\n background: var(--primary-icon-color);\n border-radius: 2px;\n}\n.ff-all-project .ff-projects-dropdown .ff-all-projects-options {\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n justify-content: flex-start;\n gap: 4px;\n}\n.ff-all-project .ff-projects-dropdown .ff-all-projects-options .ff-projects-icons {\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n height: 24px;\n width: 24px;\n}\n.ff-all-project .ff-projects-dropdown .ff-all-projects-options .ff-projects-icons svg path {\n fill: var(--primary-icon-color);\n}\n.ff-all-project .ff-projects-dropdown .ff-all-projects-options.ff-selected-option,\n.ff-all-project .ff-projects-dropdown .ff-all-projects-options:hover {\n background-color: var(--primary-icon-color);\n color: var(--secondary-icon-color);\n}\n.ff-all-project .ff-projects-dropdown .ff-all-projects-options.ff-selected-option svg path,\n.ff-all-project .ff-projects-dropdown .ff-all-projects-options:hover svg path {\n fill: var(--secondary-icon-color);\n}\n.ff-all-project .ff-projects-dropdown .option-card .ff-projects-options {\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n justify-content: flex-start;\n gap: 4px;\n white-space: nowrap;\n}\n.ff-all-project .ff-projects-dropdown .option-card .ff-projects-options .ff-projects-icons {\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n height: 24px;\n width: 24px;\n}\n.ff-all-project .ff-projects-dropdown .option-card .ff-projects-options .ff-projects-icons svg path {\n fill: var(--primary-icon-color);\n}\n.ff-all-project .ff-projects-dropdown .option-card .ff-projects-options.ff-selected-option,\n.ff-all-project .ff-projects-dropdown .option-card .ff-projects-options:hover {\n background-color: var(--primary-icon-color);\n color: var(--secondary-icon-color);\n}\n.ff-all-project .ff-projects-dropdown .option-card .ff-projects-options.ff-selected-option svg path,\n.ff-all-project .ff-projects-dropdown .option-card .ff-projects-options:hover svg path {\n fill: var(--secondary-icon-color);\n}\n.ff-all-project .ff-projects-dropdown .ff-selected-option {\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n justify-content: flex-start;\n gap: 4px;\n background-color: var(--primary-icon-color);\n color: var(--secondary-icon-color);\n border-radius: 4px;\n}\n.ff-all-project .ff-projects-dropdown .ff-selected-option .ff-projects-icons svg path {\n fill: var(--secondary-icon-color);\n}";
22540
+ var css_248z$r = ".ff-all-project {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n}\n.ff-all-project .ff-all-project-dropdown {\n background-color: var(--secondary-icon-color);\n color: var(--expandable-menu-default-bg);\n height: 24px;\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n gap: 10px;\n padding: 4px;\n}\n.ff-all-project .ff-all-project-dropdown .label-icon {\n height: 16px;\n width: 16px;\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n}\n.ff-all-project .ff-projects-dropdown {\n width: 202px;\n position: absolute;\n top: 50px;\n padding: 1px;\n border: 0.5px solid var(--expandable-menu-default-bg);\n border-radius: 4px;\n background-color: var(--secondary-icon-color);\n color: var(--primary-icon-color);\n}\n.ff-all-project .ff-projects-dropdown .ff-projects-search {\n width: 99%;\n margin-bottom: 1px;\n}\n.ff-all-project .ff-projects-dropdown .ff-projects-search input {\n height: 30px;\n width: inherit;\n border-radius: 4px;\n border-style: none;\n}\n.ff-all-project .ff-projects-dropdown .ff-projects-search input::placeholder {\n padding-left: 28px;\n font-size: 8px;\n line-height: 12px;\n}\n.ff-all-project .ff-projects-dropdown .ff-projects-search span {\n position: absolute;\n top: 11px;\n left: 8px;\n}\n.ff-all-project .ff-projects-dropdown .scroll {\n max-height: 256px;\n overflow-x: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n.ff-all-project .ff-projects-dropdown .scroll::-webkit-scrollbar {\n width: 2px;\n}\n.ff-all-project .ff-projects-dropdown .scroll::-webkit-scrollbar-thumb {\n background: var(--primary-icon-color);\n border-radius: 2px;\n}\n.ff-all-project .ff-projects-dropdown .ff-all-projects-options {\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n justify-content: flex-start;\n gap: 4px;\n}\n.ff-all-project .ff-projects-dropdown .ff-all-projects-options .ff-projects-icons {\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n height: 24px;\n width: 24px;\n}\n.ff-all-project .ff-projects-dropdown .ff-all-projects-options .ff-projects-icons svg path {\n fill: var(--primary-icon-color);\n}\n.ff-all-project .ff-projects-dropdown .ff-all-projects-options.ff-selected-option,\n.ff-all-project .ff-projects-dropdown .ff-all-projects-options:hover {\n background-color: var(--primary-icon-color);\n color: var(--secondary-icon-color);\n}\n.ff-all-project .ff-projects-dropdown .ff-all-projects-options.ff-selected-option svg path,\n.ff-all-project .ff-projects-dropdown .ff-all-projects-options:hover svg path {\n fill: var(--secondary-icon-color);\n}\n.ff-all-project .ff-projects-dropdown .option-card .ff-projects-options {\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n justify-content: flex-start;\n gap: 4px;\n white-space: nowrap;\n}\n.ff-all-project .ff-projects-dropdown .option-card .ff-projects-options .ff-projects-icons {\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n height: 24px;\n width: 24px;\n}\n.ff-all-project .ff-projects-dropdown .option-card .ff-projects-options .ff-projects-icons svg path {\n fill: var(--primary-icon-color);\n}\n.ff-all-project .ff-projects-dropdown .option-card .ff-projects-options.ff-selected-option,\n.ff-all-project .ff-projects-dropdown .option-card .ff-projects-options:hover {\n background-color: var(--primary-icon-color);\n color: var(--secondary-icon-color);\n}\n.ff-all-project .ff-projects-dropdown .option-card .ff-projects-options.ff-selected-option svg path,\n.ff-all-project .ff-projects-dropdown .option-card .ff-projects-options:hover svg path {\n fill: var(--secondary-icon-color);\n}\n.ff-all-project .ff-projects-dropdown .ff-selected-option {\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n justify-content: flex-start;\n gap: 4px;\n background-color: var(--primary-icon-color);\n color: var(--secondary-icon-color);\n border-radius: 4px;\n}\n.ff-all-project .ff-projects-dropdown .ff-selected-option .ff-projects-icons svg path {\n fill: var(--secondary-icon-color);\n}";
22533
22541
  styleInject(css_248z$r);
22534
22542
 
22535
22543
  const AllProjectsDropdown = ({
@@ -22584,7 +22592,8 @@ const AllProjectsDropdown = ({
22584
22592
  name: "arrows_down_icon",
22585
22593
  color: "var(--primary-icon-color)",
22586
22594
  height: 8,
22587
- width: 8
22595
+ width: 8,
22596
+ hoverEffect: false
22588
22597
  })
22589
22598
  })]
22590
22599
  }), showOptions && jsxRuntime.jsxs("div", {
@@ -22941,7 +22950,7 @@ const Paper = ({
22941
22950
  });
22942
22951
  };
22943
22952
 
22944
- var css_248z$n = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs, .ff-dashboard-donut-chart-section .ff-legend-table .ff-table-header, .ff-dashboard-donut-chart-section .ff-legend-table .ff-legend-item .ff-legend-name,\n.ff-dashboard-donut-chart-section .ff-legend-table .ff-legend-item .ff-legend-percentage,\n.ff-dashboard-donut-chart-section .ff-legend-table .ff-legend-item .ff-legend-count {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd, .ff-dashboard-donut-chart-section .ff-dashboard-donut-chart-svg-container svg text:nth-of-type(2) {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl, .ff-dashboard-donut-chart-section .ff-dashboard-donut-chart-svg-container svg text:nth-of-type(1) {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-dashboard-donut-chart-section {\n display: flex;\n flex-direction: column;\n align-items: center;\n}\n.ff-dashboard-donut-chart-section-table-legend {\n flex-direction: row;\n}\n.ff-dashboard-donut-chart-section .ff-dashboard-donut-chart-svg-container {\n text-align: center;\n}\n.ff-dashboard-donut-chart-section .ff-dashboard-donut-chart-svg-container svg text:nth-of-type(1) {\n font-weight: 600;\n}\n.ff-dashboard-donut-chart-section .ff-dashboard-donut-chart-svg-container svg text:nth-of-type(2) {\n font-weight: 500;\n}\n.ff-dashboard-donut-chart-section .ff-dashboard-donut-chart-svg-container .ff-donut-chart-tooltip {\n position: fixed;\n padding: 5px;\n border-radius: 4px;\n pointer-events: none;\n background-color: var(--tooltip-bg-color);\n color: var(--tooltip-text-color);\n}\n.ff-dashboard-donut-chart-section .ff-legend-container {\n display: grid;\n gap: 10px;\n}\n.ff-dashboard-donut-chart-section .ff-legend-container.numberLegend {\n grid-template-columns: repeat(3, 1fr);\n}\n.ff-dashboard-donut-chart-section .ff-legend-container.numberLegend .ff-legend-item {\n display: flex;\n flex-direction: column;\n align-items: center;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.ff-dashboard-donut-chart-section .ff-legend-container.pillLegend {\n grid-template-columns: repeat(2, 1fr);\n}\n.ff-dashboard-donut-chart-section .ff-legend-container.pillLegend .ff-legend-item {\n display: flex;\n align-items: center;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.ff-dashboard-donut-chart-section .ff-legend-container.pillLegend .ff-legend-item .ff-legend-capsule {\n background-color: var(--status-success-text-color);\n color: var(--tooltip-text-color);\n border-radius: 15px;\n min-width: 25px;\n height: 18px;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n.ff-dashboard-donut-chart-section .ff-legend-container.pillLegend .ff-legend-item .ff-legend-key {\n margin-left: 8px;\n}\n.ff-dashboard-donut-chart-section .ff-legend-container.memoryLegend {\n display: flex;\n flex-wrap: wrap;\n justify-content: space-around;\n}\n.ff-dashboard-donut-chart-section .ff-legend-container.memoryLegend .ff-legend-item {\n box-sizing: border-box;\n flex: 1 1 calc(33.33% - 10px);\n display: flex;\n flex-direction: column;\n align-items: center;\n width: 100%;\n padding-right: 10px;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.ff-dashboard-donut-chart-section .ff-legend-table-wrapper {\n overflow: hidden;\n border: 1px solid var(--border-color);\n border-radius: 4px;\n margin-left: 1rem;\n}\n.ff-dashboard-donut-chart-section .ff-legend-table {\n width: 100%;\n min-width: 300px;\n border-collapse: collapse;\n text-align: left;\n}\n.ff-dashboard-donut-chart-section .ff-legend-table .ff-table-header {\n font-weight: bold;\n background-color: var(--tabs-bg-color);\n color: var(--input-hover-border-color);\n padding: 0.5rem;\n}\n.ff-dashboard-donut-chart-section .ff-legend-table .ff-table-header:last-child {\n text-align: right;\n}\n.ff-dashboard-donut-chart-section .ff-legend-table .ff-legend-capsule {\n background-color: var(--status-success-text-color);\n color: var(--tooltip-text-color);\n border-radius: 1rem;\n min-width: 22px;\n height: 16px;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n.ff-dashboard-donut-chart-section .ff-legend-table .ff-legend-item .ff-legend-name,\n.ff-dashboard-donut-chart-section .ff-legend-table .ff-legend-item .ff-legend-percentage,\n.ff-dashboard-donut-chart-section .ff-legend-table .ff-legend-item .ff-legend-count {\n padding: 0.5rem;\n color: var(--input-hover-border-color);\n}\n.ff-dashboard-donut-chart-section .ff-legend-table .ff-legend-item .ff-legend-name {\n display: flex;\n align-items: baseline;\n gap: 5px;\n color: var(--input-hover-border-color);\n}\n.ff-dashboard-donut-chart-section .ff-legend-table .ff-legend-item .ff-legend-count {\n text-align: right;\n}";
22953
+ var css_248z$n = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs, .ff-dashboard-donut-chart-section .ff-legend-table .ff-table-header, .ff-dashboard-donut-chart-section .ff-legend-table .ff-legend-item .ff-legend-name,\n.ff-dashboard-donut-chart-section .ff-legend-table .ff-legend-item .ff-legend-percentage,\n.ff-dashboard-donut-chart-section .ff-legend-table .ff-legend-item .ff-legend-count {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd, .ff-dashboard-donut-chart-section .ff-dashboard-donut-chart-svg-container svg text:nth-of-type(2) {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl, .ff-dashboard-donut-chart-section .ff-dashboard-donut-chart-svg-container svg text:nth-of-type(1) {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-dashboard-donut-chart-section {\n display: flex;\n flex-direction: column;\n align-items: center;\n}\n.ff-dashboard-donut-chart-section-table-legend {\n flex-direction: row;\n}\n.ff-dashboard-donut-chart-section .ff-dashboard-donut-chart-svg-container {\n text-align: center;\n}\n.ff-dashboard-donut-chart-section .ff-dashboard-donut-chart-svg-container svg text:nth-of-type(1) {\n font-weight: 600;\n}\n.ff-dashboard-donut-chart-section .ff-dashboard-donut-chart-svg-container svg text:nth-of-type(2) {\n font-weight: 500;\n}\n.ff-dashboard-donut-chart-section .ff-dashboard-donut-chart-svg-container .ff-donut-chart-tooltip {\n position: fixed;\n padding: 5px;\n border-radius: 4px;\n pointer-events: none;\n background-color: var(--tooltip-bg-color);\n color: var(--tooltip-text-color);\n}\n.ff-dashboard-donut-chart-section .ff-legend-container {\n display: grid;\n gap: 10px;\n}\n.ff-dashboard-donut-chart-section .ff-legend-container.numberLegend {\n grid-template-columns: repeat(3, 1fr);\n}\n.ff-dashboard-donut-chart-section .ff-legend-container.numberLegend .ff-legend-item {\n display: flex;\n flex-direction: column;\n align-items: center;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.ff-dashboard-donut-chart-section .ff-legend-container.pillLegend {\n grid-template-columns: repeat(2, 1fr);\n}\n.ff-dashboard-donut-chart-section .ff-legend-container.pillLegend .ff-legend-item {\n display: flex;\n align-items: center;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.ff-dashboard-donut-chart-section .ff-legend-container.pillLegend .ff-legend-item .ff-legend-capsule {\n background-color: var(--status-success-text-color);\n color: var(--tooltip-text-color);\n border-radius: 15px;\n min-width: 25px;\n height: 18px;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n.ff-dashboard-donut-chart-section .ff-legend-container.pillLegend .ff-legend-item .ff-legend-key {\n margin-left: 8px;\n}\n.ff-dashboard-donut-chart-section .ff-legend-container.memoryLegend {\n display: flex;\n flex-wrap: wrap;\n justify-content: space-around;\n}\n.ff-dashboard-donut-chart-section .ff-legend-container.memoryLegend .ff-legend-item {\n box-sizing: border-box;\n flex: 1 1 calc(33.33% - 10px);\n display: flex;\n flex-direction: column;\n align-items: center;\n width: 100%;\n padding-right: 10px;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.ff-dashboard-donut-chart-section .ff-legend-table-wrapper {\n overflow: hidden;\n border: 1px solid var(--border-color);\n border-radius: 4px;\n margin-left: 1rem;\n}\n.ff-dashboard-donut-chart-section .ff-legend-table {\n width: 100%;\n min-width: 300px;\n border-collapse: collapse;\n text-align: left;\n}\n.ff-dashboard-donut-chart-section .ff-legend-table .ff-table-header {\n font-weight: bold;\n background-color: var(--tabs-bg-color);\n color: var(--input-hover-border-color);\n padding: 0.5rem;\n}\n.ff-dashboard-donut-chart-section .ff-legend-table .ff-table-header:last-child {\n text-align: right;\n}\n.ff-dashboard-donut-chart-section .ff-legend-table .ff-legend-capsule {\n background-color: var(--status-success-text-color);\n color: var(--tooltip-text-color);\n border-radius: 1rem;\n min-width: 22px;\n height: 16px;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n.ff-dashboard-donut-chart-section .ff-legend-table .ff-legend-item .ff-legend-name,\n.ff-dashboard-donut-chart-section .ff-legend-table .ff-legend-item .ff-legend-percentage,\n.ff-dashboard-donut-chart-section .ff-legend-table .ff-legend-item .ff-legend-count {\n padding: 0.5rem;\n color: var(--input-hover-border-color);\n}\n.ff-dashboard-donut-chart-section .ff-legend-table .ff-legend-item .ff-legend-name {\n display: flex;\n align-items: baseline;\n gap: 5px;\n color: var(--input-hover-border-color);\n}\n.ff-dashboard-donut-chart-section .ff-legend-table .ff-legend-item .ff-legend-count {\n text-align: right;\n}";
22945
22954
  styleInject(css_248z$n);
22946
22955
 
22947
22956
  const calculateArc$2 = (x, y, radius, startAngle, endAngle) => {
@@ -24971,7 +24980,7 @@ const nlpDropdownDefaultCSSData = {
24971
24980
  dropDownWrapperPadding: 0
24972
24981
  };
24973
24982
 
24974
- var css_248z$l = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-nlp-dropdown-wrapper .ff-nlp-options-wrapper {\n max-height: 160px;\n z-index: 100;\n position: absolute;\n min-width: 100px;\n border: 1px solid var(--ff-select-option-border-color);\n box-sizing: border-box;\n margin-top: 4px;\n border-radius: 4px;\n background-color: var(--ff-select-background-color);\n box-shadow: 0px 1px 4px 0px var(--ff-select-option-wrapper-box-shadow);\n overflow: hidden auto;\n display: flex;\n justify-content: space-between;\n}\n.ff-nlp-dropdown-wrapper .ff-nlp-options-wrapper .ff-nlp-options-wrapper1 {\n max-height: 160px;\n z-index: 100;\n min-width: auto;\n box-sizing: border-box;\n}\n.ff-nlp-dropdown-wrapper .ff-nlp-options-wrapper::-webkit-scrollbar {\n width: 4px;\n height: 12px;\n}\n.ff-nlp-dropdown-wrapper .ff-nlp-options-wrapper::-webkit-scrollbar-thumb {\n background-color: var(--ff-select-scroll-thumb-color);\n border-radius: 4px;\n}\n.ff-nlp-dropdown-wrapper .ff-nlp-options-wrapper::-webkit-scrollbar-track {\n background-color: transparent;\n border-radius: 4px;\n}\n.ff-nlp-dropdown-wrapper .ff-nlp-options-wrapper .ff-nlp-option {\n width: calc(100% - 18px);\n border: 1px solid transparent;\n border-radius: 4px;\n padding: 0px 8px;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n cursor: pointer;\n}\n.ff-nlp-dropdown-wrapper .ff-nlp-options-wrapper .ff-nlp-option:hover {\n border-color: var(--ff-select-background-color);\n background-color: var(--ff-select-option-hover-color);\n}\n.ff-nlp-dropdown-wrapper .ff-nlp-options-wrapper .ff-nlp-no-option {\n width: calc(100% - 16px);\n margin: 0;\n overflow: hidden;\n padding: 0px 8px;\n white-space: nowrap;\n text-overflow: ellipsis;\n cursor: not-allowed;\n}\n.ff-nlp-dropdown-wrapper .ff-nlp-data {\n width: 200px;\n height: 134px;\n border: 1px solid transparent;\n border-radius: 5px;\n box-shadow: 0px 1px 4px 0px var(--ff-select-option-wrapper-box-shadow);\n overflow: scroll;\n}";
24983
+ var css_248z$l = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-nlp-dropdown-wrapper .ff-nlp-options-wrapper {\n max-height: 160px;\n z-index: 100;\n position: absolute;\n min-width: 100px;\n border: 1px solid var(--ff-select-option-border-color);\n box-sizing: border-box;\n margin-top: 4px;\n border-radius: 4px;\n background-color: var(--ff-select-background-color);\n box-shadow: 0px 1px 4px 0px var(--ff-select-option-wrapper-box-shadow);\n overflow: hidden auto;\n display: flex;\n justify-content: space-between;\n}\n.ff-nlp-dropdown-wrapper .ff-nlp-options-wrapper .ff-nlp-options-wrapper1 {\n max-height: 160px;\n z-index: 100;\n min-width: auto;\n box-sizing: border-box;\n}\n.ff-nlp-dropdown-wrapper .ff-nlp-options-wrapper::-webkit-scrollbar {\n width: 4px;\n height: 12px;\n}\n.ff-nlp-dropdown-wrapper .ff-nlp-options-wrapper::-webkit-scrollbar-thumb {\n background-color: var(--ff-select-scroll-thumb-color);\n border-radius: 4px;\n}\n.ff-nlp-dropdown-wrapper .ff-nlp-options-wrapper::-webkit-scrollbar-track {\n background-color: transparent;\n border-radius: 4px;\n}\n.ff-nlp-dropdown-wrapper .ff-nlp-options-wrapper .ff-nlp-option {\n width: calc(100% - 18px);\n border: 1px solid transparent;\n border-radius: 4px;\n padding: 0px 8px;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n cursor: pointer;\n}\n.ff-nlp-dropdown-wrapper .ff-nlp-options-wrapper .ff-nlp-option:hover {\n border-color: var(--ff-select-background-color);\n background-color: var(--ff-select-option-hover-color);\n}\n.ff-nlp-dropdown-wrapper .ff-nlp-options-wrapper .ff-nlp-no-option {\n width: calc(100% - 16px);\n margin: 0;\n overflow: hidden;\n padding: 0px 8px;\n white-space: nowrap;\n text-overflow: ellipsis;\n cursor: not-allowed;\n}\n.ff-nlp-dropdown-wrapper .ff-nlp-data {\n width: 200px;\n height: 134px;\n border: 1px solid transparent;\n border-radius: 5px;\n box-shadow: 0px 1px 4px 0px var(--ff-select-option-wrapper-box-shadow);\n overflow: scroll;\n}";
24975
24984
  styleInject(css_248z$l);
24976
24985
 
24977
24986
  const NlpDropdown = ({
@@ -25136,7 +25145,7 @@ const NlpDropdown = ({
25136
25145
  });
25137
25146
  };
25138
25147
 
25139
- var css_248z$k = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-nlp-input-wrapper .ff-nlp-input, .ff-nlp-input-wrapper .ff-nlp-input-input {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8, .ff-nlp-input-wrapper .ff-nlp-input-fieldset .ff-nlp-input-legend, .ff-nlp-input-wrapper .ff-nlp-input-label--active {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-nlp-input-wrapper {\n position: relative;\n}\n.ff-nlp-input-wrapper .ff-nlp-input {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n min-height: 32px;\n min-width: 489px;\n display: flex;\n align-items: end;\n position: relative;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset {\n margin: 0;\n padding: 25px 0px 0px 8px;\n border: 1px solid transparent;\n box-sizing: border-box;\n height: 100%;\n width: 100%;\n border-radius: 4px;\n display: block;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset--border-radius {\n border-radius: 0px 4px 4px 0px;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset--no-label {\n padding: 30px 0px 0px 8px;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset--default {\n opacity: 0;\n border-color: var(--ff-nlp-input-border-color);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset--active {\n opacity: 1;\n border-color: var(--ff-nlp-input-brand-color);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset--option {\n opacity: 1;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset--no-border {\n border-color: transparent;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset--error {\n border-color: var(--error-light);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset .ff-nlp-input-legend {\n padding: 0 2px;\n letter-spacing: 0.5px;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset .ff-nlp-input-legend--default {\n transition: opacity 0.3s ease-out, transform 0.3s ease-out, font-size 0.3s ease-out, padding 0.3s ease-out;\n opacity: 0;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset .ff-nlp-input-legend--active {\n transition: opacity 0.25s ease-out, transform 0.25s ease-out, font-size 0.25s ease-out, padding 0.25s ease-out;\n opacity: 1;\n color: var(--ff-nlp-input-brand-color);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset .ff-nlp-input-legend--option {\n opacity: 1;\n color: var(--ff-nlp-input-default-color);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset .ff-nlp-input-legend--error {\n color: var(--error-light);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset .ff-nlp-input-legend--required {\n margin-right: 2px;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input {\n position: absolute;\n top: 6px;\n right: auto;\n bottom: auto;\n left: auto;\n width: calc(100% - 38px);\n min-height: calc(100% - 8px);\n padding: 0 28px 0 8px;\n border-radius: 4px;\n border: 1px solid transparent;\n z-index: 100;\n background: transparent;\n outline: none;\n color: var(--ff-nlp-input-text-color);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input:hover ~ .ff-nlp-input-label {\n color: var(--ff-nlp-input-text-hover-color);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--border-radius {\n border-radius: 0px 4px 4px 0px;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--default {\n opacity: 1;\n border-color: var(--ff-nlp-input-border-color);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--default:hover {\n border-color: var(--ff-nlp-input-text-color);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--default:hover ~ .ff-nlp-input-fieldset--option {\n border-color: var(--ff-nlp-input-text-color);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--default:hover ~ .ff-nlp-input-fieldset--option .ff-nlp-input-legend--option {\n color: var(--ff-nlp-input-text-color);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--no-label {\n min-height: calc(100% - 2px);\n margin-top: 0px;\n top: 0px;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--active {\n border-color: transparent;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--active:hover {\n border-color: transparent;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--no-border {\n border: none;\n border-color: transparent;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--no-border:hover {\n border-color: transparent;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--no-border:hover ~ .ff-nlp-input-fieldset--no-border {\n border-color: transparent;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--disable {\n border-color: var(--ff-nlp-input-border-color);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--disable:hover {\n border-color: var(--ff-nlp-input-border-color);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--disable:hover ~ .ff-nlp-input-label--default {\n color: var(--ff-nlp-input-default-color);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--error {\n border-color: var(--error-light);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--error:hover {\n border-color: var(--error-light);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-label {\n position: absolute;\n top: 13px;\n right: auto;\n bottom: auto;\n left: 8px;\n z-index: 1;\n font-size: 12px;\n top: 60%;\n padding-left: 8px;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-label--default {\n transition: opacity 0.3s ease-out, transform 0.3s ease-out, font-size 0.3s ease-out, padding 0.3s ease-out;\n opacity: 1;\n color: var(--ff-nlp-input-default-color);\n transform: translateY(-50%);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-label--active {\n transition: opacity 0.3s ease-out, transform 0.3s ease-out, font-size 0.3s ease-out, padding 0.3s ease-out;\n opacity: 0;\n transform: translateY(-150%);\n padding: 0 6px;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-label--required {\n margin-right: 2px;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-arrow {\n position: absolute;\n top: 60%;\n height: 100%;\n right: 10px;\n transform: rotateX(180deg) translateY(50%);\n cursor: pointer;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-arrow--no-label {\n top: 50%;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-arrow--down {\n transform: rotateX(0deg) translateY(-50%);\n z-index: 101;\n}\n.ff-nlp-input-wrapper-error-text {\n position: absolute;\n top: auto;\n right: auto;\n bottom: -14px;\n left: 12px;\n white-space: nowrap;\n}";
25148
+ var css_248z$k = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-nlp-input-wrapper .ff-nlp-input, .ff-nlp-input-wrapper .ff-nlp-input-input {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8, .ff-nlp-input-wrapper .ff-nlp-input-fieldset .ff-nlp-input-legend, .ff-nlp-input-wrapper .ff-nlp-input-label--active {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-nlp-input-wrapper {\n position: relative;\n}\n.ff-nlp-input-wrapper .ff-nlp-input {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n min-height: 32px;\n min-width: 489px;\n display: flex;\n align-items: end;\n position: relative;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset {\n margin: 0;\n padding: 25px 0px 0px 8px;\n border: 1px solid transparent;\n box-sizing: border-box;\n height: 100%;\n width: 100%;\n border-radius: 4px;\n display: block;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset--border-radius {\n border-radius: 0px 4px 4px 0px;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset--no-label {\n padding: 30px 0px 0px 8px;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset--default {\n opacity: 0;\n border-color: var(--ff-nlp-input-border-color);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset--active {\n opacity: 1;\n border-color: var(--ff-nlp-input-brand-color);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset--option {\n opacity: 1;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset--no-border {\n border-color: transparent;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset--error {\n border-color: var(--error-light);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset .ff-nlp-input-legend {\n padding: 0 2px;\n letter-spacing: 0.5px;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset .ff-nlp-input-legend--default {\n transition: opacity 0.3s ease-out, transform 0.3s ease-out, font-size 0.3s ease-out, padding 0.3s ease-out;\n opacity: 0;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset .ff-nlp-input-legend--active {\n transition: opacity 0.25s ease-out, transform 0.25s ease-out, font-size 0.25s ease-out, padding 0.25s ease-out;\n opacity: 1;\n color: var(--ff-nlp-input-brand-color);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset .ff-nlp-input-legend--option {\n opacity: 1;\n color: var(--ff-nlp-input-default-color);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset .ff-nlp-input-legend--error {\n color: var(--error-light);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-fieldset .ff-nlp-input-legend--required {\n margin-right: 2px;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input {\n position: absolute;\n top: 6px;\n right: auto;\n bottom: auto;\n left: auto;\n width: calc(100% - 38px);\n min-height: calc(100% - 8px);\n padding: 0 28px 0 8px;\n border-radius: 4px;\n border: 1px solid transparent;\n z-index: 100;\n background: transparent;\n outline: none;\n color: var(--ff-nlp-input-text-color);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input:hover ~ .ff-nlp-input-label {\n color: var(--ff-nlp-input-text-hover-color);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--border-radius {\n border-radius: 0px 4px 4px 0px;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--default {\n opacity: 1;\n border-color: var(--ff-nlp-input-border-color);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--default:hover {\n border-color: var(--ff-nlp-input-text-color);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--default:hover ~ .ff-nlp-input-fieldset--option {\n border-color: var(--ff-nlp-input-text-color);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--default:hover ~ .ff-nlp-input-fieldset--option .ff-nlp-input-legend--option {\n color: var(--ff-nlp-input-text-color);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--no-label {\n min-height: calc(100% - 2px);\n margin-top: 0px;\n top: 0px;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--active {\n border-color: transparent;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--active:hover {\n border-color: transparent;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--no-border {\n border: none;\n border-color: transparent;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--no-border:hover {\n border-color: transparent;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--no-border:hover ~ .ff-nlp-input-fieldset--no-border {\n border-color: transparent;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--disable {\n border-color: var(--ff-nlp-input-border-color);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--disable:hover {\n border-color: var(--ff-nlp-input-border-color);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--disable:hover ~ .ff-nlp-input-label--default {\n color: var(--ff-nlp-input-default-color);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--error {\n border-color: var(--error-light);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-input--error:hover {\n border-color: var(--error-light);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-label {\n position: absolute;\n top: 13px;\n right: auto;\n bottom: auto;\n left: 8px;\n z-index: 1;\n font-size: 12px;\n top: 60%;\n padding-left: 8px;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-label--default {\n transition: opacity 0.3s ease-out, transform 0.3s ease-out, font-size 0.3s ease-out, padding 0.3s ease-out;\n opacity: 1;\n color: var(--ff-nlp-input-default-color);\n transform: translateY(-50%);\n}\n.ff-nlp-input-wrapper .ff-nlp-input-label--active {\n transition: opacity 0.3s ease-out, transform 0.3s ease-out, font-size 0.3s ease-out, padding 0.3s ease-out;\n opacity: 0;\n transform: translateY(-150%);\n padding: 0 6px;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-label--required {\n margin-right: 2px;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-arrow {\n position: absolute;\n top: 60%;\n height: 100%;\n right: 10px;\n transform: rotateX(180deg) translateY(50%);\n cursor: pointer;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-arrow--no-label {\n top: 50%;\n}\n.ff-nlp-input-wrapper .ff-nlp-input-arrow--down {\n transform: rotateX(0deg) translateY(-50%);\n z-index: 101;\n}\n.ff-nlp-input-wrapper-error-text {\n position: absolute;\n top: auto;\n right: auto;\n bottom: -14px;\n left: 12px;\n white-space: nowrap;\n}";
25140
25149
  styleInject(css_248z$k);
25141
25150
 
25142
25151
  const nlpInputReducer = (state, action) => {
@@ -26251,7 +26260,7 @@ const toast = {
26251
26260
  info: (arg1, arg2) => openToast('info', arg1, arg2)
26252
26261
  };
26253
26262
 
26254
- var css_248z$b = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-label-edit-text-field .ff-text-field,\n.ff-label-edit-text-field .dropdown, .ff-label-edit-text-field .ff-text-dropdown-field {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8, .ff-label-edit-text-field .ff-label, .ff-label-edit-text-field .ff-textfield-label {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-label-edit-text-field {\n display: flex;\n flex-direction: column;\n position: relative;\n width: 100%;\n}\n.ff-label-edit-text-field .ff-label-text-field {\n display: flex;\n gap: 10px;\n}\n.ff-label-edit-text-field .ff-label-text-field-with-dropdown,\n.ff-label-edit-text-field .ff-label-text-field-without-dropdown {\n position: relative;\n display: flex;\n align-items: center;\n}\n.ff-label-edit-text-field .ff-label, .ff-label-edit-text-field .ff-textfield-label {\n position: absolute;\n top: 0;\n left: 10px;\n transform: translateY(-50%);\n transition: all 0.2s ease;\n color: var(--label-edit-text-label-color);\n background: var(--label-edit-text-background-color);\n padding: 0 4px;\n}\n.ff-label-edit-text-field .ff-textfield-label {\n top: 5px;\n}\n.ff-label-edit-text-field .display-text {\n padding: 4px;\n border-radius: 4px;\n cursor: pointer;\n display: flex;\n align-items: center;\n}\n.ff-label-edit-text-field .ff-text-field,\n.ff-label-edit-text-field .dropdown {\n border: 1px solid var(--label-edit-text-label-color);\n outline: none;\n width: fit-content;\n}\n.ff-label-edit-text-field .ff-text-field {\n padding: 0 4px;\n border-radius: 4px;\n}\n.ff-label-edit-text-field .ff-text-dropdown-field {\n flex: 2;\n border: 1px solid var(--label-edit-text-label-color);\n border-radius: 4px 0 0 4px;\n border-right: none;\n border-width: thin;\n padding-left: 5px;\n}\n.ff-label-edit-text-field .ff-text-dropdown-field:focus-visible {\n outline: none;\n}\n.ff-label-edit-text-field .dropdown {\n border-radius: 0 4px 4px 0;\n flex: 1;\n height: inherit;\n}\n.ff-label-edit-text-field .ff-icon-container {\n display: flex;\n gap: 8px;\n align-items: center;\n}\n.ff-label-edit-text-field .ff-icon-container .confirm-icon,\n.ff-label-edit-text-field .ff-icon-container .cancel-icon {\n cursor: pointer;\n}\n.ff-label-edit-text-field .error-text {\n margin: 0;\n color: var(--label-edit-error-text);\n}";
26263
+ var css_248z$b = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-label-edit-text-field .ff-text-field,\n.ff-label-edit-text-field .dropdown, .ff-label-edit-text-field .ff-text-dropdown-field {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8, .ff-label-edit-text-field .ff-label, .ff-label-edit-text-field .ff-textfield-label {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-label-edit-text-field {\n display: flex;\n flex-direction: column;\n position: relative;\n width: 100%;\n}\n.ff-label-edit-text-field .ff-label-text-field {\n display: flex;\n gap: 10px;\n}\n.ff-label-edit-text-field .ff-label-text-field-with-dropdown,\n.ff-label-edit-text-field .ff-label-text-field-without-dropdown {\n position: relative;\n display: flex;\n align-items: center;\n}\n.ff-label-edit-text-field .ff-label, .ff-label-edit-text-field .ff-textfield-label {\n position: absolute;\n top: 0;\n left: 10px;\n transform: translateY(-50%);\n transition: all 0.2s ease;\n color: var(--label-edit-text-label-color);\n background: var(--label-edit-text-background-color);\n padding: 0 4px;\n}\n.ff-label-edit-text-field .ff-textfield-label {\n top: 5px;\n}\n.ff-label-edit-text-field .display-text {\n padding: 4px;\n border-radius: 4px;\n cursor: pointer;\n display: flex;\n align-items: center;\n}\n.ff-label-edit-text-field .ff-text-field,\n.ff-label-edit-text-field .dropdown {\n border: 1px solid var(--label-edit-text-label-color);\n outline: none;\n width: fit-content;\n}\n.ff-label-edit-text-field .ff-text-field {\n padding: 0 4px;\n border-radius: 4px;\n}\n.ff-label-edit-text-field .ff-text-dropdown-field {\n flex: 2;\n border: 1px solid var(--label-edit-text-label-color);\n border-radius: 4px 0 0 4px;\n border-right: none;\n border-width: thin;\n padding-left: 5px;\n}\n.ff-label-edit-text-field .ff-text-dropdown-field:focus-visible {\n outline: none;\n}\n.ff-label-edit-text-field .dropdown {\n border-radius: 0 4px 4px 0;\n flex: 1;\n height: inherit;\n}\n.ff-label-edit-text-field .ff-icon-container {\n display: flex;\n gap: 8px;\n align-items: center;\n}\n.ff-label-edit-text-field .ff-icon-container .confirm-icon,\n.ff-label-edit-text-field .ff-icon-container .cancel-icon {\n cursor: pointer;\n}\n.ff-label-edit-text-field .error-text {\n margin: 0;\n color: var(--label-edit-error-text);\n}";
26255
26264
  styleInject(css_248z$b);
26256
26265
 
26257
26266
  const getErrorMessage$1 = (inputValue, text, customError, customErrorCondition) => {
@@ -26425,7 +26434,7 @@ const LabelEditTextField = ({
26425
26434
  });
26426
26435
  };
26427
26436
 
26428
- var css_248z$a = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-label-edit-text-field .ff-text-field {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8, .ff-label-edit-text-field .ff-label, .ff-label-edit-text-field .ff-textfield-label {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-label-edit-text-field {\n display: flex;\n flex-direction: column;\n position: relative;\n width: 100%;\n}\n.ff-label-edit-text-field .display-text-container {\n display: flex;\n align-items: center;\n gap: 8px;\n}\n.ff-label-edit-text-field .display-text-container .edit-button {\n padding: 4px 8px;\n background-color: var(--button-background-color);\n color: var(--button-text-color);\n border: 1px solid var(--button-border-color);\n border-radius: 4px;\n cursor: pointer;\n font-size: 12px;\n}\n.ff-label-edit-text-field .display-text-container .edit-button:hover {\n background-color: var(--button-hover-background-color);\n}\n.ff-label-edit-text-field .ff-label-text-field {\n display: flex;\n}\n.ff-label-edit-text-field .ff-label-text-field-with-dropdown,\n.ff-label-edit-text-field .ff-label-text-field-without-dropdown {\n position: relative;\n display: flex;\n align-items: center;\n}\n.ff-label-edit-text-field .ff-label, .ff-label-edit-text-field .ff-textfield-label {\n position: absolute;\n top: 0;\n left: 10px;\n transform: translateY(-50%);\n transition: all 0.2s ease;\n color: var(--label-edit-text-label-color);\n background: var(--label-edit-text-background-color);\n padding: 0 4px;\n}\n.ff-label-edit-text-field .ff-textfield-label {\n top: 5px;\n}\n.ff-label-edit-text-field .display-text {\n border-radius: 4px;\n cursor: pointer;\n display: flex;\n align-items: center;\n}\n.ff-label-edit-text-field .ff-text-field {\n outline: none;\n width: fit-content;\n}\n.ff-label-edit-text-field .ff-text-field-error-border {\n border: 1px solid var(--label-edit-error-text);\n}\n.ff-label-edit-text-field .ff-text-field-border {\n border: 1px solid var(--label-edit-text-label-color);\n}\n.ff-label-edit-text-field .ff-text-field-error-text {\n color: var(--label-edit-error-text);\n}\n.ff-label-edit-text-field .ff-text-field-text {\n color: var(--label-edit-text-label-color);\n}\n.ff-label-edit-text-field .ff-text-field {\n padding: 0 4px;\n border-radius: 4px;\n}\n.ff-label-edit-text-field .ff-icon-container {\n display: flex;\n gap: 8px;\n align-items: center;\n}\n.ff-label-edit-text-field .ff-icon-container .confirm-icon,\n.ff-label-edit-text-field .ff-icon-container .cancel-icon {\n cursor: pointer;\n}\n.ff-label-edit-text-field .error-text {\n color: var(--label-edit-error-text);\n margin: 0;\n}";
26437
+ var css_248z$a = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-label-edit-text-field .ff-text-field {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8, .ff-label-edit-text-field .ff-label, .ff-label-edit-text-field .ff-textfield-label {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-label-edit-text-field {\n display: flex;\n flex-direction: column;\n position: relative;\n width: 100%;\n}\n.ff-label-edit-text-field .display-text-container {\n display: flex;\n align-items: center;\n gap: 8px;\n}\n.ff-label-edit-text-field .display-text-container .edit-button {\n padding: 4px 8px;\n background-color: var(--button-background-color);\n color: var(--button-text-color);\n border: 1px solid var(--button-border-color);\n border-radius: 4px;\n cursor: pointer;\n font-size: 12px;\n}\n.ff-label-edit-text-field .display-text-container .edit-button:hover {\n background-color: var(--button-hover-background-color);\n}\n.ff-label-edit-text-field .ff-label-text-field {\n display: flex;\n}\n.ff-label-edit-text-field .ff-label-text-field-with-dropdown,\n.ff-label-edit-text-field .ff-label-text-field-without-dropdown {\n position: relative;\n display: flex;\n align-items: center;\n}\n.ff-label-edit-text-field .ff-label, .ff-label-edit-text-field .ff-textfield-label {\n position: absolute;\n top: 0;\n left: 10px;\n transform: translateY(-50%);\n transition: all 0.2s ease;\n color: var(--label-edit-text-label-color);\n background: var(--label-edit-text-background-color);\n padding: 0 4px;\n}\n.ff-label-edit-text-field .ff-textfield-label {\n top: 5px;\n}\n.ff-label-edit-text-field .display-text {\n border-radius: 4px;\n cursor: pointer;\n display: flex;\n align-items: center;\n}\n.ff-label-edit-text-field .ff-text-field {\n outline: none;\n width: fit-content;\n}\n.ff-label-edit-text-field .ff-text-field-error-border {\n border: 1px solid var(--label-edit-error-text);\n}\n.ff-label-edit-text-field .ff-text-field-border {\n border: 1px solid var(--label-edit-text-label-color);\n}\n.ff-label-edit-text-field .ff-text-field-error-text {\n color: var(--label-edit-error-text);\n}\n.ff-label-edit-text-field .ff-text-field-text {\n color: var(--label-edit-text-label-color);\n}\n.ff-label-edit-text-field .ff-text-field {\n padding: 0 4px;\n border-radius: 4px;\n}\n.ff-label-edit-text-field .ff-icon-container {\n display: flex;\n gap: 8px;\n align-items: center;\n}\n.ff-label-edit-text-field .ff-icon-container .confirm-icon,\n.ff-label-edit-text-field .ff-icon-container .cancel-icon {\n cursor: pointer;\n}\n.ff-label-edit-text-field .error-text {\n color: var(--label-edit-error-text);\n margin: 0;\n}";
26429
26438
  styleInject(css_248z$a);
26430
26439
 
26431
26440
  const getErrorMessage = (inputValue, text, customError, customErrorCondition) => {
@@ -26572,7 +26581,7 @@ const EditTextField = ({
26572
26581
  });
26573
26582
  };
26574
26583
 
26575
- var css_248z$9 = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-Module-chip {\n width: 75px;\n height: 32px;\n border: 0.5px solid;\n border-radius: 16px;\n color: var(--brand-color);\n cursor: pointer;\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n}\n.ff-Module-chip .ff-Module-label-chip--active {\n color: var(--ff-header-text-color);\n}\n.ff-Module-chip--active {\n background: var(--brand-color);\n}";
26584
+ var css_248z$9 = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-Module-chip {\n width: 75px;\n height: 32px;\n border: 0.5px solid;\n border-radius: 16px;\n color: var(--brand-color);\n cursor: pointer;\n display: flex;\n justify-content: center;\n align-items: center;\n align-content: center;\n}\n.ff-Module-chip .ff-Module-label-chip--active {\n color: var(--ff-header-text-color);\n}\n.ff-Module-chip--active {\n background: var(--brand-color);\n}";
26576
26585
  styleInject(css_248z$9);
26577
26586
 
26578
26587
  const ModuleChip = ({
@@ -26599,7 +26608,7 @@ const ModuleChip = ({
26599
26608
  });
26600
26609
  };
26601
26610
 
26602
- var css_248z$8 = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs, .ff-icon-radial-chart-container svg text {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-icon-radial-chart-container {\n position: relative;\n}\n.ff-icon-radial-chart-container svg .ff-radial-chart-icon-padding {\n padding: 0px;\n}\n.ff-icon-radial-chart-container svg text {\n font-size: var(--fontSize) !important;\n font-weight: 400;\n}\n.ff-icon-radial-chart-container .ff-icon-radial-chart-tooltip {\n position: fixed;\n padding: 5px;\n border-radius: 4px;\n pointer-events: none;\n background-color: var(--tooltip-bg-color);\n color: var(--tooltip-text-color);\n}";
26611
+ var css_248z$8 = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs, .ff-icon-radial-chart-container svg text {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-icon-radial-chart-container {\n position: relative;\n}\n.ff-icon-radial-chart-container svg .ff-radial-chart-icon-padding {\n padding: 0px;\n}\n.ff-icon-radial-chart-container svg text {\n font-size: var(--fontSize) !important;\n font-weight: 400;\n}\n.ff-icon-radial-chart-container .ff-icon-radial-chart-tooltip {\n position: fixed;\n padding: 5px;\n border-radius: 4px;\n pointer-events: none;\n background-color: var(--tooltip-bg-color);\n color: var(--tooltip-text-color);\n}";
26603
26612
  styleInject(css_248z$8);
26604
26613
 
26605
26614
  // Function to generate SVG arc paths
@@ -26860,7 +26869,7 @@ const StatusCard = ({
26860
26869
  });
26861
26870
  };
26862
26871
 
26863
- var css_248z$5 = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-line-chart-inner-tooltip, .ff-line-chart-date {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8, .ff-line-chart-text1, .ff--line-chart-x-line-data, .ff-line-chart-y-axis-text, .ff-line-chart-x-axis-label {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-line-chart-container {\n width: 100%;\n height: 100%;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n\n.ff-line-chart-text {\n width: 890px;\n display: flex;\n}\n.ff-line-chart-text .smooth-dot {\n transition: cx 0.2s ease, cy 0.2s ease;\n}\n\n.ff-line-chart-text1 {\n transform-origin: center;\n transform: rotate(-90deg);\n transition: transform 1s ease-in-out;\n position: relative;\n left: 160px;\n font-weight: 600;\n}\n\n.ff-line-chart-tooltip {\n position: absolute;\n background-color: var(--tooltip-bg-color);\n border-radius: 4px;\n pointer-events: none;\n display: flex;\n flex-direction: column;\n min-width: 30px;\n min-height: 30px;\n justify-content: center;\n align-items: flex-start;\n row-gap: 10px;\n padding: 8px !important;\n}\n\n.ff-line-chart-status-dot {\n width: 16px;\n height: 16px;\n border-radius: 100%;\n}\n\n.ff-line-chart-inner-tooltip {\n display: flex;\n justify-content: center;\n align-items: center;\n gap: 5px;\n color: var(--arrow-button-bg-color);\n}\n\n.ff-line-chart-date {\n height: 100%;\n width: 100%;\n display: flex;\n justify-content: center;\n align-items: flex-start;\n border-bottom: 1px solid var(--arrow-button-bg-color);\n color: var(--arrow-button-bg-color);\n}\n\n.ff-line-chart-x-axis-label {\n font-weight: 600;\n}";
26872
+ var css_248z$5 = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-line-chart-inner-tooltip, .ff-line-chart-date {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8, .ff-line-chart-text1, .ff--line-chart-x-line-data, .ff-line-chart-y-axis-text, .ff-line-chart-x-axis-label {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-line-chart-container {\n width: 100%;\n height: 100%;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n\n.ff-line-chart-text {\n width: 890px;\n display: flex;\n}\n.ff-line-chart-text .smooth-dot {\n transition: cx 0.2s ease, cy 0.2s ease;\n}\n\n.ff-line-chart-text1 {\n transform-origin: center;\n transform: rotate(-90deg);\n transition: transform 1s ease-in-out;\n position: relative;\n left: 160px;\n font-weight: 600;\n}\n\n.ff-line-chart-tooltip {\n position: absolute;\n background-color: var(--tooltip-bg-color);\n border-radius: 4px;\n pointer-events: none;\n display: flex;\n flex-direction: column;\n min-width: 30px;\n min-height: 30px;\n justify-content: center;\n align-items: flex-start;\n row-gap: 10px;\n padding: 8px !important;\n}\n\n.ff-line-chart-status-dot {\n width: 16px;\n height: 16px;\n border-radius: 100%;\n}\n\n.ff-line-chart-inner-tooltip {\n display: flex;\n justify-content: center;\n align-items: center;\n gap: 5px;\n color: var(--arrow-button-bg-color);\n}\n\n.ff-line-chart-date {\n height: 100%;\n width: 100%;\n display: flex;\n justify-content: center;\n align-items: flex-start;\n border-bottom: 1px solid var(--arrow-button-bg-color);\n color: var(--arrow-button-bg-color);\n}\n\n.ff-line-chart-x-axis-label {\n font-weight: 600;\n}";
26864
26873
  styleInject(css_248z$5);
26865
26874
 
26866
26875
  const LineChart = ({
@@ -32425,7 +32434,7 @@ const throttle = (func, limit) => {
32425
32434
  return throttled;
32426
32435
  };
32427
32436
 
32428
- var css_248z$4 = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs, .ff-bar-chart-container .ff-bar-chart-labels, .ff-bar-chart-container .ff-bar-chart-tooltip {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-bar-chart-container {\n margin-top: 40px;\n display: flex;\n flex-direction: column;\n align-items: center;\n position: relative;\n}\n.ff-bar-chart-container .ff-bar-chart-border {\n position: relative;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n.ff-bar-chart-container .ff-bar-chart-icon {\n position: absolute;\n pointer-events: none;\n width: 24px;\n height: 24px;\n}\n.ff-bar-chart-container .ff-bar-chart-icon-wrapper {\n position: absolute;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n.ff-bar-chart-container .ff-bar-chart-labels {\n font-weight: 400;\n color: var(--drawer-title-color);\n}\n.ff-bar-chart-container .ff-bar-chart-tooltip {\n position: absolute;\n padding: 5px 10px;\n background-color: var(--file-details-bg);\n color: var(--status-skipped-text-color);\n border-radius: 4px;\n pointer-events: none;\n font-weight: 600;\n}\n.ff-bar-chart-container .ff-bar-chart-legend {\n margin-top: 10px;\n display: grid;\n gap: 0.5rem;\n grid-row-gap: 2;\n grid-template-columns: repeat(3, 1fr);\n grid-template-rows: auto;\n}\n.ff-bar-chart-container .ff-bar-chart-legend .ff-bar-chart-legend-item {\n display: flex;\n align-items: center;\n}\n.ff-bar-chart-container .ff-bar-chart-legend .ff-bar-chart-legend-item .ff-bar-chart-legend-item-circle {\n display: inline-block;\n width: 12px;\n height: 12px;\n margin-right: 5px;\n border-radius: 50%;\n}\n.ff-bar-chart-container .ff-bar-chart-legend .ff-legend-label {\n margin-left: 5px;\n}";
32437
+ var css_248z$4 = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs, .ff-bar-chart-container .ff-bar-chart-labels, .ff-bar-chart-container .ff-bar-chart-tooltip {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-bar-chart-container {\n margin-top: 40px;\n display: flex;\n flex-direction: column;\n align-items: center;\n position: relative;\n}\n.ff-bar-chart-container .ff-bar-chart-border {\n position: relative;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n.ff-bar-chart-container .ff-bar-chart-icon {\n position: absolute;\n pointer-events: none;\n width: 24px;\n height: 24px;\n}\n.ff-bar-chart-container .ff-bar-chart-icon-wrapper {\n position: absolute;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n.ff-bar-chart-container .ff-bar-chart-labels {\n font-weight: 400;\n color: var(--drawer-title-color);\n}\n.ff-bar-chart-container .ff-bar-chart-tooltip {\n position: absolute;\n padding: 5px 10px;\n background-color: var(--file-details-bg);\n color: var(--status-skipped-text-color);\n border-radius: 4px;\n pointer-events: none;\n font-weight: 600;\n}\n.ff-bar-chart-container .ff-bar-chart-legend {\n margin-top: 10px;\n display: grid;\n gap: 0.5rem;\n grid-row-gap: 2;\n grid-template-columns: repeat(3, 1fr);\n grid-template-rows: auto;\n}\n.ff-bar-chart-container .ff-bar-chart-legend .ff-bar-chart-legend-item {\n display: flex;\n align-items: center;\n}\n.ff-bar-chart-container .ff-bar-chart-legend .ff-bar-chart-legend-item .ff-bar-chart-legend-item-circle {\n display: inline-block;\n width: 12px;\n height: 12px;\n margin-right: 5px;\n border-radius: 50%;\n}\n.ff-bar-chart-container .ff-bar-chart-legend .ff-legend-label {\n margin-left: 5px;\n}";
32429
32438
  styleInject(css_248z$4);
32430
32439
 
32431
32440
  const BarChart = ({
@@ -32624,7 +32633,7 @@ const BarChart = ({
32624
32633
  });
32625
32634
  };
32626
32635
 
32627
- var css_248z$3 = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-multi-radial-chart-container .ff-center-text {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-multi-radial-chart-container {\n cursor: pointer;\n display: flex;\n align-items: center;\n}\n.ff-multi-radial-chart-container.ff-multi-radial-chart-number {\n flex-direction: column;\n}\n.ff-multi-radial-chart-container.ff-multi-radial-chart-pill {\n flex-direction: row;\n}\n.ff-multi-radial-chart-container .ff-center-text {\n color: var(--drawer-title-color);\n font-weight: 600;\n}\n.ff-multi-radial-chart-container .ff-legend-container {\n display: grid;\n gap: 10px;\n}\n.ff-multi-radial-chart-container .ff-legend-container.ff-number-legend {\n grid-template-columns: repeat(3, 1fr);\n margin-top: 21px;\n}\n.ff-multi-radial-chart-container .ff-legend-container.ff-number-legend .ff-legend-item {\n display: flex;\n flex-direction: column;\n align-items: center;\n}\n.ff-multi-radial-chart-container .ff-legend-container.ff-pill-legend {\n grid-template-columns: auto;\n display: flex;\n flex-direction: column;\n gap: 15px;\n justify-content: center;\n margin-left: 8px;\n}\n.ff-multi-radial-chart-container .ff-legend-container.ff-pill-legend .ff-legend-item {\n display: flex;\n flex-direction: row;\n align-items: center;\n}\n.ff-multi-radial-chart-container .ff-legend-container.ff-pill-legend .ff-legend-item .ff-legend-capsule {\n background-color: var(--status-success-text-color);\n color: var(--tooltip-text-color);\n border-radius: 15px;\n min-width: 25px;\n height: 18px;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n.ff-multi-radial-chart-container .ff-legend-container.ff-pill-legend .ff-legend-item .ff-legend-key {\n margin-left: 8px;\n}";
32636
+ var css_248z$3 = "@font-face {\n font-family: \"Poppins\";\n font-weight: 400;\n src: local(\"Poppins-Regular\"), url(../../assets/fonts/Poppins-Regular.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 500;\n src: local(\"Poppins-Medium\"), url(../../assets/fonts/Poppins-Medium.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 600;\n src: local(\"Poppins-SemiBold\"), url(../../assets/fonts/Poppins-SemiBold.ttf) format(\"truetype\");\n}\n@font-face {\n font-family: \"Poppins\";\n font-weight: 700;\n src: local(\"Poppins-Bold\"), url(../../assets/fonts/Poppins-Bold.ttf) format(\"truetype\");\n}\n.fontXs {\n font-family: \"Poppins\";\n font-size: 10px;\n}\n\n.fontSm, .ff-multi-radial-chart-container .ff-center-text {\n font-family: \"Poppins\";\n font-size: 12px;\n}\n\n.fontMd {\n font-family: \"Poppins\";\n font-size: 14px;\n}\n\n.fontLg {\n font-family: \"Poppins\";\n font-size: 16px;\n}\n\n.fontXL {\n font-family: \"Poppins\";\n font-size: 18px;\n}\n\n.font2Xl {\n font-family: \"Poppins\";\n font-size: 24px;\n}\n\n.font-size-8 {\n font-family: \"Poppins\";\n font-size: 8px;\n}\n\n.font-size-32 {\n font-family: \"Poppins\";\n font-size: 32px;\n}\n\n.font-size-80 {\n font-family: \"Poppins\";\n font-size: 80px;\n}\n\n.ff-multi-radial-chart-container {\n cursor: pointer;\n display: flex;\n align-items: center;\n}\n.ff-multi-radial-chart-container.ff-multi-radial-chart-number {\n flex-direction: column;\n}\n.ff-multi-radial-chart-container.ff-multi-radial-chart-pill {\n flex-direction: row;\n}\n.ff-multi-radial-chart-container .ff-center-text {\n color: var(--drawer-title-color);\n font-weight: 600;\n}\n.ff-multi-radial-chart-container .ff-legend-container {\n display: grid;\n gap: 10px;\n}\n.ff-multi-radial-chart-container .ff-legend-container.ff-number-legend {\n grid-template-columns: repeat(3, 1fr);\n margin-top: 21px;\n}\n.ff-multi-radial-chart-container .ff-legend-container.ff-number-legend .ff-legend-item {\n display: flex;\n flex-direction: column;\n align-items: center;\n}\n.ff-multi-radial-chart-container .ff-legend-container.ff-pill-legend {\n grid-template-columns: auto;\n display: flex;\n flex-direction: column;\n gap: 15px;\n justify-content: center;\n margin-left: 8px;\n}\n.ff-multi-radial-chart-container .ff-legend-container.ff-pill-legend .ff-legend-item {\n display: flex;\n flex-direction: row;\n align-items: center;\n}\n.ff-multi-radial-chart-container .ff-legend-container.ff-pill-legend .ff-legend-item .ff-legend-capsule {\n background-color: var(--status-success-text-color);\n color: var(--tooltip-text-color);\n border-radius: 15px;\n min-width: 25px;\n height: 18px;\n display: flex;\n justify-content: center;\n align-items: center;\n}\n.ff-multi-radial-chart-container .ff-legend-container.ff-pill-legend .ff-legend-item .ff-legend-key {\n margin-left: 8px;\n}";
32628
32637
  styleInject(css_248z$3);
32629
32638
 
32630
32639
  const calculateArc = (centerX, centerY, radius, startAngle, endAngle) => {
@@ -35146,6 +35155,33 @@ const ConnectingBranch = ({
35146
35155
  });
35147
35156
  };
35148
35157
 
35158
+ // saveFileFromBlob.ts
35159
+ const saveFileFromBlob = (blob, filename) => {
35160
+ if (!blob || !(blob instanceof Blob)) {
35161
+ console.error('Invalid Blob object');
35162
+ throw new Error('Invalid Blob object');
35163
+ }
35164
+ const navigatorWithMsSaveBlob = window.navigator;
35165
+ if (navigatorWithMsSaveBlob.msSaveOrOpenBlob) {
35166
+ const saveBlob = navigatorWithMsSaveBlob.msSaveOrOpenBlob;
35167
+ if (saveBlob) {
35168
+ saveBlob(blob, filename);
35169
+ }
35170
+ } else {
35171
+ // For modern browsers
35172
+ const anchorElement = document.createElement('a');
35173
+ document.body.appendChild(anchorElement);
35174
+ const objectURL = window.URL.createObjectURL(blob);
35175
+ anchorElement.href = objectURL;
35176
+ anchorElement.download = filename;
35177
+ anchorElement.click();
35178
+ setTimeout(() => {
35179
+ window.URL.revokeObjectURL(objectURL);
35180
+ document.body.removeChild(anchorElement);
35181
+ }, 0);
35182
+ }
35183
+ };
35184
+
35149
35185
  exports.Accordion = Accordion;
35150
35186
  exports.AddResourceButton = AddButton;
35151
35187
  exports.AllProjectsDropdown = AllProjectsDropdown;
@@ -35221,6 +35257,7 @@ exports.getEncryptedData = getEncryptedData;
35221
35257
  exports.getExtension = getExtension;
35222
35258
  exports.getExtensionWithPeriod = getExtensionWithPeriod;
35223
35259
  exports.getSequentialPayload = getSequentialPayload;
35260
+ exports.saveFileFromBlob = saveFileFromBlob;
35224
35261
  exports.throttle = throttle;
35225
35262
  exports.toast = toast;
35226
35263
  exports.truncateText = truncateText;