tango-app-ui-analyse-trax 3.9.2 → 3.9.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (470) hide show
  1. package/.eslintrc.json +37 -0
  2. package/ng-package.json +7 -0
  3. package/package.json +12 -25
  4. package/src/lib/components/action-centre/action-centre.component.html +607 -0
  5. package/src/lib/components/action-centre/action-centre.component.scss +185 -0
  6. package/src/lib/components/action-centre/action-centre.component.spec.ts +23 -0
  7. package/src/lib/components/action-centre/action-centre.component.ts +279 -0
  8. package/src/lib/components/activity-log/activity-log.component.html +84 -0
  9. package/src/lib/components/activity-log/activity-log.component.scss +33 -0
  10. package/src/lib/components/activity-log/activity-log.component.spec.ts +23 -0
  11. package/src/lib/components/activity-log/activity-log.component.ts +137 -0
  12. package/src/lib/components/activity-log-v2/activity-log-v2.component.html +189 -0
  13. package/src/lib/components/activity-log-v2/activity-log-v2.component.scss +162 -0
  14. package/src/lib/components/activity-log-v2/activity-log-v2.component.spec.ts +23 -0
  15. package/src/lib/components/activity-log-v2/activity-log-v2.component.ts +517 -0
  16. package/src/lib/components/activity-log-v2/log-view-popup/date-range-picker/date-range-picker.component.html +19 -0
  17. package/src/lib/components/activity-log-v2/log-view-popup/date-range-picker/date-range-picker.component.scss +148 -0
  18. package/src/lib/components/activity-log-v2/log-view-popup/date-range-picker/date-range-picker.component.spec.ts +23 -0
  19. package/src/lib/components/activity-log-v2/log-view-popup/date-range-picker/date-range-picker.component.ts +141 -0
  20. package/src/lib/components/activity-log-v2/log-view-popup/store-user-dropdown/store-user-dropdown.component.html +42 -0
  21. package/src/lib/components/activity-log-v2/log-view-popup/store-user-dropdown/store-user-dropdown.component.scss +49 -0
  22. package/src/lib/components/activity-log-v2/log-view-popup/store-user-dropdown/store-user-dropdown.component.spec.ts +23 -0
  23. package/src/lib/components/activity-log-v2/log-view-popup/store-user-dropdown/store-user-dropdown.component.ts +22 -0
  24. package/src/lib/components/activity-log-v2/log-view-popup/view-action/view-action.component.html +724 -0
  25. package/src/lib/components/activity-log-v2/log-view-popup/view-action/view-action.component.scss +217 -0
  26. package/src/lib/components/activity-log-v2/log-view-popup/view-action/view-action.component.spec.ts +23 -0
  27. package/src/lib/components/activity-log-v2/log-view-popup/view-action/view-action.component.ts +122 -0
  28. package/src/lib/components/add-checklist/add-checklist.component.html +1459 -0
  29. package/src/lib/components/add-checklist/add-checklist.component.scss +1205 -0
  30. package/src/lib/components/add-checklist/add-checklist.component.spec.ts +23 -0
  31. package/src/lib/components/add-checklist/add-checklist.component.ts +2460 -0
  32. package/src/lib/components/add-checklist/checklist-popup/checklist-popup.component.html +207 -0
  33. package/src/lib/components/add-checklist/checklist-popup/checklist-popup.component.scss +213 -0
  34. package/src/lib/components/add-checklist/checklist-popup/checklist-popup.component.spec.ts +23 -0
  35. package/src/lib/components/add-checklist/checklist-popup/checklist-popup.component.ts +621 -0
  36. package/src/lib/components/add-checklist/counter/counter.component.html +43 -0
  37. package/src/lib/components/add-checklist/counter/counter.component.scss +49 -0
  38. package/src/lib/components/add-checklist/counter/counter.component.spec.ts +23 -0
  39. package/src/lib/components/add-checklist/counter/counter.component.ts +123 -0
  40. package/src/lib/components/add-multitask/add-multitask.component.html +705 -0
  41. package/src/lib/components/add-multitask/add-multitask.component.scss +296 -0
  42. package/src/lib/components/add-multitask/add-multitask.component.spec.ts +23 -0
  43. package/src/lib/components/add-multitask/add-multitask.component.ts +611 -0
  44. package/src/lib/components/add-multitask/ascending-validator.ts +13 -0
  45. package/src/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.html +197 -0
  46. package/src/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.scss +31 -0
  47. package/src/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.spec.ts +23 -0
  48. package/src/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.ts +285 -0
  49. package/src/lib/components/add-multitask/create-task.data.ts +374 -0
  50. package/src/lib/components/add-multitask/create-task.interface.ts +177 -0
  51. package/src/lib/components/add-multitask/unique-string-validator.ts +13 -0
  52. package/src/lib/components/add-multitask/whitespace-validator.ts +11 -0
  53. package/src/lib/components/add-task/add-task.component.html +654 -0
  54. package/src/lib/components/add-task/add-task.component.scss +536 -0
  55. package/src/lib/components/add-task/add-task.component.spec.ts +23 -0
  56. package/src/lib/components/add-task/add-task.component.ts +569 -0
  57. package/src/lib/components/add-task/ascending-validator.ts +13 -0
  58. package/src/lib/components/add-task/create-task.data.ts +374 -0
  59. package/src/lib/components/add-task/create-task.interface.ts +192 -0
  60. package/src/lib/components/add-task/unique-string-validator.ts +13 -0
  61. package/src/lib/components/add-task/whitespace-validator.ts +11 -0
  62. package/src/lib/components/approval-popup/approval-popup.component.html +25 -0
  63. package/src/lib/components/approval-popup/approval-popup.component.scss +3 -0
  64. package/src/lib/components/approval-popup/approval-popup.component.spec.ts +23 -0
  65. package/src/lib/components/approval-popup/approval-popup.component.ts +26 -0
  66. package/src/lib/components/checklist/checklist.component.html +330 -0
  67. package/src/lib/components/checklist/checklist.component.scss +112 -0
  68. package/src/lib/components/checklist/checklist.component.spec.ts +23 -0
  69. package/src/lib/components/checklist/checklist.component.ts +344 -0
  70. package/src/lib/components/checklist-configure/assign/assign.component.html +665 -0
  71. package/src/lib/components/checklist-configure/assign/assign.component.scss +219 -0
  72. package/src/lib/components/checklist-configure/assign/assign.component.spec.ts +23 -0
  73. package/src/lib/components/checklist-configure/assign/assign.component.ts +932 -0
  74. package/src/lib/components/checklist-configure/checklist-configure.component.html +4340 -0
  75. package/src/lib/components/checklist-configure/checklist-configure.component.scss +2338 -0
  76. package/src/lib/components/checklist-configure/checklist-configure.component.spec.ts +23 -0
  77. package/src/lib/components/checklist-configure/checklist-configure.component.ts +4659 -0
  78. package/src/lib/components/checklistlayout/checklistlayout.component.html +30 -0
  79. package/src/lib/components/checklistlayout/checklistlayout.component.scss +15 -0
  80. package/src/lib/components/checklistlayout/checklistlayout.component.spec.ts +23 -0
  81. package/src/lib/components/checklistlayout/checklistlayout.component.ts +47 -0
  82. package/src/lib/components/chip-dropdown/chip-dropdown.component.html +36 -0
  83. package/src/lib/components/chip-dropdown/chip-dropdown.component.scss +97 -0
  84. package/src/lib/components/chip-dropdown/chip-dropdown.component.spec.ts +23 -0
  85. package/src/lib/components/chip-dropdown/chip-dropdown.component.ts +125 -0
  86. package/src/lib/components/create-task/create-task.component.html +2003 -0
  87. package/src/lib/components/create-task/create-task.component.scss +272 -0
  88. package/src/lib/components/create-task/create-task.component.spec.ts +23 -0
  89. package/src/lib/components/create-task/create-task.component.ts +614 -0
  90. package/src/lib/components/create-task/create-task.data.ts +372 -0
  91. package/src/lib/components/create-task/create-task.interface.ts +182 -0
  92. package/src/lib/components/create-task/validators/ascending-validator.ts +13 -0
  93. package/src/lib/components/create-task/validators/unique-string-validator.ts +13 -0
  94. package/src/lib/components/create-task/validators/whitespace-validator.ts +11 -0
  95. package/src/lib/components/custom-select/custom-select.component.html +44 -0
  96. package/src/lib/components/custom-select/custom-select.component.scss +144 -0
  97. package/src/lib/components/custom-select/custom-select.component.spec.ts +23 -0
  98. package/src/lib/components/custom-select/custom-select.component.ts +265 -0
  99. package/src/lib/components/dashboard/dashboard.component.html +1076 -0
  100. package/src/lib/components/dashboard/dashboard.component.scss +237 -0
  101. package/src/lib/components/dashboard/dashboard.component.spec.ts +23 -0
  102. package/src/lib/components/dashboard/dashboard.component.ts +539 -0
  103. package/src/lib/components/dashboard-info/dashboard-info.component.html +1420 -0
  104. package/src/lib/components/dashboard-info/dashboard-info.component.scss +409 -0
  105. package/src/lib/components/dashboard-info/dashboard-info.component.spec.ts +23 -0
  106. package/src/lib/components/dashboard-info/dashboard-info.component.ts +772 -0
  107. package/src/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.html +110 -0
  108. package/src/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.scss +260 -0
  109. package/src/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.spec.ts +23 -0
  110. package/src/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.ts +143 -0
  111. package/src/lib/components/dashboard-layout/dashboard-layout.component.html +1 -0
  112. package/src/lib/components/dashboard-layout/dashboard-layout.component.scss +0 -0
  113. package/src/lib/components/dashboard-layout/dashboard-layout.component.spec.ts +23 -0
  114. package/src/lib/components/dashboard-layout/dashboard-layout.component.ts +10 -0
  115. package/src/lib/components/disabled-select/disabled-select.component.html +44 -0
  116. package/src/lib/components/disabled-select/disabled-select.component.scss +149 -0
  117. package/src/lib/components/disabled-select/disabled-select.component.spec.ts +23 -0
  118. package/src/lib/components/disabled-select/disabled-select.component.ts +146 -0
  119. package/src/lib/components/export-gallery/export-gallery.component.html +175 -0
  120. package/src/lib/components/export-gallery/export-gallery.component.scss +200 -0
  121. package/src/lib/components/export-gallery/export-gallery.component.spec.ts +23 -0
  122. package/src/lib/components/export-gallery/export-gallery.component.ts +263 -0
  123. package/src/lib/components/eye-test-audit/chip-dropdown/chip-dropdown.component.html +36 -0
  124. package/src/lib/components/eye-test-audit/chip-dropdown/chip-dropdown.component.scss +97 -0
  125. package/src/lib/components/eye-test-audit/chip-dropdown/chip-dropdown.component.spec.ts +23 -0
  126. package/src/lib/components/eye-test-audit/chip-dropdown/chip-dropdown.component.ts +104 -0
  127. package/src/lib/components/eye-test-audit/custom-select/custom-select.component.html +44 -0
  128. package/src/lib/components/eye-test-audit/custom-select/custom-select.component.scss +144 -0
  129. package/src/lib/components/eye-test-audit/custom-select/custom-select.component.spec.ts +23 -0
  130. package/src/lib/components/eye-test-audit/custom-select/custom-select.component.ts +265 -0
  131. package/src/lib/components/eye-test-audit/eye-test/eye-test.component.html +1804 -0
  132. package/src/lib/components/eye-test-audit/eye-test/eye-test.component.scss +806 -0
  133. package/src/lib/components/eye-test-audit/eye-test/eye-test.component.spec.ts +23 -0
  134. package/src/lib/components/eye-test-audit/eye-test/eye-test.component.ts +1890 -0
  135. package/src/lib/components/eye-test-audit/eye-test/send-alert/send-alert.component.html +25 -0
  136. package/src/lib/components/eye-test-audit/eye-test/send-alert/send-alert.component.scss +0 -0
  137. package/src/lib/components/eye-test-audit/eye-test/send-alert/send-alert.component.spec.ts +23 -0
  138. package/src/lib/components/eye-test-audit/eye-test/send-alert/send-alert.component.ts +20 -0
  139. package/src/lib/components/eye-test-audit/eye-test-audit/eye-test-audit-routing.module.ts +26 -0
  140. package/src/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.component.html +1 -0
  141. package/src/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.component.scss +0 -0
  142. package/src/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.component.spec.ts +23 -0
  143. package/src/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.component.ts +24 -0
  144. package/src/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.module.ts +44 -0
  145. package/src/lib/components/eye-test-audit/eye-test-audit/settings-audit/settings-audit.component.html +490 -0
  146. package/src/lib/components/eye-test-audit/eye-test-audit/settings-audit/settings-audit.component.scss +721 -0
  147. package/src/lib/components/eye-test-audit/eye-test-audit/settings-audit/settings-audit.component.spec.ts +23 -0
  148. package/src/lib/components/eye-test-audit/eye-test-audit/settings-audit/settings-audit.component.ts +1017 -0
  149. package/src/lib/components/eye-test-audit/eye-test-audit/start-audit/start-audit.component.html +708 -0
  150. package/src/lib/components/eye-test-audit/eye-test-audit/start-audit/start-audit.component.scss +247 -0
  151. package/src/lib/components/eye-test-audit/eye-test-audit/start-audit/start-audit.component.spec.ts +23 -0
  152. package/src/lib/components/eye-test-audit/eye-test-audit/start-audit/start-audit.component.ts +446 -0
  153. package/src/lib/components/eye-test-audit/group-select/group-select.component.html +44 -0
  154. package/src/lib/components/eye-test-audit/group-select/group-select.component.scss +144 -0
  155. package/src/lib/components/eye-test-audit/group-select/group-select.component.spec.ts +23 -0
  156. package/src/lib/components/eye-test-audit/group-select/group-select.component.ts +147 -0
  157. package/src/lib/components/eye-test-audit/reactive-select/reactive-select.component.html +18 -0
  158. package/src/lib/components/eye-test-audit/reactive-select/reactive-select.component.scss +49 -0
  159. package/src/lib/components/eye-test-audit/reactive-select/reactive-select.component.spec.ts +23 -0
  160. package/src/lib/components/eye-test-audit/reactive-select/reactive-select.component.ts +104 -0
  161. package/src/lib/components/eye-test-audit/select-drop/select-drop.component.html +44 -0
  162. package/src/lib/components/eye-test-audit/select-drop/select-drop.component.scss +144 -0
  163. package/src/lib/components/eye-test-audit/select-drop/select-drop.component.spec.ts +23 -0
  164. package/src/lib/components/eye-test-audit/select-drop/select-drop.component.ts +152 -0
  165. package/src/lib/components/eye-test-audit/services/eye-test-audit.service.spec.ts +16 -0
  166. package/src/lib/components/eye-test-audit/services/eye-test-audit.service.ts +190 -0
  167. package/src/lib/components/flag-layout/flag-layout.component.html +1 -0
  168. package/src/lib/components/flag-layout/flag-layout.component.scss +0 -0
  169. package/src/lib/components/flag-layout/flag-layout.component.spec.ts +23 -0
  170. package/src/lib/components/flag-layout/flag-layout.component.ts +10 -0
  171. package/src/lib/components/flags/flags.component.html +473 -0
  172. package/src/lib/components/flags/flags.component.scss +86 -0
  173. package/src/lib/components/flags/flags.component.spec.ts +23 -0
  174. package/src/lib/components/flags/flags.component.ts +280 -0
  175. package/{lib/components/flags/flags.interface.d.ts → src/lib/components/flags/flags.interface.ts} +73 -65
  176. package/src/lib/components/flags-info/flags-info.component.html +6012 -0
  177. package/src/lib/components/flags-info/flags-info.component.scss +278 -0
  178. package/src/lib/components/flags-info/flags-info.component.spec.ts +23 -0
  179. package/src/lib/components/flags-info/flags-info.component.ts +490 -0
  180. package/src/lib/components/flags-info/flags-info.interface.ts +441 -0
  181. package/src/lib/components/flags-info/unattended-pie-chart/unattended-pie-chart.component.html +1 -0
  182. package/src/lib/components/flags-info/unattended-pie-chart/unattended-pie-chart.component.scss +4 -0
  183. package/src/lib/components/flags-info/unattended-pie-chart/unattended-pie-chart.component.ts +78 -0
  184. package/src/lib/components/flags-new/flags-new.component.html +904 -0
  185. package/src/lib/components/flags-new/flags-new.component.scss +121 -0
  186. package/src/lib/components/flags-new/flags-new.component.spec.ts +23 -0
  187. package/src/lib/components/flags-new/flags-new.component.ts +357 -0
  188. package/{lib/components/flags-new/flags-new.interface.d.ts → src/lib/components/flags-new/flags-new.interface.ts} +90 -81
  189. package/src/lib/components/gallery/gallery.component.html +3660 -0
  190. package/src/lib/components/gallery/gallery.component.scss +930 -0
  191. package/src/lib/components/gallery/gallery.component.ts +3527 -0
  192. package/src/lib/components/group-select/group-select.component.html +44 -0
  193. package/src/lib/components/group-select/group-select.component.scss +144 -0
  194. package/src/lib/components/group-select/group-select.component.spec.ts +23 -0
  195. package/src/lib/components/group-select/group-select.component.ts +145 -0
  196. package/src/lib/components/image-popup/image-popup.component.html +11 -0
  197. package/src/lib/components/image-popup/image-popup.component.scss +5 -0
  198. package/src/lib/components/image-popup/image-popup.component.ts +18 -0
  199. package/src/lib/components/lib/custom-select/custom-select.component.html +42 -0
  200. package/src/lib/components/lib/custom-select/custom-select.component.scss +131 -0
  201. package/src/lib/components/lib/custom-select/custom-select.component.spec.ts +23 -0
  202. package/src/lib/components/lib/custom-select/custom-select.component.ts +151 -0
  203. package/src/lib/components/manage-task/manage-task.component.html +265 -0
  204. package/src/lib/components/manage-task/manage-task.component.scss +69 -0
  205. package/src/lib/components/manage-task/manage-task.component.spec.ts +23 -0
  206. package/src/lib/components/manage-task/manage-task.component.ts +267 -0
  207. package/src/lib/components/managechecklist/managechecklist.component.html +176 -0
  208. package/src/lib/components/managechecklist/managechecklist.component.scss +43 -0
  209. package/src/lib/components/managechecklist/managechecklist.component.spec.ts +23 -0
  210. package/src/lib/components/managechecklist/managechecklist.component.ts +176 -0
  211. package/src/lib/components/multi-chip-dropdown/multi-chip-dropdown.component.html +46 -0
  212. package/src/lib/components/multi-chip-dropdown/multi-chip-dropdown.component.scss +181 -0
  213. package/src/lib/components/multi-chip-dropdown/multi-chip-dropdown.component.spec.ts +23 -0
  214. package/src/lib/components/multi-chip-dropdown/multi-chip-dropdown.component.ts +221 -0
  215. package/src/lib/components/multi-date-datepicker/multi-date-datepicker.component.html +36 -0
  216. package/src/lib/components/multi-date-datepicker/multi-date-datepicker.component.scss +89 -0
  217. package/src/lib/components/multi-date-datepicker/multi-date-datepicker.component.spec.ts +23 -0
  218. package/src/lib/components/multi-date-datepicker/multi-date-datepicker.component.ts +118 -0
  219. package/src/lib/components/orders/orders.component.html +203 -0
  220. package/src/lib/components/orders/orders.component.scss +180 -0
  221. package/src/lib/components/orders/orders.component.spec.ts +25 -0
  222. package/src/lib/components/orders/orders.component.ts +197 -0
  223. package/src/lib/components/pagination/pagination.component.html +28 -0
  224. package/src/lib/components/pagination/pagination.component.scss +6 -0
  225. package/src/lib/components/pagination/pagination.component.spec.ts +23 -0
  226. package/src/lib/components/pagination/pagination.component.ts +54 -0
  227. package/src/lib/components/reactive-select/reactive-select.component.html +18 -0
  228. package/src/lib/components/reactive-select/reactive-select.component.scss +48 -0
  229. package/src/lib/components/reactive-select/reactive-select.component.spec.ts +23 -0
  230. package/src/lib/components/reactive-select/reactive-select.component.ts +104 -0
  231. package/src/lib/components/reports/date-picker/date-picker.component.html +54 -0
  232. package/src/lib/components/reports/date-picker/date-picker.component.scss +156 -0
  233. package/src/lib/components/reports/date-picker/date-picker.component.spec.ts +23 -0
  234. package/src/lib/components/reports/date-picker/date-picker.component.ts +60 -0
  235. package/src/lib/components/reports/reports.component.html +225 -0
  236. package/src/lib/components/reports/reports.component.scss +69 -0
  237. package/src/lib/components/reports/reports.component.spec.ts +23 -0
  238. package/src/lib/components/reports/reports.component.ts +334 -0
  239. package/{lib/components/reports/reports.interface.d.ts → src/lib/components/reports/reports.interface.ts} +50 -46
  240. package/src/lib/components/tango-analyse-trax/tango-analyse-trax.component.html +1 -0
  241. package/src/lib/components/tango-analyse-trax/tango-analyse-trax.component.scss +15 -0
  242. package/src/lib/components/tango-analyse-trax/tango-analyse-trax.component.spec.ts +23 -0
  243. package/src/lib/components/tango-analyse-trax/tango-analyse-trax.component.ts +31 -0
  244. package/src/lib/components/task/task.component.html +322 -0
  245. package/src/lib/components/task/task.component.scss +169 -0
  246. package/src/lib/components/task/task.component.spec.ts +23 -0
  247. package/src/lib/components/task/task.component.ts +340 -0
  248. package/src/lib/components/task-configure/task-configure.component.html +737 -0
  249. package/src/lib/components/task-configure/task-configure.component.scss +569 -0
  250. package/src/lib/components/task-configure/task-configure.component.spec.ts +23 -0
  251. package/src/lib/components/task-configure/task-configure.component.ts +1603 -0
  252. package/src/lib/components/task-configure/task-configure.interface.ts +138 -0
  253. package/src/lib/components/task-info/task-info.component.html +390 -0
  254. package/src/lib/components/task-info/task-info.component.scss +56 -0
  255. package/src/lib/components/task-info/task-info.component.spec.ts +23 -0
  256. package/src/lib/components/task-info/task-info.component.ts +400 -0
  257. package/src/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.html +141 -0
  258. package/src/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.scss +460 -0
  259. package/src/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.spec.ts +23 -0
  260. package/src/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.ts +202 -0
  261. package/src/lib/components/task-layout/task-layout.component.html +1 -0
  262. package/src/lib/components/task-layout/task-layout.component.scss +0 -0
  263. package/src/lib/components/task-layout/task-layout.component.spec.ts +23 -0
  264. package/src/lib/components/task-layout/task-layout.component.ts +10 -0
  265. package/src/lib/components/task-logs/task-logs.component.html +97 -0
  266. package/src/lib/components/task-logs/task-logs.component.scss +301 -0
  267. package/src/lib/components/task-logs/task-logs.component.spec.ts +23 -0
  268. package/src/lib/components/task-logs/task-logs.component.ts +80 -0
  269. package/src/lib/components/trax-run-ai-popup/trax-run-ai-popup.component.html +84 -0
  270. package/src/lib/components/trax-run-ai-popup/trax-run-ai-popup.component.scss +229 -0
  271. package/src/lib/components/trax-run-ai-popup/trax-run-ai-popup.component.spec.ts +23 -0
  272. package/src/lib/components/trax-run-ai-popup/trax-run-ai-popup.component.ts +111 -0
  273. package/src/lib/components/trax-store/trax-store.component.html +78 -0
  274. package/src/lib/components/trax-store/trax-store.component.scss +134 -0
  275. package/src/lib/components/trax-store/trax-store.component.spec.ts +23 -0
  276. package/src/lib/components/trax-store/trax-store.component.ts +172 -0
  277. package/src/lib/components/traxpopup/traxpopup.component.html +130 -0
  278. package/src/lib/components/traxpopup/traxpopup.component.scss +225 -0
  279. package/src/lib/components/traxpopup/traxpopup.component.spec.ts +23 -0
  280. package/src/lib/components/traxpopup/traxpopup.component.ts +71 -0
  281. package/src/lib/services/trax.service.spec.ts +16 -0
  282. package/src/lib/services/trax.service.ts +789 -0
  283. package/src/lib/tango-analyse-trax-routing.module.ts +151 -0
  284. package/src/lib/tango-analyse-trax.module.ts +140 -0
  285. package/{public-api.d.ts → src/public-api.ts} +6 -2
  286. package/tsconfig.lib.json +14 -0
  287. package/tsconfig.lib.prod.json +10 -0
  288. package/tsconfig.spec.json +14 -0
  289. package/esm2022/lib/components/action-centre/action-centre.component.mjs +0 -288
  290. package/esm2022/lib/components/activity-log/activity-log.component.mjs +0 -150
  291. package/esm2022/lib/components/activity-log-v2/activity-log-v2.component.mjs +0 -502
  292. package/esm2022/lib/components/activity-log-v2/log-view-popup/date-range-picker/date-range-picker.component.mjs +0 -114
  293. package/esm2022/lib/components/activity-log-v2/log-view-popup/store-user-dropdown/store-user-dropdown.component.mjs +0 -24
  294. package/esm2022/lib/components/activity-log-v2/log-view-popup/view-action/view-action.component.mjs +0 -126
  295. package/esm2022/lib/components/add-checklist/add-checklist.component.mjs +0 -2352
  296. package/esm2022/lib/components/add-checklist/checklist-popup/checklist-popup.component.mjs +0 -612
  297. package/esm2022/lib/components/add-checklist/counter/counter.component.mjs +0 -138
  298. package/esm2022/lib/components/add-multitask/add-multitask.component.mjs +0 -604
  299. package/esm2022/lib/components/add-multitask/ascending-validator.mjs +0 -11
  300. package/esm2022/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.mjs +0 -297
  301. package/esm2022/lib/components/add-multitask/create-task.data.mjs +0 -372
  302. package/esm2022/lib/components/add-multitask/create-task.interface.mjs +0 -2
  303. package/esm2022/lib/components/add-multitask/unique-string-validator.mjs +0 -10
  304. package/esm2022/lib/components/add-multitask/whitespace-validator.mjs +0 -10
  305. package/esm2022/lib/components/add-task/add-task.component.mjs +0 -561
  306. package/esm2022/lib/components/add-task/ascending-validator.mjs +0 -11
  307. package/esm2022/lib/components/add-task/create-task.data.mjs +0 -372
  308. package/esm2022/lib/components/add-task/create-task.interface.mjs +0 -2
  309. package/esm2022/lib/components/add-task/unique-string-validator.mjs +0 -10
  310. package/esm2022/lib/components/add-task/whitespace-validator.mjs +0 -10
  311. package/esm2022/lib/components/approval-popup/approval-popup.component.mjs +0 -30
  312. package/esm2022/lib/components/checklist/checklist.component.mjs +0 -327
  313. package/esm2022/lib/components/checklist-configure/assign/assign.component.mjs +0 -912
  314. package/esm2022/lib/components/checklist-configure/checklist-configure.component.mjs +0 -4161
  315. package/esm2022/lib/components/checklistlayout/checklistlayout.component.mjs +0 -44
  316. package/esm2022/lib/components/chip-dropdown/chip-dropdown.component.mjs +0 -120
  317. package/esm2022/lib/components/create-task/create-task.component.mjs +0 -585
  318. package/esm2022/lib/components/create-task/create-task.data.mjs +0 -372
  319. package/esm2022/lib/components/create-task/create-task.interface.mjs +0 -2
  320. package/esm2022/lib/components/create-task/validators/ascending-validator.mjs +0 -11
  321. package/esm2022/lib/components/create-task/validators/unique-string-validator.mjs +0 -10
  322. package/esm2022/lib/components/create-task/validators/whitespace-validator.mjs +0 -10
  323. package/esm2022/lib/components/custom-select/custom-select.component.mjs +0 -240
  324. package/esm2022/lib/components/dashboard/dashboard.component.mjs +0 -532
  325. package/esm2022/lib/components/dashboard-info/dashboard-info.component.mjs +0 -741
  326. package/esm2022/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.mjs +0 -155
  327. package/esm2022/lib/components/dashboard-layout/dashboard-layout.component.mjs +0 -12
  328. package/esm2022/lib/components/disabled-select/disabled-select.component.mjs +0 -158
  329. package/esm2022/lib/components/export-gallery/export-gallery.component.mjs +0 -266
  330. package/esm2022/lib/components/eye-test-audit/chip-dropdown/chip-dropdown.component.mjs +0 -105
  331. package/esm2022/lib/components/eye-test-audit/custom-select/custom-select.component.mjs +0 -240
  332. package/esm2022/lib/components/eye-test-audit/eye-test/eye-test.component.mjs +0 -1733
  333. package/esm2022/lib/components/eye-test-audit/eye-test/send-alert/send-alert.component.mjs +0 -24
  334. package/esm2022/lib/components/eye-test-audit/eye-test-audit/eye-test-audit-routing.module.mjs +0 -34
  335. package/esm2022/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.component.mjs +0 -27
  336. package/esm2022/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.module.mjs +0 -71
  337. package/esm2022/lib/components/eye-test-audit/eye-test-audit/settings-audit/settings-audit.component.mjs +0 -823
  338. package/esm2022/lib/components/eye-test-audit/eye-test-audit/start-audit/start-audit.component.mjs +0 -412
  339. package/esm2022/lib/components/eye-test-audit/group-select/group-select.component.mjs +0 -157
  340. package/esm2022/lib/components/eye-test-audit/reactive-select/reactive-select.component.mjs +0 -105
  341. package/esm2022/lib/components/eye-test-audit/select-drop/select-drop.component.mjs +0 -162
  342. package/esm2022/lib/components/eye-test-audit/services/eye-test-audit.service.mjs +0 -166
  343. package/esm2022/lib/components/flag-layout/flag-layout.component.mjs +0 -12
  344. package/esm2022/lib/components/flags/flags.component.mjs +0 -263
  345. package/esm2022/lib/components/flags/flags.interface.mjs +0 -2
  346. package/esm2022/lib/components/flags-info/flags-info.component.mjs +0 -452
  347. package/esm2022/lib/components/flags-info/flags-info.interface.mjs +0 -2
  348. package/esm2022/lib/components/flags-info/unattended-pie-chart/unattended-pie-chart.component.mjs +0 -71
  349. package/esm2022/lib/components/flags-new/flags-new.component.mjs +0 -335
  350. package/esm2022/lib/components/flags-new/flags-new.interface.mjs +0 -2
  351. package/esm2022/lib/components/gallery/gallery.component.mjs +0 -3402
  352. package/esm2022/lib/components/group-select/group-select.component.mjs +0 -155
  353. package/esm2022/lib/components/image-popup/image-popup.component.mjs +0 -25
  354. package/esm2022/lib/components/lib/custom-select/custom-select.component.mjs +0 -158
  355. package/esm2022/lib/components/manage-task/manage-task.component.mjs +0 -264
  356. package/esm2022/lib/components/managechecklist/managechecklist.component.mjs +0 -186
  357. package/esm2022/lib/components/multi-chip-dropdown/multi-chip-dropdown.component.mjs +0 -229
  358. package/esm2022/lib/components/multi-date-datepicker/multi-date-datepicker.component.mjs +0 -124
  359. package/esm2022/lib/components/orders/orders.component.mjs +0 -171
  360. package/esm2022/lib/components/pagination/pagination.component.mjs +0 -62
  361. package/esm2022/lib/components/reactive-select/reactive-select.component.mjs +0 -108
  362. package/esm2022/lib/components/reports/date-picker/date-picker.component.mjs +0 -60
  363. package/esm2022/lib/components/reports/reports.component.mjs +0 -300
  364. package/esm2022/lib/components/reports/reports.interface.mjs +0 -2
  365. package/esm2022/lib/components/tango-analyse-trax/tango-analyse-trax.component.mjs +0 -32
  366. package/esm2022/lib/components/task/task.component.mjs +0 -341
  367. package/esm2022/lib/components/task-configure/task-configure.component.mjs +0 -1532
  368. package/esm2022/lib/components/task-configure/task-configure.interface.mjs +0 -2
  369. package/esm2022/lib/components/task-info/task-info.component.mjs +0 -375
  370. package/esm2022/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.mjs +0 -208
  371. package/esm2022/lib/components/task-layout/task-layout.component.mjs +0 -12
  372. package/esm2022/lib/components/task-logs/task-logs.component.mjs +0 -104
  373. package/esm2022/lib/components/trax-run-ai-popup/trax-run-ai-popup.component.mjs +0 -107
  374. package/esm2022/lib/components/trax-store/trax-store.component.mjs +0 -179
  375. package/esm2022/lib/components/traxpopup/traxpopup.component.mjs +0 -70
  376. package/esm2022/lib/services/trax.service.mjs +0 -559
  377. package/esm2022/lib/tango-analyse-trax-routing.module.mjs +0 -153
  378. package/esm2022/lib/tango-analyse-trax.module.mjs +0 -221
  379. package/esm2022/public-api.mjs +0 -6
  380. package/esm2022/tango-app-ui-analyse-trax.mjs +0 -5
  381. package/fesm2022/tango-app-ui-analyse-trax.mjs +0 -28896
  382. package/fesm2022/tango-app-ui-analyse-trax.mjs.map +0 -1
  383. package/index.d.ts +0 -5
  384. package/lib/components/action-centre/action-centre.component.d.ts +0 -68
  385. package/lib/components/activity-log/activity-log.component.d.ts +0 -39
  386. package/lib/components/activity-log-v2/activity-log-v2.component.d.ts +0 -78
  387. package/lib/components/activity-log-v2/log-view-popup/date-range-picker/date-range-picker.component.d.ts +0 -24
  388. package/lib/components/activity-log-v2/log-view-popup/store-user-dropdown/store-user-dropdown.component.d.ts +0 -9
  389. package/lib/components/activity-log-v2/log-view-popup/view-action/view-action.component.d.ts +0 -34
  390. package/lib/components/add-checklist/add-checklist.component.d.ts +0 -121
  391. package/lib/components/add-checklist/checklist-popup/checklist-popup.component.d.ts +0 -45
  392. package/lib/components/add-checklist/counter/counter.component.d.ts +0 -29
  393. package/lib/components/add-multitask/add-multitask.component.d.ts +0 -102
  394. package/lib/components/add-multitask/ascending-validator.d.ts +0 -2
  395. package/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.d.ts +0 -45
  396. package/lib/components/add-multitask/create-task.data.d.ts +0 -293
  397. package/lib/components/add-multitask/create-task.interface.d.ts +0 -159
  398. package/lib/components/add-multitask/unique-string-validator.d.ts +0 -2
  399. package/lib/components/add-multitask/whitespace-validator.d.ts +0 -2
  400. package/lib/components/add-task/add-task.component.d.ts +0 -89
  401. package/lib/components/add-task/ascending-validator.d.ts +0 -2
  402. package/lib/components/add-task/create-task.data.d.ts +0 -293
  403. package/lib/components/add-task/create-task.interface.d.ts +0 -161
  404. package/lib/components/add-task/unique-string-validator.d.ts +0 -2
  405. package/lib/components/add-task/whitespace-validator.d.ts +0 -2
  406. package/lib/components/approval-popup/approval-popup.component.d.ts +0 -14
  407. package/lib/components/checklist/checklist.component.d.ts +0 -40
  408. package/lib/components/checklist-configure/assign/assign.component.d.ts +0 -105
  409. package/lib/components/checklist-configure/checklist-configure.component.d.ts +0 -325
  410. package/lib/components/checklistlayout/checklistlayout.component.d.ts +0 -15
  411. package/lib/components/chip-dropdown/chip-dropdown.component.d.ts +0 -28
  412. package/lib/components/create-task/create-task.component.d.ts +0 -76
  413. package/lib/components/create-task/create-task.data.d.ts +0 -293
  414. package/lib/components/create-task/create-task.interface.d.ts +0 -163
  415. package/lib/components/create-task/validators/ascending-validator.d.ts +0 -2
  416. package/lib/components/create-task/validators/unique-string-validator.d.ts +0 -2
  417. package/lib/components/create-task/validators/whitespace-validator.d.ts +0 -2
  418. package/lib/components/custom-select/custom-select.component.d.ts +0 -35
  419. package/lib/components/dashboard/dashboard.component.d.ts +0 -80
  420. package/lib/components/dashboard-info/dashboard-info.component.d.ts +0 -117
  421. package/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.d.ts +0 -41
  422. package/lib/components/dashboard-layout/dashboard-layout.component.d.ts +0 -5
  423. package/lib/components/disabled-select/disabled-select.component.d.ts +0 -34
  424. package/lib/components/export-gallery/export-gallery.component.d.ts +0 -44
  425. package/lib/components/eye-test-audit/chip-dropdown/chip-dropdown.component.d.ts +0 -26
  426. package/lib/components/eye-test-audit/custom-select/custom-select.component.d.ts +0 -35
  427. package/lib/components/eye-test-audit/eye-test/eye-test.component.d.ts +0 -218
  428. package/lib/components/eye-test-audit/eye-test/send-alert/send-alert.component.d.ts +0 -12
  429. package/lib/components/eye-test-audit/eye-test-audit/eye-test-audit-routing.module.d.ts +0 -7
  430. package/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.component.d.ts +0 -11
  431. package/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.module.d.ts +0 -21
  432. package/lib/components/eye-test-audit/eye-test-audit/settings-audit/settings-audit.component.d.ts +0 -129
  433. package/lib/components/eye-test-audit/eye-test-audit/start-audit/start-audit.component.d.ts +0 -86
  434. package/lib/components/eye-test-audit/group-select/group-select.component.d.ts +0 -33
  435. package/lib/components/eye-test-audit/reactive-select/reactive-select.component.d.ts +0 -32
  436. package/lib/components/eye-test-audit/select-drop/select-drop.component.d.ts +0 -33
  437. package/lib/components/eye-test-audit/services/eye-test-audit.service.d.ts +0 -47
  438. package/lib/components/flag-layout/flag-layout.component.d.ts +0 -5
  439. package/lib/components/flags/flags.component.d.ts +0 -52
  440. package/lib/components/flags-info/flags-info.component.d.ts +0 -73
  441. package/lib/components/flags-info/flags-info.interface.d.ts +0 -430
  442. package/lib/components/flags-info/unattended-pie-chart/unattended-pie-chart.component.d.ts +0 -13
  443. package/lib/components/flags-new/flags-new.component.d.ts +0 -60
  444. package/lib/components/gallery/gallery.component.d.ts +0 -261
  445. package/lib/components/group-select/group-select.component.d.ts +0 -33
  446. package/lib/components/image-popup/image-popup.component.d.ts +0 -11
  447. package/lib/components/lib/custom-select/custom-select.component.d.ts +0 -33
  448. package/lib/components/manage-task/manage-task.component.d.ts +0 -47
  449. package/lib/components/managechecklist/managechecklist.component.d.ts +0 -33
  450. package/lib/components/multi-chip-dropdown/multi-chip-dropdown.component.d.ts +0 -40
  451. package/lib/components/multi-date-datepicker/multi-date-datepicker.component.d.ts +0 -27
  452. package/lib/components/orders/orders.component.d.ts +0 -38
  453. package/lib/components/pagination/pagination.component.d.ts +0 -16
  454. package/lib/components/reactive-select/reactive-select.component.d.ts +0 -32
  455. package/lib/components/reports/date-picker/date-picker.component.d.ts +0 -23
  456. package/lib/components/reports/reports.component.d.ts +0 -55
  457. package/lib/components/tango-analyse-trax/tango-analyse-trax.component.d.ts +0 -14
  458. package/lib/components/task/task.component.d.ts +0 -70
  459. package/lib/components/task-configure/task-configure.component.d.ts +0 -142
  460. package/lib/components/task-configure/task-configure.interface.d.ts +0 -128
  461. package/lib/components/task-info/task-info.component.d.ts +0 -76
  462. package/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.d.ts +0 -61
  463. package/lib/components/task-layout/task-layout.component.d.ts +0 -5
  464. package/lib/components/task-logs/task-logs.component.d.ts +0 -27
  465. package/lib/components/trax-run-ai-popup/trax-run-ai-popup.component.d.ts +0 -26
  466. package/lib/components/trax-store/trax-store.component.d.ts +0 -45
  467. package/lib/components/traxpopup/traxpopup.component.d.ts +0 -24
  468. package/lib/services/trax.service.d.ts +0 -175
  469. package/lib/tango-analyse-trax-routing.module.d.ts +0 -7
  470. package/lib/tango-analyse-trax.module.d.ts +0 -68
