@testgorilla/tgo-coding-test 0.0.1 → 1.0.0

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 (354) hide show
  1. package/README.md +49 -2
  2. package/esm2022/index.mjs +12 -0
  3. package/esm2022/lib/components/code-editor/code-editor.component.mjs +335 -0
  4. package/esm2022/lib/components/code-editor/code-editor.service.mjs +72 -0
  5. package/esm2022/lib/components/code-editor/helpers/c-helper.mjs +40 -0
  6. package/esm2022/lib/components/code-editor/helpers/code-editor-helper.base.mjs +11 -0
  7. package/esm2022/lib/components/code-editor/helpers/code-editor-helper.model.mjs +2 -0
  8. package/esm2022/lib/components/code-editor/helpers/cpp-helper.mjs +41 -0
  9. package/esm2022/lib/components/code-editor/helpers/csharp-helper.mjs +42 -0
  10. package/esm2022/lib/components/code-editor/helpers/go-helper.mjs +42 -0
  11. package/esm2022/lib/components/code-editor/helpers/index.mjs +16 -0
  12. package/esm2022/lib/components/code-editor/helpers/java-helper.mjs +42 -0
  13. package/esm2022/lib/components/code-editor/helpers/javascript-helper.mjs +26 -0
  14. package/esm2022/lib/components/code-editor/helpers/kotlin-helper.mjs +42 -0
  15. package/esm2022/lib/components/code-editor/helpers/php-helper.mjs +26 -0
  16. package/esm2022/lib/components/code-editor/helpers/python-helper.mjs +26 -0
  17. package/esm2022/lib/components/code-editor/helpers/r-helper.mjs +26 -0
  18. package/esm2022/lib/components/code-editor/helpers/ruby-helper.mjs +26 -0
  19. package/esm2022/lib/components/code-editor/helpers/scala-helper.mjs +41 -0
  20. package/esm2022/lib/components/code-editor/helpers/sql-helper.mjs +34 -0
  21. package/esm2022/lib/components/code-editor/helpers/swift-helper.mjs +40 -0
  22. package/esm2022/lib/components/code-editor/helpers/typescript-helper.mjs +41 -0
  23. package/esm2022/lib/components/code-editor/models/code-editor.model.mjs +2 -0
  24. package/esm2022/lib/components/code-editor/models/coding-snapshot.model.mjs +2 -0
  25. package/esm2022/lib/components/coding-question/coding-question.component.mjs +126 -0
  26. package/esm2022/lib/components/coding-section/coding-section.component.mjs +188 -0
  27. package/esm2022/lib/components/common/truncated-text/truncated-text.component.mjs +38 -0
  28. package/esm2022/lib/components/configurations/configurations.component.mjs +97 -0
  29. package/esm2022/lib/components/instructions/instructions.component.mjs +139 -0
  30. package/esm2022/lib/components/panel/panel.component.mjs +34 -0
  31. package/esm2022/lib/components/runnable-editor/runnable-editor.component.mjs +169 -0
  32. package/esm2022/lib/components/tests/test-cases/test-cases.component.mjs +198 -0
  33. package/esm2022/lib/components/tests/test-cases-content/test-cases-content.component.mjs +96 -0
  34. package/esm2022/lib/components/tests/test-cases-status/test-cases-status.component.mjs +21 -0
  35. package/esm2022/lib/components/tests/test-results.component.mjs +127 -0
  36. package/esm2022/lib/components/tgo-coding-test/tgo-coding-test.component.mjs +280 -0
  37. package/esm2022/lib/components/tgo-coding-test-candidate-view/tgo-coding-test-candidate-view.component.mjs +476 -0
  38. package/esm2022/lib/config/index.mjs +2 -0
  39. package/esm2022/lib/config/tgo-coding-test.config.mjs +2 -0
  40. package/esm2022/lib/config/tgo-coding-test.provider.mjs +34 -0
  41. package/esm2022/lib/config/tgo-coding-test.token.mjs +14 -0
  42. package/esm2022/lib/models/auto-saved-data.mjs +2 -0
  43. package/esm2022/lib/models/code-event.mjs +2 -0
  44. package/esm2022/lib/models/coderunner-execution-results.mjs +2 -0
  45. package/esm2022/lib/models/configs.mjs +2 -0
  46. package/esm2022/lib/models/language-change-action.mjs +2 -0
  47. package/esm2022/lib/models/lat-languages.mjs +3 -0
  48. package/esm2022/lib/models/mixpanel-events.mjs +2 -0
  49. package/esm2022/lib/models/mode.mjs +2 -0
  50. package/esm2022/lib/models/paste-data.mjs +2 -0
  51. package/esm2022/lib/models/programming-language.mjs +2 -0
  52. package/esm2022/lib/models/test-cases.mjs +7 -0
  53. package/esm2022/lib/models/theme.mjs +2 -0
  54. package/esm2022/lib/models/translations.mjs +2 -0
  55. package/esm2022/lib/models/view-mode.mjs +8 -0
  56. package/esm2022/lib/pipes/memoize-func.pipe.mjs +39 -0
  57. package/esm2022/lib/services/candidate-coding-test-services/candidature-api.service.mjs +19 -0
  58. package/esm2022/lib/services/candidate-coding-test-services/coderunner-api.service.mjs +58 -0
  59. package/esm2022/lib/services/candidate-coding-test-services/coding-test-tour.service.mjs +89 -0
  60. package/esm2022/lib/services/candidate-coding-test-services/coding-test.service.mjs +490 -0
  61. package/esm2022/lib/services/candidate-coding-test-services/index.mjs +5 -0
  62. package/esm2022/lib/services/coding-test-config.service.mjs +51 -0
  63. package/esm2022/lib/services/configurations.service.mjs +89 -0
  64. package/esm2022/lib/services/lib-coding-test.service.mjs +106 -0
  65. package/esm2022/lib/services/storage.service.mjs +624 -0
  66. package/esm2022/lib/services/test-cases.service.mjs +30 -0
  67. package/esm2022/lib/services/theme.service.mjs +36 -0
  68. package/esm2022/lib/utils/additional-languages/erlang.mjs +103 -0
  69. package/esm2022/lib/utils/resize-element.mjs +13 -0
  70. package/esm2022/lib/utils/time-to-ms.util.mjs +11 -0
  71. package/esm2022/shared/index.mjs +5 -0
  72. package/esm2022/shared/lib/components/audio-animation/audio-animation.component.mjs +114 -0
  73. package/esm2022/shared/lib/components/audio-animation/index.mjs +2 -0
  74. package/esm2022/shared/lib/components/index.mjs +3 -0
  75. package/esm2022/shared/lib/components/vimeo-video/index.mjs +2 -0
  76. package/esm2022/shared/lib/components/vimeo-video/vimeo-video.component.mjs +101 -0
  77. package/esm2022/shared/lib/models/answer.mjs +2 -0
  78. package/esm2022/shared/lib/models/assessment.mjs +2 -0
  79. package/esm2022/shared/lib/models/environment.mjs +2 -0
  80. package/esm2022/shared/lib/models/index.mjs +9 -0
  81. package/esm2022/shared/lib/models/question-component.mjs +2 -0
  82. package/esm2022/shared/lib/models/question.mjs +2 -0
  83. package/esm2022/shared/lib/models/test.mjs +2 -0
  84. package/esm2022/shared/lib/models/translations.mjs +2 -0
  85. package/esm2022/shared/lib/models/window.mjs +2 -0
  86. package/esm2022/shared/lib/services/api/api.service.mjs +97 -0
  87. package/esm2022/shared/lib/services/api/mocked-api.service.mjs +131 -0
  88. package/esm2022/shared/lib/services/environment/environment.service.mjs +13 -0
  89. package/esm2022/shared/lib/services/index.mjs +10 -0
  90. package/esm2022/shared/lib/services/localization/languages.model.mjs +19 -0
  91. package/esm2022/shared/lib/services/localization/transloco-lazy-module-utils.mjs +27 -0
  92. package/esm2022/shared/lib/services/localization/transloco-testing.module.mjs +11 -0
  93. package/esm2022/shared/lib/services/media/media.service.mjs +129 -0
  94. package/esm2022/shared/lib/services/mixpanel/mixpanel.service.mjs +30 -0
  95. package/esm2022/shared/lib/services/theme/theme.service.mjs +24 -0
  96. package/esm2022/shared/test-mocks/assessment-test.mock.mjs +112 -0
  97. package/esm2022/shared/test-mocks/index.mjs +3 -0
  98. package/esm2022/shared/test-mocks/tgo-ui.mock.mjs +39 -0
  99. package/esm2022/testgorilla-tgo-coding-test.mjs +5 -0
  100. package/fesm2022/testgorilla-tgo-coding-test.mjs +4526 -0
  101. package/fesm2022/testgorilla-tgo-coding-test.mjs.map +1 -0
  102. package/{src/index.ts → index.d.ts} +2 -19
  103. package/lib/components/code-editor/code-editor.component.d.ts +54 -0
  104. package/lib/components/code-editor/code-editor.service.d.ts +12 -0
  105. package/lib/components/code-editor/helpers/c-helper.d.ts +11 -0
  106. package/lib/components/code-editor/helpers/code-editor-helper.base.d.ts +8 -0
  107. package/lib/components/code-editor/helpers/code-editor-helper.model.d.ts +62 -0
  108. package/lib/components/code-editor/helpers/cpp-helper.d.ts +11 -0
  109. package/lib/components/code-editor/helpers/csharp-helper.d.ts +12 -0
  110. package/lib/components/code-editor/helpers/go-helper.d.ts +12 -0
  111. package/lib/components/code-editor/helpers/java-helper.d.ts +12 -0
  112. package/lib/components/code-editor/helpers/javascript-helper.d.ts +10 -0
  113. package/lib/components/code-editor/helpers/kotlin-helper.d.ts +12 -0
  114. package/lib/components/code-editor/helpers/php-helper.d.ts +10 -0
  115. package/lib/components/code-editor/helpers/python-helper.d.ts +10 -0
  116. package/lib/components/code-editor/helpers/r-helper.d.ts +10 -0
  117. package/lib/components/code-editor/helpers/ruby-helper.d.ts +10 -0
  118. package/lib/components/code-editor/helpers/scala-helper.d.ts +12 -0
  119. package/lib/components/code-editor/helpers/sql-helper.d.ts +10 -0
  120. package/lib/components/code-editor/helpers/swift-helper.d.ts +11 -0
  121. package/lib/components/code-editor/helpers/typescript-helper.d.ts +11 -0
  122. package/lib/components/code-editor/models/code-editor.model.d.ts +8 -0
  123. package/lib/components/code-editor/models/coding-snapshot.model.d.ts +4 -0
  124. package/lib/components/coding-question/coding-question.component.d.ts +45 -0
  125. package/lib/components/coding-section/coding-section.component.d.ts +52 -0
  126. package/lib/components/common/truncated-text/truncated-text.component.d.ts +13 -0
  127. package/lib/components/configurations/configurations.component.d.ts +40 -0
  128. package/lib/components/instructions/instructions.component.d.ts +48 -0
  129. package/lib/components/panel/panel.component.d.ts +12 -0
  130. package/lib/components/runnable-editor/runnable-editor.component.d.ts +53 -0
  131. package/lib/components/tests/test-cases/test-cases.component.d.ts +46 -0
  132. package/lib/components/tests/test-cases-content/test-cases-content.component.d.ts +26 -0
  133. package/lib/components/tests/test-cases-status/test-cases-status.component.d.ts +9 -0
  134. package/lib/components/tests/test-results.component.d.ts +33 -0
  135. package/lib/components/tgo-coding-test/tgo-coding-test.component.d.ts +69 -0
  136. package/lib/components/tgo-coding-test-candidate-view/tgo-coding-test-candidate-view.component.d.ts +101 -0
  137. package/{src/lib/config/index.ts → lib/config/index.d.ts} +0 -1
  138. package/lib/config/tgo-coding-test.config.d.ts +24 -0
  139. package/{src/lib/config/tgo-coding-test.provider.ts → lib/config/tgo-coding-test.provider.d.ts} +6 -18
  140. package/lib/config/tgo-coding-test.token.d.ts +9 -0
  141. package/lib/models/auto-saved-data.d.ts +42 -0
  142. package/lib/models/code-event.d.ts +15 -0
  143. package/lib/models/coderunner-execution-results.d.ts +51 -0
  144. package/lib/models/configs.d.ts +15 -0
  145. package/lib/models/language-change-action.d.ts +4 -0
  146. package/lib/models/lat-languages.d.ts +8 -0
  147. package/lib/models/mixpanel-events.d.ts +3 -0
  148. package/lib/models/mode.d.ts +5 -0
  149. package/lib/models/paste-data.d.ts +4 -0
  150. package/lib/models/programming-language.d.ts +8 -0
  151. package/lib/models/test-cases.d.ts +67 -0
  152. package/lib/models/theme.d.ts +4 -0
  153. package/lib/models/translations.d.ts +1 -0
  154. package/lib/models/view-mode.d.ts +6 -0
  155. package/{src/lib/pipes/memoize-func.pipe.ts → lib/pipes/memoize-func.pipe.d.ts} +6 -14
  156. package/lib/services/candidate-coding-test-services/candidature-api.service.d.ts +10 -0
  157. package/lib/services/candidate-coding-test-services/coderunner-api.service.d.ts +18 -0
  158. package/lib/services/candidate-coding-test-services/coding-test-tour.service.d.ts +22 -0
  159. package/lib/services/candidate-coding-test-services/coding-test.service.d.ts +68 -0
  160. package/{src/lib/services/candidate-coding-test-services/index.ts → lib/services/candidate-coding-test-services/index.d.ts} +1 -1
  161. package/lib/services/coding-test-config.service.d.ts +38 -0
  162. package/lib/services/configurations.service.d.ts +37 -0
  163. package/lib/services/lib-coding-test.service.d.ts +69 -0
  164. package/lib/services/storage.service.d.ts +83 -0
  165. package/lib/services/test-cases.service.d.ts +12 -0
  166. package/lib/services/theme.service.d.ts +17 -0
  167. package/lib/utils/additional-languages/erlang.d.ts +37 -0
  168. package/lib/utils/resize-element.d.ts +2 -0
  169. package/lib/utils/time-to-ms.util.d.ts +1 -0
  170. package/package.json +18 -7
  171. package/shared/index.d.ts +4 -0
  172. package/shared/lib/components/audio-animation/audio-animation.component.d.ts +27 -0
  173. package/shared/lib/components/audio-animation/index.d.ts +1 -0
  174. package/shared/lib/components/index.d.ts +2 -0
  175. package/shared/lib/components/vimeo-video/index.d.ts +1 -0
  176. package/shared/lib/components/vimeo-video/vimeo-video.component.d.ts +24 -0
  177. package/shared/lib/models/answer.d.ts +17 -0
  178. package/shared/lib/models/assessment.d.ts +80 -0
  179. package/shared/lib/models/environment.d.ts +1 -0
  180. package/shared/lib/models/index.d.ts +8 -0
  181. package/shared/lib/models/question-component.d.ts +54 -0
  182. package/shared/lib/models/question.d.ts +102 -0
  183. package/shared/lib/models/test.d.ts +81 -0
  184. package/shared/lib/models/translations.d.ts +1 -0
  185. package/shared/lib/models/window.d.ts +6 -0
  186. package/shared/lib/services/api/api.service.d.ts +25 -0
  187. package/shared/lib/services/api/mocked-api.service.d.ts +35 -0
  188. package/shared/lib/services/environment/environment.service.d.ts +6 -0
  189. package/shared/lib/services/index.d.ts +9 -0
  190. package/shared/lib/services/localization/languages.model.d.ts +15 -0
  191. package/shared/lib/services/localization/transloco-lazy-module-utils.d.ts +11 -0
  192. package/shared/lib/services/localization/transloco-testing.module.d.ts +2 -0
  193. package/shared/lib/services/media/media.service.d.ts +29 -0
  194. package/shared/lib/services/mixpanel/mixpanel.service.d.ts +10 -0
  195. package/shared/lib/services/theme/theme.service.d.ts +8 -0
  196. package/shared/test-mocks/assessment-test.mock.d.ts +21 -0
  197. package/shared/test-mocks/index.d.ts +2 -0
  198. package/shared/test-mocks/tgo-ui.mock.d.ts +21 -0
  199. package/.eslintrc.json +0 -45
  200. package/jest.config.ts +0 -21
  201. package/ng-package.json +0 -14
  202. package/project.json +0 -36
  203. package/src/lib/components/.gitkeep +0 -0
  204. package/src/lib/components/code-editor/code-editor.component.html +0 -10
  205. package/src/lib/components/code-editor/code-editor.component.scss +0 -21
  206. package/src/lib/components/code-editor/code-editor.component.spec.ts +0 -136
  207. package/src/lib/components/code-editor/code-editor.component.ts +0 -369
  208. package/src/lib/components/code-editor/code-editor.mocks.ts +0 -28
  209. package/src/lib/components/code-editor/code-editor.service.spec.ts +0 -160
  210. package/src/lib/components/code-editor/code-editor.service.ts +0 -94
  211. package/src/lib/components/code-editor/helpers/c-helper.spec.ts +0 -39
  212. package/src/lib/components/code-editor/helpers/c-helper.ts +0 -51
  213. package/src/lib/components/code-editor/helpers/code-editor-helper.base.spec.ts +0 -30
  214. package/src/lib/components/code-editor/helpers/code-editor-helper.base.ts +0 -16
  215. package/src/lib/components/code-editor/helpers/code-editor-helper.mocks.ts +0 -24
  216. package/src/lib/components/code-editor/helpers/code-editor-helper.model.ts +0 -67
  217. package/src/lib/components/code-editor/helpers/cpp-helper.spec.ts +0 -40
  218. package/src/lib/components/code-editor/helpers/cpp-helper.ts +0 -52
  219. package/src/lib/components/code-editor/helpers/csharp-helper.spec.ts +0 -42
  220. package/src/lib/components/code-editor/helpers/csharp-helper.ts +0 -55
  221. package/src/lib/components/code-editor/helpers/go-helper.spec.ts +0 -41
  222. package/src/lib/components/code-editor/helpers/go-helper.ts +0 -54
  223. package/src/lib/components/code-editor/helpers/java-helper.spec.ts +0 -41
  224. package/src/lib/components/code-editor/helpers/java-helper.ts +0 -54
  225. package/src/lib/components/code-editor/helpers/javascript-helper.spec.ts +0 -39
  226. package/src/lib/components/code-editor/helpers/javascript-helper.ts +0 -32
  227. package/src/lib/components/code-editor/helpers/kotlin-helper.spec.ts +0 -41
  228. package/src/lib/components/code-editor/helpers/kotlin-helper.ts +0 -54
  229. package/src/lib/components/code-editor/helpers/php-helper.spec.ts +0 -39
  230. package/src/lib/components/code-editor/helpers/php-helper.ts +0 -32
  231. package/src/lib/components/code-editor/helpers/python-helper.spec.ts +0 -39
  232. package/src/lib/components/code-editor/helpers/python-helper.ts +0 -32
  233. package/src/lib/components/code-editor/helpers/r-helper.spec.ts +0 -39
  234. package/src/lib/components/code-editor/helpers/r-helper.ts +0 -32
  235. package/src/lib/components/code-editor/helpers/ruby-helper.spec.ts +0 -39
  236. package/src/lib/components/code-editor/helpers/ruby-helper.ts +0 -32
  237. package/src/lib/components/code-editor/helpers/scala-helper.spec.ts +0 -41
  238. package/src/lib/components/code-editor/helpers/scala-helper.ts +0 -53
  239. package/src/lib/components/code-editor/helpers/sql-helper.spec.ts +0 -87
  240. package/src/lib/components/code-editor/helpers/sql-helper.ts +0 -44
  241. package/src/lib/components/code-editor/helpers/swift-helper.spec.ts +0 -40
  242. package/src/lib/components/code-editor/helpers/swift-helper.ts +0 -51
  243. package/src/lib/components/code-editor/helpers/typescript-helper.spec.ts +0 -40
  244. package/src/lib/components/code-editor/helpers/typescript-helper.ts +0 -52
  245. package/src/lib/components/code-editor/models/code-editor.model.ts +0 -9
  246. package/src/lib/components/code-editor/models/coding-snapshot.model.ts +0 -4
  247. package/src/lib/components/coding-question/coding-question.component.html +0 -78
  248. package/src/lib/components/coding-question/coding-question.component.scss +0 -76
  249. package/src/lib/components/coding-question/coding-question.component.spec.ts +0 -85
  250. package/src/lib/components/coding-question/coding-question.component.ts +0 -102
  251. package/src/lib/components/coding-section/coding-section.component.html +0 -82
  252. package/src/lib/components/coding-section/coding-section.component.scss +0 -64
  253. package/src/lib/components/coding-section/coding-section.component.spec.ts +0 -257
  254. package/src/lib/components/coding-section/coding-section.component.ts +0 -187
  255. package/src/lib/components/coding-test.module.ts +0 -124
  256. package/src/lib/components/common/truncated-text/truncated-text.component.html +0 -6
  257. package/src/lib/components/common/truncated-text/truncated-text.component.scss +0 -18
  258. package/src/lib/components/common/truncated-text/truncated-text.component.spec.ts +0 -84
  259. package/src/lib/components/common/truncated-text/truncated-text.component.ts +0 -37
  260. package/src/lib/components/configurations/configurations.component.html +0 -57
  261. package/src/lib/components/configurations/configurations.component.scss +0 -42
  262. package/src/lib/components/configurations/configurations.component.spec.ts +0 -186
  263. package/src/lib/components/configurations/configurations.component.ts +0 -98
  264. package/src/lib/components/instructions/instructions.component.html +0 -41
  265. package/src/lib/components/instructions/instructions.component.scss +0 -167
  266. package/src/lib/components/instructions/instructions.component.spec.ts +0 -106
  267. package/src/lib/components/instructions/instructions.component.ts +0 -138
  268. package/src/lib/components/panel/panel.component.html +0 -19
  269. package/src/lib/components/panel/panel.component.scss +0 -41
  270. package/src/lib/components/panel/panel.component.spec.ts +0 -40
  271. package/src/lib/components/panel/panel.component.ts +0 -34
  272. package/src/lib/components/runnable-editor/runnable-editor.component.html +0 -75
  273. package/src/lib/components/runnable-editor/runnable-editor.component.scss +0 -55
  274. package/src/lib/components/runnable-editor/runnable-editor.component.spec.ts +0 -124
  275. package/src/lib/components/runnable-editor/runnable-editor.component.ts +0 -155
  276. package/src/lib/components/tests/test-cases/test-cases.component.html +0 -135
  277. package/src/lib/components/tests/test-cases/test-cases.component.scss +0 -220
  278. package/src/lib/components/tests/test-cases/test-cases.component.spec.ts +0 -401
  279. package/src/lib/components/tests/test-cases/test-cases.component.ts +0 -205
  280. package/src/lib/components/tests/test-cases-content/test-cases-content.component.html +0 -94
  281. package/src/lib/components/tests/test-cases-content/test-cases-content.component.scss +0 -103
  282. package/src/lib/components/tests/test-cases-content/test-cases-content.component.spec.ts +0 -122
  283. package/src/lib/components/tests/test-cases-content/test-cases-content.component.ts +0 -102
  284. package/src/lib/components/tests/test-cases-status/test-cases-status.component.html +0 -16
  285. package/src/lib/components/tests/test-cases-status/test-cases-status.component.scss +0 -49
  286. package/src/lib/components/tests/test-cases-status/test-cases-status.component.spec.ts +0 -22
  287. package/src/lib/components/tests/test-cases-status/test-cases-status.component.ts +0 -18
  288. package/src/lib/components/tests/test-results.component.html +0 -119
  289. package/src/lib/components/tests/test-results.component.scss +0 -189
  290. package/src/lib/components/tests/test-results.component.spec.ts +0 -140
  291. package/src/lib/components/tests/test-results.component.ts +0 -98
  292. package/src/lib/components/tgo-coding-test/tgo-coding-test.component.html +0 -96
  293. package/src/lib/components/tgo-coding-test/tgo-coding-test.component.scss +0 -6
  294. package/src/lib/components/tgo-coding-test/tgo-coding-test.component.spec.ts +0 -599
  295. package/src/lib/components/tgo-coding-test/tgo-coding-test.component.ts +0 -279
  296. package/src/lib/components/tgo-coding-test-candidate-view/tgo-coding-test-candidate-view.component.html +0 -36
  297. package/src/lib/components/tgo-coding-test-candidate-view/tgo-coding-test-candidate-view.component.scss +0 -183
  298. package/src/lib/components/tgo-coding-test-candidate-view/tgo-coding-test-candidate-view.component.spec.ts +0 -883
  299. package/src/lib/components/tgo-coding-test-candidate-view/tgo-coding-test-candidate-view.component.ts +0 -575
  300. package/src/lib/config/tgo-coding-test.config.ts +0 -26
  301. package/src/lib/config/tgo-coding-test.token.ts +0 -21
  302. package/src/lib/models/.gitkeep +0 -0
  303. package/src/lib/models/auto-saved-data.ts +0 -51
  304. package/src/lib/models/code-event.ts +0 -17
  305. package/src/lib/models/coderunner-execution-results.ts +0 -58
  306. package/src/lib/models/coding-lib.mocks.ts +0 -246
  307. package/src/lib/models/configs.ts +0 -18
  308. package/src/lib/models/language-change-action.ts +0 -4
  309. package/src/lib/models/lat-languages.ts +0 -12
  310. package/src/lib/models/mixpanel-events.ts +0 -3
  311. package/src/lib/models/mode.ts +0 -5
  312. package/src/lib/models/paste-data.ts +0 -4
  313. package/src/lib/models/programming-language.ts +0 -9
  314. package/src/lib/models/test-cases.ts +0 -74
  315. package/src/lib/models/theme.ts +0 -5
  316. package/src/lib/models/translations.ts +0 -1
  317. package/src/lib/models/view-mode.ts +0 -6
  318. package/src/lib/services/.gitkeep +0 -0
  319. package/src/lib/services/candidate-coding-test-services/candidature-api.service.spec.ts +0 -40
  320. package/src/lib/services/candidate-coding-test-services/candidature-api.service.ts +0 -15
  321. package/src/lib/services/candidate-coding-test-services/coderunner-api.service.spec.ts +0 -134
  322. package/src/lib/services/candidate-coding-test-services/coderunner-api.service.ts +0 -105
  323. package/src/lib/services/candidate-coding-test-services/coding-test-tour.service.spec.ts +0 -161
  324. package/src/lib/services/candidate-coding-test-services/coding-test-tour.service.ts +0 -100
  325. package/src/lib/services/candidate-coding-test-services/coding-test.service.spec.ts +0 -1524
  326. package/src/lib/services/candidate-coding-test-services/coding-test.service.ts +0 -843
  327. package/src/lib/services/coding-test-config.service.ts +0 -48
  328. package/src/lib/services/configurations.service.mocks.ts +0 -77
  329. package/src/lib/services/configurations.service.spec.ts +0 -79
  330. package/src/lib/services/configurations.service.ts +0 -111
  331. package/src/lib/services/index.ts +0 -0
  332. package/src/lib/services/lib-coding-test.service.spec.ts +0 -265
  333. package/src/lib/services/lib-coding-test.service.ts +0 -157
  334. package/src/lib/services/local-storage.service.mocks.ts +0 -22
  335. package/src/lib/services/storage.service.spec.ts +0 -1120
  336. package/src/lib/services/storage.service.ts +0 -729
  337. package/src/lib/services/test-cases.service.spec.ts +0 -53
  338. package/src/lib/services/test-cases.service.ts +0 -29
  339. package/src/lib/services/theme.service.spec.ts +0 -76
  340. package/src/lib/services/theme.service.ts +0 -34
  341. package/src/lib/styles/mixins.scss +0 -86
  342. package/src/lib/styles/styles.scss +0 -112
  343. package/src/lib/styles/variables.scss +0 -105
  344. package/src/lib/utils/.gitkeep +0 -0
  345. package/src/lib/utils/additional-languages/erlang.ts +0 -115
  346. package/src/lib/utils/resize-element.ts +0 -15
  347. package/src/lib/utils/time-to-ms.util.ts +0 -10
  348. package/src/test-setup.ts +0 -1
  349. package/tsconfig.json +0 -16
  350. package/tsconfig.lib.json +0 -12
  351. package/tsconfig.lib.prod.json +0 -9
  352. package/tsconfig.spec.json +0 -13
  353. /package/{src/assets → assets}/i18n/en.json +0 -0
  354. /package/{src/lib/components/code-editor/helpers/index.ts → lib/components/code-editor/helpers/index.d.ts} +0 -0
