@igo2/core 1.15.4 → 16.0.0-rc.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 (241) hide show
  1. package/_index.scss +8 -0
  2. package/assets/icons/mdi.svg +1 -1
  3. package/core-theme.scss +5 -0
  4. package/{esm2020 → esm2022}/igo2-core.mjs +4 -4
  5. package/{esm2020 → esm2022}/lib/activity/activity.interceptor.mjs +32 -30
  6. package/{esm2020 → esm2022}/lib/activity/activity.module.mjs +30 -30
  7. package/esm2022/lib/activity/activity.service.mjs +32 -0
  8. package/{esm2020 → esm2022}/lib/activity/index.mjs +3 -3
  9. package/{esm2020 → esm2022}/lib/analytics/index.mjs +2 -2
  10. package/{esm2020 → esm2022}/lib/analytics/shared/analytics.interface.mjs +2 -2
  11. package/esm2022/lib/analytics/shared/analytics.service.mjs +84 -0
  12. package/{esm2020 → esm2022}/lib/analytics/shared/index.mjs +3 -3
  13. package/{esm2020 → esm2022}/lib/compression/compressedData.interface.mjs +2 -2
  14. package/esm2022/lib/compression/compression.service.mjs +142 -0
  15. package/{esm2020 → esm2022}/lib/compression/index.mjs +3 -3
  16. package/{esm2020 → esm2022}/lib/config/config.interface.mjs +1 -1
  17. package/{esm2020 → esm2022}/lib/config/config.module.mjs +23 -23
  18. package/{esm2020 → esm2022}/lib/config/config.provider.mjs +21 -21
  19. package/esm2022/lib/config/config.service.mjs +53 -0
  20. package/{esm2020 → esm2022}/lib/config/index.mjs +4 -4
  21. package/esm2022/lib/config/version.mjs +5 -0
  22. package/esm2022/lib/core.module.mjs +104 -0
  23. package/{esm2020 → esm2022}/lib/gesture/gesture.module.mjs +30 -30
  24. package/{esm2020 → esm2022}/lib/gesture/gesture.provider.mjs +16 -16
  25. package/{esm2020 → esm2022}/lib/language/index.mjs +2 -2
  26. package/esm2022/lib/language/language.module.mjs +39 -0
  27. package/{esm2020 → esm2022}/lib/language/shared/index.mjs +5 -5
  28. package/{esm2020 → esm2022}/lib/language/shared/language.interface.mjs +2 -2
  29. package/esm2022/lib/language/shared/language.loader.mjs +31 -0
  30. package/esm2022/lib/language/shared/language.provider.mjs +22 -0
  31. package/esm2022/lib/language/shared/language.service.mjs +38 -0
  32. package/{esm2020 → esm2022}/lib/language/shared/missing-translation.guard.mjs +16 -16
  33. package/{esm2020 → esm2022}/lib/media/index.mjs +3 -3
  34. package/{esm2020 → esm2022}/lib/media/media.enum.mjs +12 -12
  35. package/esm2022/lib/media/media.service.mjs +82 -0
  36. package/{esm2020 → esm2022}/lib/message/index.mjs +2 -2
  37. package/esm2022/lib/message/message.module.mjs +60 -0
  38. package/{esm2020 → esm2022}/lib/message/shared/index.mjs +4 -4
  39. package/{esm2020 → esm2022}/lib/message/shared/message.enum.mjs +10 -10
  40. package/{esm2020 → esm2022}/lib/message/shared/message.interface.mjs +2 -2
  41. package/esm2022/lib/message/shared/message.service.mjs +218 -0
  42. package/{esm2020 → esm2022}/lib/network/index.mjs +3 -3
  43. package/{esm2020 → esm2022}/lib/network/network.interfaces.mjs +2 -2
  44. package/esm2022/lib/network/network.service.mjs +66 -0
  45. package/{esm2020 → esm2022}/lib/regex/index.mjs +3 -3
  46. package/{esm2020 → esm2022}/lib/regex/regex.interface.mjs +2 -2
  47. package/esm2022/lib/regex/regex.service.mjs +30 -0
  48. package/esm2022/lib/request/error.interceptor.mjs +67 -0
  49. package/esm2022/lib/request/error.module.mjs +39 -0
  50. package/{esm2020 → esm2022}/lib/request/index.mjs +3 -3
  51. package/esm2022/lib/request/logging.interceptor.mjs +29 -0
  52. package/{esm2020 → esm2022}/lib/request/logging.module.mjs +30 -30
  53. package/esm2022/lib/route/route.interface.mjs +2 -0
  54. package/esm2022/lib/route/route.service.mjs +75 -0
  55. package/esm2022/lib/storage/index.mjs +4 -0
  56. package/{esm2020 → esm2022}/lib/storage/storage.interface.mjs +13 -13
  57. package/esm2022/lib/storage/storage.mjs +76 -0
  58. package/esm2022/lib/storage/storage.service.mjs +21 -0
  59. package/{esm2020 → esm2022}/public_api.mjs +27 -27
  60. package/{fesm2020 → fesm2022}/igo2-core.mjs +1364 -1288
  61. package/fesm2022/igo2-core.mjs.map +1 -0
  62. package/index.d.ts +5 -5
  63. package/lib/activity/activity.interceptor.d.ts +11 -11
  64. package/lib/activity/activity.module.d.ts +8 -8
  65. package/lib/activity/activity.service.d.ts +11 -11
  66. package/lib/activity/index.d.ts +2 -2
  67. package/lib/analytics/index.d.ts +1 -1
  68. package/lib/analytics/shared/analytics.interface.d.ts +6 -6
  69. package/lib/analytics/shared/analytics.service.d.ts +23 -23
  70. package/lib/analytics/shared/index.d.ts +2 -2
  71. package/lib/compression/compressedData.interface.d.ts +5 -5
  72. package/lib/compression/compression.service.d.ts +15 -15
  73. package/lib/compression/index.d.ts +2 -2
  74. package/lib/config/config.interface.d.ts +6 -6
  75. package/lib/config/config.module.d.ts +8 -8
  76. package/lib/config/config.provider.d.ts +15 -15
  77. package/lib/config/config.service.d.ts +18 -18
  78. package/lib/config/index.d.ts +3 -3
  79. package/lib/config/version.d.ts +5 -5
  80. package/lib/core.module.d.ts +19 -19
  81. package/lib/gesture/gesture.module.d.ts +9 -9
  82. package/lib/gesture/gesture.provider.d.ts +7 -7
  83. package/lib/language/index.d.ts +1 -1
  84. package/lib/language/language.module.d.ts +9 -9
  85. package/lib/language/shared/index.d.ts +4 -4
  86. package/lib/language/shared/language.interface.d.ts +3 -3
  87. package/lib/language/shared/language.loader.d.ts +11 -11
  88. package/lib/language/shared/language.provider.d.ts +15 -15
  89. package/lib/language/shared/language.service.d.ts +13 -13
  90. package/lib/language/shared/missing-translation.guard.d.ts +4 -4
  91. package/lib/media/index.d.ts +2 -2
  92. package/lib/media/media.enum.d.ts +9 -9
  93. package/lib/media/media.service.d.ts +16 -16
  94. package/lib/message/index.d.ts +1 -1
  95. package/lib/message/message.module.d.ts +10 -10
  96. package/lib/message/message.theming.scss +26 -0
  97. package/lib/message/shared/index.d.ts +4 -4
  98. package/lib/message/shared/message.enum.d.ts +8 -8
  99. package/lib/message/shared/message.interface.d.ts +21 -21
  100. package/lib/message/shared/message.service.d.ts +31 -31
  101. package/lib/network/index.d.ts +2 -2
  102. package/lib/network/network.interfaces.d.ts +3 -3
  103. package/lib/network/network.service.d.ts +21 -21
  104. package/lib/regex/index.d.ts +2 -2
  105. package/lib/regex/regex.interface.d.ts +3 -3
  106. package/lib/regex/regex.service.d.ts +12 -12
  107. package/lib/request/error.interceptor.d.ts +14 -14
  108. package/lib/request/error.module.d.ts +9 -9
  109. package/lib/request/index.d.ts +2 -2
  110. package/lib/request/logging.interceptor.d.ts +8 -8
  111. package/lib/request/logging.module.d.ts +8 -8
  112. package/lib/route/route.interface.d.ts +23 -23
  113. package/lib/route/route.service.d.ts +19 -19
  114. package/lib/storage/index.d.ts +3 -2
  115. package/lib/storage/storage.d.ts +15 -0
  116. package/lib/storage/storage.interface.d.ts +20 -20
  117. package/lib/storage/storage.service.d.ts +10 -19
  118. package/locale/en.core.json +1 -2
  119. package/locale/en.json +1 -1205
  120. package/locale/fr.core.json +1 -2
  121. package/locale/fr.json +1 -1210
  122. package/package.json +40 -30
  123. package/packages.import.scss +4 -0
  124. package/public_api.d.ts +24 -24
  125. package/style/all-style.css +793 -0
  126. package/style/all-style.scss +3 -0
  127. package/style/layout.scss +163 -0
  128. package/style/partial/core-utils.scss +5 -0
  129. package/style/partial/core.variables.scss +1 -1
  130. package/style/partial/media.scss +80 -80
  131. package/style/style.css +237 -0
  132. package/style/style.scss +19 -0
  133. package/theming/all-theme.scss +14 -0
  134. package/theming/material-theme-override.scss +39 -0
  135. package/theming/prebuilt-themes/blue-theme.css +2986 -0
  136. package/theming/prebuilt-themes/blue-theme.scss +34 -0
  137. package/theming/prebuilt-themes/bluedark-theme.css +2986 -0
  138. package/theming/prebuilt-themes/bluedark-theme.scss +67 -0
  139. package/theming/prebuilt-themes/bluedq-theme.css +2986 -0
  140. package/theming/prebuilt-themes/bluedq-theme.scss +66 -0
  141. package/theming/prebuilt-themes/bluegrey-theme.css +2986 -0
  142. package/theming/prebuilt-themes/bluegrey-theme.scss +25 -0
  143. package/theming/prebuilt-themes/dark-theme.css +2993 -0
  144. package/theming/prebuilt-themes/dark-theme.scss +25 -0
  145. package/theming/prebuilt-themes/deeppurple-theme.css +2986 -0
  146. package/theming/prebuilt-themes/deeppurple-theme.scss +25 -0
  147. package/theming/prebuilt-themes/indigo-theme.css +2986 -0
  148. package/theming/prebuilt-themes/indigo-theme.scss +25 -0
  149. package/theming/prebuilt-themes/orange-theme.css +2986 -0
  150. package/theming/prebuilt-themes/orange-theme.scss +25 -0
  151. package/theming/prebuilt-themes/qcca/_index.scss +2 -0
  152. package/theming/prebuilt-themes/qcca/base/_index.scss +4 -0
  153. package/theming/prebuilt-themes/qcca/base/breakpoints.scss +57 -0
  154. package/theming/prebuilt-themes/qcca/base/colors.scss +40 -0
  155. package/theming/prebuilt-themes/qcca/base/palette.scss +50 -0
  156. package/theming/prebuilt-themes/qcca/base/typography/_index.scss +2 -0
  157. package/theming/prebuilt-themes/qcca/base/typography/typography.scss +138 -0
  158. package/theming/prebuilt-themes/qcca/base/typography/typography.utils.scss +18 -0
  159. package/theming/prebuilt-themes/qcca/components/_index.scss +9 -0
  160. package/theming/prebuilt-themes/qcca/components/_index.theme.scss +5 -0
  161. package/theming/prebuilt-themes/qcca/components/button.scss +24 -0
  162. package/theming/prebuilt-themes/qcca/components/dialog.scss +36 -0
  163. package/theming/prebuilt-themes/qcca/components/form-field.scss +5 -0
  164. package/theming/prebuilt-themes/qcca/components/input.scss +6 -0
  165. package/theming/prebuilt-themes/qcca/components/list.scss +24 -0
  166. package/theming/prebuilt-themes/qcca/components/panel.scss +8 -0
  167. package/theming/prebuilt-themes/qcca/components/search-bar.scss +41 -0
  168. package/theming/prebuilt-themes/qcca/components/search-bar.theme.scss +29 -0
  169. package/theming/prebuilt-themes/qcca-theme.css +3373 -0
  170. package/theming/prebuilt-themes/qcca-theme.scss +47 -0
  171. package/theming/prebuilt-themes/teal-theme.css +2986 -0
  172. package/theming/prebuilt-themes/teal-theme.scss +25 -0
  173. package/theming/typography.scss +28 -0
  174. package/theming/utils/_foreground.scss +22 -0
  175. package/__ivy_ngcc__/locale/en.auth.json +0 -29
  176. package/__ivy_ngcc__/locale/en.common.json +0 -43
  177. package/__ivy_ngcc__/locale/en.context.json +0 -199
  178. package/__ivy_ngcc__/locale/en.core.json +0 -29
  179. package/__ivy_ngcc__/locale/en.geo.json +0 -805
  180. package/__ivy_ngcc__/locale/en.integration.json +0 -124
  181. package/__ivy_ngcc__/locale/en.json +0 -1205
  182. package/__ivy_ngcc__/locale/fr.auth.json +0 -32
  183. package/__ivy_ngcc__/locale/fr.common.json +0 -43
  184. package/__ivy_ngcc__/locale/fr.context.json +0 -199
  185. package/__ivy_ngcc__/locale/fr.core.json +0 -29
  186. package/__ivy_ngcc__/locale/fr.geo.json +0 -805
  187. package/__ivy_ngcc__/locale/fr.integration.json +0 -125
  188. package/__ivy_ngcc__/locale/fr.json +0 -1210
  189. package/esm2020/lib/activity/activity.service.mjs +0 -33
  190. package/esm2020/lib/analytics/shared/analytics.service.mjs +0 -81
  191. package/esm2020/lib/compression/compression.service.mjs +0 -140
  192. package/esm2020/lib/config/config.service.mjs +0 -52
  193. package/esm2020/lib/config/version.mjs +0 -5
  194. package/esm2020/lib/core.module.mjs +0 -92
  195. package/esm2020/lib/language/language.module.mjs +0 -39
  196. package/esm2020/lib/language/shared/language.loader.mjs +0 -26
  197. package/esm2020/lib/language/shared/language.provider.mjs +0 -22
  198. package/esm2020/lib/language/shared/language.service.mjs +0 -32
  199. package/esm2020/lib/media/media.service.mjs +0 -76
  200. package/esm2020/lib/message/message.module.mjs +0 -56
  201. package/esm2020/lib/message/shared/message.service.mjs +0 -201
  202. package/esm2020/lib/network/network.service.mjs +0 -60
  203. package/esm2020/lib/regex/regex.service.mjs +0 -27
  204. package/esm2020/lib/request/error.interceptor.mjs +0 -66
  205. package/esm2020/lib/request/error.module.mjs +0 -39
  206. package/esm2020/lib/request/logging.interceptor.mjs +0 -29
  207. package/esm2020/lib/route/route.interface.mjs +0 -2
  208. package/esm2020/lib/route/route.service.mjs +0 -71
  209. package/esm2020/lib/storage/index.mjs +0 -3
  210. package/esm2020/lib/storage/storage.service.mjs +0 -79
  211. package/fesm2015/igo2-core.mjs +0 -1418
  212. package/fesm2015/igo2-core.mjs.map +0 -1
  213. package/fesm2020/igo2-core.mjs.map +0 -1
  214. package/locale/en.auth.json +0 -29
  215. package/locale/en.common.json +0 -43
  216. package/locale/en.context.json +0 -199
  217. package/locale/en.geo.json +0 -805
  218. package/locale/en.integration.json +0 -124
  219. package/locale/fr.auth.json +0 -32
  220. package/locale/fr.common.json +0 -43
  221. package/locale/fr.context.json +0 -199
  222. package/locale/fr.geo.json +0 -805
  223. package/locale/fr.integration.json +0 -125
  224. package/style/all.theming.scss +0 -5
  225. package/style/core.theming.scss +0 -9
  226. package/style/foreground.scss +0 -20
  227. package/style/index.theming.scss +0 -1465
  228. package/style/material.font.scss +0 -10
  229. package/style/setup.scss +0 -2
  230. package/style/themes/blue.theme.scss +0 -19
  231. package/style/themes/bluedark.theme.scss +0 -52
  232. package/style/themes/bluedq.theme.scss +0 -52
  233. package/style/themes/bluegrey.theme.scss +0 -16
  234. package/style/themes/dark.theme.scss +0 -16
  235. package/style/themes/deeppurple.theme.scss +0 -16
  236. package/style/themes/indigo.theme.scss +0 -16
  237. package/style/themes/orange.theme.scss +0 -16
  238. package/style/themes/qcca.theme.scss +0 -98
  239. package/style/themes/teal.theme.scss +0 -16
  240. package/style/theming.scss +0 -5
  241. package/style/typography.scss +0 -17
