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