@@ -0,0 +1,280 @@
1
+ import { __decorate } from "tslib";
2
+ import { ChangeDetectionStrategy, Component, EventEmitter, inject, Input, Output, ViewEncapsulation, } from '@angular/core';
3
+ import { CommonModule } from '@angular/common';
4
+ import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
5
+ import { take } from 'rxjs';
6
+ import { AssessmentIdPreview } from '../../models/lat-languages';
7
+ import { ViewMode } from '../../models/view-mode';
8
+ import { ConfigurationsService } from '../../services/configurations.service';
9
+ import { LibCodingTestService } from '../../services/lib-coding-test.service';
10
+ import { StorageCodingService } from '../../services/storage.service';
11
+ import { TestCasesService } from '../../services/test-cases.service';
12
+ import { ThemeService } from '../../services/theme.service';
13
+ import { timeToMs } from '../../utils/time-to-ms.util';
14
+ import { CodeEditorComponent } from '../code-editor/code-editor.component';
15
+ import { CodingQuestionComponent } from '../coding-question/coding-question.component';
16
+ import { RunnableEditorComponent } from '../runnable-editor/runnable-editor.component';
17
+ import * as i0 from "@angular/core";
18
+ import * as i1 from "@angular/common";
19
+ let TgoCodingTestComponent = class TgoCodingTestComponent {
20
+ configurationsService = inject(ConfigurationsService);
21
+ libCodingTestService = inject(LibCodingTestService);
22
+ testCasesService = inject(TestCasesService);
23
+ StorageCodingService = inject(StorageCodingService);
24
+ themeService = inject(ThemeService);
25
+ initCode;
26
+ snapshot;
27
+ functionParams;
28
+ functionName;
29
+ returnType;
30
+ isLAT;
31
+ isSQL;
32
+ shouldGenerateInitCode = true;
33
+ canAddCustomTestCases = true;
34
+ selectedProgrammingLanguage;
35
+ set languages(value) {
36
+ if (!value.length) {
37
+ throw new Error('At least one language is required');
38
+ }
39
+ else {
40
+ Object.defineProperty(this, 'languages', {
41
+ value,
42
+ writable: true,
43
+ });
44
+ this.updateLanguage();
45
+ }
46
+ }
47
+ isReadonly;
48
+ autoHeight;
49
+ translations;
50
+ questionText;
51
+ mode;
52
+ assessmentId;
53
+ companyColor;
54
+ testCasesStatus;
55
+ loading;
56
+ runTestResponse = [];
57
+ viewMode;
58
+ exampleTestCases;
59
+ // todo: remove this property from everywhere after sunsetting of the old flow
60
+ hideTestCases;
61
+ applicationTheme = 'light';
62
+ questionId;
63
+ pasteEvent = new EventEmitter();
64
+ codeChange = new EventEmitter();
65
+ runTestClick = new EventEmitter();
66
+ languageChange = new EventEmitter();
67
+ colorTheme$ = this.configurationsService.colorTheme$;
68
+ isFullscreenMode$ = this.libCodingTestService.isFullscreen$;
69
+ isFullViewMode;
70
+ ViewModes = ViewMode;
71
+ themeSpecificColor;
72
+ ngOnInit() {
73
+ this.setIsFullViewMode();
74
+ this.setCompanyColor();
75
+ this.libCodingTestService.setInitCode(this.initCode);
76
+ // Local Data should be maintained only for candidate environment
77
+ if (this.isFullViewMode) {
78
+ // Perform periodic storage maintenance
79
+ this.performPeriodicMaintenance();
80
+ const storageAssessmentId = this.isLAT && this.mode === "non-assessment-preview" /* Modes.NonAssessmentPreview */
81
+ ? AssessmentIdPreview
82
+ : this.assessmentId;
83
+ const storageCodeEnable = this.isLAT && (this.mode === "preview" /* Modes.Preview */ || this.mode === "non-assessment-preview" /* Modes.NonAssessmentPreview */)
84
+ ? true
85
+ : this.mode === "running" /* Modes.Running */;
86
+ const storageTestCasesEnable = this.mode === "running" /* Modes.Running */ && this.isLAT;
87
+ const storageQuestionId = Number.isInteger(this.questionId)
88
+ ? String(this.questionId)
89
+ : 'default-question-id';
90
+ this.libCodingTestService.currentLanguage$.pipe(take(1)).subscribe(language => {
91
+ this.StorageCodingService.setupAutoSavedData(language, storageAssessmentId, storageQuestionId, storageCodeEnable, storageTestCasesEnable, this.isLAT, this.mode);
92
+ if (storageTestCasesEnable) {
93
+ this.updateTestCases();
94
+ }
95
+ this.configurationsService.setCodeComponentDestroyed(false);
96
+ this.updateInitCode(this.initCode);
97
+ this.StorageCodingService.initializeSaving();
98
+ });
99
+ if (this.mode !== "non-assessment-preview" /* Modes.NonAssessmentPreview */ || this.isLAT) {
100
+ this.libCodingTestService.clearSavedCode$.pipe(untilDestroyed(this)).subscribe(() => {
101
+ this.StorageCodingService.clearSavedCode();
102
+ if (this.isLAT) {
103
+ this.StorageCodingService.clearSavedTestCases();
104
+ }
105
+ });
106
+ if (this.isLAT) {
107
+ this.libCodingTestService.clearLastLang$.pipe(untilDestroyed(this)).subscribe(() => {
108
+ this.StorageCodingService.clearLastLang();
109
+ });
110
+ }
111
+ }
112
+ }
113
+ }
114
+ ngOnChanges(changes) {
115
+ if (!changes.initCode?.firstChange && typeof changes.initCode?.currentValue === 'string') {
116
+ this.libCodingTestService.currentLanguage$.pipe(take(1)).subscribe(language => {
117
+ this.StorageCodingService.changeLanguage(language);
118
+ this.libCodingTestService.setInitCode(this.initCode);
119
+ this.updateInitCode(changes.initCode.currentValue);
120
+ });
121
+ }
122
+ if (changes.companyColor && changes.companyColor?.currentValue) {
123
+ this.themeService.companyColor = changes.companyColor.currentValue;
124
+ }
125
+ }
126
+ updateInitCode(code) {
127
+ const savedCode = this.StorageCodingService.getSavedCode();
128
+ this.initCode = savedCode ? savedCode : code;
129
+ }
130
+ updateLanguage() {
131
+ const lastLanguageLAT = this.StorageCodingService.getLastLanguageLAT();
132
+ if (this.isLAT && this.isSavedLangRelevant(lastLanguageLAT)) {
133
+ this.libCodingTestService.changeCurrentLanguage(lastLanguageLAT.value);
134
+ const langVersion = this.getRelevantLangVersion(lastLanguageLAT);
135
+ if (langVersion) {
136
+ this.libCodingTestService.setVersion(langVersion);
137
+ }
138
+ }
139
+ else {
140
+ const language = this.selectedProgrammingLanguage || this.languages[0];
141
+ this.libCodingTestService.changeCurrentLanguage(language.value);
142
+ if (language.version) {
143
+ this.libCodingTestService.setVersion(language.version);
144
+ }
145
+ }
146
+ }
147
+ isSavedLangRelevant(lastLanguageLAT) {
148
+ return !!lastLanguageLAT && this.languages.some(({ value }) => value === lastLanguageLAT.value);
149
+ }
150
+ getRelevantLangVersion(lastLang) {
151
+ const relevantLang = this.languages.find(({ value }) => value === lastLang?.value);
152
+ return relevantLang ? relevantLang.version : lastLang.version;
153
+ }
154
+ updateTestCases() {
155
+ if (this.isLAT || (this.isSQL && !this.hideTestCases)) {
156
+ const testCases = this.StorageCodingService.getSavedTestCases();
157
+ if (testCases?.length) {
158
+ this.libCodingTestService.updateTestCases([...testCases]);
159
+ this.StorageCodingService.updateTestCases([...testCases]);
160
+ if (testCases[testCases.length - 1].localId) {
161
+ this.testCasesService.updateTestCaseLocalId(testCases[testCases.length - 1].localId);
162
+ }
163
+ }
164
+ else {
165
+ this.libCodingTestService.updateTestCases([]);
166
+ this.StorageCodingService.updateTestCases([]);
167
+ this.testCasesService.resetLastTestCaseLocalId();
168
+ }
169
+ }
170
+ }
171
+ setIsFullViewMode() {
172
+ this.isFullViewMode = this.viewMode === ViewMode.Full;
173
+ }
174
+ setCompanyColor() {
175
+ this.themeService.themeColors$
176
+ .pipe(untilDestroyed(this))
177
+ .subscribe(({ companyColor, themeSpecificColor }) => {
178
+ this.companyColor = companyColor;
179
+ this.themeSpecificColor = themeSpecificColor;
180
+ });
181
+ }
182
+ /**
183
+ * Performs periodic maintenance on localStorage data
184
+ * This is done with a random chance to distribute cleanup over time
185
+ * and prevent all users from cleaning up storage at the same time.
186
+ */
187
+ performPeriodicMaintenance() {
188
+ // Check the last time maintenance was done (stored in a separate key)
189
+ const maintenanceKey = 'lastCodingTestStorageMaintenance';
190
+ const lastMaintenance = localStorage.getItem(maintenanceKey);
191
+ const now = Date.now();
192
+ const isDoneLaterThanDay = now - parseInt(lastMaintenance, 10) > timeToMs(1);
193
+ // If maintenance was never done or was done more than a day ago,
194
+ // perform it with a 20% chance to distribute load
195
+ if (!lastMaintenance || isDoneLaterThanDay) {
196
+ // Perform maintenance with 20% probability to distribute load
197
+ if (Math.random() < 0.2) {
198
+ // Perform the cleanup silently
199
+ this.StorageCodingService.performMaintenanceAndCleanup();
200
+ localStorage.setItem(maintenanceKey, now.toString());
201
+ }
202
+ }
203
+ }
204
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TgoCodingTestComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
205
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: TgoCodingTestComponent, isStandalone: true, selector: "tgo-coding-test[languages]", inputs: { initCode: "initCode", snapshot: "snapshot", functionParams: "functionParams", functionName: "functionName", returnType: "returnType", isLAT: "isLAT", isSQL: "isSQL", shouldGenerateInitCode: "shouldGenerateInitCode", canAddCustomTestCases: "canAddCustomTestCases", selectedProgrammingLanguage: "selectedProgrammingLanguage", languages: "languages", isReadonly: "isReadonly", autoHeight: "autoHeight", translations: "translations", questionText: "questionText", mode: "mode", assessmentId: "assessmentId", companyColor: "companyColor", testCasesStatus: "testCasesStatus", loading: "loading", runTestResponse: "runTestResponse", viewMode: "viewMode", exampleTestCases: "exampleTestCases", hideTestCases: "hideTestCases", applicationTheme: "applicationTheme", questionId: "questionId" }, outputs: { pasteEvent: "pasteEvent", codeChange: "codeChange", runTestClick: "runTestClick", languageChange: "languageChange" }, usesOnChanges: true, ngImport: i0, template: "@switch (viewMode) {\n @case (ViewModes.Full) {\n <tgo-coding-question\n [ngClass]=\"[\n 'coding-question',\n colorTheme$ | async,\n (isFullscreenMode$ | async) ? 'coding-question-fullscreen' : '',\n ]\"\n [ngStyle]=\"{\n '--company-color': companyColor,\n '--company-theme-specific-color': themeSpecificColor,\n }\"\n [initCode]=\"initCode\"\n [functionParams]=\"functionParams\"\n [functionName]=\"functionName\"\n [returnType]=\"returnType\"\n [autoHeight]=\"autoHeight\"\n [questionText]=\"questionText\"\n [mode]=\"mode\"\n [isLAT]=\"isLAT\"\n [isSQL]=\"isSQL\"\n [canAddCustomTestCases]=\"canAddCustomTestCases\"\n [exampleTestCases]=\"exampleTestCases\"\n [languages]=\"languages\"\n (pasteEvent)=\"pasteEvent.emit($event)\"\n (codeChange)=\"codeChange.emit($event)\"\n (runTestClick)=\"runTestClick.emit($event)\"\n (languageChange)=\"languageChange.emit($event)\"\n [translations]=\"translations\"\n [companyColor]=\"companyColor\"\n [testCasesStatus]=\"testCasesStatus\"\n [loading]=\"loading\"\n [runTestResponse]=\"runTestResponse\"\n [applicationTheme]=\"applicationTheme\"\n [hideTestCases]=\"hideTestCases\"\n >\n </tgo-coding-question>\n }\n @case (ViewModes.RunnableIde) {\n <ng-container [ngTemplateOutlet]=\"runnableEditorTpl\"></ng-container>\n }\n @case (ViewModes.RunnableIdeWithLangSelector) {\n <ng-container [ngTemplateOutlet]=\"runnableEditorTpl\"></ng-container>\n }\n @default {\n <tgo-code-editor\n [initCode]=\"initCode\"\n [snapshot]=\"snapshot\"\n [shouldGenerateInitCode]=\"!isFullViewMode && shouldGenerateInitCode\"\n [functionParams]=\"functionParams\"\n [functionName]=\"functionName\"\n [returnType]=\"returnType\"\n [hasCodingConfigPanel]=\"isFullViewMode\"\n [isReadonly]=\"isReadonly\"\n [autoHeight]=\"autoHeight\"\n (pasteEvent)=\"pasteEvent.emit($event)\"\n (codeChange)=\"codeChange.emit($event)\"\n >\n </tgo-code-editor>\n }\n}\n\n<ng-template #runnableEditorTpl>\n <tgo-runnable-editor\n [ngClass]=\"colorTheme$ | async\"\n [ngStyle]=\"{\n '--company-color': companyColor,\n '--company-theme-specific-color': themeSpecificColor,\n }\"\n [initCode]=\"initCode\"\n [functionParams]=\"functionParams\"\n [functionName]=\"functionName\"\n [returnType]=\"returnType\"\n [isFullViewMode]=\"false\"\n [shouldGenerateInitCode]=\"shouldGenerateInitCode\"\n [isRunnableWithLangSelector]=\"viewMode === ViewModes.RunnableIdeWithLangSelector\"\n [isLAT]=\"isLAT\"\n [isSQL]=\"isSQL\"\n [canAddCustomTestCases]=\"canAddCustomTestCases\"\n [languages]=\"languages\"\n [autoHeight]=\"autoHeight\"\n [translations]=\"translations\"\n [questionText]=\"questionText\"\n [companyColor]=\"companyColor\"\n [testCasesStatus]=\"testCasesStatus\"\n [loading]=\"loading\"\n [runTestResponse]=\"runTestResponse\"\n [exampleTestCases]=\"exampleTestCases\"\n [applicationTheme]=\"applicationTheme\"\n (pasteEvent)=\"pasteEvent.emit($event)\"\n (codeChange)=\"codeChange.emit($event)\"\n (runTestClick)=\"runTestClick.emit($event)\"\n (languageChange)=\"languageChange.emit($event)\"\n >\n </tgo-runnable-editor>\n</ng-template>\n", styles: ["h1,h2,h3,.h1,.h2,.h3{font-weight:400;margin:0}h4,h5,h6,.h4,.h5,.h6{font-weight:700;margin:0}h1,.h1{font-size:40px;line-height:60px;font-weight:700}h2,.h2{font-size:24px;line-height:36px}h2.bold,.h2.bold{font-weight:700}h3,.h3{font-size:20px;line-height:28px}h3.bold,.h3.bold{font-weight:700}h4,.h4{font-size:16px;line-height:24px}h5,.h5{font-size:14px;line-height:20px}h6,.h6{font-size:12px;line-height:16px;text-transform:uppercase}body{font-size:14px;line-height:20px}strong,b{font-weight:700!important}.featured{font-size:16px;line-height:24px}p .semibold,.featured .semibold,.caption .semibold{font-weight:600;color:#46a997}small{font-size:8px;line-height:12px}caption,.caption{font-size:12px;line-height:16px;display:inline-block}*[theme=dark] h1,*[theme=dark] .h1,*[theme=light] h1,*[theme=light] .h1{color:#242424;font-size:32px;line-height:48px;font-weight:400}*[theme=dark] h1.black,*[theme=dark] .h1.black,*[theme=light] h1.black,*[theme=light] .h1.black{font-family:ModernGothic,sans-serif!important;font-weight:900}*[theme=dark] h2,*[theme=dark] .h2,*[theme=light] h2,*[theme=light] .h2{color:#242424;font-size:24px;line-height:30px;font-weight:900;font-family:ModernGothic,sans-serif!important}*[theme=dark] h3,*[theme=dark] .h3,*[theme=light] h3,*[theme=light] .h3{font-size:20px;line-height:26px;font-weight:400;color:#242424}*[theme=dark] h3.bold,*[theme=dark] .h3.bold,*[theme=light] h3.bold,*[theme=light] .h3.bold{font-family:ModernGothic,sans-serif!important;font-weight:700}*[theme=dark] h4,*[theme=dark] .h4,*[theme=light] h4,*[theme=light] .h4{font-size:16px;line-height:20px;font-weight:700;color:#242424;font-family:ModernGothic,sans-serif!important}*[theme=dark] h5,*[theme=dark] .h5,*[theme=light] h5,*[theme=light] .h5{font-size:14px;line-height:18px;font-weight:700;color:#242424;font-family:ModernGothic,sans-serif!important}*[theme=dark] .body-large,*[theme=light] .body-large{font-weight:700;font-size:14px;line-height:22px}*[theme=dark] .body-large-bold,*[theme=light] .body-large-bold{font-weight:700;font-size:16px;line-height:24px}*[theme=dark] .body-large-regular,*[theme=light] .body-large-regular{font-weight:400;font-size:16px;line-height:24px}*[theme=dark] .body-small-bold,*[theme=light] .body-small-bold{font-weight:700;font-size:12px;line-height:16px}*[theme=dark] .body-small-regular,*[theme=light] .body-small-regular{font-weight:400;font-size:12px;line-height:16px}*[theme=dark] .hyperlink-large,*[theme=light] .hyperlink-large{font-weight:500;font-size:16px;line-height:24px}*[theme=dark] .hyperlink,*[theme=light] .hyperlink{font-weight:500;font-size:14px;line-height:22px}*[theme=dark] .hyperlink-small,*[theme=light] .hyperlink-small{font-weight:500;font-size:12px;line-height:16px}*[theme=dark] .button-label,*[theme=light] .button-label{font-weight:500;font-size:14px;font-feature-settings:\"capb\"}*[theme=dark] .label,*[theme=light] .label{font-weight:400;font-size:14px;font-feature-settings:\"capb\"}*[theme=dark] .large-hover-state,*[theme=light] .large-hover-state{font-weight:700;text-decoration:underline;font-size:16px;line-height:24px}*[theme=dark] .hover-state,*[theme=light] .hover-state{font-weight:700;text-decoration:underline;font-size:14px;line-height:22px}*[theme=dark] h1,*[theme=dark] .h1,*[theme=dark] h2,*[theme=dark] .h2,*[theme=dark] h3,*[theme=dark] .h3,*[theme=dark] h4,*[theme=dark] .h4,*[theme=dark] h5,*[theme=dark] .h5{color:#fff}.bg-teal-60b{background:#1c443c}.bg-teal-30b{background:#31766a}.bg-teal-default{background:#46a997}.bg-teal-30w{background:#7ec3b6}.bg-teal-60w{background:#b5ddd5}.bg-teal-secondary{background:#cbd6cb}.bg-teal-90w{background:#ecf6f5}.bg-petrol-60b{background:#102930}.bg-petrol-30b{background:#1b4754}.bg-petrol-default{background:#276678}.bg-petrol-30w{background:#6894a0}.bg-petrol-60w{background:#a9c2c9}.bg-petrol-secondary{background:#c8d7de}.bg-petrol-90w{background:#e9f0f1}.bg-error-60b{background:#513131}.bg-error-30b{background:#8e5655}.bg-error-60w{background:#e3c3c6}.bg-error-secondary{background:#f0dad9}.bg-error-default{background:#cb7b7a}.bg-warning-secondary{background:#f0d6bb}.bg-warning-default{background:#cca45f}.bg-black{background:#000}.bg-dark{background:#888}.bg-medium{background:#e0e0e0}.bg-grey{background:#ededed}.bg-light{background:#f6f6f6}.bg-white{background:#fff}.bg-box-shadow{background:#00000014}.bg-navigation-subtitle{background:#528593}.bgc-teal-60b{background-color:#1c443c}.bgc-teal-30b{background-color:#31766a}.bgc-teal-default{background-color:#46a997}.bgc-teal-30w{background-color:#7ec3b6}.bgc-teal-60w{background-color:#b5ddd5}.bgc-teal-secondary{background-color:#cbd6cb}.bgc-teal-90w{background-color:#ecf6f5}.bgc-petrol-60b{background-color:#102930}.bgc-petrol-30b{background-color:#1b4754}.bgc-petrol-default{background-color:#276678}.bgc-petrol-30w{background-color:#6894a0}.bgc-petrol-60w{background-color:#a9c2c9}.bgc-petrol-secondary{background-color:#c8d7de}.bgc-petrol-90w{background-color:#e9f0f1}.bgc-error-60b{background-color:#513131}.bgc-error-30b{background-color:#8e5655}.bgc-error-60w{background-color:#e3c3c6}.bgc-error-secondary{background-color:#f0dad9}.bgc-error-default{background-color:#cb7b7a}.bgc-warning-secondary{background-color:#f0d6bb}.bgc-warning-default{background-color:#cca45f}.bgc-black{background-color:#000}.bgc-dark{background-color:#888}.bgc-medium{background-color:#e0e0e0}.bgc-grey{background-color:#ededed}.bgc-light{background-color:#f6f6f6}.bgc-white{background-color:#fff}.bgc-box-shadow{background-color:#00000014}.bgc-navigation-subtitle{background-color:#528593}ui-dropdown .mat-mdc-form-field.keyboard-focused,ui-autocomplete .mat-mdc-form-field.keyboard-focused{position:relative}ui-dropdown .mat-mdc-form-field.keyboard-focused .mat-mdc-text-field-wrapper,ui-autocomplete .mat-mdc-form-field.keyboard-focused .mat-mdc-text-field-wrapper{outline:2px solid #242424;animation:focus-ring-animation-main .4s forwards;outline-offset:4px}ui-dropdown .mat-mdc-form-field.keyboard-focused .mat-mdc-text-field-wrapper:after,ui-autocomplete .mat-mdc-form-field.keyboard-focused .mat-mdc-text-field-wrapper:after{content:\"\";position:absolute;top:0;border-radius:10px;left:0;width:100%;height:100%;outline:4px solid #ffffff;z-index:-1}ui-dropdown .mat-mdc-form-field.keyboard-focused .mat-mdc-form-field-subscript-wrapper,ui-autocomplete .mat-mdc-form-field.keyboard-focused .mat-mdc-form-field-subscript-wrapper{z-index:-1}ui-dropdown .mat-mdc-form-field.has-label .mdc-notched-outline__notch,ui-autocomplete .mat-mdc-form-field.has-label .mdc-notched-outline__notch{position:relative}ui-dropdown .mat-mdc-form-field.has-label .mdc-notched-outline__notch:after,ui-autocomplete .mat-mdc-form-field.has-label .mdc-notched-outline__notch:after{content:\"\";position:absolute;top:0;left:0;background:#fff;width:100%;height:5px;z-index:-1}.active-field .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading{border-left-width:2px;border-top-width:2px;border-bottom-width:2px}.active-field .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch{border-top-width:2px;border-bottom-width:2px;border-left:none!important}.active-field .mdc-notched-outline__trailing,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing{border-top-width:2px;border-bottom-width:2px;border-right-width:2px}*[theme=classic] .mat-mdc-form-field .mat-mdc-form-field-hint.error,*[theme=classic] .mat-mdc-form-field .mat-mdc-form-field-hint.error svg{color:#cb7b7a}*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper{height:48px}*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above){top:21px!important}*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing{border-color:#276678!important}*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above{color:#276678!important}*[theme=dark].phone-number-select,*[theme=light].phone-number-select,.dark.phone-number-select,.light.phone-number-select{margin-top:8px;border-radius:10px!important;box-shadow:0 4px 16px #24242414}*[theme=dark].phone-number-select .country-option,*[theme=light].phone-number-select .country-option,.dark.phone-number-select .country-option,.light.phone-number-select .country-option{display:flex;align-items:center;gap:8px}*[theme=dark].phone-number-select .mat-mdc-option,*[theme=light].phone-number-select .mat-mdc-option,.dark.phone-number-select .mat-mdc-option,.light.phone-number-select .mat-mdc-option{--mat-option-selected-state-layer-color: #F4F4F4;--mat-option-selected-state-label-text-color: #242424}*[theme=dark].phone-number-select .mat-mdc-option .mdc-list-item__primary-text small,*[theme=light].phone-number-select .mat-mdc-option .mdc-list-item__primary-text small,.dark.phone-number-select .mat-mdc-option .mdc-list-item__primary-text small,.light.phone-number-select .mat-mdc-option .mdc-list-item__primary-text small{font-size:14px}*[theme=dark].phone-number-select .mat-mdc-option .mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked:after,*[theme=light].phone-number-select .mat-mdc-option .mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked:after,.dark.phone-number-select .mat-mdc-option .mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked:after,.light.phone-number-select .mat-mdc-option .mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked:after{color:#242424;width:12px;height:5px}*[theme=dark].phone-number-select .mat-mdc-option:hover,*[theme=light].phone-number-select .mat-mdc-option:hover,.dark.phone-number-select .mat-mdc-option:hover,.light.phone-number-select .mat-mdc-option:hover{background-color:#fff2fc}*[theme=dark].phone-number-select .mat-divider,*[theme=light].phone-number-select .mat-divider,.dark.phone-number-select .mat-divider,.light.phone-number-select .mat-divider{display:none}*[theme=dark] .mat-mdc-autocomplete-panel,*[theme=dark].mat-mdc-autocomplete-panel,*[theme=light] .mat-mdc-autocomplete-panel,*[theme=light].mat-mdc-autocomplete-panel,.dark .mat-mdc-autocomplete-panel,.dark.mat-mdc-autocomplete-panel,.light .mat-mdc-autocomplete-panel,.light.mat-mdc-autocomplete-panel{box-shadow:0 4px 16px #24242414;border-radius:10px}*[theme=dark] .mat-mdc-autocomplete-panel .mat-mdc-option.selected-option,*[theme=dark] .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),*[theme=dark].mat-mdc-autocomplete-panel .mat-mdc-option.selected-option,*[theme=dark].mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),*[theme=light] .mat-mdc-autocomplete-panel .mat-mdc-option.selected-option,*[theme=light] .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),*[theme=light].mat-mdc-autocomplete-panel .mat-mdc-option.selected-option,*[theme=light].mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.dark .mat-mdc-autocomplete-panel .mat-mdc-option.selected-option,.dark .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.dark.mat-mdc-autocomplete-panel .mat-mdc-option.selected-option,.dark.mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.light .mat-mdc-autocomplete-panel .mat-mdc-option.selected-option,.light .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.light.mat-mdc-autocomplete-panel .mat-mdc-option.selected-option,.light.mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled){background:#f4f4f4!important}*[theme=dark] .mat-mdc-autocomplete-panel .mat-mdc-option.selected-option:hover,*[theme=dark] .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):hover,*[theme=dark].mat-mdc-autocomplete-panel .mat-mdc-option.selected-option:hover,*[theme=dark].mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):hover,*[theme=light] .mat-mdc-autocomplete-panel .mat-mdc-option.selected-option:hover,*[theme=light] .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):hover,*[theme=light].mat-mdc-autocomplete-panel .mat-mdc-option.selected-option:hover,*[theme=light].mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):hover,.dark .mat-mdc-autocomplete-panel .mat-mdc-option.selected-option:hover,.dark .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):hover,.dark.mat-mdc-autocomplete-panel .mat-mdc-option.selected-option:hover,.dark.mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):hover,.light .mat-mdc-autocomplete-panel .mat-mdc-option.selected-option:hover,.light .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):hover,.light.mat-mdc-autocomplete-panel .mat-mdc-option.selected-option:hover,.light.mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):hover{background:var(--ui-autocomplete-option-color)!important}*[theme=dark] .mat-mdc-autocomplete-panel .mat-mdc-option:hover:not(.mdc-list-item--disabled),*[theme=dark].mat-mdc-autocomplete-panel .mat-mdc-option:hover:not(.mdc-list-item--disabled),*[theme=light] .mat-mdc-autocomplete-panel .mat-mdc-option:hover:not(.mdc-list-item--disabled),*[theme=light].mat-mdc-autocomplete-panel .mat-mdc-option:hover:not(.mdc-list-item--disabled),.dark .mat-mdc-autocomplete-panel .mat-mdc-option:hover:not(.mdc-list-item--disabled),.dark.mat-mdc-autocomplete-panel .mat-mdc-option:hover:not(.mdc-list-item--disabled),.light .mat-mdc-autocomplete-panel .mat-mdc-option:hover:not(.mdc-list-item--disabled),.light.mat-mdc-autocomplete-panel .mat-mdc-option:hover:not(.mdc-list-item--disabled){background:var(--ui-autocomplete-option-color)!important}*[theme=dark] .mat-mdc-autocomplete-panel .mat-mdc-option:active:not(.mdc-list-item--disabled),*[theme=dark].mat-mdc-autocomplete-panel .mat-mdc-option:active:not(.mdc-list-item--disabled),*[theme=light] .mat-mdc-autocomplete-panel .mat-mdc-option:active:not(.mdc-list-item--disabled),*[theme=light].mat-mdc-autocomplete-panel .mat-mdc-option:active:not(.mdc-list-item--disabled),.dark .mat-mdc-autocomplete-panel .mat-mdc-option:active:not(.mdc-list-item--disabled),.dark.mat-mdc-autocomplete-panel .mat-mdc-option:active:not(.mdc-list-item--disabled),.light .mat-mdc-autocomplete-panel .mat-mdc-option:active:not(.mdc-list-item--disabled),.light.mat-mdc-autocomplete-panel .mat-mdc-option:active:not(.mdc-list-item--disabled){background:var(--ui-autocomplete-option-color)!important}*[theme=dark] .mat-mdc-autocomplete-panel .mat-mdc-option .mdc-list-item__primary-text,*[theme=dark] .mat-mdc-autocomplete-panel .mat-mdc-option span,*[theme=dark].mat-mdc-autocomplete-panel .mat-mdc-option .mdc-list-item__primary-text,*[theme=dark].mat-mdc-autocomplete-panel .mat-mdc-option span,*[theme=light] .mat-mdc-autocomplete-panel .mat-mdc-option .mdc-list-item__primary-text,*[theme=light] .mat-mdc-autocomplete-panel .mat-mdc-option span,*[theme=light].mat-mdc-autocomplete-panel .mat-mdc-option .mdc-list-item__primary-text,*[theme=light].mat-mdc-autocomplete-panel .mat-mdc-option span,.dark .mat-mdc-autocomplete-panel .mat-mdc-option .mdc-list-item__primary-text,.dark .mat-mdc-autocomplete-panel .mat-mdc-option span,.dark.mat-mdc-autocomplete-panel .mat-mdc-option .mdc-list-item__primary-text,.dark.mat-mdc-autocomplete-panel .mat-mdc-option span,.light .mat-mdc-autocomplete-panel .mat-mdc-option .mdc-list-item__primary-text,.light .mat-mdc-autocomplete-panel .mat-mdc-option span,.light.mat-mdc-autocomplete-panel .mat-mdc-option .mdc-list-item__primary-text,.light.mat-mdc-autocomplete-panel .mat-mdc-option span{color:#242424!important;font-weight:400}*[theme=dark] .mat-mdc-autocomplete-panel .mat-mdc-optgroup-label .mdc-list-item__primary-text,*[theme=dark].mat-mdc-autocomplete-panel .mat-mdc-optgroup-label .mdc-list-item__primary-text,*[theme=light] .mat-mdc-autocomplete-panel .mat-mdc-optgroup-label .mdc-list-item__primary-text,*[theme=light].mat-mdc-autocomplete-panel .mat-mdc-optgroup-label .mdc-list-item__primary-text,.dark .mat-mdc-autocomplete-panel .mat-mdc-optgroup-label .mdc-list-item__primary-text,.dark.mat-mdc-autocomplete-panel .mat-mdc-optgroup-label .mdc-list-item__primary-text,.light .mat-mdc-autocomplete-panel .mat-mdc-optgroup-label .mdc-list-item__primary-text,.light.mat-mdc-autocomplete-panel .mat-mdc-optgroup-label .mdc-list-item__primary-text{font-size:14px!important}*[theme=dark] .mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text,*[theme=dark].mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text,*[theme=light] .mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text,*[theme=light].mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text,.dark .mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text,.dark.mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text,.light .mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text,.light.mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text{color:#242424!important;text-transform:lowercase}*[theme=dark] .mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text:first-letter,*[theme=dark].mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text:first-letter,*[theme=light] .mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text:first-letter,*[theme=light].mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text:first-letter,.dark .mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text:first-letter,.dark.mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text:first-letter,.light .mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text:first-letter,.light.mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text:first-letter{text-transform:uppercase!important}*[theme=dark] .mat-mdc-autocomplete-panel .cdk-virtual-scroll-content-wrapper .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),*[theme=dark].mat-mdc-autocomplete-panel .cdk-virtual-scroll-content-wrapper .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),*[theme=light] .mat-mdc-autocomplete-panel .cdk-virtual-scroll-content-wrapper .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),*[theme=light].mat-mdc-autocomplete-panel .cdk-virtual-scroll-content-wrapper .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),.dark .mat-mdc-autocomplete-panel .cdk-virtual-scroll-content-wrapper .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),.dark.mat-mdc-autocomplete-panel .cdk-virtual-scroll-content-wrapper .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),.light .mat-mdc-autocomplete-panel .cdk-virtual-scroll-content-wrapper .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),.light.mat-mdc-autocomplete-panel .cdk-virtual-scroll-content-wrapper .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option){background:transparent!important}*[theme=dark] .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),*[theme=dark].mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),*[theme=light] .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),*[theme=light].mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),.dark .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),.dark.mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),.light .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),.light.mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option){background:transparent!important}*[theme=dark] .ui-dropdown-list .mat-mdc-option .mat-mdc-focus-indicator,*[theme=dark].ui-dropdown-list .mat-mdc-option .mat-mdc-focus-indicator,*[theme=light] .ui-dropdown-list .mat-mdc-option .mat-mdc-focus-indicator,*[theme=light].ui-dropdown-list .mat-mdc-option .mat-mdc-focus-indicator,.dark .ui-dropdown-list .mat-mdc-option .mat-mdc-focus-indicator,.dark.ui-dropdown-list .mat-mdc-option .mat-mdc-focus-indicator,.light .ui-dropdown-list .mat-mdc-option .mat-mdc-focus-indicator,.light.ui-dropdown-list .mat-mdc-option .mat-mdc-focus-indicator{display:none}*[theme=dark] .ui-dropdown-list .mat-mdc-option,*[theme=dark] .ui-dropdown-list .mat-option-section .section-title,*[theme=dark].ui-dropdown-list .mat-mdc-option,*[theme=dark].ui-dropdown-list .mat-option-section .section-title,*[theme=light] .ui-dropdown-list .mat-mdc-option,*[theme=light] .ui-dropdown-list .mat-option-section .section-title,*[theme=light].ui-dropdown-list .mat-mdc-option,*[theme=light].ui-dropdown-list .mat-option-section .section-title,.dark .ui-dropdown-list .mat-mdc-option,.dark .ui-dropdown-list .mat-option-section .section-title,.dark.ui-dropdown-list .mat-mdc-option,.dark.ui-dropdown-list .mat-option-section .section-title,.light .ui-dropdown-list .mat-mdc-option,.light .ui-dropdown-list .mat-option-section .section-title,.light.ui-dropdown-list .mat-mdc-option,.light.ui-dropdown-list .mat-option-section .section-title{color:#242424!important}*[theme=dark] .ui-dropdown-list .mat-mdc-option-multiple .mat-pseudo-checkbox,*[theme=dark].ui-dropdown-list .mat-mdc-option-multiple .mat-pseudo-checkbox,*[theme=light] .ui-dropdown-list .mat-mdc-option-multiple .mat-pseudo-checkbox,*[theme=light].ui-dropdown-list .mat-mdc-option-multiple .mat-pseudo-checkbox,.dark .ui-dropdown-list .mat-mdc-option-multiple .mat-pseudo-checkbox,.dark.ui-dropdown-list .mat-mdc-option-multiple .mat-pseudo-checkbox,.light .ui-dropdown-list .mat-mdc-option-multiple .mat-pseudo-checkbox,.light.ui-dropdown-list .mat-mdc-option-multiple .mat-pseudo-checkbox{border-radius:4px;border-width:1px;border-color:#242424}*[theme=dark] .ui-dropdown-list .mat-mdc-option .mat-pseudo-checkbox-minimal,*[theme=dark].ui-dropdown-list .mat-mdc-option .mat-pseudo-checkbox-minimal,*[theme=light] .ui-dropdown-list .mat-mdc-option .mat-pseudo-checkbox-minimal,*[theme=light].ui-dropdown-list .mat-mdc-option .mat-pseudo-checkbox-minimal,.dark .ui-dropdown-list .mat-mdc-option .mat-pseudo-checkbox-minimal,.dark.ui-dropdown-list .mat-mdc-option .mat-pseudo-checkbox-minimal,.light .ui-dropdown-list .mat-mdc-option .mat-pseudo-checkbox-minimal,.light.ui-dropdown-list .mat-mdc-option .mat-pseudo-checkbox-minimal{transform:scale(.9)}*[theme=dark] .ui-dropdown-list.mat-warn mat-option:hover,*[theme=dark] .ui-dropdown-list.mat-accent mat-option:hover,*[theme=dark] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple:hover,*[theme=dark].ui-dropdown-list.mat-warn mat-option:hover,*[theme=dark].ui-dropdown-list.mat-accent mat-option:hover,*[theme=dark].ui-dropdown-list.mat-accent .mat-mdc-option-multiple:hover,*[theme=light] .ui-dropdown-list.mat-warn mat-option:hover,*[theme=light] .ui-dropdown-list.mat-accent mat-option:hover,*[theme=light] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple:hover,*[theme=light].ui-dropdown-list.mat-warn mat-option:hover,*[theme=light].ui-dropdown-list.mat-accent mat-option:hover,*[theme=light].ui-dropdown-list.mat-accent .mat-mdc-option-multiple:hover,.dark .ui-dropdown-list.mat-warn mat-option:hover,.dark .ui-dropdown-list.mat-accent mat-option:hover,.dark .ui-dropdown-list.mat-accent .mat-mdc-option-multiple:hover,.dark.ui-dropdown-list.mat-warn mat-option:hover,.dark.ui-dropdown-list.mat-accent mat-option:hover,.dark.ui-dropdown-list.mat-accent .mat-mdc-option-multiple:hover,.light .ui-dropdown-list.mat-warn mat-option:hover,.light .ui-dropdown-list.mat-accent mat-option:hover,.light .ui-dropdown-list.mat-accent .mat-mdc-option-multiple:hover,.light.ui-dropdown-list.mat-warn mat-option:hover,.light.ui-dropdown-list.mat-accent mat-option:hover,.light.ui-dropdown-list.mat-accent .mat-mdc-option-multiple:hover{background:var(--dropdown-color-option-hover)!important}*[theme=dark] .ui-dropdown-list.mat-warn mat-option:active,*[theme=dark] .ui-dropdown-list.mat-accent mat-option:active,*[theme=dark] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple:active,*[theme=dark].ui-dropdown-list.mat-warn mat-option:active,*[theme=dark].ui-dropdown-list.mat-accent mat-option:active,*[theme=dark].ui-dropdown-list.mat-accent .mat-mdc-option-multiple:active,*[theme=light] .ui-dropdown-list.mat-warn mat-option:active,*[theme=light] .ui-dropdown-list.mat-accent mat-option:active,*[theme=light] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple:active,*[theme=light].ui-dropdown-list.mat-warn mat-option:active,*[theme=light].ui-dropdown-list.mat-accent mat-option:active,*[theme=light].ui-dropdown-list.mat-accent .mat-mdc-option-multiple:active,.dark .ui-dropdown-list.mat-warn mat-option:active,.dark .ui-dropdown-list.mat-accent mat-option:active,.dark .ui-dropdown-list.mat-accent .mat-mdc-option-multiple:active,.dark.ui-dropdown-list.mat-warn mat-option:active,.dark.ui-dropdown-list.mat-accent mat-option:active,.dark.ui-dropdown-list.mat-accent .mat-mdc-option-multiple:active,.light .ui-dropdown-list.mat-warn mat-option:active,.light .ui-dropdown-list.mat-accent mat-option:active,.light .ui-dropdown-list.mat-accent .mat-mdc-option-multiple:active,.light.ui-dropdown-list.mat-warn mat-option:active,.light.ui-dropdown-list.mat-accent mat-option:active,.light.ui-dropdown-list.mat-accent .mat-mdc-option-multiple:active{background:var(--dropdown-color-option-active)!important}*[theme=dark] .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active,*[theme=dark] .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected,*[theme=dark] .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active,*[theme=dark] .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected,*[theme=dark] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active,*[theme=dark] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected,*[theme=dark].ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active,*[theme=dark].ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected,*[theme=dark].ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active,*[theme=dark].ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected,*[theme=dark].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active,*[theme=dark].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected,*[theme=light] .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active,*[theme=light] .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected,*[theme=light] .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active,*[theme=light] .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected,*[theme=light] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active,*[theme=light] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected,*[theme=light].ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active,*[theme=light].ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected,*[theme=light].ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active,*[theme=light].ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected,*[theme=light].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active,*[theme=light].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected,.dark .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active,.dark .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected,.dark .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active,.dark .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected,.dark .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active,.dark .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected,.dark.ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active,.dark.ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected,.dark.ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active,.dark.ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected,.dark.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active,.dark.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected,.light .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active,.light .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected,.light .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active,.light .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected,.light .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active,.light .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected,.light.ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active,.light.ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected,.light.ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active,.light.ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected,.light.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active,.light.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected{background-color:#f4f4f4!important}*[theme=dark] .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mdc-list-item__primary-text,*[theme=dark] .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,*[theme=dark] .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mdc-list-item__primary-text,*[theme=dark] .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,*[theme=dark] .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mdc-list-item__primary-text,*[theme=dark] .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,*[theme=dark] .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mdc-list-item__primary-text,*[theme=dark] .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,*[theme=dark] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mdc-list-item__primary-text,*[theme=dark] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,*[theme=dark] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mdc-list-item__primary-text,*[theme=dark] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,*[theme=dark].ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mdc-list-item__primary-text,*[theme=dark].ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,*[theme=dark].ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mdc-list-item__primary-text,*[theme=dark].ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,*[theme=dark].ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mdc-list-item__primary-text,*[theme=dark].ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,*[theme=dark].ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mdc-list-item__primary-text,*[theme=dark].ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,*[theme=dark].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mdc-list-item__primary-text,*[theme=dark].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,*[theme=dark].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mdc-list-item__primary-text,*[theme=dark].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,*[theme=light] .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mdc-list-item__primary-text,*[theme=light] .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,*[theme=light] .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mdc-list-item__primary-text,*[theme=light] .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,*[theme=light] .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mdc-list-item__primary-text,*[theme=light] .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,*[theme=light] .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mdc-list-item__primary-text,*[theme=light] .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,*[theme=light] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mdc-list-item__primary-text,*[theme=light] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,*[theme=light] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mdc-list-item__primary-text,*[theme=light] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,*[theme=light].ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mdc-list-item__primary-text,*[theme=light].ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,*[theme=light].ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mdc-list-item__primary-text,*[theme=light].ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,*[theme=light].ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mdc-list-item__primary-text,*[theme=light].ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,*[theme=light].ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mdc-list-item__primary-text,*[theme=light].ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,*[theme=light].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mdc-list-item__primary-text,*[theme=light].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,*[theme=light].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mdc-list-item__primary-text,*[theme=light].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,.dark .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mdc-list-item__primary-text,.dark .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,.dark .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mdc-list-item__primary-text,.dark .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,.dark .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mdc-list-item__primary-text,.dark .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,.dark .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mdc-list-item__primary-text,.dark .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,.dark .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mdc-list-item__primary-text,.dark .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,.dark .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mdc-list-item__primary-text,.dark .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,.dark.ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mdc-list-item__primary-text,.dark.ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,.dark.ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mdc-list-item__primary-text,.dark.ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,.dark.ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mdc-list-item__primary-text,.dark.ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,.dark.ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mdc-list-item__primary-text,.dark.ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,.dark.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mdc-list-item__primary-text,.dark.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,.dark.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mdc-list-item__primary-text,.dark.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,.light .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mdc-list-item__primary-text,.light .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,.light .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mdc-list-item__primary-text,.light .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,.light .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mdc-list-item__primary-text,.light .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,.light .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mdc-list-item__primary-text,.light .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,.light .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mdc-list-item__primary-text,.light .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,.light .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mdc-list-item__primary-text,.light .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,.light.ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mdc-list-item__primary-text,.light.ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,.light.ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mdc-list-item__primary-text,.light.ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,.light.ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mdc-list-item__primary-text,.light.ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,.light.ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mdc-list-item__primary-text,.light.ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,.light.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mdc-list-item__primary-text,.light.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,.light.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mdc-list-item__primary-text,.light.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-checked:after{color:#242424!important}*[theme=dark] .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),*[theme=dark] .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),*[theme=dark] .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),*[theme=dark] .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),*[theme=dark] .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),*[theme=dark] .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),*[theme=dark] .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),*[theme=dark] .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),*[theme=dark] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),*[theme=dark] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),*[theme=dark] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),*[theme=dark] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),*[theme=dark].ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),*[theme=dark].ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),*[theme=dark].ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),*[theme=dark].ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),*[theme=dark].ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),*[theme=dark].ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),*[theme=dark].ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),*[theme=dark].ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),*[theme=dark].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),*[theme=dark].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),*[theme=dark].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),*[theme=dark].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),*[theme=light] .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),*[theme=light] .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),*[theme=light] .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),*[theme=light] .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),*[theme=light] .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),*[theme=light] .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),*[theme=light] .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),*[theme=light] .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),*[theme=light] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),*[theme=light] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),*[theme=light] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),*[theme=light] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),*[theme=light].ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),*[theme=light].ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),*[theme=light].ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),*[theme=light].ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),*[theme=light].ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),*[theme=light].ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),*[theme=light].ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),*[theme=light].ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),*[theme=light].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),*[theme=light].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),*[theme=light].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),*[theme=light].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.dark .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.dark .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.dark .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.dark .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.dark .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.dark .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.dark .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.dark .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.dark .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.dark .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.dark .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.dark .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.dark.ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.dark.ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.dark.ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.dark.ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.dark.ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.dark.ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.dark.ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.dark.ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.dark.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.dark.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.dark.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.dark.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.light .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.light .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.light .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.light .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.light .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.light .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.light .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.light .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.light .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.light .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.light .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.light .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.light.ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.light.ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.light.ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.light.ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.light.ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.light.ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.light.ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.light.ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.light.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.light.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.light.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.light.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:focus:not(.mdc-list-item--disabled){background-color:#f4f4f4}*[theme=dark] .ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full,*[theme=dark].ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full,*[theme=light] .ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full,*[theme=light].ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full,.dark .ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full,.dark.ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full,.light .ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full,.light.ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full{background:#d410aa;border-color:#d410aa}*[theme=dark] .ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full:after,*[theme=dark].ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full:after,*[theme=light] .ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full:after,*[theme=light].ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full:after,.dark .ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full:after,.dark.ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full:after,.light .ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full:after,.light.ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full:after{border-color:#fff}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined,.dark .mat-mdc-form-field.mat-form-field-appearance-outline,.dark .mat-mdc-form-field.mat-text-field-outlined,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined,.light .mat-mdc-form-field.mat-form-field-appearance-outline,.light .mat-mdc-form-field.mat-text-field-outlined,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined{--mdc-outlined-text-field-caret-color: #242424 !important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mdc-text-field__input::placeholder,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mdc-text-field__input::placeholder,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mdc-text-field__input::placeholder,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mdc-text-field__input::placeholder,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mdc-text-field__input::placeholder,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mdc-text-field__input::placeholder,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mdc-text-field__input::placeholder,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mdc-text-field__input::placeholder,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mdc-text-field__input::placeholder,.dark .mat-mdc-form-field.mat-text-field-outlined .mdc-text-field__input::placeholder,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mdc-text-field__input::placeholder,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mdc-text-field__input::placeholder,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mdc-text-field__input::placeholder,.light .mat-mdc-form-field.mat-text-field-outlined .mdc-text-field__input::placeholder,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mdc-text-field__input::placeholder,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mdc-text-field__input::placeholder{color:#666}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error svg,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error svg,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error svg{color:#e02800;row-gap:0}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper{padding:0!important;min-height:24px}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:after,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:before,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:after,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:before,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:after,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:before,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:after,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:before,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:after,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:before,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:after,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:before,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:after,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:before,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:after,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:before,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:after,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:before,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:after,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:before,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:after,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:before,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:after,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:before,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:after,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:before,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:after,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:before,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:after,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:before,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:after,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:before{display:none}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline input,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-text-field__input,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined input,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-text-field__input,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline input,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-text-field__input,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined input,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-text-field__input,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline input,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-text-field__input,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined input,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-text-field__input,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline input,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-text-field__input,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined input,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-text-field__input,.dark .mat-mdc-form-field.mat-form-field-appearance-outline input,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-text-field__input,.dark .mat-mdc-form-field.mat-text-field-outlined input,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-text-field__input,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline input,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-text-field__input,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined input,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-text-field__input,.light .mat-mdc-form-field.mat-form-field-appearance-outline input,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-text-field__input,.light .mat-mdc-form-field.mat-text-field-outlined input,.light .mat-mdc-form-field.mat-text-field-outlined .mat-text-field__input,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline input,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-text-field__input,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined input,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-text-field__input{caret-color:#242424}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-focused ui-icon:not(.clear) svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-focused ui-icon:not(.clear) svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-focused ui-icon:not(.clear) svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-focused ui-icon:not(.clear) svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-focused ui-icon:not(.clear) svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-focused ui-icon:not(.clear) svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-focused ui-icon:not(.clear) svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-focused ui-icon:not(.clear) svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-focused ui-icon:not(.clear) svg,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-focused ui-icon:not(.clear) svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-focused ui-icon:not(.clear) svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-focused ui-icon:not(.clear) svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-focused ui-icon:not(.clear) svg,.light .mat-mdc-form-field.mat-text-field-outlined.mat-focused ui-icon:not(.clear) svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-focused ui-icon:not(.clear) svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-focused ui-icon:not(.clear) svg{color:#242424}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper{background:#fff;border-radius:10px;height:48px}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover ui-icon svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover ui-icon svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover ui-icon svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover ui-icon svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover ui-icon svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover ui-icon svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover ui-icon svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover ui-icon svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover ui-icon svg,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover ui-icon svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover ui-icon svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover ui-icon svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover ui-icon svg,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover ui-icon svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover ui-icon svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover ui-icon svg{color:#242424!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon svg,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon svg,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon svg{color:#919191!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon:focus-visible svg{color:#242424!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag ui-icon svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag ui-icon svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag ui-icon svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag ui-icon svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag ui-icon svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag ui-icon svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag ui-icon svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag ui-icon svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag ui-icon svg,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag ui-icon svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag ui-icon svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag ui-icon svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag ui-icon svg,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag ui-icon svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag ui-icon svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag ui-icon svg{color:#242424!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg{color:#fff!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label{color:#666!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled *{border-color:#d3d3d3!important;color:#d3d3d3!important;pointer-events:none!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label{color:#e9e9e9!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above{color:#242424!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__leading{border-top-left-radius:10px;border-bottom-left-radius:10px}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing{border-top-right-radius:10px;border-bottom-right-radius:10px}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg{color:#242424!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg{color:#242424!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above){top:21px!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg{color:#242424!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing{border-color:#242424!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above{color:#242424!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-required-marker:after,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-required-marker:after,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-required-marker:after,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-required-marker:after,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-required-marker:after,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-required-marker:after,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-required-marker:after,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-required-marker:after,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-required-marker:after,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-required-marker:after,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-required-marker:after,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-required-marker:after,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-required-marker:after,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-required-marker:after,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-required-marker:after,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-required-marker:after{color:#e02800}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn mat-label,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn mat-label,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn mat-label,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn mat-label,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn mat-label,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn mat-label,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn mat-label,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn mat-label,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn mat-label,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn mat-label,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn mat-label,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn mat-label,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn mat-label,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn mat-label,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn mat-label,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn mat-label{color:#e02800!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error a,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error a,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error a,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error a,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error a,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error a,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error a,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error a,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error a,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error a,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error a,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error a,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error a,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error a,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error a,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error a{color:#e02800!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error svg,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error svg,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error svg{color:#e02800!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above{color:#e02800!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing{border-color:#e02800!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg{color:#e02800!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing{border-color:#e02800!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above{color:#e02800!important}*[theme=dark] .ui-dropdown-list.mat-accent,.dark .ui-dropdown-list.mat-accent{background-color:#666}*[theme=dark] .ui-dropdown-list.mat-accent mat-option,.dark .ui-dropdown-list.mat-accent mat-option{background-color:#666!important}*[theme=dark] .ui-dropdown-list.mat-accent mat-option:hover,*[theme=dark] .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active,.dark .ui-dropdown-list.mat-accent mat-option:hover,.dark .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active{background-color:#919191!important}*[theme=dark] .ui-dropdown-list.mat-accent mat-option .mdc-list-item__primary-text,*[theme=dark] .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mdc-list-item__primary-text,.dark .ui-dropdown-list.mat-accent mat-option .mdc-list-item__primary-text,.dark .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mdc-list-item__primary-text{color:#fff!important}*[theme=dark] .mat-mdc-select-placeholder,.dark .mat-mdc-select-placeholder{color:#919191}*[theme=dark] .ui-dropdown .mat-mdc-select,.dark .ui-dropdown .mat-mdc-select{color:#fff}.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list{border-radius:10px!important;box-shadow:0 4px 16px #24242414}.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent mat-option:hover:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent mat-option:focus:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent .mat-mdc-option-multiple:hover:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent .mat-mdc-option-multiple:focus:not(.mdc-list-item--disabled){background-color:#e0e0e0}.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active,.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected,.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active,.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected{background-color:#e9f0f1;color:#000}.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:focus:not(.mdc-list-item--disabled){background-color:#c8d7de}.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn mat-option:hover:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn mat-option:focus:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn .mat-mdc-option-multiple:hover:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn .mat-mdc-option-multiple:focus:not(.mdc-list-item--disabled){background-color:#e0e0e0}.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active,.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected,.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn .mat-mdc-option-multiple.mat-mdc-option-active,.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn .mat-mdc-option-multiple.mdc-list-item--selected{background-color:#f0dad9;color:#000}.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn .mat-mdc-option-multiple.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn .mat-mdc-option-multiple.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn .mat-mdc-option-multiple.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn .mat-mdc-option-multiple.mdc-list-item--selected:focus:not(.mdc-list-item--disabled){background-color:#e3c3c6}.ui-field[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,.ui-field[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label{color:#666!important}.ui-field[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label:active,.ui-field[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label:active{color:#242424!important}.mat-mdc-form-field .mat-mdc-form-field-hint-wrapper{padding:0}.mat-mdc-form-field .mat-mdc-form-field-hint-wrapper .errors{padding-top:4px;padding-bottom:10px}.mat-mdc-form-field .mat-mdc-form-field-hint-wrapper span,.mat-mdc-form-field .mat-mdc-form-field-hint-wrapper .mat-mdc-form-field-hint-spacer{line-height:16px}.mat-mdc-form-field .mat-mdc-form-field-hint:before{height:0!important}.mat-mdc-form-field .mat-mdc-form-field-hint.error{display:flex;flex-flow:column;row-gap:4px}.mat-mdc-form-field .mat-mdc-form-field-hint.error .errors{align-items:center;display:flex}.mat-mdc-form-field .mat-mdc-form-field-hint.error .errors ui-icon{margin-right:4px}.custom-errors{align-items:center;display:flex;color:#e02800!important;padding:4px 0 10px;font-size:12px;line-height:16px;position:relative}.custom-errors ui-icon{margin-right:4px}.custom-errors svg{color:#e02800!important}.light.mat-mdc-autocomplete-panel .mat-mdc-option:hover:not(.mdc-list-item--disabled),.light.mat-mdc-autocomplete-panel .mat-mdc-option:focus:not(.mdc-list-item--disabled),.light.mat-mdc-autocomplete-panel .mat-mdc-option.mat-mdc-option-active,.light.mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.dark.mat-mdc-autocomplete-panel .mat-mdc-option:hover:not(.mdc-list-item--disabled){background:var(--ui-autocomplete-option-color)!important}:root{--color-primary-10: #FFF2FC;--color-primary-20: #FFE6FA;--color-primary-30: #FFB3EE;--color-primary-40: #FF54DA;--color-primary-50: #D410AA;--color-primary-60: #A90686;--color-accent-10: #FFFAF6;--color-accent-20: #FFF5ED;--color-black: #242424;--color-black-opa-70: rgba(36, 36, 36, .7);--color-white: #FFFFFF;--color-grey-10: #F4F4F4;--color-grey-20: #E9E9E9;--color-grey-30: #D3D3D3;--color-grey-40: #919191;--color-grey-50: #666666;--color-info-10: #D9E8FF;--color-info-20: #99C1FE;--color-info-30: #277CFD;--color-info-40: #0165FC;--color-info-50: #1447AA;--color-success-10: #F5FAE3;--color-success-20: #E2F4B3;--color-success-30: #C6E866;--color-success-40: #A0D90D;--color-success-50: #88B901;--color-error-10: #FFEAE6;--color-error-20: #FFAC9A;--color-error-30: #FF6E4F;--color-error-40: #FF3003;--color-error-50: #E02800;--color-warning-10: #FFF5E6;--color-warning-20: #FFE1B3;--color-warning-30: #FFC268;--color-warning-40: #FF9A03;--color-warning-50: #D07D00}:root{--font-family-main: \"Modern Gothic\", sans-serif;--font-h1: 900 40px/52px var(--font-family-main);--font-h2: 900 24px/30px var(--font-family-main);--font-h3: 700 20px/26px var(--font-family-main);--font-h4: 700 16px/20px var(--font-family-main);--font-h5: 700 14px/18px var(--font-family-main);--font-body-large: 400 16px/24px var(--font-family-main);--font-body-default: 400 14px/22px var(--font-family-main);--font-body-small: 400 12px/16px var(--font-family-main);--font-hyperlink-large: 500 16px/24px var(--font-family-main);--font-hyperlink-default: 500 14px/22px var(--font-family-main);--font-hyperlink-small: 500 12px/16px var(--font-family-main);--font-button-label: 500 14px/1.4 var(--font-family-main);--font-label: 400 14px/1.4 var(--font-family-main)}:root{--border-radius-none: 0px;--border-radius-small: 4px;--border-radius-small-top: var(--border-radius-small) var(--border-radius-small) 0 0;--border-radius-small-bottom: 0 0 var(--border-radius-small) var(--border-radius-small);--border-radius-default: 10px;--border-radius-default-top: var(--border-radius-default) var(--border-radius-default) 0 0;--border-radius-default-bottom: 0 0 var(--border-radius-default) var(--border-radius-default);--border-radius-large: 36px;--border-radius-round: 50%;--color-grey-border: #DDDDDD;--color-grey-border-hover: #F6F6F6}:root{--box-shadow-hover: 0px 4px 16px 0px rgba(36,36,36,.08);--box-shadow-card: 0px 4px 100px 0px rgba(36,36,36,.04);--box-shadow-notification: 0px 4px 16px 0px rgba(36,36,36,.04)}:root{--viewport-width: 1312px}lib-coding-test .theme-default{--page-bg: var(--color-accent-10);--bg-mat-card: #ffffff;--icon-bg-color: #323232;--icon-bg-hover-color: #f6f6f6;--icon-secondary-bg-color: #000000;--petrol-text-color: #276678;--status-bg-color: #f6f6f6;--button-bg-color: #ededed;--info-panel-color: #c8d7de;--code-editor-background: #fffffe;--select-chosen-text-color: #888888;--select-chosen-bg-color: #e9f0f1;--select-hovered-bg-color: rgba(0, 0, 0, .04);--select-options-text-color: #000000;--select-bg-color: #ffffff;--select-bg-color-light: #ffffff;--select-border-color: #eeeeee;--select-border-color-light: rgba(0, 0, 0, .12);--select-shadow-color: #cccccc;--select-arrow-color: rgba(0, 0, 0, .54);--drawer-bg-color: #ffffff;--toggle-thumb-bg-color: #ffffff;--toggle-body-bg-color: #ededed;--main-text-color: rgba(0, 0, 0, .87);--secondary-text-color: #000000;--status-empty-color: #888888;--border-bg-color: #e0e0e0;--teal-disabled-color: #B5DDD5}lib-coding-test .theme-dark{--page-bg: #181818;--bg-mat-card: #2d2d2d;--icon-bg-color: #f6f6f6;--icon-bg-hover-color: #1e1e1e;--icon-secondary-bg-color: #f6f6f6;--petrol-text-color: #6894A0;--status-bg-color: #3c3c3c;--button-bg-color: #2d2d2d;--info-panel-color: #c8d7de;--code-editor-background: #1e1e1e;--select-chosen-text-color: #f6f6f6;--select-chosen-bg-color: #2d2d2d;--select-hovered-bg-color: rgba(45, 45, 45, .5);--select-options-text-color: #f6f6f6;--select-bg-color: #000000;--select-bg-color-light: #2D2D2D;--select-border-color: #2d2d2d;--select-border-color-light: #888888;--select-shadow-color: #2d2d2d;--select-arrow-color: #ffffff;--drawer-bg-color: #181818;--toggle-thumb-bg-color: #000000;--toggle-body-bg-color: #888888;--main-text-color: #ffffff;--secondary-text-color: #ffffff;--status-empty-color: #E0E0E0;--border-bg-color: #888888;--teal-disabled-color: #888888;--mdc-plain-tooltip-supporting-text-color: #000000}lib-coding-test .theme-dark.coding-question-fullscreen{--bg-mat-card: #181818}lib-coding-test .themed-button button:not(.tertiary) mat-icon svg{color:var(--icon-bg-color);fill:var(--icon-bg-color)}lib-coding-test .themed-button button.tertiary mat-icon svg{color:var(--company-color, #46A997);fill:var(--company-color, #46A997)}lib-coding-test .themed-button .button-wrapper .icon-button:hover,lib-coding-test .themed-button .button-wrapper .mdc-button:hover{background-color:var(--icon-bg-hover-color)!important}lib-coding-test mat-icon.size-24{min-width:24px;min-height:24px;width:24px;height:24px}lib-coding-test mat-icon.size-16{min-width:16px;min-height:16px;width:16px;height:16px}lib-coding-test ui-toggle.config-toggle mat-icon{width:auto;height:auto}.coding-question{background-color:var(--page-bg);color:var(--main-text-color)}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "component", type: CodeEditorComponent, selector: "tgo-code-editor", inputs: ["initCode", "functionParams", "functionName", "returnType", "hasCodingConfigPanel", "isReadonly", "autoHeight", "shouldGenerateInitCode", "snapshot"], outputs: ["pasteEvent", "codeChange"] }, { kind: "component", type: CodingQuestionComponent, selector: "tgo-coding-question", inputs: ["initCode", "functionParams", "functionName", "returnType", "isLAT", "isSQL", "canAddCustomTestCases", "languages", "autoHeight", "translations", "questionText", "mode", "companyColor", "testCasesStatus", "loading", "hideTestCases", "runTestResponse", "exampleTestCases", "applicationTheme"], outputs: ["pasteEvent", "codeChange", "runTestClick", "languageChange"] }, { kind: "component", type: RunnableEditorComponent, selector: "tgo-runnable-editor", inputs: ["initCode", "functionParams", "functionName", "returnType", "isFullViewMode", "isLAT", "isSQL", "canAddCustomTestCases", "hideTestCases", "languages", "shouldGenerateInitCode", "autoHeight", "translations", "questionText", "companyColor", "testCasesStatus", "loading", "runTestResponse", "exampleTestCases", "isRunnableWithLangSelector", "applicationTheme"], outputs: ["pasteEvent", "codeChange", "runTestClick", "languageChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
206
+ };
207
+ TgoCodingTestComponent = __decorate([
208
+ UntilDestroy()
209
+ ], TgoCodingTestComponent);
210
+ export { TgoCodingTestComponent };
211
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TgoCodingTestComponent, decorators: [{
212
+ type: Component,
213
+ args: [{ standalone: true, selector: 'tgo-coding-test[languages]', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, imports: [
214
+ CommonModule,
215
+ CodeEditorComponent,
216
+ CodingQuestionComponent,
217
+ RunnableEditorComponent,
218
+ ], template: "@switch (viewMode) {\n @case (ViewModes.Full) {\n <tgo-coding-question\n [ngClass]=\"[\n 'coding-question',\n colorTheme$ | async,\n (isFullscreenMode$ | async) ? 'coding-question-fullscreen' : '',\n ]\"\n [ngStyle]=\"{\n '--company-color': companyColor,\n '--company-theme-specific-color': themeSpecificColor,\n }\"\n [initCode]=\"initCode\"\n [functionParams]=\"functionParams\"\n [functionName]=\"functionName\"\n [returnType]=\"returnType\"\n [autoHeight]=\"autoHeight\"\n [questionText]=\"questionText\"\n [mode]=\"mode\"\n [isLAT]=\"isLAT\"\n [isSQL]=\"isSQL\"\n [canAddCustomTestCases]=\"canAddCustomTestCases\"\n [exampleTestCases]=\"exampleTestCases\"\n [languages]=\"languages\"\n (pasteEvent)=\"pasteEvent.emit($event)\"\n (codeChange)=\"codeChange.emit($event)\"\n (runTestClick)=\"runTestClick.emit($event)\"\n (languageChange)=\"languageChange.emit($event)\"\n [translations]=\"translations\"\n [companyColor]=\"companyColor\"\n [testCasesStatus]=\"testCasesStatus\"\n [loading]=\"loading\"\n [runTestResponse]=\"runTestResponse\"\n [applicationTheme]=\"applicationTheme\"\n [hideTestCases]=\"hideTestCases\"\n >\n </tgo-coding-question>\n }\n @case (ViewModes.RunnableIde) {\n <ng-container [ngTemplateOutlet]=\"runnableEditorTpl\"></ng-container>\n }\n @case (ViewModes.RunnableIdeWithLangSelector) {\n <ng-container [ngTemplateOutlet]=\"runnableEditorTpl\"></ng-container>\n }\n @default {\n <tgo-code-editor\n [initCode]=\"initCode\"\n [snapshot]=\"snapshot\"\n [shouldGenerateInitCode]=\"!isFullViewMode && shouldGenerateInitCode\"\n [functionParams]=\"functionParams\"\n [functionName]=\"functionName\"\n [returnType]=\"returnType\"\n [hasCodingConfigPanel]=\"isFullViewMode\"\n [isReadonly]=\"isReadonly\"\n [autoHeight]=\"autoHeight\"\n (pasteEvent)=\"pasteEvent.emit($event)\"\n (codeChange)=\"codeChange.emit($event)\"\n >\n </tgo-code-editor>\n }\n}\n\n<ng-template #runnableEditorTpl>\n <tgo-runnable-editor\n [ngClass]=\"colorTheme$ | async\"\n [ngStyle]=\"{\n '--company-color': companyColor,\n '--company-theme-specific-color': themeSpecificColor,\n }\"\n [initCode]=\"initCode\"\n [functionParams]=\"functionParams\"\n [functionName]=\"functionName\"\n [returnType]=\"returnType\"\n [isFullViewMode]=\"false\"\n [shouldGenerateInitCode]=\"shouldGenerateInitCode\"\n [isRunnableWithLangSelector]=\"viewMode === ViewModes.RunnableIdeWithLangSelector\"\n [isLAT]=\"isLAT\"\n [isSQL]=\"isSQL\"\n [canAddCustomTestCases]=\"canAddCustomTestCases\"\n [languages]=\"languages\"\n [autoHeight]=\"autoHeight\"\n [translations]=\"translations\"\n [questionText]=\"questionText\"\n [companyColor]=\"companyColor\"\n [testCasesStatus]=\"testCasesStatus\"\n [loading]=\"loading\"\n [runTestResponse]=\"runTestResponse\"\n [exampleTestCases]=\"exampleTestCases\"\n [applicationTheme]=\"applicationTheme\"\n (pasteEvent)=\"pasteEvent.emit($event)\"\n (codeChange)=\"codeChange.emit($event)\"\n (runTestClick)=\"runTestClick.emit($event)\"\n (languageChange)=\"languageChange.emit($event)\"\n >\n </tgo-runnable-editor>\n</ng-template>\n", styles: ["h1,h2,h3,.h1,.h2,.h3{font-weight:400;margin:0}h4,h5,h6,.h4,.h5,.h6{font-weight:700;margin:0}h1,.h1{font-size:40px;line-height:60px;font-weight:700}h2,.h2{font-size:24px;line-height:36px}h2.bold,.h2.bold{font-weight:700}h3,.h3{font-size:20px;line-height:28px}h3.bold,.h3.bold{font-weight:700}h4,.h4{font-size:16px;line-height:24px}h5,.h5{font-size:14px;line-height:20px}h6,.h6{font-size:12px;line-height:16px;text-transform:uppercase}body{font-size:14px;line-height:20px}strong,b{font-weight:700!important}.featured{font-size:16px;line-height:24px}p .semibold,.featured .semibold,.caption .semibold{font-weight:600;color:#46a997}small{font-size:8px;line-height:12px}caption,.caption{font-size:12px;line-height:16px;display:inline-block}*[theme=dark] h1,*[theme=dark] .h1,*[theme=light] h1,*[theme=light] .h1{color:#242424;font-size:32px;line-height:48px;font-weight:400}*[theme=dark] h1.black,*[theme=dark] .h1.black,*[theme=light] h1.black,*[theme=light] .h1.black{font-family:ModernGothic,sans-serif!important;font-weight:900}*[theme=dark] h2,*[theme=dark] .h2,*[theme=light] h2,*[theme=light] .h2{color:#242424;font-size:24px;line-height:30px;font-weight:900;font-family:ModernGothic,sans-serif!important}*[theme=dark] h3,*[theme=dark] .h3,*[theme=light] h3,*[theme=light] .h3{font-size:20px;line-height:26px;font-weight:400;color:#242424}*[theme=dark] h3.bold,*[theme=dark] .h3.bold,*[theme=light] h3.bold,*[theme=light] .h3.bold{font-family:ModernGothic,sans-serif!important;font-weight:700}*[theme=dark] h4,*[theme=dark] .h4,*[theme=light] h4,*[theme=light] .h4{font-size:16px;line-height:20px;font-weight:700;color:#242424;font-family:ModernGothic,sans-serif!important}*[theme=dark] h5,*[theme=dark] .h5,*[theme=light] h5,*[theme=light] .h5{font-size:14px;line-height:18px;font-weight:700;color:#242424;font-family:ModernGothic,sans-serif!important}*[theme=dark] .body-large,*[theme=light] .body-large{font-weight:700;font-size:14px;line-height:22px}*[theme=dark] .body-large-bold,*[theme=light] .body-large-bold{font-weight:700;font-size:16px;line-height:24px}*[theme=dark] .body-large-regular,*[theme=light] .body-large-regular{font-weight:400;font-size:16px;line-height:24px}*[theme=dark] .body-small-bold,*[theme=light] .body-small-bold{font-weight:700;font-size:12px;line-height:16px}*[theme=dark] .body-small-regular,*[theme=light] .body-small-regular{font-weight:400;font-size:12px;line-height:16px}*[theme=dark] .hyperlink-large,*[theme=light] .hyperlink-large{font-weight:500;font-size:16px;line-height:24px}*[theme=dark] .hyperlink,*[theme=light] .hyperlink{font-weight:500;font-size:14px;line-height:22px}*[theme=dark] .hyperlink-small,*[theme=light] .hyperlink-small{font-weight:500;font-size:12px;line-height:16px}*[theme=dark] .button-label,*[theme=light] .button-label{font-weight:500;font-size:14px;font-feature-settings:\"capb\"}*[theme=dark] .label,*[theme=light] .label{font-weight:400;font-size:14px;font-feature-settings:\"capb\"}*[theme=dark] .large-hover-state,*[theme=light] .large-hover-state{font-weight:700;text-decoration:underline;font-size:16px;line-height:24px}*[theme=dark] .hover-state,*[theme=light] .hover-state{font-weight:700;text-decoration:underline;font-size:14px;line-height:22px}*[theme=dark] h1,*[theme=dark] .h1,*[theme=dark] h2,*[theme=dark] .h2,*[theme=dark] h3,*[theme=dark] .h3,*[theme=dark] h4,*[theme=dark] .h4,*[theme=dark] h5,*[theme=dark] .h5{color:#fff}.bg-teal-60b{background:#1c443c}.bg-teal-30b{background:#31766a}.bg-teal-default{background:#46a997}.bg-teal-30w{background:#7ec3b6}.bg-teal-60w{background:#b5ddd5}.bg-teal-secondary{background:#cbd6cb}.bg-teal-90w{background:#ecf6f5}.bg-petrol-60b{background:#102930}.bg-petrol-30b{background:#1b4754}.bg-petrol-default{background:#276678}.bg-petrol-30w{background:#6894a0}.bg-petrol-60w{background:#a9c2c9}.bg-petrol-secondary{background:#c8d7de}.bg-petrol-90w{background:#e9f0f1}.bg-error-60b{background:#513131}.bg-error-30b{background:#8e5655}.bg-error-60w{background:#e3c3c6}.bg-error-secondary{background:#f0dad9}.bg-error-default{background:#cb7b7a}.bg-warning-secondary{background:#f0d6bb}.bg-warning-default{background:#cca45f}.bg-black{background:#000}.bg-dark{background:#888}.bg-medium{background:#e0e0e0}.bg-grey{background:#ededed}.bg-light{background:#f6f6f6}.bg-white{background:#fff}.bg-box-shadow{background:#00000014}.bg-navigation-subtitle{background:#528593}.bgc-teal-60b{background-color:#1c443c}.bgc-teal-30b{background-color:#31766a}.bgc-teal-default{background-color:#46a997}.bgc-teal-30w{background-color:#7ec3b6}.bgc-teal-60w{background-color:#b5ddd5}.bgc-teal-secondary{background-color:#cbd6cb}.bgc-teal-90w{background-color:#ecf6f5}.bgc-petrol-60b{background-color:#102930}.bgc-petrol-30b{background-color:#1b4754}.bgc-petrol-default{background-color:#276678}.bgc-petrol-30w{background-color:#6894a0}.bgc-petrol-60w{background-color:#a9c2c9}.bgc-petrol-secondary{background-color:#c8d7de}.bgc-petrol-90w{background-color:#e9f0f1}.bgc-error-60b{background-color:#513131}.bgc-error-30b{background-color:#8e5655}.bgc-error-60w{background-color:#e3c3c6}.bgc-error-secondary{background-color:#f0dad9}.bgc-error-default{background-color:#cb7b7a}.bgc-warning-secondary{background-color:#f0d6bb}.bgc-warning-default{background-color:#cca45f}.bgc-black{background-color:#000}.bgc-dark{background-color:#888}.bgc-medium{background-color:#e0e0e0}.bgc-grey{background-color:#ededed}.bgc-light{background-color:#f6f6f6}.bgc-white{background-color:#fff}.bgc-box-shadow{background-color:#00000014}.bgc-navigation-subtitle{background-color:#528593}ui-dropdown .mat-mdc-form-field.keyboard-focused,ui-autocomplete .mat-mdc-form-field.keyboard-focused{position:relative}ui-dropdown .mat-mdc-form-field.keyboard-focused .mat-mdc-text-field-wrapper,ui-autocomplete .mat-mdc-form-field.keyboard-focused .mat-mdc-text-field-wrapper{outline:2px solid #242424;animation:focus-ring-animation-main .4s forwards;outline-offset:4px}ui-dropdown .mat-mdc-form-field.keyboard-focused .mat-mdc-text-field-wrapper:after,ui-autocomplete .mat-mdc-form-field.keyboard-focused .mat-mdc-text-field-wrapper:after{content:\"\";position:absolute;top:0;border-radius:10px;left:0;width:100%;height:100%;outline:4px solid #ffffff;z-index:-1}ui-dropdown .mat-mdc-form-field.keyboard-focused .mat-mdc-form-field-subscript-wrapper,ui-autocomplete .mat-mdc-form-field.keyboard-focused .mat-mdc-form-field-subscript-wrapper{z-index:-1}ui-dropdown .mat-mdc-form-field.has-label .mdc-notched-outline__notch,ui-autocomplete .mat-mdc-form-field.has-label .mdc-notched-outline__notch{position:relative}ui-dropdown .mat-mdc-form-field.has-label .mdc-notched-outline__notch:after,ui-autocomplete .mat-mdc-form-field.has-label .mdc-notched-outline__notch:after{content:\"\";position:absolute;top:0;left:0;background:#fff;width:100%;height:5px;z-index:-1}.active-field .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading{border-left-width:2px;border-top-width:2px;border-bottom-width:2px}.active-field .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch{border-top-width:2px;border-bottom-width:2px;border-left:none!important}.active-field .mdc-notched-outline__trailing,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing{border-top-width:2px;border-bottom-width:2px;border-right-width:2px}*[theme=classic] .mat-mdc-form-field .mat-mdc-form-field-hint.error,*[theme=classic] .mat-mdc-form-field .mat-mdc-form-field-hint.error svg{color:#cb7b7a}*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper{height:48px}*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above){top:21px!important}*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing{border-color:#276678!important}*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=classic] .mat-mdc-form-field:not(.mat-warn).mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above{color:#276678!important}*[theme=dark].phone-number-select,*[theme=light].phone-number-select,.dark.phone-number-select,.light.phone-number-select{margin-top:8px;border-radius:10px!important;box-shadow:0 4px 16px #24242414}*[theme=dark].phone-number-select .country-option,*[theme=light].phone-number-select .country-option,.dark.phone-number-select .country-option,.light.phone-number-select .country-option{display:flex;align-items:center;gap:8px}*[theme=dark].phone-number-select .mat-mdc-option,*[theme=light].phone-number-select .mat-mdc-option,.dark.phone-number-select .mat-mdc-option,.light.phone-number-select .mat-mdc-option{--mat-option-selected-state-layer-color: #F4F4F4;--mat-option-selected-state-label-text-color: #242424}*[theme=dark].phone-number-select .mat-mdc-option .mdc-list-item__primary-text small,*[theme=light].phone-number-select .mat-mdc-option .mdc-list-item__primary-text small,.dark.phone-number-select .mat-mdc-option .mdc-list-item__primary-text small,.light.phone-number-select .mat-mdc-option .mdc-list-item__primary-text small{font-size:14px}*[theme=dark].phone-number-select .mat-mdc-option .mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked:after,*[theme=light].phone-number-select .mat-mdc-option .mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked:after,.dark.phone-number-select .mat-mdc-option .mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked:after,.light.phone-number-select .mat-mdc-option .mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked:after{color:#242424;width:12px;height:5px}*[theme=dark].phone-number-select .mat-mdc-option:hover,*[theme=light].phone-number-select .mat-mdc-option:hover,.dark.phone-number-select .mat-mdc-option:hover,.light.phone-number-select .mat-mdc-option:hover{background-color:#fff2fc}*[theme=dark].phone-number-select .mat-divider,*[theme=light].phone-number-select .mat-divider,.dark.phone-number-select .mat-divider,.light.phone-number-select .mat-divider{display:none}*[theme=dark] .mat-mdc-autocomplete-panel,*[theme=dark].mat-mdc-autocomplete-panel,*[theme=light] .mat-mdc-autocomplete-panel,*[theme=light].mat-mdc-autocomplete-panel,.dark .mat-mdc-autocomplete-panel,.dark.mat-mdc-autocomplete-panel,.light .mat-mdc-autocomplete-panel,.light.mat-mdc-autocomplete-panel{box-shadow:0 4px 16px #24242414;border-radius:10px}*[theme=dark] .mat-mdc-autocomplete-panel .mat-mdc-option.selected-option,*[theme=dark] .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),*[theme=dark].mat-mdc-autocomplete-panel .mat-mdc-option.selected-option,*[theme=dark].mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),*[theme=light] .mat-mdc-autocomplete-panel .mat-mdc-option.selected-option,*[theme=light] .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),*[theme=light].mat-mdc-autocomplete-panel .mat-mdc-option.selected-option,*[theme=light].mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.dark .mat-mdc-autocomplete-panel .mat-mdc-option.selected-option,.dark .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.dark.mat-mdc-autocomplete-panel .mat-mdc-option.selected-option,.dark.mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.light .mat-mdc-autocomplete-panel .mat-mdc-option.selected-option,.light .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.light.mat-mdc-autocomplete-panel .mat-mdc-option.selected-option,.light.mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled){background:#f4f4f4!important}*[theme=dark] .mat-mdc-autocomplete-panel .mat-mdc-option.selected-option:hover,*[theme=dark] .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):hover,*[theme=dark].mat-mdc-autocomplete-panel .mat-mdc-option.selected-option:hover,*[theme=dark].mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):hover,*[theme=light] .mat-mdc-autocomplete-panel .mat-mdc-option.selected-option:hover,*[theme=light] .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):hover,*[theme=light].mat-mdc-autocomplete-panel .mat-mdc-option.selected-option:hover,*[theme=light].mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):hover,.dark .mat-mdc-autocomplete-panel .mat-mdc-option.selected-option:hover,.dark .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):hover,.dark.mat-mdc-autocomplete-panel .mat-mdc-option.selected-option:hover,.dark.mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):hover,.light .mat-mdc-autocomplete-panel .mat-mdc-option.selected-option:hover,.light .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):hover,.light.mat-mdc-autocomplete-panel .mat-mdc-option.selected-option:hover,.light.mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):hover{background:var(--ui-autocomplete-option-color)!important}*[theme=dark] .mat-mdc-autocomplete-panel .mat-mdc-option:hover:not(.mdc-list-item--disabled),*[theme=dark].mat-mdc-autocomplete-panel .mat-mdc-option:hover:not(.mdc-list-item--disabled),*[theme=light] .mat-mdc-autocomplete-panel .mat-mdc-option:hover:not(.mdc-list-item--disabled),*[theme=light].mat-mdc-autocomplete-panel .mat-mdc-option:hover:not(.mdc-list-item--disabled),.dark .mat-mdc-autocomplete-panel .mat-mdc-option:hover:not(.mdc-list-item--disabled),.dark.mat-mdc-autocomplete-panel .mat-mdc-option:hover:not(.mdc-list-item--disabled),.light .mat-mdc-autocomplete-panel .mat-mdc-option:hover:not(.mdc-list-item--disabled),.light.mat-mdc-autocomplete-panel .mat-mdc-option:hover:not(.mdc-list-item--disabled){background:var(--ui-autocomplete-option-color)!important}*[theme=dark] .mat-mdc-autocomplete-panel .mat-mdc-option:active:not(.mdc-list-item--disabled),*[theme=dark].mat-mdc-autocomplete-panel .mat-mdc-option:active:not(.mdc-list-item--disabled),*[theme=light] .mat-mdc-autocomplete-panel .mat-mdc-option:active:not(.mdc-list-item--disabled),*[theme=light].mat-mdc-autocomplete-panel .mat-mdc-option:active:not(.mdc-list-item--disabled),.dark .mat-mdc-autocomplete-panel .mat-mdc-option:active:not(.mdc-list-item--disabled),.dark.mat-mdc-autocomplete-panel .mat-mdc-option:active:not(.mdc-list-item--disabled),.light .mat-mdc-autocomplete-panel .mat-mdc-option:active:not(.mdc-list-item--disabled),.light.mat-mdc-autocomplete-panel .mat-mdc-option:active:not(.mdc-list-item--disabled){background:var(--ui-autocomplete-option-color)!important}*[theme=dark] .mat-mdc-autocomplete-panel .mat-mdc-option .mdc-list-item__primary-text,*[theme=dark] .mat-mdc-autocomplete-panel .mat-mdc-option span,*[theme=dark].mat-mdc-autocomplete-panel .mat-mdc-option .mdc-list-item__primary-text,*[theme=dark].mat-mdc-autocomplete-panel .mat-mdc-option span,*[theme=light] .mat-mdc-autocomplete-panel .mat-mdc-option .mdc-list-item__primary-text,*[theme=light] .mat-mdc-autocomplete-panel .mat-mdc-option span,*[theme=light].mat-mdc-autocomplete-panel .mat-mdc-option .mdc-list-item__primary-text,*[theme=light].mat-mdc-autocomplete-panel .mat-mdc-option span,.dark .mat-mdc-autocomplete-panel .mat-mdc-option .mdc-list-item__primary-text,.dark .mat-mdc-autocomplete-panel .mat-mdc-option span,.dark.mat-mdc-autocomplete-panel .mat-mdc-option .mdc-list-item__primary-text,.dark.mat-mdc-autocomplete-panel .mat-mdc-option span,.light .mat-mdc-autocomplete-panel .mat-mdc-option .mdc-list-item__primary-text,.light .mat-mdc-autocomplete-panel .mat-mdc-option span,.light.mat-mdc-autocomplete-panel .mat-mdc-option .mdc-list-item__primary-text,.light.mat-mdc-autocomplete-panel .mat-mdc-option span{color:#242424!important;font-weight:400}*[theme=dark] .mat-mdc-autocomplete-panel .mat-mdc-optgroup-label .mdc-list-item__primary-text,*[theme=dark].mat-mdc-autocomplete-panel .mat-mdc-optgroup-label .mdc-list-item__primary-text,*[theme=light] .mat-mdc-autocomplete-panel .mat-mdc-optgroup-label .mdc-list-item__primary-text,*[theme=light].mat-mdc-autocomplete-panel .mat-mdc-optgroup-label .mdc-list-item__primary-text,.dark .mat-mdc-autocomplete-panel .mat-mdc-optgroup-label .mdc-list-item__primary-text,.dark.mat-mdc-autocomplete-panel .mat-mdc-optgroup-label .mdc-list-item__primary-text,.light .mat-mdc-autocomplete-panel .mat-mdc-optgroup-label .mdc-list-item__primary-text,.light.mat-mdc-autocomplete-panel .mat-mdc-optgroup-label .mdc-list-item__primary-text{font-size:14px!important}*[theme=dark] .mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text,*[theme=dark].mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text,*[theme=light] .mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text,*[theme=light].mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text,.dark .mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text,.dark.mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text,.light .mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text,.light.mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text{color:#242424!important;text-transform:lowercase}*[theme=dark] .mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text:first-letter,*[theme=dark].mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text:first-letter,*[theme=light] .mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text:first-letter,*[theme=light].mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text:first-letter,.dark .mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text:first-letter,.dark.mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text:first-letter,.light .mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text:first-letter,.light.mat-mdc-autocomplete-panel .mat-mdc-optgroup .mdc-list-item__primary-text:first-letter{text-transform:uppercase!important}*[theme=dark] .mat-mdc-autocomplete-panel .cdk-virtual-scroll-content-wrapper .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),*[theme=dark].mat-mdc-autocomplete-panel .cdk-virtual-scroll-content-wrapper .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),*[theme=light] .mat-mdc-autocomplete-panel .cdk-virtual-scroll-content-wrapper .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),*[theme=light].mat-mdc-autocomplete-panel .cdk-virtual-scroll-content-wrapper .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),.dark .mat-mdc-autocomplete-panel .cdk-virtual-scroll-content-wrapper .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),.dark.mat-mdc-autocomplete-panel .cdk-virtual-scroll-content-wrapper .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),.light .mat-mdc-autocomplete-panel .cdk-virtual-scroll-content-wrapper .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),.light.mat-mdc-autocomplete-panel .cdk-virtual-scroll-content-wrapper .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option){background:transparent!important}*[theme=dark] .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),*[theme=dark].mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),*[theme=light] .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),*[theme=light].mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),.dark .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),.dark.mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),.light .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option),.light.mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled):not(.selected-option){background:transparent!important}*[theme=dark] .ui-dropdown-list .mat-mdc-option .mat-mdc-focus-indicator,*[theme=dark].ui-dropdown-list .mat-mdc-option .mat-mdc-focus-indicator,*[theme=light] .ui-dropdown-list .mat-mdc-option .mat-mdc-focus-indicator,*[theme=light].ui-dropdown-list .mat-mdc-option .mat-mdc-focus-indicator,.dark .ui-dropdown-list .mat-mdc-option .mat-mdc-focus-indicator,.dark.ui-dropdown-list .mat-mdc-option .mat-mdc-focus-indicator,.light .ui-dropdown-list .mat-mdc-option .mat-mdc-focus-indicator,.light.ui-dropdown-list .mat-mdc-option .mat-mdc-focus-indicator{display:none}*[theme=dark] .ui-dropdown-list .mat-mdc-option,*[theme=dark] .ui-dropdown-list .mat-option-section .section-title,*[theme=dark].ui-dropdown-list .mat-mdc-option,*[theme=dark].ui-dropdown-list .mat-option-section .section-title,*[theme=light] .ui-dropdown-list .mat-mdc-option,*[theme=light] .ui-dropdown-list .mat-option-section .section-title,*[theme=light].ui-dropdown-list .mat-mdc-option,*[theme=light].ui-dropdown-list .mat-option-section .section-title,.dark .ui-dropdown-list .mat-mdc-option,.dark .ui-dropdown-list .mat-option-section .section-title,.dark.ui-dropdown-list .mat-mdc-option,.dark.ui-dropdown-list .mat-option-section .section-title,.light .ui-dropdown-list .mat-mdc-option,.light .ui-dropdown-list .mat-option-section .section-title,.light.ui-dropdown-list .mat-mdc-option,.light.ui-dropdown-list .mat-option-section .section-title{color:#242424!important}*[theme=dark] .ui-dropdown-list .mat-mdc-option-multiple .mat-pseudo-checkbox,*[theme=dark].ui-dropdown-list .mat-mdc-option-multiple .mat-pseudo-checkbox,*[theme=light] .ui-dropdown-list .mat-mdc-option-multiple .mat-pseudo-checkbox,*[theme=light].ui-dropdown-list .mat-mdc-option-multiple .mat-pseudo-checkbox,.dark .ui-dropdown-list .mat-mdc-option-multiple .mat-pseudo-checkbox,.dark.ui-dropdown-list .mat-mdc-option-multiple .mat-pseudo-checkbox,.light .ui-dropdown-list .mat-mdc-option-multiple .mat-pseudo-checkbox,.light.ui-dropdown-list .mat-mdc-option-multiple .mat-pseudo-checkbox{border-radius:4px;border-width:1px;border-color:#242424}*[theme=dark] .ui-dropdown-list .mat-mdc-option .mat-pseudo-checkbox-minimal,*[theme=dark].ui-dropdown-list .mat-mdc-option .mat-pseudo-checkbox-minimal,*[theme=light] .ui-dropdown-list .mat-mdc-option .mat-pseudo-checkbox-minimal,*[theme=light].ui-dropdown-list .mat-mdc-option .mat-pseudo-checkbox-minimal,.dark .ui-dropdown-list .mat-mdc-option .mat-pseudo-checkbox-minimal,.dark.ui-dropdown-list .mat-mdc-option .mat-pseudo-checkbox-minimal,.light .ui-dropdown-list .mat-mdc-option .mat-pseudo-checkbox-minimal,.light.ui-dropdown-list .mat-mdc-option .mat-pseudo-checkbox-minimal{transform:scale(.9)}*[theme=dark] .ui-dropdown-list.mat-warn mat-option:hover,*[theme=dark] .ui-dropdown-list.mat-accent mat-option:hover,*[theme=dark] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple:hover,*[theme=dark].ui-dropdown-list.mat-warn mat-option:hover,*[theme=dark].ui-dropdown-list.mat-accent mat-option:hover,*[theme=dark].ui-dropdown-list.mat-accent .mat-mdc-option-multiple:hover,*[theme=light] .ui-dropdown-list.mat-warn mat-option:hover,*[theme=light] .ui-dropdown-list.mat-accent mat-option:hover,*[theme=light] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple:hover,*[theme=light].ui-dropdown-list.mat-warn mat-option:hover,*[theme=light].ui-dropdown-list.mat-accent mat-option:hover,*[theme=light].ui-dropdown-list.mat-accent .mat-mdc-option-multiple:hover,.dark .ui-dropdown-list.mat-warn mat-option:hover,.dark .ui-dropdown-list.mat-accent mat-option:hover,.dark .ui-dropdown-list.mat-accent .mat-mdc-option-multiple:hover,.dark.ui-dropdown-list.mat-warn mat-option:hover,.dark.ui-dropdown-list.mat-accent mat-option:hover,.dark.ui-dropdown-list.mat-accent .mat-mdc-option-multiple:hover,.light .ui-dropdown-list.mat-warn mat-option:hover,.light .ui-dropdown-list.mat-accent mat-option:hover,.light .ui-dropdown-list.mat-accent .mat-mdc-option-multiple:hover,.light.ui-dropdown-list.mat-warn mat-option:hover,.light.ui-dropdown-list.mat-accent mat-option:hover,.light.ui-dropdown-list.mat-accent .mat-mdc-option-multiple:hover{background:var(--dropdown-color-option-hover)!important}*[theme=dark] .ui-dropdown-list.mat-warn mat-option:active,*[theme=dark] .ui-dropdown-list.mat-accent mat-option:active,*[theme=dark] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple:active,*[theme=dark].ui-dropdown-list.mat-warn mat-option:active,*[theme=dark].ui-dropdown-list.mat-accent mat-option:active,*[theme=dark].ui-dropdown-list.mat-accent .mat-mdc-option-multiple:active,*[theme=light] .ui-dropdown-list.mat-warn mat-option:active,*[theme=light] .ui-dropdown-list.mat-accent mat-option:active,*[theme=light] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple:active,*[theme=light].ui-dropdown-list.mat-warn mat-option:active,*[theme=light].ui-dropdown-list.mat-accent mat-option:active,*[theme=light].ui-dropdown-list.mat-accent .mat-mdc-option-multiple:active,.dark .ui-dropdown-list.mat-warn mat-option:active,.dark .ui-dropdown-list.mat-accent mat-option:active,.dark .ui-dropdown-list.mat-accent .mat-mdc-option-multiple:active,.dark.ui-dropdown-list.mat-warn mat-option:active,.dark.ui-dropdown-list.mat-accent mat-option:active,.dark.ui-dropdown-list.mat-accent .mat-mdc-option-multiple:active,.light .ui-dropdown-list.mat-warn mat-option:active,.light .ui-dropdown-list.mat-accent mat-option:active,.light .ui-dropdown-list.mat-accent .mat-mdc-option-multiple:active,.light.ui-dropdown-list.mat-warn mat-option:active,.light.ui-dropdown-list.mat-accent mat-option:active,.light.ui-dropdown-list.mat-accent .mat-mdc-option-multiple:active{background:var(--dropdown-color-option-active)!important}*[theme=dark] .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active,*[theme=dark] .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected,*[theme=dark] .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active,*[theme=dark] .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected,*[theme=dark] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active,*[theme=dark] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected,*[theme=dark].ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active,*[theme=dark].ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected,*[theme=dark].ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active,*[theme=dark].ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected,*[theme=dark].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active,*[theme=dark].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected,*[theme=light] .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active,*[theme=light] .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected,*[theme=light] .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active,*[theme=light] .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected,*[theme=light] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active,*[theme=light] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected,*[theme=light].ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active,*[theme=light].ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected,*[theme=light].ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active,*[theme=light].ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected,*[theme=light].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active,*[theme=light].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected,.dark .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active,.dark .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected,.dark .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active,.dark .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected,.dark .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active,.dark .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected,.dark.ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active,.dark.ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected,.dark.ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active,.dark.ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected,.dark.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active,.dark.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected,.light .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active,.light .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected,.light .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active,.light .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected,.light .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active,.light .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected,.light.ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active,.light.ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected,.light.ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active,.light.ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected,.light.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active,.light.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected{background-color:#f4f4f4!important}*[theme=dark] .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mdc-list-item__primary-text,*[theme=dark] .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,*[theme=dark] .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mdc-list-item__primary-text,*[theme=dark] .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,*[theme=dark] .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mdc-list-item__primary-text,*[theme=dark] .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,*[theme=dark] .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mdc-list-item__primary-text,*[theme=dark] .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,*[theme=dark] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mdc-list-item__primary-text,*[theme=dark] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,*[theme=dark] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mdc-list-item__primary-text,*[theme=dark] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,*[theme=dark].ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mdc-list-item__primary-text,*[theme=dark].ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,*[theme=dark].ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mdc-list-item__primary-text,*[theme=dark].ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,*[theme=dark].ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mdc-list-item__primary-text,*[theme=dark].ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,*[theme=dark].ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mdc-list-item__primary-text,*[theme=dark].ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,*[theme=dark].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mdc-list-item__primary-text,*[theme=dark].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,*[theme=dark].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mdc-list-item__primary-text,*[theme=dark].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,*[theme=light] .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mdc-list-item__primary-text,*[theme=light] .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,*[theme=light] .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mdc-list-item__primary-text,*[theme=light] .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,*[theme=light] .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mdc-list-item__primary-text,*[theme=light] .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,*[theme=light] .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mdc-list-item__primary-text,*[theme=light] .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,*[theme=light] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mdc-list-item__primary-text,*[theme=light] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,*[theme=light] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mdc-list-item__primary-text,*[theme=light] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,*[theme=light].ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mdc-list-item__primary-text,*[theme=light].ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,*[theme=light].ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mdc-list-item__primary-text,*[theme=light].ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,*[theme=light].ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mdc-list-item__primary-text,*[theme=light].ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,*[theme=light].ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mdc-list-item__primary-text,*[theme=light].ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,*[theme=light].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mdc-list-item__primary-text,*[theme=light].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,*[theme=light].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mdc-list-item__primary-text,*[theme=light].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,.dark .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mdc-list-item__primary-text,.dark .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,.dark .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mdc-list-item__primary-text,.dark .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,.dark .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mdc-list-item__primary-text,.dark .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,.dark .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mdc-list-item__primary-text,.dark .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,.dark .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mdc-list-item__primary-text,.dark .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,.dark .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mdc-list-item__primary-text,.dark .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,.dark.ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mdc-list-item__primary-text,.dark.ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,.dark.ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mdc-list-item__primary-text,.dark.ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,.dark.ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mdc-list-item__primary-text,.dark.ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,.dark.ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mdc-list-item__primary-text,.dark.ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,.dark.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mdc-list-item__primary-text,.dark.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,.dark.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mdc-list-item__primary-text,.dark.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,.light .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mdc-list-item__primary-text,.light .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,.light .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mdc-list-item__primary-text,.light .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,.light .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mdc-list-item__primary-text,.light .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,.light .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mdc-list-item__primary-text,.light .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,.light .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mdc-list-item__primary-text,.light .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,.light .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mdc-list-item__primary-text,.light .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,.light.ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mdc-list-item__primary-text,.light.ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,.light.ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mdc-list-item__primary-text,.light.ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,.light.ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mdc-list-item__primary-text,.light.ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,.light.ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mdc-list-item__primary-text,.light.ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected .mat-pseudo-checkbox-checked:after,.light.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mdc-list-item__primary-text,.light.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active .mat-pseudo-checkbox-checked:after,.light.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mdc-list-item__primary-text,.light.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-checked:after{color:#242424!important}*[theme=dark] .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),*[theme=dark] .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),*[theme=dark] .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),*[theme=dark] .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),*[theme=dark] .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),*[theme=dark] .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),*[theme=dark] .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),*[theme=dark] .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),*[theme=dark] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),*[theme=dark] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),*[theme=dark] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),*[theme=dark] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),*[theme=dark].ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),*[theme=dark].ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),*[theme=dark].ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),*[theme=dark].ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),*[theme=dark].ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),*[theme=dark].ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),*[theme=dark].ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),*[theme=dark].ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),*[theme=dark].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),*[theme=dark].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),*[theme=dark].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),*[theme=dark].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),*[theme=light] .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),*[theme=light] .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),*[theme=light] .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),*[theme=light] .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),*[theme=light] .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),*[theme=light] .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),*[theme=light] .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),*[theme=light] .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),*[theme=light] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),*[theme=light] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),*[theme=light] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),*[theme=light] .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),*[theme=light].ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),*[theme=light].ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),*[theme=light].ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),*[theme=light].ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),*[theme=light].ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),*[theme=light].ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),*[theme=light].ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),*[theme=light].ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),*[theme=light].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),*[theme=light].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),*[theme=light].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),*[theme=light].ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.dark .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.dark .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.dark .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.dark .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.dark .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.dark .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.dark .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.dark .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.dark .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.dark .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.dark .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.dark .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.dark.ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.dark.ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.dark.ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.dark.ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.dark.ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.dark.ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.dark.ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.dark.ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.dark.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.dark.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.dark.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.dark.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.light .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.light .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.light .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.light .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.light .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.light .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.light .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.light .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.light .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.light .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.light .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.light .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.light.ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.light.ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.light.ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.light.ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.light.ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.light.ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.light.ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.light.ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.light.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.light.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.light.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.light.ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:focus:not(.mdc-list-item--disabled){background-color:#f4f4f4}*[theme=dark] .ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full,*[theme=dark].ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full,*[theme=light] .ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full,*[theme=light].ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full,.dark .ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full,.dark.ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full,.light .ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full,.light.ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full{background:#d410aa;border-color:#d410aa}*[theme=dark] .ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full:after,*[theme=dark].ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full:after,*[theme=light] .ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full:after,*[theme=light].ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full:after,.dark .ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full:after,.dark.ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full:after,.light .ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full:after,.light.ui-dropdown-list .mat-mdc-option-multiple.mdc-list-item--selected .mat-pseudo-checkbox-full:after{border-color:#fff}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined,.dark .mat-mdc-form-field.mat-form-field-appearance-outline,.dark .mat-mdc-form-field.mat-text-field-outlined,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined,.light .mat-mdc-form-field.mat-form-field-appearance-outline,.light .mat-mdc-form-field.mat-text-field-outlined,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined{--mdc-outlined-text-field-caret-color: #242424 !important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mdc-text-field__input::placeholder,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mdc-text-field__input::placeholder,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mdc-text-field__input::placeholder,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mdc-text-field__input::placeholder,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mdc-text-field__input::placeholder,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mdc-text-field__input::placeholder,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mdc-text-field__input::placeholder,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mdc-text-field__input::placeholder,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mdc-text-field__input::placeholder,.dark .mat-mdc-form-field.mat-text-field-outlined .mdc-text-field__input::placeholder,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mdc-text-field__input::placeholder,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mdc-text-field__input::placeholder,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mdc-text-field__input::placeholder,.light .mat-mdc-form-field.mat-text-field-outlined .mdc-text-field__input::placeholder,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mdc-text-field__input::placeholder,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mdc-text-field__input::placeholder{color:#666}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error svg,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error svg,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-hint.error svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-hint.error svg{color:#e02800;row-gap:0}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper{padding:0!important;min-height:24px}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:after,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:before,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:after,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:before,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:after,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:before,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:after,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:before,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:after,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:before,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:after,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:before,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:after,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:before,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:after,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:before,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:after,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:before,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:after,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:before,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:after,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:before,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:after,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:before,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:after,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:before,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:after,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:before,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:after,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-form-field-subscript-wrapper:before,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:after,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-form-field-subscript-wrapper:before{display:none}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline input,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-text-field__input,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined input,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-text-field__input,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline input,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-text-field__input,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined input,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-text-field__input,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline input,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-text-field__input,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined input,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-text-field__input,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline input,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-text-field__input,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined input,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-text-field__input,.dark .mat-mdc-form-field.mat-form-field-appearance-outline input,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-text-field__input,.dark .mat-mdc-form-field.mat-text-field-outlined input,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-text-field__input,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline input,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-text-field__input,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined input,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-text-field__input,.light .mat-mdc-form-field.mat-form-field-appearance-outline input,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-text-field__input,.light .mat-mdc-form-field.mat-text-field-outlined input,.light .mat-mdc-form-field.mat-text-field-outlined .mat-text-field__input,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline input,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-text-field__input,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined input,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-text-field__input{caret-color:#242424}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-focused ui-icon:not(.clear) svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-focused ui-icon:not(.clear) svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-focused ui-icon:not(.clear) svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-focused ui-icon:not(.clear) svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-focused ui-icon:not(.clear) svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-focused ui-icon:not(.clear) svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-focused ui-icon:not(.clear) svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-focused ui-icon:not(.clear) svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-focused ui-icon:not(.clear) svg,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-focused ui-icon:not(.clear) svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-focused ui-icon:not(.clear) svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-focused ui-icon:not(.clear) svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-focused ui-icon:not(.clear) svg,.light .mat-mdc-form-field.mat-text-field-outlined.mat-focused ui-icon:not(.clear) svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-focused ui-icon:not(.clear) svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-focused ui-icon:not(.clear) svg{color:#242424}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper{background:#fff;border-radius:10px;height:48px}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover ui-icon svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover ui-icon svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover ui-icon svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover ui-icon svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover ui-icon svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover ui-icon svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover ui-icon svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover ui-icon svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover ui-icon svg,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover ui-icon svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover ui-icon svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover ui-icon svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover ui-icon svg,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover ui-icon svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover ui-icon svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover ui-icon svg{color:#242424!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon svg,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon svg,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon svg{color:#919191!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper ui-icon:focus-visible svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper ui-icon:focus-visible svg{color:#242424!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag ui-icon svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag ui-icon svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag ui-icon svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag ui-icon svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag ui-icon svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag ui-icon svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag ui-icon svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag ui-icon svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag ui-icon svg,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag ui-icon svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag ui-icon svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag ui-icon svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag ui-icon svg,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag ui-icon svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag ui-icon svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag ui-icon svg{color:#242424!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .value-tag:hover ui-icon svg{color:#fff!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label{color:#666!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled *,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled *{border-color:#d3d3d3!important;color:#d3d3d3!important;pointer-events:none!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--disabled .mdc-notched-outline__notch label{color:#e9e9e9!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above{color:#242424!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__leading{border-top-left-radius:10px;border-bottom-left-radius:10px}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing{border-top-right-radius:10px;border-bottom-right-radius:10px}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg{color:#242424!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .password .icon-only-wrapper svg{color:#242424!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above),.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label:not(.mdc-floating-label--float-above){top:21px!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg{color:#242424!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing{border-color:#242424!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above{color:#242424!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-required-marker:after,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-required-marker:after,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-required-marker:after,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-required-marker:after,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-required-marker:after,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-required-marker:after,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-required-marker:after,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-required-marker:after,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-required-marker:after,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-required-marker:after,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-required-marker:after,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-required-marker:after,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-required-marker:after,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-required-marker:after,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-required-marker:after,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-required-marker:after{color:#e02800}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn mat-label,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn mat-label,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn mat-label,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn mat-label,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn mat-label,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn mat-label,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn mat-label,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn mat-label,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn mat-label,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn mat-label,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn mat-label,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn mat-label,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn mat-label,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn mat-label,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn mat-label,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn mat-label{color:#e02800!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error a,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error a,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error a,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error a,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error a,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error a,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error a,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error a,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error a,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error a,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error a,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error a,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error a,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error a,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error a,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error a{color:#e02800!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error svg,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error svg,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-hint.error svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-hint.error svg{color:#e02800!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above{color:#e02800!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__leading,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__notch,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper .mdc-notched-outline__trailing{border-color:#e02800!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-prefix svg,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-icon-prefix svg{color:#e02800!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__leading,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__notch,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mdc-notched-outline__trailing,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__leading,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__notch,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mdc-notched-outline__trailing{border-color:#e02800!important}*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=dark] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,*[theme=light] .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.dark .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .autocomplete-wrapper .mat-mdc-form-field.mat-form-field-appearance-outline.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above,.light .autocomplete-wrapper .mat-mdc-form-field.mat-text-field-outlined.mat-warn .mat-mdc-text-field-wrapper.mdc-text-field--focused .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above{color:#e02800!important}*[theme=dark] .ui-dropdown-list.mat-accent,.dark .ui-dropdown-list.mat-accent{background-color:#666}*[theme=dark] .ui-dropdown-list.mat-accent mat-option,.dark .ui-dropdown-list.mat-accent mat-option{background-color:#666!important}*[theme=dark] .ui-dropdown-list.mat-accent mat-option:hover,*[theme=dark] .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active,.dark .ui-dropdown-list.mat-accent mat-option:hover,.dark .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active{background-color:#919191!important}*[theme=dark] .ui-dropdown-list.mat-accent mat-option .mdc-list-item__primary-text,*[theme=dark] .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mdc-list-item__primary-text,.dark .ui-dropdown-list.mat-accent mat-option .mdc-list-item__primary-text,.dark .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active .mdc-list-item__primary-text{color:#fff!important}*[theme=dark] .mat-mdc-select-placeholder,.dark .mat-mdc-select-placeholder{color:#919191}*[theme=dark] .ui-dropdown .mat-mdc-select,.dark .ui-dropdown .mat-mdc-select{color:#fff}.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list{border-radius:10px!important;box-shadow:0 4px 16px #24242414}.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent mat-option:hover:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent mat-option:focus:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent .mat-mdc-option-multiple:hover:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent .mat-mdc-option-multiple:focus:not(.mdc-list-item--disabled){background-color:#e0e0e0}.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active,.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected,.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active,.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected{background-color:#e9f0f1;color:#000}.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-accent .mat-mdc-option-multiple.mdc-list-item--selected:focus:not(.mdc-list-item--disabled){background-color:#c8d7de}.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn mat-option:hover:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn mat-option:focus:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn .mat-mdc-option-multiple:hover:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn .mat-mdc-option-multiple:focus:not(.mdc-list-item--disabled){background-color:#e0e0e0}.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active,.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected,.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn .mat-mdc-option-multiple.mat-mdc-option-active,.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn .mat-mdc-option-multiple.mdc-list-item--selected{background-color:#f0dad9;color:#000}.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn mat-option.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn mat-option.mdc-list-item--selected:focus:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn .mat-mdc-option-multiple.mat-mdc-option-active:hover:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn .mat-mdc-option-multiple.mat-mdc-option-active:focus:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn .mat-mdc-option-multiple.mdc-list-item--selected:hover:not(.mdc-list-item--disabled),.cdk-overlay-container .cdk-overlay-pane .ui-dropdown-list.mat-warn .mat-mdc-option-multiple.mdc-list-item--selected:focus:not(.mdc-list-item--disabled){background-color:#e3c3c6}.ui-field[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label,.ui-field[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label{color:#666!important}.ui-field[theme=light] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label:active,.ui-field[theme=dark] .mat-mdc-form-field.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper .mdc-notched-outline__notch label:active{color:#242424!important}.mat-mdc-form-field .mat-mdc-form-field-hint-wrapper{padding:0}.mat-mdc-form-field .mat-mdc-form-field-hint-wrapper .errors{padding-top:4px;padding-bottom:10px}.mat-mdc-form-field .mat-mdc-form-field-hint-wrapper span,.mat-mdc-form-field .mat-mdc-form-field-hint-wrapper .mat-mdc-form-field-hint-spacer{line-height:16px}.mat-mdc-form-field .mat-mdc-form-field-hint:before{height:0!important}.mat-mdc-form-field .mat-mdc-form-field-hint.error{display:flex;flex-flow:column;row-gap:4px}.mat-mdc-form-field .mat-mdc-form-field-hint.error .errors{align-items:center;display:flex}.mat-mdc-form-field .mat-mdc-form-field-hint.error .errors ui-icon{margin-right:4px}.custom-errors{align-items:center;display:flex;color:#e02800!important;padding:4px 0 10px;font-size:12px;line-height:16px;position:relative}.custom-errors ui-icon{margin-right:4px}.custom-errors svg{color:#e02800!important}.light.mat-mdc-autocomplete-panel .mat-mdc-option:hover:not(.mdc-list-item--disabled),.light.mat-mdc-autocomplete-panel .mat-mdc-option:focus:not(.mdc-list-item--disabled),.light.mat-mdc-autocomplete-panel .mat-mdc-option.mat-mdc-option-active,.light.mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.dark.mat-mdc-autocomplete-panel .mat-mdc-option:hover:not(.mdc-list-item--disabled){background:var(--ui-autocomplete-option-color)!important}:root{--color-primary-10: #FFF2FC;--color-primary-20: #FFE6FA;--color-primary-30: #FFB3EE;--color-primary-40: #FF54DA;--color-primary-50: #D410AA;--color-primary-60: #A90686;--color-accent-10: #FFFAF6;--color-accent-20: #FFF5ED;--color-black: #242424;--color-black-opa-70: rgba(36, 36, 36, .7);--color-white: #FFFFFF;--color-grey-10: #F4F4F4;--color-grey-20: #E9E9E9;--color-grey-30: #D3D3D3;--color-grey-40: #919191;--color-grey-50: #666666;--color-info-10: #D9E8FF;--color-info-20: #99C1FE;--color-info-30: #277CFD;--color-info-40: #0165FC;--color-info-50: #1447AA;--color-success-10: #F5FAE3;--color-success-20: #E2F4B3;--color-success-30: #C6E866;--color-success-40: #A0D90D;--color-success-50: #88B901;--color-error-10: #FFEAE6;--color-error-20: #FFAC9A;--color-error-30: #FF6E4F;--color-error-40: #FF3003;--color-error-50: #E02800;--color-warning-10: #FFF5E6;--color-warning-20: #FFE1B3;--color-warning-30: #FFC268;--color-warning-40: #FF9A03;--color-warning-50: #D07D00}:root{--font-family-main: \"Modern Gothic\", sans-serif;--font-h1: 900 40px/52px var(--font-family-main);--font-h2: 900 24px/30px var(--font-family-main);--font-h3: 700 20px/26px var(--font-family-main);--font-h4: 700 16px/20px var(--font-family-main);--font-h5: 700 14px/18px var(--font-family-main);--font-body-large: 400 16px/24px var(--font-family-main);--font-body-default: 400 14px/22px var(--font-family-main);--font-body-small: 400 12px/16px var(--font-family-main);--font-hyperlink-large: 500 16px/24px var(--font-family-main);--font-hyperlink-default: 500 14px/22px var(--font-family-main);--font-hyperlink-small: 500 12px/16px var(--font-family-main);--font-button-label: 500 14px/1.4 var(--font-family-main);--font-label: 400 14px/1.4 var(--font-family-main)}:root{--border-radius-none: 0px;--border-radius-small: 4px;--border-radius-small-top: var(--border-radius-small) var(--border-radius-small) 0 0;--border-radius-small-bottom: 0 0 var(--border-radius-small) var(--border-radius-small);--border-radius-default: 10px;--border-radius-default-top: var(--border-radius-default) var(--border-radius-default) 0 0;--border-radius-default-bottom: 0 0 var(--border-radius-default) var(--border-radius-default);--border-radius-large: 36px;--border-radius-round: 50%;--color-grey-border: #DDDDDD;--color-grey-border-hover: #F6F6F6}:root{--box-shadow-hover: 0px 4px 16px 0px rgba(36,36,36,.08);--box-shadow-card: 0px 4px 100px 0px rgba(36,36,36,.04);--box-shadow-notification: 0px 4px 16px 0px rgba(36,36,36,.04)}:root{--viewport-width: 1312px}lib-coding-test .theme-default{--page-bg: var(--color-accent-10);--bg-mat-card: #ffffff;--icon-bg-color: #323232;--icon-bg-hover-color: #f6f6f6;--icon-secondary-bg-color: #000000;--petrol-text-color: #276678;--status-bg-color: #f6f6f6;--button-bg-color: #ededed;--info-panel-color: #c8d7de;--code-editor-background: #fffffe;--select-chosen-text-color: #888888;--select-chosen-bg-color: #e9f0f1;--select-hovered-bg-color: rgba(0, 0, 0, .04);--select-options-text-color: #000000;--select-bg-color: #ffffff;--select-bg-color-light: #ffffff;--select-border-color: #eeeeee;--select-border-color-light: rgba(0, 0, 0, .12);--select-shadow-color: #cccccc;--select-arrow-color: rgba(0, 0, 0, .54);--drawer-bg-color: #ffffff;--toggle-thumb-bg-color: #ffffff;--toggle-body-bg-color: #ededed;--main-text-color: rgba(0, 0, 0, .87);--secondary-text-color: #000000;--status-empty-color: #888888;--border-bg-color: #e0e0e0;--teal-disabled-color: #B5DDD5}lib-coding-test .theme-dark{--page-bg: #181818;--bg-mat-card: #2d2d2d;--icon-bg-color: #f6f6f6;--icon-bg-hover-color: #1e1e1e;--icon-secondary-bg-color: #f6f6f6;--petrol-text-color: #6894A0;--status-bg-color: #3c3c3c;--button-bg-color: #2d2d2d;--info-panel-color: #c8d7de;--code-editor-background: #1e1e1e;--select-chosen-text-color: #f6f6f6;--select-chosen-bg-color: #2d2d2d;--select-hovered-bg-color: rgba(45, 45, 45, .5);--select-options-text-color: #f6f6f6;--select-bg-color: #000000;--select-bg-color-light: #2D2D2D;--select-border-color: #2d2d2d;--select-border-color-light: #888888;--select-shadow-color: #2d2d2d;--select-arrow-color: #ffffff;--drawer-bg-color: #181818;--toggle-thumb-bg-color: #000000;--toggle-body-bg-color: #888888;--main-text-color: #ffffff;--secondary-text-color: #ffffff;--status-empty-color: #E0E0E0;--border-bg-color: #888888;--teal-disabled-color: #888888;--mdc-plain-tooltip-supporting-text-color: #000000}lib-coding-test .theme-dark.coding-question-fullscreen{--bg-mat-card: #181818}lib-coding-test .themed-button button:not(.tertiary) mat-icon svg{color:var(--icon-bg-color);fill:var(--icon-bg-color)}lib-coding-test .themed-button button.tertiary mat-icon svg{color:var(--company-color, #46A997);fill:var(--company-color, #46A997)}lib-coding-test .themed-button .button-wrapper .icon-button:hover,lib-coding-test .themed-button .button-wrapper .mdc-button:hover{background-color:var(--icon-bg-hover-color)!important}lib-coding-test mat-icon.size-24{min-width:24px;min-height:24px;width:24px;height:24px}lib-coding-test mat-icon.size-16{min-width:16px;min-height:16px;width:16px;height:16px}lib-coding-test ui-toggle.config-toggle mat-icon{width:auto;height:auto}.coding-question{background-color:var(--page-bg);color:var(--main-text-color)}\n"] }]
219
+ }], propDecorators: { initCode: [{
220
+ type: Input
221
+ }], snapshot: [{
222
+ type: Input
223
+ }], functionParams: [{
224
+ type: Input
225
+ }], functionName: [{
226
+ type: Input
227
+ }], returnType: [{
228
+ type: Input
229
+ }], isLAT: [{
230
+ type: Input
231
+ }], isSQL: [{
232
+ type: Input
233
+ }], shouldGenerateInitCode: [{
234
+ type: Input
235
+ }], canAddCustomTestCases: [{
236
+ type: Input
237
+ }], selectedProgrammingLanguage: [{
238
+ type: Input
239
+ }], languages: [{
240
+ type: Input
241
+ }], isReadonly: [{
242
+ type: Input
243
+ }], autoHeight: [{
244
+ type: Input
245
+ }], translations: [{
246
+ type: Input
247
+ }], questionText: [{
248
+ type: Input
249
+ }], mode: [{
250
+ type: Input
251
+ }], assessmentId: [{
252
+ type: Input
253
+ }], companyColor: [{
254
+ type: Input
255
+ }], testCasesStatus: [{
256
+ type: Input
257
+ }], loading: [{
258
+ type: Input
259
+ }], runTestResponse: [{
260
+ type: Input
261
+ }], viewMode: [{
262
+ type: Input
263
+ }], exampleTestCases: [{
264
+ type: Input
265
+ }], hideTestCases: [{
266
+ type: Input
267
+ }], applicationTheme: [{
268
+ type: Input
269
+ }], questionId: [{
270
+ type: Input
271
+ }], pasteEvent: [{
272
+ type: Output
273
+ }], codeChange: [{
274
+ type: Output
275
+ }], runTestClick: [{
276
+ type: Output
277
+ }], languageChange: [{
278
+ type: Output
279
+ }] } });
280
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGdvLWNvZGluZy10ZXN0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL3Rnby1jb2RpbmctdGVzdC9zcmMvbGliL2NvbXBvbmVudHMvdGdvLWNvZGluZy10ZXN0L3Rnby1jb2RpbmctdGVzdC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy90Z28tY29kaW5nLXRlc3Qvc3JjL2xpYi9jb21wb25lbnRzL3Rnby1jb2RpbmctdGVzdC90Z28tY29kaW5nLXRlc3QuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFDTCx1QkFBdUIsRUFDdkIsU0FBUyxFQUNULFlBQVksRUFDWixNQUFNLEVBQ04sS0FBSyxFQUdMLE1BQU0sRUFFTixpQkFBaUIsR0FDbEIsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxZQUFZLEVBQUUsY0FBYyxFQUFFLE1BQU0sdUJBQXVCLENBQUM7QUFDckUsT0FBTyxFQUFFLElBQUksRUFBRSxNQUFNLE1BQU0sQ0FBQztBQVU1QixPQUFPLEVBQUUsbUJBQW1CLEVBQTZCLE1BQU0sNEJBQTRCLENBQUM7QUFHNUYsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ2xELE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLHVDQUF1QyxDQUFDO0FBQzlFLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLHdDQUF3QyxDQUFDO0FBQzlFLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBQ3RFLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLG1DQUFtQyxDQUFDO0FBQ3JFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSw4QkFBOEIsQ0FBQztBQUM1RCxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sNkJBQTZCLENBQUM7QUFDdkQsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sc0NBQXNDLENBQUM7QUFDM0UsT0FBTyxFQUFFLHVCQUF1QixFQUFFLE1BQU0sOENBQThDLENBQUM7QUFDdkYsT0FBTyxFQUFFLHVCQUF1QixFQUFFLE1BQU0sOENBQThDLENBQUM7OztBQWlCaEYsSUFBTSxzQkFBc0IsR0FBNUIsTUFBTSxzQkFBc0I7SUFFaEIscUJBQXFCLEdBQUcsTUFBTSxDQUFDLHFCQUFxQixDQUFDLENBQUM7SUFDdEQsb0JBQW9CLEdBQUcsTUFBTSxDQUFDLG9CQUFvQixDQUFDLENBQUM7SUFDcEQsZ0JBQWdCLEdBQUcsTUFBTSxDQUFDLGdCQUFnQixDQUFDLENBQUM7SUFDNUMsb0JBQW9CLEdBQUcsTUFBTSxDQUFDLG9CQUFvQixDQUFDLENBQUM7SUFDcEQsWUFBWSxHQUFHLE1BQU0sQ0FBQyxZQUFZLENBQUMsQ0FBQztJQUU1QyxRQUFRLENBQVM7SUFDakIsUUFBUSxDQUFpQjtJQUN6QixjQUFjLENBQXdCO0lBQ3RDLFlBQVksQ0FBUztJQUNyQixVQUFVLENBQTJCO0lBQ3JDLEtBQUssQ0FBVTtJQUNmLEtBQUssQ0FBVTtJQUNmLHNCQUFzQixHQUFHLElBQUksQ0FBQztJQUM5QixxQkFBcUIsR0FBRyxJQUFJLENBQUM7SUFFN0IsMkJBQTJCLENBQWM7SUFFbEQsSUFDSSxTQUFTLENBQUMsS0FBbUI7UUFDL0IsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLEVBQUUsQ0FBQztZQUNsQixNQUFNLElBQUksS0FBSyxDQUFDLG1DQUFtQyxDQUFDLENBQUM7UUFDdkQsQ0FBQzthQUFNLENBQUM7WUFDTixNQUFNLENBQUMsY0FBYyxDQUFDLElBQUksRUFBRSxXQUFXLEVBQUU7Z0JBQ3ZDLEtBQUs7Z0JBQ0wsUUFBUSxFQUFFLElBQUk7YUFDZixDQUFDLENBQUM7WUFDSCxJQUFJLENBQUMsY0FBYyxFQUFFLENBQUM7UUFDeEIsQ0FBQztJQUNILENBQUM7SUFFUSxVQUFVLENBQVU7SUFDcEIsVUFBVSxDQUFVO0lBQ3BCLFlBQVksQ0FBMEI7SUFDdEMsWUFBWSxDQUFTO0lBQ3JCLElBQUksQ0FBUTtJQUNaLFlBQVksQ0FBUztJQUNyQixZQUFZLENBQVM7SUFDckIsZUFBZSxDQUFNO0lBQ3JCLE9BQU8sQ0FBVTtJQUNqQixlQUFlLEdBQUcsRUFBRSxDQUFDO0lBQ3JCLFFBQVEsQ0FBVztJQUNuQixnQkFBZ0IsQ0FBb0I7SUFDN0MsOEVBQThFO0lBQ3JFLGFBQWEsQ0FBVTtJQUN2QixnQkFBZ0IsR0FBcUIsT0FBTyxDQUFDO0lBQzdDLFVBQVUsQ0FBUztJQUVsQixVQUFVLEdBQUcsSUFBSSxZQUFZLEVBQWEsQ0FBQztJQUMzQyxVQUFVLEdBQUcsSUFBSSxZQUFZLEVBQVUsQ0FBQztJQUN4QyxZQUFZLEdBQUcsSUFBSSxZQUFZLEVBQVcsQ0FBQztJQUMzQyxjQUFjLEdBQUcsSUFBSSxZQUFZLEVBQXVCLENBQUM7SUFFbkUsV0FBVyxHQUFHLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxXQUFXLENBQUM7SUFDckQsaUJBQWlCLEdBQUcsSUFBSSxDQUFDLG9CQUFvQixDQUFDLGFBQWEsQ0FBQztJQUU1RCxjQUFjLENBQVU7SUFDeEIsU0FBUyxHQUFHLFFBQVEsQ0FBQztJQUNyQixrQkFBa0IsQ0FBUztJQUUzQixRQUFRO1FBQ04sSUFBSSxDQUFDLGlCQUFpQixFQUFFLENBQUM7UUFDekIsSUFBSSxDQUFDLGVBQWUsRUFBRSxDQUFDO1FBQ3ZCLElBQUksQ0FBQyxvQkFBb0IsQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1FBRXJELGlFQUFpRTtRQUNqRSxJQUFJLElBQUksQ0FBQyxjQUFjLEVBQUUsQ0FBQztZQUN4Qix1Q0FBdUM7WUFDdkMsSUFBSSxDQUFDLDBCQUEwQixFQUFFLENBQUM7WUFFbEMsTUFBTSxtQkFBbUIsR0FDdkIsSUFBSSxDQUFDLEtBQUssSUFBSSxJQUFJLENBQUMsSUFBSSw4REFBK0I7Z0JBQ3BELENBQUMsQ0FBQyxtQkFBbUI7Z0JBQ3JCLENBQUMsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDO1lBQ3hCLE1BQU0saUJBQWlCLEdBQ3JCLElBQUksQ0FBQyxLQUFLLElBQUksQ0FBQyxJQUFJLENBQUMsSUFBSSxrQ0FBa0IsSUFBSSxJQUFJLENBQUMsSUFBSSw4REFBK0IsQ0FBQztnQkFDckYsQ0FBQyxDQUFDLElBQUk7Z0JBQ04sQ0FBQyxDQUFDLElBQUksQ0FBQyxJQUFJLGtDQUFrQixDQUFDO1lBQ2xDLE1BQU0sc0JBQXNCLEdBQUcsSUFBSSxDQUFDLElBQUksa0NBQWtCLElBQUksSUFBSSxDQUFDLEtBQUssQ0FBQztZQUN6RSxNQUFNLGlCQUFpQixHQUFHLE1BQU0sQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQztnQkFDekQsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDO2dCQUN6QixDQUFDLENBQUMscUJBQXFCLENBQUM7WUFFMUIsSUFBSSxDQUFDLG9CQUFvQixDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUMsUUFBUSxDQUFDLEVBQUU7Z0JBQzVFLElBQUksQ0FBQyxvQkFBb0IsQ0FBQyxrQkFBa0IsQ0FDMUMsUUFBUSxFQUNSLG1CQUFtQixFQUNuQixpQkFBaUIsRUFDakIsaUJBQWlCLEVBQ2pCLHNCQUFzQixFQUN0QixJQUFJLENBQUMsS0FBSyxFQUNWLElBQUksQ0FBQyxJQUFJLENBQ1YsQ0FBQztnQkFDRixJQUFJLHNCQUFzQixFQUFFLENBQUM7b0JBQzNCLElBQUksQ0FBQyxlQUFlLEVBQUUsQ0FBQztnQkFDekIsQ0FBQztnQkFDRCxJQUFJLENBQUMscUJBQXFCLENBQUMseUJBQXlCLENBQUMsS0FBSyxDQUFDLENBQUM7Z0JBQzVELElBQUksQ0FBQyxjQUFjLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDO2dCQUNuQyxJQUFJLENBQUMsb0JBQW9CLENBQUMsZ0JBQWdCLEVBQUUsQ0FBQztZQUMvQyxDQUFDLENBQUMsQ0FBQztZQUVILElBQUksSUFBSSxDQUFDLElBQUksOERBQStCLElBQUksSUFBSSxDQUFDLEtBQUssRUFBRSxDQUFDO2dCQUMzRCxJQUFJLENBQUMsb0JBQW9CLENBQUMsZUFBZSxDQUFDLElBQUksQ0FBQyxjQUFjLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUMsR0FBRyxFQUFFO29CQUNsRixJQUFJLENBQUMsb0JBQW9CLENBQUMsY0FBYyxFQUFFLENBQUM7b0JBQzNDLElBQUksSUFBSSxDQUFDLEtBQUssRUFBRSxDQUFDO3dCQUNmLElBQUksQ0FBQyxvQkFBb0IsQ0FBQyxtQkFBbUIsRUFBRSxDQUFDO29CQUNsRCxDQUFDO2dCQUNILENBQUMsQ0FBQyxDQUFDO2dCQUVILElBQUksSUFBSSxDQUFDLEtBQUssRUFBRSxDQUFDO29CQUNmLElBQUksQ0FBQyxvQkFBb0IsQ0FBQyxjQUFjLENBQUMsSUFBSSxDQUFDLGNBQWMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQyxHQUFHLEVBQUU7d0JBQ2pGLElBQUksQ0FBQyxvQkFBb0IsQ0FBQyxhQUFhLEVBQUUsQ0FBQztvQkFDNUMsQ0FBQyxDQUFDLENBQUM7Z0JBQ0wsQ0FBQztZQUNILENBQUM7UUFDSCxDQUFDO0lBQ0gsQ0FBQztJQUVELFdBQVcsQ0FBQyxPQUFzQjtRQUNoQyxJQUFJLENBQUMsT0FBTyxDQUFDLFFBQVEsRUFBRSxXQUFXLElBQUksT0FBTyxPQUFPLENBQUMsUUFBUSxFQUFFLFlBQVksS0FBSyxRQUFRLEVBQUUsQ0FBQztZQUN6RixJQUFJLENBQUMsb0JBQW9CLENBQUMsZ0JBQWdCLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQyxRQUFRLENBQUMsRUFBRTtnQkFDNUUsSUFBSSxDQUFDLG9CQUFvQixDQUFDLGNBQWMsQ0FBQyxRQUFRLENBQUMsQ0FBQztnQkFDbkQsSUFBSSxDQUFDLG9CQUFvQixDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUM7Z0JBQ3JELElBQUksQ0FBQyxjQUFjLENBQUMsT0FBTyxDQUFDLFFBQVEsQ0FBQyxZQUFZLENBQUMsQ0FBQztZQUNyRCxDQUFDLENBQUMsQ0FBQztRQUNMLENBQUM7UUFDRCxJQUFJLE9BQU8sQ0FBQyxZQUFZLElBQUksT0FBTyxDQUFDLFlBQVksRUFBRSxZQUFZLEVBQUUsQ0FBQztZQUMvRCxJQUFJLENBQUMsWUFBWSxDQUFDLFlBQVksR0FBRyxPQUFPLENBQUMsWUFBWSxDQUFDLFlBQVksQ0FBQztRQUNyRSxDQUFDO0lBQ0gsQ0FBQztJQUVELGNBQWMsQ0FBQyxJQUFZO1FBQ3pCLE1BQU0sU0FBUyxHQUFHLElBQUksQ0FBQyxvQkFBb0IsQ0FBQyxZQUFZLEVBQUUsQ0FBQztRQUMzRCxJQUFJLENBQUMsUUFBUSxHQUFHLFNBQVMsQ0FBQyxDQUFDLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUM7SUFDL0MsQ0FBQztJQUVPLGNBQWM7UUFDcEIsTUFBTSxlQUFlLEdBQUcsSUFBSSxDQUFDLG9CQUFvQixDQUFDLGtCQUFrQixFQUFFLENBQUM7UUFDdkUsSUFBSSxJQUFJLENBQUMsS0FBSyxJQUFJLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxlQUFlLENBQUMsRUFBRSxDQUFDO1lBQzVELElBQUksQ0FBQyxvQkFBb0IsQ0FBQyxxQkFBcUIsQ0FBQyxlQUFlLENBQUMsS0FBSyxDQUFDLENBQUM7WUFDdkUsTUFBTSxXQUFXLEdBQUcsSUFBSSxDQUFDLHNCQUFzQixDQUFDLGVBQWUsQ0FBQyxDQUFDO1lBRWpFLElBQUksV0FBVyxFQUFFLENBQUM7Z0JBQ2hCLElBQUksQ0FBQyxvQkFBb0IsQ0FBQyxVQUFVLENBQUMsV0FBVyxDQUFDLENBQUM7WUFDcEQsQ0FBQztRQUNILENBQUM7YUFBTSxDQUFDO1lBQ04sTUFBTSxRQUFRLEdBQUcsSUFBSSxDQUFDLDJCQUEyQixJQUFJLElBQUksQ0FBQyxTQUFTLENBQUMsQ0FBQyxDQUFDLENBQUM7WUFDdkUsSUFBSSxDQUFDLG9CQUFvQixDQUFDLHFCQUFxQixDQUFDLFFBQVEsQ0FBQyxLQUFLLENBQUMsQ0FBQztZQUNoRSxJQUFJLFFBQVEsQ0FBQyxPQUFPLEVBQUUsQ0FBQztnQkFDckIsSUFBSSxDQUFDLG9CQUFvQixDQUFDLFVBQVUsQ0FBQyxRQUFRLENBQUMsT0FBTyxDQUFDLENBQUM7WUFDekQsQ0FBQztRQUNILENBQUM7SUFDSCxDQUFDO0lBRU8sbUJBQW1CLENBQUMsZUFHM0I7UUFDQyxPQUFPLENBQUMsQ0FBQyxlQUFlLElBQUksSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxFQUFFLEtBQUssRUFBRSxFQUFFLEVBQUUsQ0FBQyxLQUFLLEtBQUssZUFBZSxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQ2xHLENBQUM7SUFFTyxzQkFBc0IsQ0FBQyxRQUc5QjtRQUNDLE1BQU0sWUFBWSxHQUFHLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLENBQUMsRUFBRSxLQUFLLEVBQUUsRUFBRSxFQUFFLENBQUMsS0FBSyxLQUFLLFFBQVEsRUFBRSxLQUFLLENBQUMsQ0FBQztRQUVuRixPQUFPLFlBQVksQ0FBQyxDQUFDLENBQUMsWUFBWSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsUUFBUSxDQUFDLE9BQU8sQ0FBQztJQUNoRSxDQUFDO0lBRU8sZUFBZTtRQUNyQixJQUFJLElBQUksQ0FBQyxLQUFLLElBQUksQ0FBQyxJQUFJLENBQUMsS0FBSyxJQUFJLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxFQUFFLENBQUM7WUFDdEQsTUFBTSxTQUFTLEdBQUcsSUFBSSxDQUFDLG9CQUFvQixDQUFDLGlCQUFpQixFQUFFLENBQUM7WUFDaEUsSUFBSSxTQUFTLEVBQUUsTUFBTSxFQUFFLENBQUM7Z0JBQ3RCLElBQUksQ0FBQyxvQkFBb0IsQ0FBQyxlQUFlLENBQUMsQ0FBQyxHQUFHLFNBQVMsQ0FBQyxDQUFDLENBQUM7Z0JBQzFELElBQUksQ0FBQyxvQkFBb0IsQ0FBQyxlQUFlLENBQUMsQ0FBQyxHQUFHLFNBQVMsQ0FBQyxDQUFDLENBQUM7Z0JBQzFELElBQUksU0FBUyxDQUFDLFNBQVMsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxDQUFDLENBQUMsT0FBTyxFQUFFLENBQUM7b0JBQzVDLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxxQkFBcUIsQ0FBQyxTQUFTLENBQUMsU0FBUyxDQUFDLE1BQU0sR0FBRyxDQUFDLENBQUMsQ0FBQyxPQUFPLENBQUMsQ0FBQztnQkFDdkYsQ0FBQztZQUNILENBQUM7aUJBQU0sQ0FBQztnQkFDTixJQUFJLENBQUMsb0JBQW9CLENBQUMsZUFBZSxDQUFDLEVBQUUsQ0FBQyxDQUFDO2dCQUM5QyxJQUFJLENBQUMsb0JBQW9CLENBQUMsZUFBZSxDQUFDLEVBQUUsQ0FBQyxDQUFDO2dCQUM5QyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsd0JBQXdCLEVBQUUsQ0FBQztZQUNuRCxDQUFDO1FBQ0gsQ0FBQztJQUNILENBQUM7SUFFTyxpQkFBaUI7UUFDdkIsSUFBSSxDQUFDLGNBQWMsR0FBRyxJQUFJLENBQUMsUUFBUSxLQUFLLFFBQVEsQ0FBQyxJQUFJLENBQUM7SUFDeEQsQ0FBQztJQUVPLGVBQWU7UUFDckIsSUFBSSxDQUFDLFlBQVksQ0FBQyxZQUFZO2FBQzNCLElBQUksQ0FBQyxjQUFjLENBQUMsSUFBSSxDQUFDLENBQUM7YUFDMUIsU0FBUyxDQUFDLENBQUMsRUFBRSxZQUFZLEVBQUUsa0JBQWtCLEVBQUUsRUFBRSxFQUFFO1lBQ2xELElBQUksQ0FBQyxZQUFZLEdBQUcsWUFBWSxDQUFDO1lBQ2pDLElBQUksQ0FBQyxrQkFBa0IsR0FBRyxrQkFBa0IsQ0FBQztRQUMvQyxDQUFDLENBQUMsQ0FBQztJQUNQLENBQUM7SUFFRDs7OztPQUlHO0lBQ0ssMEJBQTBCO1FBQ2hDLHNFQUFzRTtRQUN0RSxNQUFNLGNBQWMsR0FBRyxrQ0FBa0MsQ0FBQztRQUMxRCxNQUFNLGVBQWUsR0FBRyxZQUFZLENBQUMsT0FBTyxDQUFDLGNBQWMsQ0FBQyxDQUFDO1FBQzdELE1BQU0sR0FBRyxHQUFHLElBQUksQ0FBQyxHQUFHLEVBQUUsQ0FBQztRQUN2QixNQUFNLGtCQUFrQixHQUFHLEdBQUcsR0FBRyxRQUFRLENBQUMsZUFBZSxFQUFFLEVBQUUsQ0FBQyxHQUFHLFFBQVEsQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUU3RSxpRUFBaUU7UUFDakUsa0RBQWtEO1FBQ2xELElBQUksQ0FBQyxlQUFlLElBQUksa0JBQWtCLEVBQUUsQ0FBQztZQUMzQyw4REFBOEQ7WUFDOUQsSUFBSSxJQUFJLENBQUMsTUFBTSxFQUFFLEdBQUcsR0FBRyxFQUFFLENBQUM7Z0JBQ3hCLCtCQUErQjtnQkFDL0IsSUFBSSxDQUFDLG9CQUFvQixDQUFDLDRCQUE0QixFQUFFLENBQUM7Z0JBQ3pELFlBQVksQ0FBQyxPQUFPLENBQUMsY0FBYyxFQUFFLEdBQUcsQ0FBQyxRQUFRLEVBQUUsQ0FBQyxDQUFDO1lBQ3ZELENBQUM7UUFDSCxDQUFDO0lBQ0gsQ0FBQzt3R0FoT1Usc0JBQXNCOzRGQUF0QixzQkFBc0Isc2dDQ3JEbkMsMjBHQWdHQSwrKzZMRGpESSxZQUFZLDhhQUNaLG1CQUFtQixtUUFDbkIsdUJBQXVCLHViQUN2Qix1QkFBdUI7O0FBR2Qsc0JBQXNCO0lBZmxDLFlBQVksRUFBRTtHQWVGLHNCQUFzQixDQWlPbEM7OzRGQWpPWSxzQkFBc0I7a0JBZGxDLFNBQVM7aUNBQ0ksSUFBSSxZQUNOLDRCQUE0QixtQkFHckIsdUJBQXVCLENBQUMsTUFBTSxpQkFDaEMsaUJBQWlCLENBQUMsSUFBSSxXQUM1Qjt3QkFDUCxZQUFZO3dCQUNaLG1CQUFtQjt3QkFDbkIsdUJBQXVCO3dCQUN2Qix1QkFBdUI7cUJBQ3hCOzhCQVVRLFFBQVE7c0JBQWhCLEtBQUs7Z0JBQ0csUUFBUTtzQkFBaEIsS0FBSztnQkFDRyxjQUFjO3NCQUF0QixLQUFLO2dCQUNHLFlBQVk7c0JBQXBCLEtBQUs7Z0JBQ0csVUFBVTtzQkFBbEIsS0FBSztnQkFDRyxLQUFLO3NCQUFiLEtBQUs7Z0JBQ0csS0FBSztzQkFBYixLQUFLO2dCQUNHLHNCQUFzQjtzQkFBOUIsS0FBSztnQkFDRyxxQkFBcUI7c0JBQTdCLEtBQUs7Z0JBRUcsMkJBQTJCO3NCQUFuQyxLQUFLO2dCQUdGLFNBQVM7c0JBRFosS0FBSztnQkFhRyxVQUFVO3NCQUFsQixLQUFLO2dCQUNHLFVBQVU7c0JBQWxCLEtBQUs7Z0JBQ0csWUFBWTtzQkFBcEIsS0FBSztnQkFDRyxZQUFZO3NCQUFwQixLQUFLO2dCQUNHLElBQUk7c0JBQVosS0FBSztnQkFDRyxZQUFZO3NCQUFwQixLQUFLO2dCQUNHLFlBQVk7c0JBQXBCLEtBQUs7Z0JBQ0csZUFBZTtzQkFBdkIsS0FBSztnQkFDRyxPQUFPO3NCQUFmLEtBQUs7Z0JBQ0csZUFBZTtzQkFBdkIsS0FBSztnQkFDRyxRQUFRO3NCQUFoQixLQUFLO2dCQUNHLGdCQUFnQjtzQkFBeEIsS0FBSztnQkFFRyxhQUFhO3NCQUFyQixLQUFLO2dCQUNHLGdCQUFnQjtzQkFBeEIsS0FBSztnQkFDRyxVQUFVO3NCQUFsQixLQUFLO2dCQUVJLFVBQVU7c0JBQW5CLE1BQU07Z0JBQ0csVUFBVTtzQkFBbkIsTUFBTTtnQkFDRyxZQUFZO3NCQUFyQixNQUFNO2dCQUNHLGNBQWM7c0JBQXZCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcbiAgQ29tcG9uZW50LFxuICBFdmVudEVtaXR0ZXIsXG4gIGluamVjdCxcbiAgSW5wdXQsXG4gIE9uQ2hhbmdlcyxcbiAgT25Jbml0LFxuICBPdXRwdXQsXG4gIFNpbXBsZUNoYW5nZXMsXG4gIFZpZXdFbmNhcHN1bGF0aW9uLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBVbnRpbERlc3Ryb3ksIHVudGlsRGVzdHJveWVkIH0gZnJvbSAnQG5nbmVhdC91bnRpbC1kZXN0cm95JztcbmltcG9ydCB7IHRha2UgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IEFwcGxpY2F0aW9uVGhlbWUgfSBmcm9tICdAdGVzdGdvcmlsbGEvdGdvLXVpJztcblxuaW1wb3J0IHtcbiAgQ29kZUVkaXRvckZ1bmNQYXJhbSxcbiAgQ29kZUVkaXRvckxhbmd1YWdlcyxcbiAgQ29kZUVkaXRvclR5cGVzTWFwLFxufSBmcm9tICcuLi9jb2RlLWVkaXRvci9oZWxwZXJzL2NvZGUtZWRpdG9yLWhlbHBlci5tb2RlbCc7XG5pbXBvcnQgeyBQYXN0ZURhdGEgfSBmcm9tICcuLi9jb2RlLWVkaXRvci9tb2RlbHMvY29kZS1lZGl0b3IubW9kZWwnO1xuaW1wb3J0IHsgQ29kaW5nU25hcHNob3QgfSBmcm9tICcuLi9jb2RlLWVkaXRvci9tb2RlbHMvY29kaW5nLXNuYXBzaG90Lm1vZGVsJztcbmltcG9ydCB7IEFzc2Vzc21lbnRJZFByZXZpZXcsIExBVExhbmd1YWdlLCBMQVRMYW5ndWFnZXMgfSBmcm9tICcuLi8uLi9tb2RlbHMvbGF0LWxhbmd1YWdlcyc7XG5pbXBvcnQgeyBNb2RlcyB9IGZyb20gJy4uLy4uL21vZGVscy9tb2RlJztcbmltcG9ydCB7IEV4YW1wbGVUZXN0Q2FzZSB9IGZyb20gJy4uLy4uL21vZGVscy90ZXN0LWNhc2VzJztcbmltcG9ydCB7IFZpZXdNb2RlIH0gZnJvbSAnLi4vLi4vbW9kZWxzL3ZpZXctbW9kZSc7XG5pbXBvcnQgeyBDb25maWd1cmF0aW9uc1NlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9jb25maWd1cmF0aW9ucy5zZXJ2aWNlJztcbmltcG9ydCB7IExpYkNvZGluZ1Rlc3RTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZXMvbGliLWNvZGluZy10ZXN0LnNlcnZpY2UnO1xuaW1wb3J0IHsgU3RvcmFnZUNvZGluZ1NlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9zdG9yYWdlLnNlcnZpY2UnO1xuaW1wb3J0IHsgVGVzdENhc2VzU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL3Rlc3QtY2FzZXMuc2VydmljZSc7XG5pbXBvcnQgeyBUaGVtZVNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy90aGVtZS5zZXJ2aWNlJztcbmltcG9ydCB7IHRpbWVUb01zIH0gZnJvbSAnLi4vLi4vdXRpbHMvdGltZS10by1tcy51dGlsJztcbmltcG9ydCB7IENvZGVFZGl0b3JDb21wb25lbnQgfSBmcm9tICcuLi9jb2RlLWVkaXRvci9jb2RlLWVkaXRvci5jb21wb25lbnQnO1xuaW1wb3J0IHsgQ29kaW5nUXVlc3Rpb25Db21wb25lbnQgfSBmcm9tICcuLi9jb2RpbmctcXVlc3Rpb24vY29kaW5nLXF1ZXN0aW9uLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBSdW5uYWJsZUVkaXRvckNvbXBvbmVudCB9IGZyb20gJy4uL3J1bm5hYmxlLWVkaXRvci9ydW5uYWJsZS1lZGl0b3IuY29tcG9uZW50JztcblxuQFVudGlsRGVzdHJveSgpXG5AQ29tcG9uZW50KHtcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgc2VsZWN0b3I6ICd0Z28tY29kaW5nLXRlc3RbbGFuZ3VhZ2VzXScsXG4gIHRlbXBsYXRlVXJsOiAnLi90Z28tY29kaW5nLXRlc3QuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybDogJy4vdGdvLWNvZGluZy10ZXN0LmNvbXBvbmVudC5zY3NzJyxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gIGltcG9ydHM6IFtcbiAgICBDb21tb25Nb2R1bGUsXG4gICAgQ29kZUVkaXRvckNvbXBvbmVudCxcbiAgICBDb2RpbmdRdWVzdGlvbkNvbXBvbmVudCxcbiAgICBSdW5uYWJsZUVkaXRvckNvbXBvbmVudCxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgVGdvQ29kaW5nVGVzdENvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCwgT25DaGFuZ2VzIHtcblxuICBwcml2YXRlIHJlYWRvbmx5IGNvbmZpZ3VyYXRpb25zU2VydmljZSA9IGluamVjdChDb25maWd1cmF0aW9uc1NlcnZpY2UpO1xuICBwcml2YXRlIHJlYWRvbmx5IGxpYkNvZGluZ1Rlc3RTZXJ2aWNlID0gaW5qZWN0KExpYkNvZGluZ1Rlc3RTZXJ2aWNlKTtcbiAgcHJpdmF0ZSByZWFkb25seSB0ZXN0Q2FzZXNTZXJ2aWNlID0gaW5qZWN0KFRlc3RDYXNlc1NlcnZpY2UpO1xuICBwcml2YXRlIHJlYWRvbmx5IFN0b3JhZ2VDb2RpbmdTZXJ2aWNlID0gaW5qZWN0KFN0b3JhZ2VDb2RpbmdTZXJ2aWNlKTtcbiAgcHJpdmF0ZSByZWFkb25seSB0aGVtZVNlcnZpY2UgPSBpbmplY3QoVGhlbWVTZXJ2aWNlKTtcblxuICBASW5wdXQoKSBpbml0Q29kZTogc3RyaW5nO1xuICBASW5wdXQoKSBzbmFwc2hvdDogQ29kaW5nU25hcHNob3Q7XG4gIEBJbnB1dCgpIGZ1bmN0aW9uUGFyYW1zOiBDb2RlRWRpdG9yRnVuY1BhcmFtW107XG4gIEBJbnB1dCgpIGZ1bmN0aW9uTmFtZTogc3RyaW5nO1xuICBASW5wdXQoKSByZXR1cm5UeXBlOiBrZXlvZiBDb2RlRWRpdG9yVHlwZXNNYXA7XG4gIEBJbnB1dCgpIGlzTEFUOiBib29sZWFuO1xuICBASW5wdXQoKSBpc1NRTDogYm9vbGVhbjtcbiAgQElucHV0KCkgc2hvdWxkR2VuZXJhdGVJbml0Q29kZSA9IHRydWU7XG4gIEBJbnB1dCgpIGNhbkFkZEN1c3RvbVRlc3RDYXNlcyA9IHRydWU7XG5cbiAgQElucHV0KCkgc2VsZWN0ZWRQcm9ncmFtbWluZ0xhbmd1YWdlOiBMQVRMYW5ndWFnZTtcblxuICBASW5wdXQoKVxuICBzZXQgbGFuZ3VhZ2VzKHZhbHVlOiBMQVRMYW5ndWFnZXMpIHtcbiAgICBpZiAoIXZhbHVlLmxlbmd0aCkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKCdBdCBsZWFzdCBvbmUgbGFuZ3VhZ2UgaXMgcmVxdWlyZWQnKTtcbiAgICB9IGVsc2Uge1xuICAgICAgT2JqZWN0LmRlZmluZVByb3BlcnR5KHRoaXMsICdsYW5ndWFnZXMnLCB7XG4gICAgICAgIHZhbHVlLFxuICAgICAgICB3cml0YWJsZTogdHJ1ZSxcbiAgICAgIH0pO1xuICAgICAgdGhpcy51cGRhdGVMYW5ndWFnZSgpO1xuICAgIH1cbiAgfVxuXG4gIEBJbnB1dCgpIGlzUmVhZG9ubHk6IGJvb2xlYW47XG4gIEBJbnB1dCgpIGF1dG9IZWlnaHQ6IGJvb2xlYW47XG4gIEBJbnB1dCgpIHRyYW5zbGF0aW9uczogUmVjb3JkPHN0cmluZywgdW5rbm93bj47XG4gIEBJbnB1dCgpIHF1ZXN0aW9uVGV4dDogc3RyaW5nO1xuICBASW5wdXQoKSBtb2RlOiBNb2RlcztcbiAgQElucHV0KCkgYXNzZXNzbWVudElkOiBzdHJpbmc7XG4gIEBJbnB1dCgpIGNvbXBhbnlDb2xvcjogc3RyaW5nO1xuICBASW5wdXQoKSB0ZXN0Q2FzZXNTdGF0dXM6IGFueTtcbiAgQElucHV0KCkgbG9hZGluZzogYm9vbGVhbjtcbiAgQElucHV0KCkgcnVuVGVzdFJlc3BvbnNlID0gW107XG4gIEBJbnB1dCgpIHZpZXdNb2RlOiBWaWV3TW9kZTtcbiAgQElucHV0KCkgZXhhbXBsZVRlc3RDYXNlczogRXhhbXBsZVRlc3RDYXNlW107XG4gIC8vIHRvZG86IHJlbW92ZSB0aGlzIHByb3BlcnR5IGZyb20gZXZlcnl3aGVyZSBhZnRlciBzdW5zZXR0aW5nIG9mIHRoZSBvbGQgZmxvd1xuICBASW5wdXQoKSBoaWRlVGVzdENhc2VzOiBib29sZWFuO1xuICBASW5wdXQoKSBhcHBsaWNhdGlvblRoZW1lOiBBcHBsaWNhdGlvblRoZW1lID0gJ2xpZ2h0JztcbiAgQElucHV0KCkgcXVlc3Rpb25JZDogbnVtYmVyO1xuXG4gIEBPdXRwdXQoKSBwYXN0ZUV2ZW50ID0gbmV3IEV2ZW50RW1pdHRlcjxQYXN0ZURhdGE+KCk7XG4gIEBPdXRwdXQoKSBjb2RlQ2hhbmdlID0gbmV3IEV2ZW50RW1pdHRlcjxzdHJpbmc+KCk7XG4gIEBPdXRwdXQoKSBydW5UZXN0Q2xpY2sgPSBuZXcgRXZlbnRFbWl0dGVyPGJvb2xlYW4+KCk7XG4gIEBPdXRwdXQoKSBsYW5ndWFnZUNoYW5nZSA9IG5ldyBFdmVudEVtaXR0ZXI8Q29kZUVkaXRvckxhbmd1YWdlcz4oKTtcblxuICBjb2xvclRoZW1lJCA9IHRoaXMuY29uZmlndXJhdGlvbnNTZXJ2aWNlLmNvbG9yVGhlbWUkO1xuICBpc0Z1bGxzY3JlZW5Nb2RlJCA9IHRoaXMubGliQ29kaW5nVGVzdFNlcnZpY2UuaXNGdWxsc2NyZWVuJDtcblxuICBpc0Z1bGxWaWV3TW9kZTogYm9vbGVhbjtcbiAgVmlld01vZGVzID0gVmlld01vZGU7XG4gIHRoZW1lU3BlY2lmaWNDb2xvcjogc3RyaW5nO1xuXG4gIG5nT25Jbml0KCkge1xuICAgIHRoaXMuc2V0SXNGdWxsVmlld01vZGUoKTtcbiAgICB0aGlzLnNldENvbXBhbnlDb2xvcigpO1xuICAgIHRoaXMubGliQ29kaW5nVGVzdFNlcnZpY2Uuc2V0SW5pdENvZGUodGhpcy5pbml0Q29kZSk7XG5cbiAgICAvLyBMb2NhbCBEYXRhIHNob3VsZCBiZSBtYWludGFpbmVkIG9ubHkgZm9yIGNhbmRpZGF0ZSBlbnZpcm9ubWVudFxuICAgIGlmICh0aGlzLmlzRnVsbFZpZXdNb2RlKSB7XG4gICAgICAvLyBQZXJmb3JtIHBlcmlvZGljIHN0b3JhZ2UgbWFpbnRlbmFuY2VcbiAgICAgIHRoaXMucGVyZm9ybVBlcmlvZGljTWFpbnRlbmFuY2UoKTtcblxuICAgICAgY29uc3Qgc3RvcmFnZUFzc2Vzc21lbnRJZCA9XG4gICAgICAgIHRoaXMuaXNMQVQgJiYgdGhpcy5tb2RlID09PSBNb2Rlcy5Ob25Bc3Nlc3NtZW50UHJldmlld1xuICAgICAgICAgID8gQXNzZXNzbWVudElkUHJldmlld1xuICAgICAgICAgIDogdGhpcy5hc3Nlc3NtZW50SWQ7XG4gICAgICBjb25zdCBzdG9yYWdlQ29kZUVuYWJsZSA9XG4gICAgICAgIHRoaXMuaXNMQVQgJiYgKHRoaXMubW9kZSA9PT0gTW9kZXMuUHJldmlldyB8fCB0aGlzLm1vZGUgPT09IE1vZGVzLk5vbkFzc2Vzc21lbnRQcmV2aWV3KVxuICAgICAgICAgID8gdHJ1ZVxuICAgICAgICAgIDogdGhpcy5tb2RlID09PSBNb2Rlcy5SdW5uaW5nO1xuICAgICAgY29uc3Qgc3RvcmFnZVRlc3RDYXNlc0VuYWJsZSA9IHRoaXMubW9kZSA9PT0gTW9kZXMuUnVubmluZyAmJiB0aGlzLmlzTEFUO1xuICAgICAgY29uc3Qgc3RvcmFnZVF1ZXN0aW9uSWQgPSBOdW1iZXIuaXNJbnRlZ2VyKHRoaXMucXVlc3Rpb25JZClcbiAgICAgICAgPyBTdHJpbmcodGhpcy5xdWVzdGlvbklkKVxuICAgICAgICA6ICdkZWZhdWx0LXF1ZXN0aW9uLWlkJztcblxuICAgICAgdGhpcy5saWJDb2RpbmdUZXN0U2VydmljZS5jdXJyZW50TGFuZ3VhZ2UkLnBpcGUodGFrZSgxKSkuc3Vic2NyaWJlKGxhbmd1YWdlID0+IHtcbiAgICAgICAgdGhpcy5TdG9yYWdlQ29kaW5nU2VydmljZS5zZXR1cEF1dG9TYXZlZERhdGEoXG4gICAgICAgICAgbGFuZ3VhZ2UsXG4gICAgICAgICAgc3RvcmFnZUFzc2Vzc21lbnRJZCxcbiAgICAgICAgICBzdG9yYWdlUXVlc3Rpb25JZCxcbiAgICAgICAgICBzdG9yYWdlQ29kZUVuYWJsZSxcbiAgICAgICAgICBzdG9yYWdlVGVzdENhc2VzRW5hYmxlLFxuICAgICAgICAgIHRoaXMuaXNMQVQsXG4gICAgICAgICAgdGhpcy5tb2RlXG4gICAgICAgICk7XG4gICAgICAgIGlmIChzdG9yYWdlVGVzdENhc2VzRW5hYmxlKSB7XG4gICAgICAgICAgdGhpcy51cGRhdGVUZXN0Q2FzZXMoKTtcbiAgICAgICAgfVxuICAgICAgICB0aGlzLmNvbmZpZ3VyYXRpb25zU2VydmljZS5zZXRDb2RlQ29tcG9uZW50RGVzdHJveWVkKGZhbHNlKTtcbiAgICAgICAgdGhpcy51cGRhdGVJbml0Q29kZSh0aGlzLmluaXRDb2RlKTtcbiAgICAgICAgdGhpcy5TdG9yYWdlQ29kaW5nU2VydmljZS5pbml0aWFsaXplU2F2aW5nKCk7XG4gICAgICB9KTtcblxuICAgICAgaWYgKHRoaXMubW9kZSAhPT0gTW9kZXMuTm9uQXNzZXNzbWVudFByZXZpZXcgfHwgdGhpcy5pc0xBVCkge1xuICAgICAgICB0aGlzLmxpYkNvZGluZ1Rlc3RTZXJ2aWNlLmNsZWFyU2F2ZWRDb2RlJC5waXBlKHVudGlsRGVzdHJveWVkKHRoaXMpKS5zdWJzY3JpYmUoKCkgPT4ge1xuICAgICAgICAgIHRoaXMuU3RvcmFnZUNvZGluZ1NlcnZpY2UuY2xlYXJTYXZlZENvZGUoKTtcbiAgICAgICAgICBpZiAodGhpcy5pc0xBVCkge1xuICAgICAgICAgICAgdGhpcy5TdG9yYWdlQ29kaW5nU2VydmljZS5jbGVhclNhdmVkVGVzdENhc2VzKCk7XG4gICAgICAgICAgfVxuICAgICAgICB9KTtcblxuICAgICAgICBpZiAodGhpcy5pc0xBVCkge1xuICAgICAgICAgIHRoaXMubGliQ29kaW5nVGVzdFNlcnZpY2UuY2xlYXJMYXN0TGFuZyQucGlwZSh1bnRpbERlc3Ryb3llZCh0aGlzKSkuc3Vic2NyaWJlKCgpID0+IHtcbiAgICAgICAgICAgIHRoaXMuU3RvcmFnZUNvZGluZ1NlcnZpY2UuY2xlYXJMYXN0TGFuZygpO1xuICAgICAgICAgIH0pO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfVxuICB9XG5cbiAgbmdPbkNoYW5nZXMoY2hhbmdlczogU2ltcGxlQ2hhbmdlcyk6IHZvaWQge1xuICAgIGlmICghY2hhbmdlcy5pbml0Q29kZT8uZmlyc3RDaGFuZ2UgJiYgdHlwZW9mIGNoYW5nZXMuaW5pdENvZGU/LmN1cnJlbnRWYWx1ZSA9PT0gJ3N0cmluZycpIHtcbiAgICAgIHRoaXMubGliQ29kaW5nVGVzdFNlcnZpY2UuY3VycmVudExhbmd1YWdlJC5waXBlKHRha2UoMSkpLnN1YnNjcmliZShsYW5ndWFnZSA9PiB7XG4gICAgICAgIHRoaXMuU3RvcmFnZUNvZGluZ1NlcnZpY2UuY2hhbmdlTGFuZ3VhZ2UobGFuZ3VhZ2UpO1xuICAgICAgICB0aGlzLmxpYkNvZGluZ1Rlc3RTZXJ2aWNlLnNldEluaXRDb2RlKHRoaXMuaW5pdENvZGUpO1xuICAgICAgICB0aGlzLnVwZGF0ZUluaXRDb2RlKGNoYW5nZXMuaW5pdENvZGUuY3VycmVudFZhbHVlKTtcbiAgICAgIH0pO1xuICAgIH1cbiAgICBpZiAoY2hhbmdlcy5jb21wYW55Q29sb3IgJiYgY2hhbmdlcy5jb21wYW55Q29sb3I/LmN1cnJlbnRWYWx1ZSkge1xuICAgICAgdGhpcy50aGVtZVNlcnZpY2UuY29tcGFueUNvbG9yID0gY2hhbmdlcy5jb21wYW55Q29sb3IuY3VycmVudFZhbHVlO1xuICAgIH1cbiAgfVxuXG4gIHVwZGF0ZUluaXRDb2RlKGNvZGU6IHN0cmluZykge1xuICAgIGNvbnN0IHNhdmVkQ29kZSA9IHRoaXMuU3RvcmFnZUNvZGluZ1NlcnZpY2UuZ2V0U2F2ZWRDb2RlKCk7XG4gICAgdGhpcy5pbml0Q29kZSA9IHNhdmVkQ29kZSA/IHNhdmVkQ29kZSA6IGNvZGU7XG4gIH1cblxuICBwcml2YXRlIHVwZGF0ZUxhbmd1YWdlKCkge1xuICAgIGNvbnN0IGxhc3RMYW5ndWFnZUxBVCA9IHRoaXMuU3RvcmFnZUNvZGluZ1NlcnZpY2UuZ2V0TGFzdExhbmd1YWdlTEFUKCk7XG4gICAgaWYgKHRoaXMuaXNMQVQgJiYgdGhpcy5pc1NhdmVkTGFuZ1JlbGV2YW50KGxhc3RMYW5ndWFnZUxBVCkpIHtcbiAgICAgIHRoaXMubGliQ29kaW5nVGVzdFNlcnZpY2UuY2hhbmdlQ3VycmVudExhbmd1YWdlKGxhc3RMYW5ndWFnZUxBVC52YWx1ZSk7XG4gICAgICBjb25zdCBsYW5nVmVyc2lvbiA9IHRoaXMuZ2V0UmVsZXZhbnRMYW5nVmVyc2lvbihsYXN0TGFuZ3VhZ2VMQVQpO1xuXG4gICAgICBpZiAobGFuZ1ZlcnNpb24pIHtcbiAgICAgICAgdGhpcy5saWJDb2RpbmdUZXN0U2VydmljZS5zZXRWZXJzaW9uKGxhbmdWZXJzaW9uKTtcbiAgICAgIH1cbiAgICB9IGVsc2Uge1xuICAgICAgY29uc3QgbGFuZ3VhZ2UgPSB0aGlzLnNlbGVjdGVkUHJvZ3JhbW1pbmdMYW5ndWFnZSB8fCB0aGlzLmxhbmd1YWdlc1swXTtcbiAgICAgIHRoaXMubGliQ29kaW5nVGVzdFNlcnZpY2UuY2hhbmdlQ3VycmVudExhbmd1YWdlKGxhbmd1YWdlLnZhbHVlKTtcbiAgICAgIGlmIChsYW5ndWFnZS52ZXJzaW9uKSB7XG4gICAgICAgIHRoaXMubGliQ29kaW5nVGVzdFNlcnZpY2Uuc2V0VmVyc2lvbihsYW5ndWFnZS52ZXJzaW9uKTtcbiAgICAgIH1cbiAgICB9XG4gIH1cblxuICBwcml2YXRlIGlzU2F2ZWRMYW5nUmVsZXZhbnQobGFzdExhbmd1YWdlTEFUOiB7XG4gICAgdmFsdWU6IENvZGVFZGl0b3JMYW5ndWFnZXM7XG4gICAgdmVyc2lvbjogc3RyaW5nO1xuICB9KTogYm9vbGVhbiB7XG4gICAgcmV0dXJuICEhbGFzdExhbmd1YWdlTEFUICYmIHRoaXMubGFuZ3VhZ2VzLnNvbWUoKHsgdmFsdWUgfSkgPT4gdmFsdWUgPT09IGxhc3RMYW5ndWFnZUxBVC52YWx1ZSk7XG4gIH1cblxuICBwcml2YXRlIGdldFJlbGV2YW50TGFuZ1ZlcnNpb24obGFzdExhbmc6IHtcbiAgICB2YWx1ZTogQ29kZUVkaXRvckxhbmd1YWdlcztcbiAgICB2ZXJzaW9uOiBzdHJpbmc7XG4gIH0pOiBzdHJpbmcge1xuICAgIGNvbnN0IHJlbGV2YW50TGFuZyA9IHRoaXMubGFuZ3VhZ2VzLmZpbmQoKHsgdmFsdWUgfSkgPT4gdmFsdWUgPT09IGxhc3RMYW5nPy52YWx1ZSk7XG5cbiAgICByZXR1cm4gcmVsZXZhbnRMYW5nID8gcmVsZXZhbnRMYW5nLnZlcnNpb24gOiBsYXN0TGFuZy52ZXJzaW9uO1xuICB9XG5cbiAgcHJpdmF0ZSB1cGRhdGVUZXN0Q2FzZXMoKSB7XG4gICAgaWYgKHRoaXMuaXNMQVQgfHwgKHRoaXMuaXNTUUwgJiYgIXRoaXMuaGlkZVRlc3RDYXNlcykpIHtcbiAgICAgIGNvbnN0IHRlc3RDYXNlcyA9IHRoaXMuU3RvcmFnZUNvZGluZ1NlcnZpY2UuZ2V0U2F2ZWRUZXN0Q2FzZXMoKTtcbiAgICAgIGlmICh0ZXN0Q2FzZXM/Lmxlbmd0aCkge1xuICAgICAgICB0aGlzLmxpYkNvZGluZ1Rlc3RTZXJ2aWNlLnVwZGF0ZVRlc3RDYXNlcyhbLi4udGVzdENhc2VzXSk7XG4gICAgICAgIHRoaXMuU3RvcmFnZUNvZGluZ1NlcnZpY2UudXBkYXRlVGVzdENhc2VzKFsuLi50ZXN0Q2FzZXNdKTtcbiAgICAgICAgaWYgKHRlc3RDYXNlc1t0ZXN0Q2FzZXMubGVuZ3RoIC0gMV0ubG9jYWxJZCkge1xuICAgICAgICAgIHRoaXMudGVzdENhc2VzU2VydmljZS51cGRhdGVUZXN0Q2FzZUxvY2FsSWQodGVzdENhc2VzW3Rlc3RDYXNlcy5sZW5ndGggLSAxXS5sb2NhbElkKTtcbiAgICAgICAgfVxuICAgICAgfSBlbHNlIHtcbiAgICAgICAgdGhpcy5saWJDb2RpbmdUZXN0U2VydmljZS51cGRhdGVUZXN0Q2FzZXMoW10pO1xuICAgICAgICB0aGlzLlN0b3JhZ2VDb2RpbmdTZXJ2aWNlLnVwZGF0ZVRlc3RDYXNlcyhbXSk7XG4gICAgICAgIHRoaXMudGVzdENhc2VzU2VydmljZS5yZXNldExhc3RUZXN0Q2FzZUxvY2FsSWQoKTtcbiAgICAgIH1cbiAgICB9XG4gIH1cblxuICBwcml2YXRlIHNldElzRnVsbFZpZXdNb2RlKCk6IHZvaWQge1xuICAgIHRoaXMuaXNGdWxsVmlld01vZGUgPSB0aGlzLnZpZXdNb2RlID09PSBWaWV3TW9kZS5GdWxsO1xuICB9XG5cbiAgcHJpdmF0ZSBzZXRDb21wYW55Q29sb3IoKTogdm9pZCB7XG4gICAgdGhpcy50aGVtZVNlcnZpY2UudGhlbWVDb2xvcnMkXG4gICAgICAucGlwZSh1bnRpbERlc3Ryb3llZCh0aGlzKSlcbiAgICAgIC5zdWJzY3JpYmUoKHsgY29tcGFueUNvbG9yLCB0aGVtZVNwZWNpZmljQ29sb3IgfSkgPT4ge1xuICAgICAgICB0aGlzLmNvbXBhbnlDb2xvciA9IGNvbXBhbnlDb2xvcjtcbiAgICAgICAgdGhpcy50aGVtZVNwZWNpZmljQ29sb3IgPSB0aGVtZVNwZWNpZmljQ29sb3I7XG4gICAgICB9KTtcbiAgfVxuXG4gIC8qKlxuICAgKiBQZXJmb3JtcyBwZXJpb2RpYyBtYWludGVuYW5jZSBvbiBsb2NhbFN0b3JhZ2UgZGF0YVxuICAgKiBUaGlzIGlzIGRvbmUgd2l0aCBhIHJhbmRvbSBjaGFuY2UgdG8gZGlzdHJpYnV0ZSBjbGVhbnVwIG92ZXIgdGltZVxuICAgKiBhbmQgcHJldmVudCBhbGwgdXNlcnMgZnJvbSBjbGVhbmluZyB1cCBzdG9yYWdlIGF0IHRoZSBzYW1lIHRpbWUuXG4gICAqL1xuICBwcml2YXRlIHBlcmZvcm1QZXJpb2RpY01haW50ZW5hbmNlKCk6IHZvaWQge1xuICAgIC8vIENoZWNrIHRoZSBsYXN0IHRpbWUgbWFpbnRlbmFuY2Ugd2FzIGRvbmUgKHN0b3JlZCBpbiBhIHNlcGFyYXRlIGtleSlcbiAgICBjb25zdCBtYWludGVuYW5jZUtleSA9ICdsYXN0Q29kaW5nVGVzdFN0b3JhZ2VNYWludGVuYW5jZSc7XG4gICAgY29uc3QgbGFzdE1haW50ZW5hbmNlID0gbG9jYWxTdG9yYWdlLmdldEl0ZW0obWFpbnRlbmFuY2VLZXkpO1xuICAgIGNvbnN0IG5vdyA9IERhdGUubm93KCk7XG4gICAgY29uc3QgaXNEb25lTGF0ZXJUaGFuRGF5ID0gbm93IC0gcGFyc2VJbnQobGFzdE1haW50ZW5hbmNlLCAxMCkgPiB0aW1lVG9NcygxKTtcblxuICAgIC8vIElmIG1haW50ZW5hbmNlIHdhcyBuZXZlciBkb25lIG9yIHdhcyBkb25lIG1vcmUgdGhhbiBhIGRheSBhZ28sXG4gICAgLy8gcGVyZm9ybSBpdCB3aXRoIGEgMjAlIGNoYW5jZSB0byBkaXN0cmlidXRlIGxvYWRcbiAgICBpZiAoIWxhc3RNYWludGVuYW5jZSB8fCBpc0RvbmVMYXRlclRoYW5EYXkpIHtcbiAgICAgIC8vIFBlcmZvcm0gbWFpbnRlbmFuY2Ugd2l0aCAyMCUgcHJvYmFiaWxpdHkgdG8gZGlzdHJpYnV0ZSBsb2FkXG4gICAgICBpZiAoTWF0aC5yYW5kb20oKSA8IDAuMikge1xuICAgICAgICAvLyBQZXJmb3JtIHRoZSBjbGVhbnVwIHNpbGVudGx5XG4gICAgICAgIHRoaXMuU3RvcmFnZUNvZGluZ1NlcnZpY2UucGVyZm9ybU1haW50ZW5hbmNlQW5kQ2xlYW51cCgpO1xuICAgICAgICBsb2NhbFN0b3JhZ2Uuc2V0SXRlbShtYWludGVuYW5jZUtleSwgbm93LnRvU3RyaW5nKCkpO1xuICAgICAgfVxuICAgIH1cbiAgfVxufVxuIiwiQHN3aXRjaCAodmlld01vZGUpIHtcbiAgQGNhc2UgKFZpZXdNb2Rlcy5GdWxsKSB7XG4gICAgPHRnby1jb2RpbmctcXVlc3Rpb25cbiAgICAgIFtuZ0NsYXNzXT1cIltcbiAgICAgICAgJ2NvZGluZy1xdWVzdGlvbicsXG4gICAgICAgIGNvbG9yVGhlbWUkIHwgYXN5bmMsXG4gICAgICAgIChpc0Z1bGxzY3JlZW5Nb2RlJCB8IGFzeW5jKSA/ICdjb2RpbmctcXVlc3Rpb24tZnVsbHNjcmVlbicgOiAnJyxcbiAgICAgIF1cIlxuICAgICAgW25nU3R5bGVdPVwie1xuICAgICAgICAnLS1jb21wYW55LWNvbG9yJzogY29tcGFueUNvbG9yLFxuICAgICAgICAnLS1jb21wYW55LXRoZW1lLXNwZWNpZmljLWNvbG9yJzogdGhlbWVTcGVjaWZpY0NvbG9yLFxuICAgICAgfVwiXG4gICAgICBbaW5pdENvZGVdPVwiaW5pdENvZGVcIlxuICAgICAgW2Z1bmN0aW9uUGFyYW1zXT1cImZ1bmN0aW9uUGFyYW1zXCJcbiAgICAgIFtmdW5jdGlvbk5hbWVdPVwiZnVuY3Rpb25OYW1lXCJcbiAgICAgIFtyZXR1cm5UeXBlXT1cInJldHVyblR5cGVcIlxuICAgICAgW2F1dG9IZWlnaHRdPVwiYXV0b0hlaWdodFwiXG4gICAgICBbcXVlc3Rpb25UZXh0XT1cInF1ZXN0aW9uVGV4dFwiXG4gICAgICBbbW9kZV09XCJtb2RlXCJcbiAgICAgIFtpc0xBVF09XCJpc0xBVFwiXG4gICAgICBbaXNTUUxdPVwiaXNTUUxcIlxuICAgICAgW2NhbkFkZEN1c3RvbVRlc3RDYXNlc109XCJjYW5BZGRDdXN0b21UZXN0Q2FzZXNcIlxuICAgICAgW2V4YW1wbGVUZXN0Q2FzZXNdPVwiZXhhbXBsZVRlc3RDYXNlc1wiXG4gICAgICBbbGFuZ3VhZ2VzXT1cImxhbmd1YWdlc1wiXG4gICAgICAocGFzdGVFdmVudCk9XCJwYXN0ZUV2ZW50LmVtaXQoJGV2ZW50KVwiXG4gICAgICAoY29kZUNoYW5nZSk9XCJjb2RlQ2hhbmdlLmVtaXQoJGV2ZW50KVwiXG4gICAgICAocnVuVGVzdENsaWNrKT1cInJ1blRlc3RDbGljay5lbWl0KCRldmVudClcIlxuICAgICAgKGxhbmd1YWdlQ2hhbmdlKT1cImxhbmd1YWdlQ2hhbmdlLmVtaXQoJGV2ZW50KVwiXG4gICAgICBbdHJhbnNsYXRpb25zXT1cInRyYW5zbGF0aW9uc1wiXG4gICAgICBbY29tcGFueUNvbG9yXT1cImNvbXBhbnlDb2xvclwiXG4gICAgICBbdGVzdENhc2VzU3RhdHVzXT1cInRlc3RDYXNlc1N0YXR1c1wiXG4gICAgICBbbG9hZGluZ109XCJsb2FkaW5nXCJcbiAgICAgIFtydW5UZXN0UmVzcG9uc2VdPVwicnVuVGVzdFJlc3BvbnNlXCJcbiAgICAgIFthcHBsaWNhdGlvblRoZW1lXT1cImFwcGxpY2F0aW9uVGhlbWVcIlxuICAgICAgW2hpZGVUZXN0Q2FzZXNdPVwiaGlkZVRlc3RDYXNlc1wiXG4gICAgPlxuICAgIDwvdGdvLWNvZGluZy1xdWVzdGlvbj5cbiAgfVxuICBAY2FzZSAoVmlld01vZGVzLlJ1bm5hYmxlSWRlKSB7XG4gICAgPG5nLWNvbnRhaW5lciBbbmdUZW1wbGF0ZU91dGxldF09XCJydW5uYWJsZUVkaXRvclRwbFwiPjwvbmctY29udGFpbmVyPlxuICB9XG4gIEBjYXNlIChWaWV3TW9kZXMuUnVubmFibGVJZGVXaXRoTGFuZ1NlbGVjdG9yKSB7XG4gICAgPG5nLWNvbnRhaW5lciBbbmdUZW1wbGF0ZU91dGxldF09XCJydW5uYWJsZUVkaXRvclRwbFwiPjwvbmctY29udGFpbmVyPlxuICB9XG4gIEBkZWZhdWx0IHtcbiAgICA8dGdvLWNvZGUtZWRpdG9yXG4gICAgICBbaW5pdENvZGVdPVwiaW5pdENvZGVcIlxuICAgICAgW3NuYXBzaG90XT1cInNuYXBzaG90XCJcbiAgICAgIFtzaG91bGRHZW5lcmF0ZUluaXRDb2RlXT1cIiFpc0Z1bGxWaWV3TW9kZSAmJiBzaG91bGRHZW5lcmF0ZUluaXRDb2RlXCJcbiAgICAgIFtmdW5jdGlvblBhcmFtc109XCJmdW5jdGlvblBhcmFtc1wiXG4gICAgICBbZnVuY3Rpb25OYW1lXT1cImZ1bmN0aW9uTmFtZVwiXG4gICAgICBbcmV0dXJuVHlwZV09XCJyZXR1cm5UeXBlXCJcbiAgICAgIFtoYXNDb2RpbmdDb25maWdQYW5lbF09XCJpc0Z1bGxWaWV3TW9kZVwiXG4gICAgICBbaXNSZWFkb25seV09XCJpc1JlYWRvbmx5XCJcbiAgICAgIFthdXRvSGVpZ2h0XT1cImF1dG9IZWlnaHRcIlxuICAgICAgKHBhc3RlRXZlbnQpPVwicGFzdGVFdmVudC5lbWl0KCRldmVudClcIlxuICAgICAgKGNvZGVDaGFuZ2UpPVwiY29kZUNoYW5nZS5lbWl0KCRldmVudClcIlxuICAgID5cbiAgICA8L3Rnby1jb2RlLWVkaXRvcj5cbiAgfVxufVxuXG48bmctdGVtcGxhdGUgI3J1bm5hYmxlRWRpdG9yVHBsPlxuICA8dGdvLXJ1bm5hYmxlLWVkaXRvclxuICAgIFtuZ0NsYXNzXT1cImNvbG9yVGhlbWUkIHwgYXN5bmNcIlxuICAgIFtuZ1N0eWxlXT1cIntcbiAgICAgICctLWNvbXBhbnktY29sb3InOiBjb21wYW55Q29sb3IsXG4gICAgICAnLS1jb21wYW55LXRoZW1lLXNwZWNpZmljLWNvbG9yJzogdGhlbWVTcGVjaWZpY0NvbG9yLFxuICAgIH1cIlxuICAgIFtpbml0Q29kZV09XCJpbml0Q29kZVwiXG4gICAgW2Z1bmN0aW9uUGFyYW1zXT1cImZ1bmN0aW9uUGFyYW1zXCJcbiAgICBbZnVuY3Rpb25OYW1lXT1cImZ1bmN0aW9uTmFtZVwiXG4gICAgW3JldHVyblR5cGVdPVwicmV0dXJuVHlwZVwiXG4gICAgW2lzRnVsbFZpZXdNb2RlXT1cImZhbHNlXCJcbiAgICBbc2hvdWxkR2VuZXJhdGVJbml0Q29kZV09XCJzaG91bGRHZW5lcmF0ZUluaXRDb2RlXCJcbiAgICBbaXNSdW5uYWJsZVdpdGhMYW5nU2VsZWN0b3JdPVwidmlld01vZGUgPT09IFZpZXdNb2Rlcy5SdW5uYWJsZUlkZVdpdGhMYW5nU2VsZWN0b3JcIlxuICAgIFtpc0xBVF09XCJpc0xBVFwiXG4gICAgW2lzU1FMXT1cImlzU1FMXCJcbiAgICBbY2FuQWRkQ3VzdG9tVGVzdENhc2VzXT1cImNhbkFkZEN1c3RvbVRlc3RDYXNlc1wiXG4gICAgW2xhbmd1YWdlc109XCJsYW5ndWFnZXNcIlxuICAgIFthdXRvSGVpZ2h0XT1cImF1dG9IZWlnaHRcIlxuICAgIFt0cmFuc2xhdGlvbnNdPVwidHJhbnNsYXRpb25zXCJcbiAgICBbcXVlc3Rpb25UZXh0XT1cInF1ZXN0aW9uVGV4dFwiXG4gICAgW2NvbXBhbnlDb2xvcl09XCJjb21wYW55Q29sb3JcIlxuICAgIFt0ZXN0Q2FzZXNTdGF0dXNdPVwidGVzdENhc2VzU3RhdHVzXCJcbiAgICBbbG9hZGluZ109XCJsb2FkaW5nXCJcbiAgICBbcnVuVGVzdFJlc3BvbnNlXT1cInJ1blRlc3RSZXNwb25zZVwiXG4gICAgW2V4YW1wbGVUZXN0Q2FzZXNdPVwiZXhhbXBsZVRlc3RDYXNlc1wiXG4gICAgW2FwcGxpY2F0aW9uVGhlbWVdPVwiYXBwbGljYXRpb25UaGVtZVwiXG4gICAgKHBhc3RlRXZlbnQpPVwicGFzdGVFdmVudC5lbWl0KCRldmVudClcIlxuICAgIChjb2RlQ2hhbmdlKT1cImNvZGVDaGFuZ2UuZW1pdCgkZXZlbnQpXCJcbiAgICAocnVuVGVzdENsaWNrKT1cInJ1blRlc3RDbGljay5lbWl0KCRldmVudClcIlxuICAgIChsYW5ndWFnZUNoYW5nZSk9XCJsYW5ndWFnZUNoYW5nZS5lbWl0KCRldmVudClcIlxuICA+XG4gIDwvdGdvLXJ1bm5hYmxlLWVkaXRvcj5cbjwvbmctdGVtcGxhdGU+XG4iXX0=