@odx/icons 2.9.6 → 2.10.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.
- package/CHANGELOG.md +14 -0
- package/core/core-demo-poster.html +2 -2
- package/core/core-icons.css +1 -1217
- package/medical/medical-demo-poster.html +24 -3
- package/medical/medical-iconmap.scss +3 -0
- package/medical/medical-icons.css +1 -97
- package/medical/medical-icons.eot +0 -0
- package/medical/medical-icons.scss +9 -0
- package/medical/medical-icons.ttf +0 -0
- package/medical/medical-icons.woff +0 -0
- package/medical/medical-icons.woff2 +0 -0
- package/medical/medical-metadata.json +12 -0
- package/medical/svg/bed-free.svg +1 -0
- package/medical/svg/bed-occupied.svg +1 -0
- package/medical/svg/bed-raised.svg +1 -0
- package/package.json +1 -1
- package/safety/safety-demo-poster.html +2 -2
- package/safety/safety-icons.css +1 -2819
- package/uib-legacy/uib-legacy-demo-poster.html +2 -2
- package/uib-legacy/uib-legacy-icons.css +1 -3660
|
@@ -1,3660 +1 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-family: uib-legacy-icons;
|
|
3
|
-
src: url("uib-legacy-icons.eot");
|
|
4
|
-
src: url("uib-legacy-icons.eot?#iefix") format("embedded-opentype"), url("uib-legacy-icons.woff") format("woff"), url("uib-legacy-icons.ttf") format("truetype");
|
|
5
|
-
font-style: normal;
|
|
6
|
-
font-weight: 400;
|
|
7
|
-
}
|
|
8
|
-
.odx-icon {
|
|
9
|
-
display: inline-block;
|
|
10
|
-
position: relative;
|
|
11
|
-
height: 1em;
|
|
12
|
-
width: 1em;
|
|
13
|
-
transform: translate(0, 0);
|
|
14
|
-
text-rendering: auto;
|
|
15
|
-
vertical-align: middle;
|
|
16
|
-
font-size: inherit;
|
|
17
|
-
font-weight: 400;
|
|
18
|
-
line-height: 1;
|
|
19
|
-
font-style: normal;
|
|
20
|
-
font-variant: normal;
|
|
21
|
-
-moz-osx-font-smoothing: grayscale;
|
|
22
|
-
-webkit-font-smoothing: antialiased;
|
|
23
|
-
}
|
|
24
|
-
.odx-icon[data-icon-set=uib-legacy] {
|
|
25
|
-
font-family: "uib-legacy-icons";
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.odx-icon span::before {
|
|
29
|
-
z-index: 1;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.odx-icon span::after {
|
|
33
|
-
z-index: 2;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.odx-icon::before,
|
|
37
|
-
.odx-icon::after,
|
|
38
|
-
.odx-icon span::before,
|
|
39
|
-
.odx-icon span::after {
|
|
40
|
-
display: block;
|
|
41
|
-
position: absolute;
|
|
42
|
-
white-space: normal;
|
|
43
|
-
text-indent: 0;
|
|
44
|
-
speak: none;
|
|
45
|
-
top: 0;
|
|
46
|
-
left: 0;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.odx-icon[data-icon-rotate] {
|
|
50
|
-
transform: rotate(var(--odx-icon-rotation));
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.odx-icon[data-icon-rotate="90deg"] {
|
|
54
|
-
--odx-icon-rotation: 90deg;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.odx-icon[data-icon-rotate="180deg"] {
|
|
58
|
-
--odx-icon-rotation: 180deg;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.odx-icon[data-icon-rotate="270deg"] {
|
|
62
|
-
--odx-icon-rotation: 270deg;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.odx-icon[data-icon-flip=horizontal] {
|
|
66
|
-
transform: scaleX(-1);
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
.odx-icon[data-icon-flip=vertical] {
|
|
70
|
-
transform: scaleY(-1);
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
.odx-icon[data-icon-flip=both] {
|
|
74
|
-
transform: scale(-1);
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
[data-icon-set=uib-legacy][data-icon-name=absorber-absent]::before {
|
|
78
|
-
content: "\f103";
|
|
79
|
-
}
|
|
80
|
-
[data-icon-set=uib-legacy][data-icon-name=absorber-absent]::after {
|
|
81
|
-
content: "\f101";
|
|
82
|
-
color: #F30303;
|
|
83
|
-
}
|
|
84
|
-
[data-icon-set=uib-legacy][data-icon-name=absorber-absent] span::before {
|
|
85
|
-
content: "\f102";
|
|
86
|
-
color: #FFF;
|
|
87
|
-
}
|
|
88
|
-
[data-icon-set=uib-legacy][data-icon-name=absorber-add]::before {
|
|
89
|
-
content: "\f104";
|
|
90
|
-
}
|
|
91
|
-
[data-icon-set=uib-legacy][data-icon-name=absorber-ok]::before {
|
|
92
|
-
content: "\f107";
|
|
93
|
-
}
|
|
94
|
-
[data-icon-set=uib-legacy][data-icon-name=absorber-ok]::after {
|
|
95
|
-
content: "\f105";
|
|
96
|
-
color: #00DD31;
|
|
97
|
-
}
|
|
98
|
-
[data-icon-set=uib-legacy][data-icon-name=absorber-ok] span::before {
|
|
99
|
-
content: "\f444";
|
|
100
|
-
color: #000000;
|
|
101
|
-
}
|
|
102
|
-
[data-icon-set=uib-legacy][data-icon-name=absorber-query]::before {
|
|
103
|
-
content: "\f108";
|
|
104
|
-
}
|
|
105
|
-
[data-icon-set=uib-legacy][data-icon-name=absorber-warning]::before {
|
|
106
|
-
content: "\f10b";
|
|
107
|
-
}
|
|
108
|
-
[data-icon-set=uib-legacy][data-icon-name=absorber-warning]::after {
|
|
109
|
-
content: "\f109";
|
|
110
|
-
color: #FFE300;
|
|
111
|
-
}
|
|
112
|
-
[data-icon-set=uib-legacy][data-icon-name=absorber-warning] span::before {
|
|
113
|
-
content: "\f445";
|
|
114
|
-
color: #000000;
|
|
115
|
-
}
|
|
116
|
-
[data-icon-set=uib-legacy][data-icon-name=accessories]::before {
|
|
117
|
-
content: "\f10c";
|
|
118
|
-
}
|
|
119
|
-
[data-icon-set=uib-legacy][data-icon-name=acknowledge]::before {
|
|
120
|
-
content: "\f112";
|
|
121
|
-
}
|
|
122
|
-
[data-icon-set=uib-legacy][data-icon-name=acknowledge-all]::before {
|
|
123
|
-
content: "\f111";
|
|
124
|
-
}
|
|
125
|
-
[data-icon-set=uib-legacy][data-icon-name=acknowledge-all]::after {
|
|
126
|
-
content: "\f10f";
|
|
127
|
-
color: #00DD31;
|
|
128
|
-
}
|
|
129
|
-
[data-icon-set=uib-legacy][data-icon-name=acknowledge-all] span::before {
|
|
130
|
-
content: "\f447";
|
|
131
|
-
color: #000000;
|
|
132
|
-
}
|
|
133
|
-
[data-icon-set=uib-legacy][data-icon-name=acknowledge]::after {
|
|
134
|
-
content: "\f10d";
|
|
135
|
-
color: #00DD31;
|
|
136
|
-
}
|
|
137
|
-
[data-icon-set=uib-legacy][data-icon-name=acknowledge] span::before {
|
|
138
|
-
content: "\f446";
|
|
139
|
-
color: #000000;
|
|
140
|
-
}
|
|
141
|
-
[data-icon-set=uib-legacy][data-icon-name=add]::before {
|
|
142
|
-
content: "\f448";
|
|
143
|
-
}
|
|
144
|
-
[data-icon-set=uib-legacy][data-icon-name=address]::before {
|
|
145
|
-
content: "\f113";
|
|
146
|
-
}
|
|
147
|
-
[data-icon-set=uib-legacy][data-icon-name=adjust]::before {
|
|
148
|
-
content: "\f114";
|
|
149
|
-
}
|
|
150
|
-
[data-icon-set=uib-legacy][data-icon-name=agriculture]::before {
|
|
151
|
-
content: "\f115";
|
|
152
|
-
}
|
|
153
|
-
[data-icon-set=uib-legacy][data-icon-name=alarm]::before {
|
|
154
|
-
content: "\f118";
|
|
155
|
-
}
|
|
156
|
-
[data-icon-set=uib-legacy][data-icon-name=alarm-stel]::before {
|
|
157
|
-
content: "\f116";
|
|
158
|
-
}
|
|
159
|
-
[data-icon-set=uib-legacy][data-icon-name=alarm-twa]::before {
|
|
160
|
-
content: "\f117";
|
|
161
|
-
}
|
|
162
|
-
[data-icon-set=uib-legacy][data-icon-name=alarm1-a1]::before {
|
|
163
|
-
content: "\f119";
|
|
164
|
-
}
|
|
165
|
-
[data-icon-set=uib-legacy][data-icon-name=alarm1-a2]::before {
|
|
166
|
-
content: "\f11a";
|
|
167
|
-
}
|
|
168
|
-
[data-icon-set=uib-legacy][data-icon-name=alarm1-a3]::before {
|
|
169
|
-
content: "\f11b";
|
|
170
|
-
}
|
|
171
|
-
[data-icon-set=uib-legacy][data-icon-name=alarm1-a4]::before {
|
|
172
|
-
content: "\f11c";
|
|
173
|
-
}
|
|
174
|
-
[data-icon-set=uib-legacy][data-icon-name=alarm1-average]::before {
|
|
175
|
-
content: "\f121";
|
|
176
|
-
}
|
|
177
|
-
[data-icon-set=uib-legacy][data-icon-name=alarm1-average-a1]::before {
|
|
178
|
-
content: "\f11d";
|
|
179
|
-
}
|
|
180
|
-
[data-icon-set=uib-legacy][data-icon-name=alarm1-average-a2]::before {
|
|
181
|
-
content: "\f11e";
|
|
182
|
-
}
|
|
183
|
-
[data-icon-set=uib-legacy][data-icon-name=alarm1-average-a3]::before {
|
|
184
|
-
content: "\f11f";
|
|
185
|
-
}
|
|
186
|
-
[data-icon-set=uib-legacy][data-icon-name=alarm1-average-a4]::before {
|
|
187
|
-
content: "\f120";
|
|
188
|
-
}
|
|
189
|
-
[data-icon-set=uib-legacy][data-icon-name=alarm2]::before {
|
|
190
|
-
content: "\f106";
|
|
191
|
-
}
|
|
192
|
-
[data-icon-set=uib-legacy][data-icon-name=alarm2-a1]::before {
|
|
193
|
-
content: "\f122";
|
|
194
|
-
}
|
|
195
|
-
[data-icon-set=uib-legacy][data-icon-name=alarm2-a2]::before {
|
|
196
|
-
content: "\f123";
|
|
197
|
-
}
|
|
198
|
-
[data-icon-set=uib-legacy][data-icon-name=alarm3-a1]::before {
|
|
199
|
-
content: "\f10a";
|
|
200
|
-
color: #FFF;
|
|
201
|
-
}
|
|
202
|
-
[data-icon-set=uib-legacy][data-icon-name=alarm3-a1]::after {
|
|
203
|
-
content: "\f10e";
|
|
204
|
-
color: #F30303;
|
|
205
|
-
}
|
|
206
|
-
[data-icon-set=uib-legacy][data-icon-name=alarm3-a2]::before {
|
|
207
|
-
content: "\f110";
|
|
208
|
-
color: #FFF;
|
|
209
|
-
}
|
|
210
|
-
[data-icon-set=uib-legacy][data-icon-name=alarm3-a2]::after {
|
|
211
|
-
content: "\f14c";
|
|
212
|
-
color: #F30303;
|
|
213
|
-
}
|
|
214
|
-
[data-icon-set=uib-legacy][data-icon-name=alarm3-protection]::before {
|
|
215
|
-
content: "\f126";
|
|
216
|
-
color: #FFF;
|
|
217
|
-
}
|
|
218
|
-
[data-icon-set=uib-legacy][data-icon-name=alarm3-protection]::after {
|
|
219
|
-
content: "\f127";
|
|
220
|
-
color: #F30303;
|
|
221
|
-
}
|
|
222
|
-
[data-icon-set=uib-legacy][data-icon-name=alarm3-stel]::before {
|
|
223
|
-
content: "\f156";
|
|
224
|
-
color: #FFF;
|
|
225
|
-
}
|
|
226
|
-
[data-icon-set=uib-legacy][data-icon-name=alarm3-stel]::after {
|
|
227
|
-
content: "\f15d";
|
|
228
|
-
color: #F30303;
|
|
229
|
-
}
|
|
230
|
-
[data-icon-set=uib-legacy][data-icon-name=alarm3-twa]::before {
|
|
231
|
-
content: "\f16a";
|
|
232
|
-
color: #F30303;
|
|
233
|
-
}
|
|
234
|
-
[data-icon-set=uib-legacy][data-icon-name=alarm3-twa]::after {
|
|
235
|
-
content: "\f12b";
|
|
236
|
-
color: #FFF;
|
|
237
|
-
}
|
|
238
|
-
[data-icon-set=uib-legacy][data-icon-name=alarmtype]::before {
|
|
239
|
-
content: "\f44c";
|
|
240
|
-
}
|
|
241
|
-
[data-icon-set=uib-legacy][data-icon-name=alarmtype-info]::before {
|
|
242
|
-
content: "\f44b";
|
|
243
|
-
}
|
|
244
|
-
[data-icon-set=uib-legacy][data-icon-name=alcotest-3820]::before {
|
|
245
|
-
content: "\f12c";
|
|
246
|
-
}
|
|
247
|
-
[data-icon-set=uib-legacy][data-icon-name=alcotest-5820]::before {
|
|
248
|
-
content: "\f12d";
|
|
249
|
-
}
|
|
250
|
-
[data-icon-set=uib-legacy][data-icon-name=alcotest-6820]::before {
|
|
251
|
-
content: "\f12e";
|
|
252
|
-
}
|
|
253
|
-
[data-icon-set=uib-legacy][data-icon-name=alcotest-7000-funnel]::before {
|
|
254
|
-
content: "\f12f";
|
|
255
|
-
}
|
|
256
|
-
[data-icon-set=uib-legacy][data-icon-name=alcotest-7000-tube]::before {
|
|
257
|
-
content: "\f130";
|
|
258
|
-
}
|
|
259
|
-
[data-icon-set=uib-legacy][data-icon-name=alcotest-7510]::before {
|
|
260
|
-
content: "\f131";
|
|
261
|
-
}
|
|
262
|
-
[data-icon-set=uib-legacy][data-icon-name=align-horizontal]::before {
|
|
263
|
-
content: "\f44d";
|
|
264
|
-
}
|
|
265
|
-
[data-icon-set=uib-legacy][data-icon-name=align-vertical]::before {
|
|
266
|
-
content: "\f44e";
|
|
267
|
-
}
|
|
268
|
-
[data-icon-set=uib-legacy][data-icon-name=allowlist]::before {
|
|
269
|
-
content: "\f133";
|
|
270
|
-
}
|
|
271
|
-
[data-icon-set=uib-legacy][data-icon-name=allowlist-upload]::before {
|
|
272
|
-
content: "\f132";
|
|
273
|
-
}
|
|
274
|
-
[data-icon-set=uib-legacy][data-icon-name=analysis]::before {
|
|
275
|
-
content: "\f134";
|
|
276
|
-
}
|
|
277
|
-
[data-icon-set=uib-legacy][data-icon-name=anglegrinder]::before {
|
|
278
|
-
content: "\f135";
|
|
279
|
-
}
|
|
280
|
-
[data-icon-set=uib-legacy][data-icon-name=application-feedback]::before {
|
|
281
|
-
content: "\f136";
|
|
282
|
-
}
|
|
283
|
-
[data-icon-set=uib-legacy][data-icon-name=arrow-scroll-down]::before {
|
|
284
|
-
content: "\f44f";
|
|
285
|
-
}
|
|
286
|
-
[data-icon-set=uib-legacy][data-icon-name=arrow-scroll-left]::before {
|
|
287
|
-
content: "\f450";
|
|
288
|
-
}
|
|
289
|
-
[data-icon-set=uib-legacy][data-icon-name=arrow-scroll-right]::before {
|
|
290
|
-
content: "\f451";
|
|
291
|
-
}
|
|
292
|
-
[data-icon-set=uib-legacy][data-icon-name=arrow-scroll-up]::before {
|
|
293
|
-
content: "\f452";
|
|
294
|
-
}
|
|
295
|
-
[data-icon-set=uib-legacy][data-icon-name=arrow1-down]::before {
|
|
296
|
-
content: "\f453";
|
|
297
|
-
}
|
|
298
|
-
[data-icon-set=uib-legacy][data-icon-name=arrow1-left]::before {
|
|
299
|
-
content: "\f454";
|
|
300
|
-
}
|
|
301
|
-
[data-icon-set=uib-legacy][data-icon-name=arrow1-right]::before {
|
|
302
|
-
content: "\f455";
|
|
303
|
-
}
|
|
304
|
-
[data-icon-set=uib-legacy][data-icon-name=arrow1-up]::before {
|
|
305
|
-
content: "\f456";
|
|
306
|
-
}
|
|
307
|
-
[data-icon-set=uib-legacy][data-icon-name=arrow2-down]::before {
|
|
308
|
-
content: "\f457";
|
|
309
|
-
}
|
|
310
|
-
[data-icon-set=uib-legacy][data-icon-name=arrow2-left]::before {
|
|
311
|
-
content: "\f458";
|
|
312
|
-
}
|
|
313
|
-
[data-icon-set=uib-legacy][data-icon-name=arrow2-right]::before {
|
|
314
|
-
content: "\f459";
|
|
315
|
-
}
|
|
316
|
-
[data-icon-set=uib-legacy][data-icon-name=arrow2-up]::before {
|
|
317
|
-
content: "\f45a";
|
|
318
|
-
}
|
|
319
|
-
[data-icon-set=uib-legacy][data-icon-name=arrow3-down]::before {
|
|
320
|
-
content: "\f45b";
|
|
321
|
-
}
|
|
322
|
-
[data-icon-set=uib-legacy][data-icon-name=arrow3-left]::before {
|
|
323
|
-
content: "\f45c";
|
|
324
|
-
}
|
|
325
|
-
[data-icon-set=uib-legacy][data-icon-name=arrow3-right]::before {
|
|
326
|
-
content: "\f45d";
|
|
327
|
-
}
|
|
328
|
-
[data-icon-set=uib-legacy][data-icon-name=arrow3-up]::before {
|
|
329
|
-
content: "\f45e";
|
|
330
|
-
}
|
|
331
|
-
[data-icon-set=uib-legacy][data-icon-name=articles-incoming]::before {
|
|
332
|
-
content: "\f137";
|
|
333
|
-
}
|
|
334
|
-
[data-icon-set=uib-legacy][data-icon-name=articles-issue]::before {
|
|
335
|
-
content: "\f138";
|
|
336
|
-
}
|
|
337
|
-
[data-icon-set=uib-legacy][data-icon-name=articles-outgoing]::before {
|
|
338
|
-
content: "\f139";
|
|
339
|
-
}
|
|
340
|
-
[data-icon-set=uib-legacy][data-icon-name=articles-return]::before {
|
|
341
|
-
content: "\f13a";
|
|
342
|
-
}
|
|
343
|
-
[data-icon-set=uib-legacy][data-icon-name=assemble]::before {
|
|
344
|
-
content: "\f13b";
|
|
345
|
-
}
|
|
346
|
-
[data-icon-set=uib-legacy][data-icon-name=attachment]::before {
|
|
347
|
-
content: "\f460";
|
|
348
|
-
}
|
|
349
|
-
[data-icon-set=uib-legacy][data-icon-name=attachment-disabled]::before {
|
|
350
|
-
content: "\f45f";
|
|
351
|
-
}
|
|
352
|
-
[data-icon-set=uib-legacy][data-icon-name=barcode-scan]::before {
|
|
353
|
-
content: "\f13c";
|
|
354
|
-
}
|
|
355
|
-
[data-icon-set=uib-legacy][data-icon-name=battery-1]::before {
|
|
356
|
-
content: "\f13d";
|
|
357
|
-
}
|
|
358
|
-
[data-icon-set=uib-legacy][data-icon-name=battery-100-percent]::before {
|
|
359
|
-
content: "\f461";
|
|
360
|
-
}
|
|
361
|
-
[data-icon-set=uib-legacy][data-icon-name=battery-2]::before {
|
|
362
|
-
content: "\f13e";
|
|
363
|
-
}
|
|
364
|
-
[data-icon-set=uib-legacy][data-icon-name=battery-25-percent]::before {
|
|
365
|
-
content: "\f462";
|
|
366
|
-
}
|
|
367
|
-
[data-icon-set=uib-legacy][data-icon-name=battery-3]::before {
|
|
368
|
-
content: "\f13f";
|
|
369
|
-
}
|
|
370
|
-
[data-icon-set=uib-legacy][data-icon-name=battery-4]::before {
|
|
371
|
-
content: "\f140";
|
|
372
|
-
}
|
|
373
|
-
[data-icon-set=uib-legacy][data-icon-name=battery-5]::before {
|
|
374
|
-
content: "\f141";
|
|
375
|
-
}
|
|
376
|
-
[data-icon-set=uib-legacy][data-icon-name=battery-50-percent]::before {
|
|
377
|
-
content: "\f463";
|
|
378
|
-
}
|
|
379
|
-
[data-icon-set=uib-legacy][data-icon-name=battery-75-percent]::before {
|
|
380
|
-
content: "\f464";
|
|
381
|
-
}
|
|
382
|
-
[data-icon-set=uib-legacy][data-icon-name=battery-alarm]::before {
|
|
383
|
-
content: "\f465";
|
|
384
|
-
color: #F30303;
|
|
385
|
-
}
|
|
386
|
-
[data-icon-set=uib-legacy][data-icon-name=battery-alarm]::after {
|
|
387
|
-
content: "\f466";
|
|
388
|
-
color: #FFF;
|
|
389
|
-
}
|
|
390
|
-
[data-icon-set=uib-legacy][data-icon-name=battery-alarm] span::before {
|
|
391
|
-
content: "\f467";
|
|
392
|
-
}
|
|
393
|
-
[data-icon-set=uib-legacy][data-icon-name=battery-charging]::before {
|
|
394
|
-
content: "\f468";
|
|
395
|
-
}
|
|
396
|
-
[data-icon-set=uib-legacy][data-icon-name=battery-error]::before {
|
|
397
|
-
content: "\f46b";
|
|
398
|
-
}
|
|
399
|
-
[data-icon-set=uib-legacy][data-icon-name=battery-error]::after {
|
|
400
|
-
content: "\f469";
|
|
401
|
-
color: #F30303;
|
|
402
|
-
}
|
|
403
|
-
[data-icon-set=uib-legacy][data-icon-name=battery-error] span::before {
|
|
404
|
-
content: "\f46a";
|
|
405
|
-
color: #FFF;
|
|
406
|
-
}
|
|
407
|
-
[data-icon-set=uib-legacy][data-icon-name=battery-low]::before {
|
|
408
|
-
content: "\f46c";
|
|
409
|
-
}
|
|
410
|
-
[data-icon-set=uib-legacy][data-icon-name=battery-uncalibrated]::before {
|
|
411
|
-
content: "\f46d";
|
|
412
|
-
}
|
|
413
|
-
[data-icon-set=uib-legacy][data-icon-name=battery-warning]::before {
|
|
414
|
-
content: "\f470";
|
|
415
|
-
}
|
|
416
|
-
[data-icon-set=uib-legacy][data-icon-name=battery-warning]::after {
|
|
417
|
-
content: "\f46e";
|
|
418
|
-
color: #FFE300;
|
|
419
|
-
}
|
|
420
|
-
[data-icon-set=uib-legacy][data-icon-name=battery-warning] span::before {
|
|
421
|
-
content: "\f46f";
|
|
422
|
-
color: #000000;
|
|
423
|
-
}
|
|
424
|
-
[data-icon-set=uib-legacy][data-icon-name=blocking-alarm]::before {
|
|
425
|
-
content: "\f142";
|
|
426
|
-
}
|
|
427
|
-
[data-icon-set=uib-legacy][data-icon-name=blow]::before {
|
|
428
|
-
content: "\f143";
|
|
429
|
-
}
|
|
430
|
-
[data-icon-set=uib-legacy][data-icon-name=bluetooth]::before {
|
|
431
|
-
content: "\f473";
|
|
432
|
-
}
|
|
433
|
-
[data-icon-set=uib-legacy][data-icon-name=bluetooth-disabled]::before {
|
|
434
|
-
content: "\f471";
|
|
435
|
-
}
|
|
436
|
-
[data-icon-set=uib-legacy][data-icon-name=bluetooth-pairing]::before {
|
|
437
|
-
content: "\f472";
|
|
438
|
-
}
|
|
439
|
-
[data-icon-set=uib-legacy][data-icon-name=bodyguard]::before {
|
|
440
|
-
content: "\f144";
|
|
441
|
-
}
|
|
442
|
-
[data-icon-set=uib-legacy][data-icon-name=bookmark]::before {
|
|
443
|
-
content: "\f474";
|
|
444
|
-
}
|
|
445
|
-
[data-icon-set=uib-legacy][data-icon-name=boot]::before {
|
|
446
|
-
content: "\f145";
|
|
447
|
-
}
|
|
448
|
-
[data-icon-set=uib-legacy][data-icon-name=bottle-price]::before {
|
|
449
|
-
content: "\f146";
|
|
450
|
-
}
|
|
451
|
-
[data-icon-set=uib-legacy][data-icon-name=breathing-apparatus]::before {
|
|
452
|
-
content: "\f147";
|
|
453
|
-
}
|
|
454
|
-
[data-icon-set=uib-legacy][data-icon-name=brightness-1]::before {
|
|
455
|
-
content: "\f475";
|
|
456
|
-
}
|
|
457
|
-
[data-icon-set=uib-legacy][data-icon-name=brightness-2]::before {
|
|
458
|
-
content: "\f476";
|
|
459
|
-
}
|
|
460
|
-
[data-icon-set=uib-legacy][data-icon-name=brightness-3]::before {
|
|
461
|
-
content: "\f477";
|
|
462
|
-
}
|
|
463
|
-
[data-icon-set=uib-legacy][data-icon-name=brightness-4]::before {
|
|
464
|
-
content: "\f478";
|
|
465
|
-
}
|
|
466
|
-
[data-icon-set=uib-legacy][data-icon-name=brightness-5]::before {
|
|
467
|
-
content: "\f479";
|
|
468
|
-
}
|
|
469
|
-
[data-icon-set=uib-legacy][data-icon-name=brightness-auto]::before {
|
|
470
|
-
content: "\f47a";
|
|
471
|
-
}
|
|
472
|
-
[data-icon-set=uib-legacy][data-icon-name=building]::before {
|
|
473
|
-
content: "\f14f";
|
|
474
|
-
}
|
|
475
|
-
[data-icon-set=uib-legacy][data-icon-name=building-basement]::before {
|
|
476
|
-
content: "\f148";
|
|
477
|
-
}
|
|
478
|
-
[data-icon-set=uib-legacy][data-icon-name=building-floors]::before {
|
|
479
|
-
content: "\f149";
|
|
480
|
-
}
|
|
481
|
-
[data-icon-set=uib-legacy][data-icon-name=building-units]::before {
|
|
482
|
-
content: "\f14a";
|
|
483
|
-
}
|
|
484
|
-
[data-icon-set=uib-legacy][data-icon-name=building-warning]::before {
|
|
485
|
-
content: "\f14d";
|
|
486
|
-
}
|
|
487
|
-
[data-icon-set=uib-legacy][data-icon-name=building-warning]::after {
|
|
488
|
-
content: "\f14b";
|
|
489
|
-
color: #FFE300;
|
|
490
|
-
}
|
|
491
|
-
[data-icon-set=uib-legacy][data-icon-name=building-warning] span::before {
|
|
492
|
-
content: "\f47b";
|
|
493
|
-
color: #000000;
|
|
494
|
-
}
|
|
495
|
-
[data-icon-set=uib-legacy][data-icon-name=building-year]::before {
|
|
496
|
-
content: "\f14e";
|
|
497
|
-
}
|
|
498
|
-
[data-icon-set=uib-legacy][data-icon-name=bumptest]::before {
|
|
499
|
-
content: "\f150";
|
|
500
|
-
}
|
|
501
|
-
[data-icon-set=uib-legacy][data-icon-name=calculator]::before {
|
|
502
|
-
content: "\f151";
|
|
503
|
-
}
|
|
504
|
-
[data-icon-set=uib-legacy][data-icon-name=calendar]::before {
|
|
505
|
-
content: "\f48e";
|
|
506
|
-
}
|
|
507
|
-
[data-icon-set=uib-legacy][data-icon-name=calendar-bumptest]::before {
|
|
508
|
-
content: "\f47e";
|
|
509
|
-
}
|
|
510
|
-
[data-icon-set=uib-legacy][data-icon-name=calendar-bumptest-error]::before {
|
|
511
|
-
content: "\f47c";
|
|
512
|
-
}
|
|
513
|
-
[data-icon-set=uib-legacy][data-icon-name=calendar-bumptest-warning]::before {
|
|
514
|
-
content: "\f47d";
|
|
515
|
-
}
|
|
516
|
-
[data-icon-set=uib-legacy][data-icon-name=calendar-calibration]::before {
|
|
517
|
-
content: "\f481";
|
|
518
|
-
}
|
|
519
|
-
[data-icon-set=uib-legacy][data-icon-name=calendar-calibration-error]::before {
|
|
520
|
-
content: "\f47f";
|
|
521
|
-
}
|
|
522
|
-
[data-icon-set=uib-legacy][data-icon-name=calendar-calibration-warning]::before {
|
|
523
|
-
content: "\f480";
|
|
524
|
-
}
|
|
525
|
-
[data-icon-set=uib-legacy][data-icon-name=calendar-flag]::before {
|
|
526
|
-
content: "\f482";
|
|
527
|
-
color: #FFE300;
|
|
528
|
-
}
|
|
529
|
-
[data-icon-set=uib-legacy][data-icon-name=calendar-flag]::after {
|
|
530
|
-
content: "\f483";
|
|
531
|
-
}
|
|
532
|
-
[data-icon-set=uib-legacy][data-icon-name=calendar-interval]::before {
|
|
533
|
-
content: "\f484";
|
|
534
|
-
}
|
|
535
|
-
[data-icon-set=uib-legacy][data-icon-name=calendar-list]::before {
|
|
536
|
-
content: "\f485";
|
|
537
|
-
}
|
|
538
|
-
[data-icon-set=uib-legacy][data-icon-name=calendar-time]::before {
|
|
539
|
-
content: "\f486";
|
|
540
|
-
}
|
|
541
|
-
[data-icon-set=uib-legacy][data-icon-name=calendar-user]::before {
|
|
542
|
-
content: "\f489";
|
|
543
|
-
}
|
|
544
|
-
[data-icon-set=uib-legacy][data-icon-name=calendar-user-error]::before {
|
|
545
|
-
content: "\f487";
|
|
546
|
-
}
|
|
547
|
-
[data-icon-set=uib-legacy][data-icon-name=calendar-user-warning]::before {
|
|
548
|
-
content: "\f488";
|
|
549
|
-
}
|
|
550
|
-
[data-icon-set=uib-legacy][data-icon-name=calendar-warning]::before {
|
|
551
|
-
content: "\f48a";
|
|
552
|
-
color: #FFE300;
|
|
553
|
-
}
|
|
554
|
-
[data-icon-set=uib-legacy][data-icon-name=calendar-warning]::after {
|
|
555
|
-
content: "\f48b";
|
|
556
|
-
color: #000000;
|
|
557
|
-
}
|
|
558
|
-
[data-icon-set=uib-legacy][data-icon-name=calendar-warning] span::before {
|
|
559
|
-
content: "\f48c";
|
|
560
|
-
}
|
|
561
|
-
[data-icon-set=uib-legacy][data-icon-name=calendar-week-view]::before {
|
|
562
|
-
content: "\f48d";
|
|
563
|
-
}
|
|
564
|
-
[data-icon-set=uib-legacy][data-icon-name=calender-day-view]::before {
|
|
565
|
-
content: "\f48f";
|
|
566
|
-
}
|
|
567
|
-
[data-icon-set=uib-legacy][data-icon-name=calender-event]::before {
|
|
568
|
-
content: "\f490";
|
|
569
|
-
}
|
|
570
|
-
[data-icon-set=uib-legacy][data-icon-name=calibration]::before {
|
|
571
|
-
content: "\f15f";
|
|
572
|
-
}
|
|
573
|
-
[data-icon-set=uib-legacy][data-icon-name=calibration-comp]::before {
|
|
574
|
-
content: "\f158";
|
|
575
|
-
}
|
|
576
|
-
[data-icon-set=uib-legacy][data-icon-name=calibration-comp-error]::before {
|
|
577
|
-
content: "\f154";
|
|
578
|
-
}
|
|
579
|
-
[data-icon-set=uib-legacy][data-icon-name=calibration-comp-error]::after {
|
|
580
|
-
content: "\f152";
|
|
581
|
-
color: #F30303;
|
|
582
|
-
}
|
|
583
|
-
[data-icon-set=uib-legacy][data-icon-name=calibration-comp-error] span::before {
|
|
584
|
-
content: "\f153";
|
|
585
|
-
color: #FFF;
|
|
586
|
-
}
|
|
587
|
-
[data-icon-set=uib-legacy][data-icon-name=calibration-comp-warning]::before {
|
|
588
|
-
content: "\f157";
|
|
589
|
-
}
|
|
590
|
-
[data-icon-set=uib-legacy][data-icon-name=calibration-comp-warning]::after {
|
|
591
|
-
content: "\f155";
|
|
592
|
-
color: #FFE300;
|
|
593
|
-
}
|
|
594
|
-
[data-icon-set=uib-legacy][data-icon-name=calibration-comp-warning] span::before {
|
|
595
|
-
content: "\f491";
|
|
596
|
-
color: #000000;
|
|
597
|
-
}
|
|
598
|
-
[data-icon-set=uib-legacy][data-icon-name=calibration-error]::before {
|
|
599
|
-
content: "\f15b";
|
|
600
|
-
}
|
|
601
|
-
[data-icon-set=uib-legacy][data-icon-name=calibration-error]::after {
|
|
602
|
-
content: "\f159";
|
|
603
|
-
color: #F30303;
|
|
604
|
-
}
|
|
605
|
-
[data-icon-set=uib-legacy][data-icon-name=calibration-error] span::before {
|
|
606
|
-
content: "\f15a";
|
|
607
|
-
color: #FFF;
|
|
608
|
-
}
|
|
609
|
-
[data-icon-set=uib-legacy][data-icon-name=calibration-warning]::before {
|
|
610
|
-
content: "\f15e";
|
|
611
|
-
}
|
|
612
|
-
[data-icon-set=uib-legacy][data-icon-name=calibration-warning]::after {
|
|
613
|
-
content: "\f15c";
|
|
614
|
-
color: #FFE300;
|
|
615
|
-
}
|
|
616
|
-
[data-icon-set=uib-legacy][data-icon-name=calibration-warning] span::before {
|
|
617
|
-
content: "\f492";
|
|
618
|
-
color: #000000;
|
|
619
|
-
}
|
|
620
|
-
[data-icon-set=uib-legacy][data-icon-name=car]::before {
|
|
621
|
-
content: "\f162";
|
|
622
|
-
}
|
|
623
|
-
[data-icon-set=uib-legacy][data-icon-name=car-accident]::before {
|
|
624
|
-
content: "\f160";
|
|
625
|
-
}
|
|
626
|
-
[data-icon-set=uib-legacy][data-icon-name=car-swap]::before {
|
|
627
|
-
content: "\f161";
|
|
628
|
-
}
|
|
629
|
-
[data-icon-set=uib-legacy][data-icon-name=casting]::before {
|
|
630
|
-
content: "\f163";
|
|
631
|
-
}
|
|
632
|
-
[data-icon-set=uib-legacy][data-icon-name=catalog]::before {
|
|
633
|
-
content: "\f164";
|
|
634
|
-
}
|
|
635
|
-
[data-icon-set=uib-legacy][data-icon-name=certicifate-upload]::before {
|
|
636
|
-
content: "\f165";
|
|
637
|
-
}
|
|
638
|
-
[data-icon-set=uib-legacy][data-icon-name=certificate]::before {
|
|
639
|
-
content: "\f16f";
|
|
640
|
-
}
|
|
641
|
-
[data-icon-set=uib-legacy][data-icon-name=certificate-error]::before {
|
|
642
|
-
content: "\f166";
|
|
643
|
-
color: #F30303;
|
|
644
|
-
}
|
|
645
|
-
[data-icon-set=uib-legacy][data-icon-name=certificate-error]::after {
|
|
646
|
-
content: "\f167";
|
|
647
|
-
color: #FFF;
|
|
648
|
-
}
|
|
649
|
-
[data-icon-set=uib-legacy][data-icon-name=certificate-error] span::before {
|
|
650
|
-
content: "\f168";
|
|
651
|
-
}
|
|
652
|
-
[data-icon-set=uib-legacy][data-icon-name=certificate-valid]::before {
|
|
653
|
-
content: "\f16b";
|
|
654
|
-
}
|
|
655
|
-
[data-icon-set=uib-legacy][data-icon-name=certificate-valid]::after {
|
|
656
|
-
content: "\f169";
|
|
657
|
-
color: #00DD31;
|
|
658
|
-
}
|
|
659
|
-
[data-icon-set=uib-legacy][data-icon-name=certificate-valid] span::before {
|
|
660
|
-
content: "\f493";
|
|
661
|
-
color: #000000;
|
|
662
|
-
}
|
|
663
|
-
[data-icon-set=uib-legacy][data-icon-name=certificate-warning]::before {
|
|
664
|
-
content: "\f16c";
|
|
665
|
-
color: #FFE300;
|
|
666
|
-
}
|
|
667
|
-
[data-icon-set=uib-legacy][data-icon-name=certificate-warning]::after {
|
|
668
|
-
content: "\f494";
|
|
669
|
-
color: #000000;
|
|
670
|
-
}
|
|
671
|
-
[data-icon-set=uib-legacy][data-icon-name=certificate-warning] span::before {
|
|
672
|
-
content: "\f16e";
|
|
673
|
-
}
|
|
674
|
-
[data-icon-set=uib-legacy][data-icon-name=changelog]::before {
|
|
675
|
-
content: "\f170";
|
|
676
|
-
}
|
|
677
|
-
[data-icon-set=uib-legacy][data-icon-name=charging]::before {
|
|
678
|
-
content: "\f172";
|
|
679
|
-
}
|
|
680
|
-
[data-icon-set=uib-legacy][data-icon-name=charging-disabled]::before {
|
|
681
|
-
content: "\f171";
|
|
682
|
-
}
|
|
683
|
-
[data-icon-set=uib-legacy][data-icon-name=checkbox]::before {
|
|
684
|
-
content: "\f175";
|
|
685
|
-
}
|
|
686
|
-
[data-icon-set=uib-legacy][data-icon-name=checkbox-active]::before {
|
|
687
|
-
content: "\f495";
|
|
688
|
-
color: #0074FF;
|
|
689
|
-
}
|
|
690
|
-
[data-icon-set=uib-legacy][data-icon-name=checkbox-default]::before {
|
|
691
|
-
content: "\f174";
|
|
692
|
-
}
|
|
693
|
-
[data-icon-set=uib-legacy][data-icon-name=chemicals]::before {
|
|
694
|
-
content: "\f176";
|
|
695
|
-
}
|
|
696
|
-
[data-icon-set=uib-legacy][data-icon-name=chip-eject]::before {
|
|
697
|
-
content: "\f179";
|
|
698
|
-
}
|
|
699
|
-
[data-icon-set=uib-legacy][data-icon-name=chip-eject]::after {
|
|
700
|
-
content: "\f496";
|
|
701
|
-
color: #0074FF;
|
|
702
|
-
}
|
|
703
|
-
[data-icon-set=uib-legacy][data-icon-name=chip-eject] span::before {
|
|
704
|
-
content: "\f178";
|
|
705
|
-
color: #FFF;
|
|
706
|
-
}
|
|
707
|
-
[data-icon-set=uib-legacy][data-icon-name=chip-insert]::before {
|
|
708
|
-
content: "\f17a";
|
|
709
|
-
}
|
|
710
|
-
[data-icon-set=uib-legacy][data-icon-name=circle]::before {
|
|
711
|
-
content: "\f17b";
|
|
712
|
-
}
|
|
713
|
-
[data-icon-set=uib-legacy][data-icon-name=cleaning]::before {
|
|
714
|
-
content: "\f17c";
|
|
715
|
-
}
|
|
716
|
-
[data-icon-set=uib-legacy][data-icon-name=clockwise-90-degree]::before {
|
|
717
|
-
content: "\f17d";
|
|
718
|
-
}
|
|
719
|
-
[data-icon-set=uib-legacy][data-icon-name=close]::before {
|
|
720
|
-
content: "\f497";
|
|
721
|
-
}
|
|
722
|
-
[data-icon-set=uib-legacy][data-icon-name=close-all]::before {
|
|
723
|
-
content: "\f17e";
|
|
724
|
-
color: #F30303;
|
|
725
|
-
}
|
|
726
|
-
[data-icon-set=uib-legacy][data-icon-name=close-all]::after {
|
|
727
|
-
content: "\f17f";
|
|
728
|
-
}
|
|
729
|
-
[data-icon-set=uib-legacy][data-icon-name=clothing]::before {
|
|
730
|
-
content: "\f180";
|
|
731
|
-
}
|
|
732
|
-
[data-icon-set=uib-legacy][data-icon-name=cloud]::before {
|
|
733
|
-
content: "\f499";
|
|
734
|
-
}
|
|
735
|
-
[data-icon-set=uib-legacy][data-icon-name=cloud-upload]::before {
|
|
736
|
-
content: "\f498";
|
|
737
|
-
}
|
|
738
|
-
[data-icon-set=uib-legacy][data-icon-name=cold]::before {
|
|
739
|
-
content: "\f181";
|
|
740
|
-
}
|
|
741
|
-
[data-icon-set=uib-legacy][data-icon-name=collection]::before {
|
|
742
|
-
content: "\f185";
|
|
743
|
-
}
|
|
744
|
-
[data-icon-set=uib-legacy][data-icon-name=collection-add]::before {
|
|
745
|
-
content: "\f182";
|
|
746
|
-
}
|
|
747
|
-
[data-icon-set=uib-legacy][data-icon-name=collection-remove]::before {
|
|
748
|
-
content: "\f183";
|
|
749
|
-
}
|
|
750
|
-
[data-icon-set=uib-legacy][data-icon-name=collection-service]::before {
|
|
751
|
-
content: "\f184";
|
|
752
|
-
}
|
|
753
|
-
[data-icon-set=uib-legacy][data-icon-name=collective-edit]::before {
|
|
754
|
-
content: "\f186";
|
|
755
|
-
}
|
|
756
|
-
[data-icon-set=uib-legacy][data-icon-name=column-double]::before {
|
|
757
|
-
content: "\f187";
|
|
758
|
-
}
|
|
759
|
-
[data-icon-set=uib-legacy][data-icon-name=column-multi]::before {
|
|
760
|
-
content: "\f188";
|
|
761
|
-
}
|
|
762
|
-
[data-icon-set=uib-legacy][data-icon-name=column-single]::before {
|
|
763
|
-
content: "\f189";
|
|
764
|
-
}
|
|
765
|
-
[data-icon-set=uib-legacy][data-icon-name=comment]::before {
|
|
766
|
-
content: "\f49c";
|
|
767
|
-
}
|
|
768
|
-
[data-icon-set=uib-legacy][data-icon-name=comment-add]::before {
|
|
769
|
-
content: "\f49a";
|
|
770
|
-
}
|
|
771
|
-
[data-icon-set=uib-legacy][data-icon-name=comment-disabled]::before {
|
|
772
|
-
content: "\f49b";
|
|
773
|
-
}
|
|
774
|
-
[data-icon-set=uib-legacy][data-icon-name=communication]::before {
|
|
775
|
-
content: "\f18c";
|
|
776
|
-
}
|
|
777
|
-
[data-icon-set=uib-legacy][data-icon-name=communication-disabled]::before {
|
|
778
|
-
content: "\f18a";
|
|
779
|
-
}
|
|
780
|
-
[data-icon-set=uib-legacy][data-icon-name=communication-tool]::before {
|
|
781
|
-
content: "\f18b";
|
|
782
|
-
}
|
|
783
|
-
[data-icon-set=uib-legacy][data-icon-name=compare]::before {
|
|
784
|
-
content: "\f49d";
|
|
785
|
-
}
|
|
786
|
-
[data-icon-set=uib-legacy][data-icon-name=comparison]::before {
|
|
787
|
-
content: "\f18d";
|
|
788
|
-
}
|
|
789
|
-
[data-icon-set=uib-legacy][data-icon-name=complete]::before {
|
|
790
|
-
content: "\f190";
|
|
791
|
-
}
|
|
792
|
-
[data-icon-set=uib-legacy][data-icon-name=complete]::after {
|
|
793
|
-
content: "\f18e";
|
|
794
|
-
color: #00DD31;
|
|
795
|
-
}
|
|
796
|
-
[data-icon-set=uib-legacy][data-icon-name=complete] span::before {
|
|
797
|
-
content: "\f49e";
|
|
798
|
-
color: #000000;
|
|
799
|
-
}
|
|
800
|
-
[data-icon-set=uib-legacy][data-icon-name=complex-system]::before {
|
|
801
|
-
content: "\f191";
|
|
802
|
-
}
|
|
803
|
-
[data-icon-set=uib-legacy][data-icon-name=composition-edit]::before {
|
|
804
|
-
content: "\f192";
|
|
805
|
-
}
|
|
806
|
-
[data-icon-set=uib-legacy][data-icon-name=concentration]::before {
|
|
807
|
-
content: "\f193";
|
|
808
|
-
}
|
|
809
|
-
[data-icon-set=uib-legacy][data-icon-name=configuration]::before {
|
|
810
|
-
content: "\f4a4";
|
|
811
|
-
}
|
|
812
|
-
[data-icon-set=uib-legacy][data-icon-name=configuration-edit]::before {
|
|
813
|
-
content: "\f49f";
|
|
814
|
-
}
|
|
815
|
-
[data-icon-set=uib-legacy][data-icon-name=configuration-enter]::before {
|
|
816
|
-
content: "\f4a0";
|
|
817
|
-
}
|
|
818
|
-
[data-icon-set=uib-legacy][data-icon-name=configuration-leave]::before {
|
|
819
|
-
content: "\f4a1";
|
|
820
|
-
}
|
|
821
|
-
[data-icon-set=uib-legacy][data-icon-name=configuration-update]::before {
|
|
822
|
-
content: "\f4a2";
|
|
823
|
-
}
|
|
824
|
-
[data-icon-set=uib-legacy][data-icon-name=configuration-view]::before {
|
|
825
|
-
content: "\f4a3";
|
|
826
|
-
}
|
|
827
|
-
[data-icon-set=uib-legacy][data-icon-name=conhub]::before {
|
|
828
|
-
content: "\f194";
|
|
829
|
-
}
|
|
830
|
-
[data-icon-set=uib-legacy][data-icon-name=construction-method]::before {
|
|
831
|
-
content: "\f195";
|
|
832
|
-
}
|
|
833
|
-
[data-icon-set=uib-legacy][data-icon-name=context-menu]::before {
|
|
834
|
-
content: "\f4a5";
|
|
835
|
-
}
|
|
836
|
-
[data-icon-set=uib-legacy][data-icon-name=controlbox]::before {
|
|
837
|
-
content: "\f196";
|
|
838
|
-
}
|
|
839
|
-
[data-icon-set=uib-legacy][data-icon-name=copy]::before {
|
|
840
|
-
content: "\f4a6";
|
|
841
|
-
}
|
|
842
|
-
[data-icon-set=uib-legacy][data-icon-name=cost]::before {
|
|
843
|
-
content: "\f197";
|
|
844
|
-
}
|
|
845
|
-
[data-icon-set=uib-legacy][data-icon-name=counter]::before {
|
|
846
|
-
content: "\f198";
|
|
847
|
-
}
|
|
848
|
-
[data-icon-set=uib-legacy][data-icon-name=counterclockwise-90-degree]::before {
|
|
849
|
-
content: "\f199";
|
|
850
|
-
}
|
|
851
|
-
[data-icon-set=uib-legacy][data-icon-name=cps]::before {
|
|
852
|
-
content: "\f19a";
|
|
853
|
-
}
|
|
854
|
-
[data-icon-set=uib-legacy][data-icon-name=cut]::before {
|
|
855
|
-
content: "\f4a7";
|
|
856
|
-
}
|
|
857
|
-
[data-icon-set=uib-legacy][data-icon-name=cylinder]::before {
|
|
858
|
-
content: "\f1a5";
|
|
859
|
-
}
|
|
860
|
-
[data-icon-set=uib-legacy][data-icon-name=cylinder-change]::before {
|
|
861
|
-
content: "\f19b";
|
|
862
|
-
}
|
|
863
|
-
[data-icon-set=uib-legacy][data-icon-name=cylinder-charge]::before {
|
|
864
|
-
content: "\f19c";
|
|
865
|
-
}
|
|
866
|
-
[data-icon-set=uib-legacy][data-icon-name=cylinder-closed]::before {
|
|
867
|
-
content: "\f19d";
|
|
868
|
-
}
|
|
869
|
-
[data-icon-set=uib-legacy][data-icon-name=cylinder-error]::before {
|
|
870
|
-
content: "\f1a0";
|
|
871
|
-
}
|
|
872
|
-
[data-icon-set=uib-legacy][data-icon-name=cylinder-error]::after {
|
|
873
|
-
content: "\f19e";
|
|
874
|
-
color: #F30303;
|
|
875
|
-
}
|
|
876
|
-
[data-icon-set=uib-legacy][data-icon-name=cylinder-error] span::before {
|
|
877
|
-
content: "\f19f";
|
|
878
|
-
color: #FFF;
|
|
879
|
-
}
|
|
880
|
-
[data-icon-set=uib-legacy][data-icon-name=cylinder-o2-alarm]::before {
|
|
881
|
-
content: "\f1a3";
|
|
882
|
-
}
|
|
883
|
-
[data-icon-set=uib-legacy][data-icon-name=cylinder-o2-alarm]::after {
|
|
884
|
-
content: "\f1a1";
|
|
885
|
-
color: #F30303;
|
|
886
|
-
}
|
|
887
|
-
[data-icon-set=uib-legacy][data-icon-name=cylinder-o2-alarm] span::before {
|
|
888
|
-
content: "\f1a2";
|
|
889
|
-
color: #FFF;
|
|
890
|
-
}
|
|
891
|
-
[data-icon-set=uib-legacy][data-icon-name=cylinder-opened]::before {
|
|
892
|
-
content: "\f1a4";
|
|
893
|
-
}
|
|
894
|
-
[data-icon-set=uib-legacy][data-icon-name=d]::before {
|
|
895
|
-
content: "\f4a8";
|
|
896
|
-
}
|
|
897
|
-
[data-icon-set=uib-legacy][data-icon-name=damage]::before {
|
|
898
|
-
content: "\f1a6";
|
|
899
|
-
}
|
|
900
|
-
[data-icon-set=uib-legacy][data-icon-name=dangerous-goods]::before {
|
|
901
|
-
content: "\f1a7";
|
|
902
|
-
}
|
|
903
|
-
[data-icon-set=uib-legacy][data-icon-name=dashboard-close]::before {
|
|
904
|
-
content: "\f1a8";
|
|
905
|
-
}
|
|
906
|
-
[data-icon-set=uib-legacy][data-icon-name=dashboard-open]::before {
|
|
907
|
-
content: "\f1a9";
|
|
908
|
-
}
|
|
909
|
-
[data-icon-set=uib-legacy][data-icon-name=data-send]::before {
|
|
910
|
-
content: "\f1aa";
|
|
911
|
-
}
|
|
912
|
-
[data-icon-set=uib-legacy][data-icon-name=data-set]::before {
|
|
913
|
-
content: "\f1ab";
|
|
914
|
-
}
|
|
915
|
-
[data-icon-set=uib-legacy][data-icon-name=data-snapshot]::before {
|
|
916
|
-
content: "\f1ac";
|
|
917
|
-
}
|
|
918
|
-
[data-icon-set=uib-legacy][data-icon-name=data-transfer-completed]::before {
|
|
919
|
-
content: "\f1af";
|
|
920
|
-
}
|
|
921
|
-
[data-icon-set=uib-legacy][data-icon-name=data-transfer-completed]::after {
|
|
922
|
-
content: "\f1ad";
|
|
923
|
-
color: #00DD31;
|
|
924
|
-
}
|
|
925
|
-
[data-icon-set=uib-legacy][data-icon-name=data-transfer-completed] span::before {
|
|
926
|
-
content: "\f4a9";
|
|
927
|
-
color: #000000;
|
|
928
|
-
}
|
|
929
|
-
[data-icon-set=uib-legacy][data-icon-name=data-transfer-failed]::before {
|
|
930
|
-
content: "\f1b2";
|
|
931
|
-
}
|
|
932
|
-
[data-icon-set=uib-legacy][data-icon-name=data-transfer-failed]::after {
|
|
933
|
-
content: "\f1b0";
|
|
934
|
-
color: #F30303;
|
|
935
|
-
}
|
|
936
|
-
[data-icon-set=uib-legacy][data-icon-name=data-transfer-failed] span::before {
|
|
937
|
-
content: "\f1b1";
|
|
938
|
-
color: #FFF;
|
|
939
|
-
}
|
|
940
|
-
[data-icon-set=uib-legacy][data-icon-name=database]::before {
|
|
941
|
-
content: "\f1b4";
|
|
942
|
-
}
|
|
943
|
-
[data-icon-set=uib-legacy][data-icon-name=database-edit]::before {
|
|
944
|
-
content: "\f1b3";
|
|
945
|
-
}
|
|
946
|
-
[data-icon-set=uib-legacy][data-icon-name=datahub]::before {
|
|
947
|
-
content: "\f1b5";
|
|
948
|
-
}
|
|
949
|
-
[data-icon-set=uib-legacy][data-icon-name=day-mode]::before {
|
|
950
|
-
content: "\f1b6";
|
|
951
|
-
}
|
|
952
|
-
[data-icon-set=uib-legacy][data-icon-name=deadman]::before {
|
|
953
|
-
content: "\f1b7";
|
|
954
|
-
}
|
|
955
|
-
[data-icon-set=uib-legacy][data-icon-name=delete]::before {
|
|
956
|
-
content: "\f1b8";
|
|
957
|
-
}
|
|
958
|
-
[data-icon-set=uib-legacy][data-icon-name=deletion-successful]::before {
|
|
959
|
-
content: "\f1bb";
|
|
960
|
-
}
|
|
961
|
-
[data-icon-set=uib-legacy][data-icon-name=deletion-successful]::after {
|
|
962
|
-
content: "\f1b9";
|
|
963
|
-
color: #00DD31;
|
|
964
|
-
}
|
|
965
|
-
[data-icon-set=uib-legacy][data-icon-name=deletion-successful] span::before {
|
|
966
|
-
content: "\f4aa";
|
|
967
|
-
color: #000000;
|
|
968
|
-
}
|
|
969
|
-
[data-icon-set=uib-legacy][data-icon-name=detail-slot]::before {
|
|
970
|
-
content: "\f4ab";
|
|
971
|
-
}
|
|
972
|
-
[data-icon-set=uib-legacy][data-icon-name=device]::before {
|
|
973
|
-
content: "\f1c6";
|
|
974
|
-
}
|
|
975
|
-
[data-icon-set=uib-legacy][data-icon-name=device-ang]::before {
|
|
976
|
-
content: "\f1bc";
|
|
977
|
-
}
|
|
978
|
-
[data-icon-set=uib-legacy][data-icon-name=device-connection]::before {
|
|
979
|
-
content: "\f1bd";
|
|
980
|
-
}
|
|
981
|
-
[data-icon-set=uib-legacy][data-icon-name=device-ct]::before {
|
|
982
|
-
content: "\f1be";
|
|
983
|
-
}
|
|
984
|
-
[data-icon-set=uib-legacy][data-icon-name=device-inspection]::before {
|
|
985
|
-
content: "\f1bf";
|
|
986
|
-
}
|
|
987
|
-
[data-icon-set=uib-legacy][data-icon-name=device-module]::before {
|
|
988
|
-
content: "\f1c0";
|
|
989
|
-
}
|
|
990
|
-
[data-icon-set=uib-legacy][data-icon-name=device-mrt]::before {
|
|
991
|
-
content: "\f1c1";
|
|
992
|
-
}
|
|
993
|
-
[data-icon-set=uib-legacy][data-icon-name=device-ok]::before {
|
|
994
|
-
content: "\f1c4";
|
|
995
|
-
}
|
|
996
|
-
[data-icon-set=uib-legacy][data-icon-name=device-ok]::after {
|
|
997
|
-
content: "\f1c2";
|
|
998
|
-
color: #00DD31;
|
|
999
|
-
}
|
|
1000
|
-
[data-icon-set=uib-legacy][data-icon-name=device-ok] span::before {
|
|
1001
|
-
content: "\f4ac";
|
|
1002
|
-
color: #000000;
|
|
1003
|
-
}
|
|
1004
|
-
[data-icon-set=uib-legacy][data-icon-name=device-sono]::before {
|
|
1005
|
-
content: "\f1c5";
|
|
1006
|
-
}
|
|
1007
|
-
[data-icon-set=uib-legacy][data-icon-name=devices]::before {
|
|
1008
|
-
content: "\f1c8";
|
|
1009
|
-
}
|
|
1010
|
-
[data-icon-set=uib-legacy][data-icon-name=devices-management]::before {
|
|
1011
|
-
content: "\f1c7";
|
|
1012
|
-
}
|
|
1013
|
-
[data-icon-set=uib-legacy][data-icon-name=disabled]::before {
|
|
1014
|
-
content: "\f1c9";
|
|
1015
|
-
}
|
|
1016
|
-
[data-icon-set=uib-legacy][data-icon-name=disassemble]::before {
|
|
1017
|
-
content: "\f1ca";
|
|
1018
|
-
}
|
|
1019
|
-
[data-icon-set=uib-legacy][data-icon-name=display-1]::before {
|
|
1020
|
-
content: "\f1cb";
|
|
1021
|
-
}
|
|
1022
|
-
[data-icon-set=uib-legacy][data-icon-name=display-2]::before {
|
|
1023
|
-
content: "\f1cc";
|
|
1024
|
-
}
|
|
1025
|
-
[data-icon-set=uib-legacy][data-icon-name=display-3]::before {
|
|
1026
|
-
content: "\f1cd";
|
|
1027
|
-
}
|
|
1028
|
-
[data-icon-set=uib-legacy][data-icon-name=display-4]::before {
|
|
1029
|
-
content: "\f1ce";
|
|
1030
|
-
}
|
|
1031
|
-
[data-icon-set=uib-legacy][data-icon-name=display-5]::before {
|
|
1032
|
-
content: "\f1cf";
|
|
1033
|
-
}
|
|
1034
|
-
[data-icon-set=uib-legacy][data-icon-name=docking-station]::before {
|
|
1035
|
-
content: "\f1d3";
|
|
1036
|
-
}
|
|
1037
|
-
[data-icon-set=uib-legacy][data-icon-name=docking-station-3]::before {
|
|
1038
|
-
content: "\f1d0";
|
|
1039
|
-
}
|
|
1040
|
-
[data-icon-set=uib-legacy][data-icon-name=docking-station-4]::before {
|
|
1041
|
-
content: "\f1d1";
|
|
1042
|
-
}
|
|
1043
|
-
[data-icon-set=uib-legacy][data-icon-name=docking-station-8]::before {
|
|
1044
|
-
content: "\f1d2";
|
|
1045
|
-
}
|
|
1046
|
-
[data-icon-set=uib-legacy][data-icon-name=document]::before {
|
|
1047
|
-
content: "\f4b1";
|
|
1048
|
-
}
|
|
1049
|
-
[data-icon-set=uib-legacy][data-icon-name=document-check]::before {
|
|
1050
|
-
content: "\f4ad";
|
|
1051
|
-
}
|
|
1052
|
-
[data-icon-set=uib-legacy][data-icon-name=document-flag]::before {
|
|
1053
|
-
content: "\f4ae";
|
|
1054
|
-
color: #F30303;
|
|
1055
|
-
}
|
|
1056
|
-
[data-icon-set=uib-legacy][data-icon-name=document-flag]::after {
|
|
1057
|
-
content: "\f4af";
|
|
1058
|
-
}
|
|
1059
|
-
[data-icon-set=uib-legacy][data-icon-name=document-settings]::before {
|
|
1060
|
-
content: "\f4b0";
|
|
1061
|
-
}
|
|
1062
|
-
[data-icon-set=uib-legacy][data-icon-name=download]::before {
|
|
1063
|
-
content: "\f4b2";
|
|
1064
|
-
}
|
|
1065
|
-
[data-icon-set=uib-legacy][data-icon-name=drugcheck]::before {
|
|
1066
|
-
content: "\f1d4";
|
|
1067
|
-
}
|
|
1068
|
-
[data-icon-set=uib-legacy][data-icon-name=duplicate]::before {
|
|
1069
|
-
content: "\f4b3";
|
|
1070
|
-
}
|
|
1071
|
-
[data-icon-set=uib-legacy][data-icon-name=edit]::before {
|
|
1072
|
-
content: "\f4b4";
|
|
1073
|
-
}
|
|
1074
|
-
[data-icon-set=uib-legacy][data-icon-name=emergency-stop]::before {
|
|
1075
|
-
content: "\f4b5";
|
|
1076
|
-
}
|
|
1077
|
-
[data-icon-set=uib-legacy][data-icon-name=equipment-change]::before {
|
|
1078
|
-
content: "\f1d5";
|
|
1079
|
-
}
|
|
1080
|
-
[data-icon-set=uib-legacy][data-icon-name=equipment-fire]::before {
|
|
1081
|
-
content: "\f1d6";
|
|
1082
|
-
}
|
|
1083
|
-
[data-icon-set=uib-legacy][data-icon-name=erase]::before {
|
|
1084
|
-
content: "\f1d7";
|
|
1085
|
-
}
|
|
1086
|
-
[data-icon-set=uib-legacy][data-icon-name=error-extra-information]::before {
|
|
1087
|
-
content: "\f1da";
|
|
1088
|
-
color: #9EB0C2;
|
|
1089
|
-
}
|
|
1090
|
-
[data-icon-set=uib-legacy][data-icon-name=error-extra-information]::after {
|
|
1091
|
-
content: "\f1db";
|
|
1092
|
-
color: #FFF;
|
|
1093
|
-
}
|
|
1094
|
-
[data-icon-set=uib-legacy][data-icon-name=error-extra-information] span::before {
|
|
1095
|
-
content: "\f1dc";
|
|
1096
|
-
}
|
|
1097
|
-
[data-icon-set=uib-legacy][data-icon-name=error-yellow-outline]::before {
|
|
1098
|
-
content: "\f1dd";
|
|
1099
|
-
color: #FFF;
|
|
1100
|
-
}
|
|
1101
|
-
[data-icon-set=uib-legacy][data-icon-name=error-yellow-outline]::after {
|
|
1102
|
-
content: "\f1de";
|
|
1103
|
-
color: #FFE300;
|
|
1104
|
-
}
|
|
1105
|
-
[data-icon-set=uib-legacy][data-icon-name=error-yellow-outline] span::before {
|
|
1106
|
-
content: "\f4b6";
|
|
1107
|
-
color: #000000;
|
|
1108
|
-
}
|
|
1109
|
-
[data-icon-set=uib-legacy][data-icon-name=error]::before {
|
|
1110
|
-
content: "\f1d8";
|
|
1111
|
-
color: #F30303;
|
|
1112
|
-
}
|
|
1113
|
-
[data-icon-set=uib-legacy][data-icon-name=error]::after {
|
|
1114
|
-
content: "\f1d9";
|
|
1115
|
-
color: #FFF;
|
|
1116
|
-
}
|
|
1117
|
-
[data-icon-set=uib-legacy][data-icon-name=ethernet]::before {
|
|
1118
|
-
content: "\f1e0";
|
|
1119
|
-
}
|
|
1120
|
-
[data-icon-set=uib-legacy][data-icon-name=evacuation]::before {
|
|
1121
|
-
content: "\f1ec";
|
|
1122
|
-
}
|
|
1123
|
-
[data-icon-set=uib-legacy][data-icon-name=evacuation-confirmed]::before {
|
|
1124
|
-
content: "\f1e3";
|
|
1125
|
-
}
|
|
1126
|
-
[data-icon-set=uib-legacy][data-icon-name=evacuation-confirmed]::after {
|
|
1127
|
-
content: "\f1e1";
|
|
1128
|
-
color: #00DD31;
|
|
1129
|
-
}
|
|
1130
|
-
[data-icon-set=uib-legacy][data-icon-name=evacuation-confirmed] span::before {
|
|
1131
|
-
content: "\f4b7";
|
|
1132
|
-
color: #000000;
|
|
1133
|
-
}
|
|
1134
|
-
[data-icon-set=uib-legacy][data-icon-name=evacuation-pending]::before {
|
|
1135
|
-
content: "\f1e4";
|
|
1136
|
-
}
|
|
1137
|
-
[data-icon-set=uib-legacy][data-icon-name=evacuation-success]::before {
|
|
1138
|
-
content: "\f1e7";
|
|
1139
|
-
}
|
|
1140
|
-
[data-icon-set=uib-legacy][data-icon-name=evacuation-success]::after {
|
|
1141
|
-
content: "\f1e5";
|
|
1142
|
-
color: #00DD31;
|
|
1143
|
-
}
|
|
1144
|
-
[data-icon-set=uib-legacy][data-icon-name=evacuation-success] span::before {
|
|
1145
|
-
content: "\f4b8";
|
|
1146
|
-
color: #000000;
|
|
1147
|
-
}
|
|
1148
|
-
[data-icon-set=uib-legacy][data-icon-name=evacuation-timer]::before {
|
|
1149
|
-
content: "\f1e8";
|
|
1150
|
-
}
|
|
1151
|
-
[data-icon-set=uib-legacy][data-icon-name=evacuation-warning]::before {
|
|
1152
|
-
content: "\f4b9";
|
|
1153
|
-
color: #000000;
|
|
1154
|
-
}
|
|
1155
|
-
[data-icon-set=uib-legacy][data-icon-name=evacuation-warning]::after {
|
|
1156
|
-
content: "\f1ea";
|
|
1157
|
-
color: #FFE300;
|
|
1158
|
-
}
|
|
1159
|
-
[data-icon-set=uib-legacy][data-icon-name=evacuation-warning] span::before {
|
|
1160
|
-
content: "\f1eb";
|
|
1161
|
-
}
|
|
1162
|
-
[data-icon-set=uib-legacy][data-icon-name=exclamation]::before {
|
|
1163
|
-
content: "\f1ed";
|
|
1164
|
-
}
|
|
1165
|
-
[data-icon-set=uib-legacy][data-icon-name=exit]::before {
|
|
1166
|
-
content: "\f4ba";
|
|
1167
|
-
}
|
|
1168
|
-
[data-icon-set=uib-legacy][data-icon-name=expired-freshair]::before {
|
|
1169
|
-
content: "\f1f1";
|
|
1170
|
-
}
|
|
1171
|
-
[data-icon-set=uib-legacy][data-icon-name=expired]::before {
|
|
1172
|
-
content: "\f1ee";
|
|
1173
|
-
color: #F30303;
|
|
1174
|
-
}
|
|
1175
|
-
[data-icon-set=uib-legacy][data-icon-name=expired]::after {
|
|
1176
|
-
content: "\f1ef";
|
|
1177
|
-
color: #FFF;
|
|
1178
|
-
}
|
|
1179
|
-
[data-icon-set=uib-legacy][data-icon-name=expired] span::before {
|
|
1180
|
-
content: "\f1f0";
|
|
1181
|
-
}
|
|
1182
|
-
[data-icon-set=uib-legacy][data-icon-name=expirydate]::before {
|
|
1183
|
-
content: "\f1f2";
|
|
1184
|
-
}
|
|
1185
|
-
[data-icon-set=uib-legacy][data-icon-name=explosive-a1]::before {
|
|
1186
|
-
content: "\f1f5";
|
|
1187
|
-
color: #FFE300;
|
|
1188
|
-
}
|
|
1189
|
-
[data-icon-set=uib-legacy][data-icon-name=explosive-a1]::after {
|
|
1190
|
-
content: "\f1f6";
|
|
1191
|
-
}
|
|
1192
|
-
[data-icon-set=uib-legacy][data-icon-name=explosive-a1] span::before {
|
|
1193
|
-
content: "\f4bc";
|
|
1194
|
-
color: #000000;
|
|
1195
|
-
}
|
|
1196
|
-
[data-icon-set=uib-legacy][data-icon-name=explosive-a2]::before {
|
|
1197
|
-
content: "\f1f8";
|
|
1198
|
-
color: #FFE300;
|
|
1199
|
-
}
|
|
1200
|
-
[data-icon-set=uib-legacy][data-icon-name=explosive-a2]::after {
|
|
1201
|
-
content: "\f1f9";
|
|
1202
|
-
}
|
|
1203
|
-
[data-icon-set=uib-legacy][data-icon-name=explosive-a2] span::before {
|
|
1204
|
-
content: "\f4bd";
|
|
1205
|
-
color: #000000;
|
|
1206
|
-
}
|
|
1207
|
-
[data-icon-set=uib-legacy][data-icon-name=explosive-stel]::before {
|
|
1208
|
-
content: "\f1fb";
|
|
1209
|
-
color: #FFE300;
|
|
1210
|
-
}
|
|
1211
|
-
[data-icon-set=uib-legacy][data-icon-name=explosive-stel]::after {
|
|
1212
|
-
content: "\f4be";
|
|
1213
|
-
color: #000000;
|
|
1214
|
-
}
|
|
1215
|
-
[data-icon-set=uib-legacy][data-icon-name=explosive-stel] span::before {
|
|
1216
|
-
content: "\f1fd";
|
|
1217
|
-
}
|
|
1218
|
-
[data-icon-set=uib-legacy][data-icon-name=explosive-twa]::before {
|
|
1219
|
-
content: "\f200";
|
|
1220
|
-
}
|
|
1221
|
-
[data-icon-set=uib-legacy][data-icon-name=explosive-twa]::after {
|
|
1222
|
-
content: "\f1fe";
|
|
1223
|
-
color: #FFE300;
|
|
1224
|
-
}
|
|
1225
|
-
[data-icon-set=uib-legacy][data-icon-name=explosive-twa] span::before {
|
|
1226
|
-
content: "\f4bf";
|
|
1227
|
-
color: #000000;
|
|
1228
|
-
}
|
|
1229
|
-
[data-icon-set=uib-legacy][data-icon-name=explosive]::before {
|
|
1230
|
-
content: "\f1f3";
|
|
1231
|
-
color: #FFE300;
|
|
1232
|
-
}
|
|
1233
|
-
[data-icon-set=uib-legacy][data-icon-name=explosive]::after {
|
|
1234
|
-
content: "\f4bb";
|
|
1235
|
-
color: #000000;
|
|
1236
|
-
}
|
|
1237
|
-
[data-icon-set=uib-legacy][data-icon-name=export]::before {
|
|
1238
|
-
content: "\f4c0";
|
|
1239
|
-
}
|
|
1240
|
-
[data-icon-set=uib-legacy][data-icon-name=export-to-excel]::before {
|
|
1241
|
-
content: "\f201";
|
|
1242
|
-
}
|
|
1243
|
-
[data-icon-set=uib-legacy][data-icon-name=extended-care]::before {
|
|
1244
|
-
content: "\f202";
|
|
1245
|
-
}
|
|
1246
|
-
[data-icon-set=uib-legacy][data-icon-name=extinguisher]::before {
|
|
1247
|
-
content: "\f203";
|
|
1248
|
-
}
|
|
1249
|
-
[data-icon-set=uib-legacy][data-icon-name=faucet]::before {
|
|
1250
|
-
content: "\f204";
|
|
1251
|
-
}
|
|
1252
|
-
[data-icon-set=uib-legacy][data-icon-name=fault-finding]::before {
|
|
1253
|
-
content: "\f205";
|
|
1254
|
-
}
|
|
1255
|
-
[data-icon-set=uib-legacy][data-icon-name=favorite]::before {
|
|
1256
|
-
content: "\f4c2";
|
|
1257
|
-
}
|
|
1258
|
-
[data-icon-set=uib-legacy][data-icon-name=favorite-default]::before {
|
|
1259
|
-
content: "\f4c1";
|
|
1260
|
-
}
|
|
1261
|
-
[data-icon-set=uib-legacy][data-icon-name=fax]::before {
|
|
1262
|
-
content: "\f4c3";
|
|
1263
|
-
}
|
|
1264
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-negative]::before {
|
|
1265
|
-
content: "\f4c4";
|
|
1266
|
-
}
|
|
1267
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-positive-extra-information]::before {
|
|
1268
|
-
content: "\f208";
|
|
1269
|
-
color: #00DD31;
|
|
1270
|
-
}
|
|
1271
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-positive-extra-information]::after {
|
|
1272
|
-
content: "\f4c6";
|
|
1273
|
-
color: #000000;
|
|
1274
|
-
}
|
|
1275
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-positive-extra-information] span::before {
|
|
1276
|
-
content: "\f20a";
|
|
1277
|
-
}
|
|
1278
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-positive-tamper-yellow]::before {
|
|
1279
|
-
content: "\f20e";
|
|
1280
|
-
color: #00DD31;
|
|
1281
|
-
}
|
|
1282
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-positive-tamper-yellow]::after {
|
|
1283
|
-
content: "\f20f";
|
|
1284
|
-
color: #FFE300;
|
|
1285
|
-
}
|
|
1286
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-positive-tamper-yellow] span::before {
|
|
1287
|
-
content: "\f4c8";
|
|
1288
|
-
color: #000000;
|
|
1289
|
-
}
|
|
1290
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-positive-tamper]::before {
|
|
1291
|
-
content: "\f20b";
|
|
1292
|
-
color: #00DD31;
|
|
1293
|
-
}
|
|
1294
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-positive-tamper]::after {
|
|
1295
|
-
content: "\f4c7";
|
|
1296
|
-
color: #000000;
|
|
1297
|
-
}
|
|
1298
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-positive-tamper] span::before {
|
|
1299
|
-
content: "\f20d";
|
|
1300
|
-
}
|
|
1301
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-positive]::before {
|
|
1302
|
-
content: "\f206";
|
|
1303
|
-
color: #00DD31;
|
|
1304
|
-
}
|
|
1305
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-positive]::after {
|
|
1306
|
-
content: "\f4c5";
|
|
1307
|
-
color: #000000;
|
|
1308
|
-
}
|
|
1309
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-warning-extra-information]::before {
|
|
1310
|
-
content: "\f213";
|
|
1311
|
-
color: #9EB0C2;
|
|
1312
|
-
}
|
|
1313
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-warning-extra-information]::after {
|
|
1314
|
-
content: "\f214";
|
|
1315
|
-
}
|
|
1316
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-warning-extra-information] span::before {
|
|
1317
|
-
content: "\f215";
|
|
1318
|
-
color: #FFF;
|
|
1319
|
-
}
|
|
1320
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-warning-outline]::before {
|
|
1321
|
-
content: "\f216";
|
|
1322
|
-
color: #FFF;
|
|
1323
|
-
}
|
|
1324
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-warning-outline]::after {
|
|
1325
|
-
content: "\f217";
|
|
1326
|
-
color: #FFE300;
|
|
1327
|
-
}
|
|
1328
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-warning-outline] span::before {
|
|
1329
|
-
content: "\f4ca";
|
|
1330
|
-
color: #000000;
|
|
1331
|
-
}
|
|
1332
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-warning-tamper-red]::before {
|
|
1333
|
-
content: "\f21c";
|
|
1334
|
-
color: #FFE300;
|
|
1335
|
-
}
|
|
1336
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-warning-tamper-red]::after {
|
|
1337
|
-
content: "\f21d";
|
|
1338
|
-
color: #F30303;
|
|
1339
|
-
}
|
|
1340
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-warning-tamper-red] span::before {
|
|
1341
|
-
content: "\f21e";
|
|
1342
|
-
color: #FFF;
|
|
1343
|
-
}
|
|
1344
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-warning-tamper-red] span::after {
|
|
1345
|
-
content: "\f4cb";
|
|
1346
|
-
color: #000000;
|
|
1347
|
-
}
|
|
1348
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-warning-tamper-yellow]::before {
|
|
1349
|
-
content: "\f220";
|
|
1350
|
-
color: #9EB0C2;
|
|
1351
|
-
}
|
|
1352
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-warning-tamper-yellow]::after {
|
|
1353
|
-
content: "\f221";
|
|
1354
|
-
color: #FFF;
|
|
1355
|
-
}
|
|
1356
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-warning-tamper-yellow] span::before {
|
|
1357
|
-
content: "\f222";
|
|
1358
|
-
color: #FFE300;
|
|
1359
|
-
}
|
|
1360
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-warning-tamper-yellow] span::after {
|
|
1361
|
-
content: "\f4cc";
|
|
1362
|
-
color: #000000;
|
|
1363
|
-
}
|
|
1364
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-warning-tamper]::before {
|
|
1365
|
-
content: "\f219";
|
|
1366
|
-
color: #9EB0C2;
|
|
1367
|
-
}
|
|
1368
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-warning-tamper]::after {
|
|
1369
|
-
content: "\f21a";
|
|
1370
|
-
color: #FFF;
|
|
1371
|
-
}
|
|
1372
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-warning-tamper] span::before {
|
|
1373
|
-
content: "\f21b";
|
|
1374
|
-
}
|
|
1375
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-warning]::before {
|
|
1376
|
-
content: "\f211";
|
|
1377
|
-
color: #FFE300;
|
|
1378
|
-
}
|
|
1379
|
-
[data-icon-set=uib-legacy][data-icon-name=feedback-warning]::after {
|
|
1380
|
-
content: "\f4c9";
|
|
1381
|
-
color: #000000;
|
|
1382
|
-
}
|
|
1383
|
-
[data-icon-set=uib-legacy][data-icon-name=fg-hub]::before {
|
|
1384
|
-
content: "\f22a";
|
|
1385
|
-
}
|
|
1386
|
-
[data-icon-set=uib-legacy][data-icon-name=fg-hub-battery-low]::before {
|
|
1387
|
-
content: "\f226";
|
|
1388
|
-
}
|
|
1389
|
-
[data-icon-set=uib-legacy][data-icon-name=fg-hub-battery-low]::after {
|
|
1390
|
-
content: "\f224";
|
|
1391
|
-
color: #F30303;
|
|
1392
|
-
}
|
|
1393
|
-
[data-icon-set=uib-legacy][data-icon-name=fg-hub-battery-low] span::before {
|
|
1394
|
-
content: "\f225";
|
|
1395
|
-
color: #FFF;
|
|
1396
|
-
}
|
|
1397
|
-
[data-icon-set=uib-legacy][data-icon-name=fg-hub-no-connection]::before {
|
|
1398
|
-
content: "\f227";
|
|
1399
|
-
color: #FFE300;
|
|
1400
|
-
}
|
|
1401
|
-
[data-icon-set=uib-legacy][data-icon-name=fg-hub-no-connection]::after {
|
|
1402
|
-
content: "\f4cd";
|
|
1403
|
-
color: #000000;
|
|
1404
|
-
}
|
|
1405
|
-
[data-icon-set=uib-legacy][data-icon-name=fg-hub-no-connection] span::before {
|
|
1406
|
-
content: "\f229";
|
|
1407
|
-
}
|
|
1408
|
-
[data-icon-set=uib-legacy][data-icon-name=fg-repeater]::before {
|
|
1409
|
-
content: "\f22e";
|
|
1410
|
-
}
|
|
1411
|
-
[data-icon-set=uib-legacy][data-icon-name=fg-repeater-battery-low]::before {
|
|
1412
|
-
content: "\f22d";
|
|
1413
|
-
}
|
|
1414
|
-
[data-icon-set=uib-legacy][data-icon-name=fg-repeater-battery-low]::after {
|
|
1415
|
-
content: "\f22b";
|
|
1416
|
-
color: #F30303;
|
|
1417
|
-
}
|
|
1418
|
-
[data-icon-set=uib-legacy][data-icon-name=fg-repeater-battery-low] span::before {
|
|
1419
|
-
content: "\f22c";
|
|
1420
|
-
color: #FFF;
|
|
1421
|
-
}
|
|
1422
|
-
[data-icon-set=uib-legacy][data-icon-name=file-excel]::before {
|
|
1423
|
-
content: "\f4ce";
|
|
1424
|
-
}
|
|
1425
|
-
[data-icon-set=uib-legacy][data-icon-name=file-html]::before {
|
|
1426
|
-
content: "\f4cf";
|
|
1427
|
-
}
|
|
1428
|
-
[data-icon-set=uib-legacy][data-icon-name=file-pdf]::before {
|
|
1429
|
-
content: "\f4d0";
|
|
1430
|
-
}
|
|
1431
|
-
[data-icon-set=uib-legacy][data-icon-name=file-ppt]::before {
|
|
1432
|
-
content: "\f4d1";
|
|
1433
|
-
}
|
|
1434
|
-
[data-icon-set=uib-legacy][data-icon-name=file-word]::before {
|
|
1435
|
-
content: "\f4d2";
|
|
1436
|
-
}
|
|
1437
|
-
[data-icon-set=uib-legacy][data-icon-name=file-zip]::before {
|
|
1438
|
-
content: "\f4d3";
|
|
1439
|
-
}
|
|
1440
|
-
[data-icon-set=uib-legacy][data-icon-name=filter]::before {
|
|
1441
|
-
content: "\f4d6";
|
|
1442
|
-
}
|
|
1443
|
-
[data-icon-set=uib-legacy][data-icon-name=filter-close]::before {
|
|
1444
|
-
content: "\f4d4";
|
|
1445
|
-
}
|
|
1446
|
-
[data-icon-set=uib-legacy][data-icon-name=filter-settings]::before {
|
|
1447
|
-
content: "\f4d5";
|
|
1448
|
-
}
|
|
1449
|
-
[data-icon-set=uib-legacy][data-icon-name=fire]::before {
|
|
1450
|
-
content: "\f22f";
|
|
1451
|
-
}
|
|
1452
|
-
[data-icon-set=uib-legacy][data-icon-name=firefighter-arrived]::before {
|
|
1453
|
-
content: "\f230";
|
|
1454
|
-
color: #00DD31;
|
|
1455
|
-
}
|
|
1456
|
-
[data-icon-set=uib-legacy][data-icon-name=firefighter-arrived]::after {
|
|
1457
|
-
content: "\f4d7";
|
|
1458
|
-
color: #000000;
|
|
1459
|
-
}
|
|
1460
|
-
[data-icon-set=uib-legacy][data-icon-name=firefighter-arrived] span::before {
|
|
1461
|
-
content: "\f232";
|
|
1462
|
-
}
|
|
1463
|
-
[data-icon-set=uib-legacy][data-icon-name=firefighter-en-route]::before {
|
|
1464
|
-
content: "\f233";
|
|
1465
|
-
}
|
|
1466
|
-
[data-icon-set=uib-legacy][data-icon-name=firefighter-retreat]::before {
|
|
1467
|
-
content: "\f234";
|
|
1468
|
-
}
|
|
1469
|
-
[data-icon-set=uib-legacy][data-icon-name=firefighter-standby]::before {
|
|
1470
|
-
content: "\f235";
|
|
1471
|
-
}
|
|
1472
|
-
[data-icon-set=uib-legacy][data-icon-name=flame-5000]::before {
|
|
1473
|
-
content: "\f236";
|
|
1474
|
-
}
|
|
1475
|
-
[data-icon-set=uib-legacy][data-icon-name=flammable-a1]::before {
|
|
1476
|
-
content: "\f239";
|
|
1477
|
-
color: #FFE300;
|
|
1478
|
-
}
|
|
1479
|
-
[data-icon-set=uib-legacy][data-icon-name=flammable-a1]::after {
|
|
1480
|
-
content: "\f23a";
|
|
1481
|
-
}
|
|
1482
|
-
[data-icon-set=uib-legacy][data-icon-name=flammable-a1] span::before {
|
|
1483
|
-
content: "\f4d9";
|
|
1484
|
-
color: #000000;
|
|
1485
|
-
}
|
|
1486
|
-
[data-icon-set=uib-legacy][data-icon-name=flammable-a2]::before {
|
|
1487
|
-
content: "\f23c";
|
|
1488
|
-
color: #FFE300;
|
|
1489
|
-
}
|
|
1490
|
-
[data-icon-set=uib-legacy][data-icon-name=flammable-a2]::after {
|
|
1491
|
-
content: "\f23d";
|
|
1492
|
-
}
|
|
1493
|
-
[data-icon-set=uib-legacy][data-icon-name=flammable-a2] span::before {
|
|
1494
|
-
content: "\f4da";
|
|
1495
|
-
color: #000000;
|
|
1496
|
-
}
|
|
1497
|
-
[data-icon-set=uib-legacy][data-icon-name=flammable-stel]::before {
|
|
1498
|
-
content: "\f23f";
|
|
1499
|
-
color: #FFE300;
|
|
1500
|
-
}
|
|
1501
|
-
[data-icon-set=uib-legacy][data-icon-name=flammable-stel]::after {
|
|
1502
|
-
content: "\f240";
|
|
1503
|
-
}
|
|
1504
|
-
[data-icon-set=uib-legacy][data-icon-name=flammable-stel] span::before {
|
|
1505
|
-
content: "\f4db";
|
|
1506
|
-
color: #000000;
|
|
1507
|
-
}
|
|
1508
|
-
[data-icon-set=uib-legacy][data-icon-name=flammable-twa]::before {
|
|
1509
|
-
content: "\f242";
|
|
1510
|
-
color: #FFE300;
|
|
1511
|
-
}
|
|
1512
|
-
[data-icon-set=uib-legacy][data-icon-name=flammable-twa]::after {
|
|
1513
|
-
content: "\f4dc";
|
|
1514
|
-
color: #000000;
|
|
1515
|
-
}
|
|
1516
|
-
[data-icon-set=uib-legacy][data-icon-name=flammable-twa] span::before {
|
|
1517
|
-
content: "\f244";
|
|
1518
|
-
}
|
|
1519
|
-
[data-icon-set=uib-legacy][data-icon-name=flammable]::before {
|
|
1520
|
-
content: "\f237";
|
|
1521
|
-
color: #FFE300;
|
|
1522
|
-
}
|
|
1523
|
-
[data-icon-set=uib-legacy][data-icon-name=flammable]::after {
|
|
1524
|
-
content: "\f4d8";
|
|
1525
|
-
color: #000000;
|
|
1526
|
-
}
|
|
1527
|
-
[data-icon-set=uib-legacy][data-icon-name=floorplan]::before {
|
|
1528
|
-
content: "\f247";
|
|
1529
|
-
}
|
|
1530
|
-
[data-icon-set=uib-legacy][data-icon-name=floorplan-hallway]::before {
|
|
1531
|
-
content: "\f245";
|
|
1532
|
-
}
|
|
1533
|
-
[data-icon-set=uib-legacy][data-icon-name=floorplan-room]::before {
|
|
1534
|
-
content: "\f246";
|
|
1535
|
-
}
|
|
1536
|
-
[data-icon-set=uib-legacy][data-icon-name=focus-element]::before {
|
|
1537
|
-
content: "\f248";
|
|
1538
|
-
}
|
|
1539
|
-
[data-icon-set=uib-legacy][data-icon-name=folder]::before {
|
|
1540
|
-
content: "\f4de";
|
|
1541
|
-
}
|
|
1542
|
-
[data-icon-set=uib-legacy][data-icon-name=folder-open]::before {
|
|
1543
|
-
content: "\f4dd";
|
|
1544
|
-
}
|
|
1545
|
-
[data-icon-set=uib-legacy][data-icon-name=fraction-00-10]::before {
|
|
1546
|
-
content: "\f249";
|
|
1547
|
-
}
|
|
1548
|
-
[data-icon-set=uib-legacy][data-icon-name=fraction-01-10]::before {
|
|
1549
|
-
content: "\f24a";
|
|
1550
|
-
}
|
|
1551
|
-
[data-icon-set=uib-legacy][data-icon-name=fraction-02-10]::before {
|
|
1552
|
-
content: "\f24b";
|
|
1553
|
-
}
|
|
1554
|
-
[data-icon-set=uib-legacy][data-icon-name=fraction-03-10]::before {
|
|
1555
|
-
content: "\f24c";
|
|
1556
|
-
}
|
|
1557
|
-
[data-icon-set=uib-legacy][data-icon-name=fraction-04-10]::before {
|
|
1558
|
-
content: "\f24d";
|
|
1559
|
-
}
|
|
1560
|
-
[data-icon-set=uib-legacy][data-icon-name=fraction-05-10]::before {
|
|
1561
|
-
content: "\f24e";
|
|
1562
|
-
}
|
|
1563
|
-
[data-icon-set=uib-legacy][data-icon-name=fraction-06-10]::before {
|
|
1564
|
-
content: "\f24f";
|
|
1565
|
-
}
|
|
1566
|
-
[data-icon-set=uib-legacy][data-icon-name=fraction-07-10]::before {
|
|
1567
|
-
content: "\f250";
|
|
1568
|
-
}
|
|
1569
|
-
[data-icon-set=uib-legacy][data-icon-name=fraction-08-10]::before {
|
|
1570
|
-
content: "\f251";
|
|
1571
|
-
}
|
|
1572
|
-
[data-icon-set=uib-legacy][data-icon-name=fraction-09-10]::before {
|
|
1573
|
-
content: "\f252";
|
|
1574
|
-
}
|
|
1575
|
-
[data-icon-set=uib-legacy][data-icon-name=fraction-10-10]::before {
|
|
1576
|
-
content: "\f253";
|
|
1577
|
-
}
|
|
1578
|
-
[data-icon-set=uib-legacy][data-icon-name=freshair]::before {
|
|
1579
|
-
content: "\f255";
|
|
1580
|
-
}
|
|
1581
|
-
[data-icon-set=uib-legacy][data-icon-name=freshair-calibration]::before {
|
|
1582
|
-
content: "\f254";
|
|
1583
|
-
}
|
|
1584
|
-
[data-icon-set=uib-legacy][data-icon-name=full-circle]::before {
|
|
1585
|
-
content: "\f256";
|
|
1586
|
-
}
|
|
1587
|
-
[data-icon-set=uib-legacy][data-icon-name=fullscreen]::before {
|
|
1588
|
-
content: "\f4e0";
|
|
1589
|
-
}
|
|
1590
|
-
[data-icon-set=uib-legacy][data-icon-name=fullscreen-exit]::before {
|
|
1591
|
-
content: "\f4df";
|
|
1592
|
-
}
|
|
1593
|
-
[data-icon-set=uib-legacy][data-icon-name=gas-consumption]::before {
|
|
1594
|
-
content: "\f257";
|
|
1595
|
-
}
|
|
1596
|
-
[data-icon-set=uib-legacy][data-icon-name=gas-efficiency]::before {
|
|
1597
|
-
content: "\f258";
|
|
1598
|
-
}
|
|
1599
|
-
[data-icon-set=uib-legacy][data-icon-name=gas-patient]::before {
|
|
1600
|
-
content: "\f259";
|
|
1601
|
-
}
|
|
1602
|
-
[data-icon-set=uib-legacy][data-icon-name=gasbottle-100-percent]::before {
|
|
1603
|
-
content: "\f25a";
|
|
1604
|
-
}
|
|
1605
|
-
[data-icon-set=uib-legacy][data-icon-name=gasbottle-25-percent]::before {
|
|
1606
|
-
content: "\f25b";
|
|
1607
|
-
}
|
|
1608
|
-
[data-icon-set=uib-legacy][data-icon-name=gasbottle-50-percent]::before {
|
|
1609
|
-
content: "\f25c";
|
|
1610
|
-
}
|
|
1611
|
-
[data-icon-set=uib-legacy][data-icon-name=gasbottle-75-percent]::before {
|
|
1612
|
-
content: "\f25d";
|
|
1613
|
-
}
|
|
1614
|
-
[data-icon-set=uib-legacy][data-icon-name=gasbottle-information]::before {
|
|
1615
|
-
content: "\f25e";
|
|
1616
|
-
}
|
|
1617
|
-
[data-icon-set=uib-legacy][data-icon-name=gasbottle-low]::before {
|
|
1618
|
-
content: "\f25f";
|
|
1619
|
-
}
|
|
1620
|
-
[data-icon-set=uib-legacy][data-icon-name=gasbottle-warning]::before {
|
|
1621
|
-
content: "\f260";
|
|
1622
|
-
color: #FFE300;
|
|
1623
|
-
}
|
|
1624
|
-
[data-icon-set=uib-legacy][data-icon-name=gasbottle-warning]::after {
|
|
1625
|
-
content: "\f261";
|
|
1626
|
-
}
|
|
1627
|
-
[data-icon-set=uib-legacy][data-icon-name=gasbottle-warning] span::before {
|
|
1628
|
-
content: "\f4e1";
|
|
1629
|
-
color: #000000;
|
|
1630
|
-
}
|
|
1631
|
-
[data-icon-set=uib-legacy][data-icon-name=glove]::before {
|
|
1632
|
-
content: "\f263";
|
|
1633
|
-
}
|
|
1634
|
-
[data-icon-set=uib-legacy][data-icon-name=go-to-assets]::before {
|
|
1635
|
-
content: "\f264";
|
|
1636
|
-
}
|
|
1637
|
-
[data-icon-set=uib-legacy][data-icon-name=graph-settings]::before {
|
|
1638
|
-
content: "\f265";
|
|
1639
|
-
}
|
|
1640
|
-
[data-icon-set=uib-legacy][data-icon-name=graph-view]::before {
|
|
1641
|
-
content: "\f266";
|
|
1642
|
-
}
|
|
1643
|
-
[data-icon-set=uib-legacy][data-icon-name=group]::before {
|
|
1644
|
-
content: "\f267";
|
|
1645
|
-
}
|
|
1646
|
-
[data-icon-set=uib-legacy][data-icon-name=halfmask]::before {
|
|
1647
|
-
content: "\f268";
|
|
1648
|
-
}
|
|
1649
|
-
[data-icon-set=uib-legacy][data-icon-name=hardware]::before {
|
|
1650
|
-
content: "\f271";
|
|
1651
|
-
}
|
|
1652
|
-
[data-icon-set=uib-legacy][data-icon-name=hardware-available]::before {
|
|
1653
|
-
content: "\f269";
|
|
1654
|
-
color: #00DD31;
|
|
1655
|
-
}
|
|
1656
|
-
[data-icon-set=uib-legacy][data-icon-name=hardware-available]::after {
|
|
1657
|
-
content: "\f4e2";
|
|
1658
|
-
color: #000000;
|
|
1659
|
-
}
|
|
1660
|
-
[data-icon-set=uib-legacy][data-icon-name=hardware-available] span::before {
|
|
1661
|
-
content: "\f26b";
|
|
1662
|
-
}
|
|
1663
|
-
[data-icon-set=uib-legacy][data-icon-name=hardware-info]::before {
|
|
1664
|
-
content: "\f26c";
|
|
1665
|
-
}
|
|
1666
|
-
[data-icon-set=uib-legacy][data-icon-name=hardware-missing]::before {
|
|
1667
|
-
content: "\f26d";
|
|
1668
|
-
color: #F30303;
|
|
1669
|
-
}
|
|
1670
|
-
[data-icon-set=uib-legacy][data-icon-name=hardware-missing]::after {
|
|
1671
|
-
content: "\f26e";
|
|
1672
|
-
color: #FFF;
|
|
1673
|
-
}
|
|
1674
|
-
[data-icon-set=uib-legacy][data-icon-name=hardware-missing] span::before {
|
|
1675
|
-
content: "\f26f";
|
|
1676
|
-
}
|
|
1677
|
-
[data-icon-set=uib-legacy][data-icon-name=hardware-update]::before {
|
|
1678
|
-
content: "\f270";
|
|
1679
|
-
}
|
|
1680
|
-
[data-icon-set=uib-legacy][data-icon-name=harness]::before {
|
|
1681
|
-
content: "\f272";
|
|
1682
|
-
}
|
|
1683
|
-
[data-icon-set=uib-legacy][data-icon-name=helmet]::before {
|
|
1684
|
-
content: "\f274";
|
|
1685
|
-
}
|
|
1686
|
-
[data-icon-set=uib-legacy][data-icon-name=helmet-fire]::before {
|
|
1687
|
-
content: "\f273";
|
|
1688
|
-
}
|
|
1689
|
-
[data-icon-set=uib-legacy][data-icon-name=help]::before {
|
|
1690
|
-
content: "\f4e3";
|
|
1691
|
-
}
|
|
1692
|
-
[data-icon-set=uib-legacy][data-icon-name=hierarchy]::before {
|
|
1693
|
-
content: "\f275";
|
|
1694
|
-
}
|
|
1695
|
-
[data-icon-set=uib-legacy][data-icon-name=history]::before {
|
|
1696
|
-
content: "\f276";
|
|
1697
|
-
}
|
|
1698
|
-
[data-icon-set=uib-legacy][data-icon-name=hook]::before {
|
|
1699
|
-
content: "\f277";
|
|
1700
|
-
}
|
|
1701
|
-
[data-icon-set=uib-legacy][data-icon-name=hose]::before {
|
|
1702
|
-
content: "\f278";
|
|
1703
|
-
}
|
|
1704
|
-
[data-icon-set=uib-legacy][data-icon-name=hot]::before {
|
|
1705
|
-
content: "\f279";
|
|
1706
|
-
}
|
|
1707
|
-
[data-icon-set=uib-legacy][data-icon-name=hydrant]::before {
|
|
1708
|
-
content: "\f27a";
|
|
1709
|
-
}
|
|
1710
|
-
[data-icon-set=uib-legacy][data-icon-name=hydraulic]::before {
|
|
1711
|
-
content: "\f27b";
|
|
1712
|
-
}
|
|
1713
|
-
[data-icon-set=uib-legacy][data-icon-name=hysteresis]::before {
|
|
1714
|
-
content: "\f27c";
|
|
1715
|
-
}
|
|
1716
|
-
[data-icon-set=uib-legacy][data-icon-name=identify]::before {
|
|
1717
|
-
content: "\f27d";
|
|
1718
|
-
}
|
|
1719
|
-
[data-icon-set=uib-legacy][data-icon-name=ifu]::before {
|
|
1720
|
-
content: "\f27e";
|
|
1721
|
-
}
|
|
1722
|
-
[data-icon-set=uib-legacy][data-icon-name=imaging-ang]::before {
|
|
1723
|
-
content: "\f27f";
|
|
1724
|
-
}
|
|
1725
|
-
[data-icon-set=uib-legacy][data-icon-name=imaging-ct]::before {
|
|
1726
|
-
content: "\f280";
|
|
1727
|
-
}
|
|
1728
|
-
[data-icon-set=uib-legacy][data-icon-name=imaging-mrt]::before {
|
|
1729
|
-
content: "\f281";
|
|
1730
|
-
}
|
|
1731
|
-
[data-icon-set=uib-legacy][data-icon-name=imd]::before {
|
|
1732
|
-
content: "\f282";
|
|
1733
|
-
}
|
|
1734
|
-
[data-icon-set=uib-legacy][data-icon-name=import]::before {
|
|
1735
|
-
content: "\f4e4";
|
|
1736
|
-
}
|
|
1737
|
-
[data-icon-set=uib-legacy][data-icon-name=import-substance]::before {
|
|
1738
|
-
content: "\f283";
|
|
1739
|
-
}
|
|
1740
|
-
[data-icon-set=uib-legacy][data-icon-name=in-process]::before {
|
|
1741
|
-
content: "\f284";
|
|
1742
|
-
}
|
|
1743
|
-
[data-icon-set=uib-legacy][data-icon-name=index-card]::before {
|
|
1744
|
-
content: "\f285";
|
|
1745
|
-
}
|
|
1746
|
-
[data-icon-set=uib-legacy][data-icon-name=inerting]::before {
|
|
1747
|
-
content: "\f286";
|
|
1748
|
-
}
|
|
1749
|
-
[data-icon-set=uib-legacy][data-icon-name=inflate-breathing-bag]::before {
|
|
1750
|
-
content: "\f287";
|
|
1751
|
-
}
|
|
1752
|
-
[data-icon-set=uib-legacy][data-icon-name=information]::before {
|
|
1753
|
-
content: "\f289";
|
|
1754
|
-
}
|
|
1755
|
-
[data-icon-set=uib-legacy][data-icon-name=information-maintenance]::before {
|
|
1756
|
-
content: "\f288";
|
|
1757
|
-
}
|
|
1758
|
-
[data-icon-set=uib-legacy][data-icon-name=inhibit]::before {
|
|
1759
|
-
content: "\f28a";
|
|
1760
|
-
}
|
|
1761
|
-
[data-icon-set=uib-legacy][data-icon-name=insert]::before {
|
|
1762
|
-
content: "\f28b";
|
|
1763
|
-
}
|
|
1764
|
-
[data-icon-set=uib-legacy][data-icon-name=instrument-error]::before {
|
|
1765
|
-
content: "\f28e";
|
|
1766
|
-
}
|
|
1767
|
-
[data-icon-set=uib-legacy][data-icon-name=instrument-error]::after {
|
|
1768
|
-
content: "\f28c";
|
|
1769
|
-
color: #F30303;
|
|
1770
|
-
}
|
|
1771
|
-
[data-icon-set=uib-legacy][data-icon-name=instrument-error] span::before {
|
|
1772
|
-
content: "\f28d";
|
|
1773
|
-
color: #FFF;
|
|
1774
|
-
}
|
|
1775
|
-
[data-icon-set=uib-legacy][data-icon-name=instrument-pump-error]::before {
|
|
1776
|
-
content: "\f291";
|
|
1777
|
-
}
|
|
1778
|
-
[data-icon-set=uib-legacy][data-icon-name=instrument-pump-error]::after {
|
|
1779
|
-
content: "\f28f";
|
|
1780
|
-
color: #F30303;
|
|
1781
|
-
}
|
|
1782
|
-
[data-icon-set=uib-legacy][data-icon-name=instrument-pump-error] span::before {
|
|
1783
|
-
content: "\f290";
|
|
1784
|
-
color: #FFF;
|
|
1785
|
-
}
|
|
1786
|
-
[data-icon-set=uib-legacy][data-icon-name=instrument-xdock-error]::before {
|
|
1787
|
-
content: "\f294";
|
|
1788
|
-
}
|
|
1789
|
-
[data-icon-set=uib-legacy][data-icon-name=instrument-xdock-error]::after {
|
|
1790
|
-
content: "\f292";
|
|
1791
|
-
color: #F30303;
|
|
1792
|
-
}
|
|
1793
|
-
[data-icon-set=uib-legacy][data-icon-name=instrument-xdock-error] span::before {
|
|
1794
|
-
content: "\f293";
|
|
1795
|
-
color: #FFF;
|
|
1796
|
-
}
|
|
1797
|
-
[data-icon-set=uib-legacy][data-icon-name=interface-in-4-20]::before {
|
|
1798
|
-
content: "\f295";
|
|
1799
|
-
}
|
|
1800
|
-
[data-icon-set=uib-legacy][data-icon-name=interface-in-bridge]::before {
|
|
1801
|
-
content: "\f296";
|
|
1802
|
-
}
|
|
1803
|
-
[data-icon-set=uib-legacy][data-icon-name=interface-in-digital]::before {
|
|
1804
|
-
content: "\f297";
|
|
1805
|
-
}
|
|
1806
|
-
[data-icon-set=uib-legacy][data-icon-name=interface-in-ex]::before {
|
|
1807
|
-
content: "\f298";
|
|
1808
|
-
}
|
|
1809
|
-
[data-icon-set=uib-legacy][data-icon-name=interface-in-foundation-fieldbus]::before {
|
|
1810
|
-
content: "\f299";
|
|
1811
|
-
}
|
|
1812
|
-
[data-icon-set=uib-legacy][data-icon-name=interface-in-hart]::before {
|
|
1813
|
-
content: "\f29b";
|
|
1814
|
-
}
|
|
1815
|
-
[data-icon-set=uib-legacy][data-icon-name=interface-in-hart-multidrop]::before {
|
|
1816
|
-
content: "\f29a";
|
|
1817
|
-
}
|
|
1818
|
-
[data-icon-set=uib-legacy][data-icon-name=interface-in-modbus]::before {
|
|
1819
|
-
content: "\f29c";
|
|
1820
|
-
}
|
|
1821
|
-
[data-icon-set=uib-legacy][data-icon-name=interface-in-profibus]::before {
|
|
1822
|
-
content: "\f29d";
|
|
1823
|
-
}
|
|
1824
|
-
[data-icon-set=uib-legacy][data-icon-name=interface-input]::before {
|
|
1825
|
-
content: "\f29e";
|
|
1826
|
-
}
|
|
1827
|
-
[data-icon-set=uib-legacy][data-icon-name=interface-out-4-20]::before {
|
|
1828
|
-
content: "\f29f";
|
|
1829
|
-
}
|
|
1830
|
-
[data-icon-set=uib-legacy][data-icon-name=interface-out-digital]::before {
|
|
1831
|
-
content: "\f2a0";
|
|
1832
|
-
}
|
|
1833
|
-
[data-icon-set=uib-legacy][data-icon-name=interface-out-foundation-fieldbus]::before {
|
|
1834
|
-
content: "\f2a1";
|
|
1835
|
-
}
|
|
1836
|
-
[data-icon-set=uib-legacy][data-icon-name=interface-out-modbus]::before {
|
|
1837
|
-
content: "\f2a2";
|
|
1838
|
-
}
|
|
1839
|
-
[data-icon-set=uib-legacy][data-icon-name=interface-out-profibus]::before {
|
|
1840
|
-
content: "\f2a3";
|
|
1841
|
-
}
|
|
1842
|
-
[data-icon-set=uib-legacy][data-icon-name=interface-out-relay]::before {
|
|
1843
|
-
content: "\f2a4";
|
|
1844
|
-
}
|
|
1845
|
-
[data-icon-set=uib-legacy][data-icon-name=interface-output]::before {
|
|
1846
|
-
content: "\f2a5";
|
|
1847
|
-
}
|
|
1848
|
-
[data-icon-set=uib-legacy][data-icon-name=interface-slotcover]::before {
|
|
1849
|
-
content: "\f2a6";
|
|
1850
|
-
}
|
|
1851
|
-
[data-icon-set=uib-legacy][data-icon-name=interface-unknown]::before {
|
|
1852
|
-
content: "\f2a7";
|
|
1853
|
-
}
|
|
1854
|
-
[data-icon-set=uib-legacy][data-icon-name=interlock]::before {
|
|
1855
|
-
content: "\f2ad";
|
|
1856
|
-
}
|
|
1857
|
-
[data-icon-set=uib-legacy][data-icon-name=interlock-calibration]::before {
|
|
1858
|
-
content: "\f2a8";
|
|
1859
|
-
}
|
|
1860
|
-
[data-icon-set=uib-legacy][data-icon-name=interlock-installation]::before {
|
|
1861
|
-
content: "\f2a9";
|
|
1862
|
-
}
|
|
1863
|
-
[data-icon-set=uib-legacy][data-icon-name=interlock-removal]::before {
|
|
1864
|
-
content: "\f2aa";
|
|
1865
|
-
}
|
|
1866
|
-
[data-icon-set=uib-legacy][data-icon-name=interlock-reset]::before {
|
|
1867
|
-
content: "\f2ab";
|
|
1868
|
-
}
|
|
1869
|
-
[data-icon-set=uib-legacy][data-icon-name=interlock-swap]::before {
|
|
1870
|
-
content: "\f2ac";
|
|
1871
|
-
}
|
|
1872
|
-
[data-icon-set=uib-legacy][data-icon-name=ir]::before {
|
|
1873
|
-
content: "\f2ae";
|
|
1874
|
-
}
|
|
1875
|
-
[data-icon-set=uib-legacy][data-icon-name=job-approve]::before {
|
|
1876
|
-
content: "\f2b1";
|
|
1877
|
-
}
|
|
1878
|
-
[data-icon-set=uib-legacy][data-icon-name=job-approve]::after {
|
|
1879
|
-
content: "\f2af";
|
|
1880
|
-
color: #00DD31;
|
|
1881
|
-
}
|
|
1882
|
-
[data-icon-set=uib-legacy][data-icon-name=job-approve] span::before {
|
|
1883
|
-
content: "\f4e5";
|
|
1884
|
-
color: #000000;
|
|
1885
|
-
}
|
|
1886
|
-
[data-icon-set=uib-legacy][data-icon-name=job-history]::before {
|
|
1887
|
-
content: "\f2b2";
|
|
1888
|
-
}
|
|
1889
|
-
[data-icon-set=uib-legacy][data-icon-name=job-list]::before {
|
|
1890
|
-
content: "\f2b3";
|
|
1891
|
-
}
|
|
1892
|
-
[data-icon-set=uib-legacy][data-icon-name=job-new]::before {
|
|
1893
|
-
content: "\f2b5";
|
|
1894
|
-
}
|
|
1895
|
-
[data-icon-set=uib-legacy][data-icon-name=job-pool]::before {
|
|
1896
|
-
content: "\f2b6";
|
|
1897
|
-
}
|
|
1898
|
-
[data-icon-set=uib-legacy][data-icon-name=job-proceed]::before {
|
|
1899
|
-
content: "\f2b7";
|
|
1900
|
-
}
|
|
1901
|
-
[data-icon-set=uib-legacy][data-icon-name=job-user]::before {
|
|
1902
|
-
content: "\f2b8";
|
|
1903
|
-
}
|
|
1904
|
-
[data-icon-set=uib-legacy][data-icon-name=keyboard]::before {
|
|
1905
|
-
content: "\f2bd";
|
|
1906
|
-
}
|
|
1907
|
-
[data-icon-set=uib-legacy][data-icon-name=keyboard-capslock]::before {
|
|
1908
|
-
content: "\f2b9";
|
|
1909
|
-
}
|
|
1910
|
-
[data-icon-set=uib-legacy][data-icon-name=keyboard-delete]::before {
|
|
1911
|
-
content: "\f2ba";
|
|
1912
|
-
}
|
|
1913
|
-
[data-icon-set=uib-legacy][data-icon-name=keyboard-hide]::before {
|
|
1914
|
-
content: "\f2bb";
|
|
1915
|
-
}
|
|
1916
|
-
[data-icon-set=uib-legacy][data-icon-name=keyboard-shift]::before {
|
|
1917
|
-
content: "\f2bc";
|
|
1918
|
-
}
|
|
1919
|
-
[data-icon-set=uib-legacy][data-icon-name=language]::before {
|
|
1920
|
-
content: "\f4e6";
|
|
1921
|
-
}
|
|
1922
|
-
[data-icon-set=uib-legacy][data-icon-name=laptop]::before {
|
|
1923
|
-
content: "\f2be";
|
|
1924
|
-
}
|
|
1925
|
-
[data-icon-set=uib-legacy][data-icon-name=laundry-dryer]::before {
|
|
1926
|
-
content: "\f2bf";
|
|
1927
|
-
}
|
|
1928
|
-
[data-icon-set=uib-legacy][data-icon-name=ldba]::before {
|
|
1929
|
-
content: "\f2c0";
|
|
1930
|
-
}
|
|
1931
|
-
[data-icon-set=uib-legacy][data-icon-name=leaktest-hp]::before {
|
|
1932
|
-
content: "\f2c2";
|
|
1933
|
-
}
|
|
1934
|
-
[data-icon-set=uib-legacy][data-icon-name=leaktest-hp-query]::before {
|
|
1935
|
-
content: "\f2c1";
|
|
1936
|
-
}
|
|
1937
|
-
[data-icon-set=uib-legacy][data-icon-name=leaktest-lp]::before {
|
|
1938
|
-
content: "\f2c4";
|
|
1939
|
-
}
|
|
1940
|
-
[data-icon-set=uib-legacy][data-icon-name=leaktest-lp-query]::before {
|
|
1941
|
-
content: "\f2c3";
|
|
1942
|
-
}
|
|
1943
|
-
[data-icon-set=uib-legacy][data-icon-name=leaktest-ok]::before {
|
|
1944
|
-
content: "\f2c7";
|
|
1945
|
-
}
|
|
1946
|
-
[data-icon-set=uib-legacy][data-icon-name=leaktest-ok]::after {
|
|
1947
|
-
content: "\f2c5";
|
|
1948
|
-
color: #00DD31;
|
|
1949
|
-
}
|
|
1950
|
-
[data-icon-set=uib-legacy][data-icon-name=leaktest-ok] span::before {
|
|
1951
|
-
content: "\f4e7";
|
|
1952
|
-
color: #000000;
|
|
1953
|
-
}
|
|
1954
|
-
[data-icon-set=uib-legacy][data-icon-name=leaktest-query]::before {
|
|
1955
|
-
content: "\f2c8";
|
|
1956
|
-
}
|
|
1957
|
-
[data-icon-set=uib-legacy][data-icon-name=leaktest-run]::before {
|
|
1958
|
-
content: "\f2c9";
|
|
1959
|
-
}
|
|
1960
|
-
[data-icon-set=uib-legacy][data-icon-name=leaktest-timeout]::before {
|
|
1961
|
-
content: "\f2cc";
|
|
1962
|
-
}
|
|
1963
|
-
[data-icon-set=uib-legacy][data-icon-name=leaktest-timeout]::after {
|
|
1964
|
-
content: "\f2ca";
|
|
1965
|
-
color: #F30303;
|
|
1966
|
-
}
|
|
1967
|
-
[data-icon-set=uib-legacy][data-icon-name=leaktest-timeout] span::before {
|
|
1968
|
-
content: "\f2cb";
|
|
1969
|
-
color: #FFF;
|
|
1970
|
-
}
|
|
1971
|
-
[data-icon-set=uib-legacy][data-icon-name=leaktest-warning]::before {
|
|
1972
|
-
content: "\f2cf";
|
|
1973
|
-
}
|
|
1974
|
-
[data-icon-set=uib-legacy][data-icon-name=leaktest-warning]::after {
|
|
1975
|
-
content: "\f2cd";
|
|
1976
|
-
color: #FFE300;
|
|
1977
|
-
}
|
|
1978
|
-
[data-icon-set=uib-legacy][data-icon-name=leaktest-warning] span::before {
|
|
1979
|
-
content: "\f4e8";
|
|
1980
|
-
color: #000000;
|
|
1981
|
-
}
|
|
1982
|
-
[data-icon-set=uib-legacy][data-icon-name=lifesignal]::before {
|
|
1983
|
-
content: "\f2d1";
|
|
1984
|
-
}
|
|
1985
|
-
[data-icon-set=uib-legacy][data-icon-name=lifesignal-disabled]::before {
|
|
1986
|
-
content: "\f2d0";
|
|
1987
|
-
}
|
|
1988
|
-
[data-icon-set=uib-legacy][data-icon-name=lightbulb]::before {
|
|
1989
|
-
content: "\f2d5";
|
|
1990
|
-
}
|
|
1991
|
-
[data-icon-set=uib-legacy][data-icon-name=lightbulb-warning]::before {
|
|
1992
|
-
content: "\f4eb";
|
|
1993
|
-
}
|
|
1994
|
-
[data-icon-set=uib-legacy][data-icon-name=lightbulb-warning]::after {
|
|
1995
|
-
content: "\f4e9";
|
|
1996
|
-
color: #FFE300;
|
|
1997
|
-
}
|
|
1998
|
-
[data-icon-set=uib-legacy][data-icon-name=lightbulb-warning] span::before {
|
|
1999
|
-
content: "\f4ea";
|
|
2000
|
-
color: #000000;
|
|
2001
|
-
}
|
|
2002
|
-
[data-icon-set=uib-legacy][data-icon-name=line-graph]::before {
|
|
2003
|
-
content: "\f2d6";
|
|
2004
|
-
}
|
|
2005
|
-
[data-icon-set=uib-legacy][data-icon-name=link-external]::before {
|
|
2006
|
-
content: "\f4ec";
|
|
2007
|
-
}
|
|
2008
|
-
[data-icon-set=uib-legacy][data-icon-name=link-internal]::before {
|
|
2009
|
-
content: "\f4ed";
|
|
2010
|
-
}
|
|
2011
|
-
[data-icon-set=uib-legacy][data-icon-name=location]::before {
|
|
2012
|
-
content: "\f4f6";
|
|
2013
|
-
}
|
|
2014
|
-
[data-icon-set=uib-legacy][data-icon-name=location-disabled]::before {
|
|
2015
|
-
content: "\f4ee";
|
|
2016
|
-
}
|
|
2017
|
-
[data-icon-set=uib-legacy][data-icon-name=location-scan]::before {
|
|
2018
|
-
content: "\f4f5";
|
|
2019
|
-
}
|
|
2020
|
-
[data-icon-set=uib-legacy][data-icon-name=location-scan-failed]::before {
|
|
2021
|
-
content: "\f4f1";
|
|
2022
|
-
}
|
|
2023
|
-
[data-icon-set=uib-legacy][data-icon-name=location-scan-failed]::after {
|
|
2024
|
-
content: "\f4ef";
|
|
2025
|
-
color: #F30303;
|
|
2026
|
-
}
|
|
2027
|
-
[data-icon-set=uib-legacy][data-icon-name=location-scan-failed] span::before {
|
|
2028
|
-
content: "\f4f0";
|
|
2029
|
-
color: #FFF;
|
|
2030
|
-
}
|
|
2031
|
-
[data-icon-set=uib-legacy][data-icon-name=location-scan-success]::before {
|
|
2032
|
-
content: "\f4f4";
|
|
2033
|
-
}
|
|
2034
|
-
[data-icon-set=uib-legacy][data-icon-name=location-scan-success]::after {
|
|
2035
|
-
content: "\f4f2";
|
|
2036
|
-
color: #000000;
|
|
2037
|
-
}
|
|
2038
|
-
[data-icon-set=uib-legacy][data-icon-name=location-scan-success] span::before {
|
|
2039
|
-
content: "\f4f3";
|
|
2040
|
-
color: #00DD31;
|
|
2041
|
-
}
|
|
2042
|
-
[data-icon-set=uib-legacy][data-icon-name=lock]::before {
|
|
2043
|
-
content: "\f4f7";
|
|
2044
|
-
}
|
|
2045
|
-
[data-icon-set=uib-legacy][data-icon-name=log-edit]::before {
|
|
2046
|
-
content: "\f2d7";
|
|
2047
|
-
}
|
|
2048
|
-
[data-icon-set=uib-legacy][data-icon-name=log-service]::before {
|
|
2049
|
-
content: "\f2d8";
|
|
2050
|
-
}
|
|
2051
|
-
[data-icon-set=uib-legacy][data-icon-name=log-view]::before {
|
|
2052
|
-
content: "\f2d9";
|
|
2053
|
-
}
|
|
2054
|
-
[data-icon-set=uib-legacy][data-icon-name=login]::before {
|
|
2055
|
-
content: "\f2dc";
|
|
2056
|
-
}
|
|
2057
|
-
[data-icon-set=uib-legacy][data-icon-name=login]::after {
|
|
2058
|
-
content: "\f2da";
|
|
2059
|
-
color: #00DD31;
|
|
2060
|
-
}
|
|
2061
|
-
[data-icon-set=uib-legacy][data-icon-name=login] span::before {
|
|
2062
|
-
content: "\f4f8";
|
|
2063
|
-
color: #000000;
|
|
2064
|
-
}
|
|
2065
|
-
[data-icon-set=uib-legacy][data-icon-name=logout]::before {
|
|
2066
|
-
content: "\f2df";
|
|
2067
|
-
}
|
|
2068
|
-
[data-icon-set=uib-legacy][data-icon-name=logout]::after {
|
|
2069
|
-
content: "\f2dd";
|
|
2070
|
-
color: #F30303;
|
|
2071
|
-
}
|
|
2072
|
-
[data-icon-set=uib-legacy][data-icon-name=logout] span::before {
|
|
2073
|
-
content: "\f2de";
|
|
2074
|
-
color: #FFF;
|
|
2075
|
-
}
|
|
2076
|
-
[data-icon-set=uib-legacy][data-icon-name=long-distance-gate-way]::before {
|
|
2077
|
-
content: "\f2e0";
|
|
2078
|
-
}
|
|
2079
|
-
[data-icon-set=uib-legacy][data-icon-name=lost-report]::before {
|
|
2080
|
-
content: "\f2e1";
|
|
2081
|
-
}
|
|
2082
|
-
[data-icon-set=uib-legacy][data-icon-name=low-dosage-rate]::before {
|
|
2083
|
-
content: "\f2e2";
|
|
2084
|
-
}
|
|
2085
|
-
[data-icon-set=uib-legacy][data-icon-name=manual-input]::before {
|
|
2086
|
-
content: "\f2e3";
|
|
2087
|
-
}
|
|
2088
|
-
[data-icon-set=uib-legacy][data-icon-name=map]::before {
|
|
2089
|
-
content: "\f4f9";
|
|
2090
|
-
}
|
|
2091
|
-
[data-icon-set=uib-legacy][data-icon-name=masonry]::before {
|
|
2092
|
-
content: "\f2e4";
|
|
2093
|
-
}
|
|
2094
|
-
[data-icon-set=uib-legacy][data-icon-name=maximize]::before {
|
|
2095
|
-
content: "\f2e5";
|
|
2096
|
-
}
|
|
2097
|
-
[data-icon-set=uib-legacy][data-icon-name=measuring]::before {
|
|
2098
|
-
content: "\f2e9";
|
|
2099
|
-
}
|
|
2100
|
-
[data-icon-set=uib-legacy][data-icon-name=measuring-1]::before {
|
|
2101
|
-
content: "\f2e6";
|
|
2102
|
-
}
|
|
2103
|
-
[data-icon-set=uib-legacy][data-icon-name=measuring-2]::before {
|
|
2104
|
-
content: "\f2e7";
|
|
2105
|
-
}
|
|
2106
|
-
[data-icon-set=uib-legacy][data-icon-name=measuring-3]::before {
|
|
2107
|
-
content: "\f2e8";
|
|
2108
|
-
}
|
|
2109
|
-
[data-icon-set=uib-legacy][data-icon-name=media-fastforward]::before {
|
|
2110
|
-
content: "\f4fa";
|
|
2111
|
-
}
|
|
2112
|
-
[data-icon-set=uib-legacy][data-icon-name=media-pause]::before {
|
|
2113
|
-
content: "\f4fb";
|
|
2114
|
-
}
|
|
2115
|
-
[data-icon-set=uib-legacy][data-icon-name=media-play]::before {
|
|
2116
|
-
content: "\f4fc";
|
|
2117
|
-
}
|
|
2118
|
-
[data-icon-set=uib-legacy][data-icon-name=media-rewind]::before {
|
|
2119
|
-
content: "\f4fd";
|
|
2120
|
-
}
|
|
2121
|
-
[data-icon-set=uib-legacy][data-icon-name=media-skip-back]::before {
|
|
2122
|
-
content: "\f4fe";
|
|
2123
|
-
}
|
|
2124
|
-
[data-icon-set=uib-legacy][data-icon-name=media-skip-forward]::before {
|
|
2125
|
-
content: "\f4ff";
|
|
2126
|
-
}
|
|
2127
|
-
[data-icon-set=uib-legacy][data-icon-name=media-stop]::before {
|
|
2128
|
-
content: "\f500";
|
|
2129
|
-
}
|
|
2130
|
-
[data-icon-set=uib-legacy][data-icon-name=medical]::before {
|
|
2131
|
-
content: "\f501";
|
|
2132
|
-
}
|
|
2133
|
-
[data-icon-set=uib-legacy][data-icon-name=menu]::before {
|
|
2134
|
-
content: "\f504";
|
|
2135
|
-
}
|
|
2136
|
-
[data-icon-set=uib-legacy][data-icon-name=menu-favorites]::before {
|
|
2137
|
-
content: "\f502";
|
|
2138
|
-
}
|
|
2139
|
-
[data-icon-set=uib-legacy][data-icon-name=menu-functions]::before {
|
|
2140
|
-
content: "\f503";
|
|
2141
|
-
}
|
|
2142
|
-
[data-icon-set=uib-legacy][data-icon-name=microphone]::before {
|
|
2143
|
-
content: "\f2ea";
|
|
2144
|
-
}
|
|
2145
|
-
[data-icon-set=uib-legacy][data-icon-name=mimic]::before {
|
|
2146
|
-
content: "\f2eb";
|
|
2147
|
-
}
|
|
2148
|
-
[data-icon-set=uib-legacy][data-icon-name=minimize]::before {
|
|
2149
|
-
content: "\f2ec";
|
|
2150
|
-
}
|
|
2151
|
-
[data-icon-set=uib-legacy][data-icon-name=miniwarn]::before {
|
|
2152
|
-
content: "\f2ed";
|
|
2153
|
-
}
|
|
2154
|
-
[data-icon-set=uib-legacy][data-icon-name=minus]::before {
|
|
2155
|
-
content: "\f2ee";
|
|
2156
|
-
}
|
|
2157
|
-
[data-icon-set=uib-legacy][data-icon-name=mobile-device]::before {
|
|
2158
|
-
content: "\f2f5";
|
|
2159
|
-
}
|
|
2160
|
-
[data-icon-set=uib-legacy][data-icon-name=mobile-device-connected]::before {
|
|
2161
|
-
content: "\f2f1";
|
|
2162
|
-
}
|
|
2163
|
-
[data-icon-set=uib-legacy][data-icon-name=mobile-device-connected]::after {
|
|
2164
|
-
content: "\f2ef";
|
|
2165
|
-
color: #00DD31;
|
|
2166
|
-
}
|
|
2167
|
-
[data-icon-set=uib-legacy][data-icon-name=mobile-device-connected] span::before {
|
|
2168
|
-
content: "\f505";
|
|
2169
|
-
color: #000000;
|
|
2170
|
-
}
|
|
2171
|
-
[data-icon-set=uib-legacy][data-icon-name=mobile-device-error]::before {
|
|
2172
|
-
content: "\f2f2";
|
|
2173
|
-
color: #F30303;
|
|
2174
|
-
}
|
|
2175
|
-
[data-icon-set=uib-legacy][data-icon-name=mobile-device-error]::after {
|
|
2176
|
-
content: "\f2f3";
|
|
2177
|
-
color: #FFF;
|
|
2178
|
-
}
|
|
2179
|
-
[data-icon-set=uib-legacy][data-icon-name=mobile-device-error] span::before {
|
|
2180
|
-
content: "\f2f4";
|
|
2181
|
-
}
|
|
2182
|
-
[data-icon-set=uib-legacy][data-icon-name=module]::before {
|
|
2183
|
-
content: "\f2f6";
|
|
2184
|
-
}
|
|
2185
|
-
[data-icon-set=uib-legacy][data-icon-name=monitoring]::before {
|
|
2186
|
-
content: "\f2fa";
|
|
2187
|
-
}
|
|
2188
|
-
[data-icon-set=uib-legacy][data-icon-name=monitoring-1]::before {
|
|
2189
|
-
content: "\f2f7";
|
|
2190
|
-
}
|
|
2191
|
-
[data-icon-set=uib-legacy][data-icon-name=monitoring-2]::before {
|
|
2192
|
-
content: "\f2f8";
|
|
2193
|
-
}
|
|
2194
|
-
[data-icon-set=uib-legacy][data-icon-name=monitoring-3]::before {
|
|
2195
|
-
content: "\f2f9";
|
|
2196
|
-
}
|
|
2197
|
-
[data-icon-set=uib-legacy][data-icon-name=motion-sensing]::before {
|
|
2198
|
-
content: "\f301";
|
|
2199
|
-
}
|
|
2200
|
-
[data-icon-set=uib-legacy][data-icon-name=motion-sensing-disabled]::before {
|
|
2201
|
-
content: "\f2fb";
|
|
2202
|
-
color: #F30303;
|
|
2203
|
-
}
|
|
2204
|
-
[data-icon-set=uib-legacy][data-icon-name=motion-sensing-disabled]::after {
|
|
2205
|
-
content: "\f2fc";
|
|
2206
|
-
color: #FFF;
|
|
2207
|
-
}
|
|
2208
|
-
[data-icon-set=uib-legacy][data-icon-name=motion-sensing-disabled] span::before {
|
|
2209
|
-
content: "\f2fd";
|
|
2210
|
-
}
|
|
2211
|
-
[data-icon-set=uib-legacy][data-icon-name=motion-sensing-enabled]::before {
|
|
2212
|
-
content: "\f2fe";
|
|
2213
|
-
color: #00DD31;
|
|
2214
|
-
}
|
|
2215
|
-
[data-icon-set=uib-legacy][data-icon-name=motion-sensing-enabled]::after {
|
|
2216
|
-
content: "\f506";
|
|
2217
|
-
color: #000000;
|
|
2218
|
-
}
|
|
2219
|
-
[data-icon-set=uib-legacy][data-icon-name=motion-sensing-enabled] span::before {
|
|
2220
|
-
content: "\f300";
|
|
2221
|
-
}
|
|
2222
|
-
[data-icon-set=uib-legacy][data-icon-name=move]::before {
|
|
2223
|
-
content: "\f303";
|
|
2224
|
-
}
|
|
2225
|
-
[data-icon-set=uib-legacy][data-icon-name=move-screen]::before {
|
|
2226
|
-
content: "\f302";
|
|
2227
|
-
}
|
|
2228
|
-
[data-icon-set=uib-legacy][data-icon-name=multigas]::before {
|
|
2229
|
-
content: "\f305";
|
|
2230
|
-
}
|
|
2231
|
-
[data-icon-set=uib-legacy][data-icon-name=multigas-cse]::before {
|
|
2232
|
-
content: "\f304";
|
|
2233
|
-
}
|
|
2234
|
-
[data-icon-set=uib-legacy][data-icon-name=multiwarn-2]::before {
|
|
2235
|
-
content: "\f306";
|
|
2236
|
-
}
|
|
2237
|
-
[data-icon-set=uib-legacy][data-icon-name=navigation-logfile-management]::before {
|
|
2238
|
-
content: "\f507";
|
|
2239
|
-
}
|
|
2240
|
-
[data-icon-set=uib-legacy][data-icon-name=navigation-logfile-management]::after {
|
|
2241
|
-
content: "\f508";
|
|
2242
|
-
}
|
|
2243
|
-
[data-icon-set=uib-legacy][data-icon-name=network]::before {
|
|
2244
|
-
content: "\f309";
|
|
2245
|
-
}
|
|
2246
|
-
[data-icon-set=uib-legacy][data-icon-name=network-upload]::before {
|
|
2247
|
-
content: "\f308";
|
|
2248
|
-
}
|
|
2249
|
-
[data-icon-set=uib-legacy][data-icon-name=newsletter]::before {
|
|
2250
|
-
content: "\f509";
|
|
2251
|
-
}
|
|
2252
|
-
[data-icon-set=uib-legacy][data-icon-name=next]::before {
|
|
2253
|
-
content: "\f50a";
|
|
2254
|
-
}
|
|
2255
|
-
[data-icon-set=uib-legacy][data-icon-name=night-mode]::before {
|
|
2256
|
-
content: "\f50b";
|
|
2257
|
-
}
|
|
2258
|
-
[data-icon-set=uib-legacy][data-icon-name=no]::before {
|
|
2259
|
-
content: "\f30a";
|
|
2260
|
-
}
|
|
2261
|
-
[data-icon-set=uib-legacy][data-icon-name=notification]::before {
|
|
2262
|
-
content: "\f50d";
|
|
2263
|
-
}
|
|
2264
|
-
[data-icon-set=uib-legacy][data-icon-name=notification-disabled]::before {
|
|
2265
|
-
content: "\f50c";
|
|
2266
|
-
}
|
|
2267
|
-
[data-icon-set=uib-legacy][data-icon-name=number-1]::before {
|
|
2268
|
-
content: "\f30b";
|
|
2269
|
-
}
|
|
2270
|
-
[data-icon-set=uib-legacy][data-icon-name=number-100]::before {
|
|
2271
|
-
content: "\f30c";
|
|
2272
|
-
}
|
|
2273
|
-
[data-icon-set=uib-legacy][data-icon-name=observation]::before {
|
|
2274
|
-
content: "\f30e";
|
|
2275
|
-
}
|
|
2276
|
-
[data-icon-set=uib-legacy][data-icon-name=observation-fire]::before {
|
|
2277
|
-
content: "\f30d";
|
|
2278
|
-
}
|
|
2279
|
-
[data-icon-set=uib-legacy][data-icon-name=offline-mode]::before {
|
|
2280
|
-
content: "\f30f";
|
|
2281
|
-
}
|
|
2282
|
-
[data-icon-set=uib-legacy][data-icon-name=ok]::before {
|
|
2283
|
-
content: "\f50e";
|
|
2284
|
-
}
|
|
2285
|
-
[data-icon-set=uib-legacy][data-icon-name=ok-repeat]::before {
|
|
2286
|
-
content: "\f310";
|
|
2287
|
-
}
|
|
2288
|
-
[data-icon-set=uib-legacy][data-icon-name=ok-to-all]::before {
|
|
2289
|
-
content: "\f311";
|
|
2290
|
-
color: #00DD31;
|
|
2291
|
-
}
|
|
2292
|
-
[data-icon-set=uib-legacy][data-icon-name=ok-to-all]::after {
|
|
2293
|
-
content: "\f312";
|
|
2294
|
-
}
|
|
2295
|
-
[data-icon-set=uib-legacy][data-icon-name=online-manuals]::before {
|
|
2296
|
-
content: "\f313";
|
|
2297
|
-
}
|
|
2298
|
-
[data-icon-set=uib-legacy][data-icon-name=online-mode]::before {
|
|
2299
|
-
content: "\f314";
|
|
2300
|
-
color: #00DD31;
|
|
2301
|
-
}
|
|
2302
|
-
[data-icon-set=uib-legacy][data-icon-name=online-mode]::after {
|
|
2303
|
-
content: "\f50f";
|
|
2304
|
-
color: #000000;
|
|
2305
|
-
}
|
|
2306
|
-
[data-icon-set=uib-legacy][data-icon-name=online-mode] span::before {
|
|
2307
|
-
content: "\f316";
|
|
2308
|
-
}
|
|
2309
|
-
[data-icon-set=uib-legacy][data-icon-name=open]::before {
|
|
2310
|
-
content: "\f317";
|
|
2311
|
-
}
|
|
2312
|
-
[data-icon-set=uib-legacy][data-icon-name=operation]::before {
|
|
2313
|
-
content: "\f319";
|
|
2314
|
-
}
|
|
2315
|
-
[data-icon-set=uib-legacy][data-icon-name=operation-hot]::before {
|
|
2316
|
-
content: "\f318";
|
|
2317
|
-
}
|
|
2318
|
-
[data-icon-set=uib-legacy][data-icon-name=overrange]::before {
|
|
2319
|
-
content: "\f31a";
|
|
2320
|
-
}
|
|
2321
|
-
[data-icon-set=uib-legacy][data-icon-name=overwrite-replace]::before {
|
|
2322
|
-
content: "\f31b";
|
|
2323
|
-
}
|
|
2324
|
-
[data-icon-set=uib-legacy][data-icon-name=p5000]::before {
|
|
2325
|
-
content: "\f31c";
|
|
2326
|
-
}
|
|
2327
|
-
[data-icon-set=uib-legacy][data-icon-name=p8000]::before {
|
|
2328
|
-
content: "\f31d";
|
|
2329
|
-
}
|
|
2330
|
-
[data-icon-set=uib-legacy][data-icon-name=pac-1000-7000]::before {
|
|
2331
|
-
content: "\f31e";
|
|
2332
|
-
}
|
|
2333
|
-
[data-icon-set=uib-legacy][data-icon-name=pac-3]::before {
|
|
2334
|
-
content: "\f31f";
|
|
2335
|
-
}
|
|
2336
|
-
[data-icon-set=uib-legacy][data-icon-name=pac-ex-2]::before {
|
|
2337
|
-
content: "\f320";
|
|
2338
|
-
}
|
|
2339
|
-
[data-icon-set=uib-legacy][data-icon-name=package]::before {
|
|
2340
|
-
content: "\f321";
|
|
2341
|
-
}
|
|
2342
|
-
[data-icon-set=uib-legacy][data-icon-name=painting]::before {
|
|
2343
|
-
content: "\f322";
|
|
2344
|
-
}
|
|
2345
|
-
[data-icon-set=uib-legacy][data-icon-name=pairing]::before {
|
|
2346
|
-
content: "\f510";
|
|
2347
|
-
}
|
|
2348
|
-
[data-icon-set=uib-legacy][data-icon-name=partner-care]::before {
|
|
2349
|
-
content: "\f323";
|
|
2350
|
-
}
|
|
2351
|
-
[data-icon-set=uib-legacy][data-icon-name=password]::before {
|
|
2352
|
-
content: "\f512";
|
|
2353
|
-
}
|
|
2354
|
-
[data-icon-set=uib-legacy][data-icon-name=password-change]::before {
|
|
2355
|
-
content: "\f511";
|
|
2356
|
-
}
|
|
2357
|
-
[data-icon-set=uib-legacy][data-icon-name=pc]::before {
|
|
2358
|
-
content: "\f32d";
|
|
2359
|
-
}
|
|
2360
|
-
[data-icon-set=uib-legacy][data-icon-name=pc-connection]::before {
|
|
2361
|
-
content: "\f324";
|
|
2362
|
-
}
|
|
2363
|
-
[data-icon-set=uib-legacy][data-icon-name=pc-link-connected]::before {
|
|
2364
|
-
content: "\f325";
|
|
2365
|
-
color: #00DD31;
|
|
2366
|
-
}
|
|
2367
|
-
[data-icon-set=uib-legacy][data-icon-name=pc-link-connected]::after {
|
|
2368
|
-
content: "\f513";
|
|
2369
|
-
color: #000000;
|
|
2370
|
-
}
|
|
2371
|
-
[data-icon-set=uib-legacy][data-icon-name=pc-link-connected] span::before {
|
|
2372
|
-
content: "\f327";
|
|
2373
|
-
}
|
|
2374
|
-
[data-icon-set=uib-legacy][data-icon-name=pc-link-error]::before {
|
|
2375
|
-
content: "\f328";
|
|
2376
|
-
color: #F30303;
|
|
2377
|
-
}
|
|
2378
|
-
[data-icon-set=uib-legacy][data-icon-name=pc-link-error]::after {
|
|
2379
|
-
content: "\f329";
|
|
2380
|
-
color: #FFF;
|
|
2381
|
-
}
|
|
2382
|
-
[data-icon-set=uib-legacy][data-icon-name=pc-link-error] span::before {
|
|
2383
|
-
content: "\f32a";
|
|
2384
|
-
}
|
|
2385
|
-
[data-icon-set=uib-legacy][data-icon-name=pc-link-preparing]::before {
|
|
2386
|
-
content: "\f32b";
|
|
2387
|
-
}
|
|
2388
|
-
[data-icon-set=uib-legacy][data-icon-name=pc-link-query]::before {
|
|
2389
|
-
content: "\f32c";
|
|
2390
|
-
}
|
|
2391
|
-
[data-icon-set=uib-legacy][data-icon-name=pdf]::before {
|
|
2392
|
-
content: "\f32e";
|
|
2393
|
-
}
|
|
2394
|
-
[data-icon-set=uib-legacy][data-icon-name=person-confirm]::before {
|
|
2395
|
-
content: "\f32f";
|
|
2396
|
-
color: #00DD31;
|
|
2397
|
-
}
|
|
2398
|
-
[data-icon-set=uib-legacy][data-icon-name=person-confirm]::after {
|
|
2399
|
-
content: "\f514";
|
|
2400
|
-
color: #000000;
|
|
2401
|
-
}
|
|
2402
|
-
[data-icon-set=uib-legacy][data-icon-name=person-confirm] span::before {
|
|
2403
|
-
content: "\f331";
|
|
2404
|
-
}
|
|
2405
|
-
[data-icon-set=uib-legacy][data-icon-name=person-crawling]::before {
|
|
2406
|
-
content: "\f332";
|
|
2407
|
-
}
|
|
2408
|
-
[data-icon-set=uib-legacy][data-icon-name=person-query]::before {
|
|
2409
|
-
content: "\f333";
|
|
2410
|
-
}
|
|
2411
|
-
[data-icon-set=uib-legacy][data-icon-name=person-standing]::before {
|
|
2412
|
-
content: "\f334";
|
|
2413
|
-
}
|
|
2414
|
-
[data-icon-set=uib-legacy][data-icon-name=person-walking]::before {
|
|
2415
|
-
content: "\f335";
|
|
2416
|
-
}
|
|
2417
|
-
[data-icon-set=uib-legacy][data-icon-name=phone]::before {
|
|
2418
|
-
content: "\f515";
|
|
2419
|
-
}
|
|
2420
|
-
[data-icon-set=uib-legacy][data-icon-name=photo]::before {
|
|
2421
|
-
content: "\f516";
|
|
2422
|
-
}
|
|
2423
|
-
[data-icon-set=uib-legacy][data-icon-name=picture]::before {
|
|
2424
|
-
content: "\f517";
|
|
2425
|
-
}
|
|
2426
|
-
[data-icon-set=uib-legacy][data-icon-name=pie-chart]::before {
|
|
2427
|
-
content: "\f336";
|
|
2428
|
-
}
|
|
2429
|
-
[data-icon-set=uib-legacy][data-icon-name=pincode]::before {
|
|
2430
|
-
content: "\f337";
|
|
2431
|
-
}
|
|
2432
|
-
[data-icon-set=uib-legacy][data-icon-name=pir-7000]::before {
|
|
2433
|
-
content: "\f338";
|
|
2434
|
-
}
|
|
2435
|
-
[data-icon-set=uib-legacy][data-icon-name=plus]::before {
|
|
2436
|
-
content: "\f339";
|
|
2437
|
-
}
|
|
2438
|
-
[data-icon-set=uib-legacy][data-icon-name=pneumatic]::before {
|
|
2439
|
-
content: "\f33a";
|
|
2440
|
-
}
|
|
2441
|
-
[data-icon-set=uib-legacy][data-icon-name=polytron-7000]::before {
|
|
2442
|
-
content: "\f33b";
|
|
2443
|
-
}
|
|
2444
|
-
[data-icon-set=uib-legacy][data-icon-name=position]::before {
|
|
2445
|
-
content: "\f51a";
|
|
2446
|
-
}
|
|
2447
|
-
[data-icon-set=uib-legacy][data-icon-name=position-disabled]::before {
|
|
2448
|
-
content: "\f518";
|
|
2449
|
-
}
|
|
2450
|
-
[data-icon-set=uib-legacy][data-icon-name=position-searching]::before {
|
|
2451
|
-
content: "\f519";
|
|
2452
|
-
}
|
|
2453
|
-
[data-icon-set=uib-legacy][data-icon-name=power-guard]::before {
|
|
2454
|
-
content: "\f33c";
|
|
2455
|
-
}
|
|
2456
|
-
[data-icon-set=uib-legacy][data-icon-name=power-supply]::before {
|
|
2457
|
-
content: "\f340";
|
|
2458
|
-
}
|
|
2459
|
-
[data-icon-set=uib-legacy][data-icon-name=power-supply-restricted]::before {
|
|
2460
|
-
content: "\f33d";
|
|
2461
|
-
color: #FFE300;
|
|
2462
|
-
}
|
|
2463
|
-
[data-icon-set=uib-legacy][data-icon-name=power-supply-restricted]::after {
|
|
2464
|
-
content: "\f33e";
|
|
2465
|
-
}
|
|
2466
|
-
[data-icon-set=uib-legacy][data-icon-name=power-supply-restricted] span::before {
|
|
2467
|
-
content: "\f51b";
|
|
2468
|
-
color: #000000;
|
|
2469
|
-
}
|
|
2470
|
-
[data-icon-set=uib-legacy][data-icon-name=powerplant]::before {
|
|
2471
|
-
content: "\f341";
|
|
2472
|
-
}
|
|
2473
|
-
[data-icon-set=uib-legacy][data-icon-name=practice]::before {
|
|
2474
|
-
content: "\f343";
|
|
2475
|
-
}
|
|
2476
|
-
[data-icon-set=uib-legacy][data-icon-name=practice-hot]::before {
|
|
2477
|
-
content: "\f342";
|
|
2478
|
-
}
|
|
2479
|
-
[data-icon-set=uib-legacy][data-icon-name=prepressure-high]::before {
|
|
2480
|
-
content: "\f345";
|
|
2481
|
-
}
|
|
2482
|
-
[data-icon-set=uib-legacy][data-icon-name=prepressure-high]::after {
|
|
2483
|
-
content: "\f344";
|
|
2484
|
-
color: #F30303;
|
|
2485
|
-
}
|
|
2486
|
-
[data-icon-set=uib-legacy][data-icon-name=prepressure-low]::before {
|
|
2487
|
-
content: "\f346";
|
|
2488
|
-
color: #F30303;
|
|
2489
|
-
}
|
|
2490
|
-
[data-icon-set=uib-legacy][data-icon-name=prepressure-low]::after {
|
|
2491
|
-
content: "\f347";
|
|
2492
|
-
}
|
|
2493
|
-
[data-icon-set=uib-legacy][data-icon-name=prepressure-ok]::before {
|
|
2494
|
-
content: "\f348";
|
|
2495
|
-
color: #00DD31;
|
|
2496
|
-
}
|
|
2497
|
-
[data-icon-set=uib-legacy][data-icon-name=prepressure-ok]::after {
|
|
2498
|
-
content: "\f349";
|
|
2499
|
-
}
|
|
2500
|
-
[data-icon-set=uib-legacy][data-icon-name=prepressure-ok] span::before {
|
|
2501
|
-
content: "\f51c";
|
|
2502
|
-
color: #000000;
|
|
2503
|
-
}
|
|
2504
|
-
[data-icon-set=uib-legacy][data-icon-name=prepressure-pending]::before {
|
|
2505
|
-
content: "\f34b";
|
|
2506
|
-
}
|
|
2507
|
-
[data-icon-set=uib-legacy][data-icon-name=pressure-relief]::before {
|
|
2508
|
-
content: "\f34c";
|
|
2509
|
-
}
|
|
2510
|
-
[data-icon-set=uib-legacy][data-icon-name=previous]::before {
|
|
2511
|
-
content: "\f51d";
|
|
2512
|
-
}
|
|
2513
|
-
[data-icon-set=uib-legacy][data-icon-name=print]::before {
|
|
2514
|
-
content: "\f528";
|
|
2515
|
-
}
|
|
2516
|
-
[data-icon-set=uib-legacy][data-icon-name=print-configuration]::before {
|
|
2517
|
-
content: "\f51e";
|
|
2518
|
-
}
|
|
2519
|
-
[data-icon-set=uib-legacy][data-icon-name=print-error]::before {
|
|
2520
|
-
content: "\f521";
|
|
2521
|
-
}
|
|
2522
|
-
[data-icon-set=uib-legacy][data-icon-name=print-error]::after {
|
|
2523
|
-
content: "\f51f";
|
|
2524
|
-
color: #F30303;
|
|
2525
|
-
}
|
|
2526
|
-
[data-icon-set=uib-legacy][data-icon-name=print-error] span::before {
|
|
2527
|
-
content: "\f520";
|
|
2528
|
-
color: #FFF;
|
|
2529
|
-
}
|
|
2530
|
-
[data-icon-set=uib-legacy][data-icon-name=print-finished]::before {
|
|
2531
|
-
content: "\f522";
|
|
2532
|
-
}
|
|
2533
|
-
[data-icon-set=uib-legacy][data-icon-name=print-preview]::before {
|
|
2534
|
-
content: "\f523";
|
|
2535
|
-
}
|
|
2536
|
-
[data-icon-set=uib-legacy][data-icon-name=print-selection]::before {
|
|
2537
|
-
content: "\f524";
|
|
2538
|
-
}
|
|
2539
|
-
[data-icon-set=uib-legacy][data-icon-name=print-warning]::before {
|
|
2540
|
-
content: "\f525";
|
|
2541
|
-
color: #FFE300;
|
|
2542
|
-
}
|
|
2543
|
-
[data-icon-set=uib-legacy][data-icon-name=print-warning]::after {
|
|
2544
|
-
content: "\f526";
|
|
2545
|
-
color: #000000;
|
|
2546
|
-
}
|
|
2547
|
-
[data-icon-set=uib-legacy][data-icon-name=print-warning] span::before {
|
|
2548
|
-
content: "\f527";
|
|
2549
|
-
}
|
|
2550
|
-
[data-icon-set=uib-legacy][data-icon-name=process]::before {
|
|
2551
|
-
content: "\f34d";
|
|
2552
|
-
}
|
|
2553
|
-
[data-icon-set=uib-legacy][data-icon-name=product-finder]::before {
|
|
2554
|
-
content: "\f34e";
|
|
2555
|
-
}
|
|
2556
|
-
[data-icon-set=uib-legacy][data-icon-name=production]::before {
|
|
2557
|
-
content: "\f34f";
|
|
2558
|
-
}
|
|
2559
|
-
[data-icon-set=uib-legacy][data-icon-name=progress]::before {
|
|
2560
|
-
content: "\f352";
|
|
2561
|
-
}
|
|
2562
|
-
[data-icon-set=uib-legacy][data-icon-name=progress-circle]::before {
|
|
2563
|
-
content: "\f351";
|
|
2564
|
-
}
|
|
2565
|
-
[data-icon-set=uib-legacy][data-icon-name=progress-circle]::after {
|
|
2566
|
-
content: "\f529";
|
|
2567
|
-
color: #0074FF;
|
|
2568
|
-
}
|
|
2569
|
-
[data-icon-set=uib-legacy][data-icon-name=pulsar]::before {
|
|
2570
|
-
content: "\f353";
|
|
2571
|
-
}
|
|
2572
|
-
[data-icon-set=uib-legacy][data-icon-name=pump]::before {
|
|
2573
|
-
content: "\f35a";
|
|
2574
|
-
}
|
|
2575
|
-
[data-icon-set=uib-legacy][data-icon-name=pump-100-percent]::before {
|
|
2576
|
-
content: "\f354";
|
|
2577
|
-
}
|
|
2578
|
-
[data-icon-set=uib-legacy][data-icon-name=pump-25-percent]::before {
|
|
2579
|
-
content: "\f355";
|
|
2580
|
-
}
|
|
2581
|
-
[data-icon-set=uib-legacy][data-icon-name=pump-50-percent]::before {
|
|
2582
|
-
content: "\f356";
|
|
2583
|
-
}
|
|
2584
|
-
[data-icon-set=uib-legacy][data-icon-name=pump-75-percent]::before {
|
|
2585
|
-
content: "\f357";
|
|
2586
|
-
}
|
|
2587
|
-
[data-icon-set=uib-legacy][data-icon-name=pump-adapter-magnetic]::before {
|
|
2588
|
-
content: "\f358";
|
|
2589
|
-
}
|
|
2590
|
-
[data-icon-set=uib-legacy][data-icon-name=pump-low]::before {
|
|
2591
|
-
content: "\f359";
|
|
2592
|
-
}
|
|
2593
|
-
[data-icon-set=uib-legacy][data-icon-name=rack]::before {
|
|
2594
|
-
content: "\f35c";
|
|
2595
|
-
}
|
|
2596
|
-
[data-icon-set=uib-legacy][data-icon-name=rack-mobile]::before {
|
|
2597
|
-
content: "\f35b";
|
|
2598
|
-
}
|
|
2599
|
-
[data-icon-set=uib-legacy][data-icon-name=radiation-protection-device]::before {
|
|
2600
|
-
content: "\f35d";
|
|
2601
|
-
}
|
|
2602
|
-
[data-icon-set=uib-legacy][data-icon-name=radio-button-active]::before {
|
|
2603
|
-
content: "\f35e";
|
|
2604
|
-
color: #FFF;
|
|
2605
|
-
}
|
|
2606
|
-
[data-icon-set=uib-legacy][data-icon-name=radio-button-active]::after {
|
|
2607
|
-
content: "\f52a";
|
|
2608
|
-
color: #0074FF;
|
|
2609
|
-
}
|
|
2610
|
-
[data-icon-set=uib-legacy][data-icon-name=radio-button-default]::before {
|
|
2611
|
-
content: "\f360";
|
|
2612
|
-
}
|
|
2613
|
-
[data-icon-set=uib-legacy][data-icon-name=radiocircuit]::before {
|
|
2614
|
-
content: "\f361";
|
|
2615
|
-
}
|
|
2616
|
-
[data-icon-set=uib-legacy][data-icon-name=rebuild]::before {
|
|
2617
|
-
content: "\f362";
|
|
2618
|
-
}
|
|
2619
|
-
[data-icon-set=uib-legacy][data-icon-name=recording]::before {
|
|
2620
|
-
content: "\f52b";
|
|
2621
|
-
}
|
|
2622
|
-
[data-icon-set=uib-legacy][data-icon-name=recycling]::before {
|
|
2623
|
-
content: "\f363";
|
|
2624
|
-
}
|
|
2625
|
-
[data-icon-set=uib-legacy][data-icon-name=redo]::before {
|
|
2626
|
-
content: "\f52c";
|
|
2627
|
-
}
|
|
2628
|
-
[data-icon-set=uib-legacy][data-icon-name=regard-1000]::before {
|
|
2629
|
-
content: "\f364";
|
|
2630
|
-
}
|
|
2631
|
-
[data-icon-set=uib-legacy][data-icon-name=regard-3000]::before {
|
|
2632
|
-
content: "\f365";
|
|
2633
|
-
}
|
|
2634
|
-
[data-icon-set=uib-legacy][data-icon-name=relay-switch-closed]::before {
|
|
2635
|
-
content: "\f366";
|
|
2636
|
-
}
|
|
2637
|
-
[data-icon-set=uib-legacy][data-icon-name=relay-switch-open]::before {
|
|
2638
|
-
content: "\f367";
|
|
2639
|
-
}
|
|
2640
|
-
[data-icon-set=uib-legacy][data-icon-name=reload]::before {
|
|
2641
|
-
content: "\f52e";
|
|
2642
|
-
}
|
|
2643
|
-
[data-icon-set=uib-legacy][data-icon-name=reload-required]::before {
|
|
2644
|
-
content: "\f52d";
|
|
2645
|
-
}
|
|
2646
|
-
[data-icon-set=uib-legacy][data-icon-name=relocate]::before {
|
|
2647
|
-
content: "\f52f";
|
|
2648
|
-
}
|
|
2649
|
-
[data-icon-set=uib-legacy][data-icon-name=remote]::before {
|
|
2650
|
-
content: "\f369";
|
|
2651
|
-
}
|
|
2652
|
-
[data-icon-set=uib-legacy][data-icon-name=remote-transmission]::before {
|
|
2653
|
-
content: "\f368";
|
|
2654
|
-
}
|
|
2655
|
-
[data-icon-set=uib-legacy][data-icon-name=remove]::before {
|
|
2656
|
-
content: "\f36a";
|
|
2657
|
-
}
|
|
2658
|
-
[data-icon-set=uib-legacy][data-icon-name=reorganisation]::before {
|
|
2659
|
-
content: "\f36b";
|
|
2660
|
-
}
|
|
2661
|
-
[data-icon-set=uib-legacy][data-icon-name=resend]::before {
|
|
2662
|
-
content: "\f530";
|
|
2663
|
-
}
|
|
2664
|
-
[data-icon-set=uib-legacy][data-icon-name=reset]::before {
|
|
2665
|
-
content: "\f531";
|
|
2666
|
-
}
|
|
2667
|
-
[data-icon-set=uib-legacy][data-icon-name=resources]::before {
|
|
2668
|
-
content: "\f36c";
|
|
2669
|
-
}
|
|
2670
|
-
[data-icon-set=uib-legacy][data-icon-name=rfid]::before {
|
|
2671
|
-
content: "\f36d";
|
|
2672
|
-
}
|
|
2673
|
-
[data-icon-set=uib-legacy][data-icon-name=rise-time-error]::before {
|
|
2674
|
-
content: "\f370";
|
|
2675
|
-
}
|
|
2676
|
-
[data-icon-set=uib-legacy][data-icon-name=rise-time-error]::after {
|
|
2677
|
-
content: "\f36e";
|
|
2678
|
-
color: #F30303;
|
|
2679
|
-
}
|
|
2680
|
-
[data-icon-set=uib-legacy][data-icon-name=rise-time-error] span::before {
|
|
2681
|
-
content: "\f36f";
|
|
2682
|
-
color: #FFF;
|
|
2683
|
-
}
|
|
2684
|
-
[data-icon-set=uib-legacy][data-icon-name=roofing]::before {
|
|
2685
|
-
content: "\f371";
|
|
2686
|
-
}
|
|
2687
|
-
[data-icon-set=uib-legacy][data-icon-name=rope]::before {
|
|
2688
|
-
content: "\f372";
|
|
2689
|
-
}
|
|
2690
|
-
[data-icon-set=uib-legacy][data-icon-name=saddle-roof]::before {
|
|
2691
|
-
content: "\f373";
|
|
2692
|
-
}
|
|
2693
|
-
[data-icon-set=uib-legacy][data-icon-name=safer]::before {
|
|
2694
|
-
content: "\f374";
|
|
2695
|
-
}
|
|
2696
|
-
[data-icon-set=uib-legacy][data-icon-name=save]::before {
|
|
2697
|
-
content: "\f533";
|
|
2698
|
-
}
|
|
2699
|
-
[data-icon-set=uib-legacy][data-icon-name=save-as]::before {
|
|
2700
|
-
content: "\f532";
|
|
2701
|
-
}
|
|
2702
|
-
[data-icon-set=uib-legacy][data-icon-name=saw]::before {
|
|
2703
|
-
content: "\f375";
|
|
2704
|
-
}
|
|
2705
|
-
[data-icon-set=uib-legacy][data-icon-name=sbom]::before {
|
|
2706
|
-
content: "\f534";
|
|
2707
|
-
}
|
|
2708
|
-
[data-icon-set=uib-legacy][data-icon-name=scba]::before {
|
|
2709
|
-
content: "\f376";
|
|
2710
|
-
}
|
|
2711
|
-
[data-icon-set=uib-legacy][data-icon-name=scroll-grip]::before {
|
|
2712
|
-
content: "\f377";
|
|
2713
|
-
}
|
|
2714
|
-
[data-icon-set=uib-legacy][data-icon-name=scroll-page-down]::before {
|
|
2715
|
-
content: "\f378";
|
|
2716
|
-
}
|
|
2717
|
-
[data-icon-set=uib-legacy][data-icon-name=scroll-page-up]::before {
|
|
2718
|
-
content: "\f379";
|
|
2719
|
-
}
|
|
2720
|
-
[data-icon-set=uib-legacy][data-icon-name=scsr]::before {
|
|
2721
|
-
content: "\f37a";
|
|
2722
|
-
}
|
|
2723
|
-
[data-icon-set=uib-legacy][data-icon-name=search]::before {
|
|
2724
|
-
content: "\f53b";
|
|
2725
|
-
}
|
|
2726
|
-
[data-icon-set=uib-legacy][data-icon-name=search-activate]::before {
|
|
2727
|
-
content: "\f535";
|
|
2728
|
-
}
|
|
2729
|
-
[data-icon-set=uib-legacy][data-icon-name=search-close]::before {
|
|
2730
|
-
content: "\f536";
|
|
2731
|
-
}
|
|
2732
|
-
[data-icon-set=uib-legacy][data-icon-name=search-next]::before {
|
|
2733
|
-
content: "\f537";
|
|
2734
|
-
}
|
|
2735
|
-
[data-icon-set=uib-legacy][data-icon-name=search-previous]::before {
|
|
2736
|
-
content: "\f538";
|
|
2737
|
-
}
|
|
2738
|
-
[data-icon-set=uib-legacy][data-icon-name=search-save]::before {
|
|
2739
|
-
content: "\f539";
|
|
2740
|
-
}
|
|
2741
|
-
[data-icon-set=uib-legacy][data-icon-name=search-service]::before {
|
|
2742
|
-
content: "\f53a";
|
|
2743
|
-
}
|
|
2744
|
-
[data-icon-set=uib-legacy][data-icon-name=searching]::before {
|
|
2745
|
-
content: "\f53f";
|
|
2746
|
-
}
|
|
2747
|
-
[data-icon-set=uib-legacy][data-icon-name=searching-1]::before {
|
|
2748
|
-
content: "\f53c";
|
|
2749
|
-
}
|
|
2750
|
-
[data-icon-set=uib-legacy][data-icon-name=searching-2]::before {
|
|
2751
|
-
content: "\f53d";
|
|
2752
|
-
}
|
|
2753
|
-
[data-icon-set=uib-legacy][data-icon-name=searching-3]::before {
|
|
2754
|
-
content: "\f53e";
|
|
2755
|
-
}
|
|
2756
|
-
[data-icon-set=uib-legacy][data-icon-name=send]::before {
|
|
2757
|
-
content: "\f546";
|
|
2758
|
-
}
|
|
2759
|
-
[data-icon-set=uib-legacy][data-icon-name=send-error]::before {
|
|
2760
|
-
content: "\f542";
|
|
2761
|
-
}
|
|
2762
|
-
[data-icon-set=uib-legacy][data-icon-name=send-error]::after {
|
|
2763
|
-
content: "\f540";
|
|
2764
|
-
color: #F30303;
|
|
2765
|
-
}
|
|
2766
|
-
[data-icon-set=uib-legacy][data-icon-name=send-error] span::before {
|
|
2767
|
-
content: "\f541";
|
|
2768
|
-
color: #FFF;
|
|
2769
|
-
}
|
|
2770
|
-
[data-icon-set=uib-legacy][data-icon-name=send-success]::before {
|
|
2771
|
-
content: "\f545";
|
|
2772
|
-
}
|
|
2773
|
-
[data-icon-set=uib-legacy][data-icon-name=send-success]::after {
|
|
2774
|
-
content: "\f543";
|
|
2775
|
-
color: #00DD31;
|
|
2776
|
-
}
|
|
2777
|
-
[data-icon-set=uib-legacy][data-icon-name=send-success] span::before {
|
|
2778
|
-
content: "\f544";
|
|
2779
|
-
color: #000000;
|
|
2780
|
-
}
|
|
2781
|
-
[data-icon-set=uib-legacy][data-icon-name=sending]::before {
|
|
2782
|
-
content: "\f547";
|
|
2783
|
-
}
|
|
2784
|
-
[data-icon-set=uib-legacy][data-icon-name=sensor-100-percent]::before {
|
|
2785
|
-
content: "\f37b";
|
|
2786
|
-
}
|
|
2787
|
-
[data-icon-set=uib-legacy][data-icon-name=sensor-25-percent]::before {
|
|
2788
|
-
content: "\f37c";
|
|
2789
|
-
}
|
|
2790
|
-
[data-icon-set=uib-legacy][data-icon-name=sensor-50-percent]::before {
|
|
2791
|
-
content: "\f37d";
|
|
2792
|
-
}
|
|
2793
|
-
[data-icon-set=uib-legacy][data-icon-name=sensor-75-percent]::before {
|
|
2794
|
-
content: "\f37e";
|
|
2795
|
-
}
|
|
2796
|
-
[data-icon-set=uib-legacy][data-icon-name=sensor-catex]::before {
|
|
2797
|
-
content: "\f37f";
|
|
2798
|
-
}
|
|
2799
|
-
[data-icon-set=uib-legacy][data-icon-name=sensor-disabled]::before {
|
|
2800
|
-
content: "\f380";
|
|
2801
|
-
}
|
|
2802
|
-
[data-icon-set=uib-legacy][data-icon-name=sensor-ec]::before {
|
|
2803
|
-
content: "\f381";
|
|
2804
|
-
}
|
|
2805
|
-
[data-icon-set=uib-legacy][data-icon-name=sensor-error]::before {
|
|
2806
|
-
content: "\f384";
|
|
2807
|
-
}
|
|
2808
|
-
[data-icon-set=uib-legacy][data-icon-name=sensor-error]::after {
|
|
2809
|
-
content: "\f382";
|
|
2810
|
-
color: #F30303;
|
|
2811
|
-
}
|
|
2812
|
-
[data-icon-set=uib-legacy][data-icon-name=sensor-error] span::before {
|
|
2813
|
-
content: "\f383";
|
|
2814
|
-
color: #FFF;
|
|
2815
|
-
}
|
|
2816
|
-
[data-icon-set=uib-legacy][data-icon-name=sensor-information]::before {
|
|
2817
|
-
content: "\f385";
|
|
2818
|
-
}
|
|
2819
|
-
[data-icon-set=uib-legacy][data-icon-name=sensor-ir]::before {
|
|
2820
|
-
content: "\f386";
|
|
2821
|
-
}
|
|
2822
|
-
[data-icon-set=uib-legacy][data-icon-name=sensor-low]::before {
|
|
2823
|
-
content: "\f387";
|
|
2824
|
-
}
|
|
2825
|
-
[data-icon-set=uib-legacy][data-icon-name=sensor-overheat]::before {
|
|
2826
|
-
content: "\f388";
|
|
2827
|
-
}
|
|
2828
|
-
[data-icon-set=uib-legacy][data-icon-name=sensor-pid]::before {
|
|
2829
|
-
content: "\f389";
|
|
2830
|
-
}
|
|
2831
|
-
[data-icon-set=uib-legacy][data-icon-name=sensor-warning]::before {
|
|
2832
|
-
content: "\f38a";
|
|
2833
|
-
color: #FFE300;
|
|
2834
|
-
}
|
|
2835
|
-
[data-icon-set=uib-legacy][data-icon-name=sensor-warning]::after {
|
|
2836
|
-
content: "\f38b";
|
|
2837
|
-
}
|
|
2838
|
-
[data-icon-set=uib-legacy][data-icon-name=sensor-warning] span::before {
|
|
2839
|
-
content: "\f548";
|
|
2840
|
-
color: #000000;
|
|
2841
|
-
}
|
|
2842
|
-
[data-icon-set=uib-legacy][data-icon-name=sensors]::before {
|
|
2843
|
-
content: "\f38d";
|
|
2844
|
-
}
|
|
2845
|
-
[data-icon-set=uib-legacy][data-icon-name=sent]::before {
|
|
2846
|
-
content: "\f549";
|
|
2847
|
-
}
|
|
2848
|
-
[data-icon-set=uib-legacy][data-icon-name=service]::before {
|
|
2849
|
-
content: "\f54a";
|
|
2850
|
-
}
|
|
2851
|
-
[data-icon-set=uib-legacy][data-icon-name=settings]::before {
|
|
2852
|
-
content: "\f554";
|
|
2853
|
-
}
|
|
2854
|
-
[data-icon-set=uib-legacy][data-icon-name=settings-add]::before {
|
|
2855
|
-
content: "\f54b";
|
|
2856
|
-
}
|
|
2857
|
-
[data-icon-set=uib-legacy][data-icon-name=settings-edit]::before {
|
|
2858
|
-
content: "\f54c";
|
|
2859
|
-
}
|
|
2860
|
-
[data-icon-set=uib-legacy][data-icon-name=settings-enter]::before {
|
|
2861
|
-
content: "\f54d";
|
|
2862
|
-
}
|
|
2863
|
-
[data-icon-set=uib-legacy][data-icon-name=settings-leave]::before {
|
|
2864
|
-
content: "\f54e";
|
|
2865
|
-
}
|
|
2866
|
-
[data-icon-set=uib-legacy][data-icon-name=settings-remove]::before {
|
|
2867
|
-
content: "\f54f";
|
|
2868
|
-
}
|
|
2869
|
-
[data-icon-set=uib-legacy][data-icon-name=settings-reset]::before {
|
|
2870
|
-
content: "\f550";
|
|
2871
|
-
}
|
|
2872
|
-
[data-icon-set=uib-legacy][data-icon-name=settings-reset]::after {
|
|
2873
|
-
content: "\f551";
|
|
2874
|
-
}
|
|
2875
|
-
[data-icon-set=uib-legacy][data-icon-name=settings-reset] span::before {
|
|
2876
|
-
content: "\f552";
|
|
2877
|
-
color: #F30303;
|
|
2878
|
-
}
|
|
2879
|
-
[data-icon-set=uib-legacy][data-icon-name=settings-reset] span::after {
|
|
2880
|
-
content: "\f553";
|
|
2881
|
-
color: #FFF;
|
|
2882
|
-
}
|
|
2883
|
-
[data-icon-set=uib-legacy][data-icon-name=share]::before {
|
|
2884
|
-
content: "\f555";
|
|
2885
|
-
}
|
|
2886
|
-
[data-icon-set=uib-legacy][data-icon-name=shoppingcart]::before {
|
|
2887
|
-
content: "\f556";
|
|
2888
|
-
}
|
|
2889
|
-
[data-icon-set=uib-legacy][data-icon-name=shutdown]::before {
|
|
2890
|
-
content: "\f557";
|
|
2891
|
-
}
|
|
2892
|
-
[data-icon-set=uib-legacy][data-icon-name=signal]::before {
|
|
2893
|
-
content: "\f393";
|
|
2894
|
-
}
|
|
2895
|
-
[data-icon-set=uib-legacy][data-icon-name=signal-0-percent]::before {
|
|
2896
|
-
content: "\f38e";
|
|
2897
|
-
}
|
|
2898
|
-
[data-icon-set=uib-legacy][data-icon-name=signal-100-percent]::before {
|
|
2899
|
-
content: "\f38f";
|
|
2900
|
-
}
|
|
2901
|
-
[data-icon-set=uib-legacy][data-icon-name=signal-25-percent]::before {
|
|
2902
|
-
content: "\f390";
|
|
2903
|
-
}
|
|
2904
|
-
[data-icon-set=uib-legacy][data-icon-name=signal-50-percent]::before {
|
|
2905
|
-
content: "\f391";
|
|
2906
|
-
}
|
|
2907
|
-
[data-icon-set=uib-legacy][data-icon-name=signal-75-percent]::before {
|
|
2908
|
-
content: "\f392";
|
|
2909
|
-
}
|
|
2910
|
-
[data-icon-set=uib-legacy][data-icon-name=simulation]::before {
|
|
2911
|
-
content: "\f394";
|
|
2912
|
-
}
|
|
2913
|
-
[data-icon-set=uib-legacy][data-icon-name=sketch]::before {
|
|
2914
|
-
content: "\f395";
|
|
2915
|
-
}
|
|
2916
|
-
[data-icon-set=uib-legacy][data-icon-name=snapshot]::before {
|
|
2917
|
-
content: "\f558";
|
|
2918
|
-
}
|
|
2919
|
-
[data-icon-set=uib-legacy][data-icon-name=sort-ascending]::before {
|
|
2920
|
-
content: "\f559";
|
|
2921
|
-
}
|
|
2922
|
-
[data-icon-set=uib-legacy][data-icon-name=sort-descending]::before {
|
|
2923
|
-
content: "\f55a";
|
|
2924
|
-
}
|
|
2925
|
-
[data-icon-set=uib-legacy][data-icon-name=sos]::before {
|
|
2926
|
-
content: "\f397";
|
|
2927
|
-
}
|
|
2928
|
-
[data-icon-set=uib-legacy][data-icon-name=sos-no-telemetry]::before {
|
|
2929
|
-
content: "\f396";
|
|
2930
|
-
}
|
|
2931
|
-
[data-icon-set=uib-legacy][data-icon-name=spare-parts]::before {
|
|
2932
|
-
content: "\f398";
|
|
2933
|
-
}
|
|
2934
|
-
[data-icon-set=uib-legacy][data-icon-name=speed]::before {
|
|
2935
|
-
content: "\f399";
|
|
2936
|
-
}
|
|
2937
|
-
[data-icon-set=uib-legacy][data-icon-name=sprinkler]::before {
|
|
2938
|
-
content: "\f39a";
|
|
2939
|
-
}
|
|
2940
|
-
[data-icon-set=uib-legacy][data-icon-name=standby]::before {
|
|
2941
|
-
content: "\f55b";
|
|
2942
|
-
}
|
|
2943
|
-
[data-icon-set=uib-legacy][data-icon-name=start-flush]::before {
|
|
2944
|
-
content: "\f39b";
|
|
2945
|
-
}
|
|
2946
|
-
[data-icon-set=uib-legacy][data-icon-name=storage-box]::before {
|
|
2947
|
-
content: "\f39c";
|
|
2948
|
-
}
|
|
2949
|
-
[data-icon-set=uib-legacy][data-icon-name=substance]::before {
|
|
2950
|
-
content: "\f39d";
|
|
2951
|
-
}
|
|
2952
|
-
[data-icon-set=uib-legacy][data-icon-name=substances]::before {
|
|
2953
|
-
content: "\f39e";
|
|
2954
|
-
}
|
|
2955
|
-
[data-icon-set=uib-legacy][data-icon-name=suffocation-a1]::before {
|
|
2956
|
-
content: "\f3a1";
|
|
2957
|
-
color: #FFE300;
|
|
2958
|
-
}
|
|
2959
|
-
[data-icon-set=uib-legacy][data-icon-name=suffocation-a1]::after {
|
|
2960
|
-
content: "\f55d";
|
|
2961
|
-
color: #000000;
|
|
2962
|
-
}
|
|
2963
|
-
[data-icon-set=uib-legacy][data-icon-name=suffocation-a1] span::before {
|
|
2964
|
-
content: "\f3a3";
|
|
2965
|
-
}
|
|
2966
|
-
[data-icon-set=uib-legacy][data-icon-name=suffocation-a2]::before {
|
|
2967
|
-
content: "\f3a4";
|
|
2968
|
-
color: #FFE300;
|
|
2969
|
-
}
|
|
2970
|
-
[data-icon-set=uib-legacy][data-icon-name=suffocation-a2]::after {
|
|
2971
|
-
content: "\f55e";
|
|
2972
|
-
color: #000000;
|
|
2973
|
-
}
|
|
2974
|
-
[data-icon-set=uib-legacy][data-icon-name=suffocation-a2] span::before {
|
|
2975
|
-
content: "\f3a6";
|
|
2976
|
-
}
|
|
2977
|
-
[data-icon-set=uib-legacy][data-icon-name=suffocation-stel]::before {
|
|
2978
|
-
content: "\f3a7";
|
|
2979
|
-
color: #FFE300;
|
|
2980
|
-
}
|
|
2981
|
-
[data-icon-set=uib-legacy][data-icon-name=suffocation-stel]::after {
|
|
2982
|
-
content: "\f55f";
|
|
2983
|
-
color: #000000;
|
|
2984
|
-
}
|
|
2985
|
-
[data-icon-set=uib-legacy][data-icon-name=suffocation-stel] span::before {
|
|
2986
|
-
content: "\f3a9";
|
|
2987
|
-
}
|
|
2988
|
-
[data-icon-set=uib-legacy][data-icon-name=suffocation-twa]::before {
|
|
2989
|
-
content: "\f3aa";
|
|
2990
|
-
color: #FFE300;
|
|
2991
|
-
}
|
|
2992
|
-
[data-icon-set=uib-legacy][data-icon-name=suffocation-twa]::after {
|
|
2993
|
-
content: "\f3ab";
|
|
2994
|
-
}
|
|
2995
|
-
[data-icon-set=uib-legacy][data-icon-name=suffocation-twa] span::before {
|
|
2996
|
-
content: "\f560";
|
|
2997
|
-
color: #000000;
|
|
2998
|
-
}
|
|
2999
|
-
[data-icon-set=uib-legacy][data-icon-name=suffocation]::before {
|
|
3000
|
-
content: "\f39f";
|
|
3001
|
-
color: #FFE300;
|
|
3002
|
-
}
|
|
3003
|
-
[data-icon-set=uib-legacy][data-icon-name=suffocation]::after {
|
|
3004
|
-
content: "\f55c";
|
|
3005
|
-
color: #000000;
|
|
3006
|
-
}
|
|
3007
|
-
[data-icon-set=uib-legacy][data-icon-name=synchronize]::before {
|
|
3008
|
-
content: "\f561";
|
|
3009
|
-
}
|
|
3010
|
-
[data-icon-set=uib-legacy][data-icon-name=system]::before {
|
|
3011
|
-
content: "\f3b3";
|
|
3012
|
-
}
|
|
3013
|
-
[data-icon-set=uib-legacy][data-icon-name=system-storage-error]::before {
|
|
3014
|
-
content: "\f3af";
|
|
3015
|
-
}
|
|
3016
|
-
[data-icon-set=uib-legacy][data-icon-name=system-storage-error]::after {
|
|
3017
|
-
content: "\f3ad";
|
|
3018
|
-
color: #F30303;
|
|
3019
|
-
}
|
|
3020
|
-
[data-icon-set=uib-legacy][data-icon-name=system-storage-error] span::before {
|
|
3021
|
-
content: "\f3ae";
|
|
3022
|
-
color: #FFF;
|
|
3023
|
-
}
|
|
3024
|
-
[data-icon-set=uib-legacy][data-icon-name=system-storage-warning]::before {
|
|
3025
|
-
content: "\f3b2";
|
|
3026
|
-
}
|
|
3027
|
-
[data-icon-set=uib-legacy][data-icon-name=system-storage-warning]::after {
|
|
3028
|
-
content: "\f562";
|
|
3029
|
-
color: #000000;
|
|
3030
|
-
}
|
|
3031
|
-
[data-icon-set=uib-legacy][data-icon-name=system-storage-warning] span::before {
|
|
3032
|
-
content: "\f3b1";
|
|
3033
|
-
color: #FFE300;
|
|
3034
|
-
}
|
|
3035
|
-
[data-icon-set=uib-legacy][data-icon-name=table]::before {
|
|
3036
|
-
content: "\f3b4";
|
|
3037
|
-
}
|
|
3038
|
-
[data-icon-set=uib-legacy][data-icon-name=tablet]::before {
|
|
3039
|
-
content: "\f3b5";
|
|
3040
|
-
}
|
|
3041
|
-
[data-icon-set=uib-legacy][data-icon-name=tag]::before {
|
|
3042
|
-
content: "\f3b6";
|
|
3043
|
-
}
|
|
3044
|
-
[data-icon-set=uib-legacy][data-icon-name=telemetry]::before {
|
|
3045
|
-
content: "\f3c2";
|
|
3046
|
-
}
|
|
3047
|
-
[data-icon-set=uib-legacy][data-icon-name=telemetry-active]::before {
|
|
3048
|
-
content: "\f3b9";
|
|
3049
|
-
}
|
|
3050
|
-
[data-icon-set=uib-legacy][data-icon-name=telemetry-active]::after {
|
|
3051
|
-
content: "\f3b7";
|
|
3052
|
-
color: #00DD31;
|
|
3053
|
-
}
|
|
3054
|
-
[data-icon-set=uib-legacy][data-icon-name=telemetry-active] span::before {
|
|
3055
|
-
content: "\f563";
|
|
3056
|
-
color: #000000;
|
|
3057
|
-
}
|
|
3058
|
-
[data-icon-set=uib-legacy][data-icon-name=telemetry-disabled]::before {
|
|
3059
|
-
content: "\f3ba";
|
|
3060
|
-
}
|
|
3061
|
-
[data-icon-set=uib-legacy][data-icon-name=telemetry-error]::before {
|
|
3062
|
-
content: "\f3bd";
|
|
3063
|
-
}
|
|
3064
|
-
[data-icon-set=uib-legacy][data-icon-name=telemetry-error]::after {
|
|
3065
|
-
content: "\f3bb";
|
|
3066
|
-
color: #F30303;
|
|
3067
|
-
}
|
|
3068
|
-
[data-icon-set=uib-legacy][data-icon-name=telemetry-error] span::before {
|
|
3069
|
-
content: "\f3bc";
|
|
3070
|
-
color: #FFF;
|
|
3071
|
-
}
|
|
3072
|
-
[data-icon-set=uib-legacy][data-icon-name=telemetry-search]::before {
|
|
3073
|
-
content: "\f3be";
|
|
3074
|
-
}
|
|
3075
|
-
[data-icon-set=uib-legacy][data-icon-name=telemetry-warning]::before {
|
|
3076
|
-
content: "\f3c1";
|
|
3077
|
-
}
|
|
3078
|
-
[data-icon-set=uib-legacy][data-icon-name=telemetry-warning]::after {
|
|
3079
|
-
content: "\f3bf";
|
|
3080
|
-
color: #FFE300;
|
|
3081
|
-
}
|
|
3082
|
-
[data-icon-set=uib-legacy][data-icon-name=telemetry-warning] span::before {
|
|
3083
|
-
content: "\f564";
|
|
3084
|
-
color: #000000;
|
|
3085
|
-
}
|
|
3086
|
-
[data-icon-set=uib-legacy][data-icon-name=temperature-error]::before {
|
|
3087
|
-
content: "\f3c5";
|
|
3088
|
-
}
|
|
3089
|
-
[data-icon-set=uib-legacy][data-icon-name=temperature-error]::after {
|
|
3090
|
-
content: "\f3c3";
|
|
3091
|
-
color: #F30303;
|
|
3092
|
-
}
|
|
3093
|
-
[data-icon-set=uib-legacy][data-icon-name=temperature-error] span::before {
|
|
3094
|
-
content: "\f3c4";
|
|
3095
|
-
color: #FFF;
|
|
3096
|
-
}
|
|
3097
|
-
[data-icon-set=uib-legacy][data-icon-name=temperature-high]::before {
|
|
3098
|
-
content: "\f3c6";
|
|
3099
|
-
}
|
|
3100
|
-
[data-icon-set=uib-legacy][data-icon-name=temperature-low]::before {
|
|
3101
|
-
content: "\f3c7";
|
|
3102
|
-
}
|
|
3103
|
-
[data-icon-set=uib-legacy][data-icon-name=temperature-warning]::before {
|
|
3104
|
-
content: "\f3c8";
|
|
3105
|
-
}
|
|
3106
|
-
[data-icon-set=uib-legacy][data-icon-name=temperature-warning]::after {
|
|
3107
|
-
content: "\f565";
|
|
3108
|
-
color: #FFE300;
|
|
3109
|
-
}
|
|
3110
|
-
[data-icon-set=uib-legacy][data-icon-name=temperature-warning] span::before {
|
|
3111
|
-
content: "\f566";
|
|
3112
|
-
color: #000000;
|
|
3113
|
-
}
|
|
3114
|
-
[data-icon-set=uib-legacy][data-icon-name=test]::before {
|
|
3115
|
-
content: "\f3d1";
|
|
3116
|
-
}
|
|
3117
|
-
[data-icon-set=uib-legacy][data-icon-name=test-edit]::before {
|
|
3118
|
-
content: "\f3c9";
|
|
3119
|
-
}
|
|
3120
|
-
[data-icon-set=uib-legacy][data-icon-name=test-eq]::before {
|
|
3121
|
-
content: "\f3cb";
|
|
3122
|
-
}
|
|
3123
|
-
[data-icon-set=uib-legacy][data-icon-name=test-eq-connection]::before {
|
|
3124
|
-
content: "\f3ca";
|
|
3125
|
-
}
|
|
3126
|
-
[data-icon-set=uib-legacy][data-icon-name=test-error]::before {
|
|
3127
|
-
content: "\f3ce";
|
|
3128
|
-
}
|
|
3129
|
-
[data-icon-set=uib-legacy][data-icon-name=test-error]::after {
|
|
3130
|
-
content: "\f3cc";
|
|
3131
|
-
color: #F30303;
|
|
3132
|
-
}
|
|
3133
|
-
[data-icon-set=uib-legacy][data-icon-name=test-error] span::before {
|
|
3134
|
-
content: "\f3cd";
|
|
3135
|
-
color: #FFF;
|
|
3136
|
-
}
|
|
3137
|
-
[data-icon-set=uib-legacy][data-icon-name=test-note]::before {
|
|
3138
|
-
content: "\f3cf";
|
|
3139
|
-
}
|
|
3140
|
-
[data-icon-set=uib-legacy][data-icon-name=test-results]::before {
|
|
3141
|
-
content: "\f3d0";
|
|
3142
|
-
}
|
|
3143
|
-
[data-icon-set=uib-legacy][data-icon-name=testing]::before {
|
|
3144
|
-
content: "\f3d2";
|
|
3145
|
-
}
|
|
3146
|
-
[data-icon-set=uib-legacy][data-icon-name=theme-switch]::before {
|
|
3147
|
-
content: "\f3d3";
|
|
3148
|
-
}
|
|
3149
|
-
[data-icon-set=uib-legacy][data-icon-name=thermal-alarm]::before {
|
|
3150
|
-
content: "\f3d6";
|
|
3151
|
-
}
|
|
3152
|
-
[data-icon-set=uib-legacy][data-icon-name=thermal-alarm]::after {
|
|
3153
|
-
content: "\f3d4";
|
|
3154
|
-
color: #FFE300;
|
|
3155
|
-
}
|
|
3156
|
-
[data-icon-set=uib-legacy][data-icon-name=thermal-alarm] span::before {
|
|
3157
|
-
content: "\f567";
|
|
3158
|
-
color: #000000;
|
|
3159
|
-
}
|
|
3160
|
-
[data-icon-set=uib-legacy][data-icon-name=tic]::before {
|
|
3161
|
-
content: "\f3e6";
|
|
3162
|
-
}
|
|
3163
|
-
[data-icon-set=uib-legacy][data-icon-name=tic-connection-rejected]::before {
|
|
3164
|
-
content: "\f3d9";
|
|
3165
|
-
}
|
|
3166
|
-
[data-icon-set=uib-legacy][data-icon-name=tic-connection-rejected]::after {
|
|
3167
|
-
content: "\f3d7";
|
|
3168
|
-
color: #F30303;
|
|
3169
|
-
}
|
|
3170
|
-
[data-icon-set=uib-legacy][data-icon-name=tic-connection-rejected] span::before {
|
|
3171
|
-
content: "\f3d8";
|
|
3172
|
-
color: #FFF;
|
|
3173
|
-
}
|
|
3174
|
-
[data-icon-set=uib-legacy][data-icon-name=tic-connection-success]::before {
|
|
3175
|
-
content: "\f3dc";
|
|
3176
|
-
}
|
|
3177
|
-
[data-icon-set=uib-legacy][data-icon-name=tic-connection-success]::after {
|
|
3178
|
-
content: "\f3da";
|
|
3179
|
-
color: #00DD31;
|
|
3180
|
-
}
|
|
3181
|
-
[data-icon-set=uib-legacy][data-icon-name=tic-connection-success] span::before {
|
|
3182
|
-
content: "\f568";
|
|
3183
|
-
color: #000000;
|
|
3184
|
-
}
|
|
3185
|
-
[data-icon-set=uib-legacy][data-icon-name=tic-failed]::before {
|
|
3186
|
-
content: "\f3df";
|
|
3187
|
-
}
|
|
3188
|
-
[data-icon-set=uib-legacy][data-icon-name=tic-failed]::after {
|
|
3189
|
-
content: "\f3dd";
|
|
3190
|
-
color: #F30303;
|
|
3191
|
-
}
|
|
3192
|
-
[data-icon-set=uib-legacy][data-icon-name=tic-failed] span::before {
|
|
3193
|
-
content: "\f3de";
|
|
3194
|
-
color: #FFF;
|
|
3195
|
-
}
|
|
3196
|
-
[data-icon-set=uib-legacy][data-icon-name=tic-pairing-failed]::before {
|
|
3197
|
-
content: "\f3e2";
|
|
3198
|
-
}
|
|
3199
|
-
[data-icon-set=uib-legacy][data-icon-name=tic-pairing-failed]::after {
|
|
3200
|
-
content: "\f3e0";
|
|
3201
|
-
color: #F30303;
|
|
3202
|
-
}
|
|
3203
|
-
[data-icon-set=uib-legacy][data-icon-name=tic-pairing-failed] span::before {
|
|
3204
|
-
content: "\f3e1";
|
|
3205
|
-
color: #FFF;
|
|
3206
|
-
}
|
|
3207
|
-
[data-icon-set=uib-legacy][data-icon-name=tic-successful]::before {
|
|
3208
|
-
content: "\f3e5";
|
|
3209
|
-
}
|
|
3210
|
-
[data-icon-set=uib-legacy][data-icon-name=tic-successful]::after {
|
|
3211
|
-
content: "\f3e3";
|
|
3212
|
-
color: #00DD31;
|
|
3213
|
-
}
|
|
3214
|
-
[data-icon-set=uib-legacy][data-icon-name=tic-successful] span::before {
|
|
3215
|
-
content: "\f569";
|
|
3216
|
-
color: #000000;
|
|
3217
|
-
}
|
|
3218
|
-
[data-icon-set=uib-legacy][data-icon-name=tile-menu]::before {
|
|
3219
|
-
content: "\f56a";
|
|
3220
|
-
}
|
|
3221
|
-
[data-icon-set=uib-legacy][data-icon-name=time]::before {
|
|
3222
|
-
content: "\f56e";
|
|
3223
|
-
}
|
|
3224
|
-
[data-icon-set=uib-legacy][data-icon-name=time-compress]::before {
|
|
3225
|
-
content: "\f3e7";
|
|
3226
|
-
}
|
|
3227
|
-
[data-icon-set=uib-legacy][data-icon-name=time-of-whistle]::before {
|
|
3228
|
-
content: "\f3e8";
|
|
3229
|
-
}
|
|
3230
|
-
[data-icon-set=uib-legacy][data-icon-name=time-stretch]::before {
|
|
3231
|
-
content: "\f3e9";
|
|
3232
|
-
}
|
|
3233
|
-
[data-icon-set=uib-legacy][data-icon-name=time-to-retreat]::before {
|
|
3234
|
-
content: "\f3ec";
|
|
3235
|
-
}
|
|
3236
|
-
[data-icon-set=uib-legacy][data-icon-name=time-to-retreat]::after {
|
|
3237
|
-
content: "\f3ea";
|
|
3238
|
-
color: #FFE300;
|
|
3239
|
-
}
|
|
3240
|
-
[data-icon-set=uib-legacy][data-icon-name=time-to-retreat] span::before {
|
|
3241
|
-
content: "\f3eb";
|
|
3242
|
-
color: #002766;
|
|
3243
|
-
}
|
|
3244
|
-
[data-icon-set=uib-legacy][data-icon-name=time-to-whistle]::before {
|
|
3245
|
-
content: "\f56d";
|
|
3246
|
-
}
|
|
3247
|
-
[data-icon-set=uib-legacy][data-icon-name=time-to-whistle]::after {
|
|
3248
|
-
content: "\f56b";
|
|
3249
|
-
color: #FFE300;
|
|
3250
|
-
}
|
|
3251
|
-
[data-icon-set=uib-legacy][data-icon-name=time-to-whistle] span::before {
|
|
3252
|
-
content: "\f56c";
|
|
3253
|
-
color: #002766;
|
|
3254
|
-
}
|
|
3255
|
-
[data-icon-set=uib-legacy][data-icon-name=time-window]::before {
|
|
3256
|
-
content: "\f3f0";
|
|
3257
|
-
}
|
|
3258
|
-
[data-icon-set=uib-legacy][data-icon-name=timeline-view]::before {
|
|
3259
|
-
content: "\f3f1";
|
|
3260
|
-
}
|
|
3261
|
-
[data-icon-set=uib-legacy][data-icon-name=timer]::before {
|
|
3262
|
-
content: "\f3f4";
|
|
3263
|
-
}
|
|
3264
|
-
[data-icon-set=uib-legacy][data-icon-name=timer-elapsed]::before {
|
|
3265
|
-
content: "\f3f2";
|
|
3266
|
-
}
|
|
3267
|
-
[data-icon-set=uib-legacy][data-icon-name=timer-start]::before {
|
|
3268
|
-
content: "\f3f3";
|
|
3269
|
-
}
|
|
3270
|
-
[data-icon-set=uib-legacy][data-icon-name=toggle-button-active]::before {
|
|
3271
|
-
content: "\f56f";
|
|
3272
|
-
color: #0074FF;
|
|
3273
|
-
}
|
|
3274
|
-
[data-icon-set=uib-legacy][data-icon-name=toggle-button-default]::before {
|
|
3275
|
-
content: "\f3f6";
|
|
3276
|
-
}
|
|
3277
|
-
[data-icon-set=uib-legacy][data-icon-name=top-level]::before {
|
|
3278
|
-
content: "\f3f7";
|
|
3279
|
-
}
|
|
3280
|
-
[data-icon-set=uib-legacy][data-icon-name=topology]::before {
|
|
3281
|
-
content: "\f3f8";
|
|
3282
|
-
}
|
|
3283
|
-
[data-icon-set=uib-legacy][data-icon-name=total-care]::before {
|
|
3284
|
-
content: "\f3f9";
|
|
3285
|
-
}
|
|
3286
|
-
[data-icon-set=uib-legacy][data-icon-name=toxic-a1]::before {
|
|
3287
|
-
content: "\f3fc";
|
|
3288
|
-
color: #FFE300;
|
|
3289
|
-
}
|
|
3290
|
-
[data-icon-set=uib-legacy][data-icon-name=toxic-a1]::after {
|
|
3291
|
-
content: "\f3fd";
|
|
3292
|
-
}
|
|
3293
|
-
[data-icon-set=uib-legacy][data-icon-name=toxic-a1] span::before {
|
|
3294
|
-
content: "\f571";
|
|
3295
|
-
color: #000000;
|
|
3296
|
-
}
|
|
3297
|
-
[data-icon-set=uib-legacy][data-icon-name=toxic-a2]::before {
|
|
3298
|
-
content: "\f3ff";
|
|
3299
|
-
color: #FFE300;
|
|
3300
|
-
}
|
|
3301
|
-
[data-icon-set=uib-legacy][data-icon-name=toxic-a2]::after {
|
|
3302
|
-
content: "\f400";
|
|
3303
|
-
}
|
|
3304
|
-
[data-icon-set=uib-legacy][data-icon-name=toxic-a2] span::before {
|
|
3305
|
-
content: "\f572";
|
|
3306
|
-
color: #000000;
|
|
3307
|
-
}
|
|
3308
|
-
[data-icon-set=uib-legacy][data-icon-name=toxic-stel]::before {
|
|
3309
|
-
content: "\f404";
|
|
3310
|
-
}
|
|
3311
|
-
[data-icon-set=uib-legacy][data-icon-name=toxic-stel]::after {
|
|
3312
|
-
content: "\f402";
|
|
3313
|
-
color: #FFE300;
|
|
3314
|
-
}
|
|
3315
|
-
[data-icon-set=uib-legacy][data-icon-name=toxic-stel] span::before {
|
|
3316
|
-
content: "\f573";
|
|
3317
|
-
color: #000000;
|
|
3318
|
-
}
|
|
3319
|
-
[data-icon-set=uib-legacy][data-icon-name=toxic-twa]::before {
|
|
3320
|
-
content: "\f405";
|
|
3321
|
-
color: #FFE300;
|
|
3322
|
-
}
|
|
3323
|
-
[data-icon-set=uib-legacy][data-icon-name=toxic-twa]::after {
|
|
3324
|
-
content: "\f406";
|
|
3325
|
-
}
|
|
3326
|
-
[data-icon-set=uib-legacy][data-icon-name=toxic-twa] span::before {
|
|
3327
|
-
content: "\f574";
|
|
3328
|
-
color: #000000;
|
|
3329
|
-
}
|
|
3330
|
-
[data-icon-set=uib-legacy][data-icon-name=toxic]::before {
|
|
3331
|
-
content: "\f3fa";
|
|
3332
|
-
color: #FFE300;
|
|
3333
|
-
}
|
|
3334
|
-
[data-icon-set=uib-legacy][data-icon-name=toxic]::after {
|
|
3335
|
-
content: "\f570";
|
|
3336
|
-
color: #000000;
|
|
3337
|
-
}
|
|
3338
|
-
[data-icon-set=uib-legacy][data-icon-name=trailer]::before {
|
|
3339
|
-
content: "\f408";
|
|
3340
|
-
}
|
|
3341
|
-
[data-icon-set=uib-legacy][data-icon-name=truck]::before {
|
|
3342
|
-
content: "\f409";
|
|
3343
|
-
}
|
|
3344
|
-
[data-icon-set=uib-legacy][data-icon-name=tube]::before {
|
|
3345
|
-
content: "\f40c";
|
|
3346
|
-
}
|
|
3347
|
-
[data-icon-set=uib-legacy][data-icon-name=tube-off]::before {
|
|
3348
|
-
content: "\f40a";
|
|
3349
|
-
}
|
|
3350
|
-
[data-icon-set=uib-legacy][data-icon-name=tube-on]::before {
|
|
3351
|
-
content: "\f40b";
|
|
3352
|
-
}
|
|
3353
|
-
[data-icon-set=uib-legacy][data-icon-name=ucf-6000-9000]::before {
|
|
3354
|
-
content: "\f40d";
|
|
3355
|
-
}
|
|
3356
|
-
[data-icon-set=uib-legacy][data-icon-name=underrange]::before {
|
|
3357
|
-
content: "\f412";
|
|
3358
|
-
}
|
|
3359
|
-
[data-icon-set=uib-legacy][data-icon-name=underrange-error]::before {
|
|
3360
|
-
content: "\f410";
|
|
3361
|
-
}
|
|
3362
|
-
[data-icon-set=uib-legacy][data-icon-name=underrange-error]::after {
|
|
3363
|
-
content: "\f40e";
|
|
3364
|
-
color: #F30303;
|
|
3365
|
-
}
|
|
3366
|
-
[data-icon-set=uib-legacy][data-icon-name=underrange-error] span::before {
|
|
3367
|
-
content: "\f40f";
|
|
3368
|
-
color: #FFF;
|
|
3369
|
-
}
|
|
3370
|
-
[data-icon-set=uib-legacy][data-icon-name=underrange-warning]::before {
|
|
3371
|
-
content: "\f411";
|
|
3372
|
-
}
|
|
3373
|
-
[data-icon-set=uib-legacy][data-icon-name=underrange-warning]::after {
|
|
3374
|
-
content: "\f575";
|
|
3375
|
-
color: #FFE300;
|
|
3376
|
-
}
|
|
3377
|
-
[data-icon-set=uib-legacy][data-icon-name=underrange-warning] span::before {
|
|
3378
|
-
content: "\f576";
|
|
3379
|
-
color: #000000;
|
|
3380
|
-
}
|
|
3381
|
-
[data-icon-set=uib-legacy][data-icon-name=undo]::before {
|
|
3382
|
-
content: "\f577";
|
|
3383
|
-
}
|
|
3384
|
-
[data-icon-set=uib-legacy][data-icon-name=unlock]::before {
|
|
3385
|
-
content: "\f578";
|
|
3386
|
-
}
|
|
3387
|
-
[data-icon-set=uib-legacy][data-icon-name=upload]::before {
|
|
3388
|
-
content: "\f579";
|
|
3389
|
-
}
|
|
3390
|
-
[data-icon-set=uib-legacy][data-icon-name=user]::before {
|
|
3391
|
-
content: "\f597";
|
|
3392
|
-
}
|
|
3393
|
-
[data-icon-set=uib-legacy][data-icon-name=user-administration]::before {
|
|
3394
|
-
content: "\f57a";
|
|
3395
|
-
}
|
|
3396
|
-
[data-icon-set=uib-legacy][data-icon-name=user-administrator]::before {
|
|
3397
|
-
content: "\f57b";
|
|
3398
|
-
}
|
|
3399
|
-
[data-icon-set=uib-legacy][data-icon-name=user-edit]::before {
|
|
3400
|
-
content: "\f57c";
|
|
3401
|
-
}
|
|
3402
|
-
[data-icon-set=uib-legacy][data-icon-name=user-engineer]::before {
|
|
3403
|
-
content: "\f57d";
|
|
3404
|
-
}
|
|
3405
|
-
[data-icon-set=uib-legacy][data-icon-name=user-group]::before {
|
|
3406
|
-
content: "\f57f";
|
|
3407
|
-
}
|
|
3408
|
-
[data-icon-set=uib-legacy][data-icon-name=user-group-administration]::before {
|
|
3409
|
-
content: "\f57e";
|
|
3410
|
-
}
|
|
3411
|
-
[data-icon-set=uib-legacy][data-icon-name=user-id]::before {
|
|
3412
|
-
content: "\f589";
|
|
3413
|
-
}
|
|
3414
|
-
[data-icon-set=uib-legacy][data-icon-name=user-id-error]::before {
|
|
3415
|
-
content: "\f580";
|
|
3416
|
-
color: #F30303;
|
|
3417
|
-
}
|
|
3418
|
-
[data-icon-set=uib-legacy][data-icon-name=user-id-error]::after {
|
|
3419
|
-
content: "\f581";
|
|
3420
|
-
}
|
|
3421
|
-
[data-icon-set=uib-legacy][data-icon-name=user-id-error] span::before {
|
|
3422
|
-
content: "\f582";
|
|
3423
|
-
color: #FFF;
|
|
3424
|
-
}
|
|
3425
|
-
[data-icon-set=uib-legacy][data-icon-name=user-id-invalid]::before {
|
|
3426
|
-
content: "\f583";
|
|
3427
|
-
}
|
|
3428
|
-
[data-icon-set=uib-legacy][data-icon-name=user-id-query]::before {
|
|
3429
|
-
content: "\f584";
|
|
3430
|
-
}
|
|
3431
|
-
[data-icon-set=uib-legacy][data-icon-name=user-id-reading]::before {
|
|
3432
|
-
content: "\f585";
|
|
3433
|
-
}
|
|
3434
|
-
[data-icon-set=uib-legacy][data-icon-name=user-id-ready]::before {
|
|
3435
|
-
content: "\f588";
|
|
3436
|
-
}
|
|
3437
|
-
[data-icon-set=uib-legacy][data-icon-name=user-id-ready]::after {
|
|
3438
|
-
content: "\f586";
|
|
3439
|
-
color: #00DD31;
|
|
3440
|
-
}
|
|
3441
|
-
[data-icon-set=uib-legacy][data-icon-name=user-id-ready] span::before {
|
|
3442
|
-
content: "\f587";
|
|
3443
|
-
color: #000000;
|
|
3444
|
-
}
|
|
3445
|
-
[data-icon-set=uib-legacy][data-icon-name=user-level-1]::before {
|
|
3446
|
-
content: "\f58a";
|
|
3447
|
-
}
|
|
3448
|
-
[data-icon-set=uib-legacy][data-icon-name=user-level-2]::before {
|
|
3449
|
-
content: "\f58b";
|
|
3450
|
-
}
|
|
3451
|
-
[data-icon-set=uib-legacy][data-icon-name=user-level-3]::before {
|
|
3452
|
-
content: "\f58c";
|
|
3453
|
-
}
|
|
3454
|
-
[data-icon-set=uib-legacy][data-icon-name=user-level-4]::before {
|
|
3455
|
-
content: "\f58d";
|
|
3456
|
-
}
|
|
3457
|
-
[data-icon-set=uib-legacy][data-icon-name=user-level-5]::before {
|
|
3458
|
-
content: "\f58e";
|
|
3459
|
-
}
|
|
3460
|
-
[data-icon-set=uib-legacy][data-icon-name=user-logout]::before {
|
|
3461
|
-
content: "\f591";
|
|
3462
|
-
}
|
|
3463
|
-
[data-icon-set=uib-legacy][data-icon-name=user-logout]::after {
|
|
3464
|
-
content: "\f58f";
|
|
3465
|
-
color: #F30303;
|
|
3466
|
-
}
|
|
3467
|
-
[data-icon-set=uib-legacy][data-icon-name=user-logout] span::before {
|
|
3468
|
-
content: "\f590";
|
|
3469
|
-
color: #FFF;
|
|
3470
|
-
}
|
|
3471
|
-
[data-icon-set=uib-legacy][data-icon-name=user-maintainer]::before {
|
|
3472
|
-
content: "\f592";
|
|
3473
|
-
}
|
|
3474
|
-
[data-icon-set=uib-legacy][data-icon-name=user-operator]::before {
|
|
3475
|
-
content: "\f593";
|
|
3476
|
-
}
|
|
3477
|
-
[data-icon-set=uib-legacy][data-icon-name=user-trainer]::before {
|
|
3478
|
-
content: "\f594";
|
|
3479
|
-
}
|
|
3480
|
-
[data-icon-set=uib-legacy][data-icon-name=user-training]::before {
|
|
3481
|
-
content: "\f595";
|
|
3482
|
-
}
|
|
3483
|
-
[data-icon-set=uib-legacy][data-icon-name=user-worker]::before {
|
|
3484
|
-
content: "\f596";
|
|
3485
|
-
}
|
|
3486
|
-
[data-icon-set=uib-legacy][data-icon-name=vario-guard-control-center]::before {
|
|
3487
|
-
content: "\f413";
|
|
3488
|
-
}
|
|
3489
|
-
[data-icon-set=uib-legacy][data-icon-name=vario-guard-sensor]::before {
|
|
3490
|
-
content: "\f414";
|
|
3491
|
-
}
|
|
3492
|
-
[data-icon-set=uib-legacy][data-icon-name=various-graphs]::before {
|
|
3493
|
-
content: "\f415";
|
|
3494
|
-
}
|
|
3495
|
-
[data-icon-set=uib-legacy][data-icon-name=vent-close]::before {
|
|
3496
|
-
content: "\f417";
|
|
3497
|
-
}
|
|
3498
|
-
[data-icon-set=uib-legacy][data-icon-name=vent-close]::after {
|
|
3499
|
-
content: "\f598";
|
|
3500
|
-
color: #0074FF;
|
|
3501
|
-
}
|
|
3502
|
-
[data-icon-set=uib-legacy][data-icon-name=vent-open]::before {
|
|
3503
|
-
content: "\f419";
|
|
3504
|
-
}
|
|
3505
|
-
[data-icon-set=uib-legacy][data-icon-name=vent-open]::after {
|
|
3506
|
-
content: "\f599";
|
|
3507
|
-
color: #0074FF;
|
|
3508
|
-
}
|
|
3509
|
-
[data-icon-set=uib-legacy][data-icon-name=view]::before {
|
|
3510
|
-
content: "\f59a";
|
|
3511
|
-
}
|
|
3512
|
-
[data-icon-set=uib-legacy][data-icon-name=visual-inspection]::before {
|
|
3513
|
-
content: "\f59b";
|
|
3514
|
-
}
|
|
3515
|
-
[data-icon-set=uib-legacy][data-icon-name=volume-1]::before {
|
|
3516
|
-
content: "\f41a";
|
|
3517
|
-
}
|
|
3518
|
-
[data-icon-set=uib-legacy][data-icon-name=volume-2]::before {
|
|
3519
|
-
content: "\f41b";
|
|
3520
|
-
}
|
|
3521
|
-
[data-icon-set=uib-legacy][data-icon-name=volume-max]::before {
|
|
3522
|
-
content: "\f41c";
|
|
3523
|
-
}
|
|
3524
|
-
[data-icon-set=uib-legacy][data-icon-name=volume-min]::before {
|
|
3525
|
-
content: "\f41d";
|
|
3526
|
-
}
|
|
3527
|
-
[data-icon-set=uib-legacy][data-icon-name=volume-mute]::before {
|
|
3528
|
-
content: "\f41e";
|
|
3529
|
-
}
|
|
3530
|
-
[data-icon-set=uib-legacy][data-icon-name=volume-query]::before {
|
|
3531
|
-
content: "\f41f";
|
|
3532
|
-
}
|
|
3533
|
-
[data-icon-set=uib-legacy][data-icon-name=volume-reduction]::before {
|
|
3534
|
-
content: "\f420";
|
|
3535
|
-
}
|
|
3536
|
-
[data-icon-set=uib-legacy][data-icon-name=warm-up-time]::before {
|
|
3537
|
-
content: "\f421";
|
|
3538
|
-
}
|
|
3539
|
-
[data-icon-set=uib-legacy][data-icon-name=warning]::before {
|
|
3540
|
-
content: "\f422";
|
|
3541
|
-
color: #FFE300;
|
|
3542
|
-
}
|
|
3543
|
-
[data-icon-set=uib-legacy][data-icon-name=warning]::after {
|
|
3544
|
-
content: "\f59c";
|
|
3545
|
-
color: #000000;
|
|
3546
|
-
}
|
|
3547
|
-
[data-icon-set=uib-legacy][data-icon-name=washing-machine]::before {
|
|
3548
|
-
content: "\f424";
|
|
3549
|
-
}
|
|
3550
|
-
[data-icon-set=uib-legacy][data-icon-name=water]::before {
|
|
3551
|
-
content: "\f59d";
|
|
3552
|
-
}
|
|
3553
|
-
[data-icon-set=uib-legacy][data-icon-name=wifi-100-percent]::before {
|
|
3554
|
-
content: "\f425";
|
|
3555
|
-
}
|
|
3556
|
-
[data-icon-set=uib-legacy][data-icon-name=wifi-25-percent]::before {
|
|
3557
|
-
content: "\f426";
|
|
3558
|
-
}
|
|
3559
|
-
[data-icon-set=uib-legacy][data-icon-name=wifi-50-percent]::before {
|
|
3560
|
-
content: "\f427";
|
|
3561
|
-
}
|
|
3562
|
-
[data-icon-set=uib-legacy][data-icon-name=wifi-75-percent]::before {
|
|
3563
|
-
content: "\f428";
|
|
3564
|
-
}
|
|
3565
|
-
[data-icon-set=uib-legacy][data-icon-name=wifi-disabled]::before {
|
|
3566
|
-
content: "\f42a";
|
|
3567
|
-
}
|
|
3568
|
-
[data-icon-set=uib-legacy][data-icon-name=wifi-disabled-circle]::before {
|
|
3569
|
-
content: "\f429";
|
|
3570
|
-
}
|
|
3571
|
-
[data-icon-set=uib-legacy][data-icon-name=wizard]::before {
|
|
3572
|
-
content: "\f42b";
|
|
3573
|
-
}
|
|
3574
|
-
[data-icon-set=uib-legacy][data-icon-name=workshop]::before {
|
|
3575
|
-
content: "\f42c";
|
|
3576
|
-
}
|
|
3577
|
-
[data-icon-set=uib-legacy][data-icon-name=xact-5000]::before {
|
|
3578
|
-
content: "\f42d";
|
|
3579
|
-
}
|
|
3580
|
-
[data-icon-set=uib-legacy][data-icon-name=xact-7000]::before {
|
|
3581
|
-
content: "\f42e";
|
|
3582
|
-
}
|
|
3583
|
-
[data-icon-set=uib-legacy][data-icon-name=xam-2000]::before {
|
|
3584
|
-
content: "\f42f";
|
|
3585
|
-
}
|
|
3586
|
-
[data-icon-set=uib-legacy][data-icon-name=xam-2500]::before {
|
|
3587
|
-
content: "\f430";
|
|
3588
|
-
}
|
|
3589
|
-
[data-icon-set=uib-legacy][data-icon-name=xam-3000]::before {
|
|
3590
|
-
content: "\f431";
|
|
3591
|
-
}
|
|
3592
|
-
[data-icon-set=uib-legacy][data-icon-name=xam-5000]::before {
|
|
3593
|
-
content: "\f432";
|
|
3594
|
-
}
|
|
3595
|
-
[data-icon-set=uib-legacy][data-icon-name=xam-7000]::before {
|
|
3596
|
-
content: "\f433";
|
|
3597
|
-
}
|
|
3598
|
-
[data-icon-set=uib-legacy][data-icon-name=xam-8000]::before {
|
|
3599
|
-
content: "\f434";
|
|
3600
|
-
}
|
|
3601
|
-
[data-icon-set=uib-legacy][data-icon-name=xdock]::before {
|
|
3602
|
-
content: "\f435";
|
|
3603
|
-
}
|
|
3604
|
-
[data-icon-set=uib-legacy][data-icon-name=xpid-9000]::before {
|
|
3605
|
-
content: "\f436";
|
|
3606
|
-
}
|
|
3607
|
-
[data-icon-set=uib-legacy][data-icon-name=xplore]::before {
|
|
3608
|
-
content: "\f440";
|
|
3609
|
-
}
|
|
3610
|
-
[data-icon-set=uib-legacy][data-icon-name=xplore-1300]::before {
|
|
3611
|
-
content: "\f437";
|
|
3612
|
-
}
|
|
3613
|
-
[data-icon-set=uib-legacy][data-icon-name=xplore-1700]::before {
|
|
3614
|
-
content: "\f438";
|
|
3615
|
-
}
|
|
3616
|
-
[data-icon-set=uib-legacy][data-icon-name=xplore-1900]::before {
|
|
3617
|
-
content: "\f439";
|
|
3618
|
-
}
|
|
3619
|
-
[data-icon-set=uib-legacy][data-icon-name=xplore-3500]::before {
|
|
3620
|
-
content: "\f43a";
|
|
3621
|
-
}
|
|
3622
|
-
[data-icon-set=uib-legacy][data-icon-name=xplore-5500]::before {
|
|
3623
|
-
content: "\f43b";
|
|
3624
|
-
}
|
|
3625
|
-
[data-icon-set=uib-legacy][data-icon-name=xplore-6300]::before {
|
|
3626
|
-
content: "\f43c";
|
|
3627
|
-
}
|
|
3628
|
-
[data-icon-set=uib-legacy][data-icon-name=xplore-8000]::before {
|
|
3629
|
-
content: "\f43f";
|
|
3630
|
-
}
|
|
3631
|
-
[data-icon-set=uib-legacy][data-icon-name=xplore-8000-headpiece]::before {
|
|
3632
|
-
content: "\f43d";
|
|
3633
|
-
}
|
|
3634
|
-
[data-icon-set=uib-legacy][data-icon-name=xplore-8000-system]::before {
|
|
3635
|
-
content: "\f43e";
|
|
3636
|
-
}
|
|
3637
|
-
[data-icon-set=uib-legacy][data-icon-name=xzone-5000]::before {
|
|
3638
|
-
content: "\f441";
|
|
3639
|
-
}
|
|
3640
|
-
[data-icon-set=uib-legacy][data-icon-name=yes]::before {
|
|
3641
|
-
content: "\f59e";
|
|
3642
|
-
}
|
|
3643
|
-
[data-icon-set=uib-legacy][data-icon-name=zoom-document-size]::before {
|
|
3644
|
-
content: "\f442";
|
|
3645
|
-
}
|
|
3646
|
-
[data-icon-set=uib-legacy][data-icon-name=zoom-document-width]::before {
|
|
3647
|
-
content: "\f443";
|
|
3648
|
-
}
|
|
3649
|
-
[data-icon-set=uib-legacy][data-icon-name=zoom-in]::before {
|
|
3650
|
-
content: "\f5a0";
|
|
3651
|
-
}
|
|
3652
|
-
[data-icon-set=uib-legacy][data-icon-name=zoom-original]::before {
|
|
3653
|
-
content: "\f5a1";
|
|
3654
|
-
}
|
|
3655
|
-
[data-icon-set=uib-legacy][data-icon-name=zoom-out]::before {
|
|
3656
|
-
content: "\f5a2";
|
|
3657
|
-
}
|
|
3658
|
-
[data-icon-set=uib-legacy][data-icon-name=zoom-window]::before {
|
|
3659
|
-
content: "\f5a3";
|
|
3660
|
-
}
|
|
1
|
+
@font-face{font-family:uib-legacy-icons;src:url("uib-legacy-icons.eot");src:url("uib-legacy-icons.eot?#iefix") format("embedded-opentype"),url("uib-legacy-icons.woff") format("woff"),url("uib-legacy-icons.ttf") format("truetype");font-style:normal;font-weight:400}.odx-icon{display:inline-block;position:relative;height:1em;width:1em;transform:translate(0,0);text-rendering:auto;vertical-align:middle;font-size:inherit;font-weight:400;line-height:1;font-style:normal;font-variant:normal;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.odx-icon[data-icon-set=uib-legacy]{font-family:uib-legacy-icons}.odx-icon span::before{z-index:1}.odx-icon span::after{z-index:2}.odx-icon span::after,.odx-icon span::before,.odx-icon::after,.odx-icon::before{display:block;position:absolute;white-space:normal;text-indent:0;speak:none;top:0;left:0}.odx-icon[data-icon-rotate]{transform:rotate(var(--odx-icon-rotation))}.odx-icon[data-icon-rotate="90deg"]{--odx-icon-rotation:90deg}.odx-icon[data-icon-rotate="180deg"]{--odx-icon-rotation:180deg}.odx-icon[data-icon-rotate="270deg"]{--odx-icon-rotation:270deg}.odx-icon[data-icon-flip=horizontal]{transform:scaleX(-1)}.odx-icon[data-icon-flip=vertical]{transform:scaleY(-1)}.odx-icon[data-icon-flip=both]{transform:scale(-1)}[data-icon-set=uib-legacy][data-icon-name=absorber-absent]::before{content:"\f103"}[data-icon-set=uib-legacy][data-icon-name=absorber-absent]::after{content:"\f101";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=absorber-absent] span::before{content:"\f102";color:#fff}[data-icon-set=uib-legacy][data-icon-name=absorber-add]::before{content:"\f104"}[data-icon-set=uib-legacy][data-icon-name=absorber-ok]::before{content:"\f107"}[data-icon-set=uib-legacy][data-icon-name=absorber-ok]::after{content:"\f105";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=absorber-ok] span::before{content:"\f444";color:#000}[data-icon-set=uib-legacy][data-icon-name=absorber-query]::before{content:"\f108"}[data-icon-set=uib-legacy][data-icon-name=absorber-warning]::before{content:"\f10b"}[data-icon-set=uib-legacy][data-icon-name=absorber-warning]::after{content:"\f109";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=absorber-warning] span::before{content:"\f445";color:#000}[data-icon-set=uib-legacy][data-icon-name=accessories]::before{content:"\f10c"}[data-icon-set=uib-legacy][data-icon-name=acknowledge]::before{content:"\f112"}[data-icon-set=uib-legacy][data-icon-name=acknowledge-all]::before{content:"\f111"}[data-icon-set=uib-legacy][data-icon-name=acknowledge-all]::after{content:"\f10f";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=acknowledge-all] span::before{content:"\f447";color:#000}[data-icon-set=uib-legacy][data-icon-name=acknowledge]::after{content:"\f10d";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=acknowledge] span::before{content:"\f446";color:#000}[data-icon-set=uib-legacy][data-icon-name=add]::before{content:"\f448"}[data-icon-set=uib-legacy][data-icon-name=address]::before{content:"\f113"}[data-icon-set=uib-legacy][data-icon-name=adjust]::before{content:"\f114"}[data-icon-set=uib-legacy][data-icon-name=agriculture]::before{content:"\f115"}[data-icon-set=uib-legacy][data-icon-name=alarm]::before{content:"\f118"}[data-icon-set=uib-legacy][data-icon-name=alarm-stel]::before{content:"\f116"}[data-icon-set=uib-legacy][data-icon-name=alarm-twa]::before{content:"\f117"}[data-icon-set=uib-legacy][data-icon-name=alarm1-a1]::before{content:"\f119"}[data-icon-set=uib-legacy][data-icon-name=alarm1-a2]::before{content:"\f11a"}[data-icon-set=uib-legacy][data-icon-name=alarm1-a3]::before{content:"\f11b"}[data-icon-set=uib-legacy][data-icon-name=alarm1-a4]::before{content:"\f11c"}[data-icon-set=uib-legacy][data-icon-name=alarm1-average]::before{content:"\f121"}[data-icon-set=uib-legacy][data-icon-name=alarm1-average-a1]::before{content:"\f11d"}[data-icon-set=uib-legacy][data-icon-name=alarm1-average-a2]::before{content:"\f11e"}[data-icon-set=uib-legacy][data-icon-name=alarm1-average-a3]::before{content:"\f11f"}[data-icon-set=uib-legacy][data-icon-name=alarm1-average-a4]::before{content:"\f120"}[data-icon-set=uib-legacy][data-icon-name=alarm2]::before{content:"\f106"}[data-icon-set=uib-legacy][data-icon-name=alarm2-a1]::before{content:"\f122"}[data-icon-set=uib-legacy][data-icon-name=alarm2-a2]::before{content:"\f123"}[data-icon-set=uib-legacy][data-icon-name=alarm3-a1]::before{content:"\f10a";color:#fff}[data-icon-set=uib-legacy][data-icon-name=alarm3-a1]::after{content:"\f10e";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=alarm3-a2]::before{content:"\f110";color:#fff}[data-icon-set=uib-legacy][data-icon-name=alarm3-a2]::after{content:"\f14c";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=alarm3-protection]::before{content:"\f126";color:#fff}[data-icon-set=uib-legacy][data-icon-name=alarm3-protection]::after{content:"\f127";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=alarm3-stel]::before{content:"\f156";color:#fff}[data-icon-set=uib-legacy][data-icon-name=alarm3-stel]::after{content:"\f15d";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=alarm3-twa]::before{content:"\f16a";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=alarm3-twa]::after{content:"\f12b";color:#fff}[data-icon-set=uib-legacy][data-icon-name=alarmtype]::before{content:"\f44c"}[data-icon-set=uib-legacy][data-icon-name=alarmtype-info]::before{content:"\f44b"}[data-icon-set=uib-legacy][data-icon-name=alcotest-3820]::before{content:"\f12c"}[data-icon-set=uib-legacy][data-icon-name=alcotest-5820]::before{content:"\f12d"}[data-icon-set=uib-legacy][data-icon-name=alcotest-6820]::before{content:"\f12e"}[data-icon-set=uib-legacy][data-icon-name=alcotest-7000-funnel]::before{content:"\f12f"}[data-icon-set=uib-legacy][data-icon-name=alcotest-7000-tube]::before{content:"\f130"}[data-icon-set=uib-legacy][data-icon-name=alcotest-7510]::before{content:"\f131"}[data-icon-set=uib-legacy][data-icon-name=align-horizontal]::before{content:"\f44d"}[data-icon-set=uib-legacy][data-icon-name=align-vertical]::before{content:"\f44e"}[data-icon-set=uib-legacy][data-icon-name=allowlist]::before{content:"\f133"}[data-icon-set=uib-legacy][data-icon-name=allowlist-upload]::before{content:"\f132"}[data-icon-set=uib-legacy][data-icon-name=analysis]::before{content:"\f134"}[data-icon-set=uib-legacy][data-icon-name=anglegrinder]::before{content:"\f135"}[data-icon-set=uib-legacy][data-icon-name=application-feedback]::before{content:"\f136"}[data-icon-set=uib-legacy][data-icon-name=arrow-scroll-down]::before{content:"\f44f"}[data-icon-set=uib-legacy][data-icon-name=arrow-scroll-left]::before{content:"\f450"}[data-icon-set=uib-legacy][data-icon-name=arrow-scroll-right]::before{content:"\f451"}[data-icon-set=uib-legacy][data-icon-name=arrow-scroll-up]::before{content:"\f452"}[data-icon-set=uib-legacy][data-icon-name=arrow1-down]::before{content:"\f453"}[data-icon-set=uib-legacy][data-icon-name=arrow1-left]::before{content:"\f454"}[data-icon-set=uib-legacy][data-icon-name=arrow1-right]::before{content:"\f455"}[data-icon-set=uib-legacy][data-icon-name=arrow1-up]::before{content:"\f456"}[data-icon-set=uib-legacy][data-icon-name=arrow2-down]::before{content:"\f457"}[data-icon-set=uib-legacy][data-icon-name=arrow2-left]::before{content:"\f458"}[data-icon-set=uib-legacy][data-icon-name=arrow2-right]::before{content:"\f459"}[data-icon-set=uib-legacy][data-icon-name=arrow2-up]::before{content:"\f45a"}[data-icon-set=uib-legacy][data-icon-name=arrow3-down]::before{content:"\f45b"}[data-icon-set=uib-legacy][data-icon-name=arrow3-left]::before{content:"\f45c"}[data-icon-set=uib-legacy][data-icon-name=arrow3-right]::before{content:"\f45d"}[data-icon-set=uib-legacy][data-icon-name=arrow3-up]::before{content:"\f45e"}[data-icon-set=uib-legacy][data-icon-name=articles-incoming]::before{content:"\f137"}[data-icon-set=uib-legacy][data-icon-name=articles-issue]::before{content:"\f138"}[data-icon-set=uib-legacy][data-icon-name=articles-outgoing]::before{content:"\f139"}[data-icon-set=uib-legacy][data-icon-name=articles-return]::before{content:"\f13a"}[data-icon-set=uib-legacy][data-icon-name=assemble]::before{content:"\f13b"}[data-icon-set=uib-legacy][data-icon-name=attachment]::before{content:"\f460"}[data-icon-set=uib-legacy][data-icon-name=attachment-disabled]::before{content:"\f45f"}[data-icon-set=uib-legacy][data-icon-name=barcode-scan]::before{content:"\f13c"}[data-icon-set=uib-legacy][data-icon-name=battery-1]::before{content:"\f13d"}[data-icon-set=uib-legacy][data-icon-name=battery-100-percent]::before{content:"\f461"}[data-icon-set=uib-legacy][data-icon-name=battery-2]::before{content:"\f13e"}[data-icon-set=uib-legacy][data-icon-name=battery-25-percent]::before{content:"\f462"}[data-icon-set=uib-legacy][data-icon-name=battery-3]::before{content:"\f13f"}[data-icon-set=uib-legacy][data-icon-name=battery-4]::before{content:"\f140"}[data-icon-set=uib-legacy][data-icon-name=battery-5]::before{content:"\f141"}[data-icon-set=uib-legacy][data-icon-name=battery-50-percent]::before{content:"\f463"}[data-icon-set=uib-legacy][data-icon-name=battery-75-percent]::before{content:"\f464"}[data-icon-set=uib-legacy][data-icon-name=battery-alarm]::before{content:"\f465";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=battery-alarm]::after{content:"\f466";color:#fff}[data-icon-set=uib-legacy][data-icon-name=battery-alarm] span::before{content:"\f467"}[data-icon-set=uib-legacy][data-icon-name=battery-charging]::before{content:"\f468"}[data-icon-set=uib-legacy][data-icon-name=battery-error]::before{content:"\f46b"}[data-icon-set=uib-legacy][data-icon-name=battery-error]::after{content:"\f469";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=battery-error] span::before{content:"\f46a";color:#fff}[data-icon-set=uib-legacy][data-icon-name=battery-low]::before{content:"\f46c"}[data-icon-set=uib-legacy][data-icon-name=battery-uncalibrated]::before{content:"\f46d"}[data-icon-set=uib-legacy][data-icon-name=battery-warning]::before{content:"\f470"}[data-icon-set=uib-legacy][data-icon-name=battery-warning]::after{content:"\f46e";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=battery-warning] span::before{content:"\f46f";color:#000}[data-icon-set=uib-legacy][data-icon-name=blocking-alarm]::before{content:"\f142"}[data-icon-set=uib-legacy][data-icon-name=blow]::before{content:"\f143"}[data-icon-set=uib-legacy][data-icon-name=bluetooth]::before{content:"\f473"}[data-icon-set=uib-legacy][data-icon-name=bluetooth-disabled]::before{content:"\f471"}[data-icon-set=uib-legacy][data-icon-name=bluetooth-pairing]::before{content:"\f472"}[data-icon-set=uib-legacy][data-icon-name=bodyguard]::before{content:"\f144"}[data-icon-set=uib-legacy][data-icon-name=bookmark]::before{content:"\f474"}[data-icon-set=uib-legacy][data-icon-name=boot]::before{content:"\f145"}[data-icon-set=uib-legacy][data-icon-name=bottle-price]::before{content:"\f146"}[data-icon-set=uib-legacy][data-icon-name=breathing-apparatus]::before{content:"\f147"}[data-icon-set=uib-legacy][data-icon-name=brightness-1]::before{content:"\f475"}[data-icon-set=uib-legacy][data-icon-name=brightness-2]::before{content:"\f476"}[data-icon-set=uib-legacy][data-icon-name=brightness-3]::before{content:"\f477"}[data-icon-set=uib-legacy][data-icon-name=brightness-4]::before{content:"\f478"}[data-icon-set=uib-legacy][data-icon-name=brightness-5]::before{content:"\f479"}[data-icon-set=uib-legacy][data-icon-name=brightness-auto]::before{content:"\f47a"}[data-icon-set=uib-legacy][data-icon-name=building]::before{content:"\f14f"}[data-icon-set=uib-legacy][data-icon-name=building-basement]::before{content:"\f148"}[data-icon-set=uib-legacy][data-icon-name=building-floors]::before{content:"\f149"}[data-icon-set=uib-legacy][data-icon-name=building-units]::before{content:"\f14a"}[data-icon-set=uib-legacy][data-icon-name=building-warning]::before{content:"\f14d"}[data-icon-set=uib-legacy][data-icon-name=building-warning]::after{content:"\f14b";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=building-warning] span::before{content:"\f47b";color:#000}[data-icon-set=uib-legacy][data-icon-name=building-year]::before{content:"\f14e"}[data-icon-set=uib-legacy][data-icon-name=bumptest]::before{content:"\f150"}[data-icon-set=uib-legacy][data-icon-name=calculator]::before{content:"\f151"}[data-icon-set=uib-legacy][data-icon-name=calendar]::before{content:"\f48e"}[data-icon-set=uib-legacy][data-icon-name=calendar-bumptest]::before{content:"\f47e"}[data-icon-set=uib-legacy][data-icon-name=calendar-bumptest-error]::before{content:"\f47c"}[data-icon-set=uib-legacy][data-icon-name=calendar-bumptest-warning]::before{content:"\f47d"}[data-icon-set=uib-legacy][data-icon-name=calendar-calibration]::before{content:"\f481"}[data-icon-set=uib-legacy][data-icon-name=calendar-calibration-error]::before{content:"\f47f"}[data-icon-set=uib-legacy][data-icon-name=calendar-calibration-warning]::before{content:"\f480"}[data-icon-set=uib-legacy][data-icon-name=calendar-flag]::before{content:"\f482";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=calendar-flag]::after{content:"\f483"}[data-icon-set=uib-legacy][data-icon-name=calendar-interval]::before{content:"\f484"}[data-icon-set=uib-legacy][data-icon-name=calendar-list]::before{content:"\f485"}[data-icon-set=uib-legacy][data-icon-name=calendar-time]::before{content:"\f486"}[data-icon-set=uib-legacy][data-icon-name=calendar-user]::before{content:"\f489"}[data-icon-set=uib-legacy][data-icon-name=calendar-user-error]::before{content:"\f487"}[data-icon-set=uib-legacy][data-icon-name=calendar-user-warning]::before{content:"\f488"}[data-icon-set=uib-legacy][data-icon-name=calendar-warning]::before{content:"\f48a";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=calendar-warning]::after{content:"\f48b";color:#000}[data-icon-set=uib-legacy][data-icon-name=calendar-warning] span::before{content:"\f48c"}[data-icon-set=uib-legacy][data-icon-name=calendar-week-view]::before{content:"\f48d"}[data-icon-set=uib-legacy][data-icon-name=calender-day-view]::before{content:"\f48f"}[data-icon-set=uib-legacy][data-icon-name=calender-event]::before{content:"\f490"}[data-icon-set=uib-legacy][data-icon-name=calibration]::before{content:"\f15f"}[data-icon-set=uib-legacy][data-icon-name=calibration-comp]::before{content:"\f158"}[data-icon-set=uib-legacy][data-icon-name=calibration-comp-error]::before{content:"\f154"}[data-icon-set=uib-legacy][data-icon-name=calibration-comp-error]::after{content:"\f152";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=calibration-comp-error] span::before{content:"\f153";color:#fff}[data-icon-set=uib-legacy][data-icon-name=calibration-comp-warning]::before{content:"\f157"}[data-icon-set=uib-legacy][data-icon-name=calibration-comp-warning]::after{content:"\f155";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=calibration-comp-warning] span::before{content:"\f491";color:#000}[data-icon-set=uib-legacy][data-icon-name=calibration-error]::before{content:"\f15b"}[data-icon-set=uib-legacy][data-icon-name=calibration-error]::after{content:"\f159";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=calibration-error] span::before{content:"\f15a";color:#fff}[data-icon-set=uib-legacy][data-icon-name=calibration-warning]::before{content:"\f15e"}[data-icon-set=uib-legacy][data-icon-name=calibration-warning]::after{content:"\f15c";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=calibration-warning] span::before{content:"\f492";color:#000}[data-icon-set=uib-legacy][data-icon-name=car]::before{content:"\f162"}[data-icon-set=uib-legacy][data-icon-name=car-accident]::before{content:"\f160"}[data-icon-set=uib-legacy][data-icon-name=car-swap]::before{content:"\f161"}[data-icon-set=uib-legacy][data-icon-name=casting]::before{content:"\f163"}[data-icon-set=uib-legacy][data-icon-name=catalog]::before{content:"\f164"}[data-icon-set=uib-legacy][data-icon-name=certicifate-upload]::before{content:"\f165"}[data-icon-set=uib-legacy][data-icon-name=certificate]::before{content:"\f16f"}[data-icon-set=uib-legacy][data-icon-name=certificate-error]::before{content:"\f166";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=certificate-error]::after{content:"\f167";color:#fff}[data-icon-set=uib-legacy][data-icon-name=certificate-error] span::before{content:"\f168"}[data-icon-set=uib-legacy][data-icon-name=certificate-valid]::before{content:"\f16b"}[data-icon-set=uib-legacy][data-icon-name=certificate-valid]::after{content:"\f169";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=certificate-valid] span::before{content:"\f493";color:#000}[data-icon-set=uib-legacy][data-icon-name=certificate-warning]::before{content:"\f16c";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=certificate-warning]::after{content:"\f494";color:#000}[data-icon-set=uib-legacy][data-icon-name=certificate-warning] span::before{content:"\f16e"}[data-icon-set=uib-legacy][data-icon-name=changelog]::before{content:"\f170"}[data-icon-set=uib-legacy][data-icon-name=charging]::before{content:"\f172"}[data-icon-set=uib-legacy][data-icon-name=charging-disabled]::before{content:"\f171"}[data-icon-set=uib-legacy][data-icon-name=checkbox]::before{content:"\f175"}[data-icon-set=uib-legacy][data-icon-name=checkbox-active]::before{content:"\f495";color:#0074ff}[data-icon-set=uib-legacy][data-icon-name=checkbox-default]::before{content:"\f174"}[data-icon-set=uib-legacy][data-icon-name=chemicals]::before{content:"\f176"}[data-icon-set=uib-legacy][data-icon-name=chip-eject]::before{content:"\f179"}[data-icon-set=uib-legacy][data-icon-name=chip-eject]::after{content:"\f496";color:#0074ff}[data-icon-set=uib-legacy][data-icon-name=chip-eject] span::before{content:"\f178";color:#fff}[data-icon-set=uib-legacy][data-icon-name=chip-insert]::before{content:"\f17a"}[data-icon-set=uib-legacy][data-icon-name=circle]::before{content:"\f17b"}[data-icon-set=uib-legacy][data-icon-name=cleaning]::before{content:"\f17c"}[data-icon-set=uib-legacy][data-icon-name=clockwise-90-degree]::before{content:"\f17d"}[data-icon-set=uib-legacy][data-icon-name=close]::before{content:"\f497"}[data-icon-set=uib-legacy][data-icon-name=close-all]::before{content:"\f17e";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=close-all]::after{content:"\f17f"}[data-icon-set=uib-legacy][data-icon-name=clothing]::before{content:"\f180"}[data-icon-set=uib-legacy][data-icon-name=cloud]::before{content:"\f499"}[data-icon-set=uib-legacy][data-icon-name=cloud-upload]::before{content:"\f498"}[data-icon-set=uib-legacy][data-icon-name=cold]::before{content:"\f181"}[data-icon-set=uib-legacy][data-icon-name=collection]::before{content:"\f185"}[data-icon-set=uib-legacy][data-icon-name=collection-add]::before{content:"\f182"}[data-icon-set=uib-legacy][data-icon-name=collection-remove]::before{content:"\f183"}[data-icon-set=uib-legacy][data-icon-name=collection-service]::before{content:"\f184"}[data-icon-set=uib-legacy][data-icon-name=collective-edit]::before{content:"\f186"}[data-icon-set=uib-legacy][data-icon-name=column-double]::before{content:"\f187"}[data-icon-set=uib-legacy][data-icon-name=column-multi]::before{content:"\f188"}[data-icon-set=uib-legacy][data-icon-name=column-single]::before{content:"\f189"}[data-icon-set=uib-legacy][data-icon-name=comment]::before{content:"\f49c"}[data-icon-set=uib-legacy][data-icon-name=comment-add]::before{content:"\f49a"}[data-icon-set=uib-legacy][data-icon-name=comment-disabled]::before{content:"\f49b"}[data-icon-set=uib-legacy][data-icon-name=communication]::before{content:"\f18c"}[data-icon-set=uib-legacy][data-icon-name=communication-disabled]::before{content:"\f18a"}[data-icon-set=uib-legacy][data-icon-name=communication-tool]::before{content:"\f18b"}[data-icon-set=uib-legacy][data-icon-name=compare]::before{content:"\f49d"}[data-icon-set=uib-legacy][data-icon-name=comparison]::before{content:"\f18d"}[data-icon-set=uib-legacy][data-icon-name=complete]::before{content:"\f190"}[data-icon-set=uib-legacy][data-icon-name=complete]::after{content:"\f18e";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=complete] span::before{content:"\f49e";color:#000}[data-icon-set=uib-legacy][data-icon-name=complex-system]::before{content:"\f191"}[data-icon-set=uib-legacy][data-icon-name=composition-edit]::before{content:"\f192"}[data-icon-set=uib-legacy][data-icon-name=concentration]::before{content:"\f193"}[data-icon-set=uib-legacy][data-icon-name=configuration]::before{content:"\f4a4"}[data-icon-set=uib-legacy][data-icon-name=configuration-edit]::before{content:"\f49f"}[data-icon-set=uib-legacy][data-icon-name=configuration-enter]::before{content:"\f4a0"}[data-icon-set=uib-legacy][data-icon-name=configuration-leave]::before{content:"\f4a1"}[data-icon-set=uib-legacy][data-icon-name=configuration-update]::before{content:"\f4a2"}[data-icon-set=uib-legacy][data-icon-name=configuration-view]::before{content:"\f4a3"}[data-icon-set=uib-legacy][data-icon-name=conhub]::before{content:"\f194"}[data-icon-set=uib-legacy][data-icon-name=construction-method]::before{content:"\f195"}[data-icon-set=uib-legacy][data-icon-name=context-menu]::before{content:"\f4a5"}[data-icon-set=uib-legacy][data-icon-name=controlbox]::before{content:"\f196"}[data-icon-set=uib-legacy][data-icon-name=copy]::before{content:"\f4a6"}[data-icon-set=uib-legacy][data-icon-name=cost]::before{content:"\f197"}[data-icon-set=uib-legacy][data-icon-name=counter]::before{content:"\f198"}[data-icon-set=uib-legacy][data-icon-name=counterclockwise-90-degree]::before{content:"\f199"}[data-icon-set=uib-legacy][data-icon-name=cps]::before{content:"\f19a"}[data-icon-set=uib-legacy][data-icon-name=cut]::before{content:"\f4a7"}[data-icon-set=uib-legacy][data-icon-name=cylinder]::before{content:"\f1a5"}[data-icon-set=uib-legacy][data-icon-name=cylinder-change]::before{content:"\f19b"}[data-icon-set=uib-legacy][data-icon-name=cylinder-charge]::before{content:"\f19c"}[data-icon-set=uib-legacy][data-icon-name=cylinder-closed]::before{content:"\f19d"}[data-icon-set=uib-legacy][data-icon-name=cylinder-error]::before{content:"\f1a0"}[data-icon-set=uib-legacy][data-icon-name=cylinder-error]::after{content:"\f19e";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=cylinder-error] span::before{content:"\f19f";color:#fff}[data-icon-set=uib-legacy][data-icon-name=cylinder-o2-alarm]::before{content:"\f1a3"}[data-icon-set=uib-legacy][data-icon-name=cylinder-o2-alarm]::after{content:"\f1a1";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=cylinder-o2-alarm] span::before{content:"\f1a2";color:#fff}[data-icon-set=uib-legacy][data-icon-name=cylinder-opened]::before{content:"\f1a4"}[data-icon-set=uib-legacy][data-icon-name=d]::before{content:"\f4a8"}[data-icon-set=uib-legacy][data-icon-name=damage]::before{content:"\f1a6"}[data-icon-set=uib-legacy][data-icon-name=dangerous-goods]::before{content:"\f1a7"}[data-icon-set=uib-legacy][data-icon-name=dashboard-close]::before{content:"\f1a8"}[data-icon-set=uib-legacy][data-icon-name=dashboard-open]::before{content:"\f1a9"}[data-icon-set=uib-legacy][data-icon-name=data-send]::before{content:"\f1aa"}[data-icon-set=uib-legacy][data-icon-name=data-set]::before{content:"\f1ab"}[data-icon-set=uib-legacy][data-icon-name=data-snapshot]::before{content:"\f1ac"}[data-icon-set=uib-legacy][data-icon-name=data-transfer-completed]::before{content:"\f1af"}[data-icon-set=uib-legacy][data-icon-name=data-transfer-completed]::after{content:"\f1ad";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=data-transfer-completed] span::before{content:"\f4a9";color:#000}[data-icon-set=uib-legacy][data-icon-name=data-transfer-failed]::before{content:"\f1b2"}[data-icon-set=uib-legacy][data-icon-name=data-transfer-failed]::after{content:"\f1b0";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=data-transfer-failed] span::before{content:"\f1b1";color:#fff}[data-icon-set=uib-legacy][data-icon-name=database]::before{content:"\f1b4"}[data-icon-set=uib-legacy][data-icon-name=database-edit]::before{content:"\f1b3"}[data-icon-set=uib-legacy][data-icon-name=datahub]::before{content:"\f1b5"}[data-icon-set=uib-legacy][data-icon-name=day-mode]::before{content:"\f1b6"}[data-icon-set=uib-legacy][data-icon-name=deadman]::before{content:"\f1b7"}[data-icon-set=uib-legacy][data-icon-name=delete]::before{content:"\f1b8"}[data-icon-set=uib-legacy][data-icon-name=deletion-successful]::before{content:"\f1bb"}[data-icon-set=uib-legacy][data-icon-name=deletion-successful]::after{content:"\f1b9";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=deletion-successful] span::before{content:"\f4aa";color:#000}[data-icon-set=uib-legacy][data-icon-name=detail-slot]::before{content:"\f4ab"}[data-icon-set=uib-legacy][data-icon-name=device]::before{content:"\f1c6"}[data-icon-set=uib-legacy][data-icon-name=device-ang]::before{content:"\f1bc"}[data-icon-set=uib-legacy][data-icon-name=device-connection]::before{content:"\f1bd"}[data-icon-set=uib-legacy][data-icon-name=device-ct]::before{content:"\f1be"}[data-icon-set=uib-legacy][data-icon-name=device-inspection]::before{content:"\f1bf"}[data-icon-set=uib-legacy][data-icon-name=device-module]::before{content:"\f1c0"}[data-icon-set=uib-legacy][data-icon-name=device-mrt]::before{content:"\f1c1"}[data-icon-set=uib-legacy][data-icon-name=device-ok]::before{content:"\f1c4"}[data-icon-set=uib-legacy][data-icon-name=device-ok]::after{content:"\f1c2";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=device-ok] span::before{content:"\f4ac";color:#000}[data-icon-set=uib-legacy][data-icon-name=device-sono]::before{content:"\f1c5"}[data-icon-set=uib-legacy][data-icon-name=devices]::before{content:"\f1c8"}[data-icon-set=uib-legacy][data-icon-name=devices-management]::before{content:"\f1c7"}[data-icon-set=uib-legacy][data-icon-name=disabled]::before{content:"\f1c9"}[data-icon-set=uib-legacy][data-icon-name=disassemble]::before{content:"\f1ca"}[data-icon-set=uib-legacy][data-icon-name=display-1]::before{content:"\f1cb"}[data-icon-set=uib-legacy][data-icon-name=display-2]::before{content:"\f1cc"}[data-icon-set=uib-legacy][data-icon-name=display-3]::before{content:"\f1cd"}[data-icon-set=uib-legacy][data-icon-name=display-4]::before{content:"\f1ce"}[data-icon-set=uib-legacy][data-icon-name=display-5]::before{content:"\f1cf"}[data-icon-set=uib-legacy][data-icon-name=docking-station]::before{content:"\f1d3"}[data-icon-set=uib-legacy][data-icon-name=docking-station-3]::before{content:"\f1d0"}[data-icon-set=uib-legacy][data-icon-name=docking-station-4]::before{content:"\f1d1"}[data-icon-set=uib-legacy][data-icon-name=docking-station-8]::before{content:"\f1d2"}[data-icon-set=uib-legacy][data-icon-name=document]::before{content:"\f4b1"}[data-icon-set=uib-legacy][data-icon-name=document-check]::before{content:"\f4ad"}[data-icon-set=uib-legacy][data-icon-name=document-flag]::before{content:"\f4ae";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=document-flag]::after{content:"\f4af"}[data-icon-set=uib-legacy][data-icon-name=document-settings]::before{content:"\f4b0"}[data-icon-set=uib-legacy][data-icon-name=download]::before{content:"\f4b2"}[data-icon-set=uib-legacy][data-icon-name=drugcheck]::before{content:"\f1d4"}[data-icon-set=uib-legacy][data-icon-name=duplicate]::before{content:"\f4b3"}[data-icon-set=uib-legacy][data-icon-name=edit]::before{content:"\f4b4"}[data-icon-set=uib-legacy][data-icon-name=emergency-stop]::before{content:"\f4b5"}[data-icon-set=uib-legacy][data-icon-name=equipment-change]::before{content:"\f1d5"}[data-icon-set=uib-legacy][data-icon-name=equipment-fire]::before{content:"\f1d6"}[data-icon-set=uib-legacy][data-icon-name=erase]::before{content:"\f1d7"}[data-icon-set=uib-legacy][data-icon-name=error-extra-information]::before{content:"\f1da";color:#9eb0c2}[data-icon-set=uib-legacy][data-icon-name=error-extra-information]::after{content:"\f1db";color:#fff}[data-icon-set=uib-legacy][data-icon-name=error-extra-information] span::before{content:"\f1dc"}[data-icon-set=uib-legacy][data-icon-name=error-yellow-outline]::before{content:"\f1dd";color:#fff}[data-icon-set=uib-legacy][data-icon-name=error-yellow-outline]::after{content:"\f1de";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=error-yellow-outline] span::before{content:"\f4b6";color:#000}[data-icon-set=uib-legacy][data-icon-name=error]::before{content:"\f1d8";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=error]::after{content:"\f1d9";color:#fff}[data-icon-set=uib-legacy][data-icon-name=ethernet]::before{content:"\f1e0"}[data-icon-set=uib-legacy][data-icon-name=evacuation]::before{content:"\f1ec"}[data-icon-set=uib-legacy][data-icon-name=evacuation-confirmed]::before{content:"\f1e3"}[data-icon-set=uib-legacy][data-icon-name=evacuation-confirmed]::after{content:"\f1e1";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=evacuation-confirmed] span::before{content:"\f4b7";color:#000}[data-icon-set=uib-legacy][data-icon-name=evacuation-pending]::before{content:"\f1e4"}[data-icon-set=uib-legacy][data-icon-name=evacuation-success]::before{content:"\f1e7"}[data-icon-set=uib-legacy][data-icon-name=evacuation-success]::after{content:"\f1e5";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=evacuation-success] span::before{content:"\f4b8";color:#000}[data-icon-set=uib-legacy][data-icon-name=evacuation-timer]::before{content:"\f1e8"}[data-icon-set=uib-legacy][data-icon-name=evacuation-warning]::before{content:"\f4b9";color:#000}[data-icon-set=uib-legacy][data-icon-name=evacuation-warning]::after{content:"\f1ea";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=evacuation-warning] span::before{content:"\f1eb"}[data-icon-set=uib-legacy][data-icon-name=exclamation]::before{content:"\f1ed"}[data-icon-set=uib-legacy][data-icon-name=exit]::before{content:"\f4ba"}[data-icon-set=uib-legacy][data-icon-name=expired-freshair]::before{content:"\f1f1"}[data-icon-set=uib-legacy][data-icon-name=expired]::before{content:"\f1ee";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=expired]::after{content:"\f1ef";color:#fff}[data-icon-set=uib-legacy][data-icon-name=expired] span::before{content:"\f1f0"}[data-icon-set=uib-legacy][data-icon-name=expirydate]::before{content:"\f1f2"}[data-icon-set=uib-legacy][data-icon-name=explosive-a1]::before{content:"\f1f5";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=explosive-a1]::after{content:"\f1f6"}[data-icon-set=uib-legacy][data-icon-name=explosive-a1] span::before{content:"\f4bc";color:#000}[data-icon-set=uib-legacy][data-icon-name=explosive-a2]::before{content:"\f1f8";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=explosive-a2]::after{content:"\f1f9"}[data-icon-set=uib-legacy][data-icon-name=explosive-a2] span::before{content:"\f4bd";color:#000}[data-icon-set=uib-legacy][data-icon-name=explosive-stel]::before{content:"\f1fb";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=explosive-stel]::after{content:"\f4be";color:#000}[data-icon-set=uib-legacy][data-icon-name=explosive-stel] span::before{content:"\f1fd"}[data-icon-set=uib-legacy][data-icon-name=explosive-twa]::before{content:"\f200"}[data-icon-set=uib-legacy][data-icon-name=explosive-twa]::after{content:"\f1fe";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=explosive-twa] span::before{content:"\f4bf";color:#000}[data-icon-set=uib-legacy][data-icon-name=explosive]::before{content:"\f1f3";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=explosive]::after{content:"\f4bb";color:#000}[data-icon-set=uib-legacy][data-icon-name=export]::before{content:"\f4c0"}[data-icon-set=uib-legacy][data-icon-name=export-to-excel]::before{content:"\f201"}[data-icon-set=uib-legacy][data-icon-name=extended-care]::before{content:"\f202"}[data-icon-set=uib-legacy][data-icon-name=extinguisher]::before{content:"\f203"}[data-icon-set=uib-legacy][data-icon-name=faucet]::before{content:"\f204"}[data-icon-set=uib-legacy][data-icon-name=fault-finding]::before{content:"\f205"}[data-icon-set=uib-legacy][data-icon-name=favorite]::before{content:"\f4c2"}[data-icon-set=uib-legacy][data-icon-name=favorite-default]::before{content:"\f4c1"}[data-icon-set=uib-legacy][data-icon-name=fax]::before{content:"\f4c3"}[data-icon-set=uib-legacy][data-icon-name=feedback-negative]::before{content:"\f4c4"}[data-icon-set=uib-legacy][data-icon-name=feedback-positive-extra-information]::before{content:"\f208";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=feedback-positive-extra-information]::after{content:"\f4c6";color:#000}[data-icon-set=uib-legacy][data-icon-name=feedback-positive-extra-information] span::before{content:"\f20a"}[data-icon-set=uib-legacy][data-icon-name=feedback-positive-tamper-yellow]::before{content:"\f20e";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=feedback-positive-tamper-yellow]::after{content:"\f20f";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=feedback-positive-tamper-yellow] span::before{content:"\f4c8";color:#000}[data-icon-set=uib-legacy][data-icon-name=feedback-positive-tamper]::before{content:"\f20b";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=feedback-positive-tamper]::after{content:"\f4c7";color:#000}[data-icon-set=uib-legacy][data-icon-name=feedback-positive-tamper] span::before{content:"\f20d"}[data-icon-set=uib-legacy][data-icon-name=feedback-positive]::before{content:"\f206";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=feedback-positive]::after{content:"\f4c5";color:#000}[data-icon-set=uib-legacy][data-icon-name=feedback-warning-extra-information]::before{content:"\f213";color:#9eb0c2}[data-icon-set=uib-legacy][data-icon-name=feedback-warning-extra-information]::after{content:"\f214"}[data-icon-set=uib-legacy][data-icon-name=feedback-warning-extra-information] span::before{content:"\f215";color:#fff}[data-icon-set=uib-legacy][data-icon-name=feedback-warning-outline]::before{content:"\f216";color:#fff}[data-icon-set=uib-legacy][data-icon-name=feedback-warning-outline]::after{content:"\f217";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=feedback-warning-outline] span::before{content:"\f4ca";color:#000}[data-icon-set=uib-legacy][data-icon-name=feedback-warning-tamper-red]::before{content:"\f21c";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=feedback-warning-tamper-red]::after{content:"\f21d";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=feedback-warning-tamper-red] span::before{content:"\f21e";color:#fff}[data-icon-set=uib-legacy][data-icon-name=feedback-warning-tamper-red] span::after{content:"\f4cb";color:#000}[data-icon-set=uib-legacy][data-icon-name=feedback-warning-tamper-yellow]::before{content:"\f220";color:#9eb0c2}[data-icon-set=uib-legacy][data-icon-name=feedback-warning-tamper-yellow]::after{content:"\f221";color:#fff}[data-icon-set=uib-legacy][data-icon-name=feedback-warning-tamper-yellow] span::before{content:"\f222";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=feedback-warning-tamper-yellow] span::after{content:"\f4cc";color:#000}[data-icon-set=uib-legacy][data-icon-name=feedback-warning-tamper]::before{content:"\f219";color:#9eb0c2}[data-icon-set=uib-legacy][data-icon-name=feedback-warning-tamper]::after{content:"\f21a";color:#fff}[data-icon-set=uib-legacy][data-icon-name=feedback-warning-tamper] span::before{content:"\f21b"}[data-icon-set=uib-legacy][data-icon-name=feedback-warning]::before{content:"\f211";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=feedback-warning]::after{content:"\f4c9";color:#000}[data-icon-set=uib-legacy][data-icon-name=fg-hub]::before{content:"\f22a"}[data-icon-set=uib-legacy][data-icon-name=fg-hub-battery-low]::before{content:"\f226"}[data-icon-set=uib-legacy][data-icon-name=fg-hub-battery-low]::after{content:"\f224";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=fg-hub-battery-low] span::before{content:"\f225";color:#fff}[data-icon-set=uib-legacy][data-icon-name=fg-hub-no-connection]::before{content:"\f227";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=fg-hub-no-connection]::after{content:"\f4cd";color:#000}[data-icon-set=uib-legacy][data-icon-name=fg-hub-no-connection] span::before{content:"\f229"}[data-icon-set=uib-legacy][data-icon-name=fg-repeater]::before{content:"\f22e"}[data-icon-set=uib-legacy][data-icon-name=fg-repeater-battery-low]::before{content:"\f22d"}[data-icon-set=uib-legacy][data-icon-name=fg-repeater-battery-low]::after{content:"\f22b";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=fg-repeater-battery-low] span::before{content:"\f22c";color:#fff}[data-icon-set=uib-legacy][data-icon-name=file-excel]::before{content:"\f4ce"}[data-icon-set=uib-legacy][data-icon-name=file-html]::before{content:"\f4cf"}[data-icon-set=uib-legacy][data-icon-name=file-pdf]::before{content:"\f4d0"}[data-icon-set=uib-legacy][data-icon-name=file-ppt]::before{content:"\f4d1"}[data-icon-set=uib-legacy][data-icon-name=file-word]::before{content:"\f4d2"}[data-icon-set=uib-legacy][data-icon-name=file-zip]::before{content:"\f4d3"}[data-icon-set=uib-legacy][data-icon-name=filter]::before{content:"\f4d6"}[data-icon-set=uib-legacy][data-icon-name=filter-close]::before{content:"\f4d4"}[data-icon-set=uib-legacy][data-icon-name=filter-settings]::before{content:"\f4d5"}[data-icon-set=uib-legacy][data-icon-name=fire]::before{content:"\f22f"}[data-icon-set=uib-legacy][data-icon-name=firefighter-arrived]::before{content:"\f230";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=firefighter-arrived]::after{content:"\f4d7";color:#000}[data-icon-set=uib-legacy][data-icon-name=firefighter-arrived] span::before{content:"\f232"}[data-icon-set=uib-legacy][data-icon-name=firefighter-en-route]::before{content:"\f233"}[data-icon-set=uib-legacy][data-icon-name=firefighter-retreat]::before{content:"\f234"}[data-icon-set=uib-legacy][data-icon-name=firefighter-standby]::before{content:"\f235"}[data-icon-set=uib-legacy][data-icon-name=flame-5000]::before{content:"\f236"}[data-icon-set=uib-legacy][data-icon-name=flammable-a1]::before{content:"\f239";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=flammable-a1]::after{content:"\f23a"}[data-icon-set=uib-legacy][data-icon-name=flammable-a1] span::before{content:"\f4d9";color:#000}[data-icon-set=uib-legacy][data-icon-name=flammable-a2]::before{content:"\f23c";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=flammable-a2]::after{content:"\f23d"}[data-icon-set=uib-legacy][data-icon-name=flammable-a2] span::before{content:"\f4da";color:#000}[data-icon-set=uib-legacy][data-icon-name=flammable-stel]::before{content:"\f23f";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=flammable-stel]::after{content:"\f240"}[data-icon-set=uib-legacy][data-icon-name=flammable-stel] span::before{content:"\f4db";color:#000}[data-icon-set=uib-legacy][data-icon-name=flammable-twa]::before{content:"\f242";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=flammable-twa]::after{content:"\f4dc";color:#000}[data-icon-set=uib-legacy][data-icon-name=flammable-twa] span::before{content:"\f244"}[data-icon-set=uib-legacy][data-icon-name=flammable]::before{content:"\f237";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=flammable]::after{content:"\f4d8";color:#000}[data-icon-set=uib-legacy][data-icon-name=floorplan]::before{content:"\f247"}[data-icon-set=uib-legacy][data-icon-name=floorplan-hallway]::before{content:"\f245"}[data-icon-set=uib-legacy][data-icon-name=floorplan-room]::before{content:"\f246"}[data-icon-set=uib-legacy][data-icon-name=focus-element]::before{content:"\f248"}[data-icon-set=uib-legacy][data-icon-name=folder]::before{content:"\f4de"}[data-icon-set=uib-legacy][data-icon-name=folder-open]::before{content:"\f4dd"}[data-icon-set=uib-legacy][data-icon-name=fraction-00-10]::before{content:"\f249"}[data-icon-set=uib-legacy][data-icon-name=fraction-01-10]::before{content:"\f24a"}[data-icon-set=uib-legacy][data-icon-name=fraction-02-10]::before{content:"\f24b"}[data-icon-set=uib-legacy][data-icon-name=fraction-03-10]::before{content:"\f24c"}[data-icon-set=uib-legacy][data-icon-name=fraction-04-10]::before{content:"\f24d"}[data-icon-set=uib-legacy][data-icon-name=fraction-05-10]::before{content:"\f24e"}[data-icon-set=uib-legacy][data-icon-name=fraction-06-10]::before{content:"\f24f"}[data-icon-set=uib-legacy][data-icon-name=fraction-07-10]::before{content:"\f250"}[data-icon-set=uib-legacy][data-icon-name=fraction-08-10]::before{content:"\f251"}[data-icon-set=uib-legacy][data-icon-name=fraction-09-10]::before{content:"\f252"}[data-icon-set=uib-legacy][data-icon-name=fraction-10-10]::before{content:"\f253"}[data-icon-set=uib-legacy][data-icon-name=freshair]::before{content:"\f255"}[data-icon-set=uib-legacy][data-icon-name=freshair-calibration]::before{content:"\f254"}[data-icon-set=uib-legacy][data-icon-name=full-circle]::before{content:"\f256"}[data-icon-set=uib-legacy][data-icon-name=fullscreen]::before{content:"\f4e0"}[data-icon-set=uib-legacy][data-icon-name=fullscreen-exit]::before{content:"\f4df"}[data-icon-set=uib-legacy][data-icon-name=gas-consumption]::before{content:"\f257"}[data-icon-set=uib-legacy][data-icon-name=gas-efficiency]::before{content:"\f258"}[data-icon-set=uib-legacy][data-icon-name=gas-patient]::before{content:"\f259"}[data-icon-set=uib-legacy][data-icon-name=gasbottle-100-percent]::before{content:"\f25a"}[data-icon-set=uib-legacy][data-icon-name=gasbottle-25-percent]::before{content:"\f25b"}[data-icon-set=uib-legacy][data-icon-name=gasbottle-50-percent]::before{content:"\f25c"}[data-icon-set=uib-legacy][data-icon-name=gasbottle-75-percent]::before{content:"\f25d"}[data-icon-set=uib-legacy][data-icon-name=gasbottle-information]::before{content:"\f25e"}[data-icon-set=uib-legacy][data-icon-name=gasbottle-low]::before{content:"\f25f"}[data-icon-set=uib-legacy][data-icon-name=gasbottle-warning]::before{content:"\f260";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=gasbottle-warning]::after{content:"\f261"}[data-icon-set=uib-legacy][data-icon-name=gasbottle-warning] span::before{content:"\f4e1";color:#000}[data-icon-set=uib-legacy][data-icon-name=glove]::before{content:"\f263"}[data-icon-set=uib-legacy][data-icon-name=go-to-assets]::before{content:"\f264"}[data-icon-set=uib-legacy][data-icon-name=graph-settings]::before{content:"\f265"}[data-icon-set=uib-legacy][data-icon-name=graph-view]::before{content:"\f266"}[data-icon-set=uib-legacy][data-icon-name=group]::before{content:"\f267"}[data-icon-set=uib-legacy][data-icon-name=halfmask]::before{content:"\f268"}[data-icon-set=uib-legacy][data-icon-name=hardware]::before{content:"\f271"}[data-icon-set=uib-legacy][data-icon-name=hardware-available]::before{content:"\f269";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=hardware-available]::after{content:"\f4e2";color:#000}[data-icon-set=uib-legacy][data-icon-name=hardware-available] span::before{content:"\f26b"}[data-icon-set=uib-legacy][data-icon-name=hardware-info]::before{content:"\f26c"}[data-icon-set=uib-legacy][data-icon-name=hardware-missing]::before{content:"\f26d";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=hardware-missing]::after{content:"\f26e";color:#fff}[data-icon-set=uib-legacy][data-icon-name=hardware-missing] span::before{content:"\f26f"}[data-icon-set=uib-legacy][data-icon-name=hardware-update]::before{content:"\f270"}[data-icon-set=uib-legacy][data-icon-name=harness]::before{content:"\f272"}[data-icon-set=uib-legacy][data-icon-name=helmet]::before{content:"\f274"}[data-icon-set=uib-legacy][data-icon-name=helmet-fire]::before{content:"\f273"}[data-icon-set=uib-legacy][data-icon-name=help]::before{content:"\f4e3"}[data-icon-set=uib-legacy][data-icon-name=hierarchy]::before{content:"\f275"}[data-icon-set=uib-legacy][data-icon-name=history]::before{content:"\f276"}[data-icon-set=uib-legacy][data-icon-name=hook]::before{content:"\f277"}[data-icon-set=uib-legacy][data-icon-name=hose]::before{content:"\f278"}[data-icon-set=uib-legacy][data-icon-name=hot]::before{content:"\f279"}[data-icon-set=uib-legacy][data-icon-name=hydrant]::before{content:"\f27a"}[data-icon-set=uib-legacy][data-icon-name=hydraulic]::before{content:"\f27b"}[data-icon-set=uib-legacy][data-icon-name=hysteresis]::before{content:"\f27c"}[data-icon-set=uib-legacy][data-icon-name=identify]::before{content:"\f27d"}[data-icon-set=uib-legacy][data-icon-name=ifu]::before{content:"\f27e"}[data-icon-set=uib-legacy][data-icon-name=imaging-ang]::before{content:"\f27f"}[data-icon-set=uib-legacy][data-icon-name=imaging-ct]::before{content:"\f280"}[data-icon-set=uib-legacy][data-icon-name=imaging-mrt]::before{content:"\f281"}[data-icon-set=uib-legacy][data-icon-name=imd]::before{content:"\f282"}[data-icon-set=uib-legacy][data-icon-name=import]::before{content:"\f4e4"}[data-icon-set=uib-legacy][data-icon-name=import-substance]::before{content:"\f283"}[data-icon-set=uib-legacy][data-icon-name=in-process]::before{content:"\f284"}[data-icon-set=uib-legacy][data-icon-name=index-card]::before{content:"\f285"}[data-icon-set=uib-legacy][data-icon-name=inerting]::before{content:"\f286"}[data-icon-set=uib-legacy][data-icon-name=inflate-breathing-bag]::before{content:"\f287"}[data-icon-set=uib-legacy][data-icon-name=information]::before{content:"\f289"}[data-icon-set=uib-legacy][data-icon-name=information-maintenance]::before{content:"\f288"}[data-icon-set=uib-legacy][data-icon-name=inhibit]::before{content:"\f28a"}[data-icon-set=uib-legacy][data-icon-name=insert]::before{content:"\f28b"}[data-icon-set=uib-legacy][data-icon-name=instrument-error]::before{content:"\f28e"}[data-icon-set=uib-legacy][data-icon-name=instrument-error]::after{content:"\f28c";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=instrument-error] span::before{content:"\f28d";color:#fff}[data-icon-set=uib-legacy][data-icon-name=instrument-pump-error]::before{content:"\f291"}[data-icon-set=uib-legacy][data-icon-name=instrument-pump-error]::after{content:"\f28f";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=instrument-pump-error] span::before{content:"\f290";color:#fff}[data-icon-set=uib-legacy][data-icon-name=instrument-xdock-error]::before{content:"\f294"}[data-icon-set=uib-legacy][data-icon-name=instrument-xdock-error]::after{content:"\f292";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=instrument-xdock-error] span::before{content:"\f293";color:#fff}[data-icon-set=uib-legacy][data-icon-name=interface-in-4-20]::before{content:"\f295"}[data-icon-set=uib-legacy][data-icon-name=interface-in-bridge]::before{content:"\f296"}[data-icon-set=uib-legacy][data-icon-name=interface-in-digital]::before{content:"\f297"}[data-icon-set=uib-legacy][data-icon-name=interface-in-ex]::before{content:"\f298"}[data-icon-set=uib-legacy][data-icon-name=interface-in-foundation-fieldbus]::before{content:"\f299"}[data-icon-set=uib-legacy][data-icon-name=interface-in-hart]::before{content:"\f29b"}[data-icon-set=uib-legacy][data-icon-name=interface-in-hart-multidrop]::before{content:"\f29a"}[data-icon-set=uib-legacy][data-icon-name=interface-in-modbus]::before{content:"\f29c"}[data-icon-set=uib-legacy][data-icon-name=interface-in-profibus]::before{content:"\f29d"}[data-icon-set=uib-legacy][data-icon-name=interface-input]::before{content:"\f29e"}[data-icon-set=uib-legacy][data-icon-name=interface-out-4-20]::before{content:"\f29f"}[data-icon-set=uib-legacy][data-icon-name=interface-out-digital]::before{content:"\f2a0"}[data-icon-set=uib-legacy][data-icon-name=interface-out-foundation-fieldbus]::before{content:"\f2a1"}[data-icon-set=uib-legacy][data-icon-name=interface-out-modbus]::before{content:"\f2a2"}[data-icon-set=uib-legacy][data-icon-name=interface-out-profibus]::before{content:"\f2a3"}[data-icon-set=uib-legacy][data-icon-name=interface-out-relay]::before{content:"\f2a4"}[data-icon-set=uib-legacy][data-icon-name=interface-output]::before{content:"\f2a5"}[data-icon-set=uib-legacy][data-icon-name=interface-slotcover]::before{content:"\f2a6"}[data-icon-set=uib-legacy][data-icon-name=interface-unknown]::before{content:"\f2a7"}[data-icon-set=uib-legacy][data-icon-name=interlock]::before{content:"\f2ad"}[data-icon-set=uib-legacy][data-icon-name=interlock-calibration]::before{content:"\f2a8"}[data-icon-set=uib-legacy][data-icon-name=interlock-installation]::before{content:"\f2a9"}[data-icon-set=uib-legacy][data-icon-name=interlock-removal]::before{content:"\f2aa"}[data-icon-set=uib-legacy][data-icon-name=interlock-reset]::before{content:"\f2ab"}[data-icon-set=uib-legacy][data-icon-name=interlock-swap]::before{content:"\f2ac"}[data-icon-set=uib-legacy][data-icon-name=ir]::before{content:"\f2ae"}[data-icon-set=uib-legacy][data-icon-name=job-approve]::before{content:"\f2b1"}[data-icon-set=uib-legacy][data-icon-name=job-approve]::after{content:"\f2af";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=job-approve] span::before{content:"\f4e5";color:#000}[data-icon-set=uib-legacy][data-icon-name=job-history]::before{content:"\f2b2"}[data-icon-set=uib-legacy][data-icon-name=job-list]::before{content:"\f2b3"}[data-icon-set=uib-legacy][data-icon-name=job-new]::before{content:"\f2b5"}[data-icon-set=uib-legacy][data-icon-name=job-pool]::before{content:"\f2b6"}[data-icon-set=uib-legacy][data-icon-name=job-proceed]::before{content:"\f2b7"}[data-icon-set=uib-legacy][data-icon-name=job-user]::before{content:"\f2b8"}[data-icon-set=uib-legacy][data-icon-name=keyboard]::before{content:"\f2bd"}[data-icon-set=uib-legacy][data-icon-name=keyboard-capslock]::before{content:"\f2b9"}[data-icon-set=uib-legacy][data-icon-name=keyboard-delete]::before{content:"\f2ba"}[data-icon-set=uib-legacy][data-icon-name=keyboard-hide]::before{content:"\f2bb"}[data-icon-set=uib-legacy][data-icon-name=keyboard-shift]::before{content:"\f2bc"}[data-icon-set=uib-legacy][data-icon-name=language]::before{content:"\f4e6"}[data-icon-set=uib-legacy][data-icon-name=laptop]::before{content:"\f2be"}[data-icon-set=uib-legacy][data-icon-name=laundry-dryer]::before{content:"\f2bf"}[data-icon-set=uib-legacy][data-icon-name=ldba]::before{content:"\f2c0"}[data-icon-set=uib-legacy][data-icon-name=leaktest-hp]::before{content:"\f2c2"}[data-icon-set=uib-legacy][data-icon-name=leaktest-hp-query]::before{content:"\f2c1"}[data-icon-set=uib-legacy][data-icon-name=leaktest-lp]::before{content:"\f2c4"}[data-icon-set=uib-legacy][data-icon-name=leaktest-lp-query]::before{content:"\f2c3"}[data-icon-set=uib-legacy][data-icon-name=leaktest-ok]::before{content:"\f2c7"}[data-icon-set=uib-legacy][data-icon-name=leaktest-ok]::after{content:"\f2c5";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=leaktest-ok] span::before{content:"\f4e7";color:#000}[data-icon-set=uib-legacy][data-icon-name=leaktest-query]::before{content:"\f2c8"}[data-icon-set=uib-legacy][data-icon-name=leaktest-run]::before{content:"\f2c9"}[data-icon-set=uib-legacy][data-icon-name=leaktest-timeout]::before{content:"\f2cc"}[data-icon-set=uib-legacy][data-icon-name=leaktest-timeout]::after{content:"\f2ca";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=leaktest-timeout] span::before{content:"\f2cb";color:#fff}[data-icon-set=uib-legacy][data-icon-name=leaktest-warning]::before{content:"\f2cf"}[data-icon-set=uib-legacy][data-icon-name=leaktest-warning]::after{content:"\f2cd";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=leaktest-warning] span::before{content:"\f4e8";color:#000}[data-icon-set=uib-legacy][data-icon-name=lifesignal]::before{content:"\f2d1"}[data-icon-set=uib-legacy][data-icon-name=lifesignal-disabled]::before{content:"\f2d0"}[data-icon-set=uib-legacy][data-icon-name=lightbulb]::before{content:"\f2d5"}[data-icon-set=uib-legacy][data-icon-name=lightbulb-warning]::before{content:"\f4eb"}[data-icon-set=uib-legacy][data-icon-name=lightbulb-warning]::after{content:"\f4e9";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=lightbulb-warning] span::before{content:"\f4ea";color:#000}[data-icon-set=uib-legacy][data-icon-name=line-graph]::before{content:"\f2d6"}[data-icon-set=uib-legacy][data-icon-name=link-external]::before{content:"\f4ec"}[data-icon-set=uib-legacy][data-icon-name=link-internal]::before{content:"\f4ed"}[data-icon-set=uib-legacy][data-icon-name=location]::before{content:"\f4f6"}[data-icon-set=uib-legacy][data-icon-name=location-disabled]::before{content:"\f4ee"}[data-icon-set=uib-legacy][data-icon-name=location-scan]::before{content:"\f4f5"}[data-icon-set=uib-legacy][data-icon-name=location-scan-failed]::before{content:"\f4f1"}[data-icon-set=uib-legacy][data-icon-name=location-scan-failed]::after{content:"\f4ef";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=location-scan-failed] span::before{content:"\f4f0";color:#fff}[data-icon-set=uib-legacy][data-icon-name=location-scan-success]::before{content:"\f4f4"}[data-icon-set=uib-legacy][data-icon-name=location-scan-success]::after{content:"\f4f2";color:#000}[data-icon-set=uib-legacy][data-icon-name=location-scan-success] span::before{content:"\f4f3";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=lock]::before{content:"\f4f7"}[data-icon-set=uib-legacy][data-icon-name=log-edit]::before{content:"\f2d7"}[data-icon-set=uib-legacy][data-icon-name=log-service]::before{content:"\f2d8"}[data-icon-set=uib-legacy][data-icon-name=log-view]::before{content:"\f2d9"}[data-icon-set=uib-legacy][data-icon-name=login]::before{content:"\f2dc"}[data-icon-set=uib-legacy][data-icon-name=login]::after{content:"\f2da";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=login] span::before{content:"\f4f8";color:#000}[data-icon-set=uib-legacy][data-icon-name=logout]::before{content:"\f2df"}[data-icon-set=uib-legacy][data-icon-name=logout]::after{content:"\f2dd";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=logout] span::before{content:"\f2de";color:#fff}[data-icon-set=uib-legacy][data-icon-name=long-distance-gate-way]::before{content:"\f2e0"}[data-icon-set=uib-legacy][data-icon-name=lost-report]::before{content:"\f2e1"}[data-icon-set=uib-legacy][data-icon-name=low-dosage-rate]::before{content:"\f2e2"}[data-icon-set=uib-legacy][data-icon-name=manual-input]::before{content:"\f2e3"}[data-icon-set=uib-legacy][data-icon-name=map]::before{content:"\f4f9"}[data-icon-set=uib-legacy][data-icon-name=masonry]::before{content:"\f2e4"}[data-icon-set=uib-legacy][data-icon-name=maximize]::before{content:"\f2e5"}[data-icon-set=uib-legacy][data-icon-name=measuring]::before{content:"\f2e9"}[data-icon-set=uib-legacy][data-icon-name=measuring-1]::before{content:"\f2e6"}[data-icon-set=uib-legacy][data-icon-name=measuring-2]::before{content:"\f2e7"}[data-icon-set=uib-legacy][data-icon-name=measuring-3]::before{content:"\f2e8"}[data-icon-set=uib-legacy][data-icon-name=media-fastforward]::before{content:"\f4fa"}[data-icon-set=uib-legacy][data-icon-name=media-pause]::before{content:"\f4fb"}[data-icon-set=uib-legacy][data-icon-name=media-play]::before{content:"\f4fc"}[data-icon-set=uib-legacy][data-icon-name=media-rewind]::before{content:"\f4fd"}[data-icon-set=uib-legacy][data-icon-name=media-skip-back]::before{content:"\f4fe"}[data-icon-set=uib-legacy][data-icon-name=media-skip-forward]::before{content:"\f4ff"}[data-icon-set=uib-legacy][data-icon-name=media-stop]::before{content:"\f500"}[data-icon-set=uib-legacy][data-icon-name=medical]::before{content:"\f501"}[data-icon-set=uib-legacy][data-icon-name=menu]::before{content:"\f504"}[data-icon-set=uib-legacy][data-icon-name=menu-favorites]::before{content:"\f502"}[data-icon-set=uib-legacy][data-icon-name=menu-functions]::before{content:"\f503"}[data-icon-set=uib-legacy][data-icon-name=microphone]::before{content:"\f2ea"}[data-icon-set=uib-legacy][data-icon-name=mimic]::before{content:"\f2eb"}[data-icon-set=uib-legacy][data-icon-name=minimize]::before{content:"\f2ec"}[data-icon-set=uib-legacy][data-icon-name=miniwarn]::before{content:"\f2ed"}[data-icon-set=uib-legacy][data-icon-name=minus]::before{content:"\f2ee"}[data-icon-set=uib-legacy][data-icon-name=mobile-device]::before{content:"\f2f5"}[data-icon-set=uib-legacy][data-icon-name=mobile-device-connected]::before{content:"\f2f1"}[data-icon-set=uib-legacy][data-icon-name=mobile-device-connected]::after{content:"\f2ef";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=mobile-device-connected] span::before{content:"\f505";color:#000}[data-icon-set=uib-legacy][data-icon-name=mobile-device-error]::before{content:"\f2f2";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=mobile-device-error]::after{content:"\f2f3";color:#fff}[data-icon-set=uib-legacy][data-icon-name=mobile-device-error] span::before{content:"\f2f4"}[data-icon-set=uib-legacy][data-icon-name=module]::before{content:"\f2f6"}[data-icon-set=uib-legacy][data-icon-name=monitoring]::before{content:"\f2fa"}[data-icon-set=uib-legacy][data-icon-name=monitoring-1]::before{content:"\f2f7"}[data-icon-set=uib-legacy][data-icon-name=monitoring-2]::before{content:"\f2f8"}[data-icon-set=uib-legacy][data-icon-name=monitoring-3]::before{content:"\f2f9"}[data-icon-set=uib-legacy][data-icon-name=motion-sensing]::before{content:"\f301"}[data-icon-set=uib-legacy][data-icon-name=motion-sensing-disabled]::before{content:"\f2fb";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=motion-sensing-disabled]::after{content:"\f2fc";color:#fff}[data-icon-set=uib-legacy][data-icon-name=motion-sensing-disabled] span::before{content:"\f2fd"}[data-icon-set=uib-legacy][data-icon-name=motion-sensing-enabled]::before{content:"\f2fe";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=motion-sensing-enabled]::after{content:"\f506";color:#000}[data-icon-set=uib-legacy][data-icon-name=motion-sensing-enabled] span::before{content:"\f300"}[data-icon-set=uib-legacy][data-icon-name=move]::before{content:"\f303"}[data-icon-set=uib-legacy][data-icon-name=move-screen]::before{content:"\f302"}[data-icon-set=uib-legacy][data-icon-name=multigas]::before{content:"\f305"}[data-icon-set=uib-legacy][data-icon-name=multigas-cse]::before{content:"\f304"}[data-icon-set=uib-legacy][data-icon-name=multiwarn-2]::before{content:"\f306"}[data-icon-set=uib-legacy][data-icon-name=navigation-logfile-management]::before{content:"\f507"}[data-icon-set=uib-legacy][data-icon-name=navigation-logfile-management]::after{content:"\f508"}[data-icon-set=uib-legacy][data-icon-name=network]::before{content:"\f309"}[data-icon-set=uib-legacy][data-icon-name=network-upload]::before{content:"\f308"}[data-icon-set=uib-legacy][data-icon-name=newsletter]::before{content:"\f509"}[data-icon-set=uib-legacy][data-icon-name=next]::before{content:"\f50a"}[data-icon-set=uib-legacy][data-icon-name=night-mode]::before{content:"\f50b"}[data-icon-set=uib-legacy][data-icon-name=no]::before{content:"\f30a"}[data-icon-set=uib-legacy][data-icon-name=notification]::before{content:"\f50d"}[data-icon-set=uib-legacy][data-icon-name=notification-disabled]::before{content:"\f50c"}[data-icon-set=uib-legacy][data-icon-name=number-1]::before{content:"\f30b"}[data-icon-set=uib-legacy][data-icon-name=number-100]::before{content:"\f30c"}[data-icon-set=uib-legacy][data-icon-name=observation]::before{content:"\f30e"}[data-icon-set=uib-legacy][data-icon-name=observation-fire]::before{content:"\f30d"}[data-icon-set=uib-legacy][data-icon-name=offline-mode]::before{content:"\f30f"}[data-icon-set=uib-legacy][data-icon-name=ok]::before{content:"\f50e"}[data-icon-set=uib-legacy][data-icon-name=ok-repeat]::before{content:"\f310"}[data-icon-set=uib-legacy][data-icon-name=ok-to-all]::before{content:"\f311";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=ok-to-all]::after{content:"\f312"}[data-icon-set=uib-legacy][data-icon-name=online-manuals]::before{content:"\f313"}[data-icon-set=uib-legacy][data-icon-name=online-mode]::before{content:"\f314";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=online-mode]::after{content:"\f50f";color:#000}[data-icon-set=uib-legacy][data-icon-name=online-mode] span::before{content:"\f316"}[data-icon-set=uib-legacy][data-icon-name=open]::before{content:"\f317"}[data-icon-set=uib-legacy][data-icon-name=operation]::before{content:"\f319"}[data-icon-set=uib-legacy][data-icon-name=operation-hot]::before{content:"\f318"}[data-icon-set=uib-legacy][data-icon-name=overrange]::before{content:"\f31a"}[data-icon-set=uib-legacy][data-icon-name=overwrite-replace]::before{content:"\f31b"}[data-icon-set=uib-legacy][data-icon-name=p5000]::before{content:"\f31c"}[data-icon-set=uib-legacy][data-icon-name=p8000]::before{content:"\f31d"}[data-icon-set=uib-legacy][data-icon-name=pac-1000-7000]::before{content:"\f31e"}[data-icon-set=uib-legacy][data-icon-name=pac-3]::before{content:"\f31f"}[data-icon-set=uib-legacy][data-icon-name=pac-ex-2]::before{content:"\f320"}[data-icon-set=uib-legacy][data-icon-name=package]::before{content:"\f321"}[data-icon-set=uib-legacy][data-icon-name=painting]::before{content:"\f322"}[data-icon-set=uib-legacy][data-icon-name=pairing]::before{content:"\f510"}[data-icon-set=uib-legacy][data-icon-name=partner-care]::before{content:"\f323"}[data-icon-set=uib-legacy][data-icon-name=password]::before{content:"\f512"}[data-icon-set=uib-legacy][data-icon-name=password-change]::before{content:"\f511"}[data-icon-set=uib-legacy][data-icon-name=pc]::before{content:"\f32d"}[data-icon-set=uib-legacy][data-icon-name=pc-connection]::before{content:"\f324"}[data-icon-set=uib-legacy][data-icon-name=pc-link-connected]::before{content:"\f325";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=pc-link-connected]::after{content:"\f513";color:#000}[data-icon-set=uib-legacy][data-icon-name=pc-link-connected] span::before{content:"\f327"}[data-icon-set=uib-legacy][data-icon-name=pc-link-error]::before{content:"\f328";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=pc-link-error]::after{content:"\f329";color:#fff}[data-icon-set=uib-legacy][data-icon-name=pc-link-error] span::before{content:"\f32a"}[data-icon-set=uib-legacy][data-icon-name=pc-link-preparing]::before{content:"\f32b"}[data-icon-set=uib-legacy][data-icon-name=pc-link-query]::before{content:"\f32c"}[data-icon-set=uib-legacy][data-icon-name=pdf]::before{content:"\f32e"}[data-icon-set=uib-legacy][data-icon-name=person-confirm]::before{content:"\f32f";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=person-confirm]::after{content:"\f514";color:#000}[data-icon-set=uib-legacy][data-icon-name=person-confirm] span::before{content:"\f331"}[data-icon-set=uib-legacy][data-icon-name=person-crawling]::before{content:"\f332"}[data-icon-set=uib-legacy][data-icon-name=person-query]::before{content:"\f333"}[data-icon-set=uib-legacy][data-icon-name=person-standing]::before{content:"\f334"}[data-icon-set=uib-legacy][data-icon-name=person-walking]::before{content:"\f335"}[data-icon-set=uib-legacy][data-icon-name=phone]::before{content:"\f515"}[data-icon-set=uib-legacy][data-icon-name=photo]::before{content:"\f516"}[data-icon-set=uib-legacy][data-icon-name=picture]::before{content:"\f517"}[data-icon-set=uib-legacy][data-icon-name=pie-chart]::before{content:"\f336"}[data-icon-set=uib-legacy][data-icon-name=pincode]::before{content:"\f337"}[data-icon-set=uib-legacy][data-icon-name=pir-7000]::before{content:"\f338"}[data-icon-set=uib-legacy][data-icon-name=plus]::before{content:"\f339"}[data-icon-set=uib-legacy][data-icon-name=pneumatic]::before{content:"\f33a"}[data-icon-set=uib-legacy][data-icon-name=polytron-7000]::before{content:"\f33b"}[data-icon-set=uib-legacy][data-icon-name=position]::before{content:"\f51a"}[data-icon-set=uib-legacy][data-icon-name=position-disabled]::before{content:"\f518"}[data-icon-set=uib-legacy][data-icon-name=position-searching]::before{content:"\f519"}[data-icon-set=uib-legacy][data-icon-name=power-guard]::before{content:"\f33c"}[data-icon-set=uib-legacy][data-icon-name=power-supply]::before{content:"\f340"}[data-icon-set=uib-legacy][data-icon-name=power-supply-restricted]::before{content:"\f33d";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=power-supply-restricted]::after{content:"\f33e"}[data-icon-set=uib-legacy][data-icon-name=power-supply-restricted] span::before{content:"\f51b";color:#000}[data-icon-set=uib-legacy][data-icon-name=powerplant]::before{content:"\f341"}[data-icon-set=uib-legacy][data-icon-name=practice]::before{content:"\f343"}[data-icon-set=uib-legacy][data-icon-name=practice-hot]::before{content:"\f342"}[data-icon-set=uib-legacy][data-icon-name=prepressure-high]::before{content:"\f345"}[data-icon-set=uib-legacy][data-icon-name=prepressure-high]::after{content:"\f344";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=prepressure-low]::before{content:"\f346";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=prepressure-low]::after{content:"\f347"}[data-icon-set=uib-legacy][data-icon-name=prepressure-ok]::before{content:"\f348";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=prepressure-ok]::after{content:"\f349"}[data-icon-set=uib-legacy][data-icon-name=prepressure-ok] span::before{content:"\f51c";color:#000}[data-icon-set=uib-legacy][data-icon-name=prepressure-pending]::before{content:"\f34b"}[data-icon-set=uib-legacy][data-icon-name=pressure-relief]::before{content:"\f34c"}[data-icon-set=uib-legacy][data-icon-name=previous]::before{content:"\f51d"}[data-icon-set=uib-legacy][data-icon-name=print]::before{content:"\f528"}[data-icon-set=uib-legacy][data-icon-name=print-configuration]::before{content:"\f51e"}[data-icon-set=uib-legacy][data-icon-name=print-error]::before{content:"\f521"}[data-icon-set=uib-legacy][data-icon-name=print-error]::after{content:"\f51f";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=print-error] span::before{content:"\f520";color:#fff}[data-icon-set=uib-legacy][data-icon-name=print-finished]::before{content:"\f522"}[data-icon-set=uib-legacy][data-icon-name=print-preview]::before{content:"\f523"}[data-icon-set=uib-legacy][data-icon-name=print-selection]::before{content:"\f524"}[data-icon-set=uib-legacy][data-icon-name=print-warning]::before{content:"\f525";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=print-warning]::after{content:"\f526";color:#000}[data-icon-set=uib-legacy][data-icon-name=print-warning] span::before{content:"\f527"}[data-icon-set=uib-legacy][data-icon-name=process]::before{content:"\f34d"}[data-icon-set=uib-legacy][data-icon-name=product-finder]::before{content:"\f34e"}[data-icon-set=uib-legacy][data-icon-name=production]::before{content:"\f34f"}[data-icon-set=uib-legacy][data-icon-name=progress]::before{content:"\f352"}[data-icon-set=uib-legacy][data-icon-name=progress-circle]::before{content:"\f351"}[data-icon-set=uib-legacy][data-icon-name=progress-circle]::after{content:"\f529";color:#0074ff}[data-icon-set=uib-legacy][data-icon-name=pulsar]::before{content:"\f353"}[data-icon-set=uib-legacy][data-icon-name=pump]::before{content:"\f35a"}[data-icon-set=uib-legacy][data-icon-name=pump-100-percent]::before{content:"\f354"}[data-icon-set=uib-legacy][data-icon-name=pump-25-percent]::before{content:"\f355"}[data-icon-set=uib-legacy][data-icon-name=pump-50-percent]::before{content:"\f356"}[data-icon-set=uib-legacy][data-icon-name=pump-75-percent]::before{content:"\f357"}[data-icon-set=uib-legacy][data-icon-name=pump-adapter-magnetic]::before{content:"\f358"}[data-icon-set=uib-legacy][data-icon-name=pump-low]::before{content:"\f359"}[data-icon-set=uib-legacy][data-icon-name=rack]::before{content:"\f35c"}[data-icon-set=uib-legacy][data-icon-name=rack-mobile]::before{content:"\f35b"}[data-icon-set=uib-legacy][data-icon-name=radiation-protection-device]::before{content:"\f35d"}[data-icon-set=uib-legacy][data-icon-name=radio-button-active]::before{content:"\f35e";color:#fff}[data-icon-set=uib-legacy][data-icon-name=radio-button-active]::after{content:"\f52a";color:#0074ff}[data-icon-set=uib-legacy][data-icon-name=radio-button-default]::before{content:"\f360"}[data-icon-set=uib-legacy][data-icon-name=radiocircuit]::before{content:"\f361"}[data-icon-set=uib-legacy][data-icon-name=rebuild]::before{content:"\f362"}[data-icon-set=uib-legacy][data-icon-name=recording]::before{content:"\f52b"}[data-icon-set=uib-legacy][data-icon-name=recycling]::before{content:"\f363"}[data-icon-set=uib-legacy][data-icon-name=redo]::before{content:"\f52c"}[data-icon-set=uib-legacy][data-icon-name=regard-1000]::before{content:"\f364"}[data-icon-set=uib-legacy][data-icon-name=regard-3000]::before{content:"\f365"}[data-icon-set=uib-legacy][data-icon-name=relay-switch-closed]::before{content:"\f366"}[data-icon-set=uib-legacy][data-icon-name=relay-switch-open]::before{content:"\f367"}[data-icon-set=uib-legacy][data-icon-name=reload]::before{content:"\f52e"}[data-icon-set=uib-legacy][data-icon-name=reload-required]::before{content:"\f52d"}[data-icon-set=uib-legacy][data-icon-name=relocate]::before{content:"\f52f"}[data-icon-set=uib-legacy][data-icon-name=remote]::before{content:"\f369"}[data-icon-set=uib-legacy][data-icon-name=remote-transmission]::before{content:"\f368"}[data-icon-set=uib-legacy][data-icon-name=remove]::before{content:"\f36a"}[data-icon-set=uib-legacy][data-icon-name=reorganisation]::before{content:"\f36b"}[data-icon-set=uib-legacy][data-icon-name=resend]::before{content:"\f530"}[data-icon-set=uib-legacy][data-icon-name=reset]::before{content:"\f531"}[data-icon-set=uib-legacy][data-icon-name=resources]::before{content:"\f36c"}[data-icon-set=uib-legacy][data-icon-name=rfid]::before{content:"\f36d"}[data-icon-set=uib-legacy][data-icon-name=rise-time-error]::before{content:"\f370"}[data-icon-set=uib-legacy][data-icon-name=rise-time-error]::after{content:"\f36e";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=rise-time-error] span::before{content:"\f36f";color:#fff}[data-icon-set=uib-legacy][data-icon-name=roofing]::before{content:"\f371"}[data-icon-set=uib-legacy][data-icon-name=rope]::before{content:"\f372"}[data-icon-set=uib-legacy][data-icon-name=saddle-roof]::before{content:"\f373"}[data-icon-set=uib-legacy][data-icon-name=safer]::before{content:"\f374"}[data-icon-set=uib-legacy][data-icon-name=save]::before{content:"\f533"}[data-icon-set=uib-legacy][data-icon-name=save-as]::before{content:"\f532"}[data-icon-set=uib-legacy][data-icon-name=saw]::before{content:"\f375"}[data-icon-set=uib-legacy][data-icon-name=sbom]::before{content:"\f534"}[data-icon-set=uib-legacy][data-icon-name=scba]::before{content:"\f376"}[data-icon-set=uib-legacy][data-icon-name=scroll-grip]::before{content:"\f377"}[data-icon-set=uib-legacy][data-icon-name=scroll-page-down]::before{content:"\f378"}[data-icon-set=uib-legacy][data-icon-name=scroll-page-up]::before{content:"\f379"}[data-icon-set=uib-legacy][data-icon-name=scsr]::before{content:"\f37a"}[data-icon-set=uib-legacy][data-icon-name=search]::before{content:"\f53b"}[data-icon-set=uib-legacy][data-icon-name=search-activate]::before{content:"\f535"}[data-icon-set=uib-legacy][data-icon-name=search-close]::before{content:"\f536"}[data-icon-set=uib-legacy][data-icon-name=search-next]::before{content:"\f537"}[data-icon-set=uib-legacy][data-icon-name=search-previous]::before{content:"\f538"}[data-icon-set=uib-legacy][data-icon-name=search-save]::before{content:"\f539"}[data-icon-set=uib-legacy][data-icon-name=search-service]::before{content:"\f53a"}[data-icon-set=uib-legacy][data-icon-name=searching]::before{content:"\f53f"}[data-icon-set=uib-legacy][data-icon-name=searching-1]::before{content:"\f53c"}[data-icon-set=uib-legacy][data-icon-name=searching-2]::before{content:"\f53d"}[data-icon-set=uib-legacy][data-icon-name=searching-3]::before{content:"\f53e"}[data-icon-set=uib-legacy][data-icon-name=send]::before{content:"\f546"}[data-icon-set=uib-legacy][data-icon-name=send-error]::before{content:"\f542"}[data-icon-set=uib-legacy][data-icon-name=send-error]::after{content:"\f540";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=send-error] span::before{content:"\f541";color:#fff}[data-icon-set=uib-legacy][data-icon-name=send-success]::before{content:"\f545"}[data-icon-set=uib-legacy][data-icon-name=send-success]::after{content:"\f543";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=send-success] span::before{content:"\f544";color:#000}[data-icon-set=uib-legacy][data-icon-name=sending]::before{content:"\f547"}[data-icon-set=uib-legacy][data-icon-name=sensor-100-percent]::before{content:"\f37b"}[data-icon-set=uib-legacy][data-icon-name=sensor-25-percent]::before{content:"\f37c"}[data-icon-set=uib-legacy][data-icon-name=sensor-50-percent]::before{content:"\f37d"}[data-icon-set=uib-legacy][data-icon-name=sensor-75-percent]::before{content:"\f37e"}[data-icon-set=uib-legacy][data-icon-name=sensor-catex]::before{content:"\f37f"}[data-icon-set=uib-legacy][data-icon-name=sensor-disabled]::before{content:"\f380"}[data-icon-set=uib-legacy][data-icon-name=sensor-ec]::before{content:"\f381"}[data-icon-set=uib-legacy][data-icon-name=sensor-error]::before{content:"\f384"}[data-icon-set=uib-legacy][data-icon-name=sensor-error]::after{content:"\f382";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=sensor-error] span::before{content:"\f383";color:#fff}[data-icon-set=uib-legacy][data-icon-name=sensor-information]::before{content:"\f385"}[data-icon-set=uib-legacy][data-icon-name=sensor-ir]::before{content:"\f386"}[data-icon-set=uib-legacy][data-icon-name=sensor-low]::before{content:"\f387"}[data-icon-set=uib-legacy][data-icon-name=sensor-overheat]::before{content:"\f388"}[data-icon-set=uib-legacy][data-icon-name=sensor-pid]::before{content:"\f389"}[data-icon-set=uib-legacy][data-icon-name=sensor-warning]::before{content:"\f38a";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=sensor-warning]::after{content:"\f38b"}[data-icon-set=uib-legacy][data-icon-name=sensor-warning] span::before{content:"\f548";color:#000}[data-icon-set=uib-legacy][data-icon-name=sensors]::before{content:"\f38d"}[data-icon-set=uib-legacy][data-icon-name=sent]::before{content:"\f549"}[data-icon-set=uib-legacy][data-icon-name=service]::before{content:"\f54a"}[data-icon-set=uib-legacy][data-icon-name=settings]::before{content:"\f554"}[data-icon-set=uib-legacy][data-icon-name=settings-add]::before{content:"\f54b"}[data-icon-set=uib-legacy][data-icon-name=settings-edit]::before{content:"\f54c"}[data-icon-set=uib-legacy][data-icon-name=settings-enter]::before{content:"\f54d"}[data-icon-set=uib-legacy][data-icon-name=settings-leave]::before{content:"\f54e"}[data-icon-set=uib-legacy][data-icon-name=settings-remove]::before{content:"\f54f"}[data-icon-set=uib-legacy][data-icon-name=settings-reset]::before{content:"\f550"}[data-icon-set=uib-legacy][data-icon-name=settings-reset]::after{content:"\f551"}[data-icon-set=uib-legacy][data-icon-name=settings-reset] span::before{content:"\f552";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=settings-reset] span::after{content:"\f553";color:#fff}[data-icon-set=uib-legacy][data-icon-name=share]::before{content:"\f555"}[data-icon-set=uib-legacy][data-icon-name=shoppingcart]::before{content:"\f556"}[data-icon-set=uib-legacy][data-icon-name=shutdown]::before{content:"\f557"}[data-icon-set=uib-legacy][data-icon-name=signal]::before{content:"\f393"}[data-icon-set=uib-legacy][data-icon-name=signal-0-percent]::before{content:"\f38e"}[data-icon-set=uib-legacy][data-icon-name=signal-100-percent]::before{content:"\f38f"}[data-icon-set=uib-legacy][data-icon-name=signal-25-percent]::before{content:"\f390"}[data-icon-set=uib-legacy][data-icon-name=signal-50-percent]::before{content:"\f391"}[data-icon-set=uib-legacy][data-icon-name=signal-75-percent]::before{content:"\f392"}[data-icon-set=uib-legacy][data-icon-name=simulation]::before{content:"\f394"}[data-icon-set=uib-legacy][data-icon-name=sketch]::before{content:"\f395"}[data-icon-set=uib-legacy][data-icon-name=snapshot]::before{content:"\f558"}[data-icon-set=uib-legacy][data-icon-name=sort-ascending]::before{content:"\f559"}[data-icon-set=uib-legacy][data-icon-name=sort-descending]::before{content:"\f55a"}[data-icon-set=uib-legacy][data-icon-name=sos]::before{content:"\f397"}[data-icon-set=uib-legacy][data-icon-name=sos-no-telemetry]::before{content:"\f396"}[data-icon-set=uib-legacy][data-icon-name=spare-parts]::before{content:"\f398"}[data-icon-set=uib-legacy][data-icon-name=speed]::before{content:"\f399"}[data-icon-set=uib-legacy][data-icon-name=sprinkler]::before{content:"\f39a"}[data-icon-set=uib-legacy][data-icon-name=standby]::before{content:"\f55b"}[data-icon-set=uib-legacy][data-icon-name=start-flush]::before{content:"\f39b"}[data-icon-set=uib-legacy][data-icon-name=storage-box]::before{content:"\f39c"}[data-icon-set=uib-legacy][data-icon-name=substance]::before{content:"\f39d"}[data-icon-set=uib-legacy][data-icon-name=substances]::before{content:"\f39e"}[data-icon-set=uib-legacy][data-icon-name=suffocation-a1]::before{content:"\f3a1";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=suffocation-a1]::after{content:"\f55d";color:#000}[data-icon-set=uib-legacy][data-icon-name=suffocation-a1] span::before{content:"\f3a3"}[data-icon-set=uib-legacy][data-icon-name=suffocation-a2]::before{content:"\f3a4";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=suffocation-a2]::after{content:"\f55e";color:#000}[data-icon-set=uib-legacy][data-icon-name=suffocation-a2] span::before{content:"\f3a6"}[data-icon-set=uib-legacy][data-icon-name=suffocation-stel]::before{content:"\f3a7";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=suffocation-stel]::after{content:"\f55f";color:#000}[data-icon-set=uib-legacy][data-icon-name=suffocation-stel] span::before{content:"\f3a9"}[data-icon-set=uib-legacy][data-icon-name=suffocation-twa]::before{content:"\f3aa";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=suffocation-twa]::after{content:"\f3ab"}[data-icon-set=uib-legacy][data-icon-name=suffocation-twa] span::before{content:"\f560";color:#000}[data-icon-set=uib-legacy][data-icon-name=suffocation]::before{content:"\f39f";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=suffocation]::after{content:"\f55c";color:#000}[data-icon-set=uib-legacy][data-icon-name=synchronize]::before{content:"\f561"}[data-icon-set=uib-legacy][data-icon-name=system]::before{content:"\f3b3"}[data-icon-set=uib-legacy][data-icon-name=system-storage-error]::before{content:"\f3af"}[data-icon-set=uib-legacy][data-icon-name=system-storage-error]::after{content:"\f3ad";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=system-storage-error] span::before{content:"\f3ae";color:#fff}[data-icon-set=uib-legacy][data-icon-name=system-storage-warning]::before{content:"\f3b2"}[data-icon-set=uib-legacy][data-icon-name=system-storage-warning]::after{content:"\f562";color:#000}[data-icon-set=uib-legacy][data-icon-name=system-storage-warning] span::before{content:"\f3b1";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=table]::before{content:"\f3b4"}[data-icon-set=uib-legacy][data-icon-name=tablet]::before{content:"\f3b5"}[data-icon-set=uib-legacy][data-icon-name=tag]::before{content:"\f3b6"}[data-icon-set=uib-legacy][data-icon-name=telemetry]::before{content:"\f3c2"}[data-icon-set=uib-legacy][data-icon-name=telemetry-active]::before{content:"\f3b9"}[data-icon-set=uib-legacy][data-icon-name=telemetry-active]::after{content:"\f3b7";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=telemetry-active] span::before{content:"\f563";color:#000}[data-icon-set=uib-legacy][data-icon-name=telemetry-disabled]::before{content:"\f3ba"}[data-icon-set=uib-legacy][data-icon-name=telemetry-error]::before{content:"\f3bd"}[data-icon-set=uib-legacy][data-icon-name=telemetry-error]::after{content:"\f3bb";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=telemetry-error] span::before{content:"\f3bc";color:#fff}[data-icon-set=uib-legacy][data-icon-name=telemetry-search]::before{content:"\f3be"}[data-icon-set=uib-legacy][data-icon-name=telemetry-warning]::before{content:"\f3c1"}[data-icon-set=uib-legacy][data-icon-name=telemetry-warning]::after{content:"\f3bf";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=telemetry-warning] span::before{content:"\f564";color:#000}[data-icon-set=uib-legacy][data-icon-name=temperature-error]::before{content:"\f3c5"}[data-icon-set=uib-legacy][data-icon-name=temperature-error]::after{content:"\f3c3";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=temperature-error] span::before{content:"\f3c4";color:#fff}[data-icon-set=uib-legacy][data-icon-name=temperature-high]::before{content:"\f3c6"}[data-icon-set=uib-legacy][data-icon-name=temperature-low]::before{content:"\f3c7"}[data-icon-set=uib-legacy][data-icon-name=temperature-warning]::before{content:"\f3c8"}[data-icon-set=uib-legacy][data-icon-name=temperature-warning]::after{content:"\f565";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=temperature-warning] span::before{content:"\f566";color:#000}[data-icon-set=uib-legacy][data-icon-name=test]::before{content:"\f3d1"}[data-icon-set=uib-legacy][data-icon-name=test-edit]::before{content:"\f3c9"}[data-icon-set=uib-legacy][data-icon-name=test-eq]::before{content:"\f3cb"}[data-icon-set=uib-legacy][data-icon-name=test-eq-connection]::before{content:"\f3ca"}[data-icon-set=uib-legacy][data-icon-name=test-error]::before{content:"\f3ce"}[data-icon-set=uib-legacy][data-icon-name=test-error]::after{content:"\f3cc";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=test-error] span::before{content:"\f3cd";color:#fff}[data-icon-set=uib-legacy][data-icon-name=test-note]::before{content:"\f3cf"}[data-icon-set=uib-legacy][data-icon-name=test-results]::before{content:"\f3d0"}[data-icon-set=uib-legacy][data-icon-name=testing]::before{content:"\f3d2"}[data-icon-set=uib-legacy][data-icon-name=theme-switch]::before{content:"\f3d3"}[data-icon-set=uib-legacy][data-icon-name=thermal-alarm]::before{content:"\f3d6"}[data-icon-set=uib-legacy][data-icon-name=thermal-alarm]::after{content:"\f3d4";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=thermal-alarm] span::before{content:"\f567";color:#000}[data-icon-set=uib-legacy][data-icon-name=tic]::before{content:"\f3e6"}[data-icon-set=uib-legacy][data-icon-name=tic-connection-rejected]::before{content:"\f3d9"}[data-icon-set=uib-legacy][data-icon-name=tic-connection-rejected]::after{content:"\f3d7";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=tic-connection-rejected] span::before{content:"\f3d8";color:#fff}[data-icon-set=uib-legacy][data-icon-name=tic-connection-success]::before{content:"\f3dc"}[data-icon-set=uib-legacy][data-icon-name=tic-connection-success]::after{content:"\f3da";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=tic-connection-success] span::before{content:"\f568";color:#000}[data-icon-set=uib-legacy][data-icon-name=tic-failed]::before{content:"\f3df"}[data-icon-set=uib-legacy][data-icon-name=tic-failed]::after{content:"\f3dd";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=tic-failed] span::before{content:"\f3de";color:#fff}[data-icon-set=uib-legacy][data-icon-name=tic-pairing-failed]::before{content:"\f3e2"}[data-icon-set=uib-legacy][data-icon-name=tic-pairing-failed]::after{content:"\f3e0";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=tic-pairing-failed] span::before{content:"\f3e1";color:#fff}[data-icon-set=uib-legacy][data-icon-name=tic-successful]::before{content:"\f3e5"}[data-icon-set=uib-legacy][data-icon-name=tic-successful]::after{content:"\f3e3";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=tic-successful] span::before{content:"\f569";color:#000}[data-icon-set=uib-legacy][data-icon-name=tile-menu]::before{content:"\f56a"}[data-icon-set=uib-legacy][data-icon-name=time]::before{content:"\f56e"}[data-icon-set=uib-legacy][data-icon-name=time-compress]::before{content:"\f3e7"}[data-icon-set=uib-legacy][data-icon-name=time-of-whistle]::before{content:"\f3e8"}[data-icon-set=uib-legacy][data-icon-name=time-stretch]::before{content:"\f3e9"}[data-icon-set=uib-legacy][data-icon-name=time-to-retreat]::before{content:"\f3ec"}[data-icon-set=uib-legacy][data-icon-name=time-to-retreat]::after{content:"\f3ea";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=time-to-retreat] span::before{content:"\f3eb";color:#002766}[data-icon-set=uib-legacy][data-icon-name=time-to-whistle]::before{content:"\f56d"}[data-icon-set=uib-legacy][data-icon-name=time-to-whistle]::after{content:"\f56b";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=time-to-whistle] span::before{content:"\f56c";color:#002766}[data-icon-set=uib-legacy][data-icon-name=time-window]::before{content:"\f3f0"}[data-icon-set=uib-legacy][data-icon-name=timeline-view]::before{content:"\f3f1"}[data-icon-set=uib-legacy][data-icon-name=timer]::before{content:"\f3f4"}[data-icon-set=uib-legacy][data-icon-name=timer-elapsed]::before{content:"\f3f2"}[data-icon-set=uib-legacy][data-icon-name=timer-start]::before{content:"\f3f3"}[data-icon-set=uib-legacy][data-icon-name=toggle-button-active]::before{content:"\f56f";color:#0074ff}[data-icon-set=uib-legacy][data-icon-name=toggle-button-default]::before{content:"\f3f6"}[data-icon-set=uib-legacy][data-icon-name=top-level]::before{content:"\f3f7"}[data-icon-set=uib-legacy][data-icon-name=topology]::before{content:"\f3f8"}[data-icon-set=uib-legacy][data-icon-name=total-care]::before{content:"\f3f9"}[data-icon-set=uib-legacy][data-icon-name=toxic-a1]::before{content:"\f3fc";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=toxic-a1]::after{content:"\f3fd"}[data-icon-set=uib-legacy][data-icon-name=toxic-a1] span::before{content:"\f571";color:#000}[data-icon-set=uib-legacy][data-icon-name=toxic-a2]::before{content:"\f3ff";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=toxic-a2]::after{content:"\f400"}[data-icon-set=uib-legacy][data-icon-name=toxic-a2] span::before{content:"\f572";color:#000}[data-icon-set=uib-legacy][data-icon-name=toxic-stel]::before{content:"\f404"}[data-icon-set=uib-legacy][data-icon-name=toxic-stel]::after{content:"\f402";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=toxic-stel] span::before{content:"\f573";color:#000}[data-icon-set=uib-legacy][data-icon-name=toxic-twa]::before{content:"\f405";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=toxic-twa]::after{content:"\f406"}[data-icon-set=uib-legacy][data-icon-name=toxic-twa] span::before{content:"\f574";color:#000}[data-icon-set=uib-legacy][data-icon-name=toxic]::before{content:"\f3fa";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=toxic]::after{content:"\f570";color:#000}[data-icon-set=uib-legacy][data-icon-name=trailer]::before{content:"\f408"}[data-icon-set=uib-legacy][data-icon-name=truck]::before{content:"\f409"}[data-icon-set=uib-legacy][data-icon-name=tube]::before{content:"\f40c"}[data-icon-set=uib-legacy][data-icon-name=tube-off]::before{content:"\f40a"}[data-icon-set=uib-legacy][data-icon-name=tube-on]::before{content:"\f40b"}[data-icon-set=uib-legacy][data-icon-name=ucf-6000-9000]::before{content:"\f40d"}[data-icon-set=uib-legacy][data-icon-name=underrange]::before{content:"\f412"}[data-icon-set=uib-legacy][data-icon-name=underrange-error]::before{content:"\f410"}[data-icon-set=uib-legacy][data-icon-name=underrange-error]::after{content:"\f40e";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=underrange-error] span::before{content:"\f40f";color:#fff}[data-icon-set=uib-legacy][data-icon-name=underrange-warning]::before{content:"\f411"}[data-icon-set=uib-legacy][data-icon-name=underrange-warning]::after{content:"\f575";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=underrange-warning] span::before{content:"\f576";color:#000}[data-icon-set=uib-legacy][data-icon-name=undo]::before{content:"\f577"}[data-icon-set=uib-legacy][data-icon-name=unlock]::before{content:"\f578"}[data-icon-set=uib-legacy][data-icon-name=upload]::before{content:"\f579"}[data-icon-set=uib-legacy][data-icon-name=user]::before{content:"\f597"}[data-icon-set=uib-legacy][data-icon-name=user-administration]::before{content:"\f57a"}[data-icon-set=uib-legacy][data-icon-name=user-administrator]::before{content:"\f57b"}[data-icon-set=uib-legacy][data-icon-name=user-edit]::before{content:"\f57c"}[data-icon-set=uib-legacy][data-icon-name=user-engineer]::before{content:"\f57d"}[data-icon-set=uib-legacy][data-icon-name=user-group]::before{content:"\f57f"}[data-icon-set=uib-legacy][data-icon-name=user-group-administration]::before{content:"\f57e"}[data-icon-set=uib-legacy][data-icon-name=user-id]::before{content:"\f589"}[data-icon-set=uib-legacy][data-icon-name=user-id-error]::before{content:"\f580";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=user-id-error]::after{content:"\f581"}[data-icon-set=uib-legacy][data-icon-name=user-id-error] span::before{content:"\f582";color:#fff}[data-icon-set=uib-legacy][data-icon-name=user-id-invalid]::before{content:"\f583"}[data-icon-set=uib-legacy][data-icon-name=user-id-query]::before{content:"\f584"}[data-icon-set=uib-legacy][data-icon-name=user-id-reading]::before{content:"\f585"}[data-icon-set=uib-legacy][data-icon-name=user-id-ready]::before{content:"\f588"}[data-icon-set=uib-legacy][data-icon-name=user-id-ready]::after{content:"\f586";color:#00dd31}[data-icon-set=uib-legacy][data-icon-name=user-id-ready] span::before{content:"\f587";color:#000}[data-icon-set=uib-legacy][data-icon-name=user-level-1]::before{content:"\f58a"}[data-icon-set=uib-legacy][data-icon-name=user-level-2]::before{content:"\f58b"}[data-icon-set=uib-legacy][data-icon-name=user-level-3]::before{content:"\f58c"}[data-icon-set=uib-legacy][data-icon-name=user-level-4]::before{content:"\f58d"}[data-icon-set=uib-legacy][data-icon-name=user-level-5]::before{content:"\f58e"}[data-icon-set=uib-legacy][data-icon-name=user-logout]::before{content:"\f591"}[data-icon-set=uib-legacy][data-icon-name=user-logout]::after{content:"\f58f";color:#f30303}[data-icon-set=uib-legacy][data-icon-name=user-logout] span::before{content:"\f590";color:#fff}[data-icon-set=uib-legacy][data-icon-name=user-maintainer]::before{content:"\f592"}[data-icon-set=uib-legacy][data-icon-name=user-operator]::before{content:"\f593"}[data-icon-set=uib-legacy][data-icon-name=user-trainer]::before{content:"\f594"}[data-icon-set=uib-legacy][data-icon-name=user-training]::before{content:"\f595"}[data-icon-set=uib-legacy][data-icon-name=user-worker]::before{content:"\f596"}[data-icon-set=uib-legacy][data-icon-name=vario-guard-control-center]::before{content:"\f413"}[data-icon-set=uib-legacy][data-icon-name=vario-guard-sensor]::before{content:"\f414"}[data-icon-set=uib-legacy][data-icon-name=various-graphs]::before{content:"\f415"}[data-icon-set=uib-legacy][data-icon-name=vent-close]::before{content:"\f417"}[data-icon-set=uib-legacy][data-icon-name=vent-close]::after{content:"\f598";color:#0074ff}[data-icon-set=uib-legacy][data-icon-name=vent-open]::before{content:"\f419"}[data-icon-set=uib-legacy][data-icon-name=vent-open]::after{content:"\f599";color:#0074ff}[data-icon-set=uib-legacy][data-icon-name=view]::before{content:"\f59a"}[data-icon-set=uib-legacy][data-icon-name=visual-inspection]::before{content:"\f59b"}[data-icon-set=uib-legacy][data-icon-name=volume-1]::before{content:"\f41a"}[data-icon-set=uib-legacy][data-icon-name=volume-2]::before{content:"\f41b"}[data-icon-set=uib-legacy][data-icon-name=volume-max]::before{content:"\f41c"}[data-icon-set=uib-legacy][data-icon-name=volume-min]::before{content:"\f41d"}[data-icon-set=uib-legacy][data-icon-name=volume-mute]::before{content:"\f41e"}[data-icon-set=uib-legacy][data-icon-name=volume-query]::before{content:"\f41f"}[data-icon-set=uib-legacy][data-icon-name=volume-reduction]::before{content:"\f420"}[data-icon-set=uib-legacy][data-icon-name=warm-up-time]::before{content:"\f421"}[data-icon-set=uib-legacy][data-icon-name=warning]::before{content:"\f422";color:#ffe300}[data-icon-set=uib-legacy][data-icon-name=warning]::after{content:"\f59c";color:#000}[data-icon-set=uib-legacy][data-icon-name=washing-machine]::before{content:"\f424"}[data-icon-set=uib-legacy][data-icon-name=water]::before{content:"\f59d"}[data-icon-set=uib-legacy][data-icon-name=wifi-100-percent]::before{content:"\f425"}[data-icon-set=uib-legacy][data-icon-name=wifi-25-percent]::before{content:"\f426"}[data-icon-set=uib-legacy][data-icon-name=wifi-50-percent]::before{content:"\f427"}[data-icon-set=uib-legacy][data-icon-name=wifi-75-percent]::before{content:"\f428"}[data-icon-set=uib-legacy][data-icon-name=wifi-disabled]::before{content:"\f42a"}[data-icon-set=uib-legacy][data-icon-name=wifi-disabled-circle]::before{content:"\f429"}[data-icon-set=uib-legacy][data-icon-name=wizard]::before{content:"\f42b"}[data-icon-set=uib-legacy][data-icon-name=workshop]::before{content:"\f42c"}[data-icon-set=uib-legacy][data-icon-name=xact-5000]::before{content:"\f42d"}[data-icon-set=uib-legacy][data-icon-name=xact-7000]::before{content:"\f42e"}[data-icon-set=uib-legacy][data-icon-name=xam-2000]::before{content:"\f42f"}[data-icon-set=uib-legacy][data-icon-name=xam-2500]::before{content:"\f430"}[data-icon-set=uib-legacy][data-icon-name=xam-3000]::before{content:"\f431"}[data-icon-set=uib-legacy][data-icon-name=xam-5000]::before{content:"\f432"}[data-icon-set=uib-legacy][data-icon-name=xam-7000]::before{content:"\f433"}[data-icon-set=uib-legacy][data-icon-name=xam-8000]::before{content:"\f434"}[data-icon-set=uib-legacy][data-icon-name=xdock]::before{content:"\f435"}[data-icon-set=uib-legacy][data-icon-name=xpid-9000]::before{content:"\f436"}[data-icon-set=uib-legacy][data-icon-name=xplore]::before{content:"\f440"}[data-icon-set=uib-legacy][data-icon-name=xplore-1300]::before{content:"\f437"}[data-icon-set=uib-legacy][data-icon-name=xplore-1700]::before{content:"\f438"}[data-icon-set=uib-legacy][data-icon-name=xplore-1900]::before{content:"\f439"}[data-icon-set=uib-legacy][data-icon-name=xplore-3500]::before{content:"\f43a"}[data-icon-set=uib-legacy][data-icon-name=xplore-5500]::before{content:"\f43b"}[data-icon-set=uib-legacy][data-icon-name=xplore-6300]::before{content:"\f43c"}[data-icon-set=uib-legacy][data-icon-name=xplore-8000]::before{content:"\f43f"}[data-icon-set=uib-legacy][data-icon-name=xplore-8000-headpiece]::before{content:"\f43d"}[data-icon-set=uib-legacy][data-icon-name=xplore-8000-system]::before{content:"\f43e"}[data-icon-set=uib-legacy][data-icon-name=xzone-5000]::before{content:"\f441"}[data-icon-set=uib-legacy][data-icon-name=yes]::before{content:"\f59e"}[data-icon-set=uib-legacy][data-icon-name=zoom-document-size]::before{content:"\f442"}[data-icon-set=uib-legacy][data-icon-name=zoom-document-width]::before{content:"\f443"}[data-icon-set=uib-legacy][data-icon-name=zoom-in]::before{content:"\f5a0"}[data-icon-set=uib-legacy][data-icon-name=zoom-original]::before{content:"\f5a1"}[data-icon-set=uib-legacy][data-icon-name=zoom-out]::before{content:"\f5a2"}[data-icon-set=uib-legacy][data-icon-name=zoom-window]::before{content:"\f5a3"}
|