@@ -0,0 +1,2993 @@
1
+ h4 {
2
+ font-size: 16px !important;
3
+ line-height: 22px !important;
4
+ font-weight: 500 !important;
5
+ }
6
+
7
+ .mat-ripple {
8
+ overflow: hidden;
9
+ position: relative;
10
+ }
11
+ .mat-ripple:not(:empty) {
12
+ transform: translateZ(0);
13
+ }
14
+
15
+ .mat-ripple.mat-ripple-unbounded {
16
+ overflow: visible;
17
+ }
18
+
19
+ .mat-ripple-element {
20
+ position: absolute;
21
+ border-radius: 50%;
22
+ pointer-events: none;
23
+ transition: opacity, transform 0ms cubic-bezier(0, 0, 0.2, 1);
24
+ transform: scale3d(0, 0, 0);
25
+ }
26
+ .cdk-high-contrast-active .mat-ripple-element {
27
+ display: none;
28
+ }
29
+
30
+ .cdk-visually-hidden {
31
+ border: 0;
32
+ clip: rect(0 0 0 0);
33
+ height: 1px;
34
+ margin: -1px;
35
+ overflow: hidden;
36
+ padding: 0;
37
+ position: absolute;
38
+ width: 1px;
39
+ white-space: nowrap;
40
+ outline: 0;
41
+ -webkit-appearance: none;
42
+ -moz-appearance: none;
43
+ left: 0;
44
+ }
45
+ [dir=rtl] .cdk-visually-hidden {
46
+ left: auto;
47
+ right: 0;
48
+ }
49
+
50
+ .cdk-overlay-container, .cdk-global-overlay-wrapper {
51
+ pointer-events: none;
52
+ top: 0;
53
+ left: 0;
54
+ height: 100%;
55
+ width: 100%;
56
+ }
57
+
58
+ .cdk-overlay-container {
59
+ position: fixed;
60
+ z-index: 1000;
61
+ }
62
+ .cdk-overlay-container:empty {
63
+ display: none;
64
+ }
65
+
66
+ .cdk-global-overlay-wrapper {
67
+ display: flex;
68
+ position: absolute;
69
+ z-index: 1000;
70
+ }
71
+
72
+ .cdk-overlay-pane {
73
+ position: absolute;
74
+ pointer-events: auto;
75
+ box-sizing: border-box;
76
+ z-index: 1000;
77
+ display: flex;
78
+ max-width: 100%;
79
+ max-height: 100%;
80
+ }
81
+
82
+ .cdk-overlay-backdrop {
83
+ position: absolute;
84
+ top: 0;
85
+ bottom: 0;
86
+ left: 0;
87
+ right: 0;
88
+ z-index: 1000;
89
+ pointer-events: auto;
90
+ -webkit-tap-highlight-color: transparent;
91
+ transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
92
+ opacity: 0;
93
+ }
94
+ .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
95
+ opacity: 1;
96
+ }
97
+ .cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
98
+ opacity: 0.6;
99
+ }
100
+
101
+ .cdk-overlay-dark-backdrop {
102
+ background: rgba(0, 0, 0, 0.32);
103
+ }
104
+
105
+ .cdk-overlay-transparent-backdrop {
106
+ transition: visibility 1ms linear, opacity 1ms linear;
107
+ visibility: hidden;
108
+ opacity: 1;
109
+ }
110
+ .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
111
+ opacity: 0;
112
+ visibility: visible;
113
+ }
114
+
115
+ .cdk-overlay-backdrop-noop-animation {
116
+ transition: none;
117
+ }
118
+
119
+ .cdk-overlay-connected-position-bounding-box {
120
+ position: absolute;
121
+ z-index: 1000;
122
+ display: flex;
123
+ flex-direction: column;
124
+ min-width: 1px;
125
+ min-height: 1px;
126
+ }
127
+
128
+ .cdk-global-scrollblock {
129
+ position: fixed;
130
+ width: 100%;
131
+ overflow-y: scroll;
132
+ }
133
+
134
+ textarea.cdk-textarea-autosize {
135
+ resize: none;
136
+ }
137
+
138
+ textarea.cdk-textarea-autosize-measuring {
139
+ padding: 2px 0 !important;
140
+ box-sizing: content-box !important;
141
+ height: auto !important;
142
+ overflow: hidden !important;
143
+ }
144
+
145
+ textarea.cdk-textarea-autosize-measuring-firefox {
146
+ padding: 2px 0 !important;
147
+ box-sizing: content-box !important;
148
+ height: 0 !important;
149
+ }
150
+
151
+ @keyframes cdk-text-field-autofill-start { /*!*/ }
152
+ @keyframes cdk-text-field-autofill-end { /*!*/ }
153
+ .cdk-text-field-autofill-monitored:-webkit-autofill {
154
+ animation: cdk-text-field-autofill-start 0s 1ms;
155
+ }
156
+
157
+ .cdk-text-field-autofill-monitored:not(:-webkit-autofill) {
158
+ animation: cdk-text-field-autofill-end 0s 1ms;
159
+ }
160
+
161
+ .mat-focus-indicator {
162
+ position: relative;
163
+ }
164
+ .mat-focus-indicator::before {
165
+ top: 0;
166
+ left: 0;
167
+ right: 0;
168
+ bottom: 0;
169
+ position: absolute;
170
+ box-sizing: border-box;
171
+ pointer-events: none;
172
+ display: var(--mat-focus-indicator-display, none);
173
+ border: var(--mat-focus-indicator-border-width, 3px) var(--mat-focus-indicator-border-style, solid) var(--mat-focus-indicator-border-color, transparent);
174
+ border-radius: var(--mat-focus-indicator-border-radius, 4px);
175
+ }
176
+ .mat-focus-indicator:focus::before {
177
+ content: "";
178
+ }
179
+
180
+ .cdk-high-contrast-active {
181
+ --mat-focus-indicator-display: block;
182
+ }
183
+
184
+ .mat-mdc-focus-indicator {
185
+ position: relative;
186
+ }
187
+ .mat-mdc-focus-indicator::before {
188
+ top: 0;
189
+ left: 0;
190
+ right: 0;
191
+ bottom: 0;
192
+ position: absolute;
193
+ box-sizing: border-box;
194
+ pointer-events: none;
195
+ display: var(--mat-mdc-focus-indicator-display, none);
196
+ border: var(--mat-mdc-focus-indicator-border-width, 3px) var(--mat-mdc-focus-indicator-border-style, solid) var(--mat-mdc-focus-indicator-border-color, transparent);
197
+ border-radius: var(--mat-mdc-focus-indicator-border-radius, 4px);
198
+ }
199
+ .mat-mdc-focus-indicator:focus::before {
200
+ content: "";
201
+ }
202
+
203
+ .cdk-high-contrast-active {
204
+ --mat-mdc-focus-indicator-display: block;
205
+ }
206
+
207
+ .mat-h1,
208
+ .mat-headline-5,
209
+ .mat-typography .mat-h1,
210
+ .mat-typography .mat-headline-5,
211
+ .mat-typography h1 {
212
+ font-size: 32px;
213
+ font-weight: 500;
214
+ line-height: 38px;
215
+ font-family: Roboto, sans-serif;
216
+ letter-spacing: normal;
217
+ margin: 0 0 16px;
218
+ }
219
+
220
+ .mat-h2,
221
+ .mat-headline-6,
222
+ .mat-typography .mat-h2,
223
+ .mat-typography .mat-headline-6,
224
+ .mat-typography h2 {
225
+ font-size: 22px;
226
+ font-weight: 500;
227
+ line-height: 30px;
228
+ font-family: Roboto, sans-serif;
229
+ letter-spacing: normal;
230
+ margin: 0 0 16px;
231
+ }
232
+
233
+ .mat-h3,
234
+ .mat-subtitle-1,
235
+ .mat-typography .mat-h3,
236
+ .mat-typography .mat-subtitle-1,
237
+ .mat-typography h3 {
238
+ font-size: 18px;
239
+ font-weight: 500;
240
+ line-height: 26px;
241
+ font-family: Roboto, sans-serif;
242
+ letter-spacing: normal;
243
+ margin: 0 0 16px;
244
+ }
245
+
246
+ .mat-h4,
247
+ .mat-body-1,
248
+ .mat-typography .mat-h4,
249
+ .mat-typography .mat-body-1,
250
+ .mat-typography h4 {
251
+ font-size: 14px;
252
+ font-weight: 400;
253
+ line-height: 22px;
254
+ font-family: Roboto, sans-serif;
255
+ letter-spacing: normal;
256
+ margin: 0 0 16px;
257
+ }
258
+
259
+ .mat-h5,
260
+ .mat-typography .mat-h5,
261
+ .mat-typography h5 {
262
+ font: 400 calc(12px * 0.83) / 18px Roboto, sans-serif;
263
+ margin: 0 0 12px;
264
+ }
265
+
266
+ .mat-h6,
267
+ .mat-typography .mat-h6,
268
+ .mat-typography h6 {
269
+ font: 400 calc(12px * 0.67) / 18px Roboto, sans-serif;
270
+ margin: 0 0 12px;
271
+ }
272
+
273
+ .mat-body-strong,
274
+ .mat-subtitle-2,
275
+ .mat-typography .mat-body-strong,
276
+ .mat-typography .mat-subtitle-2 {
277
+ font-size: 16px;
278
+ font-weight: 500;
279
+ line-height: 22px;
280
+ font-family: Roboto, sans-serif;
281
+ letter-spacing: normal;
282
+ }
283
+
284
+ .mat-body,
285
+ .mat-body-2,
286
+ .mat-typography .mat-body,
287
+ .mat-typography .mat-body-2,
288
+ .mat-typography {
289
+ font-size: 12px;
290
+ font-weight: 400;
291
+ line-height: 18px;
292
+ font-family: Roboto, sans-serif;
293
+ letter-spacing: normal;
294
+ }
295
+ .mat-body p,
296
+ .mat-body-2 p,
297
+ .mat-typography .mat-body p,
298
+ .mat-typography .mat-body-2 p,
299
+ .mat-typography p {
300
+ margin: 0 0 12px;
301
+ }
302
+
303
+ .mat-small,
304
+ .mat-caption,
305
+ .mat-typography .mat-small,
306
+ .mat-typography .mat-caption {
307
+ font-size: 12px;
308
+ font-weight: 400;
309
+ line-height: 18px;
310
+ font-family: Roboto, sans-serif;
311
+ letter-spacing: normal;
312
+ }
313
+
314
+ .mat-headline-1,
315
+ .mat-typography .mat-headline-1 {
316
+ font-size: 110px;
317
+ font-weight: 500;
318
+ line-height: 110px;
319
+ font-family: Roboto, sans-serif;
320
+ letter-spacing: normal;
321
+ margin: 0 0 56px;
322
+ }
323
+
324
+ .mat-headline-2,
325
+ .mat-typography .mat-headline-2 {
326
+ font-size: 54px;
327
+ font-weight: 500;
328
+ line-height: 54px;
329
+ font-family: Roboto, sans-serif;
330
+ letter-spacing: normal;
331
+ margin: 0 0 64px;
332
+ }
333
+
334
+ .mat-headline-3,
335
+ .mat-typography .mat-headline-3 {
336
+ font-size: 43px;
337
+ font-weight: 500;
338
+ line-height: 46px;
339
+ font-family: Roboto, sans-serif;
340
+ letter-spacing: normal;
341
+ margin: 0 0 64px;
342
+ }
343
+
344
+ .mat-headline-4,
345
+ .mat-typography .mat-headline-4 {
346
+ font-size: 32px;
347
+ font-weight: 500;
348
+ line-height: 38px;
349
+ font-family: Roboto, sans-serif;
350
+ letter-spacing: normal;
351
+ margin: 0 0 64px;
352
+ }
353
+
354
+ .mat-ripple-element {
355
+ background-color: rgba(255, 255, 255, 0.1);
356
+ }
357
+
358
+ html {
359
+ --mat-option-selected-state-label-text-color: #607d8b;
360
+ --mat-option-label-text-color: white;
361
+ --mat-option-hover-state-layer-color: rgba(255, 255, 255, 0.08);
362
+ --mat-option-focus-state-layer-color: rgba(255, 255, 255, 0.08);
363
+ --mat-option-selected-state-layer-color: rgba(255, 255, 255, 0.08);
364
+ }
365
+
366
+ .mat-accent {
367
+ --mat-option-selected-state-label-text-color: #ff4081;
368
+ }
369
+
370
+ .mat-warn {
371
+ --mat-option-selected-state-label-text-color: #ff5722;
372
+ }
373
+
374
+ html {
375
+ --mat-optgroup-label-text-color: white;
376
+ }
377
+
378
+ .mat-pseudo-checkbox-full {
379
+ color: rgba(255, 255, 255, 0.7);
380
+ }
381
+ .mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled {
382
+ color: #686868;
383
+ }
384
+
385
+ .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
386
+ .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
387
+ color: #607d8b;
388
+ }
389
+ .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
390
+ .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
391
+ background: #607d8b;
392
+ }
393
+ .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,
394
+ .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after {
395
+ color: #303030;
396
+ }
397
+
398
+ .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
399
+ .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
400
+ color: #ff4081;
401
+ }
402
+ .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
403
+ .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
404
+ background: #ff4081;
405
+ }
406
+ .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,
407
+ .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after {
408
+ color: #303030;
409
+ }
410
+
411
+ .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
412
+ .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
413
+ color: #ff4081;
414
+ }
415
+ .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
416
+ .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
417
+ background: #ff4081;
418
+ }
419
+ .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,
420
+ .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after {
421
+ color: #303030;
422
+ }
423
+
424
+ .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
425
+ .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
426
+ color: #ff5722;
427
+ }
428
+ .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
429
+ .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
430
+ background: #ff5722;
431
+ }
432
+ .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,
433
+ .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after {
434
+ color: #303030;
435
+ }
436
+
437
+ .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
438
+ .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
439
+ color: #686868;
440
+ }
441
+ .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
442
+ .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
443
+ background: #686868;
444
+ }
445
+
446
+ .mat-app-background {
447
+ background-color: #303030;
448
+ color: white;
449
+ }
450
+
451
+ .mat-elevation-z0, .mat-mdc-elevation-specific.mat-elevation-z0 {
452
+ box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
453
+ }
454
+
455
+ .mat-elevation-z1, .mat-mdc-elevation-specific.mat-elevation-z1 {
456
+ box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
457
+ }
458
+
459
+ .mat-elevation-z2, .mat-mdc-elevation-specific.mat-elevation-z2 {
460
+ box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
461
+ }
462
+
463
+ .mat-elevation-z3, .mat-mdc-elevation-specific.mat-elevation-z3 {
464
+ box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
465
+ }
466
+
467
+ .mat-elevation-z4, .mat-mdc-elevation-specific.mat-elevation-z4 {
468
+ box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
469
+ }
470
+
471
+ .mat-elevation-z5, .mat-mdc-elevation-specific.mat-elevation-z5 {
472
+ box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);
473
+ }
474
+
475
+ .mat-elevation-z6, .mat-mdc-elevation-specific.mat-elevation-z6 {
476
+ box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
477
+ }
478
+
479
+ .mat-elevation-z7, .mat-mdc-elevation-specific.mat-elevation-z7 {
480
+ box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
481
+ }
482
+
483
+ .mat-elevation-z8, .mat-mdc-elevation-specific.mat-elevation-z8 {
484
+ box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
485
+ }
486
+
487
+ .mat-elevation-z9, .mat-mdc-elevation-specific.mat-elevation-z9 {
488
+ box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12);
489
+ }
490
+
491
+ .mat-elevation-z10, .mat-mdc-elevation-specific.mat-elevation-z10 {
492
+ box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12);
493
+ }
494
+
495
+ .mat-elevation-z11, .mat-mdc-elevation-specific.mat-elevation-z11 {
496
+ box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12);
497
+ }
498
+
499
+ .mat-elevation-z12, .mat-mdc-elevation-specific.mat-elevation-z12 {
500
+ box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
501
+ }
502
+
503
+ .mat-elevation-z13, .mat-mdc-elevation-specific.mat-elevation-z13 {
504
+ box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);
505
+ }
506
+
507
+ .mat-elevation-z14, .mat-mdc-elevation-specific.mat-elevation-z14 {
508
+ box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12);
509
+ }
510
+
511
+ .mat-elevation-z15, .mat-mdc-elevation-specific.mat-elevation-z15 {
512
+ box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12);
513
+ }
514
+
515
+ .mat-elevation-z16, .mat-mdc-elevation-specific.mat-elevation-z16 {
516
+ box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
517
+ }
518
+
519
+ .mat-elevation-z17, .mat-mdc-elevation-specific.mat-elevation-z17 {
520
+ box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12);
521
+ }
522
+
523
+ .mat-elevation-z18, .mat-mdc-elevation-specific.mat-elevation-z18 {
524
+ box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);
525
+ }
526
+
527
+ .mat-elevation-z19, .mat-mdc-elevation-specific.mat-elevation-z19 {
528
+ box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12);
529
+ }
530
+
531
+ .mat-elevation-z20, .mat-mdc-elevation-specific.mat-elevation-z20 {
532
+ box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12);
533
+ }
534
+
535
+ .mat-elevation-z21, .mat-mdc-elevation-specific.mat-elevation-z21 {
536
+ box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12);
537
+ }
538
+
539
+ .mat-elevation-z22, .mat-mdc-elevation-specific.mat-elevation-z22 {
540
+ box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12);
541
+ }
542
+
543
+ .mat-elevation-z23, .mat-mdc-elevation-specific.mat-elevation-z23 {
544
+ box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12);
545
+ }
546
+
547
+ .mat-elevation-z24, .mat-mdc-elevation-specific.mat-elevation-z24 {
548
+ box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
549
+ }
550
+
551
+ .mat-theme-loaded-marker {
552
+ display: none;
553
+ }
554
+
555
+ html {
556
+ --mat-option-label-text-font: Roboto, sans-serif;
557
+ --mat-option-label-text-line-height: 22px;
558
+ --mat-option-label-text-size: 14px;
559
+ --mat-option-label-text-tracking: normal;
560
+ --mat-option-label-text-weight: 400;
561
+ }
562
+
563
+ html {
564
+ --mat-optgroup-label-text-font: Roboto, sans-serif;
565
+ --mat-optgroup-label-text-line-height: 22px;
566
+ --mat-optgroup-label-text-size: 14px;
567
+ --mat-optgroup-label-text-tracking: normal;
568
+ --mat-optgroup-label-text-weight: 400;
569
+ }
570
+
571
+ .mat-mdc-card {
572
+ --mdc-elevated-card-container-color: #424242;
573
+ --mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
574
+ --mdc-outlined-card-container-color: #424242;
575
+ --mdc-outlined-card-outline-color: rgba(255, 255, 255, 0.12);
576
+ --mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
577
+ --mat-card-subtitle-text-color: rgba(255, 255, 255, 0.7);
578
+ }
579
+
580
+ .mat-mdc-card {
581
+ --mat-card-title-text-font: Roboto, sans-serif;
582
+ --mat-card-title-text-line-height: 30px;
583
+ --mat-card-title-text-size: 22px;
584
+ --mat-card-title-text-tracking: normal;
585
+ --mat-card-title-text-weight: 500;
586
+ --mat-card-subtitle-text-font: Roboto, sans-serif;
587
+ --mat-card-subtitle-text-line-height: 22px;
588
+ --mat-card-subtitle-text-size: 16px;
589
+ --mat-card-subtitle-text-tracking: normal;
590
+ --mat-card-subtitle-text-weight: 500;
591
+ }
592
+
593
+ .mat-mdc-progress-bar {
594
+ --mdc-linear-progress-active-indicator-color: #607d8b;
595
+ --mdc-linear-progress-track-color: rgba(96, 125, 139, 0.25);
596
+ }
597
+ @keyframes mdc-linear-progress-buffering {
598
+ from {
599
+ /* @noflip */ /*rtl:ignore*/
600
+ }
601
+ }
602
+ .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots {
603
+ background-color: rgba(96, 125, 139, 0.25);
604
+ /* @alternate */
605
+ background-color: var(--mdc-linear-progress-track-color, rgba(96, 125, 139, 0.25));
606
+ }
607
+ @media (forced-colors: active) {
608
+ .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots {
609
+ background-color: ButtonBorder;
610
+ }
611
+ }
612
+ @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
613
+ .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots {
614
+ background-color: transparent;
615
+ background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(96, 125, 139, 0.25)'/%3E%3C/svg%3E");
616
+ }
617
+ }
618
+ .mat-mdc-progress-bar .mdc-linear-progress__buffer-bar {
619
+ background-color: rgba(96, 125, 139, 0.25);
620
+ /* @alternate */
621
+ background-color: var(--mdc-linear-progress-track-color, rgba(96, 125, 139, 0.25));
622
+ }
623
+ .mat-mdc-progress-bar.mat-accent {
624
+ --mdc-linear-progress-active-indicator-color: #ff4081;
625
+ --mdc-linear-progress-track-color: rgba(255, 64, 129, 0.25);
626
+ }
627
+ @keyframes mdc-linear-progress-buffering {
628
+ from {
629
+ /* @noflip */ /*rtl:ignore*/
630
+ }
631
+ }
632
+ .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots {
633
+ background-color: rgba(255, 64, 129, 0.25);
634
+ /* @alternate */
635
+ background-color: var(--mdc-linear-progress-track-color, rgba(255, 64, 129, 0.25));
636
+ }
637
+ @media (forced-colors: active) {
638
+ .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots {
639
+ background-color: ButtonBorder;
640
+ }
641
+ }
642
+ @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
643
+ .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots {
644
+ background-color: transparent;
645
+ background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255, 64, 129, 0.25)'/%3E%3C/svg%3E");
646
+ }
647
+ }
648
+ .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-bar {
649
+ background-color: rgba(255, 64, 129, 0.25);
650
+ /* @alternate */
651
+ background-color: var(--mdc-linear-progress-track-color, rgba(255, 64, 129, 0.25));
652
+ }
653
+ .mat-mdc-progress-bar.mat-warn {
654
+ --mdc-linear-progress-active-indicator-color: #ff5722;
655
+ --mdc-linear-progress-track-color: rgba(255, 87, 34, 0.25);
656
+ }
657
+ @keyframes mdc-linear-progress-buffering {
658
+ from {
659
+ /* @noflip */ /*rtl:ignore*/
660
+ }
661
+ }
662
+ .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots {
663
+ background-color: rgba(255, 87, 34, 0.25);
664
+ /* @alternate */
665
+ background-color: var(--mdc-linear-progress-track-color, rgba(255, 87, 34, 0.25));
666
+ }
667
+ @media (forced-colors: active) {
668
+ .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots {
669
+ background-color: ButtonBorder;
670
+ }
671
+ }
672
+ @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
673
+ .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots {
674
+ background-color: transparent;
675
+ background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255, 87, 34, 0.25)'/%3E%3C/svg%3E");
676
+ }
677
+ }
678
+ .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-bar {
679
+ background-color: rgba(255, 87, 34, 0.25);
680
+ /* @alternate */
681
+ background-color: var(--mdc-linear-progress-track-color, rgba(255, 87, 34, 0.25));
682
+ }
683
+ .mat-mdc-tooltip {
684
+ --mdc-plain-tooltip-container-color: #616161;
685
+ --mdc-plain-tooltip-supporting-text-color: #fff;
686
+ }
687
+
688
+ .mat-mdc-tooltip {
689
+ --mdc-plain-tooltip-supporting-text-font: Roboto, sans-serif;
690
+ --mdc-plain-tooltip-supporting-text-size: 12px;
691
+ --mdc-plain-tooltip-supporting-text-weight: 400;
692
+ --mdc-plain-tooltip-supporting-text-tracking: normal;
693
+ }
694
+
695
+ html {
696
+ --mdc-filled-text-field-caret-color: #607d8b;
697
+ --mdc-filled-text-field-focus-active-indicator-color: #607d8b;
698
+ --mdc-filled-text-field-focus-label-text-color: rgba(96, 125, 139, 0.87);
699
+ --mdc-filled-text-field-container-color: #4a4a4a;
700
+ --mdc-filled-text-field-disabled-container-color: #464646;
701
+ --mdc-filled-text-field-label-text-color: rgba(255, 255, 255, 0.6);
702
+ --mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, 0.38);
703
+ --mdc-filled-text-field-input-text-color: rgba(255, 255, 255, 0.87);
704
+ --mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, 0.38);
705
+ --mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, 0.6);
706
+ --mdc-filled-text-field-error-focus-label-text-color: #ff5722;
707
+ --mdc-filled-text-field-error-label-text-color: #ff5722;
708
+ --mdc-filled-text-field-error-caret-color: #ff5722;
709
+ --mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, 0.42);
710
+ --mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, 0.06);
711
+ --mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, 0.87);
712
+ --mdc-filled-text-field-error-active-indicator-color: #ff5722;
713
+ --mdc-filled-text-field-error-focus-active-indicator-color: #ff5722;
714
+ --mdc-filled-text-field-error-hover-active-indicator-color: #ff5722;
715
+ --mdc-outlined-text-field-caret-color: #607d8b;
716
+ --mdc-outlined-text-field-focus-outline-color: #607d8b;
717
+ --mdc-outlined-text-field-focus-label-text-color: rgba(96, 125, 139, 0.87);
718
+ --mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, 0.6);
719
+ --mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, 0.38);
720
+ --mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, 0.87);
721
+ --mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, 0.38);
722
+ --mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, 0.6);
723
+ --mdc-outlined-text-field-error-caret-color: #ff5722;
724
+ --mdc-outlined-text-field-error-focus-label-text-color: #ff5722;
725
+ --mdc-outlined-text-field-error-label-text-color: #ff5722;
726
+ --mdc-outlined-text-field-outline-color: rgba(255, 255, 255, 0.38);
727
+ --mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, 0.06);
728
+ --mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, 0.87);
729
+ --mdc-outlined-text-field-error-focus-outline-color: #ff5722;
730
+ --mdc-outlined-text-field-error-hover-outline-color: #ff5722;
731
+ --mdc-outlined-text-field-error-outline-color: #ff5722;
732
+ --mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, 0.38);
733
+ }
734
+
735
+ .mat-mdc-form-field-error {
736
+ color: var(--mdc-theme-error, #ff5722);
737
+ }
738
+
739
+ .mat-mdc-form-field-subscript-wrapper,
740
+ .mat-mdc-form-field-bottom-align::before {
741
+ -moz-osx-font-smoothing: grayscale;
742
+ -webkit-font-smoothing: antialiased;
743
+ font-family: var(--mat-form-field-subscript-text-font);
744
+ line-height: var(--mat-form-field-subscript-text-line-height);
745
+ font-size: var(--mat-form-field-subscript-text-size);
746
+ letter-spacing: var(--mat-form-field-subscript-text-tracking);
747
+ font-weight: var(--mat-form-field-subscript-text-weight);
748
+ }
749
+
750
+ .mat-mdc-form-field-focus-overlay {
751
+ background-color: rgba(255, 255, 255, 0.87);
752
+ }
753
+
754
+ .mat-mdc-form-field:hover .mat-mdc-form-field-focus-overlay {
755
+ opacity: 0.08;
756
+ }
757
+
758
+ .mat-mdc-form-field.mat-focused .mat-mdc-form-field-focus-overlay {
759
+ opacity: 0.24;
760
+ }
761
+
762
+ select.mat-mdc-form-field-input-control:not(.mat-mdc-native-select-inline) option {
763
+ color: rgba(0, 0, 0, 0.87);
764
+ }
765
+ select.mat-mdc-form-field-input-control:not(.mat-mdc-native-select-inline) option:disabled {
766
+ color: rgba(0, 0, 0, 0.38);
767
+ }
768
+
769
+ .mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-infix::after {
770
+ color: rgba(255, 255, 255, 0.54);
771
+ }
772
+ .mat-mdc-form-field-type-mat-native-select.mat-focused.mat-primary .mat-mdc-form-field-infix::after {
773
+ color: rgba(96, 125, 139, 0.87);
774
+ }
775
+ .mat-mdc-form-field-type-mat-native-select.mat-focused.mat-accent .mat-mdc-form-field-infix::after {
776
+ color: rgba(255, 64, 129, 0.87);
777
+ }
778
+ .mat-mdc-form-field-type-mat-native-select.mat-focused.mat-warn .mat-mdc-form-field-infix::after {
779
+ color: rgba(255, 87, 34, 0.87);
780
+ }
781
+ .mat-mdc-form-field-type-mat-native-select.mat-form-field-disabled .mat-mdc-form-field-infix::after {
782
+ color: rgba(255, 255, 255, 0.38);
783
+ }
784
+
785
+ .mat-mdc-form-field.mat-accent {
786
+ --mdc-filled-text-field-caret-color: #ff4081;
787
+ --mdc-filled-text-field-focus-active-indicator-color: #ff4081;
788
+ --mdc-filled-text-field-focus-label-text-color: rgba(255, 64, 129, 0.87);
789
+ --mdc-outlined-text-field-caret-color: #ff4081;
790
+ --mdc-outlined-text-field-focus-outline-color: #ff4081;
791
+ --mdc-outlined-text-field-focus-label-text-color: rgba(255, 64, 129, 0.87);
792
+ }
793
+
794
+ .mat-mdc-form-field.mat-warn {
795
+ --mdc-filled-text-field-caret-color: #ff5722;
796
+ --mdc-filled-text-field-focus-active-indicator-color: #ff5722;
797
+ --mdc-filled-text-field-focus-label-text-color: rgba(255, 87, 34, 0.87);
798
+ --mdc-outlined-text-field-caret-color: #ff5722;
799
+ --mdc-outlined-text-field-focus-outline-color: #ff5722;
800
+ --mdc-outlined-text-field-focus-label-text-color: rgba(255, 87, 34, 0.87);
801
+ }
802
+
803
+ .mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field .mdc-notched-outline__notch {
804
+ border-left: 1px solid transparent;
805
+ }
806
+
807
+ [dir=rtl] .mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field .mdc-notched-outline__notch {
808
+ border-left: none;
809
+ border-right: 1px solid transparent;
810
+ }
811
+
812
+ .mat-mdc-form-field-infix {
813
+ min-height: 56px;
814
+ }
815
+
816
+ .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label {
817
+ top: 28px;
818
+ }
819
+
820
+ .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
821
+ --mat-mdc-form-field-label-transform: translateY(
822
+ -34.75px)
823
+ scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));
824
+ transform: var(--mat-mdc-form-field-label-transform);
825
+ }
826
+
827
+ .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
828
+ padding-top: 16px;
829
+ padding-bottom: 16px;
830
+ }
831
+
832
+ .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix {
833
+ padding-top: 24px;
834
+ padding-bottom: 8px;
835
+ }
836
+
837
+ .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mat-mdc-form-field-infix {
838
+ padding-top: 16px;
839
+ padding-bottom: 16px;
840
+ }
841
+
842
+ html {
843
+ --mdc-filled-text-field-label-text-font: Roboto, sans-serif;
844
+ --mdc-filled-text-field-label-text-size: 14px;
845
+ --mdc-filled-text-field-label-text-tracking: normal;
846
+ --mdc-filled-text-field-label-text-weight: 400;
847
+ --mdc-outlined-text-field-label-text-font: Roboto, sans-serif;
848
+ --mdc-outlined-text-field-label-text-size: 14px;
849
+ --mdc-outlined-text-field-label-text-tracking: normal;
850
+ --mdc-outlined-text-field-label-text-weight: 400;
851
+ --mat-form-field-container-text-font: Roboto, sans-serif;
852
+ --mat-form-field-container-text-line-height: 22px;
853
+ --mat-form-field-container-text-size: 14px;
854
+ --mat-form-field-container-text-tracking: normal;
855
+ --mat-form-field-container-text-weight: 400;
856
+ --mat-form-field-outlined-label-text-populated-size: 14px;
857
+ --mat-form-field-subscript-text-font: Roboto, sans-serif;
858
+ --mat-form-field-subscript-text-line-height: 18px;
859
+ --mat-form-field-subscript-text-size: 12px;
860
+ --mat-form-field-subscript-text-tracking: normal;
861
+ --mat-form-field-subscript-text-weight: 400;
862
+ }
863
+
864
+ html {
865
+ --mat-select-panel-background-color: #424242;
866
+ --mat-select-enabled-trigger-text-color: rgba(255, 255, 255, 0.87);
867
+ --mat-select-disabled-trigger-text-color: rgba(255, 255, 255, 0.38);
868
+ --mat-select-placeholder-text-color: rgba(255, 255, 255, 0.6);
869
+ --mat-select-enabled-arrow-color: rgba(255, 255, 255, 0.54);
870
+ --mat-select-disabled-arrow-color: rgba(255, 255, 255, 0.38);
871
+ --mat-select-focused-arrow-color: rgba(96, 125, 139, 0.87);
872
+ --mat-select-invalid-arrow-color: rgba(255, 87, 34, 0.87);
873
+ }
874
+ html .mat-mdc-form-field.mat-accent {
875
+ --mat-select-panel-background-color: #424242;
876
+ --mat-select-enabled-trigger-text-color: rgba(255, 255, 255, 0.87);
877
+ --mat-select-disabled-trigger-text-color: rgba(255, 255, 255, 0.38);
878
+ --mat-select-placeholder-text-color: rgba(255, 255, 255, 0.6);
879
+ --mat-select-enabled-arrow-color: rgba(255, 255, 255, 0.54);
880
+ --mat-select-disabled-arrow-color: rgba(255, 255, 255, 0.38);
881
+ --mat-select-focused-arrow-color: rgba(255, 64, 129, 0.87);
882
+ --mat-select-invalid-arrow-color: rgba(255, 87, 34, 0.87);
883
+ }
884
+ html .mat-mdc-form-field.mat-warn {
885
+ --mat-select-panel-background-color: #424242;
886
+ --mat-select-enabled-trigger-text-color: rgba(255, 255, 255, 0.87);
887
+ --mat-select-disabled-trigger-text-color: rgba(255, 255, 255, 0.38);
888
+ --mat-select-placeholder-text-color: rgba(255, 255, 255, 0.6);
889
+ --mat-select-enabled-arrow-color: rgba(255, 255, 255, 0.54);
890
+ --mat-select-disabled-arrow-color: rgba(255, 255, 255, 0.38);
891
+ --mat-select-focused-arrow-color: rgba(255, 87, 34, 0.87);
892
+ --mat-select-invalid-arrow-color: rgba(255, 87, 34, 0.87);
893
+ }
894
+
895
+ html {
896
+ --mat-select-trigger-text-font: Roboto, sans-serif;
897
+ --mat-select-trigger-text-line-height: 22px;
898
+ --mat-select-trigger-text-size: 14px;
899
+ --mat-select-trigger-text-tracking: normal;
900
+ --mat-select-trigger-text-weight: 400;
901
+ }
902
+
903
+ html {
904
+ --mat-autocomplete-background-color: #424242;
905
+ }
906
+
907
+ .mat-mdc-dialog-container {
908
+ --mdc-dialog-container-color: #424242;
909
+ --mdc-dialog-subhead-color: rgba(255, 255, 255, 0.87);
910
+ --mdc-dialog-supporting-text-color: rgba(255, 255, 255, 0.6);
911
+ }
912
+
913
+ .mat-mdc-dialog-container {
914
+ --mdc-dialog-subhead-font: Roboto, sans-serif;
915
+ --mdc-dialog-subhead-line-height: 30px;
916
+ --mdc-dialog-subhead-size: 22px;
917
+ --mdc-dialog-subhead-weight: 500;
918
+ --mdc-dialog-subhead-tracking: normal;
919
+ --mdc-dialog-supporting-text-font: Roboto, sans-serif;
920
+ --mdc-dialog-supporting-text-line-height: 22px;
921
+ --mdc-dialog-supporting-text-size: 14px;
922
+ --mdc-dialog-supporting-text-weight: 400;
923
+ --mdc-dialog-supporting-text-tracking: normal;
924
+ }
925
+
926
+ .mat-mdc-standard-chip {
927
+ --mdc-chip-disabled-label-text-color: #fafafa;
928
+ --mdc-chip-elevated-container-color: #595959;
929
+ --mdc-chip-elevated-disabled-container-color: #595959;
930
+ --mdc-chip-focus-state-layer-color: white;
931
+ --mdc-chip-focus-state-layer-opacity: 0.12;
932
+ --mdc-chip-label-text-color: #fafafa;
933
+ --mdc-chip-with-icon-icon-color: #fafafa;
934
+ --mdc-chip-with-icon-disabled-icon-color: #fafafa;
935
+ --mdc-chip-with-icon-selected-icon-color: #fafafa;
936
+ --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;
937
+ --mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;
938
+ }
939
+ .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary, .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary {
940
+ --mdc-chip-disabled-label-text-color: white;
941
+ --mdc-chip-elevated-container-color: #607d8b;
942
+ --mdc-chip-elevated-disabled-container-color: #607d8b;
943
+ --mdc-chip-focus-state-layer-color: white;
944
+ --mdc-chip-focus-state-layer-opacity: 0.12;
945
+ --mdc-chip-label-text-color: white;
946
+ --mdc-chip-with-icon-icon-color: white;
947
+ --mdc-chip-with-icon-disabled-icon-color: white;
948
+ --mdc-chip-with-icon-selected-icon-color: white;
949
+ --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
950
+ --mdc-chip-with-trailing-icon-trailing-icon-color: white;
951
+ }
952
+ .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent, .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent {
953
+ --mdc-chip-disabled-label-text-color: white;
954
+ --mdc-chip-elevated-container-color: #ff4081;
955
+ --mdc-chip-elevated-disabled-container-color: #ff4081;
956
+ --mdc-chip-focus-state-layer-color: white;
957
+ --mdc-chip-focus-state-layer-opacity: 0.12;
958
+ --mdc-chip-label-text-color: white;
959
+ --mdc-chip-with-icon-icon-color: white;
960
+ --mdc-chip-with-icon-disabled-icon-color: white;
961
+ --mdc-chip-with-icon-selected-icon-color: white;
962
+ --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
963
+ --mdc-chip-with-trailing-icon-trailing-icon-color: white;
964
+ }
965
+ .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn, .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn {
966
+ --mdc-chip-disabled-label-text-color: white;
967
+ --mdc-chip-elevated-container-color: #ff5722;
968
+ --mdc-chip-elevated-disabled-container-color: #ff5722;
969
+ --mdc-chip-focus-state-layer-color: white;
970
+ --mdc-chip-focus-state-layer-opacity: 0.12;
971
+ --mdc-chip-label-text-color: white;
972
+ --mdc-chip-with-icon-icon-color: white;
973
+ --mdc-chip-with-icon-disabled-icon-color: white;
974
+ --mdc-chip-with-icon-selected-icon-color: white;
975
+ --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
976
+ --mdc-chip-with-trailing-icon-trailing-icon-color: white;
977
+ }
978
+
979
+ .mat-mdc-chip.mat-mdc-standard-chip {
980
+ --mdc-chip-container-height: 32px;
981
+ }
982
+
983
+ .mat-mdc-standard-chip {
984
+ --mdc-chip-label-text-font: Roboto, sans-serif;
985
+ --mdc-chip-label-text-line-height: 18px;
986
+ --mdc-chip-label-text-size: 12px;
987
+ --mdc-chip-label-text-tracking: normal;
988
+ --mdc-chip-label-text-weight: 400;
989
+ }
990
+
991
+ .mat-mdc-slide-toggle {
992
+ --mdc-switch-selected-focus-state-layer-color: #90a4ae;
993
+ --mdc-switch-selected-handle-color: #90a4ae;
994
+ --mdc-switch-selected-hover-state-layer-color: #90a4ae;
995
+ --mdc-switch-selected-pressed-state-layer-color: #90a4ae;
996
+ --mdc-switch-selected-focus-handle-color: #b0bec5;
997
+ --mdc-switch-selected-hover-handle-color: #b0bec5;
998
+ --mdc-switch-selected-pressed-handle-color: #b0bec5;
999
+ --mdc-switch-selected-focus-track-color: #546e7a;
1000
+ --mdc-switch-selected-hover-track-color: #546e7a;
1001
+ --mdc-switch-selected-pressed-track-color: #546e7a;
1002
+ --mdc-switch-selected-track-color: #546e7a;
1003
+ --mdc-switch-disabled-selected-handle-color: #000;
1004
+ --mdc-switch-disabled-selected-icon-color: #212121;
1005
+ --mdc-switch-disabled-selected-track-color: #f5f5f5;
1006
+ --mdc-switch-disabled-unselected-handle-color: #000;
1007
+ --mdc-switch-disabled-unselected-icon-color: #212121;
1008
+ --mdc-switch-disabled-unselected-track-color: #f5f5f5;
1009
+ --mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);
1010
+ --mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
1011
+ --mdc-switch-handle-shadow-color: black;
1012
+ --mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
1013
+ --mdc-switch-selected-icon-color: #212121;
1014
+ --mdc-switch-unselected-focus-handle-color: #fafafa;
1015
+ --mdc-switch-unselected-focus-state-layer-color: #f5f5f5;
1016
+ --mdc-switch-unselected-focus-track-color: #616161;
1017
+ --mdc-switch-unselected-handle-color: #9e9e9e;
1018
+ --mdc-switch-unselected-hover-handle-color: #fafafa;
1019
+ --mdc-switch-unselected-hover-state-layer-color: #f5f5f5;
1020
+ --mdc-switch-unselected-hover-track-color: #616161;
1021
+ --mdc-switch-unselected-icon-color: #212121;
1022
+ --mdc-switch-unselected-pressed-handle-color: #fafafa;
1023
+ --mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;
1024
+ --mdc-switch-unselected-pressed-track-color: #616161;
1025
+ --mdc-switch-unselected-track-color: #616161;
1026
+ }
1027
+ .mat-mdc-slide-toggle .mdc-form-field {
1028
+ color: var(--mdc-theme-text-primary-on-background, white);
1029
+ }
1030
+ .mat-mdc-slide-toggle .mdc-switch--disabled + label {
1031
+ color: rgba(255, 255, 255, 0.5);
1032
+ }
1033
+ .mat-mdc-slide-toggle.mat-accent {
1034
+ --mdc-switch-selected-focus-state-layer-color: #f06292;
1035
+ --mdc-switch-selected-handle-color: #f06292;
1036
+ --mdc-switch-selected-hover-state-layer-color: #f06292;
1037
+ --mdc-switch-selected-pressed-state-layer-color: #f06292;
1038
+ --mdc-switch-selected-focus-handle-color: #f48fb1;
1039
+ --mdc-switch-selected-hover-handle-color: #f48fb1;
1040
+ --mdc-switch-selected-pressed-handle-color: #f48fb1;
1041
+ --mdc-switch-selected-focus-track-color: #d81b60;
1042
+ --mdc-switch-selected-hover-track-color: #d81b60;
1043
+ --mdc-switch-selected-pressed-track-color: #d81b60;
1044
+ --mdc-switch-selected-track-color: #d81b60;
1045
+ }
1046
+ .mat-mdc-slide-toggle.mat-warn {
1047
+ --mdc-switch-selected-focus-state-layer-color: #ff8a65;
1048
+ --mdc-switch-selected-handle-color: #ff8a65;
1049
+ --mdc-switch-selected-hover-state-layer-color: #ff8a65;
1050
+ --mdc-switch-selected-pressed-state-layer-color: #ff8a65;
1051
+ --mdc-switch-selected-focus-handle-color: #ffab91;
1052
+ --mdc-switch-selected-hover-handle-color: #ffab91;
1053
+ --mdc-switch-selected-pressed-handle-color: #ffab91;
1054
+ --mdc-switch-selected-focus-track-color: #f4511e;
1055
+ --mdc-switch-selected-hover-track-color: #f4511e;
1056
+ --mdc-switch-selected-pressed-track-color: #f4511e;
1057
+ --mdc-switch-selected-track-color: #f4511e;
1058
+ }
1059
+
1060
+ .mat-mdc-slide-toggle {
1061
+ --mdc-switch-state-layer-size: 48px;
1062
+ }
1063
+
1064
+ .mat-mdc-slide-toggle {
1065
+ --mat-slide-toggle-label-text-font: Roboto, sans-serif;
1066
+ --mat-slide-toggle-label-text-size: 12px;
1067
+ --mat-slide-toggle-label-text-tracking: normal;
1068
+ --mat-slide-toggle-label-text-line-height: 18px;
1069
+ --mat-slide-toggle-label-text-weight: 400;
1070
+ }
1071
+ .mat-mdc-slide-toggle .mdc-form-field {
1072
+ -moz-osx-font-smoothing: grayscale;
1073
+ -webkit-font-smoothing: antialiased;
1074
+ font-family: Roboto, sans-serif;
1075
+ /* @alternate */
1076
+ font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
1077
+ font-size: 0.875rem;
1078
+ /* @alternate */
1079
+ font-size: var(--mdc-typography-body2-font-size, 0.875rem);
1080
+ line-height: 1.25rem;
1081
+ /* @alternate */
1082
+ line-height: var(--mdc-typography-body2-line-height, 1.25rem);
1083
+ font-weight: 400;
1084
+ /* @alternate */
1085
+ font-weight: var(--mdc-typography-body2-font-weight, 400);
1086
+ letter-spacing: 0.0178571429em;
1087
+ /* @alternate */
1088
+ letter-spacing: var(--mdc-typography-body2-letter-spacing, 0.0178571429em);
1089
+ text-decoration: inherit;
1090
+ /* @alternate */
1091
+ text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
1092
+ text-transform: inherit;
1093
+ /* @alternate */
1094
+ text-transform: var(--mdc-typography-body2-text-transform, inherit);
1095
+ }
1096
+
1097
+ .mat-mdc-radio-button .mdc-form-field {
1098
+ color: var(--mdc-theme-text-primary-on-background, white);
1099
+ }
1100
+
1101
+ .mat-mdc-radio-button.mat-primary {
1102
+ --mdc-radio-disabled-selected-icon-color: #fff;
1103
+ --mdc-radio-disabled-unselected-icon-color: #fff;
1104
+ --mdc-radio-unselected-hover-icon-color: #eeeeee;
1105
+ --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
1106
+ --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
1107
+ --mdc-radio-selected-focus-icon-color: #607d8b;
1108
+ --mdc-radio-selected-hover-icon-color: #607d8b;
1109
+ --mdc-radio-selected-icon-color: #607d8b;
1110
+ --mdc-radio-selected-pressed-icon-color: #607d8b;
1111
+ --mat-radio-ripple-color: #fff;
1112
+ --mat-radio-checked-ripple-color: #607d8b;
1113
+ --mat-radio-disabled-label-color: rgba(255, 255, 255, 0.5);
1114
+ }
1115
+ .mat-mdc-radio-button.mat-accent {
1116
+ --mdc-radio-disabled-selected-icon-color: #fff;
1117
+ --mdc-radio-disabled-unselected-icon-color: #fff;
1118
+ --mdc-radio-unselected-hover-icon-color: #eeeeee;
1119
+ --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
1120
+ --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
1121
+ --mdc-radio-selected-focus-icon-color: #ff4081;
1122
+ --mdc-radio-selected-hover-icon-color: #ff4081;
1123
+ --mdc-radio-selected-icon-color: #ff4081;
1124
+ --mdc-radio-selected-pressed-icon-color: #ff4081;
1125
+ --mat-radio-ripple-color: #fff;
1126
+ --mat-radio-checked-ripple-color: #ff4081;
1127
+ --mat-radio-disabled-label-color: rgba(255, 255, 255, 0.5);
1128
+ }
1129
+ .mat-mdc-radio-button.mat-warn {
1130
+ --mdc-radio-disabled-selected-icon-color: #fff;
1131
+ --mdc-radio-disabled-unselected-icon-color: #fff;
1132
+ --mdc-radio-unselected-hover-icon-color: #eeeeee;
1133
+ --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
1134
+ --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
1135
+ --mdc-radio-selected-focus-icon-color: #ff5722;
1136
+ --mdc-radio-selected-hover-icon-color: #ff5722;
1137
+ --mdc-radio-selected-icon-color: #ff5722;
1138
+ --mdc-radio-selected-pressed-icon-color: #ff5722;
1139
+ --mat-radio-ripple-color: #fff;
1140
+ --mat-radio-checked-ripple-color: #ff5722;
1141
+ --mat-radio-disabled-label-color: rgba(255, 255, 255, 0.5);
1142
+ }
1143
+
1144
+ .mat-mdc-radio-button .mdc-radio {
1145
+ --mdc-radio-state-layer-size: 40px;
1146
+ }
1147
+
1148
+ .mat-mdc-radio-button .mdc-form-field {
1149
+ -moz-osx-font-smoothing: grayscale;
1150
+ -webkit-font-smoothing: antialiased;
1151
+ font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
1152
+ font-size: var(--mdc-typography-body2-font-size, 12px);
1153
+ line-height: var(--mdc-typography-body2-line-height, 18px);
1154
+ font-weight: var(--mdc-typography-body2-font-weight, 400);
1155
+ letter-spacing: var(--mdc-typography-body2-letter-spacing, normal);
1156
+ text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
1157
+ text-transform: var(--mdc-typography-body2-text-transform, none);
1158
+ }
1159
+
1160
+ .mat-mdc-slider {
1161
+ --mdc-slider-label-container-color: white;
1162
+ --mdc-slider-label-label-text-color: black;
1163
+ --mdc-slider-disabled-handle-color: #fff;
1164
+ --mdc-slider-disabled-active-track-color: #fff;
1165
+ --mdc-slider-disabled-inactive-track-color: #fff;
1166
+ --mdc-slider-with-tick-marks-disabled-container-color: #fff;
1167
+ --mat-mdc-slider-value-indicator-opacity: 0.9;
1168
+ }
1169
+ .mat-mdc-slider.mat-primary {
1170
+ --mdc-slider-handle-color: #607d8b;
1171
+ --mdc-slider-focus-handle-color: #607d8b;
1172
+ --mdc-slider-hover-handle-color: #607d8b;
1173
+ --mdc-slider-active-track-color: #607d8b;
1174
+ --mdc-slider-inactive-track-color: #607d8b;
1175
+ --mdc-slider-with-tick-marks-active-container-color: #fff;
1176
+ --mdc-slider-with-tick-marks-inactive-container-color: #607d8b;
1177
+ --mat-mdc-slider-ripple-color: #607d8b;
1178
+ --mat-mdc-slider-hover-ripple-color: rgba(96, 125, 139, 0.05);
1179
+ --mat-mdc-slider-focus-ripple-color: rgba(96, 125, 139, 0.2);
1180
+ }
1181
+ .mat-mdc-slider.mat-accent {
1182
+ --mdc-slider-handle-color: #ff4081;
1183
+ --mdc-slider-focus-handle-color: #ff4081;
1184
+ --mdc-slider-hover-handle-color: #ff4081;
1185
+ --mdc-slider-active-track-color: #ff4081;
1186
+ --mdc-slider-inactive-track-color: #ff4081;
1187
+ --mdc-slider-with-tick-marks-active-container-color: #fff;
1188
+ --mdc-slider-with-tick-marks-inactive-container-color: #ff4081;
1189
+ --mat-mdc-slider-ripple-color: #ff4081;
1190
+ --mat-mdc-slider-hover-ripple-color: rgba(255, 64, 129, 0.05);
1191
+ --mat-mdc-slider-focus-ripple-color: rgba(255, 64, 129, 0.2);
1192
+ }
1193
+ .mat-mdc-slider.mat-warn {
1194
+ --mdc-slider-handle-color: #ff5722;
1195
+ --mdc-slider-focus-handle-color: #ff5722;
1196
+ --mdc-slider-hover-handle-color: #ff5722;
1197
+ --mdc-slider-active-track-color: #ff5722;
1198
+ --mdc-slider-inactive-track-color: #ff5722;
1199
+ --mdc-slider-with-tick-marks-active-container-color: #fff;
1200
+ --mdc-slider-with-tick-marks-inactive-container-color: #ff5722;
1201
+ --mat-mdc-slider-ripple-color: #ff5722;
1202
+ --mat-mdc-slider-hover-ripple-color: rgba(255, 87, 34, 0.05);
1203
+ --mat-mdc-slider-focus-ripple-color: rgba(255, 87, 34, 0.2);
1204
+ }
1205
+
1206
+ .mat-mdc-slider {
1207
+ --mdc-slider-label-label-text-font: Roboto, sans-serif;
1208
+ --mdc-slider-label-label-text-size: 16px;
1209
+ --mdc-slider-label-label-text-line-height: 22px;
1210
+ --mdc-slider-label-label-text-tracking: normal;
1211
+ --mdc-slider-label-label-text-weight: 500;
1212
+ }
1213
+
1214
+ html {
1215
+ --mat-menu-item-label-text-color: white;
1216
+ --mat-menu-item-icon-color: white;
1217
+ --mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, 0.08);
1218
+ --mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, 0.08);
1219
+ --mat-menu-container-color: #424242;
1220
+ }
1221
+
1222
+ html {
1223
+ --mat-menu-item-label-text-font: Roboto, sans-serif;
1224
+ --mat-menu-item-label-text-size: 14px;
1225
+ --mat-menu-item-label-text-tracking: normal;
1226
+ --mat-menu-item-label-text-line-height: 22px;
1227
+ --mat-menu-item-label-text-weight: 400;
1228
+ }
1229
+
1230
+ .mat-mdc-list-base {
1231
+ --mdc-list-list-item-label-text-color: white;
1232
+ --mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, 0.7);
1233
+ --mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, 0.5);
1234
+ --mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, 0.5);
1235
+ --mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, 0.5);
1236
+ --mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, 0.5);
1237
+ --mdc-list-list-item-disabled-label-text-color: white;
1238
+ --mdc-list-list-item-disabled-leading-icon-color: white;
1239
+ --mdc-list-list-item-disabled-trailing-icon-color: white;
1240
+ --mdc-list-list-item-hover-label-text-color: white;
1241
+ --mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, 0.5);
1242
+ --mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, 0.5);
1243
+ --mdc-list-list-item-focus-label-text-color: white;
1244
+ --mdc-list-list-item-hover-state-layer-color: white;
1245
+ --mdc-list-list-item-hover-state-layer-opacity: 0.08;
1246
+ --mdc-list-list-item-focus-state-layer-color: white;
1247
+ --mdc-list-list-item-focus-state-layer-opacity: 0.24;
1248
+ }
1249
+
1250
+ .mdc-list-item__start,
1251
+ .mdc-list-item__end {
1252
+ --mdc-radio-disabled-selected-icon-color: #fff;
1253
+ --mdc-radio-disabled-unselected-icon-color: #fff;
1254
+ --mdc-radio-unselected-hover-icon-color: #eeeeee;
1255
+ --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
1256
+ --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
1257
+ --mdc-radio-selected-focus-icon-color: #607d8b;
1258
+ --mdc-radio-selected-hover-icon-color: #607d8b;
1259
+ --mdc-radio-selected-icon-color: #607d8b;
1260
+ --mdc-radio-selected-pressed-icon-color: #607d8b;
1261
+ }
1262
+
1263
+ .mat-accent .mdc-list-item__start,
1264
+ .mat-accent .mdc-list-item__end {
1265
+ --mdc-radio-disabled-selected-icon-color: #fff;
1266
+ --mdc-radio-disabled-unselected-icon-color: #fff;
1267
+ --mdc-radio-unselected-hover-icon-color: #eeeeee;
1268
+ --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
1269
+ --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
1270
+ --mdc-radio-selected-focus-icon-color: #ff4081;
1271
+ --mdc-radio-selected-hover-icon-color: #ff4081;
1272
+ --mdc-radio-selected-icon-color: #ff4081;
1273
+ --mdc-radio-selected-pressed-icon-color: #ff4081;
1274
+ }
1275
+
1276
+ .mat-warn .mdc-list-item__start,
1277
+ .mat-warn .mdc-list-item__end {
1278
+ --mdc-radio-disabled-selected-icon-color: #fff;
1279
+ --mdc-radio-disabled-unselected-icon-color: #fff;
1280
+ --mdc-radio-unselected-hover-icon-color: #eeeeee;
1281
+ --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
1282
+ --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
1283
+ --mdc-radio-selected-focus-icon-color: #ff5722;
1284
+ --mdc-radio-selected-hover-icon-color: #ff5722;
1285
+ --mdc-radio-selected-icon-color: #ff5722;
1286
+ --mdc-radio-selected-pressed-icon-color: #ff5722;
1287
+ }
1288
+
1289
+ .mat-mdc-list-option {
1290
+ --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
1291
+ --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
1292
+ --mdc-checkbox-selected-checkmark-color: #fff;
1293
+ --mdc-checkbox-selected-focus-icon-color: #607d8b;
1294
+ --mdc-checkbox-selected-hover-icon-color: #607d8b;
1295
+ --mdc-checkbox-selected-icon-color: #607d8b;
1296
+ --mdc-checkbox-selected-pressed-icon-color: #607d8b;
1297
+ --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
1298
+ --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
1299
+ --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
1300
+ --mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
1301
+ --mdc-checkbox-selected-focus-state-layer-color: #607d8b;
1302
+ --mdc-checkbox-selected-hover-state-layer-color: #607d8b;
1303
+ --mdc-checkbox-selected-pressed-state-layer-color: #607d8b;
1304
+ --mdc-checkbox-unselected-focus-state-layer-color: white;
1305
+ --mdc-checkbox-unselected-hover-state-layer-color: white;
1306
+ --mdc-checkbox-unselected-pressed-state-layer-color: white;
1307
+ }
1308
+
1309
+ .mat-mdc-list-option.mat-accent {
1310
+ --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
1311
+ --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
1312
+ --mdc-checkbox-selected-checkmark-color: #fff;
1313
+ --mdc-checkbox-selected-focus-icon-color: #ff4081;
1314
+ --mdc-checkbox-selected-hover-icon-color: #ff4081;
1315
+ --mdc-checkbox-selected-icon-color: #ff4081;
1316
+ --mdc-checkbox-selected-pressed-icon-color: #ff4081;
1317
+ --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
1318
+ --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
1319
+ --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
1320
+ --mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
1321
+ --mdc-checkbox-selected-focus-state-layer-color: #ff4081;
1322
+ --mdc-checkbox-selected-hover-state-layer-color: #ff4081;
1323
+ --mdc-checkbox-selected-pressed-state-layer-color: #ff4081;
1324
+ --mdc-checkbox-unselected-focus-state-layer-color: white;
1325
+ --mdc-checkbox-unselected-hover-state-layer-color: white;
1326
+ --mdc-checkbox-unselected-pressed-state-layer-color: white;
1327
+ }
1328
+
1329
+ .mat-mdc-list-option.mat-warn {
1330
+ --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
1331
+ --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
1332
+ --mdc-checkbox-selected-checkmark-color: #fff;
1333
+ --mdc-checkbox-selected-focus-icon-color: #ff5722;
1334
+ --mdc-checkbox-selected-hover-icon-color: #ff5722;
1335
+ --mdc-checkbox-selected-icon-color: #ff5722;
1336
+ --mdc-checkbox-selected-pressed-icon-color: #ff5722;
1337
+ --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
1338
+ --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
1339
+ --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
1340
+ --mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
1341
+ --mdc-checkbox-selected-focus-state-layer-color: #ff5722;
1342
+ --mdc-checkbox-selected-hover-state-layer-color: #ff5722;
1343
+ --mdc-checkbox-selected-pressed-state-layer-color: #ff5722;
1344
+ --mdc-checkbox-unselected-focus-state-layer-color: white;
1345
+ --mdc-checkbox-unselected-hover-state-layer-color: white;
1346
+ --mdc-checkbox-unselected-pressed-state-layer-color: white;
1347
+ }
1348
+
1349
+ .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,
1350
+ .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text {
1351
+ color: #607d8b;
1352
+ }
1353
+ .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,
1354
+ .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start {
1355
+ color: #607d8b;
1356
+ }
1357
+
1358
+ .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,
1359
+ .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,
1360
+ .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end {
1361
+ opacity: 1;
1362
+ }
1363
+
1364
+ .mat-mdc-list-base {
1365
+ --mdc-list-list-item-one-line-container-height: 48px;
1366
+ --mdc-list-list-item-two-line-container-height: 64px;
1367
+ --mdc-list-list-item-three-line-container-height: 88px;
1368
+ }
1369
+
1370
+ .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line, .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line, .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line {
1371
+ height: 56px;
1372
+ }
1373
+ .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines, .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines, .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines {
1374
+ height: 72px;
1375
+ }
1376
+
1377
+ .mat-mdc-list-base {
1378
+ --mdc-list-list-item-label-text-font: Roboto, sans-serif;
1379
+ --mdc-list-list-item-label-text-line-height: 22px;
1380
+ --mdc-list-list-item-label-text-size: 14px;
1381
+ --mdc-list-list-item-label-text-tracking: normal;
1382
+ --mdc-list-list-item-label-text-weight: 400;
1383
+ --mdc-list-list-item-supporting-text-font: Roboto, sans-serif;
1384
+ --mdc-list-list-item-supporting-text-line-height: 18px;
1385
+ --mdc-list-list-item-supporting-text-size: 12px;
1386
+ --mdc-list-list-item-supporting-text-tracking: normal;
1387
+ --mdc-list-list-item-supporting-text-weight: 400;
1388
+ --mdc-list-list-item-trailing-supporting-text-font: Roboto, sans-serif;
1389
+ --mdc-list-list-item-trailing-supporting-text-line-height: 18px;
1390
+ --mdc-list-list-item-trailing-supporting-text-size: 12px;
1391
+ --mdc-list-list-item-trailing-supporting-text-tracking: normal;
1392
+ --mdc-list-list-item-trailing-supporting-text-weight: 400;
1393
+ }
1394
+
1395
+ .mdc-list-group__subheader {
1396
+ font-size: 18px;
1397
+ font-weight: 500;
1398
+ line-height: 26px;
1399
+ font-family: Roboto, sans-serif;
1400
+ letter-spacing: normal;
1401
+ }
1402
+
1403
+ html {
1404
+ --mat-paginator-container-text-color: rgba(255, 255, 255, 0.87);
1405
+ --mat-paginator-container-background-color: #424242;
1406
+ --mat-paginator-enabled-icon-color: rgba(255, 255, 255, 0.54);
1407
+ --mat-paginator-disabled-icon-color: rgba(255, 255, 255, 0.12);
1408
+ }
1409
+
1410
+ html {
1411
+ --mat-paginator-container-size: 56px;
1412
+ }
1413
+
1414
+ .mat-mdc-paginator .mat-mdc-form-field-infix {
1415
+ min-height: 40px;
1416
+ }
1417
+ .mat-mdc-paginator .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label {
1418
+ top: 20px;
1419
+ }
1420
+ .mat-mdc-paginator .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
1421
+ --mat-mdc-form-field-label-transform: translateY(
1422
+ -26.75px)
1423
+ scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));
1424
+ transform: var(--mat-mdc-form-field-label-transform);
1425
+ }
1426
+ .mat-mdc-paginator .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
1427
+ padding-top: 8px;
1428
+ padding-bottom: 8px;
1429
+ }
1430
+ .mat-mdc-paginator .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix {
1431
+ padding-top: 8px;
1432
+ padding-bottom: 8px;
1433
+ }
1434
+ .mat-mdc-paginator .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mat-mdc-form-field-infix {
1435
+ padding-top: 8px;
1436
+ padding-bottom: 8px;
1437
+ }
1438
+ .mat-mdc-paginator .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-floating-label {
1439
+ display: none;
1440
+ }
1441
+
1442
+ html {
1443
+ --mat-paginator-container-text-font: Roboto, sans-serif;
1444
+ --mat-paginator-container-text-line-height: 18px;
1445
+ --mat-paginator-container-text-size: 12px;
1446
+ --mat-paginator-container-text-tracking: normal;
1447
+ --mat-paginator-container-text-weight: 400;
1448
+ --mat-paginator-select-trigger-text-size: 12px;
1449
+ }
1450
+
1451
+ .mat-mdc-tab-group, .mat-mdc-tab-nav-bar {
1452
+ --mdc-tab-indicator-active-indicator-color: #607d8b;
1453
+ --mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, 0.5);
1454
+ --mat-tab-header-pagination-icon-color: #fff;
1455
+ --mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, 0.6);
1456
+ --mat-tab-header-active-label-text-color: #607d8b;
1457
+ --mat-tab-header-active-ripple-color: #607d8b;
1458
+ --mat-tab-header-inactive-ripple-color: #607d8b;
1459
+ --mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, 0.6);
1460
+ --mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, 0.6);
1461
+ --mat-tab-header-active-focus-label-text-color: #607d8b;
1462
+ --mat-tab-header-active-hover-label-text-color: #607d8b;
1463
+ --mat-tab-header-active-focus-indicator-color: #607d8b;
1464
+ --mat-tab-header-active-hover-indicator-color: #607d8b;
1465
+ }
1466
+ .mat-mdc-tab-group.mat-accent, .mat-mdc-tab-nav-bar.mat-accent {
1467
+ --mdc-tab-indicator-active-indicator-color: #ff4081;
1468
+ --mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, 0.5);
1469
+ --mat-tab-header-pagination-icon-color: #fff;
1470
+ --mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, 0.6);
1471
+ --mat-tab-header-active-label-text-color: #ff4081;
1472
+ --mat-tab-header-active-ripple-color: #ff4081;
1473
+ --mat-tab-header-inactive-ripple-color: #ff4081;
1474
+ --mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, 0.6);
1475
+ --mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, 0.6);
1476
+ --mat-tab-header-active-focus-label-text-color: #ff4081;
1477
+ --mat-tab-header-active-hover-label-text-color: #ff4081;
1478
+ --mat-tab-header-active-focus-indicator-color: #ff4081;
1479
+ --mat-tab-header-active-hover-indicator-color: #ff4081;
1480
+ }
1481
+ .mat-mdc-tab-group.mat-warn, .mat-mdc-tab-nav-bar.mat-warn {
1482
+ --mdc-tab-indicator-active-indicator-color: #ff5722;
1483
+ --mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, 0.5);
1484
+ --mat-tab-header-pagination-icon-color: #fff;
1485
+ --mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, 0.6);
1486
+ --mat-tab-header-active-label-text-color: #ff5722;
1487
+ --mat-tab-header-active-ripple-color: #ff5722;
1488
+ --mat-tab-header-inactive-ripple-color: #ff5722;
1489
+ --mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, 0.6);
1490
+ --mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, 0.6);
1491
+ --mat-tab-header-active-focus-label-text-color: #ff5722;
1492
+ --mat-tab-header-active-hover-label-text-color: #ff5722;
1493
+ --mat-tab-header-active-focus-indicator-color: #ff5722;
1494
+ --mat-tab-header-active-hover-indicator-color: #ff5722;
1495
+ }
1496
+ .mat-mdc-tab-group.mat-background-primary, .mat-mdc-tab-nav-bar.mat-background-primary {
1497
+ --mat-tab-header-with-background-background-color: #607d8b;
1498
+ --mat-tab-header-with-background-foreground-color: white;
1499
+ }
1500
+ .mat-mdc-tab-group.mat-background-accent, .mat-mdc-tab-nav-bar.mat-background-accent {
1501
+ --mat-tab-header-with-background-background-color: #ff4081;
1502
+ --mat-tab-header-with-background-foreground-color: white;
1503
+ }
1504
+ .mat-mdc-tab-group.mat-background-warn, .mat-mdc-tab-nav-bar.mat-background-warn {
1505
+ --mat-tab-header-with-background-background-color: #ff5722;
1506
+ --mat-tab-header-with-background-foreground-color: white;
1507
+ }
1508
+
1509
+ .mat-mdc-tab-header {
1510
+ --mdc-secondary-navigation-tab-container-height: 48px;
1511
+ }
1512
+
1513
+ .mat-mdc-tab-header {
1514
+ --mat-tab-header-label-text-font: Roboto, sans-serif;
1515
+ --mat-tab-header-label-text-size: 13px;
1516
+ --mat-tab-header-label-text-tracking: normal;
1517
+ --mat-tab-header-label-text-line-height: 13px;
1518
+ --mat-tab-header-label-text-weight: 500;
1519
+ }
1520
+
1521
+ html {
1522
+ --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
1523
+ --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
1524
+ --mdc-checkbox-selected-checkmark-color: #fff;
1525
+ --mdc-checkbox-selected-focus-icon-color: #ff4081;
1526
+ --mdc-checkbox-selected-hover-icon-color: #ff4081;
1527
+ --mdc-checkbox-selected-icon-color: #ff4081;
1528
+ --mdc-checkbox-selected-pressed-icon-color: #ff4081;
1529
+ --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
1530
+ --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
1531
+ --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
1532
+ --mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
1533
+ --mdc-checkbox-selected-focus-state-layer-color: #ff4081;
1534
+ --mdc-checkbox-selected-hover-state-layer-color: #ff4081;
1535
+ --mdc-checkbox-selected-pressed-state-layer-color: #ff4081;
1536
+ --mdc-checkbox-unselected-focus-state-layer-color: white;
1537
+ --mdc-checkbox-unselected-hover-state-layer-color: white;
1538
+ --mdc-checkbox-unselected-pressed-state-layer-color: white;
1539
+ }
1540
+
1541
+ .mat-mdc-checkbox.mat-primary {
1542
+ --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
1543
+ --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
1544
+ --mdc-checkbox-selected-checkmark-color: #fff;
1545
+ --mdc-checkbox-selected-focus-icon-color: #607d8b;
1546
+ --mdc-checkbox-selected-hover-icon-color: #607d8b;
1547
+ --mdc-checkbox-selected-icon-color: #607d8b;
1548
+ --mdc-checkbox-selected-pressed-icon-color: #607d8b;
1549
+ --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
1550
+ --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
1551
+ --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
1552
+ --mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
1553
+ --mdc-checkbox-selected-focus-state-layer-color: #607d8b;
1554
+ --mdc-checkbox-selected-hover-state-layer-color: #607d8b;
1555
+ --mdc-checkbox-selected-pressed-state-layer-color: #607d8b;
1556
+ --mdc-checkbox-unselected-focus-state-layer-color: white;
1557
+ --mdc-checkbox-unselected-hover-state-layer-color: white;
1558
+ --mdc-checkbox-unselected-pressed-state-layer-color: white;
1559
+ }
1560
+ .mat-mdc-checkbox.mat-warn {
1561
+ --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
1562
+ --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
1563
+ --mdc-checkbox-selected-checkmark-color: #fff;
1564
+ --mdc-checkbox-selected-focus-icon-color: #ff5722;
1565
+ --mdc-checkbox-selected-hover-icon-color: #ff5722;
1566
+ --mdc-checkbox-selected-icon-color: #ff5722;
1567
+ --mdc-checkbox-selected-pressed-icon-color: #ff5722;
1568
+ --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
1569
+ --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
1570
+ --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
1571
+ --mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
1572
+ --mdc-checkbox-selected-focus-state-layer-color: #ff5722;
1573
+ --mdc-checkbox-selected-hover-state-layer-color: #ff5722;
1574
+ --mdc-checkbox-selected-pressed-state-layer-color: #ff5722;
1575
+ --mdc-checkbox-unselected-focus-state-layer-color: white;
1576
+ --mdc-checkbox-unselected-hover-state-layer-color: white;
1577
+ --mdc-checkbox-unselected-pressed-state-layer-color: white;
1578
+ }
1579
+ .mat-mdc-checkbox .mdc-form-field {
1580
+ color: var(--mdc-theme-text-primary-on-background, white);
1581
+ }
1582
+ .mat-mdc-checkbox.mat-mdc-checkbox-disabled label {
1583
+ color: rgba(255, 255, 255, 0.5);
1584
+ }
1585
+
1586
+ html {
1587
+ --mdc-checkbox-state-layer-size: 40px;
1588
+ }
1589
+
1590
+ .mat-mdc-checkbox .mdc-form-field {
1591
+ -moz-osx-font-smoothing: grayscale;
1592
+ -webkit-font-smoothing: antialiased;
1593
+ font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
1594
+ font-size: var(--mdc-typography-body2-font-size, 12px);
1595
+ line-height: var(--mdc-typography-body2-line-height, 18px);
1596
+ font-weight: var(--mdc-typography-body2-font-weight, 400);
1597
+ letter-spacing: var(--mdc-typography-body2-letter-spacing, normal);
1598
+ text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
1599
+ text-transform: var(--mdc-typography-body2-text-transform, none);
1600
+ }
1601
+
1602
+ .mat-mdc-button.mat-unthemed {
1603
+ --mdc-text-button-label-text-color: #fff;
1604
+ }
1605
+ .mat-mdc-button.mat-primary {
1606
+ --mdc-text-button-label-text-color: #607d8b;
1607
+ }
1608
+ .mat-mdc-button.mat-accent {
1609
+ --mdc-text-button-label-text-color: #ff4081;
1610
+ }
1611
+ .mat-mdc-button.mat-warn {
1612
+ --mdc-text-button-label-text-color: #ff5722;
1613
+ }
1614
+ .mat-mdc-button[disabled][disabled] {
1615
+ --mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, 0.5);
1616
+ --mdc-text-button-label-text-color: rgba(255, 255, 255, 0.5);
1617
+ }
1618
+
1619
+ .mat-mdc-unelevated-button.mat-unthemed {
1620
+ --mdc-filled-button-container-color: #424242;
1621
+ --mdc-filled-button-label-text-color: #fff;
1622
+ }
1623
+ .mat-mdc-unelevated-button.mat-primary {
1624
+ --mdc-filled-button-container-color: #607d8b;
1625
+ --mdc-filled-button-label-text-color: #fff;
1626
+ }
1627
+ .mat-mdc-unelevated-button.mat-accent {
1628
+ --mdc-filled-button-container-color: #ff4081;
1629
+ --mdc-filled-button-label-text-color: #fff;
1630
+ }
1631
+ .mat-mdc-unelevated-button.mat-warn {
1632
+ --mdc-filled-button-container-color: #ff5722;
1633
+ --mdc-filled-button-label-text-color: #fff;
1634
+ }
1635
+ .mat-mdc-unelevated-button[disabled][disabled] {
1636
+ --mdc-filled-button-disabled-container-color: rgba(255, 255, 255, 0.12);
1637
+ --mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, 0.5);
1638
+ --mdc-filled-button-container-color: rgba(255, 255, 255, 0.12);
1639
+ --mdc-filled-button-label-text-color: rgba(255, 255, 255, 0.5);
1640
+ }
1641
+
1642
+ .mat-mdc-raised-button.mat-unthemed {
1643
+ --mdc-protected-button-container-color: #424242;
1644
+ --mdc-protected-button-label-text-color: #fff;
1645
+ }
1646
+ .mat-mdc-raised-button.mat-primary {
1647
+ --mdc-protected-button-container-color: #607d8b;
1648
+ --mdc-protected-button-label-text-color: #fff;
1649
+ }
1650
+ .mat-mdc-raised-button.mat-accent {
1651
+ --mdc-protected-button-container-color: #ff4081;
1652
+ --mdc-protected-button-label-text-color: #fff;
1653
+ }
1654
+ .mat-mdc-raised-button.mat-warn {
1655
+ --mdc-protected-button-container-color: #ff5722;
1656
+ --mdc-protected-button-label-text-color: #fff;
1657
+ }
1658
+ .mat-mdc-raised-button[disabled][disabled] {
1659
+ --mdc-protected-button-disabled-container-color: rgba(255, 255, 255, 0.12);
1660
+ --mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, 0.5);
1661
+ --mdc-protected-button-container-color: rgba(255, 255, 255, 0.12);
1662
+ --mdc-protected-button-label-text-color: rgba(255, 255, 255, 0.5);
1663
+ --mdc-protected-button-container-elevation: 0;
1664
+ }
1665
+
1666
+ .mat-mdc-outlined-button {
1667
+ --mdc-outlined-button-outline-color: rgba(255, 255, 255, 0.12);
1668
+ }
1669
+ .mat-mdc-outlined-button.mat-unthemed {
1670
+ --mdc-outlined-button-label-text-color: #fff;
1671
+ }
1672
+ .mat-mdc-outlined-button.mat-primary {
1673
+ --mdc-outlined-button-label-text-color: #607d8b;
1674
+ }
1675
+ .mat-mdc-outlined-button.mat-accent {
1676
+ --mdc-outlined-button-label-text-color: #ff4081;
1677
+ }
1678
+ .mat-mdc-outlined-button.mat-warn {
1679
+ --mdc-outlined-button-label-text-color: #ff5722;
1680
+ }
1681
+ .mat-mdc-outlined-button[disabled][disabled] {
1682
+ --mdc-outlined-button-label-text-color: rgba(255, 255, 255, 0.5);
1683
+ --mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, 0.5);
1684
+ --mdc-outlined-button-outline-color: rgba(255, 255, 255, 0.12);
1685
+ --mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, 0.12);
1686
+ }
1687
+
1688
+ .mat-mdc-button, .mat-mdc-outlined-button {
1689
+ --mat-mdc-button-persistent-ripple-color: #fff;
1690
+ --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
1691
+ }
1692
+ .mat-mdc-button:hover .mat-mdc-button-persistent-ripple::before, .mat-mdc-outlined-button:hover .mat-mdc-button-persistent-ripple::before {
1693
+ opacity: 0.08;
1694
+ }
1695
+ .mat-mdc-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .mat-mdc-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before, .mat-mdc-outlined-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .mat-mdc-outlined-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before {
1696
+ opacity: 0.24;
1697
+ }
1698
+ .mat-mdc-button:active .mat-mdc-button-persistent-ripple::before, .mat-mdc-outlined-button:active .mat-mdc-button-persistent-ripple::before {
1699
+ opacity: 0.24;
1700
+ }
1701
+ .mat-mdc-button.mat-primary, .mat-mdc-outlined-button.mat-primary {
1702
+ --mat-mdc-button-persistent-ripple-color: #607d8b;
1703
+ --mat-mdc-button-ripple-color: rgba(96, 125, 139, 0.1);
1704
+ }
1705
+ .mat-mdc-button.mat-accent, .mat-mdc-outlined-button.mat-accent {
1706
+ --mat-mdc-button-persistent-ripple-color: #ff4081;
1707
+ --mat-mdc-button-ripple-color: rgba(255, 64, 129, 0.1);
1708
+ }
1709
+ .mat-mdc-button.mat-warn, .mat-mdc-outlined-button.mat-warn {
1710
+ --mat-mdc-button-persistent-ripple-color: #ff5722;
1711
+ --mat-mdc-button-ripple-color: rgba(255, 87, 34, 0.1);
1712
+ }
1713
+
1714
+ .mat-mdc-raised-button, .mat-mdc-unelevated-button {
1715
+ --mat-mdc-button-persistent-ripple-color: #fff;
1716
+ --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
1717
+ }
1718
+ .mat-mdc-raised-button:hover .mat-mdc-button-persistent-ripple::before, .mat-mdc-unelevated-button:hover .mat-mdc-button-persistent-ripple::before {
1719
+ opacity: 0.08;
1720
+ }
1721
+ .mat-mdc-raised-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .mat-mdc-raised-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before, .mat-mdc-unelevated-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .mat-mdc-unelevated-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before {
1722
+ opacity: 0.24;
1723
+ }
1724
+ .mat-mdc-raised-button:active .mat-mdc-button-persistent-ripple::before, .mat-mdc-unelevated-button:active .mat-mdc-button-persistent-ripple::before {
1725
+ opacity: 0.24;
1726
+ }
1727
+ .mat-mdc-raised-button.mat-primary, .mat-mdc-unelevated-button.mat-primary {
1728
+ --mat-mdc-button-persistent-ripple-color: #fff;
1729
+ --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
1730
+ }
1731
+ .mat-mdc-raised-button.mat-accent, .mat-mdc-unelevated-button.mat-accent {
1732
+ --mat-mdc-button-persistent-ripple-color: #fff;
1733
+ --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
1734
+ }
1735
+ .mat-mdc-raised-button.mat-warn, .mat-mdc-unelevated-button.mat-warn {
1736
+ --mat-mdc-button-persistent-ripple-color: #fff;
1737
+ --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
1738
+ }
1739
+
1740
+ .mat-mdc-button.mat-mdc-button-base,
1741
+ .mat-mdc-raised-button.mat-mdc-button-base,
1742
+ .mat-mdc-unelevated-button.mat-mdc-button-base,
1743
+ .mat-mdc-outlined-button.mat-mdc-button-base {
1744
+ height: 36px;
1745
+ }
1746
+
1747
+ .mdc-button {
1748
+ -moz-osx-font-smoothing: grayscale;
1749
+ -webkit-font-smoothing: antialiased;
1750
+ font-family: var(--mdc-typography-button-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
1751
+ font-size: var(--mdc-typography-button-font-size, 13px);
1752
+ line-height: var(--mdc-typography-button-line-height, 13px);
1753
+ font-weight: var(--mdc-typography-button-font-weight, 500);
1754
+ letter-spacing: var(--mdc-typography-button-letter-spacing, normal);
1755
+ text-decoration: var(--mdc-typography-button-text-decoration, none);
1756
+ text-transform: var(--mdc-typography-button-text-transform, none);
1757
+ }
1758
+
1759
+ .mat-mdc-icon-button {
1760
+ --mat-mdc-button-persistent-ripple-color: #000;
1761
+ --mat-mdc-button-ripple-color: rgba(0, 0, 0, 0.1);
1762
+ --mdc-icon-button-icon-color: inherit;
1763
+ --mat-mdc-button-persistent-ripple-color: #fff;
1764
+ --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
1765
+ }
1766
+ .mat-mdc-icon-button:hover .mat-mdc-button-persistent-ripple::before {
1767
+ opacity: 0.08;
1768
+ }
1769
+ .mat-mdc-icon-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .mat-mdc-icon-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before {
1770
+ opacity: 0.24;
1771
+ }
1772
+ .mat-mdc-icon-button:active .mat-mdc-button-persistent-ripple::before {
1773
+ opacity: 0.24;
1774
+ }
1775
+ .mat-mdc-icon-button.mat-primary {
1776
+ --mat-mdc-button-persistent-ripple-color: #6200ee;
1777
+ --mat-mdc-button-ripple-color: rgba(98, 0, 238, 0.1);
1778
+ }
1779
+ .mat-mdc-icon-button.mat-accent {
1780
+ --mat-mdc-button-persistent-ripple-color: #018786;
1781
+ --mat-mdc-button-ripple-color: rgba(1, 135, 134, 0.1);
1782
+ }
1783
+ .mat-mdc-icon-button.mat-warn {
1784
+ --mat-mdc-button-persistent-ripple-color: #b00020;
1785
+ --mat-mdc-button-ripple-color: rgba(176, 0, 32, 0.1);
1786
+ }
1787
+ .mat-mdc-icon-button.mat-primary {
1788
+ --mdc-icon-button-icon-color: #607d8b;
1789
+ --mat-mdc-button-persistent-ripple-color: #607d8b;
1790
+ --mat-mdc-button-ripple-color: rgba(96, 125, 139, 0.1);
1791
+ }
1792
+ .mat-mdc-icon-button.mat-accent {
1793
+ --mdc-icon-button-icon-color: #ff4081;
1794
+ --mat-mdc-button-persistent-ripple-color: #ff4081;
1795
+ --mat-mdc-button-ripple-color: rgba(255, 64, 129, 0.1);
1796
+ }
1797
+ .mat-mdc-icon-button.mat-warn {
1798
+ --mdc-icon-button-icon-color: #ff5722;
1799
+ --mat-mdc-button-persistent-ripple-color: #ff5722;
1800
+ --mat-mdc-button-ripple-color: rgba(255, 87, 34, 0.1);
1801
+ }
1802
+ .mat-mdc-icon-button[disabled][disabled] {
1803
+ --mdc-icon-button-icon-color: rgba(255, 255, 255, 0.5);
1804
+ --mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, 0.5);
1805
+ }
1806
+
1807
+ .mat-mdc-icon-button.mat-mdc-button-base {
1808
+ --mdc-icon-button-state-layer-size: 48px;
1809
+ width: var(--mdc-icon-button-state-layer-size);
1810
+ height: var(--mdc-icon-button-state-layer-size);
1811
+ padding: 12px;
1812
+ }
1813
+
1814
+ .mat-mdc-fab,
1815
+ .mat-mdc-mini-fab {
1816
+ --mat-mdc-button-persistent-ripple-color: #fff;
1817
+ --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
1818
+ }
1819
+ .mat-mdc-fab:hover .mat-mdc-button-persistent-ripple::before,
1820
+ .mat-mdc-mini-fab:hover .mat-mdc-button-persistent-ripple::before {
1821
+ opacity: 0.08;
1822
+ }
1823
+ .mat-mdc-fab.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .mat-mdc-fab.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before,
1824
+ .mat-mdc-mini-fab.cdk-program-focused .mat-mdc-button-persistent-ripple::before,
1825
+ .mat-mdc-mini-fab.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before {
1826
+ opacity: 0.24;
1827
+ }
1828
+ .mat-mdc-fab:active .mat-mdc-button-persistent-ripple::before,
1829
+ .mat-mdc-mini-fab:active .mat-mdc-button-persistent-ripple::before {
1830
+ opacity: 0.24;
1831
+ }
1832
+ .mat-mdc-fab.mat-primary,
1833
+ .mat-mdc-mini-fab.mat-primary {
1834
+ --mat-mdc-button-persistent-ripple-color: #fff;
1835
+ --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
1836
+ }
1837
+ .mat-mdc-fab.mat-accent,
1838
+ .mat-mdc-mini-fab.mat-accent {
1839
+ --mat-mdc-button-persistent-ripple-color: #fff;
1840
+ --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
1841
+ }
1842
+ .mat-mdc-fab.mat-warn,
1843
+ .mat-mdc-mini-fab.mat-warn {
1844
+ --mat-mdc-button-persistent-ripple-color: #fff;
1845
+ --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
1846
+ }
1847
+ .mat-mdc-fab[disabled][disabled],
1848
+ .mat-mdc-mini-fab[disabled][disabled] {
1849
+ --mdc-fab-container-color: rgba(255, 255, 255, 0.12);
1850
+ --mdc-fab-icon-color: rgba(255, 255, 255, 0.5);
1851
+ --mat-mdc-fab-color: rgba(255, 255, 255, 0.5);
1852
+ }
1853
+ .mat-mdc-fab.mat-unthemed,
1854
+ .mat-mdc-mini-fab.mat-unthemed {
1855
+ --mdc-fab-container-color: #424242;
1856
+ --mdc-fab-icon-color: white;
1857
+ --mat-mdc-fab-color: #fff;
1858
+ }
1859
+ .mat-mdc-fab.mat-primary,
1860
+ .mat-mdc-mini-fab.mat-primary {
1861
+ --mdc-fab-container-color: #607d8b;
1862
+ --mdc-fab-icon-color: white;
1863
+ --mat-mdc-fab-color: #fff;
1864
+ }
1865
+ .mat-mdc-fab.mat-accent,
1866
+ .mat-mdc-mini-fab.mat-accent {
1867
+ --mdc-fab-container-color: #ff4081;
1868
+ --mdc-fab-icon-color: white;
1869
+ --mat-mdc-fab-color: #fff;
1870
+ }
1871
+ .mat-mdc-fab.mat-warn,
1872
+ .mat-mdc-mini-fab.mat-warn {
1873
+ --mdc-fab-container-color: #ff5722;
1874
+ --mdc-fab-icon-color: white;
1875
+ --mat-mdc-fab-color: #fff;
1876
+ }
1877
+
1878
+ .mdc-fab--extended {
1879
+ -moz-osx-font-smoothing: grayscale;
1880
+ -webkit-font-smoothing: antialiased;
1881
+ font-family: var(--mdc-typography-button-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
1882
+ font-size: var(--mdc-typography-button-font-size, 13px);
1883
+ line-height: var(--mdc-typography-button-line-height, 13px);
1884
+ font-weight: var(--mdc-typography-button-font-weight, 500);
1885
+ letter-spacing: var(--mdc-typography-button-letter-spacing, normal);
1886
+ text-decoration: var(--mdc-typography-button-text-decoration, none);
1887
+ text-transform: var(--mdc-typography-button-text-transform, none);
1888
+ }
1889
+ .mat-mdc-extended-fab {
1890
+ --mdc-extended-fab-label-text-font: Roboto, sans-serif;
1891
+ --mdc-extended-fab-label-text-size: 13px;
1892
+ --mdc-extended-fab-label-text-tracking: normal;
1893
+ --mdc-extended-fab-label-text-weight: 500;
1894
+ }
1895
+
1896
+ .mat-mdc-snack-bar-container {
1897
+ --mdc-snackbar-container-color: #d9d9d9;
1898
+ --mdc-snackbar-supporting-text-color: rgba(66, 66, 66, 0.87);
1899
+ --mat-snack-bar-button-color: rgba(0, 0, 0, 0.87);
1900
+ }
1901
+
1902
+ .mat-mdc-snack-bar-container {
1903
+ --mdc-snackbar-supporting-text-font: Roboto, sans-serif;
1904
+ --mdc-snackbar-supporting-text-line-height: 18px;
1905
+ --mdc-snackbar-supporting-text-size: 12px;
1906
+ --mdc-snackbar-supporting-text-weight: 400;
1907
+ }
1908
+
1909
+ html {
1910
+ --mat-table-background-color: #424242;
1911
+ --mat-table-header-headline-color: white;
1912
+ --mat-table-row-item-label-text-color: white;
1913
+ --mat-table-row-item-outline-color: rgba(255, 255, 255, 0.12);
1914
+ }
1915
+
1916
+ html {
1917
+ --mat-table-header-container-height: 56px;
1918
+ --mat-table-footer-container-height: 52px;
1919
+ --mat-table-row-item-container-height: 52px;
1920
+ }
1921
+
1922
+ html {
1923
+ --mat-table-header-headline-font: Roboto, sans-serif;
1924
+ --mat-table-header-headline-line-height: 22px;
1925
+ --mat-table-header-headline-size: 16px;
1926
+ --mat-table-header-headline-weight: 500;
1927
+ --mat-table-header-headline-tracking: normal;
1928
+ --mat-table-row-item-label-text-font: Roboto, sans-serif;
1929
+ --mat-table-row-item-label-text-line-height: 18px;
1930
+ --mat-table-row-item-label-text-size: 12px;
1931
+ --mat-table-row-item-label-text-weight: 400;
1932
+ --mat-table-row-item-label-text-tracking: normal;
1933
+ --mat-table-footer-supporting-text-font: Roboto, sans-serif;
1934
+ --mat-table-footer-supporting-text-line-height: 18px;
1935
+ --mat-table-footer-supporting-text-size: 12px;
1936
+ --mat-table-footer-supporting-text-weight: 400;
1937
+ --mat-table-footer-supporting-text-tracking: normal;
1938
+ }
1939
+
1940
+ .mat-mdc-progress-spinner {
1941
+ --mdc-circular-progress-active-indicator-color: #607d8b;
1942
+ }
1943
+ .mat-mdc-progress-spinner.mat-accent {
1944
+ --mdc-circular-progress-active-indicator-color: #ff4081;
1945
+ }
1946
+ .mat-mdc-progress-spinner.mat-warn {
1947
+ --mdc-circular-progress-active-indicator-color: #ff5722;
1948
+ }
1949
+
1950
+ .mat-badge {
1951
+ position: relative;
1952
+ }
1953
+ .mat-badge.mat-badge {
1954
+ overflow: visible;
1955
+ }
1956
+
1957
+ .mat-badge-content {
1958
+ position: absolute;
1959
+ text-align: center;
1960
+ display: inline-block;
1961
+ border-radius: 50%;
1962
+ transition: transform 200ms ease-in-out;
1963
+ transform: scale(0.6);
1964
+ overflow: hidden;
1965
+ white-space: nowrap;
1966
+ text-overflow: ellipsis;
1967
+ pointer-events: none;
1968
+ background-color: var(--mat-badge-background-color);
1969
+ color: var(--mat-badge-text-color);
1970
+ font-family: Roboto, sans-serif;
1971
+ /* @alternate */
1972
+ font-family: var(--mat-badge-text-font, Roboto, sans-serif);
1973
+ font-size: 12px;
1974
+ /* @alternate */
1975
+ font-size: var(--mat-badge-text-size, 12px);
1976
+ font-weight: 600;
1977
+ /* @alternate */
1978
+ font-weight: var(--mat-badge-text-weight, 600);
1979
+ }
1980
+ .cdk-high-contrast-active .mat-badge-content {
1981
+ outline: solid 1px;
1982
+ border-radius: 0;
1983
+ }
1984
+
1985
+ .mat-badge-disabled .mat-badge-content {
1986
+ background-color: var(--mat-badge-disabled-state-background-color);
1987
+ color: var(--mat-badge-disabled-state-text-color);
1988
+ }
1989
+
1990
+ .mat-badge-hidden .mat-badge-content {
1991
+ display: none;
1992
+ }
1993
+
1994
+ .ng-animate-disabled .mat-badge-content,
1995
+ .mat-badge-content._mat-animation-noopable {
1996
+ transition: none;
1997
+ }
1998
+
1999
+ .mat-badge-content.mat-badge-active {
2000
+ transform: none;
2001
+ }
2002
+
2003
+ .mat-badge-small .mat-badge-content {
2004
+ width: 16px;
2005
+ height: 16px;
2006
+ line-height: 16px;
2007
+ font-size: 9px;
2008
+ /* @alternate */
2009
+ font-size: var(--mat-badge-small-size-text-size, 9px);
2010
+ }
2011
+ .mat-badge-small.mat-badge-above .mat-badge-content {
2012
+ top: -8px;
2013
+ }
2014
+ .mat-badge-small.mat-badge-below .mat-badge-content {
2015
+ bottom: -8px;
2016
+ }
2017
+ .mat-badge-small.mat-badge-before .mat-badge-content {
2018
+ left: -16px;
2019
+ }
2020
+ [dir=rtl] .mat-badge-small.mat-badge-before .mat-badge-content {
2021
+ left: auto;
2022
+ right: -16px;
2023
+ }
2024
+ .mat-badge-small.mat-badge-after .mat-badge-content {
2025
+ right: -16px;
2026
+ }
2027
+ [dir=rtl] .mat-badge-small.mat-badge-after .mat-badge-content {
2028
+ right: auto;
2029
+ left: -16px;
2030
+ }
2031
+ .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
2032
+ left: -8px;
2033
+ }
2034
+ [dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
2035
+ left: auto;
2036
+ right: -8px;
2037
+ }
2038
+ .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
2039
+ right: -8px;
2040
+ }
2041
+ [dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
2042
+ right: auto;
2043
+ left: -8px;
2044
+ }
2045
+
2046
+ .mat-badge-medium .mat-badge-content {
2047
+ width: 22px;
2048
+ height: 22px;
2049
+ line-height: 22px;
2050
+ }
2051
+ .mat-badge-medium.mat-badge-above .mat-badge-content {
2052
+ top: -11px;
2053
+ }
2054
+ .mat-badge-medium.mat-badge-below .mat-badge-content {
2055
+ bottom: -11px;
2056
+ }
2057
+ .mat-badge-medium.mat-badge-before .mat-badge-content {
2058
+ left: -22px;
2059
+ }
2060
+ [dir=rtl] .mat-badge-medium.mat-badge-before .mat-badge-content {
2061
+ left: auto;
2062
+ right: -22px;
2063
+ }
2064
+ .mat-badge-medium.mat-badge-after .mat-badge-content {
2065
+ right: -22px;
2066
+ }
2067
+ [dir=rtl] .mat-badge-medium.mat-badge-after .mat-badge-content {
2068
+ right: auto;
2069
+ left: -22px;
2070
+ }
2071
+ .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
2072
+ left: -11px;
2073
+ }
2074
+ [dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
2075
+ left: auto;
2076
+ right: -11px;
2077
+ }
2078
+ .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
2079
+ right: -11px;
2080
+ }
2081
+ [dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
2082
+ right: auto;
2083
+ left: -11px;
2084
+ }
2085
+
2086
+ .mat-badge-large .mat-badge-content {
2087
+ width: 28px;
2088
+ height: 28px;
2089
+ line-height: 28px;
2090
+ font-size: 24px;
2091
+ /* @alternate */
2092
+ font-size: var(--mat-badge-large-size-text-size, 24px);
2093
+ }
2094
+ .mat-badge-large.mat-badge-above .mat-badge-content {
2095
+ top: -14px;
2096
+ }
2097
+ .mat-badge-large.mat-badge-below .mat-badge-content {
2098
+ bottom: -14px;
2099
+ }
2100
+ .mat-badge-large.mat-badge-before .mat-badge-content {
2101
+ left: -28px;
2102
+ }
2103
+ [dir=rtl] .mat-badge-large.mat-badge-before .mat-badge-content {
2104
+ left: auto;
2105
+ right: -28px;
2106
+ }
2107
+ .mat-badge-large.mat-badge-after .mat-badge-content {
2108
+ right: -28px;
2109
+ }
2110
+ [dir=rtl] .mat-badge-large.mat-badge-after .mat-badge-content {
2111
+ right: auto;
2112
+ left: -28px;
2113
+ }
2114
+ .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
2115
+ left: -14px;
2116
+ }
2117
+ [dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
2118
+ left: auto;
2119
+ right: -14px;
2120
+ }
2121
+ .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
2122
+ right: -14px;
2123
+ }
2124
+ [dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
2125
+ right: auto;
2126
+ left: -14px;
2127
+ }
2128
+
2129
+ html {
2130
+ --mat-badge-background-color: #607d8b;
2131
+ --mat-badge-text-color: white;
2132
+ --mat-badge-disabled-state-background-color: #6e6e6e;
2133
+ --mat-badge-disabled-state-text-color: rgba(255, 255, 255, 0.5);
2134
+ }
2135
+
2136
+ .mat-badge-accent {
2137
+ --mat-badge-background-color: #ff4081;
2138
+ --mat-badge-text-color: white;
2139
+ }
2140
+
2141
+ .mat-badge-warn {
2142
+ --mat-badge-background-color: #ff5722;
2143
+ --mat-badge-text-color: white;
2144
+ }
2145
+
2146
+ html {
2147
+ --mat-badge-text-font: Roboto, sans-serif;
2148
+ --mat-badge-text-size: 12px;
2149
+ --mat-badge-text-weight: 600;
2150
+ --mat-badge-small-size-text-size: 9px;
2151
+ --mat-badge-large-size-text-size: 24px;
2152
+ }
2153
+
2154
+ html {
2155
+ --mat-bottom-sheet-container-text-color: white;
2156
+ --mat-bottom-sheet-container-background-color: #424242;
2157
+ }
2158
+
2159
+ html {
2160
+ --mat-bottom-sheet-container-text-font: Roboto, sans-serif;
2161
+ --mat-bottom-sheet-container-text-line-height: 18px;
2162
+ --mat-bottom-sheet-container-text-size: 12px;
2163
+ --mat-bottom-sheet-container-text-tracking: normal;
2164
+ --mat-bottom-sheet-container-text-weight: 400;
2165
+ }
2166
+
2167
+ html {
2168
+ --mat-legacy-button-toggle-text-color: rgba(255, 255, 255, 0.5);
2169
+ --mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, 0.12);
2170
+ --mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, 0.7);
2171
+ --mat-legacy-button-toggle-selected-state-background-color: #212121;
2172
+ --mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, 0.3);
2173
+ --mat-legacy-button-toggle-disabled-state-background-color: black;
2174
+ --mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;
2175
+ --mat-standard-button-toggle-text-color: white;
2176
+ --mat-standard-button-toggle-background-color: #424242;
2177
+ --mat-standard-button-toggle-state-layer-color: white;
2178
+ --mat-standard-button-toggle-selected-state-background-color: #212121;
2179
+ --mat-standard-button-toggle-selected-state-text-color: white;
2180
+ --mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, 0.3);
2181
+ --mat-standard-button-toggle-disabled-state-background-color: #424242;
2182
+ --mat-standard-button-toggle-disabled-selected-state-text-color: white;
2183
+ --mat-standard-button-toggle-disabled-selected-state-background-color: #424242;
2184
+ --mat-standard-button-toggle-divider-color: #595959;
2185
+ }
2186
+
2187
+ html {
2188
+ --mat-standard-button-toggle-height: 48px;
2189
+ }
2190
+
2191
+ html {
2192
+ --mat-legacy-button-toggle-text-font: Roboto, sans-serif;
2193
+ --mat-standard-button-toggle-text-font: Roboto, sans-serif;
2194
+ }
2195
+
2196
+ html {
2197
+ --mat-datepicker-calendar-date-selected-state-text-color: white;
2198
+ --mat-datepicker-calendar-date-selected-state-background-color: #607d8b;
2199
+ --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(96, 125, 139, 0.4);
2200
+ --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
2201
+ --mat-datepicker-calendar-date-focus-state-background-color: rgba(96, 125, 139, 0.3);
2202
+ --mat-datepicker-calendar-date-hover-state-background-color: rgba(96, 125, 139, 0.3);
2203
+ --mat-datepicker-toggle-active-state-icon-color: #607d8b;
2204
+ --mat-datepicker-calendar-date-in-range-state-background-color: rgba(96, 125, 139, 0.2);
2205
+ --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
2206
+ --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
2207
+ --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
2208
+ --mat-datepicker-toggle-icon-color: white;
2209
+ --mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, 0.7);
2210
+ --mat-datepicker-calendar-period-button-icon-color: white;
2211
+ --mat-datepicker-calendar-navigation-button-icon-color: white;
2212
+ --mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, 0.12);
2213
+ --mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, 0.7);
2214
+ --mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, 0.5);
2215
+ --mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, 0.3);
2216
+ --mat-datepicker-calendar-date-text-color: white;
2217
+ --mat-datepicker-calendar-date-outline-color: transparent;
2218
+ --mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, 0.5);
2219
+ --mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, 0.24);
2220
+ --mat-datepicker-range-input-separator-color: white;
2221
+ --mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, 0.5);
2222
+ --mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, 0.5);
2223
+ --mat-datepicker-calendar-container-background-color: #424242;
2224
+ --mat-datepicker-calendar-container-text-color: white;
2225
+ }
2226
+
2227
+ .mat-datepicker-content.mat-accent {
2228
+ --mat-datepicker-calendar-date-selected-state-text-color: white;
2229
+ --mat-datepicker-calendar-date-selected-state-background-color: #ff4081;
2230
+ --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 64, 129, 0.4);
2231
+ --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
2232
+ --mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 64, 129, 0.3);
2233
+ --mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 64, 129, 0.3);
2234
+ --mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 64, 129, 0.2);
2235
+ --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
2236
+ --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
2237
+ --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
2238
+ }
2239
+ .mat-datepicker-content.mat-warn {
2240
+ --mat-datepicker-calendar-date-selected-state-text-color: white;
2241
+ --mat-datepicker-calendar-date-selected-state-background-color: #ff5722;
2242
+ --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 87, 34, 0.4);
2243
+ --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
2244
+ --mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 87, 34, 0.3);
2245
+ --mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 87, 34, 0.3);
2246
+ --mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 87, 34, 0.2);
2247
+ --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
2248
+ --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
2249
+ --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
2250
+ }
2251
+
2252
+ .mat-datepicker-toggle-active.mat-accent {
2253
+ --mat-datepicker-toggle-active-state-icon-color: #ff4081;
2254
+ }
2255
+ .mat-datepicker-toggle-active.mat-warn {
2256
+ --mat-datepicker-toggle-active-state-icon-color: #ff5722;
2257
+ }
2258
+
2259
+ .mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base {
2260
+ --mdc-icon-button-state-layer-size: 40px;
2261
+ width: var(--mdc-icon-button-state-layer-size);
2262
+ height: var(--mdc-icon-button-state-layer-size);
2263
+ padding: 8px;
2264
+ }
2265
+ .mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target {
2266
+ display: none;
2267
+ }
2268
+
2269
+ html {
2270
+ --mat-datepicker-calendar-text-font: Roboto, sans-serif;
2271
+ --mat-datepicker-calendar-text-size: 13px;
2272
+ --mat-datepicker-calendar-body-label-text-size: 13px;
2273
+ --mat-datepicker-calendar-body-label-text-weight: 500;
2274
+ --mat-datepicker-calendar-period-button-text-size: 13px;
2275
+ --mat-datepicker-calendar-period-button-text-weight: 500;
2276
+ --mat-datepicker-calendar-header-text-size: 11px;
2277
+ --mat-datepicker-calendar-header-text-weight: 400;
2278
+ }
2279
+
2280
+ html {
2281
+ --mat-divider-color: rgba(255, 255, 255, 0.12);
2282
+ }
2283
+
2284
+ html {
2285
+ --mat-expansion-container-background-color: #424242;
2286
+ --mat-expansion-container-text-color: white;
2287
+ --mat-expansion-actions-divider-color: rgba(255, 255, 255, 0.12);
2288
+ --mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, 0.04);
2289
+ --mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, 0.04);
2290
+ --mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, 0.3);
2291
+ --mat-expansion-header-text-color: white;
2292
+ --mat-expansion-header-description-color: rgba(255, 255, 255, 0.7);
2293
+ --mat-expansion-header-indicator-color: rgba(255, 255, 255, 0.7);
2294
+ }
2295
+
2296
+ html {
2297
+ --mat-expansion-header-collapsed-state-height: 48px;
2298
+ --mat-expansion-header-expanded-state-height: 64px;
2299
+ }
2300
+
2301
+ html {
2302
+ --mat-expansion-header-text-font: Roboto, sans-serif;
2303
+ --mat-expansion-header-text-size: 16px;
2304
+ --mat-expansion-header-text-weight: 500;
2305
+ --mat-expansion-header-text-line-height: inherit;
2306
+ --mat-expansion-header-text-tracking: inherit;
2307
+ --mat-expansion-container-text-font: Roboto, sans-serif;
2308
+ --mat-expansion-container-text-line-height: 18px;
2309
+ --mat-expansion-container-text-size: 12px;
2310
+ --mat-expansion-container-text-tracking: normal;
2311
+ --mat-expansion-container-text-weight: 400;
2312
+ }
2313
+
2314
+ html {
2315
+ --mat-grid-list-tile-header-primary-text-size: 12px;
2316
+ --mat-grid-list-tile-header-secondary-text-size: 12px;
2317
+ --mat-grid-list-tile-footer-primary-text-size: 12px;
2318
+ --mat-grid-list-tile-footer-secondary-text-size: 12px;
2319
+ }
2320
+
2321
+ html {
2322
+ --mat-icon-color: inherit;
2323
+ }
2324
+
2325
+ .mat-icon.mat-primary {
2326
+ --mat-icon-color: #607d8b;
2327
+ }
2328
+ .mat-icon.mat-accent {
2329
+ --mat-icon-color: #ff4081;
2330
+ }
2331
+ .mat-icon.mat-warn {
2332
+ --mat-icon-color: #ff5722;
2333
+ }
2334
+
2335
+ html {
2336
+ --mat-sidenav-container-divider-color: rgba(255, 255, 255, 0.12);
2337
+ --mat-sidenav-container-background-color: #424242;
2338
+ --mat-sidenav-container-text-color: white;
2339
+ --mat-sidenav-content-background-color: #303030;
2340
+ --mat-sidenav-content-text-color: white;
2341
+ --mat-sidenav-scrim-color: rgba(189, 189, 189, 0.6);
2342
+ }
2343
+
2344
+ html {
2345
+ --mat-stepper-header-icon-foreground-color: white;
2346
+ --mat-stepper-header-selected-state-icon-background-color: #607d8b;
2347
+ --mat-stepper-header-selected-state-icon-foreground-color: white;
2348
+ --mat-stepper-header-done-state-icon-background-color: #607d8b;
2349
+ --mat-stepper-header-done-state-icon-foreground-color: white;
2350
+ --mat-stepper-header-edit-state-icon-background-color: #607d8b;
2351
+ --mat-stepper-header-edit-state-icon-foreground-color: white;
2352
+ --mat-stepper-container-color: #424242;
2353
+ --mat-stepper-line-color: rgba(255, 255, 255, 0.12);
2354
+ --mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, 0.04);
2355
+ --mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, 0.04);
2356
+ --mat-stepper-header-label-text-color: rgba(255, 255, 255, 0.7);
2357
+ --mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, 0.7);
2358
+ --mat-stepper-header-selected-state-label-text-color: white;
2359
+ --mat-stepper-header-error-state-label-text-color: #ff5722;
2360
+ --mat-stepper-header-icon-background-color: rgba(255, 255, 255, 0.7);
2361
+ --mat-stepper-header-error-state-icon-foreground-color: #ff5722;
2362
+ --mat-stepper-header-error-state-icon-background-color: transparent;
2363
+ }
2364
+ html .mat-step-header.mat-accent {
2365
+ --mat-stepper-header-icon-foreground-color: white;
2366
+ --mat-stepper-header-selected-state-icon-background-color: #ff4081;
2367
+ --mat-stepper-header-selected-state-icon-foreground-color: white;
2368
+ --mat-stepper-header-done-state-icon-background-color: #ff4081;
2369
+ --mat-stepper-header-done-state-icon-foreground-color: white;
2370
+ --mat-stepper-header-edit-state-icon-background-color: #ff4081;
2371
+ --mat-stepper-header-edit-state-icon-foreground-color: white;
2372
+ }
2373
+ html .mat-step-header.mat-warn {
2374
+ --mat-stepper-header-icon-foreground-color: white;
2375
+ --mat-stepper-header-selected-state-icon-background-color: #ff5722;
2376
+ --mat-stepper-header-selected-state-icon-foreground-color: white;
2377
+ --mat-stepper-header-done-state-icon-background-color: #ff5722;
2378
+ --mat-stepper-header-done-state-icon-foreground-color: white;
2379
+ --mat-stepper-header-edit-state-icon-background-color: #ff5722;
2380
+ --mat-stepper-header-edit-state-icon-foreground-color: white;
2381
+ }
2382
+
2383
+ html {
2384
+ --mat-stepper-header-height: 72px;
2385
+ }
2386
+
2387
+ html {
2388
+ --mat-stepper-container-text-font: Roboto, sans-serif;
2389
+ --mat-stepper-header-label-text-font: Roboto, sans-serif;
2390
+ --mat-stepper-header-label-text-size: 12px;
2391
+ --mat-stepper-header-label-text-weight: 400;
2392
+ --mat-stepper-header-error-state-label-text-size: 14px;
2393
+ --mat-stepper-header-selected-state-label-text-size: 14px;
2394
+ --mat-stepper-header-selected-state-label-text-weight: 400;
2395
+ }
2396
+
2397
+ .mat-sort-header-arrow {
2398
+ color: #c6c6c6;
2399
+ }
2400
+
2401
+ html {
2402
+ --mat-toolbar-container-background-color: #212121;
2403
+ --mat-toolbar-container-text-color: white;
2404
+ }
2405
+
2406
+ .mat-toolbar.mat-primary {
2407
+ --mat-toolbar-container-background-color: #607d8b;
2408
+ --mat-toolbar-container-text-color: white;
2409
+ }
2410
+ .mat-toolbar.mat-accent {
2411
+ --mat-toolbar-container-background-color: #ff4081;
2412
+ --mat-toolbar-container-text-color: white;
2413
+ }
2414
+ .mat-toolbar.mat-warn {
2415
+ --mat-toolbar-container-background-color: #ff5722;
2416
+ --mat-toolbar-container-text-color: white;
2417
+ }
2418
+
2419
+ html {
2420
+ --mat-toolbar-standard-height: 64px;
2421
+ --mat-toolbar-mobile-height: 56px;
2422
+ }
2423
+
2424
+ html {
2425
+ --mat-toolbar-title-text-font: Roboto, sans-serif;
2426
+ --mat-toolbar-title-text-line-height: 30px;
2427
+ --mat-toolbar-title-text-size: 22px;
2428
+ --mat-toolbar-title-text-tracking: normal;
2429
+ --mat-toolbar-title-text-weight: 500;
2430
+ }
2431
+
2432
+ .mat-tree {
2433
+ background: #424242;
2434
+ }
2435
+
2436
+ .mat-tree-node,
2437
+ .mat-nested-tree-node {
2438
+ color: white;
2439
+ }
2440
+
2441
+ .mat-tree-node {
2442
+ min-height: 48px;
2443
+ }
2444
+
2445
+ .mat-tree {
2446
+ font-family: Roboto, sans-serif;
2447
+ }
2448
+
2449
+ .mat-tree-node,
2450
+ .mat-nested-tree-node {
2451
+ font-weight: 400;
2452
+ font-size: 12px;
2453
+ }
2454
+
2455
+ html {
2456
+ --mat-standard-button-toggle-height: 36px;
2457
+ }
2458
+
2459
+ mat-button-toggle {
2460
+ color: black !important;
2461
+ }
2462
+ mat-button-toggle.mat-button-toggle-checked {
2463
+ background-color: #ff4081;
2464
+ color: #424242;
2465
+ }
2466
+
2467
+ mat-tab-group,
2468
+ mat-tab-group ::ng-deep .mat-mdc-tab-body-wrapper {
2469
+ height: 100%;
2470
+ overflow: hidden;
2471
+ }
2472
+
2473
+ .toast-error {
2474
+ background-color: #ff5722 !important;
2475
+ }
2476
+
2477
+ .toast-info {
2478
+ background-color: #607d8b !important;
2479
+ }
2480
+
2481
+ .toast-no-icon {
2482
+ background-image: none;
2483
+ padding-left: 6%;
2484
+ }
2485
+
2486
+ .toast-title {
2487
+ font-weight: bold;
2488
+ }
2489
+
2490
+ igo-actionbar-item .mat-mdc-icon-button.mat-mdc-button-base {
2491
+ --mdc-icon-button-state-layer-size: 40px;
2492
+ width: var(--mdc-icon-button-state-layer-size);
2493
+ height: var(--mdc-icon-button-state-layer-size);
2494
+ padding: 8px;
2495
+ }
2496
+ igo-actionbar-item .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target {
2497
+ display: none;
2498
+ }
2499
+ igo-actionbar-item .mat-mdc-list-base {
2500
+ --mdc-list-list-item-one-line-container-height: 40px;
2501
+ --mdc-list-list-item-two-line-container-height: 56px;
2502
+ --mdc-list-list-item-three-line-container-height: 80px;
2503
+ }
2504
+ igo-actionbar-item .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line, igo-actionbar-item .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line, igo-actionbar-item .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line {
2505
+ height: 48px;
2506
+ }
2507
+ igo-actionbar-item .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines, igo-actionbar-item .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines, igo-actionbar-item .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines {
2508
+ height: 64px;
2509
+ }
2510
+
2511
+ mat-icon[igocollapse]:hover {
2512
+ cursor: pointer;
2513
+ }
2514
+ mat-icon[igocollapse].igo-chevron {
2515
+ width: auto !important;
2516
+ transform: rotateZ(0deg);
2517
+ transition: 300ms ease-in-out;
2518
+ }
2519
+ mat-icon[igocollapse].igo-chevron.collapsed {
2520
+ transform: rotateZ(180deg);
2521
+ transition: 300ms ease-in-out;
2522
+ }
2523
+
2524
+ div.igo-collapsed {
2525
+ display: none !important;
2526
+ }
2527
+
2528
+ igo-entity-table table.igo-entity-table-with-selection tr.igo-entity-table-row-highlighted {
2529
+ background-color: #cfd8dc;
2530
+ color: white;
2531
+ }
2532
+
2533
+ igo-entity-table {
2534
+ --mat-table-header-container-height: 52px;
2535
+ --mat-table-footer-container-height: 48px;
2536
+ --mat-table-row-item-container-height: 48px;
2537
+ }
2538
+
2539
+ igo-entity-selector {
2540
+ --mat-paginator-container-size: 40px;
2541
+ }
2542
+
2543
+ igo-entity-selector .mat-mdc-paginator .mat-mdc-form-field-infix {
2544
+ min-height: 40px;
2545
+ }
2546
+ igo-entity-selector .mat-mdc-paginator .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label {
2547
+ top: 20px;
2548
+ }
2549
+ igo-entity-selector .mat-mdc-paginator .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
2550
+ --mat-mdc-form-field-label-transform: translateY(
2551
+ -26.75px)
2552
+ scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));
2553
+ transform: var(--mat-mdc-form-field-label-transform);
2554
+ }
2555
+ igo-entity-selector .mat-mdc-paginator .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
2556
+ padding-top: 8px;
2557
+ padding-bottom: 8px;
2558
+ }
2559
+ igo-entity-selector .mat-mdc-paginator .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix {
2560
+ padding-top: 8px;
2561
+ padding-bottom: 8px;
2562
+ }
2563
+ igo-entity-selector .mat-mdc-paginator .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mat-mdc-form-field-infix {
2564
+ padding-top: 8px;
2565
+ padding-bottom: 8px;
2566
+ }
2567
+ igo-entity-selector .mat-mdc-paginator .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-floating-label {
2568
+ display: none;
2569
+ }
2570
+
2571
+ igo-entity-selector .mat-mdc-form-field-infix {
2572
+ min-height: 48px;
2573
+ }
2574
+ igo-entity-selector .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label {
2575
+ top: 24px;
2576
+ }
2577
+ igo-entity-selector .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
2578
+ --mat-mdc-form-field-label-transform: translateY(
2579
+ -30.75px)
2580
+ scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));
2581
+ transform: var(--mat-mdc-form-field-label-transform);
2582
+ }
2583
+ igo-entity-selector .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
2584
+ padding-top: 12px;
2585
+ padding-bottom: 12px;
2586
+ }
2587
+ igo-entity-selector .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix {
2588
+ padding-top: 12px;
2589
+ padding-bottom: 12px;
2590
+ }
2591
+ igo-entity-selector .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mat-mdc-form-field-infix {
2592
+ padding-top: 12px;
2593
+ padding-bottom: 12px;
2594
+ }
2595
+ igo-entity-selector .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-floating-label {
2596
+ display: none;
2597
+ }
2598
+
2599
+ igo-list [igolistitem][color=primary].igo-list-item-selected > mat-list-item {
2600
+ background-color: #607d8b;
2601
+ color: white;
2602
+ }
2603
+ igo-list [igolistitem][color=primary]:not(.igo-list-item-disabled):hover > mat-list-item, igo-list [igolistitem][color=primary].igo-list-item-focused > mat-list-item {
2604
+ background-color: #cfd8dc;
2605
+ color: white;
2606
+ }
2607
+ igo-list [igolistitem][color=accent].igo-list-item-selected > mat-list-item {
2608
+ background-color: #ff4081;
2609
+ color: white;
2610
+ }
2611
+ igo-list [igolistitem][color=accent]:not(.igo-list-item-disabled):hover > mat-list-item, igo-list [igolistitem][color=accent].igo-list-item-focused > mat-list-item {
2612
+ background-color: #ff80ab;
2613
+ color: white;
2614
+ }
2615
+ igo-list [igolistitem].igo-list-item-disabled > mat-list-item {
2616
+ color: rgba(0, 0, 0, 0.38);
2617
+ }
2618
+
2619
+ igo-panel > .igo-panel-header {
2620
+ background-color: #607d8b;
2621
+ color: white;
2622
+ }
2623
+
2624
+ igo-panel .mat-mdc-icon-button.mat-mdc-button-base {
2625
+ --mdc-icon-button-state-layer-size: 40px;
2626
+ width: var(--mdc-icon-button-state-layer-size);
2627
+ height: var(--mdc-icon-button-state-layer-size);
2628
+ padding: 8px;
2629
+ }
2630
+ igo-panel .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target {
2631
+ display: none;
2632
+ }
2633
+
2634
+ igo-toolbox.color-primary > igo-actionbar:not(.with-title) {
2635
+ box-shadow: unset;
2636
+ background-color: #607d8b;
2637
+ }
2638
+ igo-toolbox.color-primary > igo-actionbar:not(.with-title) #lowChevron,
2639
+ igo-toolbox.color-primary > igo-actionbar:not(.with-title) #topChevron {
2640
+ background-color: #607d8b;
2641
+ color: white;
2642
+ }
2643
+ igo-toolbox.color-grey > igo-actionbar:not(.with-title) {
2644
+ box-shadow: unset;
2645
+ background-color: #737475;
2646
+ }
2647
+ igo-toolbox.color-grey > igo-actionbar:not(.with-title) #lowChevron,
2648
+ igo-toolbox.color-grey > igo-actionbar:not(.with-title) #topChevron {
2649
+ background-color: #737475;
2650
+ color: white;
2651
+ }
2652
+ igo-toolbox.color-primary > igo-actionbar:not(.with-title) mat-list.mat-mdc-list-base .mat-mdc-list-item.mdc-list-item--with-leading-avatar, igo-toolbox.color-grey > igo-actionbar:not(.with-title) mat-list.mat-mdc-list-base .mat-mdc-list-item.mdc-list-item--with-leading-avatar {
2653
+ color: white;
2654
+ }
2655
+ igo-toolbox.color-primary > igo-actionbar:not(.with-title) mat-list.mat-mdc-list-base .mat-mdc-list-item.mdc-list-item--with-leading-avatar:hover, igo-toolbox.color-grey > igo-actionbar:not(.with-title) mat-list.mat-mdc-list-base .mat-mdc-list-item.mdc-list-item--with-leading-avatar:hover {
2656
+ color: black;
2657
+ }
2658
+ igo-toolbox.color-primary > igo-actionbar:not(.with-title) mat-list.mat-mdc-list-base .mat-mdc-list-item.mdc-list-item--with-leading-avatar.tool-activated, igo-toolbox.color-primary > igo-actionbar:not(.with-title) mat-list.mat-mdc-list-base .mat-mdc-list-item.mdc-list-item--with-leading-avatar.children-tool-activated, igo-toolbox.color-grey > igo-actionbar:not(.with-title) mat-list.mat-mdc-list-base .mat-mdc-list-item.mdc-list-item--with-leading-avatar.tool-activated, igo-toolbox.color-grey > igo-actionbar:not(.with-title) mat-list.mat-mdc-list-base .mat-mdc-list-item.mdc-list-item--with-leading-avatar.children-tool-activated {
2659
+ background-color: white;
2660
+ color: black;
2661
+ }
2662
+ igo-toolbox > igo-actionbar:not(.with-title) > mat-list > #lowChevron:hover, igo-toolbox > igo-actionbar:not(.with-title) > mat-list > #topChevron:hover {
2663
+ background-color: #ff80ab;
2664
+ color: black;
2665
+ }
2666
+ igo-toolbox > igo-actionbar:not(.with-title) > mat-list mat-list-item {
2667
+ color: rgba(0, 0, 0, 0.87);
2668
+ }
2669
+ igo-toolbox > igo-actionbar mat-list.mat-mdc-list-base igo-actionbar-item mat-list-item:hover {
2670
+ background-color: #ff80ab;
2671
+ }
2672
+ igo-toolbox > igo-actionbar mat-list.mat-mdc-list-base igo-actionbar-item mat-list-item.tool-activated, igo-toolbox > igo-actionbar mat-list.mat-mdc-list-base igo-actionbar-item mat-list-item.children-tool-activated {
2673
+ color: rgba(0, 0, 0, 0.87);
2674
+ background-color: white;
2675
+ }
2676
+ igo-toolbox > igo-actionbar mat-list.mat-mdc-list-base igo-actionbar-item mat-list-item.tool-activated button, igo-toolbox > igo-actionbar mat-list.mat-mdc-list-base igo-actionbar-item mat-list-item.children-tool-activated button {
2677
+ cursor: default;
2678
+ }
2679
+
2680
+ igo-toolbox igo-actionbar-item .mat-mdc-list-base {
2681
+ --mdc-list-list-item-one-line-container-height: 40px;
2682
+ --mdc-list-list-item-two-line-container-height: 56px;
2683
+ --mdc-list-list-item-three-line-container-height: 80px;
2684
+ }
2685
+ igo-toolbox igo-actionbar-item .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line, igo-toolbox igo-actionbar-item .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line, igo-toolbox igo-actionbar-item .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line {
2686
+ height: 48px;
2687
+ }
2688
+ igo-toolbox igo-actionbar-item .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines, igo-toolbox igo-actionbar-item .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines, igo-toolbox igo-actionbar-item .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines {
2689
+ height: 64px;
2690
+ }
2691
+
2692
+ igo-interactive-tour button.tour-button-tool-icon {
2693
+ color: white;
2694
+ }
2695
+ igo-interactive-tour button.tour-button-tool-icon:hover {
2696
+ background-color: white;
2697
+ color: #607d8b;
2698
+ }
2699
+ igo-interactive-tour .mat-primary .mat-mdc-icon-button {
2700
+ color: white;
2701
+ }
2702
+
2703
+ igo-home-button > #homeButton {
2704
+ background-color: #607d8b;
2705
+ color: white;
2706
+ }
2707
+ igo-home-button > #homeButton:hover {
2708
+ background-color: #ff80ab;
2709
+ color: black;
2710
+ }
2711
+
2712
+ igo-context-list .mat-mdc-icon-button.mat-mdc-button-base {
2713
+ --mdc-icon-button-state-layer-size: 40px;
2714
+ width: var(--mdc-icon-button-state-layer-size);
2715
+ height: var(--mdc-icon-button-state-layer-size);
2716
+ padding: 8px;
2717
+ }
2718
+ igo-context-list .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target {
2719
+ display: none;
2720
+ }
2721
+ igo-context-list .mat-mdc-list-base {
2722
+ --mdc-list-list-item-one-line-container-height: 40px;
2723
+ --mdc-list-list-item-two-line-container-height: 56px;
2724
+ --mdc-list-list-item-three-line-container-height: 80px;
2725
+ }
2726
+ igo-context-list .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line, igo-context-list .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line, igo-context-list .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line {
2727
+ height: 48px;
2728
+ }
2729
+ igo-context-list .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines, igo-context-list .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines, igo-context-list .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines {
2730
+ height: 64px;
2731
+ }
2732
+ igo-context-list .mat-mdc-form-field-infix {
2733
+ min-height: 48px;
2734
+ }
2735
+ igo-context-list .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label {
2736
+ top: 24px;
2737
+ }
2738
+ igo-context-list .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
2739
+ --mat-mdc-form-field-label-transform: translateY(
2740
+ -30.75px)
2741
+ scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));
2742
+ transform: var(--mat-mdc-form-field-label-transform);
2743
+ }
2744
+ igo-context-list .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
2745
+ padding-top: 12px;
2746
+ padding-bottom: 12px;
2747
+ }
2748
+ igo-context-list .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix {
2749
+ padding-top: 12px;
2750
+ padding-bottom: 12px;
2751
+ }
2752
+ igo-context-list .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mat-mdc-form-field-infix {
2753
+ padding-top: 12px;
2754
+ padding-bottom: 12px;
2755
+ }
2756
+ igo-context-list .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-floating-label {
2757
+ display: none;
2758
+ }
2759
+
2760
+ igo-context-item .mat-mdc-icon-button.mat-mdc-button-base {
2761
+ --mdc-icon-button-state-layer-size: 40px;
2762
+ width: var(--mdc-icon-button-state-layer-size);
2763
+ height: var(--mdc-icon-button-state-layer-size);
2764
+ padding: 8px;
2765
+ }
2766
+ igo-context-item .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target {
2767
+ display: none;
2768
+ }
2769
+
2770
+ igo-directions-results mat-list-item.igo-steps:hover {
2771
+ background-color: #ff80ab;
2772
+ }
2773
+
2774
+ igo-draw-popup-component .igo-map-tooltip,
2775
+ igo-draw-popup-component .igo-map-tooltip,
2776
+ igo-draw-shorcuts .igo-map-tooltip,
2777
+ igo-draw .igo-map-tooltip {
2778
+ position: relative;
2779
+ border-radius: 4px;
2780
+ padding: 4px 8px;
2781
+ white-space: nowrap;
2782
+ }
2783
+ igo-draw-popup-component .igo-map-tooltip-draw,
2784
+ igo-draw-popup-component .igo-map-tooltip-draw,
2785
+ igo-draw-shorcuts .igo-map-tooltip-draw,
2786
+ igo-draw .igo-map-tooltip-draw {
2787
+ color: white;
2788
+ font-weight: bold;
2789
+ font-size: 18px;
2790
+ }
2791
+
2792
+ igo-draw-popup-component h1 {
2793
+ font-size: 32px;
2794
+ font-family: Roboto, "Helvetica Neue", sans-serif;
2795
+ }
2796
+
2797
+ igo-feature-details > table.igo-striped tbody tr:nth-child(odd) {
2798
+ background-color: #212121;
2799
+ color: black;
2800
+ }
2801
+
2802
+ .mat-datetimepicker-calendar-header {
2803
+ background-color: #607d8b;
2804
+ }
2805
+
2806
+ .mat-datetimepicker-calendar-body-cell-content.mat-datetimepicker-calendar-body-selected {
2807
+ background-color: #607d8b;
2808
+ color: white;
2809
+ }
2810
+ .mat-datetimepicker-calendar-body-cell-content.mat-datetimepicker-calendar-body-disabled > .mat-datetimepicker-calendar-body-selected {
2811
+ background-color: rgba(96, 125, 139, 0.4);
2812
+ }
2813
+ .mat-datetimepicker-calendar-body-cell-content.mat-datetimepicker-calendar-body-today:not(.mat-datetimepicker-calendar-body-selected) {
2814
+ border-color: #607d8b;
2815
+ }
2816
+ .mat-datetimepicker-calendar-body-cell-content.mat-datetimepicker-calendar-body-today.mat-datetimepicker-calendar-body-selected {
2817
+ box-shadow: inset 0 0 0 1px white;
2818
+ }
2819
+
2820
+ .mat-datetimepicker-clock-center {
2821
+ background-color: #607d8b;
2822
+ }
2823
+
2824
+ .mat-datetimepicker-clock-hand {
2825
+ background-color: #607d8b;
2826
+ }
2827
+ .mat-datetimepicker-clock-hand::before {
2828
+ background-color: #607d8b;
2829
+ }
2830
+
2831
+ .mat-datetimepicker-clock-cell.mat-datetimepicker-clock-cell-selected {
2832
+ background-color: #6b8a99;
2833
+ }
2834
+
2835
+ igo-ogc-filter-time-slider {
2836
+ /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
2837
+ }
2838
+ igo-ogc-filter-time-slider .mat-slider-thumb-label {
2839
+ transform: rotate(45deg) !important;
2840
+ border-radius: 50% 50% 0 !important;
2841
+ }
2842
+
2843
+ igo-ogc-filter-selection mat-button-toggle.mat-button-toggle-checked {
2844
+ background-color: #ff4081;
2845
+ color: #424242;
2846
+ }
2847
+ igo-ogc-filter-selection mat-button-toggle {
2848
+ color: black !important;
2849
+ }
2850
+
2851
+ igo-layer-legend img:after {
2852
+ border-top-color: #607d8b;
2853
+ }
2854
+
2855
+ igo-layer-list-tool .mat-mdc-icon-button.mat-mdc-button-base {
2856
+ --mdc-icon-button-state-layer-size: 40px;
2857
+ width: var(--mdc-icon-button-state-layer-size);
2858
+ height: var(--mdc-icon-button-state-layer-size);
2859
+ padding: 8px;
2860
+ }
2861
+ igo-layer-list-tool .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target {
2862
+ display: none;
2863
+ }
2864
+ igo-layer-list-tool .mat-mdc-form-field-infix {
2865
+ min-height: 48px;
2866
+ }
2867
+ igo-layer-list-tool .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label {
2868
+ top: 24px;
2869
+ }
2870
+ igo-layer-list-tool .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
2871
+ --mat-mdc-form-field-label-transform: translateY(
2872
+ -30.75px)
2873
+ scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));
2874
+ transform: var(--mat-mdc-form-field-label-transform);
2875
+ }
2876
+ igo-layer-list-tool .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
2877
+ padding-top: 12px;
2878
+ padding-bottom: 12px;
2879
+ }
2880
+ igo-layer-list-tool .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix {
2881
+ padding-top: 12px;
2882
+ padding-bottom: 12px;
2883
+ }
2884
+ igo-layer-list-tool .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mat-mdc-form-field-infix {
2885
+ padding-top: 12px;
2886
+ padding-bottom: 12px;
2887
+ }
2888
+ igo-layer-list-tool .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-floating-label {
2889
+ display: none;
2890
+ }
2891
+
2892
+ igo-layer-item.igo-layer-item-focused > mat-list-item {
2893
+ background-color: #ff80ab;
2894
+ color: white;
2895
+ }
2896
+
2897
+ /* TODO(mdc-migration): The following rule targets internal classes of menu that may no longer apply for the MDC version. */
2898
+ .mat-menu-opacity-slider {
2899
+ box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.5), 0 4px 5px 0 rgba(0, 0, 0, 0.15), 0 1px 10px 0 rgba(0, 0, 0, 0.4);
2900
+ }
2901
+
2902
+ igo-map-browser div.ol-attribution > button {
2903
+ color: white;
2904
+ background-color: #607d8b;
2905
+ }
2906
+
2907
+ igo-map-browser .mat-mdc-icon-button.mat-mdc-button-base {
2908
+ --mdc-icon-button-state-layer-size: 40px;
2909
+ width: var(--mdc-icon-button-state-layer-size);
2910
+ height: var(--mdc-icon-button-state-layer-size);
2911
+ padding: 8px;
2912
+ }
2913
+ igo-map-browser .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target {
2914
+ display: none;
2915
+ }
2916
+
2917
+ igo-map-browser div.ol-attribution > ul {
2918
+ font-size: 14px;
2919
+ }
2920
+
2921
+ igo-zoom-button > div.igo-zoom-button-container > button.mat-primary {
2922
+ color: white;
2923
+ background-color: #607d8b;
2924
+ }
2925
+ igo-zoom-button > div.igo-zoom-button-container > button.mat-accent {
2926
+ color: white;
2927
+ background-color: #ff4081;
2928
+ }
2929
+
2930
+ igo-menu-button > #menu-button {
2931
+ color: #607d8b;
2932
+ }
2933
+
2934
+ igo-menu-button > #menu-button.menu-button-reverse-color-close {
2935
+ background-color: #607d8b;
2936
+ color: white;
2937
+ }
2938
+
2939
+ igo-menu-button > #menu-button.menu-button-reverse-color {
2940
+ background-color: #607d8b;
2941
+ color: white;
2942
+ }
2943
+
2944
+ .igo-map-tooltip-measure {
2945
+ background-color: rgba(255, 204, 51, 0.7);
2946
+ border: 1px solid rgb(255, 205, 51);
2947
+ color: black;
2948
+ font-weight: bold;
2949
+ }
2950
+
2951
+ .igo-map-tooltip-measure {
2952
+ font-size: 18px;
2953
+ }
2954
+
2955
+ igo-search-bar mat-form-field .mat-mdc-text-field-wrapper {
2956
+ background-color: white !important;
2957
+ }
2958
+ igo-search-bar mat-form-field .mdc-line-ripple {
2959
+ display: none;
2960
+ }
2961
+
2962
+ igo-search-bar .mat-mdc-form-field-infix {
2963
+ min-height: 48px;
2964
+ }
2965
+ igo-search-bar .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label {
2966
+ top: 24px;
2967
+ }
2968
+ igo-search-bar .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
2969
+ --mat-mdc-form-field-label-transform: translateY(
2970
+ -30.75px)
2971
+ scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));
2972
+ transform: var(--mat-mdc-form-field-label-transform);
2973
+ }
2974
+ igo-search-bar .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
2975
+ padding-top: 12px;
2976
+ padding-bottom: 12px;
2977
+ }
2978
+ igo-search-bar .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix {
2979
+ padding-top: 12px;
2980
+ padding-bottom: 12px;
2981
+ }
2982
+ igo-search-bar .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mat-mdc-form-field-infix {
2983
+ padding-top: 12px;
2984
+ padding-bottom: 12px;
2985
+ }
2986
+ igo-search-bar .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-floating-label {
2987
+ display: none;
2988
+ }
2989
+
2990
+ igo-confirmation-popup-component h1 {
2991
+ font-size: 32px;
2992
+ font-family: Roboto, "Helvetica Neue", sans-serif;
2993
+ }