@@ -0,0 +1,2338 @@
1
+ // .title-card{
2
+ // color: var(--black, #000);
3
+ // font-family: 'Inter';
4
+ // font-size: 20px;
5
+ // font-weight: 600;
6
+ // line-height: 30px; /* 150% */
7
+ // }
8
+ .card {
9
+ border-radius: 16px;
10
+ }
11
+
12
+ .section1 {
13
+ color: var(--Black, #101828);
14
+ font-family: Inter;
15
+ font-size: 16px;
16
+ font-style: normal;
17
+ font-weight: 500;
18
+ line-height: 24px;
19
+ }
20
+
21
+ .row>* {
22
+ padding-right: 0px;
23
+ }
24
+ .storeAssign,.table-header{
25
+ a:hover{
26
+ text-decoration: underline !important;
27
+ }
28
+ }
29
+
30
+
31
+ .checkconfigcont {
32
+ .card {
33
+ height: 100%;
34
+ }
35
+
36
+ .section {
37
+ display: inline-block;
38
+ width: 160px;
39
+ white-space: nowrap;
40
+ outline: none !important;
41
+ border: none !important;
42
+ box-shadow: none !important;
43
+ overflow: hidden !important;
44
+ text-overflow: ellipsis !important;
45
+ }
46
+
47
+ .radio {
48
+ font-family: 'Inter';
49
+ font-size: 16px;
50
+ font-style: normal;
51
+ font-weight: 500;
52
+ line-height: 24px;
53
+ /* 150% */
54
+ }
55
+
56
+ .mat-radio-button.mat-primary .mat-radio-inner-circle,
57
+ .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),
58
+ .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,
59
+ .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple {
60
+ background-color: #00A3FF;
61
+ }
62
+
63
+ .section-leftheading1 {
64
+ overflow: hidden;
65
+ color: var(--black, #101828);
66
+ text-overflow: ellipsis;
67
+ /* Text lg/Semibold */
68
+ font-family: 'Inter';
69
+ font-size: 18px;
70
+ font-style: normal;
71
+ font-weight: 600;
72
+ line-height: 28px;
73
+ /* 155.556% */
74
+
75
+ // color: var(--black, #101828);
76
+ // font-family: 'Inter';
77
+ // font-size: 20px;
78
+ // font-style: normal;
79
+ // font-weight: 600;
80
+ // line-height: 28px;
81
+ }
82
+
83
+ .section {
84
+ color: var(--Black, #101828);
85
+ font-family: Inter;
86
+ font-size: 16px;
87
+ font-style: normal;
88
+ font-weight: 500;
89
+ line-height: 24px;
90
+ }
91
+
92
+ .scedule-text{
93
+ overflow: hidden;
94
+ color: var(--Black, #101828);
95
+ text-overflow: ellipsis;
96
+ font-size: 12px;
97
+ font-weight: 400;
98
+ line-height: 18px; /* 150% */
99
+ }
100
+
101
+ .svg-icon svg {
102
+ height: 1.25em;
103
+ width: 1.25em;
104
+ }
105
+
106
+ .section-leftheading {
107
+ overflow: hidden;
108
+ color: var(--black, #101828);
109
+ text-overflow: ellipsis;
110
+ /* Text lg/Semibold */
111
+ font-family: 'Inter';
112
+ font-size: 20px;
113
+ font-style: normal;
114
+ font-weight: 600;
115
+ line-height: 28px;
116
+ /* 155.556% */
117
+
118
+ // color: var(--black, #101828);
119
+ // font-family: 'Inter';
120
+ // font-size: 20px;
121
+ // font-style: normal;
122
+ // font-weight: 600;
123
+ // line-height: 28px;
124
+ }
125
+
126
+ .sub {
127
+ color: var(--gray-700, #101828);
128
+ font-family: 'Inter';
129
+ font-size: 16px;
130
+ font-style: normal;
131
+ font-weight: 500;
132
+ line-height: 24px;
133
+ }
134
+ .sub1 {
135
+ color: var(--gray-700, #101828);
136
+ font-family: 'Inter';
137
+ font-size: 14px;
138
+ font-style: normal;
139
+ font-weight: 500;
140
+ line-height: 24px;
141
+ }
142
+
143
+ .subopen {
144
+ color: var(--black, #101828);
145
+ font-family: 'Inter';
146
+ font-size: 16px;
147
+ font-style: normal;
148
+ font-weight: 500;
149
+ line-height: 24px;
150
+ /* 150% */
151
+ }
152
+
153
+ .symbol-circle {
154
+ margin-left: -6px;
155
+ }
156
+
157
+ .checklistlabel {
158
+ padding: 4px 12px;
159
+ justify-content: center;
160
+ align-items: center;
161
+ border-radius: 16px;
162
+ background: var(--gray-100, #F2F4F7);
163
+ }
164
+
165
+ .subtitle {
166
+ font-family: 'Inter';
167
+ font-size: 14px;
168
+ font-weight: 400;
169
+ line-height: 20px;
170
+ letter-spacing: 0em;
171
+ text-align: left;
172
+ color: #667085;
173
+
174
+ }
175
+
176
+ .template-dropdown{
177
+ background: var(--Gray-100, #F2F4F7);
178
+ color: var(--Gray-700, #344054);
179
+ font-size: 14px;
180
+ font-weight: 500;
181
+ line-height: 20px;
182
+ }
183
+
184
+ .form-control.form-control-solid {
185
+ display: flex;
186
+ padding: 11px 14px;
187
+ align-items: center;
188
+ gap: 8px;
189
+ align-self: stretch;
190
+ border-radius: 8px;
191
+ border: 1px solid var(--gray-500, #D0D5DD);
192
+ background: var(--white, #FFF);
193
+ box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
194
+ }
195
+
196
+ .searchplaceholder {
197
+ font-family: 'Inter';
198
+ font-size: 16px;
199
+ font-style: normal;
200
+ font-weight: 400;
201
+ line-height: 24px;
202
+ }
203
+
204
+ .custom-appbox {
205
+ border-radius: 12px;
206
+ }
207
+
208
+ input::placeholder {
209
+ color: #667085 !important;
210
+ opacity: 1;
211
+ }
212
+
213
+ .checklisttext {
214
+ color: var(--gray-700, #344054);
215
+ text-align: center;
216
+ font-family: 'Inter';
217
+ font-size: 14px;
218
+ font-weight: 500;
219
+ line-height: 20px;
220
+ }
221
+
222
+ .separator {
223
+ height: 1px;
224
+ align-self: stretch;
225
+ // background: var(--gray-300, #D0D5DD);
226
+ }
227
+
228
+ ::ng-deep.mat-form-field-infix {
229
+ color: #101828;
230
+ border: 1px solid #D0D5DD;
231
+ box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
232
+ border-radius: 8px;
233
+ font-size: 16px;
234
+ width: 100%;
235
+ padding: 10px 14px;
236
+ font-family: "Inter";
237
+ font-weight: 400;
238
+ width: 500px !important;
239
+ line-height: 24px;
240
+
241
+ }
242
+
243
+ // ::ng-deep.mat-autocomplete-panel-above {
244
+ // bottom: 38.4875px;
245
+ // left: 633.688px;
246
+ // width: 500px;
247
+ // }
248
+
249
+ ::ng-deep .storechip {
250
+ color: #101828;
251
+ /* box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05); */
252
+ /* border-radius: 8px; */
253
+ font-size: 16px;
254
+ width: 100%;
255
+ /* padding: 10px 14px; */
256
+ font-family: "Inter";
257
+ font-weight: 400;
258
+ width: 780px !important;
259
+ line-height: 24px;
260
+ }
261
+
262
+ ::ng-deep .mat-chip {
263
+ font-family: 'Inter';
264
+ font-style: normal;
265
+ font-weight: 500;
266
+ font-size: 14px;
267
+ line-height: 17px;
268
+ /* identical to box height */
269
+ text-align: center;
270
+ color: #5E6278 !important;
271
+ }
272
+
273
+ ::ng-deep .mat-chip-list-wrapper .mat-standard-chip {
274
+ margin: 4px;
275
+ }
276
+
277
+ ::ng-deep .matChip-store {
278
+ height: 100px;
279
+ display: block;
280
+ overflow-y: scroll;
281
+ overflow-x: hidden;
282
+ }
283
+
284
+ ::ng-deep .mat-form-field-appearance-fill .mat-form-field-flex {
285
+ background-color: white !important;
286
+ }
287
+
288
+ ::ng-deep .mat-form-field-underline {
289
+ display: none;
290
+ }
291
+
292
+ ::ng-deep .mat-form-field-ripple {
293
+ display: none;
294
+ }
295
+
296
+ .subtext {
297
+ color: var(--gray-500, #667085);
298
+ font-family: 'Inter';
299
+ font-size: 14px;
300
+ font-weight: 400;
301
+ line-height: 20px;
302
+ align-items: center;
303
+ gap: 8px;
304
+ align-self: stretch;
305
+ }
306
+
307
+ .zone-subscription{
308
+ color: var(--Gray-500, #667085);
309
+ // text-align: center;
310
+ font-size: 14px;
311
+ font-weight: 500;
312
+ line-height: 24px;
313
+ }
314
+
315
+ .upload {
316
+ border-radius: 8px;
317
+ border: 1px solid var(--gray-300, #D0D5DD);
318
+ background: var(--white, #FFF);
319
+
320
+ /* Shadow/xs */
321
+ box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
322
+ display: flex;
323
+ padding: 10px 18px;
324
+ justify-content: center;
325
+ align-items: center;
326
+ gap: 8px;
327
+ flex: 1 0 0;
328
+
329
+ &:hover {
330
+ background: #f3f8fd !important;
331
+ border: 1px solid var(--gray-300, #D0D5DD) !important;
332
+ }
333
+ }
334
+
335
+ .uploadtext {
336
+ color: var(--gray-700, #344054);
337
+ font-family: 'Inter';
338
+ font-size: 16px;
339
+ font-style: normal;
340
+ font-weight: 600;
341
+ line-height: 24px;
342
+ /* 150% */
343
+ text-transform: capitalize;
344
+ }
345
+
346
+ .savedraft {
347
+ border-radius: 8px;
348
+ border: 1px solid var(--gray-300, #D0D5DD);
349
+ background: var(--white, #FFF);
350
+ // display: flex;
351
+ padding: 10px 18px;
352
+ justify-content: center;
353
+ align-items: center;
354
+ gap: 8px;
355
+ box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
356
+
357
+ &:hover {
358
+ background: #f3f8fd !important;
359
+ border: 1px solid var(--gray-300, #D0D5DD) !important;
360
+ }
361
+ }
362
+
363
+ .savedrafttext {
364
+ color: var(--gray-700, #344054);
365
+ font-family: 'Inter';
366
+ font-size: 16px;
367
+ font-weight: 600;
368
+ line-height: 24px;
369
+ /* 150% */
370
+ text-transform: capitalize;
371
+ }
372
+ .configureAcite{
373
+ // border-radius: 8px;
374
+ border: 1px solid var(--Primary-300, #6BCAFF);
375
+ background: var(--Primary-50, #EAF8FF);
376
+ }
377
+
378
+ .text-primary{
379
+ color: var(--primary-700, #009BF3) !important;
380
+ }
381
+ .border-primary{
382
+ border: 1px dashed var(--Primary-500, #33B5FF) !important;
383
+ background: var(--Primary-25, #F6FCFF) !important;
384
+ }
385
+ .download {
386
+ border-radius: 8px;
387
+ border: 1px solid var(--primary-50, #EAF8FF);
388
+ background: var(--primary-50, #EAF8FF);
389
+ box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
390
+ display: flex;
391
+ padding: 10px 18px;
392
+ justify-content: center;
393
+ align-items: center;
394
+ gap: 8px;
395
+ flex: 1 0 0;
396
+ color: var(--primary-700, #009BF3);
397
+ font-family: 'Inter';
398
+ font-size: 16px;
399
+ font-style: normal;
400
+ font-weight: 600;
401
+ line-height: 24px;
402
+ /* 150% */
403
+ text-transform: capitalize;
404
+ }
405
+
406
+ .svg-icon1:hover:not(.svg-active) {
407
+ color: #ffff;
408
+ }
409
+
410
+ .btn-outline {
411
+ border: 1px solid lightgrey !important;
412
+ padding: calc(0.75rem + 1px) calc(1.5rem + 1px);
413
+ }
414
+
415
+ .footertext {
416
+ color: #000;
417
+ font-family: 'Inter';
418
+ font-size: 14px;
419
+ font-weight: 500;
420
+ line-height: 20px;
421
+ text-align: right
422
+ }
423
+
424
+ .footer1 {
425
+ text-align: end;
426
+ }
427
+
428
+ ::ng-deep {
429
+ .mat-radio-button.mat-accent .mat-radio-inner-circle {
430
+ background-color: #009EF7 !important;
431
+ }
432
+
433
+ .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {
434
+ border-color: #009EF7 !important;
435
+ }
436
+
437
+ .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {
438
+ border-color: #009EF7 !important;
439
+ }
440
+
441
+ .mat-radio-button.mat-accent .mat-radio-inner-circle {
442
+ background-color: #009EF7 !important;
443
+ }
444
+
445
+ .mat-slide-toggle.mat-checked .mat-slide-toggle-bar {
446
+ background-color: rgba(29, 161, 242, 0.1);
447
+ color: #009ef7;
448
+ }
449
+
450
+ .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb {
451
+ background-color: #009ef7;
452
+ }
453
+
454
+ th.mat-header-cell:first-of-type,
455
+ td.mat-cell:first-of-type,
456
+ td.mat-footer-cell:first-of-type {
457
+ padding-right: none;
458
+
459
+ }
460
+
461
+ .sopTable {
462
+ input {
463
+ border: none;
464
+ padding: 0px !important;
465
+ }
466
+
467
+ input[type='checkbox'] {
468
+ width: 16px !important;
469
+ height: 16px !important;
470
+ margin: 5px;
471
+ border-radius: 4px !important;
472
+ -webkit-appearance: none;
473
+ -moz-appearance: none;
474
+ -o-appearance: none;
475
+ appearance: none;
476
+ outline: 1px solid var(--gray-600, #D0D5DD) !important;
477
+ box-shadow: none;
478
+ font-size: 0.5em;
479
+ text-align: center;
480
+ line-height: 1em;
481
+ background: white;
482
+ }
483
+
484
+ input[type='checkbox']:checked {
485
+ outline: 1px solid var(--primary-600, #00A3FF) !important;
486
+ background-color: var(--primary-50, #EAF8FF);
487
+ }
488
+
489
+ input[type='checkbox']:checked:after {
490
+ content: '';
491
+ transform: rotate(45deg);
492
+ border-bottom: 2px solid #00A3FF;
493
+ border-right: 2px solid #00A3FF;
494
+ display: inline-block;
495
+ width: 0.5em;
496
+ padding-left: 3px;
497
+ padding-top: 10px;
498
+ padding-right: 0px;
499
+ }
500
+ }
501
+
502
+ .card-body-sop {
503
+ border: 1px solid var(--gray-200, #EAECF0);
504
+ background: var(--white, #FCFCFD);
505
+ border-radius: 6px;
506
+ }
507
+ }
508
+
509
+ .schedule {
510
+ color: var(--gray-700, #344054);
511
+
512
+ font-family: 'Inter';
513
+ font-size: 16px;
514
+ font-style: normal;
515
+ font-weight: 500;
516
+ line-height: 24px;
517
+ /* 150% */
518
+ }
519
+
520
+ .user {
521
+ color: var(--gray-700, #344054);
522
+ font-family: 'Inter';
523
+ font-size: 14px;
524
+ font-style: normal;
525
+ font-weight: 500;
526
+ line-height: 20px;
527
+ /* 142.857% */
528
+ }
529
+
530
+ .dropdown {
531
+ margin-left: -9%;
532
+ }
533
+
534
+ // .btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon) {
535
+ // border: 0;
536
+ // padding: calc(0.75rem + 1px) calc(1.5rem + 1px);
537
+ // // background-color: #F2F4F7;
538
+ // }
539
+ // .nav-item
540
+ .pillstyle {
541
+ color: var(--gray-700, #344054);
542
+ text-align: center;
543
+
544
+ font-family: 'Inter';
545
+ font-size: 14px;
546
+ font-style: normal;
547
+ font-weight: 500;
548
+ line-height: 20px;
549
+ /* 142.857% */
550
+ }
551
+
552
+ // .editques {
553
+ // margin-top: 60px !important;
554
+ // position: absolute !important;
555
+
556
+ // }
557
+ .leftcard {
558
+ position: relative;
559
+ }
560
+
561
+ .editques {
562
+ // margin-top: 60px !important;
563
+ position: absolute !important;
564
+ left: 12%;
565
+ transform: translateX(-5%);
566
+ bottom: 30px;
567
+
568
+ }
569
+
570
+ .orposition{
571
+ top:0px;
572
+ left: 50%;
573
+ transform: translate(-50%,-50%);
574
+ text-align: center;
575
+ }
576
+
577
+ .questiontype {
578
+ color: var(--primary-700, #009BF3);
579
+ font-family: Inter;
580
+ font-size: 16px;
581
+ font-style: normal;
582
+ font-weight: 600;
583
+ outline: none !important;
584
+ background-color: #F1FAFF !important;
585
+ }
586
+
587
+ .btn-left {
588
+ display: inline-block;
589
+ width: 100%;
590
+ font-size: 16px;
591
+ white-space: nowrap;
592
+ overflow: hidden !important;
593
+ text-overflow: ellipsis !important;
594
+
595
+ }
596
+
597
+ .nav {
598
+ display: flex;
599
+ align-items: center;
600
+ gap: 16px;
601
+ flex: 1 0 0;
602
+ align-self: stretch;
603
+ --bs-nav-link-color: none;
604
+ }
605
+
606
+ .form-control.form-control-solid {
607
+ border-radius: 8px;
608
+ border: 1px solid var(--gray-300, #D0D5DD);
609
+ background: var(--white, #FFF);
610
+ box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
611
+ }
612
+
613
+ .form-select.form-select-solid {
614
+ border-radius: 8px;
615
+ border: 1px solid var(--gray-300, #D0D5DD);
616
+ background: var(--white, #FFF);
617
+ box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
618
+ }
619
+
620
+ .checklistturnoff {
621
+ border-radius: 8px;
622
+ border: 1px solid var(--gray-200, #EAECF0);
623
+ background: var(--white, #FFF);
624
+ display: flex;
625
+ padding: 16px;
626
+ align-items: flex-start;
627
+ align-self: stretch;
628
+ }
629
+
630
+ .btn.btn-outline.btn-outline-dashed.btn-outline-default:hover:not(.btn-active) {
631
+ border-radius: 8px;
632
+ border: 1px solid var(--gray-300, #D0D5DD);
633
+ background: var(--white, #FFF);
634
+ box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
635
+ display: flex;
636
+ padding: 10px 18px;
637
+ justify-content: center;
638
+ align-items: center;
639
+ gap: 8px;
640
+ flex: 1 0 0;
641
+ }
642
+
643
+
644
+ // .table {
645
+ // height: 250px;
646
+ // overflow: hidden;
647
+ // }
648
+
649
+ // .table:hover {
650
+ // overflow: auto;
651
+ // }
652
+
653
+ // th.mat-header-cell {
654
+ // text-align: start;
655
+ // }
656
+
657
+ // .sopTable th.mat-header-cell:first-of-type,
658
+ // .sopTable td.mat-cell:first-of-type,
659
+ // .sopTable td.mat-footer-cell:first-of-type {
660
+ // // padding-left: 0px;
661
+ // // min-width: 200px;
662
+ // // display: flex;
663
+ // height: 44px;
664
+ // padding: 12px 24px;
665
+ // align-items: center;
666
+ // gap: 12px;
667
+ // align-self: stretch;
668
+
669
+ // }
670
+
671
+ // th.mat-header-cell:first-of-type,
672
+ // td.mat-cell:first-of-type,
673
+ // td.mat-footer-cell:first-of-type {
674
+ // // padding-left: 0px;
675
+ // height: 44px;
676
+ // padding: 12px 24px;
677
+ // align-items: center;
678
+ // gap: 12px;
679
+ // align-self: stretch;
680
+ // }
681
+
682
+ .sopTable {
683
+ input {
684
+ border: none;
685
+ padding: 0px !important;
686
+ }
687
+
688
+ input[type='checkbox'] {
689
+ width: 16px !important;
690
+ height: 16px !important;
691
+ margin: 5px;
692
+ border-radius: 4px !important;
693
+ -webkit-appearance: none;
694
+ -moz-appearance: none;
695
+ -o-appearance: none;
696
+ appearance: none;
697
+ outline: 1px solid var(--gray-600, #D0D5DD) !important;
698
+ box-shadow: none;
699
+ font-size: 0.5em;
700
+ text-align: center;
701
+ line-height: 1em;
702
+ background: white;
703
+ }
704
+
705
+ input[type='checkbox']:checked {
706
+ outline: 1px solid var(--primary-600, #00A3FF) !important;
707
+ background-color: var(--primary-50, #EAF8FF);
708
+ }
709
+
710
+ input[type='checkbox']:checked:after {
711
+ content: '';
712
+ transform: rotate(45deg);
713
+ border-bottom: 2px solid #00A3FF;
714
+ border-right: 2px solid #00A3FF;
715
+ display: inline-block;
716
+ width: 0.5em;
717
+ padding-left: 3px;
718
+ padding-top: 10px;
719
+ padding-right: 0px;
720
+ }
721
+ }
722
+
723
+ // .sopTable table {
724
+ // margin-top: 0px !important
725
+ // }
726
+
727
+ // .sopTable thead {
728
+ // height: 44px !important;
729
+ // padding: 12px 24px;
730
+ // align-items: center;
731
+ // gap: 12px;
732
+ // align-self: stretch;
733
+ // }
734
+
735
+ // .sopTable tbody,
736
+ // .sopTable tfoot,
737
+ // .sopTable td,
738
+ // .sopTable th {
739
+ // // border-bottom-width: 1px;
740
+ // // border-bottom-style: dashed !important;
741
+ // // border-bottom-color: #eff2f5;
742
+ // border-bottom: 1px solid var(--gray-200, #EAECF0);
743
+ // height: 72px;
744
+ // // padding: 16px 24px;
745
+ // align-items: center;
746
+ // align-self: stretch;
747
+
748
+ // }
749
+
750
+ // .sopTable th,
751
+ // .sopTable td {
752
+ // min-width: 130px !important;
753
+ // }
754
+
755
+ // .sopTable th span {
756
+ // // padding: 0 0 0 10px;
757
+ // text-align: start;
758
+ // // font-size: 14px;
759
+ // }
760
+
761
+ // .sopTable td {
762
+ // text-align: start;
763
+ // }
764
+
765
+ // .sopTable th span span {
766
+ // padding: 0 0 0 10px;
767
+ // text-align: start;
768
+ // // font-size: 14px;
769
+ // }
770
+
771
+ // .sopTable .mat-header-cell {
772
+ // font-size: 14px;
773
+ // }
774
+
775
+
776
+ // th.mat-header-cell {
777
+ // // padding: 0px 26px;
778
+ // text-align: start !important;
779
+ // }
780
+
781
+ .option {
782
+ font-weight: normal;
783
+ display: block;
784
+ // white-space-collapse: collapse;
785
+ // text-wrap: nowrap;
786
+ min-height: 1.2em;
787
+ padding: 0px 2px 1px;
788
+ }
789
+
790
+ .card hr {
791
+ width: -webkit-fill-available
792
+ }
793
+
794
+ .imgnodata1 {
795
+ // width: 45%;
796
+ // height: 45%
797
+ width: 216px;
798
+ height: 245px;
799
+ }
800
+
801
+ .editablecontent {
802
+ display: inline-block;
803
+ width: 230px;
804
+ white-space: nowrap;
805
+ outline: none !important;
806
+ border: none !important;
807
+ box-shadow: none !important;
808
+ overflow: hidden !important;
809
+ text-overflow: ellipsis !important;
810
+ }
811
+
812
+ #navfont {
813
+ font-size: 1.15rem !important;
814
+ }
815
+
816
+ .imgdata {
817
+ width: 50%;
818
+ height: 50%;
819
+ }
820
+
821
+ .imgnodata {
822
+ width: 312px;
823
+ height: 312px;
824
+ margin-top: -4%;
825
+ }
826
+
827
+ // .btn.btn-light:hover:not(.btn-active), .btn.btn-light:active:not(.btn-active), .btn.btn-light.active, .btn.btn-light.show, .show > .btn.btn-light {
828
+ // border-radius: 8px;
829
+ // border: 1px solid var(--gray-300, #D0D5DD);
830
+ // background: var(--gray-50, #F9FAFB);
831
+
832
+ // /* Shadow/xs */
833
+ // box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
834
+ // }
835
+
836
+ .card .card-header {
837
+ display: flex;
838
+ justify-content: space-between;
839
+ align-items: stretch;
840
+ flex-wrap: wrap;
841
+ min-height: 70px;
842
+ padding: 0 0.25rem;
843
+ background-color: transparent;
844
+ border-bottom: none;
845
+ }
846
+
847
+ ::ng-deep .mat-select {
848
+ background: #F5F8FA;
849
+ border-radius: 8px;
850
+ }
851
+
852
+ ::ng-deep .mat-select-value {
853
+ height: 42px;
854
+ }
855
+
856
+ ::ng-deep .multiselect-dropdown .dropdown-btn {
857
+ border: none !important;
858
+ }
859
+
860
+ ::ng-deep .multiselect-dropdown .dropdown-list {
861
+ border: none;
862
+ box-shadow: 0 1px 5px #959595;
863
+ margin-left: -12px;
864
+ }
865
+
866
+ ::ng-deep .multiselect-dropdown:focus-visible {
867
+ border: none !important;
868
+ box-shadow: 0 1px 5px #959595;
869
+ margin-left: -12px;
870
+ max-height: 250px;
871
+ }
872
+
873
+ // .form-check.form-check-solid .form-check-input {
874
+ // border-radius: 6px;
875
+ // border: 1px solid var(--primary-600, #00A3FF);
876
+ // background: var(--primary-50, #EAF8FF);
877
+ // // display: flex;
878
+ // width: 20px;
879
+ // height: 20px;
880
+ // padding: 3px;
881
+ // justify-content: center;
882
+ // align-items: center;
883
+ // }
884
+ // .form-check-input {
885
+ // --bs-form-check-bg: var(--primary-600, #00A3FF);
886
+ // }
887
+
888
+ // .form-check.form-check-solid .form-check-input:checked {
889
+ // border-radius: 6px;
890
+ // border: 1px solid var(--primary-600, #00A3FF);
891
+ // background: var(--primary-50, #EAF8FF);
892
+ // }
893
+ .custom-checkbox {
894
+ --checkbox-background-checked: white !important;
895
+ --checkmark-color: #009BF3;
896
+ --border-color: #009BF3;
897
+ --border-radius: 4px
898
+ }
899
+
900
+ .form-check.form-check-custom {
901
+ display: flex;
902
+ align-items: center;
903
+ padding-left: 0;
904
+ margin: 0;
905
+ padding: 12px 24px;
906
+ height: 44px;
907
+ padding: 12px 24px;
908
+ align-items: center;
909
+ gap: 12px;
910
+ align-self: stretch;
911
+ }
912
+
913
+ .tabsub {
914
+ color: var(--gray-500, #667085);
915
+
916
+ /* Text sm/Medium */
917
+ font-family: 'Inter';
918
+ font-size: 14px;
919
+ font-style: normal;
920
+ font-weight: 500;
921
+ line-height: 20px;
922
+ /* 142.857% */
923
+ }
924
+
925
+ .selectstore {
926
+ color: var(--primary-700, #009BF3);
927
+ font-family: 'Inter';
928
+ font-size: 14px;
929
+ font-style: normal;
930
+ font-weight: 600;
931
+ line-height: 20px;
932
+ /* 142.857% */
933
+ text-decoration-line: underline;
934
+ text-transform: capitalize;
935
+ }
936
+
937
+ .headeralign {
938
+ color: var(--gray-500, #667085);
939
+ font-family: 'Inter';
940
+ font-size: 12px;
941
+ font-style: normal;
942
+ font-weight: 500;
943
+ line-height: 18px;
944
+ /* 150% */
945
+ }
946
+
947
+ .rotate {
948
+ transform: rotate(180deg);
949
+ transition: 1s;
950
+ }
951
+
952
+ // td.mat-cell,
953
+ // td.mat-footer-cell {
954
+ // padding: 20px;
955
+ // border-bottom-width: 1px;
956
+ // border-bottom-style: solid;
957
+ // }
958
+
959
+ // .btn.btn-active-primary:hover:not(.btn-active), .btn.btn-active-primary:active:not(.btn-active), .btn.btn-active-primary.active, .btn.btn-active-primary.show, .show > .btn.btn-active-primary {
960
+ // color: #FFFFFF;
961
+ // border-color: #009EF7;
962
+ // background-color: #009EF7 !important;
963
+ // }
964
+ // .btn1:not(.btn1-outline):not(.btn1-dashed):not(.border-hover):not(.border-active):not(.btn1-flush):not(.btn1-icon) {
965
+ // border: 0;
966
+ // background-color: beige !important;
967
+ // padding: calc(0.75rem + 1px) calc(1.5rem + 1px);
968
+ // }
969
+ // .btn.btn-light:hover:not(.btn1-active), .btn.btn-light:active:not(.btn1-active), .btn.btn-light.active, .btn.btn-light.show, .show > .btn.btn-light {
970
+ // border-radius: 8px;
971
+ // border: 1px solid var(--gray-300, #D0D5DD);
972
+ // background: var(--gray-50, #F9FAFB);
973
+
974
+ // }
975
+
976
+ .weekstyle {
977
+ border-radius: 20px;
978
+ background: var(--gray-100, #F2F4F7);
979
+ }
980
+
981
+ ::ng-deep {
982
+ .swal2-popup.swal2-toast .swal2-icon {
983
+ grid-column: 1;
984
+ grid-row: 1/99;
985
+ align-self: center;
986
+ // width: 5em;
987
+ min-width: 2em;
988
+ height: 0em;
989
+ margin: 0 0.5em 0 0;
990
+ }
991
+
992
+ .listitem {
993
+ // display: -webkit-box;
994
+ // display: -ms-flexbox;
995
+ display: flex;
996
+ -webkit-box-pack: justify;
997
+ -ms-flex-pack: justify;
998
+ justify-content: space-between;
999
+ -webkit-box-align: center;
1000
+ -ms-flex-align: center;
1001
+ align-items: center;
1002
+ padding: 0.5rem 1rem;
1003
+ background-color: #F3F6F9;
1004
+ margin-top: 0.75rem;
1005
+ border-radius: 0.42rem;
1006
+
1007
+ }
1008
+
1009
+ .list {
1010
+ overflow-y: auto;
1011
+ // height: 30%;
1012
+ }
1013
+
1014
+ .listitemlabel {
1015
+ font-size: 13px !important;
1016
+ font-weight: 600;
1017
+ font-family: "Inter";
1018
+ color: #7E8299;
1019
+
1020
+ }
1021
+
1022
+
1023
+ .swal2-container {
1024
+ padding: 0.4em !important;
1025
+ }
1026
+
1027
+ .swal2-icon {
1028
+ border: 1px solid white !important
1029
+ }
1030
+
1031
+ body.swal2-toast-shown .swal2-container {
1032
+ width: 500px !important;
1033
+
1034
+ }
1035
+
1036
+ .swal2-popup.swal2-toast .swal2-title {
1037
+ margin: 9px 5px auto !important;
1038
+ }
1039
+
1040
+ .label {
1041
+ color: #3F4254;
1042
+ font-family: 'Inter';
1043
+ font-size: 14px;
1044
+ font-style: normal;
1045
+ font-weight: 600;
1046
+ line-height: 140%;
1047
+ /* 19.6px */
1048
+ }
1049
+
1050
+ .form-check-input[disabled]~.form-check-label.spocName,
1051
+ .form-check-input:disabled~.form-check-label.spocName {
1052
+ opacity: unset !important;
1053
+ }
1054
+ }
1055
+
1056
+ tr.mat-header-row {
1057
+ height: 56px;
1058
+ border-bottom: 1px solid var(--gray-200, #EAECF0);
1059
+ background: var(--gray-25, #FCFCFD);
1060
+ }
1061
+
1062
+ .detectiontext {
1063
+ color: var(--gray-700, #344054);
1064
+ font-family: 'Inter';
1065
+ font-size: 14px;
1066
+ font-style: normal;
1067
+ font-weight: 500;
1068
+ line-height: 20px;
1069
+ /* 142.857% */
1070
+ }
1071
+
1072
+ .alert{
1073
+ border-radius: 16px;
1074
+ background: var(--Gray-100, #F2F4F7);
1075
+ .text{
1076
+ color: var(--Gray-500, #667085);
1077
+ font-size: 14px;
1078
+ font-weight: 500;
1079
+ line-height: 20px;
1080
+ }
1081
+ }
1082
+
1083
+ .alerttext {
1084
+ color: var(--primary-600, #00A3FF);
1085
+ text-align: center;
1086
+
1087
+ font-family: 'Inter';
1088
+ font-size: 12px;
1089
+ font-style: normal;
1090
+ font-weight: 500;
1091
+ line-height: 18px;
1092
+ /* 150% */
1093
+ }
1094
+
1095
+ .alertlabel {
1096
+ // display: flex;
1097
+ width: 24px;
1098
+ height: 24px;
1099
+ padding: 4px 0px 2px 0px;
1100
+ justify-content: center;
1101
+ align-items: center;
1102
+ border-radius: 200px;
1103
+ background: var(--primary-50, #EAF8FF);
1104
+ }
1105
+
1106
+ .create {
1107
+ color: var(--white, #FFF);
1108
+ font-family: 'Inter';
1109
+ font-size: 16px;
1110
+ font-style: normal;
1111
+ font-weight: 600;
1112
+ line-height: 24px;
1113
+ /* 150% */
1114
+ text-transform: capitalize;
1115
+
1116
+ }
1117
+
1118
+ .create1{
1119
+ color: var(--Gray-700, #344054);
1120
+ font-size: 14px;
1121
+ font-weight: 600;
1122
+ line-height: 20px;
1123
+ text-transform: capitalize;
1124
+ }
1125
+
1126
+ .createbuttons {
1127
+ padding: 10px 18px;
1128
+ justify-content: center;
1129
+ align-items: center;
1130
+ gap: 8px;
1131
+ border-radius: 8px;
1132
+ border: 1px solid var(--primary-600, #00A3FF);
1133
+ background: var(--primary-600, #00A3FF);
1134
+
1135
+ /* Shadow/xs */
1136
+ box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
1137
+ }
1138
+
1139
+ .alertsinput {
1140
+ border-radius: 8px;
1141
+ border: 1px solid var(--gray-300, #D0D5DD);
1142
+ background: var(--white, #FFF);
1143
+
1144
+ /* Shadow/xs */
1145
+ box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
1146
+ // display: flex;
1147
+ padding: 10px 14px;
1148
+ align-items: center;
1149
+ gap: 8px;
1150
+ }
1151
+
1152
+ .usageerror {
1153
+ display: block;
1154
+ width: 255px;
1155
+ }
1156
+
1157
+ // .addstore{
1158
+ // width: 330px;
1159
+ // }
1160
+ .reupload {
1161
+ // display: flex;
1162
+ padding: 10px 18px !important;
1163
+ justify-content: center;
1164
+ align-items: center;
1165
+ gap: 8px;
1166
+ flex: 1 0 0;
1167
+ border-radius: 8px;
1168
+ border: 1px solid var(--primary-600, #00A3FF);
1169
+ background: var(--primary-600, #00A3FF);
1170
+ width: 220px;
1171
+ cursor: pointer;
1172
+
1173
+ /* Shadow/xs */
1174
+ box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
1175
+ }
1176
+
1177
+ .reuploadtext {
1178
+ color: var(--White, #FFF);
1179
+ font-family: 'Inter';
1180
+ font-size: 16px;
1181
+ font-style: normal;
1182
+ font-weight: 600;
1183
+ line-height: 24px;
1184
+ /* 150% */
1185
+ text-transform: capitalize;
1186
+ cursor: pointer;
1187
+ }
1188
+
1189
+ .download {
1190
+ border-radius: 8px;
1191
+ border: 1px solid var(--primary-50, #EAF8FF);
1192
+ background: var(--primary-50, #EAF8FF);
1193
+ box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
1194
+ // display: flex;
1195
+ padding: 10px 18px !important;
1196
+ justify-content: center;
1197
+ align-items: center;
1198
+ gap: 8px;
1199
+ width: 220px;
1200
+
1201
+ }
1202
+
1203
+ .downloadtext {
1204
+ color: var(--primary-700, #009BF3);
1205
+ font-family: 'Inter';
1206
+ font-size: 16px;
1207
+ font-style: normal;
1208
+ font-weight: 600;
1209
+ line-height: 24px;
1210
+ /* 150% */
1211
+ text-transform: capitalize;
1212
+ }
1213
+
1214
+ .assignpadding {
1215
+ padding: 0px 40px;
1216
+ }
1217
+
1218
+ .uploadpadding {
1219
+ padding: 0px 20% 9px;
1220
+ }
1221
+ }
1222
+
1223
+
1224
+ ::ng-deep {
1225
+ .swal2-popup.swal2-toast .swal2-icon {
1226
+ grid-column: 1;
1227
+ grid-row: 1/99;
1228
+ align-self: center;
1229
+ // width: 5em;
1230
+ min-width: 2em;
1231
+ height: 0em;
1232
+ margin: 0 0.5em 0 0;
1233
+ }
1234
+
1235
+ .listitem {
1236
+ // display: -webkit-box;
1237
+ // display: -ms-flexbox;
1238
+ display: flex;
1239
+ -webkit-box-pack: justify;
1240
+ -ms-flex-pack: justify;
1241
+ justify-content: space-between;
1242
+ -webkit-box-align: center;
1243
+ -ms-flex-align: center;
1244
+ align-items: center;
1245
+ padding: 0.5rem 1rem;
1246
+ background-color: #F3F6F9;
1247
+ margin-top: 0.75rem;
1248
+ border-radius: 0.42rem;
1249
+
1250
+ }
1251
+
1252
+ // .section-left{
1253
+ // max-height: 50%;
1254
+ // overflow: auto;
1255
+ // overflow-x: hidden;
1256
+ // }
1257
+ .question-left {
1258
+ max-height: 50vh;
1259
+ overflow: auto;
1260
+ overflow-x: hidden;
1261
+ }
1262
+
1263
+ .toasttitile {
1264
+ color: #3F4254;
1265
+ font-family: 'Inter';
1266
+ font-size: 14px;
1267
+ font-style: normal;
1268
+ font-weight: 600;
1269
+ line-height: 140%;
1270
+ // margin-top: -2%;
1271
+ /* 19.6px */
1272
+ }
1273
+
1274
+ .list {
1275
+ overflow-y: auto;
1276
+ // height: 30%;
1277
+ }
1278
+
1279
+ .listitemlabel {
1280
+ font-size: 13px !important;
1281
+ font-weight: 600;
1282
+ font-family: "Inter";
1283
+ color: #7E8299;
1284
+
1285
+ }
1286
+
1287
+
1288
+ .swal2-container {
1289
+ padding: 0.4em !important;
1290
+ }
1291
+
1292
+ .swal2-icon {
1293
+ border: 1px solid white !important
1294
+ }
1295
+
1296
+ body.swal2-toast-shown .swal2-container {
1297
+ width: 500px !important;
1298
+
1299
+ }
1300
+
1301
+ // .swal2-popup.swal2-toast {
1302
+ // border-left: 4px solid #009EF7;
1303
+ // }
1304
+
1305
+ .swal2-popup.swal2-toast .swal2-title {
1306
+ margin: 9px 5px auto !important;
1307
+ }
1308
+
1309
+ .label {
1310
+ color: #3F4254;
1311
+ font-family: 'Inter';
1312
+ font-size: 14px;
1313
+ font-style: normal;
1314
+ font-weight: 600;
1315
+ line-height: 140%;
1316
+ /* 19.6px */
1317
+ }
1318
+ }
1319
+
1320
+ ::ng-deep {
1321
+ .matWidth {
1322
+ margin-left: 12px;
1323
+ margin-right: 12px;
1324
+ }
1325
+ }
1326
+
1327
+ ::ng-deep .mat-tooltip {
1328
+ white-space: pre-line; // Allow line break
1329
+ }
1330
+
1331
+ ::ng-deep .custom-test {
1332
+ color: var(--gray-700, #344054) !important;
1333
+ text-align: start;
1334
+ font-family: 'Inter';
1335
+ font-size: 12px;
1336
+ font-style: normal;
1337
+ border-radius: 8px;
1338
+ box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
1339
+ font-weight: 600;
1340
+ line-height: 18px;
1341
+ background: white;
1342
+ }
1343
+
1344
+ .checkconfigcont .matChip-store {
1345
+ height: 113px;
1346
+ display: block;
1347
+ overflow-y: scroll;
1348
+ overflow-x: hidden;
1349
+ }
1350
+
1351
+ .emailalert {
1352
+ position: relative;
1353
+ height: 500px !important;
1354
+ overflow: auto !important;
1355
+ overflow-x: hidden !important;
1356
+ }
1357
+
1358
+ .emailalert1 {
1359
+ overflow-y: auto !important;
1360
+ height: 10% !important;
1361
+ position: relative;
1362
+ }
1363
+
1364
+ .active-question {
1365
+ color: var(--primary-700, #009BF3);
1366
+ font-size: 16px;
1367
+ font-style: normal;
1368
+ font-weight: 500;
1369
+ line-height: 24px;
1370
+ /* 150% */
1371
+ display: flex;
1372
+ padding: 8px 12px;
1373
+ align-items: center;
1374
+ gap: 105px;
1375
+ align-self: stretch;
1376
+ border-radius: 6px;
1377
+ background: var(--primary-50, #EAF8FF);
1378
+ /* 150% */
1379
+ /* 150% */
1380
+ }
1381
+
1382
+ // .q-btn:not(.q-btn-outline):not(.q-btn-dashed):not(.border-hover):not(.border-active):not(.q-btn-flush):not(.q-btn-icon).q-btn-sm, .q-btn-group-sm > .q-btn:not(.q-btn-outline):not(.q-btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.q-btn-icon) {
1383
+ // color: var(--primary-700, #009BF3);
1384
+ // font-size: 16px;
1385
+ // font-style: normal;
1386
+ // font-weight: 500;
1387
+ // line-height: 24px;
1388
+ // /* 150% */
1389
+ // display: flex;
1390
+ // padding: 8px 12px;
1391
+ // align-items: center;
1392
+ // gap: 105px;
1393
+ // align-self: stretch;
1394
+ // border-radius: 6px;
1395
+ // background: var(--primary-50, #EAF8FF);
1396
+ // /* 150% */
1397
+ // }
1398
+
1399
+ .q-btn {
1400
+ color: var(--gray-700, #344054);
1401
+ font-size: 16px;
1402
+ font-style: normal;
1403
+ font-weight: 500;
1404
+ line-height: 24px;
1405
+ display: flex;
1406
+ padding: 8px 12px;
1407
+ align-items: center;
1408
+ gap: 105px;
1409
+ align-self: stretch;
1410
+ border-radius: 6px;
1411
+ background: var(--primary-50, white);
1412
+ }
1413
+
1414
+ .concise-question {
1415
+ display: inline-block;
1416
+ width: 100%;
1417
+ white-space: nowrap;
1418
+ overflow: hidden !important;
1419
+ text-overflow: ellipsis !important;
1420
+ text-align: left;
1421
+ }
1422
+
1423
+ @media screen and (min-width: 1400px) {
1424
+ .emailalert {
1425
+ position: relative;
1426
+ height: 700px !important;
1427
+ overflow: auto !important;
1428
+ overflow-x: hidden !important;
1429
+ }
1430
+ }
1431
+
1432
+ ::ng-deep {
1433
+ .swal2-html-container {
1434
+ overflow: hidden !important;
1435
+ }
1436
+ }
1437
+
1438
+ .badgeColor {
1439
+ background-color: #FFFAEB !important;
1440
+ color: #B54708 !important;
1441
+ font-family: Inter;
1442
+ font-size: 14px;
1443
+ font-weight: 500;
1444
+ line-height: 20px;
1445
+ letter-spacing: 0em;
1446
+ text-align: center;
1447
+ }
1448
+
1449
+ .config-heading {
1450
+ color: var(--Gray-900, #101828);
1451
+ font-family: 'Inter';
1452
+ font-size: 18px;
1453
+ font-style: normal;
1454
+ font-weight: 600;
1455
+ line-height: 28px;
1456
+ /* 155.556% */
1457
+ width: 35%;
1458
+ }
1459
+
1460
+ .ps-20 {
1461
+ padding-left: 7rem !important;
1462
+ }
1463
+
1464
+ .ps-18 {
1465
+ padding-left: 6.5rem !important;
1466
+ }
1467
+
1468
+ .remove {
1469
+ color: var(--Gray-500, #667085);
1470
+ font-size: 12px;
1471
+ font-weight: 600;
1472
+ line-height: 18px;
1473
+ /* 150% */
1474
+ text-decoration-line: underline;
1475
+ text-transform: capitalize;
1476
+ }
1477
+
1478
+ .fw-400{
1479
+ font-weight: 400;
1480
+ }
1481
+
1482
+ .chip-container {
1483
+ margin-top: 10px;
1484
+ }
1485
+
1486
+ .mat-chip {
1487
+ margin: 5px;
1488
+ }
1489
+
1490
+ .dropdown-menu {
1491
+ position: absolute;
1492
+ top: 100%;
1493
+ left: 0;
1494
+ right: 0;
1495
+ background-color: #fff;
1496
+ z-index: 1000;
1497
+ display: block;
1498
+ box-sizing: border-box;
1499
+ height: 0%;
1500
+ }
1501
+
1502
+ .dropdown-item {
1503
+ padding: 8px 12px;
1504
+ }
1505
+
1506
+ .dropdown-item:hover {
1507
+ background-color: #f1f1f1;
1508
+ }
1509
+
1510
+ .dropdown-item input[type="checkbox"] {
1511
+ margin-right: 10px;
1512
+ }
1513
+
1514
+ .custom-dropdown-menu {
1515
+ border-radius: 4px;
1516
+ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
1517
+ }
1518
+
1519
+ .custom-dropdown-item {
1520
+ display: flex;
1521
+ align-items: center;
1522
+
1523
+ }
1524
+
1525
+ .custom-dropdown-item input {
1526
+ margin-left: 10px;
1527
+ }
1528
+
1529
+ .btn-resize {
1530
+ font-size: 13px !important;
1531
+ height: 29px !important;
1532
+ line-height: 11px !important;
1533
+ padding: 3px !important;
1534
+ }
1535
+
1536
+ .formSeach {
1537
+ width: 95%
1538
+ }
1539
+
1540
+ .nav-item{
1541
+ .nav-link{
1542
+ color: var(--Gray-500, #667085);
1543
+ font-size: 16px;
1544
+ font-weight: 500;
1545
+ }
1546
+ .nav-link:hover{
1547
+ border-bottom: none !important;
1548
+ }
1549
+ .nav-link.active{
1550
+ border-radius: 10px !important;
1551
+ border-bottom: none !important;
1552
+ }
1553
+ .bg-light-primary{
1554
+ background: var(--Primary-50, #EAF8FF) !important;
1555
+ }
1556
+
1557
+ }
1558
+
1559
+ .storetext {
1560
+ color: var(--Gray-500, #667085);
1561
+ font-size: 14px;
1562
+ font-weight: 500;
1563
+ line-height: 20px;
1564
+ }
1565
+
1566
+ .position-relative {
1567
+ position: relative !important;
1568
+ }
1569
+
1570
+
1571
+ /* Content Wrapper */
1572
+ .content {
1573
+ background-color: #fff;
1574
+ /* Light grey background */
1575
+ padding: 10px 22px 10px 10px;
1576
+ border-radius: 5px;
1577
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
1578
+ }
1579
+
1580
+ .badge-pill {
1581
+ display: flex;
1582
+ padding: 2px 6px 2px 8px;
1583
+ justify-content: center;
1584
+ align-items: center;
1585
+ gap: 4px;
1586
+ border-radius: 16px;
1587
+ background: var(--Gray-100, #F2F4F7);
1588
+ }
1589
+
1590
+ // .badge-specificdate{
1591
+ // max-width: 100%;
1592
+ // overflow-x: auto;
1593
+ // white-space: nowrap !important;
1594
+ // width: 50%;
1595
+ // }
1596
+ .badge-specificdate {
1597
+ max-width: 100%;
1598
+ overflow-x: hidden;
1599
+ white-space: normal;
1600
+ // width: 100%;
1601
+ display: flex;
1602
+ flex-wrap: wrap;
1603
+ }
1604
+
1605
+ .badge-specificdate .badge {
1606
+ margin-bottom: 8px;
1607
+ }
1608
+
1609
+ .bg-color-disabled {
1610
+ color: var(--Gray-500, #667085) !important;
1611
+ /* Text sm/Regular */
1612
+ font-family: Inter;
1613
+ font-size: 14px;
1614
+ font-style: normal;
1615
+ font-weight: 400;
1616
+ line-height: 20px;
1617
+ }
1618
+
1619
+ a.cursor-default {
1620
+ cursor: default !important;
1621
+ background-color: unset !important;
1622
+ }
1623
+
1624
+ .form-control.form-control-solid.disabled {
1625
+ background-color: #eef3f7 !important;
1626
+ }
1627
+
1628
+ .plain-input {
1629
+ border: none;
1630
+ outline: none;
1631
+ background: transparent;
1632
+ padding: 0;
1633
+ margin: 0;
1634
+ width: 100%;
1635
+ overflow: hidden;
1636
+ color: var(--black, #101828);
1637
+ text-overflow: ellipsis;
1638
+ font-family: Inter;
1639
+ font-size: 18px;
1640
+ font-style: normal;
1641
+ font-weight: 500;
1642
+ line-height: 28px;
1643
+
1644
+ /* 155.556% */
1645
+ &:focus {
1646
+ border-radius: 0px !important;
1647
+ border: white !important;
1648
+ outline: none !important;
1649
+ box-shadow: none !important;
1650
+ }
1651
+ }
1652
+
1653
+ .daterangepicker {
1654
+ display: block !important;
1655
+ top: 153.85px !important;
1656
+ left: 900px !important;
1657
+ right: 0px;
1658
+ }
1659
+
1660
+ .form-control {
1661
+ color: var(--Gray-700, #344054) !important;
1662
+ font-size: 14px !important;
1663
+ font-weight: 600;
1664
+ line-height: 20px;
1665
+ text-transform: capitalize;
1666
+ }
1667
+
1668
+ ::ng-deep .applyBtn {
1669
+ display: none !important;
1670
+ }
1671
+
1672
+ .wrapper {
1673
+ min-width: 200px;
1674
+ }
1675
+
1676
+ .btn-primary {
1677
+ line-height: 18px !important;
1678
+ }
1679
+
1680
+ .selectDay {
1681
+ background-color: var(--bs-primary) !important;
1682
+ }
1683
+
1684
+ a.selectDay span {
1685
+ color: white !important;
1686
+ }
1687
+
1688
+ .loader {
1689
+ .title {
1690
+ width: 65%;
1691
+ }
1692
+
1693
+ .link {
1694
+ width: 85%;
1695
+ }
1696
+
1697
+ .description {
1698
+ width: 95%;
1699
+ }
1700
+
1701
+ .shimmer {
1702
+ padding: 15px;
1703
+ width: 95%;
1704
+ height: 120px;
1705
+ margin: 10px auto;
1706
+ background: #ffffff;
1707
+ }
1708
+
1709
+ .shimmer .image-card {
1710
+ height: 90px;
1711
+ width: 90px;
1712
+ float: right;
1713
+ border-radius: 8px;
1714
+ }
1715
+
1716
+ .stroke {
1717
+ height: 15px;
1718
+ background: #777;
1719
+ margin-top: 20px;
1720
+ }
1721
+
1722
+ .wrapper {
1723
+ width: 0px;
1724
+ animation: fullView 0.5s forwards linear;
1725
+ }
1726
+
1727
+ @keyframes fullView {
1728
+ 100% {
1729
+ width: 100%;
1730
+ }
1731
+ }
1732
+
1733
+ .animate {
1734
+ animation: shimmer 3s;
1735
+ animation-iteration-count: infinite;
1736
+ background: linear-gradient(to right, #e6e6e6 5%, #cccccc 25%, #e6e6e6 35%);
1737
+ background-size: 1000px 100%;
1738
+ }
1739
+
1740
+ @keyframes shimmer {
1741
+ from {
1742
+ background-position: -1000px 0;
1743
+ }
1744
+
1745
+ to {
1746
+ background-position: 1000px 0;
1747
+ }
1748
+ }
1749
+ }
1750
+
1751
+ tr th .form-check-label,
1752
+ tr td .form-check-label {
1753
+ color: var(--Gray-700, #344054) !important;
1754
+ }
1755
+
1756
+ :host::ng-deep {
1757
+ .schedule {
1758
+ .md-drppicker .btn {
1759
+ line-height: 10px !important;
1760
+ }
1761
+
1762
+ .daterangepicker-input+.ngx-daterangepicker-material .applyBtn {
1763
+ display: none;
1764
+ }
1765
+
1766
+ .md-drppicker.drops-down-right.ltr.show-ranges.shown {
1767
+ top: 65px !important;
1768
+ }
1769
+
1770
+ .md-drppicker.drops-down-right.ltr.double.show-ranges.shown {
1771
+ top: 65px !important;
1772
+ right: -475px !important;
1773
+ left: unset !important;
1774
+ height: 400px !important;
1775
+ }
1776
+
1777
+ .md-drppicker .btn {
1778
+ border-radius: 8px !important;
1779
+ border: 1px solid var(--Primary-600, #00A3FF) !important;
1780
+ background: var(--Primary-600, #00A3FF) !important;
1781
+ box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05) !important;
1782
+ color: var(--White, #FFF) !important;
1783
+ font-size: 14px !important;
1784
+ font-weight: 600 !important;
1785
+ line-height: 20px;
1786
+ text-transform: capitalize;
1787
+ }
1788
+
1789
+ .md-drppicker .ranges ul li button {
1790
+ padding: 12px 16px;
1791
+ width: 160px;
1792
+ color: var(--Gray-700, #344054);
1793
+ font-size: 14px;
1794
+ font-weight: 400;
1795
+ line-height: 20px;
1796
+ background: none;
1797
+ border: none;
1798
+ text-align: left;
1799
+ cursor: pointer;
1800
+ }
1801
+
1802
+ .md-drppicker td.active,
1803
+ .md-drppicker td.active:hover {
1804
+ background-color: #029cf4 !important;
1805
+ border-radius: 20px !important;
1806
+ color: var(--White, #FFF) !important;
1807
+ text-align: center !important;
1808
+ font-size: 14px !important;
1809
+ font-weight: 500 !important;
1810
+ line-height: 20px;
1811
+ }
1812
+
1813
+ .md-drppicker.ltr .ranges {
1814
+ float: left;
1815
+ margin-top: 10px !important;
1816
+ }
1817
+
1818
+ .md-drppicker td.in-range {
1819
+ background: var(--Primary-50, #EAF8FF);
1820
+ }
1821
+
1822
+ .md-drppicker .ranges ul li button.active {
1823
+ background: var(--Primary-50, #EAF8FF) !important;
1824
+ border-radius: 8px !important;
1825
+ color: var(--Primary-700, #009BF3);
1826
+ font-size: 14px !important;
1827
+ font-weight: 500 !important;
1828
+ line-height: 20px !important;
1829
+ }
1830
+
1831
+ table th,
1832
+ table td {
1833
+ width: 40px !important;
1834
+ height: 40px !important;
1835
+ padding: 10px 8px !important;
1836
+ }
1837
+
1838
+ .md-drppicker td.available.prev,
1839
+ .md-drppicker th.available.prev {
1840
+ background-image: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMy43IDYiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDMuNyA2IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnPg0KCTxwYXRoIGQ9Ik0zLjcsMC43TDEuNCwzbDIuMywyLjNMMyw2TDAsM2wzLTNMMy43LDAuN3oiLz4NCjwvZz4NCjwvc3ZnPg0K) !important;
1841
+ background-repeat: no-repeat !important;
1842
+ background-size: 0.5em !important;
1843
+ background-position: center !important;
1844
+ }
1845
+
1846
+ .md-drppicker td.available.next,
1847
+ .md-drppicker th.available.next {
1848
+ background-image: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMy43IDYiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDMuNyA2IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnPg0KCTxwYXRoIGQ9Ik0zLjcsMC43TDEuNCwzbDIuMywyLjNMMyw2TDAsM2wzLTNMMy43LDAuN3oiLz4NCjwvZz4NCjwvc3ZnPg0K) !important;
1849
+ background-repeat: no-repeat !important;
1850
+ background-size: 0.5em !important;
1851
+ background-position: center !important;
1852
+ }
1853
+
1854
+ table th {
1855
+ border-bottom: 0px solid var(--Gray-200, #EAECF0) !important;
1856
+ background: transparent !important;
1857
+ color: var(--Gray-700, #344054) !important;
1858
+ text-align: center;
1859
+ font-size: 16px !important;
1860
+ font-weight: 500 !important;
1861
+ line-height: 24px;
1862
+ }
1863
+
1864
+ .md-drppicker td.available.invalid-date {
1865
+ text-decoration: line-through;
1866
+ pointer-events: none;
1867
+ color: darkgray;
1868
+ }
1869
+
1870
+ .md-drppicker td.available.today:not(.invalid-date) {
1871
+ text-decoration: unset;
1872
+ pointer-events: unset;
1873
+ color: unset;
1874
+ }
1875
+
1876
+ .md-drppicker .btn.btn-default {
1877
+ border-radius: 8px !important;
1878
+ border: 1px solid var(--Gray-300, #D0D5DD) !important;
1879
+ background: var(--White, #FFF) !important;
1880
+ box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05) !important;
1881
+ color: var(--Gray-700, #344054) !important;
1882
+ font-size: 14px !important;
1883
+ font-weight: 600 !important;
1884
+ line-height: 20px;
1885
+ text-transform: capitalize;
1886
+ margin-right: 10px !important;
1887
+ }
1888
+
1889
+ .md-drppicker td.available.invalid-date {
1890
+ text-decoration: line-through;
1891
+ pointer-events: none;
1892
+ color: darkgray;
1893
+ }
1894
+
1895
+ .md-drppicker td.available.today:not(.invalid-date) {
1896
+ text-decoration: unset;
1897
+ pointer-events: unset;
1898
+ color: unset;
1899
+ }
1900
+ }
1901
+ }
1902
+ .fontSize {
1903
+ font-size:14px;
1904
+ }
1905
+
1906
+ .margin {
1907
+ margin-top: 2px;
1908
+ }
1909
+
1910
+ .w-20 {
1911
+ width:20% !important
1912
+ }
1913
+
1914
+ .w-80 {
1915
+ width:80% !important
1916
+ }
1917
+
1918
+ .approver {
1919
+ color: var(--gray-700, #101828);
1920
+ font-family: "Inter";
1921
+ font-size: 16px;
1922
+ font-style: normal;
1923
+ font-weight: 500;
1924
+ line-height: 24px;
1925
+ }
1926
+ .line-height {
1927
+ line-height:25px;
1928
+ }
1929
+
1930
+ .storeAssign {
1931
+ color: var(--Gray-700, #344054);
1932
+ font-family: Inter;
1933
+ font-size: 14px;
1934
+ font-style: normal;
1935
+ font-weight: 500;
1936
+ line-height: 20px;
1937
+ }
1938
+
1939
+ .selected-radio{
1940
+ width: 1.5rem !important;
1941
+ height: 1.5rem !important;
1942
+ }
1943
+
1944
+ .lineHeight {
1945
+ line-height: 27px;;
1946
+ }
1947
+ .table-header{
1948
+ color: var(--Gray-800, #1D2939);
1949
+ font-size: 16px;
1950
+ font-weight: 600;
1951
+ line-height: 24px;
1952
+ }
1953
+ .text-error{
1954
+ color: var(--Error-700, #B42318) !important;
1955
+ font-size: 14px;
1956
+ font-weight: 500;
1957
+ line-height: 20px;
1958
+ }
1959
+ .excel-error{
1960
+ color: var(--Error-600, #D92D20);
1961
+ font-size: 14px;
1962
+ font-weight: 500;
1963
+ line-height: 20px;
1964
+ }
1965
+ .error-heading{
1966
+ color: var(--Error-600, #D92D20);
1967
+ font-size: 20px;
1968
+ font-weight: 500;
1969
+ line-height: 30px;
1970
+ }
1971
+ .border-error{
1972
+ border: 1px solid var(--Error-300, #FDA29B) !important;
1973
+ background: var(--Error-25, #FFFBFA) !important;
1974
+ }
1975
+
1976
+ .popup-card{
1977
+ border-radius: 6px;
1978
+ border: 1px solid var(--Gray-300, #D0D5DD);
1979
+ background: #FFF;
1980
+ box-shadow: 0px 1px 3px 0px rgba(16, 24, 40, 0.10), 0px 1px 2px 0px rgba(16, 24, 40, 0.06);
1981
+ }
1982
+
1983
+ .schedule-config-header {
1984
+ color: var(--Black, #101828);
1985
+ /* Text md/Semibold */
1986
+ font-family: Inter;
1987
+ font-size: 18px;
1988
+ font-style: normal;
1989
+ font-weight: 600;
1990
+ line-height: 24px; /* 150% */
1991
+ }
1992
+
1993
+ .schedule-config-description {
1994
+ color: var(--Gray-500, #667085);
1995
+ /* Text xs/Medium */
1996
+ font-family: Inter;
1997
+ font-size: 14px;
1998
+ font-style: normal;
1999
+ font-weight: 500;
2000
+ line-height: 18px; /* 150% */
2001
+ }
2002
+
2003
+ .schedule-config-sub-header {
2004
+ color: var(--Black, #101828);
2005
+ /* Text md/Medium */
2006
+ font-family: Inter;
2007
+ font-size: 16px;
2008
+ font-style: normal;
2009
+ font-weight: 500;
2010
+ line-height: 24px; /* 150% */
2011
+ }
2012
+
2013
+ .advancedConfigureAcite{
2014
+ // border-radius: 8px;
2015
+ border: 1px solid var(--Primary-300, #6BCAFF) !important;
2016
+ background: var(--Primary-50, #EAF8FF);
2017
+ }
2018
+ .bg-light-custom { background-color: #f8fafc; min-height: 100vh; }
2019
+
2020
+ .config-card {
2021
+ background: #fff;
2022
+ border: 1px solid #eef2f6;
2023
+ border-radius: 12px;
2024
+ box-shadow: 0 2px 4px rgba(0,0,0,0.01);
2025
+ }
2026
+
2027
+ .extra-small { font-size: 0.75rem; }
2028
+
2029
+ /* Tags & Chips */
2030
+ .tag-input-box {
2031
+ border: 1px solid #e2e8f0;
2032
+ border-radius: 8px;
2033
+ background: #fcfcfd;
2034
+ min-height: 45px;
2035
+ }
2036
+
2037
+ .badge-tag {
2038
+ background: #e9ecef;
2039
+ color: #475467;
2040
+ padding: 4px 12px;
2041
+ border-radius: 20px;
2042
+ font-size: 0.85rem;
2043
+ }
2044
+
2045
+ .chip-container {
2046
+ border: 1px solid #e2e8f0;
2047
+ border-radius: 8px;
2048
+ display: flex;
2049
+ gap: 8px;
2050
+ background: #fff;
2051
+ min-height: 38px;
2052
+ align-items: center;
2053
+ padding-left: 10px !important;
2054
+ }
2055
+
2056
+ .user-chip {
2057
+ background: #f0f9ff;
2058
+ border: 1px solid #e0f2fe;
2059
+ border-radius: 6px;
2060
+ padding: 2px 8px;
2061
+ display: flex;
2062
+ align-items: center;
2063
+ font-size: 0.75rem;
2064
+ }
2065
+
2066
+ .user-chip .initials { color: #0ea5e9; font-weight: bold; margin-right: 6px; }
2067
+ .user-chip .name { color: #344054; }
2068
+
2069
+ /* Alert Box Styling */
2070
+ .info-banner {
2071
+ background: #f1f5f9;
2072
+ padding: 10px 15px;
2073
+ border-radius: 10px;
2074
+ font-size: 0.85rem;
2075
+ color: #64748b;
2076
+ }
2077
+
2078
+ .threshold-inner-card {
2079
+ border: 1px solid #e2e8f0;
2080
+ border-radius: 15px;
2081
+ position: relative;
2082
+ }
2083
+
2084
+ .floating-icon {
2085
+ position: absolute;
2086
+ top: -22px;
2087
+ right: 25%;
2088
+ width: 44px;
2089
+ height: 44px;
2090
+ background: linear-gradient(135deg, #3b82f6 0%, #2dd4bf 100%);
2091
+ border-radius: 12px;
2092
+ display: flex;
2093
+ align-items: center;
2094
+ justify-content: center;
2095
+ color: white;
2096
+ box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
2097
+ }
2098
+
2099
+ .sub-config-box {
2100
+ border: 1px solid #f1f5f9;
2101
+ border-radius: 12px;
2102
+ }
2103
+
2104
+ /* Switch customization to match blue in image */
2105
+ .form-check-input:checked {
2106
+ background-color: #0ea5e9;
2107
+ border-color: #0ea5e9;
2108
+ }
2109
+
2110
+ .cursor-pointer { cursor: pointer; }
2111
+
2112
+
2113
+
2114
+ /* Time Input Styling */
2115
+ .time-input-wrapper {
2116
+ position: relative;
2117
+ display: inline-block;
2118
+ }
2119
+
2120
+ .time-field {
2121
+ border-radius: 8px;
2122
+ border: 1px solid #dee2e6;
2123
+ padding: 8px 12px;
2124
+ padding-right: 35px; /* space for icon */
2125
+ font-weight: 500;
2126
+ color: #334155;
2127
+ width: 120px;
2128
+ }
2129
+
2130
+ .time-input-wrapper i {
2131
+ position: absolute;
2132
+ right: 12px;
2133
+ top: 50%;
2134
+ transform: translateY(-50%);
2135
+ color: #334155;
2136
+ pointer-events: none;
2137
+ font-size: 1.1rem;
2138
+ }
2139
+
2140
+ /* Custom Switch Color */
2141
+ .custom-switch {
2142
+ width: 3em !important;
2143
+ height: 1.5em !important;
2144
+ cursor: pointer;
2145
+ }
2146
+
2147
+ .form-check-input:checked {
2148
+ background-color: #0095ff; /* Vibrant blue from image */
2149
+ border-color: #0095ff;
2150
+ }
2151
+
2152
+ /* Select Styling */
2153
+ .form-select {
2154
+ border-radius: 8px;
2155
+ padding: 8px 29px 8px 15px;
2156
+ border: 1px solid #dee2e6;
2157
+ }
2158
+
2159
+ /* Animations */
2160
+ .animate-fade-in {
2161
+ animation: fadeIn 0.3s ease-in;
2162
+ }
2163
+
2164
+ @keyframes fadeIn {
2165
+ from { opacity: 0; transform: translateY(-5px); }
2166
+ to { opacity: 1; transform: translateY(0); }
2167
+ }
2168
+
2169
+ /* Remove default browser icon for type="time" */
2170
+ // input[type="time"]::-webkit-calendar-picker-indicator {
2171
+ // background: transparent;
2172
+ // bottom: 0;
2173
+ // color: transparent;
2174
+ // cursor: pointer;
2175
+ // height: auto;
2176
+ // left: 0;
2177
+ // position: absolute;
2178
+ // right: 0;
2179
+ // top: 0;
2180
+ // width: auto;
2181
+ // }
2182
+ /* Color Palette */
2183
+ .text-dark-blue { color: #1e293b; }
2184
+ .text-secondary-blue { color: #334155; }
2185
+
2186
+ /* Custom Blue Switch */
2187
+ .custom-switch {
2188
+ width: 3.2em !important;
2189
+ height: 1.6em !important;
2190
+ cursor: pointer;
2191
+ }
2192
+
2193
+ .form-check-input:checked {
2194
+ background-color: #0ea5e9; /* Vibrant blue from screenshot */
2195
+ border-color: #0ea5e9;
2196
+ }
2197
+
2198
+ /* Custom Select Dropdown */
2199
+ .custom-select {
2200
+ width: 70px;
2201
+ height: 48px;
2202
+ border-radius: 10px;
2203
+ border: 1px solid #e2e8f0;
2204
+ text-align: center;
2205
+ padding: 0 10px;
2206
+ font-weight: 500;
2207
+ background-color: #fff;
2208
+ color: #334155;
2209
+ }
2210
+
2211
+ /* Summary Text Style */
2212
+ .summary-text {
2213
+ color: #475569;
2214
+ font-size: 0.95rem;
2215
+ font-weight: 500;
2216
+ margin-top: 1.5rem;
2217
+ }
2218
+
2219
+ /* Entry Animation */
2220
+ .fade-in {
2221
+ animation: fadeIn 0.2s ease-in;
2222
+ }
2223
+
2224
+ @keyframes fadeIn {
2225
+ from { opacity: 0; transform: translateY(-5px); }
2226
+ to { opacity: 1; transform: translateY(0); }
2227
+ }
2228
+
2229
+
2230
+ /* Color Palette */
2231
+ .text-dark-blue { color: #334155; }
2232
+ .text-secondary-blue { color: #475569; }
2233
+
2234
+ /* Info Banner Styling */
2235
+ .info-banner {
2236
+ background-color: #f1f5f9;
2237
+ border-radius: 12px;
2238
+ color: #64748b;
2239
+ }
2240
+
2241
+ .small-text {
2242
+ font-size: 0.9rem;
2243
+ font-weight: 500;
2244
+ }
2245
+
2246
+ /* Inner Container Styling */
2247
+ .threshold-container {
2248
+ border: 1px solid #e2e8f0;
2249
+ border-radius: 16px;
2250
+ background-color: #ffffff;
2251
+ }
2252
+
2253
+ .description-text {
2254
+ font-size: 0.8rem;
2255
+ color: #94a3b8;
2256
+ }
2257
+
2258
+ /* Custom Toggle Switch */
2259
+ .custom-switch {
2260
+ width: 2.8em !important;
2261
+ height: 1.4em !important;
2262
+ cursor: pointer;
2263
+ }
2264
+
2265
+ .form-check-input:checked {
2266
+ background-color: #38bdf8; /* Soft blue */
2267
+ border-color: #38bdf8;
2268
+ }
2269
+
2270
+ /* Custom Select Dropdown */
2271
+ .custom-select {
2272
+ width: 75px;
2273
+ height: 42px;
2274
+ border-radius: 8px;
2275
+ border: 1px solid #e2e8f0;
2276
+ text-align: center;
2277
+ font-weight: 500;
2278
+ color: #334155;
2279
+ cursor: pointer;
2280
+ background-color: #fff;
2281
+ }
2282
+
2283
+ .custom-select:focus {
2284
+ border-color: #cbd5e1;
2285
+ box-shadow: none;
2286
+ }
2287
+ .checklistDescription{
2288
+ font-weight: 400;
2289
+ font-size: 15px;
2290
+ line-height: 18px;
2291
+ letter-spacing: 0%;
2292
+ }
2293
+
2294
+
2295
+ // The white card background
2296
+ .config-card {
2297
+ background-color: white;
2298
+ border-radius: 20px;
2299
+ width: 100%;
2300
+ }
2301
+
2302
+ // Customize Bootstrap Switch to match the blue in the image
2303
+
2304
+
2305
+ // Customize Select boxes
2306
+ .custom-select {
2307
+ border-radius: 8px;
2308
+ border: 1px solid #dee2e6;
2309
+ padding: 8px 16px;
2310
+ min-width: 68px;
2311
+ font-weight: 500;
2312
+
2313
+ &:focus {
2314
+ box-shadow: 0 0 0 0.25rem rgba(0, 149, 255, 0.1);
2315
+ border-color: #0095ff;
2316
+ }
2317
+ }
2318
+ .custom-select1 {
2319
+ border-radius: 8px;
2320
+ border: 1px solid #dee2e6;
2321
+ padding: 8px 23px;
2322
+ min-width: 68px;
2323
+ font-weight: 500;
2324
+
2325
+ &:focus {
2326
+ box-shadow: 0 0 0 0.25rem rgba(0, 149, 255, 0.1);
2327
+ border-color: #0095ff;
2328
+ }
2329
+ }
2330
+
2331
+ // Text colors
2332
+ h2, h6 {
2333
+ color: #1a202c;
2334
+ }
2335
+
2336
+ .text-secondary {
2337
+ color: #718096 !important;
2338
+ }