django-content-studio 1.0.0b5__py3-none-any.whl
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.
- content_studio/__init__.py +7 -0
- content_studio/admin.py +307 -0
- content_studio/apps.py +100 -0
- content_studio/dashboard/__init__.py +64 -0
- content_studio/dashboard/activity_log.py +35 -0
- content_studio/filters.py +124 -0
- content_studio/form.py +178 -0
- content_studio/formats.py +59 -0
- content_studio/login_backends/__init__.py +21 -0
- content_studio/login_backends/username_password.py +82 -0
- content_studio/media_library/serializers.py +25 -0
- content_studio/media_library/viewsets.py +132 -0
- content_studio/models.py +73 -0
- content_studio/paginators.py +20 -0
- content_studio/router.py +14 -0
- content_studio/serializers.py +118 -0
- content_studio/settings.py +152 -0
- content_studio/static/content_studio/assets/browser-ponyfill-Ct7s-5jI.js +2 -0
- content_studio/static/content_studio/assets/browser-ponyfill-TyWUZ1Oq.js +2 -0
- content_studio/static/content_studio/assets/index.css +1 -0
- content_studio/static/content_studio/assets/index.js +249 -0
- content_studio/static/content_studio/assets/inter-cyrillic-ext-wght-normal.woff2 +0 -0
- content_studio/static/content_studio/assets/inter-cyrillic-wght-normal.woff2 +0 -0
- content_studio/static/content_studio/assets/inter-greek-ext-wght-normal.woff2 +0 -0
- content_studio/static/content_studio/assets/inter-greek-wght-normal.woff2 +0 -0
- content_studio/static/content_studio/assets/inter-latin-ext-wght-normal.woff2 +0 -0
- content_studio/static/content_studio/assets/inter-latin-wght-normal.woff2 +0 -0
- content_studio/static/content_studio/assets/inter-vietnamese-wght-normal.woff2 +0 -0
- content_studio/static/content_studio/icons/pi/Phosphor-Bold.svg +3057 -0
- content_studio/static/content_studio/icons/pi/Phosphor-Bold.ttf +0 -0
- content_studio/static/content_studio/icons/pi/Phosphor-Bold.woff +0 -0
- content_studio/static/content_studio/icons/pi/Phosphor-Bold.woff2 +0 -0
- content_studio/static/content_studio/icons/pi/style.css +4627 -0
- content_studio/static/content_studio/img/media_placeholder.svg +1 -0
- content_studio/static/content_studio/locales/en/translation.json +85 -0
- content_studio/static/content_studio/locales/nl/translation.json +90 -0
- content_studio/static/content_studio/vite.svg +1 -0
- content_studio/templates/content_studio/index.html +24 -0
- content_studio/token_backends/__init__.py +39 -0
- content_studio/token_backends/jwt.py +56 -0
- content_studio/urls.py +21 -0
- content_studio/utils.py +62 -0
- content_studio/views.py +181 -0
- content_studio/viewsets.py +114 -0
- content_studio/widgets.py +83 -0
- django_content_studio-1.0.0b5.dist-info/LICENSE +21 -0
- django_content_studio-1.0.0b5.dist-info/METADATA +86 -0
- django_content_studio-1.0.0b5.dist-info/RECORD +49 -0
- django_content_studio-1.0.0b5.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,4627 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "Phosphor-Bold";
|
|
3
|
+
src:
|
|
4
|
+
url("./Phosphor-Bold.woff2") format("woff2"),
|
|
5
|
+
url("./Phosphor-Bold.woff") format("woff"),
|
|
6
|
+
url("./Phosphor-Bold.ttf") format("truetype"),
|
|
7
|
+
url("./Phosphor-Bold.svg#Phosphor-Bold") format("svg");
|
|
8
|
+
font-weight: normal;
|
|
9
|
+
font-style: normal;
|
|
10
|
+
font-display: block;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.ph-bold {
|
|
14
|
+
/* use !important to prevent issues with browser extensions that change fonts */
|
|
15
|
+
font-family: "Phosphor-Bold" !important;
|
|
16
|
+
speak: never;
|
|
17
|
+
font-style: normal;
|
|
18
|
+
font-weight: normal;
|
|
19
|
+
font-variant: normal;
|
|
20
|
+
text-transform: none;
|
|
21
|
+
line-height: 1;
|
|
22
|
+
|
|
23
|
+
/* Enable Ligatures ================ */
|
|
24
|
+
letter-spacing: 0;
|
|
25
|
+
-webkit-font-feature-settings: "liga";
|
|
26
|
+
-moz-font-feature-settings: "liga=1";
|
|
27
|
+
-moz-font-feature-settings: "liga";
|
|
28
|
+
-ms-font-feature-settings: "liga" 1;
|
|
29
|
+
font-feature-settings: "liga";
|
|
30
|
+
-webkit-font-variant-ligatures: discretionary-ligatures;
|
|
31
|
+
font-variant-ligatures: discretionary-ligatures;
|
|
32
|
+
|
|
33
|
+
/* Better Font Rendering =========== */
|
|
34
|
+
-webkit-font-smoothing: antialiased;
|
|
35
|
+
-moz-osx-font-smoothing: grayscale;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.ph-bold.ph-acorn:before {
|
|
39
|
+
content: "\eb9a";
|
|
40
|
+
}
|
|
41
|
+
.ph-bold.ph-address-book:before {
|
|
42
|
+
content: "\e6f8";
|
|
43
|
+
}
|
|
44
|
+
.ph-bold.ph-address-book-tabs:before {
|
|
45
|
+
content: "\ee4e";
|
|
46
|
+
}
|
|
47
|
+
.ph-bold.ph-air-traffic-control:before {
|
|
48
|
+
content: "\ecd8";
|
|
49
|
+
}
|
|
50
|
+
.ph-bold.ph-airplane:before {
|
|
51
|
+
content: "\e002";
|
|
52
|
+
}
|
|
53
|
+
.ph-bold.ph-airplane-in-flight:before {
|
|
54
|
+
content: "\e4fe";
|
|
55
|
+
}
|
|
56
|
+
.ph-bold.ph-airplane-landing:before {
|
|
57
|
+
content: "\e502";
|
|
58
|
+
}
|
|
59
|
+
.ph-bold.ph-airplane-takeoff:before {
|
|
60
|
+
content: "\e504";
|
|
61
|
+
}
|
|
62
|
+
.ph-bold.ph-airplane-taxiing:before {
|
|
63
|
+
content: "\e500";
|
|
64
|
+
}
|
|
65
|
+
.ph-bold.ph-airplane-tilt:before {
|
|
66
|
+
content: "\e5d6";
|
|
67
|
+
}
|
|
68
|
+
.ph-bold.ph-airplay:before {
|
|
69
|
+
content: "\e004";
|
|
70
|
+
}
|
|
71
|
+
.ph-bold.ph-alarm:before {
|
|
72
|
+
content: "\e006";
|
|
73
|
+
}
|
|
74
|
+
.ph-bold.ph-alien:before {
|
|
75
|
+
content: "\e8a6";
|
|
76
|
+
}
|
|
77
|
+
.ph-bold.ph-align-bottom:before {
|
|
78
|
+
content: "\e506";
|
|
79
|
+
}
|
|
80
|
+
.ph-bold.ph-align-bottom-simple:before {
|
|
81
|
+
content: "\eb0c";
|
|
82
|
+
}
|
|
83
|
+
.ph-bold.ph-align-center-horizontal:before {
|
|
84
|
+
content: "\e50a";
|
|
85
|
+
}
|
|
86
|
+
.ph-bold.ph-align-center-horizontal-simple:before {
|
|
87
|
+
content: "\eb0e";
|
|
88
|
+
}
|
|
89
|
+
.ph-bold.ph-align-center-vertical:before {
|
|
90
|
+
content: "\e50c";
|
|
91
|
+
}
|
|
92
|
+
.ph-bold.ph-align-center-vertical-simple:before {
|
|
93
|
+
content: "\eb10";
|
|
94
|
+
}
|
|
95
|
+
.ph-bold.ph-align-left:before {
|
|
96
|
+
content: "\e50e";
|
|
97
|
+
}
|
|
98
|
+
.ph-bold.ph-align-left-simple:before {
|
|
99
|
+
content: "\eaee";
|
|
100
|
+
}
|
|
101
|
+
.ph-bold.ph-align-right:before {
|
|
102
|
+
content: "\e510";
|
|
103
|
+
}
|
|
104
|
+
.ph-bold.ph-align-right-simple:before {
|
|
105
|
+
content: "\eb12";
|
|
106
|
+
}
|
|
107
|
+
.ph-bold.ph-align-top:before {
|
|
108
|
+
content: "\e512";
|
|
109
|
+
}
|
|
110
|
+
.ph-bold.ph-align-top-simple:before {
|
|
111
|
+
content: "\eb14";
|
|
112
|
+
}
|
|
113
|
+
.ph-bold.ph-amazon-logo:before {
|
|
114
|
+
content: "\e96c";
|
|
115
|
+
}
|
|
116
|
+
.ph-bold.ph-ambulance:before {
|
|
117
|
+
content: "\e572";
|
|
118
|
+
}
|
|
119
|
+
.ph-bold.ph-anchor:before {
|
|
120
|
+
content: "\e514";
|
|
121
|
+
}
|
|
122
|
+
.ph-bold.ph-anchor-simple:before {
|
|
123
|
+
content: "\e5d8";
|
|
124
|
+
}
|
|
125
|
+
.ph-bold.ph-android-logo:before {
|
|
126
|
+
content: "\e008";
|
|
127
|
+
}
|
|
128
|
+
.ph-bold.ph-angle:before {
|
|
129
|
+
content: "\e7bc";
|
|
130
|
+
}
|
|
131
|
+
.ph-bold.ph-angular-logo:before {
|
|
132
|
+
content: "\eb80";
|
|
133
|
+
}
|
|
134
|
+
.ph-bold.ph-aperture:before {
|
|
135
|
+
content: "\e00a";
|
|
136
|
+
}
|
|
137
|
+
.ph-bold.ph-app-store-logo:before {
|
|
138
|
+
content: "\e974";
|
|
139
|
+
}
|
|
140
|
+
.ph-bold.ph-app-window:before {
|
|
141
|
+
content: "\e5da";
|
|
142
|
+
}
|
|
143
|
+
.ph-bold.ph-apple-logo:before {
|
|
144
|
+
content: "\e516";
|
|
145
|
+
}
|
|
146
|
+
.ph-bold.ph-apple-podcasts-logo:before {
|
|
147
|
+
content: "\eb96";
|
|
148
|
+
}
|
|
149
|
+
.ph-bold.ph-approximate-equals:before {
|
|
150
|
+
content: "\edaa";
|
|
151
|
+
}
|
|
152
|
+
.ph-bold.ph-archive:before {
|
|
153
|
+
content: "\e00c";
|
|
154
|
+
}
|
|
155
|
+
.ph-bold.ph-armchair:before {
|
|
156
|
+
content: "\e012";
|
|
157
|
+
}
|
|
158
|
+
.ph-bold.ph-arrow-arc-left:before {
|
|
159
|
+
content: "\e014";
|
|
160
|
+
}
|
|
161
|
+
.ph-bold.ph-arrow-arc-right:before {
|
|
162
|
+
content: "\e016";
|
|
163
|
+
}
|
|
164
|
+
.ph-bold.ph-arrow-bend-double-up-left:before {
|
|
165
|
+
content: "\e03a";
|
|
166
|
+
}
|
|
167
|
+
.ph-bold.ph-arrow-bend-double-up-right:before {
|
|
168
|
+
content: "\e03c";
|
|
169
|
+
}
|
|
170
|
+
.ph-bold.ph-arrow-bend-down-left:before {
|
|
171
|
+
content: "\e018";
|
|
172
|
+
}
|
|
173
|
+
.ph-bold.ph-arrow-bend-down-right:before {
|
|
174
|
+
content: "\e01a";
|
|
175
|
+
}
|
|
176
|
+
.ph-bold.ph-arrow-bend-left-down:before {
|
|
177
|
+
content: "\e01c";
|
|
178
|
+
}
|
|
179
|
+
.ph-bold.ph-arrow-bend-left-up:before {
|
|
180
|
+
content: "\e01e";
|
|
181
|
+
}
|
|
182
|
+
.ph-bold.ph-arrow-bend-right-down:before {
|
|
183
|
+
content: "\e020";
|
|
184
|
+
}
|
|
185
|
+
.ph-bold.ph-arrow-bend-right-up:before {
|
|
186
|
+
content: "\e022";
|
|
187
|
+
}
|
|
188
|
+
.ph-bold.ph-arrow-bend-up-left:before {
|
|
189
|
+
content: "\e024";
|
|
190
|
+
}
|
|
191
|
+
.ph-bold.ph-arrow-bend-up-right:before {
|
|
192
|
+
content: "\e026";
|
|
193
|
+
}
|
|
194
|
+
.ph-bold.ph-arrow-circle-down:before {
|
|
195
|
+
content: "\e028";
|
|
196
|
+
}
|
|
197
|
+
.ph-bold.ph-arrow-circle-down-left:before {
|
|
198
|
+
content: "\e02a";
|
|
199
|
+
}
|
|
200
|
+
.ph-bold.ph-arrow-circle-down-right:before {
|
|
201
|
+
content: "\e02c";
|
|
202
|
+
}
|
|
203
|
+
.ph-bold.ph-arrow-circle-left:before {
|
|
204
|
+
content: "\e05a";
|
|
205
|
+
}
|
|
206
|
+
.ph-bold.ph-arrow-circle-right:before {
|
|
207
|
+
content: "\e02e";
|
|
208
|
+
}
|
|
209
|
+
.ph-bold.ph-arrow-circle-up:before {
|
|
210
|
+
content: "\e030";
|
|
211
|
+
}
|
|
212
|
+
.ph-bold.ph-arrow-circle-up-left:before {
|
|
213
|
+
content: "\e032";
|
|
214
|
+
}
|
|
215
|
+
.ph-bold.ph-arrow-circle-up-right:before {
|
|
216
|
+
content: "\e034";
|
|
217
|
+
}
|
|
218
|
+
.ph-bold.ph-arrow-clockwise:before {
|
|
219
|
+
content: "\e036";
|
|
220
|
+
}
|
|
221
|
+
.ph-bold.ph-arrow-counter-clockwise:before {
|
|
222
|
+
content: "\e038";
|
|
223
|
+
}
|
|
224
|
+
.ph-bold.ph-arrow-down:before {
|
|
225
|
+
content: "\e03e";
|
|
226
|
+
}
|
|
227
|
+
.ph-bold.ph-arrow-down-left:before {
|
|
228
|
+
content: "\e040";
|
|
229
|
+
}
|
|
230
|
+
.ph-bold.ph-arrow-down-right:before {
|
|
231
|
+
content: "\e042";
|
|
232
|
+
}
|
|
233
|
+
.ph-bold.ph-arrow-elbow-down-left:before {
|
|
234
|
+
content: "\e044";
|
|
235
|
+
}
|
|
236
|
+
.ph-bold.ph-arrow-elbow-down-right:before {
|
|
237
|
+
content: "\e046";
|
|
238
|
+
}
|
|
239
|
+
.ph-bold.ph-arrow-elbow-left:before {
|
|
240
|
+
content: "\e048";
|
|
241
|
+
}
|
|
242
|
+
.ph-bold.ph-arrow-elbow-left-down:before {
|
|
243
|
+
content: "\e04a";
|
|
244
|
+
}
|
|
245
|
+
.ph-bold.ph-arrow-elbow-left-up:before {
|
|
246
|
+
content: "\e04c";
|
|
247
|
+
}
|
|
248
|
+
.ph-bold.ph-arrow-elbow-right:before {
|
|
249
|
+
content: "\e04e";
|
|
250
|
+
}
|
|
251
|
+
.ph-bold.ph-arrow-elbow-right-down:before {
|
|
252
|
+
content: "\e050";
|
|
253
|
+
}
|
|
254
|
+
.ph-bold.ph-arrow-elbow-right-up:before {
|
|
255
|
+
content: "\e052";
|
|
256
|
+
}
|
|
257
|
+
.ph-bold.ph-arrow-elbow-up-left:before {
|
|
258
|
+
content: "\e054";
|
|
259
|
+
}
|
|
260
|
+
.ph-bold.ph-arrow-elbow-up-right:before {
|
|
261
|
+
content: "\e056";
|
|
262
|
+
}
|
|
263
|
+
.ph-bold.ph-arrow-fat-down:before {
|
|
264
|
+
content: "\e518";
|
|
265
|
+
}
|
|
266
|
+
.ph-bold.ph-arrow-fat-left:before {
|
|
267
|
+
content: "\e51a";
|
|
268
|
+
}
|
|
269
|
+
.ph-bold.ph-arrow-fat-line-down:before {
|
|
270
|
+
content: "\e51c";
|
|
271
|
+
}
|
|
272
|
+
.ph-bold.ph-arrow-fat-line-left:before {
|
|
273
|
+
content: "\e51e";
|
|
274
|
+
}
|
|
275
|
+
.ph-bold.ph-arrow-fat-line-right:before {
|
|
276
|
+
content: "\e520";
|
|
277
|
+
}
|
|
278
|
+
.ph-bold.ph-arrow-fat-line-up:before {
|
|
279
|
+
content: "\e522";
|
|
280
|
+
}
|
|
281
|
+
.ph-bold.ph-arrow-fat-lines-down:before {
|
|
282
|
+
content: "\e524";
|
|
283
|
+
}
|
|
284
|
+
.ph-bold.ph-arrow-fat-lines-left:before {
|
|
285
|
+
content: "\e526";
|
|
286
|
+
}
|
|
287
|
+
.ph-bold.ph-arrow-fat-lines-right:before {
|
|
288
|
+
content: "\e528";
|
|
289
|
+
}
|
|
290
|
+
.ph-bold.ph-arrow-fat-lines-up:before {
|
|
291
|
+
content: "\e52a";
|
|
292
|
+
}
|
|
293
|
+
.ph-bold.ph-arrow-fat-right:before {
|
|
294
|
+
content: "\e52c";
|
|
295
|
+
}
|
|
296
|
+
.ph-bold.ph-arrow-fat-up:before {
|
|
297
|
+
content: "\e52e";
|
|
298
|
+
}
|
|
299
|
+
.ph-bold.ph-arrow-left:before {
|
|
300
|
+
content: "\e058";
|
|
301
|
+
}
|
|
302
|
+
.ph-bold.ph-arrow-line-down:before {
|
|
303
|
+
content: "\e05c";
|
|
304
|
+
}
|
|
305
|
+
.ph-bold.ph-arrow-line-down-left:before {
|
|
306
|
+
content: "\e05e";
|
|
307
|
+
}
|
|
308
|
+
.ph-bold.ph-arrow-line-down-right:before {
|
|
309
|
+
content: "\e060";
|
|
310
|
+
}
|
|
311
|
+
.ph-bold.ph-arrow-line-left:before {
|
|
312
|
+
content: "\e062";
|
|
313
|
+
}
|
|
314
|
+
.ph-bold.ph-arrow-line-right:before {
|
|
315
|
+
content: "\e064";
|
|
316
|
+
}
|
|
317
|
+
.ph-bold.ph-arrow-line-up:before {
|
|
318
|
+
content: "\e066";
|
|
319
|
+
}
|
|
320
|
+
.ph-bold.ph-arrow-line-up-left:before {
|
|
321
|
+
content: "\e068";
|
|
322
|
+
}
|
|
323
|
+
.ph-bold.ph-arrow-line-up-right:before {
|
|
324
|
+
content: "\e06a";
|
|
325
|
+
}
|
|
326
|
+
.ph-bold.ph-arrow-right:before {
|
|
327
|
+
content: "\e06c";
|
|
328
|
+
}
|
|
329
|
+
.ph-bold.ph-arrow-square-down:before {
|
|
330
|
+
content: "\e06e";
|
|
331
|
+
}
|
|
332
|
+
.ph-bold.ph-arrow-square-down-left:before {
|
|
333
|
+
content: "\e070";
|
|
334
|
+
}
|
|
335
|
+
.ph-bold.ph-arrow-square-down-right:before {
|
|
336
|
+
content: "\e072";
|
|
337
|
+
}
|
|
338
|
+
.ph-bold.ph-arrow-square-in:before {
|
|
339
|
+
content: "\e5dc";
|
|
340
|
+
}
|
|
341
|
+
.ph-bold.ph-arrow-square-left:before {
|
|
342
|
+
content: "\e074";
|
|
343
|
+
}
|
|
344
|
+
.ph-bold.ph-arrow-square-out:before {
|
|
345
|
+
content: "\e5de";
|
|
346
|
+
}
|
|
347
|
+
.ph-bold.ph-arrow-square-right:before {
|
|
348
|
+
content: "\e076";
|
|
349
|
+
}
|
|
350
|
+
.ph-bold.ph-arrow-square-up:before {
|
|
351
|
+
content: "\e078";
|
|
352
|
+
}
|
|
353
|
+
.ph-bold.ph-arrow-square-up-left:before {
|
|
354
|
+
content: "\e07a";
|
|
355
|
+
}
|
|
356
|
+
.ph-bold.ph-arrow-square-up-right:before {
|
|
357
|
+
content: "\e07c";
|
|
358
|
+
}
|
|
359
|
+
.ph-bold.ph-arrow-u-down-left:before {
|
|
360
|
+
content: "\e07e";
|
|
361
|
+
}
|
|
362
|
+
.ph-bold.ph-arrow-u-down-right:before {
|
|
363
|
+
content: "\e080";
|
|
364
|
+
}
|
|
365
|
+
.ph-bold.ph-arrow-u-left-down:before {
|
|
366
|
+
content: "\e082";
|
|
367
|
+
}
|
|
368
|
+
.ph-bold.ph-arrow-u-left-up:before {
|
|
369
|
+
content: "\e084";
|
|
370
|
+
}
|
|
371
|
+
.ph-bold.ph-arrow-u-right-down:before {
|
|
372
|
+
content: "\e086";
|
|
373
|
+
}
|
|
374
|
+
.ph-bold.ph-arrow-u-right-up:before {
|
|
375
|
+
content: "\e088";
|
|
376
|
+
}
|
|
377
|
+
.ph-bold.ph-arrow-u-up-left:before {
|
|
378
|
+
content: "\e08a";
|
|
379
|
+
}
|
|
380
|
+
.ph-bold.ph-arrow-u-up-right:before {
|
|
381
|
+
content: "\e08c";
|
|
382
|
+
}
|
|
383
|
+
.ph-bold.ph-arrow-up:before {
|
|
384
|
+
content: "\e08e";
|
|
385
|
+
}
|
|
386
|
+
.ph-bold.ph-arrow-up-left:before {
|
|
387
|
+
content: "\e090";
|
|
388
|
+
}
|
|
389
|
+
.ph-bold.ph-arrow-up-right:before {
|
|
390
|
+
content: "\e092";
|
|
391
|
+
}
|
|
392
|
+
.ph-bold.ph-arrows-clockwise:before {
|
|
393
|
+
content: "\e094";
|
|
394
|
+
}
|
|
395
|
+
.ph-bold.ph-arrows-counter-clockwise:before {
|
|
396
|
+
content: "\e096";
|
|
397
|
+
}
|
|
398
|
+
.ph-bold.ph-arrows-down-up:before {
|
|
399
|
+
content: "\e098";
|
|
400
|
+
}
|
|
401
|
+
.ph-bold.ph-arrows-horizontal:before {
|
|
402
|
+
content: "\eb06";
|
|
403
|
+
}
|
|
404
|
+
.ph-bold.ph-arrows-in:before {
|
|
405
|
+
content: "\e09a";
|
|
406
|
+
}
|
|
407
|
+
.ph-bold.ph-arrows-in-cardinal:before {
|
|
408
|
+
content: "\e09c";
|
|
409
|
+
}
|
|
410
|
+
.ph-bold.ph-arrows-in-line-horizontal:before {
|
|
411
|
+
content: "\e530";
|
|
412
|
+
}
|
|
413
|
+
.ph-bold.ph-arrows-in-line-vertical:before {
|
|
414
|
+
content: "\e532";
|
|
415
|
+
}
|
|
416
|
+
.ph-bold.ph-arrows-in-simple:before {
|
|
417
|
+
content: "\e09e";
|
|
418
|
+
}
|
|
419
|
+
.ph-bold.ph-arrows-left-right:before {
|
|
420
|
+
content: "\e0a0";
|
|
421
|
+
}
|
|
422
|
+
.ph-bold.ph-arrows-merge:before {
|
|
423
|
+
content: "\ed3e";
|
|
424
|
+
}
|
|
425
|
+
.ph-bold.ph-arrows-out:before {
|
|
426
|
+
content: "\e0a2";
|
|
427
|
+
}
|
|
428
|
+
.ph-bold.ph-arrows-out-cardinal:before {
|
|
429
|
+
content: "\e0a4";
|
|
430
|
+
}
|
|
431
|
+
.ph-bold.ph-arrows-out-line-horizontal:before {
|
|
432
|
+
content: "\e534";
|
|
433
|
+
}
|
|
434
|
+
.ph-bold.ph-arrows-out-line-vertical:before {
|
|
435
|
+
content: "\e536";
|
|
436
|
+
}
|
|
437
|
+
.ph-bold.ph-arrows-out-simple:before {
|
|
438
|
+
content: "\e0a6";
|
|
439
|
+
}
|
|
440
|
+
.ph-bold.ph-arrows-split:before {
|
|
441
|
+
content: "\ed3c";
|
|
442
|
+
}
|
|
443
|
+
.ph-bold.ph-arrows-vertical:before {
|
|
444
|
+
content: "\eb04";
|
|
445
|
+
}
|
|
446
|
+
.ph-bold.ph-article:before {
|
|
447
|
+
content: "\e0a8";
|
|
448
|
+
}
|
|
449
|
+
.ph-bold.ph-article-medium:before {
|
|
450
|
+
content: "\e5e0";
|
|
451
|
+
}
|
|
452
|
+
.ph-bold.ph-article-ny-times:before {
|
|
453
|
+
content: "\e5e2";
|
|
454
|
+
}
|
|
455
|
+
.ph-bold.ph-asclepius:before {
|
|
456
|
+
content: "\ee34";
|
|
457
|
+
}
|
|
458
|
+
.ph-bold.ph-caduceus:before {
|
|
459
|
+
content: "\ee34";
|
|
460
|
+
}
|
|
461
|
+
.ph-bold.ph-asterisk:before {
|
|
462
|
+
content: "\e0aa";
|
|
463
|
+
}
|
|
464
|
+
.ph-bold.ph-asterisk-simple:before {
|
|
465
|
+
content: "\e832";
|
|
466
|
+
}
|
|
467
|
+
.ph-bold.ph-at:before {
|
|
468
|
+
content: "\e0ac";
|
|
469
|
+
}
|
|
470
|
+
.ph-bold.ph-atom:before {
|
|
471
|
+
content: "\e5e4";
|
|
472
|
+
}
|
|
473
|
+
.ph-bold.ph-avocado:before {
|
|
474
|
+
content: "\ee04";
|
|
475
|
+
}
|
|
476
|
+
.ph-bold.ph-axe:before {
|
|
477
|
+
content: "\e9fc";
|
|
478
|
+
}
|
|
479
|
+
.ph-bold.ph-baby:before {
|
|
480
|
+
content: "\e774";
|
|
481
|
+
}
|
|
482
|
+
.ph-bold.ph-baby-carriage:before {
|
|
483
|
+
content: "\e818";
|
|
484
|
+
}
|
|
485
|
+
.ph-bold.ph-backpack:before {
|
|
486
|
+
content: "\e922";
|
|
487
|
+
}
|
|
488
|
+
.ph-bold.ph-backspace:before {
|
|
489
|
+
content: "\e0ae";
|
|
490
|
+
}
|
|
491
|
+
.ph-bold.ph-bag:before {
|
|
492
|
+
content: "\e0b0";
|
|
493
|
+
}
|
|
494
|
+
.ph-bold.ph-bag-simple:before {
|
|
495
|
+
content: "\e5e6";
|
|
496
|
+
}
|
|
497
|
+
.ph-bold.ph-balloon:before {
|
|
498
|
+
content: "\e76c";
|
|
499
|
+
}
|
|
500
|
+
.ph-bold.ph-bandaids:before {
|
|
501
|
+
content: "\e0b2";
|
|
502
|
+
}
|
|
503
|
+
.ph-bold.ph-bank:before {
|
|
504
|
+
content: "\e0b4";
|
|
505
|
+
}
|
|
506
|
+
.ph-bold.ph-barbell:before {
|
|
507
|
+
content: "\e0b6";
|
|
508
|
+
}
|
|
509
|
+
.ph-bold.ph-barcode:before {
|
|
510
|
+
content: "\e0b8";
|
|
511
|
+
}
|
|
512
|
+
.ph-bold.ph-barn:before {
|
|
513
|
+
content: "\ec72";
|
|
514
|
+
}
|
|
515
|
+
.ph-bold.ph-barricade:before {
|
|
516
|
+
content: "\e948";
|
|
517
|
+
}
|
|
518
|
+
.ph-bold.ph-baseball:before {
|
|
519
|
+
content: "\e71a";
|
|
520
|
+
}
|
|
521
|
+
.ph-bold.ph-baseball-cap:before {
|
|
522
|
+
content: "\ea28";
|
|
523
|
+
}
|
|
524
|
+
.ph-bold.ph-baseball-helmet:before {
|
|
525
|
+
content: "\ee4a";
|
|
526
|
+
}
|
|
527
|
+
.ph-bold.ph-basket:before {
|
|
528
|
+
content: "\e964";
|
|
529
|
+
}
|
|
530
|
+
.ph-bold.ph-basketball:before {
|
|
531
|
+
content: "\e724";
|
|
532
|
+
}
|
|
533
|
+
.ph-bold.ph-bathtub:before {
|
|
534
|
+
content: "\e81e";
|
|
535
|
+
}
|
|
536
|
+
.ph-bold.ph-battery-charging:before {
|
|
537
|
+
content: "\e0ba";
|
|
538
|
+
}
|
|
539
|
+
.ph-bold.ph-battery-charging-vertical:before {
|
|
540
|
+
content: "\e0bc";
|
|
541
|
+
}
|
|
542
|
+
.ph-bold.ph-battery-empty:before {
|
|
543
|
+
content: "\e0be";
|
|
544
|
+
}
|
|
545
|
+
.ph-bold.ph-battery-full:before {
|
|
546
|
+
content: "\e0c0";
|
|
547
|
+
}
|
|
548
|
+
.ph-bold.ph-battery-high:before {
|
|
549
|
+
content: "\e0c2";
|
|
550
|
+
}
|
|
551
|
+
.ph-bold.ph-battery-low:before {
|
|
552
|
+
content: "\e0c4";
|
|
553
|
+
}
|
|
554
|
+
.ph-bold.ph-battery-medium:before {
|
|
555
|
+
content: "\e0c6";
|
|
556
|
+
}
|
|
557
|
+
.ph-bold.ph-battery-plus:before {
|
|
558
|
+
content: "\e808";
|
|
559
|
+
}
|
|
560
|
+
.ph-bold.ph-battery-plus-vertical:before {
|
|
561
|
+
content: "\ec50";
|
|
562
|
+
}
|
|
563
|
+
.ph-bold.ph-battery-vertical-empty:before {
|
|
564
|
+
content: "\e7c6";
|
|
565
|
+
}
|
|
566
|
+
.ph-bold.ph-battery-vertical-full:before {
|
|
567
|
+
content: "\e7c4";
|
|
568
|
+
}
|
|
569
|
+
.ph-bold.ph-battery-vertical-high:before {
|
|
570
|
+
content: "\e7c2";
|
|
571
|
+
}
|
|
572
|
+
.ph-bold.ph-battery-vertical-low:before {
|
|
573
|
+
content: "\e7be";
|
|
574
|
+
}
|
|
575
|
+
.ph-bold.ph-battery-vertical-medium:before {
|
|
576
|
+
content: "\e7c0";
|
|
577
|
+
}
|
|
578
|
+
.ph-bold.ph-battery-warning:before {
|
|
579
|
+
content: "\e0c8";
|
|
580
|
+
}
|
|
581
|
+
.ph-bold.ph-battery-warning-vertical:before {
|
|
582
|
+
content: "\e0ca";
|
|
583
|
+
}
|
|
584
|
+
.ph-bold.ph-beach-ball:before {
|
|
585
|
+
content: "\ed24";
|
|
586
|
+
}
|
|
587
|
+
.ph-bold.ph-beanie:before {
|
|
588
|
+
content: "\ea2a";
|
|
589
|
+
}
|
|
590
|
+
.ph-bold.ph-bed:before {
|
|
591
|
+
content: "\e0cc";
|
|
592
|
+
}
|
|
593
|
+
.ph-bold.ph-beer-bottle:before {
|
|
594
|
+
content: "\e7b0";
|
|
595
|
+
}
|
|
596
|
+
.ph-bold.ph-beer-stein:before {
|
|
597
|
+
content: "\eb62";
|
|
598
|
+
}
|
|
599
|
+
.ph-bold.ph-behance-logo:before {
|
|
600
|
+
content: "\e7f4";
|
|
601
|
+
}
|
|
602
|
+
.ph-bold.ph-bell:before {
|
|
603
|
+
content: "\e0ce";
|
|
604
|
+
}
|
|
605
|
+
.ph-bold.ph-bell-ringing:before {
|
|
606
|
+
content: "\e5e8";
|
|
607
|
+
}
|
|
608
|
+
.ph-bold.ph-bell-simple:before {
|
|
609
|
+
content: "\e0d0";
|
|
610
|
+
}
|
|
611
|
+
.ph-bold.ph-bell-simple-ringing:before {
|
|
612
|
+
content: "\e5ea";
|
|
613
|
+
}
|
|
614
|
+
.ph-bold.ph-bell-simple-slash:before {
|
|
615
|
+
content: "\e0d2";
|
|
616
|
+
}
|
|
617
|
+
.ph-bold.ph-bell-simple-z:before {
|
|
618
|
+
content: "\e5ec";
|
|
619
|
+
}
|
|
620
|
+
.ph-bold.ph-bell-slash:before {
|
|
621
|
+
content: "\e0d4";
|
|
622
|
+
}
|
|
623
|
+
.ph-bold.ph-bell-z:before {
|
|
624
|
+
content: "\e5ee";
|
|
625
|
+
}
|
|
626
|
+
.ph-bold.ph-belt:before {
|
|
627
|
+
content: "\ea2c";
|
|
628
|
+
}
|
|
629
|
+
.ph-bold.ph-bezier-curve:before {
|
|
630
|
+
content: "\eb00";
|
|
631
|
+
}
|
|
632
|
+
.ph-bold.ph-bicycle:before {
|
|
633
|
+
content: "\e0d6";
|
|
634
|
+
}
|
|
635
|
+
.ph-bold.ph-binary:before {
|
|
636
|
+
content: "\ee60";
|
|
637
|
+
}
|
|
638
|
+
.ph-bold.ph-binoculars:before {
|
|
639
|
+
content: "\ea64";
|
|
640
|
+
}
|
|
641
|
+
.ph-bold.ph-biohazard:before {
|
|
642
|
+
content: "\e9e0";
|
|
643
|
+
}
|
|
644
|
+
.ph-bold.ph-bird:before {
|
|
645
|
+
content: "\e72c";
|
|
646
|
+
}
|
|
647
|
+
.ph-bold.ph-blueprint:before {
|
|
648
|
+
content: "\eda0";
|
|
649
|
+
}
|
|
650
|
+
.ph-bold.ph-bluetooth:before {
|
|
651
|
+
content: "\e0da";
|
|
652
|
+
}
|
|
653
|
+
.ph-bold.ph-bluetooth-connected:before {
|
|
654
|
+
content: "\e0dc";
|
|
655
|
+
}
|
|
656
|
+
.ph-bold.ph-bluetooth-slash:before {
|
|
657
|
+
content: "\e0de";
|
|
658
|
+
}
|
|
659
|
+
.ph-bold.ph-bluetooth-x:before {
|
|
660
|
+
content: "\e0e0";
|
|
661
|
+
}
|
|
662
|
+
.ph-bold.ph-boat:before {
|
|
663
|
+
content: "\e786";
|
|
664
|
+
}
|
|
665
|
+
.ph-bold.ph-bomb:before {
|
|
666
|
+
content: "\ee0a";
|
|
667
|
+
}
|
|
668
|
+
.ph-bold.ph-bone:before {
|
|
669
|
+
content: "\e7f2";
|
|
670
|
+
}
|
|
671
|
+
.ph-bold.ph-book:before {
|
|
672
|
+
content: "\e0e2";
|
|
673
|
+
}
|
|
674
|
+
.ph-bold.ph-book-bookmark:before {
|
|
675
|
+
content: "\e0e4";
|
|
676
|
+
}
|
|
677
|
+
.ph-bold.ph-book-open:before {
|
|
678
|
+
content: "\e0e6";
|
|
679
|
+
}
|
|
680
|
+
.ph-bold.ph-book-open-text:before {
|
|
681
|
+
content: "\e8f2";
|
|
682
|
+
}
|
|
683
|
+
.ph-bold.ph-book-open-user:before {
|
|
684
|
+
content: "\ede0";
|
|
685
|
+
}
|
|
686
|
+
.ph-bold.ph-bookmark:before {
|
|
687
|
+
content: "\e0e8";
|
|
688
|
+
}
|
|
689
|
+
.ph-bold.ph-bookmark-simple:before {
|
|
690
|
+
content: "\e0ea";
|
|
691
|
+
}
|
|
692
|
+
.ph-bold.ph-bookmarks:before {
|
|
693
|
+
content: "\e0ec";
|
|
694
|
+
}
|
|
695
|
+
.ph-bold.ph-bookmarks-simple:before {
|
|
696
|
+
content: "\e5f0";
|
|
697
|
+
}
|
|
698
|
+
.ph-bold.ph-books:before {
|
|
699
|
+
content: "\e758";
|
|
700
|
+
}
|
|
701
|
+
.ph-bold.ph-boot:before {
|
|
702
|
+
content: "\ecca";
|
|
703
|
+
}
|
|
704
|
+
.ph-bold.ph-boules:before {
|
|
705
|
+
content: "\e722";
|
|
706
|
+
}
|
|
707
|
+
.ph-bold.ph-bounding-box:before {
|
|
708
|
+
content: "\e6ce";
|
|
709
|
+
}
|
|
710
|
+
.ph-bold.ph-bowl-food:before {
|
|
711
|
+
content: "\eaa4";
|
|
712
|
+
}
|
|
713
|
+
.ph-bold.ph-bowl-steam:before {
|
|
714
|
+
content: "\e8e4";
|
|
715
|
+
}
|
|
716
|
+
.ph-bold.ph-bowling-ball:before {
|
|
717
|
+
content: "\ea34";
|
|
718
|
+
}
|
|
719
|
+
.ph-bold.ph-box-arrow-down:before {
|
|
720
|
+
content: "\e00e";
|
|
721
|
+
}
|
|
722
|
+
.ph-bold.ph-archive-box:before {
|
|
723
|
+
content: "\e00e";
|
|
724
|
+
}
|
|
725
|
+
.ph-bold.ph-box-arrow-up:before {
|
|
726
|
+
content: "\ee54";
|
|
727
|
+
}
|
|
728
|
+
.ph-bold.ph-boxing-glove:before {
|
|
729
|
+
content: "\ea36";
|
|
730
|
+
}
|
|
731
|
+
.ph-bold.ph-brackets-angle:before {
|
|
732
|
+
content: "\e862";
|
|
733
|
+
}
|
|
734
|
+
.ph-bold.ph-brackets-curly:before {
|
|
735
|
+
content: "\e860";
|
|
736
|
+
}
|
|
737
|
+
.ph-bold.ph-brackets-round:before {
|
|
738
|
+
content: "\e864";
|
|
739
|
+
}
|
|
740
|
+
.ph-bold.ph-brackets-square:before {
|
|
741
|
+
content: "\e85e";
|
|
742
|
+
}
|
|
743
|
+
.ph-bold.ph-brain:before {
|
|
744
|
+
content: "\e74e";
|
|
745
|
+
}
|
|
746
|
+
.ph-bold.ph-brandy:before {
|
|
747
|
+
content: "\e6b4";
|
|
748
|
+
}
|
|
749
|
+
.ph-bold.ph-bread:before {
|
|
750
|
+
content: "\e81c";
|
|
751
|
+
}
|
|
752
|
+
.ph-bold.ph-bridge:before {
|
|
753
|
+
content: "\ea68";
|
|
754
|
+
}
|
|
755
|
+
.ph-bold.ph-briefcase:before {
|
|
756
|
+
content: "\e0ee";
|
|
757
|
+
}
|
|
758
|
+
.ph-bold.ph-briefcase-metal:before {
|
|
759
|
+
content: "\e5f2";
|
|
760
|
+
}
|
|
761
|
+
.ph-bold.ph-broadcast:before {
|
|
762
|
+
content: "\e0f2";
|
|
763
|
+
}
|
|
764
|
+
.ph-bold.ph-broom:before {
|
|
765
|
+
content: "\ec54";
|
|
766
|
+
}
|
|
767
|
+
.ph-bold.ph-browser:before {
|
|
768
|
+
content: "\e0f4";
|
|
769
|
+
}
|
|
770
|
+
.ph-bold.ph-browsers:before {
|
|
771
|
+
content: "\e0f6";
|
|
772
|
+
}
|
|
773
|
+
.ph-bold.ph-bug:before {
|
|
774
|
+
content: "\e5f4";
|
|
775
|
+
}
|
|
776
|
+
.ph-bold.ph-bug-beetle:before {
|
|
777
|
+
content: "\e5f6";
|
|
778
|
+
}
|
|
779
|
+
.ph-bold.ph-bug-droid:before {
|
|
780
|
+
content: "\e5f8";
|
|
781
|
+
}
|
|
782
|
+
.ph-bold.ph-building:before {
|
|
783
|
+
content: "\e100";
|
|
784
|
+
}
|
|
785
|
+
.ph-bold.ph-building-apartment:before {
|
|
786
|
+
content: "\e0fe";
|
|
787
|
+
}
|
|
788
|
+
.ph-bold.ph-building-office:before {
|
|
789
|
+
content: "\e0ff";
|
|
790
|
+
}
|
|
791
|
+
.ph-bold.ph-buildings:before {
|
|
792
|
+
content: "\e102";
|
|
793
|
+
}
|
|
794
|
+
.ph-bold.ph-bulldozer:before {
|
|
795
|
+
content: "\ec6c";
|
|
796
|
+
}
|
|
797
|
+
.ph-bold.ph-bus:before {
|
|
798
|
+
content: "\e106";
|
|
799
|
+
}
|
|
800
|
+
.ph-bold.ph-butterfly:before {
|
|
801
|
+
content: "\ea6e";
|
|
802
|
+
}
|
|
803
|
+
.ph-bold.ph-cable-car:before {
|
|
804
|
+
content: "\e49c";
|
|
805
|
+
}
|
|
806
|
+
.ph-bold.ph-cactus:before {
|
|
807
|
+
content: "\e918";
|
|
808
|
+
}
|
|
809
|
+
.ph-bold.ph-cake:before {
|
|
810
|
+
content: "\e780";
|
|
811
|
+
}
|
|
812
|
+
.ph-bold.ph-calculator:before {
|
|
813
|
+
content: "\e538";
|
|
814
|
+
}
|
|
815
|
+
.ph-bold.ph-calendar:before {
|
|
816
|
+
content: "\e108";
|
|
817
|
+
}
|
|
818
|
+
.ph-bold.ph-calendar-blank:before {
|
|
819
|
+
content: "\e10a";
|
|
820
|
+
}
|
|
821
|
+
.ph-bold.ph-calendar-check:before {
|
|
822
|
+
content: "\e712";
|
|
823
|
+
}
|
|
824
|
+
.ph-bold.ph-calendar-dot:before {
|
|
825
|
+
content: "\e7b2";
|
|
826
|
+
}
|
|
827
|
+
.ph-bold.ph-calendar-dots:before {
|
|
828
|
+
content: "\e7b4";
|
|
829
|
+
}
|
|
830
|
+
.ph-bold.ph-calendar-heart:before {
|
|
831
|
+
content: "\e8b0";
|
|
832
|
+
}
|
|
833
|
+
.ph-bold.ph-calendar-minus:before {
|
|
834
|
+
content: "\ea14";
|
|
835
|
+
}
|
|
836
|
+
.ph-bold.ph-calendar-plus:before {
|
|
837
|
+
content: "\e714";
|
|
838
|
+
}
|
|
839
|
+
.ph-bold.ph-calendar-slash:before {
|
|
840
|
+
content: "\ea12";
|
|
841
|
+
}
|
|
842
|
+
.ph-bold.ph-calendar-star:before {
|
|
843
|
+
content: "\e8b2";
|
|
844
|
+
}
|
|
845
|
+
.ph-bold.ph-calendar-x:before {
|
|
846
|
+
content: "\e10c";
|
|
847
|
+
}
|
|
848
|
+
.ph-bold.ph-call-bell:before {
|
|
849
|
+
content: "\e7de";
|
|
850
|
+
}
|
|
851
|
+
.ph-bold.ph-camera:before {
|
|
852
|
+
content: "\e10e";
|
|
853
|
+
}
|
|
854
|
+
.ph-bold.ph-camera-plus:before {
|
|
855
|
+
content: "\ec58";
|
|
856
|
+
}
|
|
857
|
+
.ph-bold.ph-camera-rotate:before {
|
|
858
|
+
content: "\e7a4";
|
|
859
|
+
}
|
|
860
|
+
.ph-bold.ph-camera-slash:before {
|
|
861
|
+
content: "\e110";
|
|
862
|
+
}
|
|
863
|
+
.ph-bold.ph-campfire:before {
|
|
864
|
+
content: "\e9d8";
|
|
865
|
+
}
|
|
866
|
+
.ph-bold.ph-car:before {
|
|
867
|
+
content: "\e112";
|
|
868
|
+
}
|
|
869
|
+
.ph-bold.ph-car-battery:before {
|
|
870
|
+
content: "\ee30";
|
|
871
|
+
}
|
|
872
|
+
.ph-bold.ph-car-profile:before {
|
|
873
|
+
content: "\e8cc";
|
|
874
|
+
}
|
|
875
|
+
.ph-bold.ph-car-simple:before {
|
|
876
|
+
content: "\e114";
|
|
877
|
+
}
|
|
878
|
+
.ph-bold.ph-cardholder:before {
|
|
879
|
+
content: "\e5fa";
|
|
880
|
+
}
|
|
881
|
+
.ph-bold.ph-cards:before {
|
|
882
|
+
content: "\e0f8";
|
|
883
|
+
}
|
|
884
|
+
.ph-bold.ph-cards-three:before {
|
|
885
|
+
content: "\ee50";
|
|
886
|
+
}
|
|
887
|
+
.ph-bold.ph-caret-circle-double-down:before {
|
|
888
|
+
content: "\e116";
|
|
889
|
+
}
|
|
890
|
+
.ph-bold.ph-caret-circle-double-left:before {
|
|
891
|
+
content: "\e118";
|
|
892
|
+
}
|
|
893
|
+
.ph-bold.ph-caret-circle-double-right:before {
|
|
894
|
+
content: "\e11a";
|
|
895
|
+
}
|
|
896
|
+
.ph-bold.ph-caret-circle-double-up:before {
|
|
897
|
+
content: "\e11c";
|
|
898
|
+
}
|
|
899
|
+
.ph-bold.ph-caret-circle-down:before {
|
|
900
|
+
content: "\e11e";
|
|
901
|
+
}
|
|
902
|
+
.ph-bold.ph-caret-circle-left:before {
|
|
903
|
+
content: "\e120";
|
|
904
|
+
}
|
|
905
|
+
.ph-bold.ph-caret-circle-right:before {
|
|
906
|
+
content: "\e122";
|
|
907
|
+
}
|
|
908
|
+
.ph-bold.ph-caret-circle-up:before {
|
|
909
|
+
content: "\e124";
|
|
910
|
+
}
|
|
911
|
+
.ph-bold.ph-caret-circle-up-down:before {
|
|
912
|
+
content: "\e13e";
|
|
913
|
+
}
|
|
914
|
+
.ph-bold.ph-caret-double-down:before {
|
|
915
|
+
content: "\e126";
|
|
916
|
+
}
|
|
917
|
+
.ph-bold.ph-caret-double-left:before {
|
|
918
|
+
content: "\e128";
|
|
919
|
+
}
|
|
920
|
+
.ph-bold.ph-caret-double-right:before {
|
|
921
|
+
content: "\e12a";
|
|
922
|
+
}
|
|
923
|
+
.ph-bold.ph-caret-double-up:before {
|
|
924
|
+
content: "\e12c";
|
|
925
|
+
}
|
|
926
|
+
.ph-bold.ph-caret-down:before {
|
|
927
|
+
content: "\e136";
|
|
928
|
+
}
|
|
929
|
+
.ph-bold.ph-caret-left:before {
|
|
930
|
+
content: "\e138";
|
|
931
|
+
}
|
|
932
|
+
.ph-bold.ph-caret-line-down:before {
|
|
933
|
+
content: "\e134";
|
|
934
|
+
}
|
|
935
|
+
.ph-bold.ph-caret-line-left:before {
|
|
936
|
+
content: "\e132";
|
|
937
|
+
}
|
|
938
|
+
.ph-bold.ph-caret-line-right:before {
|
|
939
|
+
content: "\e130";
|
|
940
|
+
}
|
|
941
|
+
.ph-bold.ph-caret-line-up:before {
|
|
942
|
+
content: "\e12e";
|
|
943
|
+
}
|
|
944
|
+
.ph-bold.ph-caret-right:before {
|
|
945
|
+
content: "\e13a";
|
|
946
|
+
}
|
|
947
|
+
.ph-bold.ph-caret-up:before {
|
|
948
|
+
content: "\e13c";
|
|
949
|
+
}
|
|
950
|
+
.ph-bold.ph-caret-up-down:before {
|
|
951
|
+
content: "\e140";
|
|
952
|
+
}
|
|
953
|
+
.ph-bold.ph-carrot:before {
|
|
954
|
+
content: "\ed38";
|
|
955
|
+
}
|
|
956
|
+
.ph-bold.ph-cash-register:before {
|
|
957
|
+
content: "\ed80";
|
|
958
|
+
}
|
|
959
|
+
.ph-bold.ph-cassette-tape:before {
|
|
960
|
+
content: "\ed2e";
|
|
961
|
+
}
|
|
962
|
+
.ph-bold.ph-castle-turret:before {
|
|
963
|
+
content: "\e9d0";
|
|
964
|
+
}
|
|
965
|
+
.ph-bold.ph-cat:before {
|
|
966
|
+
content: "\e748";
|
|
967
|
+
}
|
|
968
|
+
.ph-bold.ph-cell-signal-full:before {
|
|
969
|
+
content: "\e142";
|
|
970
|
+
}
|
|
971
|
+
.ph-bold.ph-cell-signal-high:before {
|
|
972
|
+
content: "\e144";
|
|
973
|
+
}
|
|
974
|
+
.ph-bold.ph-cell-signal-low:before {
|
|
975
|
+
content: "\e146";
|
|
976
|
+
}
|
|
977
|
+
.ph-bold.ph-cell-signal-medium:before {
|
|
978
|
+
content: "\e148";
|
|
979
|
+
}
|
|
980
|
+
.ph-bold.ph-cell-signal-none:before {
|
|
981
|
+
content: "\e14a";
|
|
982
|
+
}
|
|
983
|
+
.ph-bold.ph-cell-signal-slash:before {
|
|
984
|
+
content: "\e14c";
|
|
985
|
+
}
|
|
986
|
+
.ph-bold.ph-cell-signal-x:before {
|
|
987
|
+
content: "\e14e";
|
|
988
|
+
}
|
|
989
|
+
.ph-bold.ph-cell-tower:before {
|
|
990
|
+
content: "\ebaa";
|
|
991
|
+
}
|
|
992
|
+
.ph-bold.ph-certificate:before {
|
|
993
|
+
content: "\e766";
|
|
994
|
+
}
|
|
995
|
+
.ph-bold.ph-chair:before {
|
|
996
|
+
content: "\e950";
|
|
997
|
+
}
|
|
998
|
+
.ph-bold.ph-chalkboard:before {
|
|
999
|
+
content: "\e5fc";
|
|
1000
|
+
}
|
|
1001
|
+
.ph-bold.ph-chalkboard-simple:before {
|
|
1002
|
+
content: "\e5fe";
|
|
1003
|
+
}
|
|
1004
|
+
.ph-bold.ph-chalkboard-teacher:before {
|
|
1005
|
+
content: "\e600";
|
|
1006
|
+
}
|
|
1007
|
+
.ph-bold.ph-champagne:before {
|
|
1008
|
+
content: "\eaca";
|
|
1009
|
+
}
|
|
1010
|
+
.ph-bold.ph-charging-station:before {
|
|
1011
|
+
content: "\e8d0";
|
|
1012
|
+
}
|
|
1013
|
+
.ph-bold.ph-chart-bar:before {
|
|
1014
|
+
content: "\e150";
|
|
1015
|
+
}
|
|
1016
|
+
.ph-bold.ph-chart-bar-horizontal:before {
|
|
1017
|
+
content: "\e152";
|
|
1018
|
+
}
|
|
1019
|
+
.ph-bold.ph-chart-donut:before {
|
|
1020
|
+
content: "\eaa6";
|
|
1021
|
+
}
|
|
1022
|
+
.ph-bold.ph-chart-line:before {
|
|
1023
|
+
content: "\e154";
|
|
1024
|
+
}
|
|
1025
|
+
.ph-bold.ph-chart-line-down:before {
|
|
1026
|
+
content: "\e8b6";
|
|
1027
|
+
}
|
|
1028
|
+
.ph-bold.ph-chart-line-up:before {
|
|
1029
|
+
content: "\e156";
|
|
1030
|
+
}
|
|
1031
|
+
.ph-bold.ph-chart-pie:before {
|
|
1032
|
+
content: "\e158";
|
|
1033
|
+
}
|
|
1034
|
+
.ph-bold.ph-chart-pie-slice:before {
|
|
1035
|
+
content: "\e15a";
|
|
1036
|
+
}
|
|
1037
|
+
.ph-bold.ph-chart-polar:before {
|
|
1038
|
+
content: "\eaa8";
|
|
1039
|
+
}
|
|
1040
|
+
.ph-bold.ph-chart-scatter:before {
|
|
1041
|
+
content: "\eaac";
|
|
1042
|
+
}
|
|
1043
|
+
.ph-bold.ph-chat:before {
|
|
1044
|
+
content: "\e15c";
|
|
1045
|
+
}
|
|
1046
|
+
.ph-bold.ph-chat-centered:before {
|
|
1047
|
+
content: "\e160";
|
|
1048
|
+
}
|
|
1049
|
+
.ph-bold.ph-chat-centered-dots:before {
|
|
1050
|
+
content: "\e164";
|
|
1051
|
+
}
|
|
1052
|
+
.ph-bold.ph-chat-centered-slash:before {
|
|
1053
|
+
content: "\e162";
|
|
1054
|
+
}
|
|
1055
|
+
.ph-bold.ph-chat-centered-text:before {
|
|
1056
|
+
content: "\e166";
|
|
1057
|
+
}
|
|
1058
|
+
.ph-bold.ph-chat-circle:before {
|
|
1059
|
+
content: "\e168";
|
|
1060
|
+
}
|
|
1061
|
+
.ph-bold.ph-chat-circle-dots:before {
|
|
1062
|
+
content: "\e16c";
|
|
1063
|
+
}
|
|
1064
|
+
.ph-bold.ph-chat-circle-slash:before {
|
|
1065
|
+
content: "\e16a";
|
|
1066
|
+
}
|
|
1067
|
+
.ph-bold.ph-chat-circle-text:before {
|
|
1068
|
+
content: "\e16e";
|
|
1069
|
+
}
|
|
1070
|
+
.ph-bold.ph-chat-dots:before {
|
|
1071
|
+
content: "\e170";
|
|
1072
|
+
}
|
|
1073
|
+
.ph-bold.ph-chat-slash:before {
|
|
1074
|
+
content: "\e15e";
|
|
1075
|
+
}
|
|
1076
|
+
.ph-bold.ph-chat-teardrop:before {
|
|
1077
|
+
content: "\e172";
|
|
1078
|
+
}
|
|
1079
|
+
.ph-bold.ph-chat-teardrop-dots:before {
|
|
1080
|
+
content: "\e176";
|
|
1081
|
+
}
|
|
1082
|
+
.ph-bold.ph-chat-teardrop-slash:before {
|
|
1083
|
+
content: "\e174";
|
|
1084
|
+
}
|
|
1085
|
+
.ph-bold.ph-chat-teardrop-text:before {
|
|
1086
|
+
content: "\e178";
|
|
1087
|
+
}
|
|
1088
|
+
.ph-bold.ph-chat-text:before {
|
|
1089
|
+
content: "\e17a";
|
|
1090
|
+
}
|
|
1091
|
+
.ph-bold.ph-chats:before {
|
|
1092
|
+
content: "\e17c";
|
|
1093
|
+
}
|
|
1094
|
+
.ph-bold.ph-chats-circle:before {
|
|
1095
|
+
content: "\e17e";
|
|
1096
|
+
}
|
|
1097
|
+
.ph-bold.ph-chats-teardrop:before {
|
|
1098
|
+
content: "\e180";
|
|
1099
|
+
}
|
|
1100
|
+
.ph-bold.ph-check:before {
|
|
1101
|
+
content: "\e182";
|
|
1102
|
+
}
|
|
1103
|
+
.ph-bold.ph-check-circle:before {
|
|
1104
|
+
content: "\e184";
|
|
1105
|
+
}
|
|
1106
|
+
.ph-bold.ph-check-fat:before {
|
|
1107
|
+
content: "\eba6";
|
|
1108
|
+
}
|
|
1109
|
+
.ph-bold.ph-check-square:before {
|
|
1110
|
+
content: "\e186";
|
|
1111
|
+
}
|
|
1112
|
+
.ph-bold.ph-check-square-offset:before {
|
|
1113
|
+
content: "\e188";
|
|
1114
|
+
}
|
|
1115
|
+
.ph-bold.ph-checkerboard:before {
|
|
1116
|
+
content: "\e8c4";
|
|
1117
|
+
}
|
|
1118
|
+
.ph-bold.ph-checks:before {
|
|
1119
|
+
content: "\e53a";
|
|
1120
|
+
}
|
|
1121
|
+
.ph-bold.ph-cheers:before {
|
|
1122
|
+
content: "\ea4a";
|
|
1123
|
+
}
|
|
1124
|
+
.ph-bold.ph-cheese:before {
|
|
1125
|
+
content: "\e9fe";
|
|
1126
|
+
}
|
|
1127
|
+
.ph-bold.ph-chef-hat:before {
|
|
1128
|
+
content: "\ed8e";
|
|
1129
|
+
}
|
|
1130
|
+
.ph-bold.ph-cherries:before {
|
|
1131
|
+
content: "\e830";
|
|
1132
|
+
}
|
|
1133
|
+
.ph-bold.ph-church:before {
|
|
1134
|
+
content: "\ecea";
|
|
1135
|
+
}
|
|
1136
|
+
.ph-bold.ph-cigarette:before {
|
|
1137
|
+
content: "\ed90";
|
|
1138
|
+
}
|
|
1139
|
+
.ph-bold.ph-cigarette-slash:before {
|
|
1140
|
+
content: "\ed92";
|
|
1141
|
+
}
|
|
1142
|
+
.ph-bold.ph-circle:before {
|
|
1143
|
+
content: "\e18a";
|
|
1144
|
+
}
|
|
1145
|
+
.ph-bold.ph-circle-dashed:before {
|
|
1146
|
+
content: "\e602";
|
|
1147
|
+
}
|
|
1148
|
+
.ph-bold.ph-circle-half:before {
|
|
1149
|
+
content: "\e18c";
|
|
1150
|
+
}
|
|
1151
|
+
.ph-bold.ph-circle-half-tilt:before {
|
|
1152
|
+
content: "\e18e";
|
|
1153
|
+
}
|
|
1154
|
+
.ph-bold.ph-circle-notch:before {
|
|
1155
|
+
content: "\eb44";
|
|
1156
|
+
}
|
|
1157
|
+
.ph-bold.ph-circles-four:before {
|
|
1158
|
+
content: "\e190";
|
|
1159
|
+
}
|
|
1160
|
+
.ph-bold.ph-circles-three:before {
|
|
1161
|
+
content: "\e192";
|
|
1162
|
+
}
|
|
1163
|
+
.ph-bold.ph-circles-three-plus:before {
|
|
1164
|
+
content: "\e194";
|
|
1165
|
+
}
|
|
1166
|
+
.ph-bold.ph-circuitry:before {
|
|
1167
|
+
content: "\e9c2";
|
|
1168
|
+
}
|
|
1169
|
+
.ph-bold.ph-city:before {
|
|
1170
|
+
content: "\ea6a";
|
|
1171
|
+
}
|
|
1172
|
+
.ph-bold.ph-clipboard:before {
|
|
1173
|
+
content: "\e196";
|
|
1174
|
+
}
|
|
1175
|
+
.ph-bold.ph-clipboard-text:before {
|
|
1176
|
+
content: "\e198";
|
|
1177
|
+
}
|
|
1178
|
+
.ph-bold.ph-clock:before {
|
|
1179
|
+
content: "\e19a";
|
|
1180
|
+
}
|
|
1181
|
+
.ph-bold.ph-clock-afternoon:before {
|
|
1182
|
+
content: "\e19c";
|
|
1183
|
+
}
|
|
1184
|
+
.ph-bold.ph-clock-clockwise:before {
|
|
1185
|
+
content: "\e19e";
|
|
1186
|
+
}
|
|
1187
|
+
.ph-bold.ph-clock-countdown:before {
|
|
1188
|
+
content: "\ed2c";
|
|
1189
|
+
}
|
|
1190
|
+
.ph-bold.ph-clock-counter-clockwise:before {
|
|
1191
|
+
content: "\e1a0";
|
|
1192
|
+
}
|
|
1193
|
+
.ph-bold.ph-clock-user:before {
|
|
1194
|
+
content: "\edec";
|
|
1195
|
+
}
|
|
1196
|
+
.ph-bold.ph-closed-captioning:before {
|
|
1197
|
+
content: "\e1a4";
|
|
1198
|
+
}
|
|
1199
|
+
.ph-bold.ph-cloud:before {
|
|
1200
|
+
content: "\e1aa";
|
|
1201
|
+
}
|
|
1202
|
+
.ph-bold.ph-cloud-arrow-down:before {
|
|
1203
|
+
content: "\e1ac";
|
|
1204
|
+
}
|
|
1205
|
+
.ph-bold.ph-cloud-arrow-up:before {
|
|
1206
|
+
content: "\e1ae";
|
|
1207
|
+
}
|
|
1208
|
+
.ph-bold.ph-cloud-check:before {
|
|
1209
|
+
content: "\e1b0";
|
|
1210
|
+
}
|
|
1211
|
+
.ph-bold.ph-cloud-fog:before {
|
|
1212
|
+
content: "\e53c";
|
|
1213
|
+
}
|
|
1214
|
+
.ph-bold.ph-cloud-lightning:before {
|
|
1215
|
+
content: "\e1b2";
|
|
1216
|
+
}
|
|
1217
|
+
.ph-bold.ph-cloud-moon:before {
|
|
1218
|
+
content: "\e53e";
|
|
1219
|
+
}
|
|
1220
|
+
.ph-bold.ph-cloud-rain:before {
|
|
1221
|
+
content: "\e1b4";
|
|
1222
|
+
}
|
|
1223
|
+
.ph-bold.ph-cloud-slash:before {
|
|
1224
|
+
content: "\e1b6";
|
|
1225
|
+
}
|
|
1226
|
+
.ph-bold.ph-cloud-snow:before {
|
|
1227
|
+
content: "\e1b8";
|
|
1228
|
+
}
|
|
1229
|
+
.ph-bold.ph-cloud-sun:before {
|
|
1230
|
+
content: "\e540";
|
|
1231
|
+
}
|
|
1232
|
+
.ph-bold.ph-cloud-warning:before {
|
|
1233
|
+
content: "\ea98";
|
|
1234
|
+
}
|
|
1235
|
+
.ph-bold.ph-cloud-x:before {
|
|
1236
|
+
content: "\ea96";
|
|
1237
|
+
}
|
|
1238
|
+
.ph-bold.ph-clover:before {
|
|
1239
|
+
content: "\edc8";
|
|
1240
|
+
}
|
|
1241
|
+
.ph-bold.ph-club:before {
|
|
1242
|
+
content: "\e1ba";
|
|
1243
|
+
}
|
|
1244
|
+
.ph-bold.ph-coat-hanger:before {
|
|
1245
|
+
content: "\e7fe";
|
|
1246
|
+
}
|
|
1247
|
+
.ph-bold.ph-coda-logo:before {
|
|
1248
|
+
content: "\e7ce";
|
|
1249
|
+
}
|
|
1250
|
+
.ph-bold.ph-code:before {
|
|
1251
|
+
content: "\e1bc";
|
|
1252
|
+
}
|
|
1253
|
+
.ph-bold.ph-code-block:before {
|
|
1254
|
+
content: "\eafe";
|
|
1255
|
+
}
|
|
1256
|
+
.ph-bold.ph-code-simple:before {
|
|
1257
|
+
content: "\e1be";
|
|
1258
|
+
}
|
|
1259
|
+
.ph-bold.ph-codepen-logo:before {
|
|
1260
|
+
content: "\e978";
|
|
1261
|
+
}
|
|
1262
|
+
.ph-bold.ph-codesandbox-logo:before {
|
|
1263
|
+
content: "\ea06";
|
|
1264
|
+
}
|
|
1265
|
+
.ph-bold.ph-coffee:before {
|
|
1266
|
+
content: "\e1c2";
|
|
1267
|
+
}
|
|
1268
|
+
.ph-bold.ph-coffee-bean:before {
|
|
1269
|
+
content: "\e1c0";
|
|
1270
|
+
}
|
|
1271
|
+
.ph-bold.ph-coin:before {
|
|
1272
|
+
content: "\e60e";
|
|
1273
|
+
}
|
|
1274
|
+
.ph-bold.ph-coin-vertical:before {
|
|
1275
|
+
content: "\eb48";
|
|
1276
|
+
}
|
|
1277
|
+
.ph-bold.ph-coins:before {
|
|
1278
|
+
content: "\e78e";
|
|
1279
|
+
}
|
|
1280
|
+
.ph-bold.ph-columns:before {
|
|
1281
|
+
content: "\e546";
|
|
1282
|
+
}
|
|
1283
|
+
.ph-bold.ph-columns-plus-left:before {
|
|
1284
|
+
content: "\e544";
|
|
1285
|
+
}
|
|
1286
|
+
.ph-bold.ph-columns-plus-right:before {
|
|
1287
|
+
content: "\e542";
|
|
1288
|
+
}
|
|
1289
|
+
.ph-bold.ph-command:before {
|
|
1290
|
+
content: "\e1c4";
|
|
1291
|
+
}
|
|
1292
|
+
.ph-bold.ph-compass:before {
|
|
1293
|
+
content: "\e1c8";
|
|
1294
|
+
}
|
|
1295
|
+
.ph-bold.ph-compass-rose:before {
|
|
1296
|
+
content: "\e1c6";
|
|
1297
|
+
}
|
|
1298
|
+
.ph-bold.ph-compass-tool:before {
|
|
1299
|
+
content: "\ea0e";
|
|
1300
|
+
}
|
|
1301
|
+
.ph-bold.ph-computer-tower:before {
|
|
1302
|
+
content: "\e548";
|
|
1303
|
+
}
|
|
1304
|
+
.ph-bold.ph-confetti:before {
|
|
1305
|
+
content: "\e81a";
|
|
1306
|
+
}
|
|
1307
|
+
.ph-bold.ph-contactless-payment:before {
|
|
1308
|
+
content: "\ed42";
|
|
1309
|
+
}
|
|
1310
|
+
.ph-bold.ph-control:before {
|
|
1311
|
+
content: "\eca6";
|
|
1312
|
+
}
|
|
1313
|
+
.ph-bold.ph-cookie:before {
|
|
1314
|
+
content: "\e6ca";
|
|
1315
|
+
}
|
|
1316
|
+
.ph-bold.ph-cooking-pot:before {
|
|
1317
|
+
content: "\e764";
|
|
1318
|
+
}
|
|
1319
|
+
.ph-bold.ph-copy:before {
|
|
1320
|
+
content: "\e1ca";
|
|
1321
|
+
}
|
|
1322
|
+
.ph-bold.ph-copy-simple:before {
|
|
1323
|
+
content: "\e1cc";
|
|
1324
|
+
}
|
|
1325
|
+
.ph-bold.ph-copyleft:before {
|
|
1326
|
+
content: "\e86a";
|
|
1327
|
+
}
|
|
1328
|
+
.ph-bold.ph-copyright:before {
|
|
1329
|
+
content: "\e54a";
|
|
1330
|
+
}
|
|
1331
|
+
.ph-bold.ph-corners-in:before {
|
|
1332
|
+
content: "\e1ce";
|
|
1333
|
+
}
|
|
1334
|
+
.ph-bold.ph-corners-out:before {
|
|
1335
|
+
content: "\e1d0";
|
|
1336
|
+
}
|
|
1337
|
+
.ph-bold.ph-couch:before {
|
|
1338
|
+
content: "\e7f6";
|
|
1339
|
+
}
|
|
1340
|
+
.ph-bold.ph-court-basketball:before {
|
|
1341
|
+
content: "\ee36";
|
|
1342
|
+
}
|
|
1343
|
+
.ph-bold.ph-cow:before {
|
|
1344
|
+
content: "\eabe";
|
|
1345
|
+
}
|
|
1346
|
+
.ph-bold.ph-cowboy-hat:before {
|
|
1347
|
+
content: "\ed12";
|
|
1348
|
+
}
|
|
1349
|
+
.ph-bold.ph-cpu:before {
|
|
1350
|
+
content: "\e610";
|
|
1351
|
+
}
|
|
1352
|
+
.ph-bold.ph-crane:before {
|
|
1353
|
+
content: "\ed48";
|
|
1354
|
+
}
|
|
1355
|
+
.ph-bold.ph-crane-tower:before {
|
|
1356
|
+
content: "\ed49";
|
|
1357
|
+
}
|
|
1358
|
+
.ph-bold.ph-credit-card:before {
|
|
1359
|
+
content: "\e1d2";
|
|
1360
|
+
}
|
|
1361
|
+
.ph-bold.ph-cricket:before {
|
|
1362
|
+
content: "\ee12";
|
|
1363
|
+
}
|
|
1364
|
+
.ph-bold.ph-crop:before {
|
|
1365
|
+
content: "\e1d4";
|
|
1366
|
+
}
|
|
1367
|
+
.ph-bold.ph-cross:before {
|
|
1368
|
+
content: "\e8a0";
|
|
1369
|
+
}
|
|
1370
|
+
.ph-bold.ph-crosshair:before {
|
|
1371
|
+
content: "\e1d6";
|
|
1372
|
+
}
|
|
1373
|
+
.ph-bold.ph-crosshair-simple:before {
|
|
1374
|
+
content: "\e1d8";
|
|
1375
|
+
}
|
|
1376
|
+
.ph-bold.ph-crown:before {
|
|
1377
|
+
content: "\e614";
|
|
1378
|
+
}
|
|
1379
|
+
.ph-bold.ph-crown-cross:before {
|
|
1380
|
+
content: "\ee5e";
|
|
1381
|
+
}
|
|
1382
|
+
.ph-bold.ph-crown-simple:before {
|
|
1383
|
+
content: "\e616";
|
|
1384
|
+
}
|
|
1385
|
+
.ph-bold.ph-cube:before {
|
|
1386
|
+
content: "\e1da";
|
|
1387
|
+
}
|
|
1388
|
+
.ph-bold.ph-cube-focus:before {
|
|
1389
|
+
content: "\ed0a";
|
|
1390
|
+
}
|
|
1391
|
+
.ph-bold.ph-cube-transparent:before {
|
|
1392
|
+
content: "\ec7c";
|
|
1393
|
+
}
|
|
1394
|
+
.ph-bold.ph-currency-btc:before {
|
|
1395
|
+
content: "\e618";
|
|
1396
|
+
}
|
|
1397
|
+
.ph-bold.ph-currency-circle-dollar:before {
|
|
1398
|
+
content: "\e54c";
|
|
1399
|
+
}
|
|
1400
|
+
.ph-bold.ph-currency-cny:before {
|
|
1401
|
+
content: "\e54e";
|
|
1402
|
+
}
|
|
1403
|
+
.ph-bold.ph-currency-dollar:before {
|
|
1404
|
+
content: "\e550";
|
|
1405
|
+
}
|
|
1406
|
+
.ph-bold.ph-currency-dollar-simple:before {
|
|
1407
|
+
content: "\e552";
|
|
1408
|
+
}
|
|
1409
|
+
.ph-bold.ph-currency-eth:before {
|
|
1410
|
+
content: "\eada";
|
|
1411
|
+
}
|
|
1412
|
+
.ph-bold.ph-currency-eur:before {
|
|
1413
|
+
content: "\e554";
|
|
1414
|
+
}
|
|
1415
|
+
.ph-bold.ph-currency-gbp:before {
|
|
1416
|
+
content: "\e556";
|
|
1417
|
+
}
|
|
1418
|
+
.ph-bold.ph-currency-inr:before {
|
|
1419
|
+
content: "\e558";
|
|
1420
|
+
}
|
|
1421
|
+
.ph-bold.ph-currency-jpy:before {
|
|
1422
|
+
content: "\e55a";
|
|
1423
|
+
}
|
|
1424
|
+
.ph-bold.ph-currency-krw:before {
|
|
1425
|
+
content: "\e55c";
|
|
1426
|
+
}
|
|
1427
|
+
.ph-bold.ph-currency-kzt:before {
|
|
1428
|
+
content: "\ec4c";
|
|
1429
|
+
}
|
|
1430
|
+
.ph-bold.ph-currency-ngn:before {
|
|
1431
|
+
content: "\eb52";
|
|
1432
|
+
}
|
|
1433
|
+
.ph-bold.ph-currency-rub:before {
|
|
1434
|
+
content: "\e55e";
|
|
1435
|
+
}
|
|
1436
|
+
.ph-bold.ph-cursor:before {
|
|
1437
|
+
content: "\e1dc";
|
|
1438
|
+
}
|
|
1439
|
+
.ph-bold.ph-cursor-click:before {
|
|
1440
|
+
content: "\e7c8";
|
|
1441
|
+
}
|
|
1442
|
+
.ph-bold.ph-cursor-text:before {
|
|
1443
|
+
content: "\e7d8";
|
|
1444
|
+
}
|
|
1445
|
+
.ph-bold.ph-cylinder:before {
|
|
1446
|
+
content: "\e8fc";
|
|
1447
|
+
}
|
|
1448
|
+
.ph-bold.ph-database:before {
|
|
1449
|
+
content: "\e1de";
|
|
1450
|
+
}
|
|
1451
|
+
.ph-bold.ph-desk:before {
|
|
1452
|
+
content: "\ed16";
|
|
1453
|
+
}
|
|
1454
|
+
.ph-bold.ph-desktop:before {
|
|
1455
|
+
content: "\e560";
|
|
1456
|
+
}
|
|
1457
|
+
.ph-bold.ph-desktop-tower:before {
|
|
1458
|
+
content: "\e562";
|
|
1459
|
+
}
|
|
1460
|
+
.ph-bold.ph-detective:before {
|
|
1461
|
+
content: "\e83e";
|
|
1462
|
+
}
|
|
1463
|
+
.ph-bold.ph-dev-to-logo:before {
|
|
1464
|
+
content: "\ed0e";
|
|
1465
|
+
}
|
|
1466
|
+
.ph-bold.ph-device-mobile:before {
|
|
1467
|
+
content: "\e1e0";
|
|
1468
|
+
}
|
|
1469
|
+
.ph-bold.ph-device-mobile-camera:before {
|
|
1470
|
+
content: "\e1e2";
|
|
1471
|
+
}
|
|
1472
|
+
.ph-bold.ph-device-mobile-slash:before {
|
|
1473
|
+
content: "\ee46";
|
|
1474
|
+
}
|
|
1475
|
+
.ph-bold.ph-device-mobile-speaker:before {
|
|
1476
|
+
content: "\e1e4";
|
|
1477
|
+
}
|
|
1478
|
+
.ph-bold.ph-device-rotate:before {
|
|
1479
|
+
content: "\edf2";
|
|
1480
|
+
}
|
|
1481
|
+
.ph-bold.ph-device-tablet:before {
|
|
1482
|
+
content: "\e1e6";
|
|
1483
|
+
}
|
|
1484
|
+
.ph-bold.ph-device-tablet-camera:before {
|
|
1485
|
+
content: "\e1e8";
|
|
1486
|
+
}
|
|
1487
|
+
.ph-bold.ph-device-tablet-speaker:before {
|
|
1488
|
+
content: "\e1ea";
|
|
1489
|
+
}
|
|
1490
|
+
.ph-bold.ph-devices:before {
|
|
1491
|
+
content: "\eba4";
|
|
1492
|
+
}
|
|
1493
|
+
.ph-bold.ph-diamond:before {
|
|
1494
|
+
content: "\e1ec";
|
|
1495
|
+
}
|
|
1496
|
+
.ph-bold.ph-diamonds-four:before {
|
|
1497
|
+
content: "\e8f4";
|
|
1498
|
+
}
|
|
1499
|
+
.ph-bold.ph-dice-five:before {
|
|
1500
|
+
content: "\e1ee";
|
|
1501
|
+
}
|
|
1502
|
+
.ph-bold.ph-dice-four:before {
|
|
1503
|
+
content: "\e1f0";
|
|
1504
|
+
}
|
|
1505
|
+
.ph-bold.ph-dice-one:before {
|
|
1506
|
+
content: "\e1f2";
|
|
1507
|
+
}
|
|
1508
|
+
.ph-bold.ph-dice-six:before {
|
|
1509
|
+
content: "\e1f4";
|
|
1510
|
+
}
|
|
1511
|
+
.ph-bold.ph-dice-three:before {
|
|
1512
|
+
content: "\e1f6";
|
|
1513
|
+
}
|
|
1514
|
+
.ph-bold.ph-dice-two:before {
|
|
1515
|
+
content: "\e1f8";
|
|
1516
|
+
}
|
|
1517
|
+
.ph-bold.ph-disc:before {
|
|
1518
|
+
content: "\e564";
|
|
1519
|
+
}
|
|
1520
|
+
.ph-bold.ph-disco-ball:before {
|
|
1521
|
+
content: "\ed98";
|
|
1522
|
+
}
|
|
1523
|
+
.ph-bold.ph-discord-logo:before {
|
|
1524
|
+
content: "\e61a";
|
|
1525
|
+
}
|
|
1526
|
+
.ph-bold.ph-divide:before {
|
|
1527
|
+
content: "\e1fa";
|
|
1528
|
+
}
|
|
1529
|
+
.ph-bold.ph-dna:before {
|
|
1530
|
+
content: "\e924";
|
|
1531
|
+
}
|
|
1532
|
+
.ph-bold.ph-dog:before {
|
|
1533
|
+
content: "\e74a";
|
|
1534
|
+
}
|
|
1535
|
+
.ph-bold.ph-door:before {
|
|
1536
|
+
content: "\e61c";
|
|
1537
|
+
}
|
|
1538
|
+
.ph-bold.ph-door-open:before {
|
|
1539
|
+
content: "\e7e6";
|
|
1540
|
+
}
|
|
1541
|
+
.ph-bold.ph-dot:before {
|
|
1542
|
+
content: "\ecde";
|
|
1543
|
+
}
|
|
1544
|
+
.ph-bold.ph-dot-outline:before {
|
|
1545
|
+
content: "\ece0";
|
|
1546
|
+
}
|
|
1547
|
+
.ph-bold.ph-dots-nine:before {
|
|
1548
|
+
content: "\e1fc";
|
|
1549
|
+
}
|
|
1550
|
+
.ph-bold.ph-dots-six:before {
|
|
1551
|
+
content: "\e794";
|
|
1552
|
+
}
|
|
1553
|
+
.ph-bold.ph-dots-six-vertical:before {
|
|
1554
|
+
content: "\eae2";
|
|
1555
|
+
}
|
|
1556
|
+
.ph-bold.ph-dots-three:before {
|
|
1557
|
+
content: "\e1fe";
|
|
1558
|
+
}
|
|
1559
|
+
.ph-bold.ph-dots-three-circle:before {
|
|
1560
|
+
content: "\e200";
|
|
1561
|
+
}
|
|
1562
|
+
.ph-bold.ph-dots-three-circle-vertical:before {
|
|
1563
|
+
content: "\e202";
|
|
1564
|
+
}
|
|
1565
|
+
.ph-bold.ph-dots-three-outline:before {
|
|
1566
|
+
content: "\e204";
|
|
1567
|
+
}
|
|
1568
|
+
.ph-bold.ph-dots-three-outline-vertical:before {
|
|
1569
|
+
content: "\e206";
|
|
1570
|
+
}
|
|
1571
|
+
.ph-bold.ph-dots-three-vertical:before {
|
|
1572
|
+
content: "\e208";
|
|
1573
|
+
}
|
|
1574
|
+
.ph-bold.ph-download:before {
|
|
1575
|
+
content: "\e20a";
|
|
1576
|
+
}
|
|
1577
|
+
.ph-bold.ph-download-simple:before {
|
|
1578
|
+
content: "\e20c";
|
|
1579
|
+
}
|
|
1580
|
+
.ph-bold.ph-dress:before {
|
|
1581
|
+
content: "\ea7e";
|
|
1582
|
+
}
|
|
1583
|
+
.ph-bold.ph-dresser:before {
|
|
1584
|
+
content: "\e94e";
|
|
1585
|
+
}
|
|
1586
|
+
.ph-bold.ph-dribbble-logo:before {
|
|
1587
|
+
content: "\e20e";
|
|
1588
|
+
}
|
|
1589
|
+
.ph-bold.ph-drone:before {
|
|
1590
|
+
content: "\ed74";
|
|
1591
|
+
}
|
|
1592
|
+
.ph-bold.ph-drop:before {
|
|
1593
|
+
content: "\e210";
|
|
1594
|
+
}
|
|
1595
|
+
.ph-bold.ph-drop-half:before {
|
|
1596
|
+
content: "\e566";
|
|
1597
|
+
}
|
|
1598
|
+
.ph-bold.ph-drop-half-bottom:before {
|
|
1599
|
+
content: "\eb40";
|
|
1600
|
+
}
|
|
1601
|
+
.ph-bold.ph-drop-simple:before {
|
|
1602
|
+
content: "\ee32";
|
|
1603
|
+
}
|
|
1604
|
+
.ph-bold.ph-drop-slash:before {
|
|
1605
|
+
content: "\e954";
|
|
1606
|
+
}
|
|
1607
|
+
.ph-bold.ph-dropbox-logo:before {
|
|
1608
|
+
content: "\e7d0";
|
|
1609
|
+
}
|
|
1610
|
+
.ph-bold.ph-ear:before {
|
|
1611
|
+
content: "\e70c";
|
|
1612
|
+
}
|
|
1613
|
+
.ph-bold.ph-ear-slash:before {
|
|
1614
|
+
content: "\e70e";
|
|
1615
|
+
}
|
|
1616
|
+
.ph-bold.ph-egg:before {
|
|
1617
|
+
content: "\e812";
|
|
1618
|
+
}
|
|
1619
|
+
.ph-bold.ph-egg-crack:before {
|
|
1620
|
+
content: "\eb64";
|
|
1621
|
+
}
|
|
1622
|
+
.ph-bold.ph-eject:before {
|
|
1623
|
+
content: "\e212";
|
|
1624
|
+
}
|
|
1625
|
+
.ph-bold.ph-eject-simple:before {
|
|
1626
|
+
content: "\e6ae";
|
|
1627
|
+
}
|
|
1628
|
+
.ph-bold.ph-elevator:before {
|
|
1629
|
+
content: "\ecc0";
|
|
1630
|
+
}
|
|
1631
|
+
.ph-bold.ph-empty:before {
|
|
1632
|
+
content: "\edbc";
|
|
1633
|
+
}
|
|
1634
|
+
.ph-bold.ph-engine:before {
|
|
1635
|
+
content: "\ea80";
|
|
1636
|
+
}
|
|
1637
|
+
.ph-bold.ph-envelope:before {
|
|
1638
|
+
content: "\e214";
|
|
1639
|
+
}
|
|
1640
|
+
.ph-bold.ph-envelope-open:before {
|
|
1641
|
+
content: "\e216";
|
|
1642
|
+
}
|
|
1643
|
+
.ph-bold.ph-envelope-simple:before {
|
|
1644
|
+
content: "\e218";
|
|
1645
|
+
}
|
|
1646
|
+
.ph-bold.ph-envelope-simple-open:before {
|
|
1647
|
+
content: "\e21a";
|
|
1648
|
+
}
|
|
1649
|
+
.ph-bold.ph-equalizer:before {
|
|
1650
|
+
content: "\ebbc";
|
|
1651
|
+
}
|
|
1652
|
+
.ph-bold.ph-equals:before {
|
|
1653
|
+
content: "\e21c";
|
|
1654
|
+
}
|
|
1655
|
+
.ph-bold.ph-eraser:before {
|
|
1656
|
+
content: "\e21e";
|
|
1657
|
+
}
|
|
1658
|
+
.ph-bold.ph-escalator-down:before {
|
|
1659
|
+
content: "\ecba";
|
|
1660
|
+
}
|
|
1661
|
+
.ph-bold.ph-escalator-up:before {
|
|
1662
|
+
content: "\ecbc";
|
|
1663
|
+
}
|
|
1664
|
+
.ph-bold.ph-exam:before {
|
|
1665
|
+
content: "\e742";
|
|
1666
|
+
}
|
|
1667
|
+
.ph-bold.ph-exclamation-mark:before {
|
|
1668
|
+
content: "\ee44";
|
|
1669
|
+
}
|
|
1670
|
+
.ph-bold.ph-exclude:before {
|
|
1671
|
+
content: "\e882";
|
|
1672
|
+
}
|
|
1673
|
+
.ph-bold.ph-exclude-square:before {
|
|
1674
|
+
content: "\e880";
|
|
1675
|
+
}
|
|
1676
|
+
.ph-bold.ph-export:before {
|
|
1677
|
+
content: "\eaf0";
|
|
1678
|
+
}
|
|
1679
|
+
.ph-bold.ph-eye:before {
|
|
1680
|
+
content: "\e220";
|
|
1681
|
+
}
|
|
1682
|
+
.ph-bold.ph-eye-closed:before {
|
|
1683
|
+
content: "\e222";
|
|
1684
|
+
}
|
|
1685
|
+
.ph-bold.ph-eye-slash:before {
|
|
1686
|
+
content: "\e224";
|
|
1687
|
+
}
|
|
1688
|
+
.ph-bold.ph-eyedropper:before {
|
|
1689
|
+
content: "\e568";
|
|
1690
|
+
}
|
|
1691
|
+
.ph-bold.ph-eyedropper-sample:before {
|
|
1692
|
+
content: "\eac4";
|
|
1693
|
+
}
|
|
1694
|
+
.ph-bold.ph-eyeglasses:before {
|
|
1695
|
+
content: "\e7ba";
|
|
1696
|
+
}
|
|
1697
|
+
.ph-bold.ph-eyes:before {
|
|
1698
|
+
content: "\ee5c";
|
|
1699
|
+
}
|
|
1700
|
+
.ph-bold.ph-face-mask:before {
|
|
1701
|
+
content: "\e56a";
|
|
1702
|
+
}
|
|
1703
|
+
.ph-bold.ph-facebook-logo:before {
|
|
1704
|
+
content: "\e226";
|
|
1705
|
+
}
|
|
1706
|
+
.ph-bold.ph-factory:before {
|
|
1707
|
+
content: "\e760";
|
|
1708
|
+
}
|
|
1709
|
+
.ph-bold.ph-faders:before {
|
|
1710
|
+
content: "\e228";
|
|
1711
|
+
}
|
|
1712
|
+
.ph-bold.ph-faders-horizontal:before {
|
|
1713
|
+
content: "\e22a";
|
|
1714
|
+
}
|
|
1715
|
+
.ph-bold.ph-fallout-shelter:before {
|
|
1716
|
+
content: "\e9de";
|
|
1717
|
+
}
|
|
1718
|
+
.ph-bold.ph-fan:before {
|
|
1719
|
+
content: "\e9f2";
|
|
1720
|
+
}
|
|
1721
|
+
.ph-bold.ph-farm:before {
|
|
1722
|
+
content: "\ec70";
|
|
1723
|
+
}
|
|
1724
|
+
.ph-bold.ph-fast-forward:before {
|
|
1725
|
+
content: "\e6a6";
|
|
1726
|
+
}
|
|
1727
|
+
.ph-bold.ph-fast-forward-circle:before {
|
|
1728
|
+
content: "\e22c";
|
|
1729
|
+
}
|
|
1730
|
+
.ph-bold.ph-feather:before {
|
|
1731
|
+
content: "\e9c0";
|
|
1732
|
+
}
|
|
1733
|
+
.ph-bold.ph-fediverse-logo:before {
|
|
1734
|
+
content: "\ed66";
|
|
1735
|
+
}
|
|
1736
|
+
.ph-bold.ph-figma-logo:before {
|
|
1737
|
+
content: "\e22e";
|
|
1738
|
+
}
|
|
1739
|
+
.ph-bold.ph-file:before {
|
|
1740
|
+
content: "\e230";
|
|
1741
|
+
}
|
|
1742
|
+
.ph-bold.ph-file-archive:before {
|
|
1743
|
+
content: "\eb2a";
|
|
1744
|
+
}
|
|
1745
|
+
.ph-bold.ph-file-arrow-down:before {
|
|
1746
|
+
content: "\e232";
|
|
1747
|
+
}
|
|
1748
|
+
.ph-bold.ph-file-arrow-up:before {
|
|
1749
|
+
content: "\e61e";
|
|
1750
|
+
}
|
|
1751
|
+
.ph-bold.ph-file-audio:before {
|
|
1752
|
+
content: "\ea20";
|
|
1753
|
+
}
|
|
1754
|
+
.ph-bold.ph-file-c:before {
|
|
1755
|
+
content: "\eb32";
|
|
1756
|
+
}
|
|
1757
|
+
.ph-bold.ph-file-c-sharp:before {
|
|
1758
|
+
content: "\eb30";
|
|
1759
|
+
}
|
|
1760
|
+
.ph-bold.ph-file-cloud:before {
|
|
1761
|
+
content: "\e95e";
|
|
1762
|
+
}
|
|
1763
|
+
.ph-bold.ph-file-code:before {
|
|
1764
|
+
content: "\e914";
|
|
1765
|
+
}
|
|
1766
|
+
.ph-bold.ph-file-cpp:before {
|
|
1767
|
+
content: "\eb2e";
|
|
1768
|
+
}
|
|
1769
|
+
.ph-bold.ph-file-css:before {
|
|
1770
|
+
content: "\eb34";
|
|
1771
|
+
}
|
|
1772
|
+
.ph-bold.ph-file-csv:before {
|
|
1773
|
+
content: "\eb1c";
|
|
1774
|
+
}
|
|
1775
|
+
.ph-bold.ph-file-dashed:before {
|
|
1776
|
+
content: "\e704";
|
|
1777
|
+
}
|
|
1778
|
+
.ph-bold.ph-file-dotted:before {
|
|
1779
|
+
content: "\e704";
|
|
1780
|
+
}
|
|
1781
|
+
.ph-bold.ph-file-doc:before {
|
|
1782
|
+
content: "\eb1e";
|
|
1783
|
+
}
|
|
1784
|
+
.ph-bold.ph-file-html:before {
|
|
1785
|
+
content: "\eb38";
|
|
1786
|
+
}
|
|
1787
|
+
.ph-bold.ph-file-image:before {
|
|
1788
|
+
content: "\ea24";
|
|
1789
|
+
}
|
|
1790
|
+
.ph-bold.ph-file-ini:before {
|
|
1791
|
+
content: "\eb33";
|
|
1792
|
+
}
|
|
1793
|
+
.ph-bold.ph-file-jpg:before {
|
|
1794
|
+
content: "\eb1a";
|
|
1795
|
+
}
|
|
1796
|
+
.ph-bold.ph-file-js:before {
|
|
1797
|
+
content: "\eb24";
|
|
1798
|
+
}
|
|
1799
|
+
.ph-bold.ph-file-jsx:before {
|
|
1800
|
+
content: "\eb3a";
|
|
1801
|
+
}
|
|
1802
|
+
.ph-bold.ph-file-lock:before {
|
|
1803
|
+
content: "\e95c";
|
|
1804
|
+
}
|
|
1805
|
+
.ph-bold.ph-file-magnifying-glass:before {
|
|
1806
|
+
content: "\e238";
|
|
1807
|
+
}
|
|
1808
|
+
.ph-bold.ph-file-search:before {
|
|
1809
|
+
content: "\e238";
|
|
1810
|
+
}
|
|
1811
|
+
.ph-bold.ph-file-md:before {
|
|
1812
|
+
content: "\ed50";
|
|
1813
|
+
}
|
|
1814
|
+
.ph-bold.ph-file-minus:before {
|
|
1815
|
+
content: "\e234";
|
|
1816
|
+
}
|
|
1817
|
+
.ph-bold.ph-file-pdf:before {
|
|
1818
|
+
content: "\e702";
|
|
1819
|
+
}
|
|
1820
|
+
.ph-bold.ph-file-plus:before {
|
|
1821
|
+
content: "\e236";
|
|
1822
|
+
}
|
|
1823
|
+
.ph-bold.ph-file-png:before {
|
|
1824
|
+
content: "\eb18";
|
|
1825
|
+
}
|
|
1826
|
+
.ph-bold.ph-file-ppt:before {
|
|
1827
|
+
content: "\eb20";
|
|
1828
|
+
}
|
|
1829
|
+
.ph-bold.ph-file-py:before {
|
|
1830
|
+
content: "\eb2c";
|
|
1831
|
+
}
|
|
1832
|
+
.ph-bold.ph-file-rs:before {
|
|
1833
|
+
content: "\eb28";
|
|
1834
|
+
}
|
|
1835
|
+
.ph-bold.ph-file-sql:before {
|
|
1836
|
+
content: "\ed4e";
|
|
1837
|
+
}
|
|
1838
|
+
.ph-bold.ph-file-svg:before {
|
|
1839
|
+
content: "\ed08";
|
|
1840
|
+
}
|
|
1841
|
+
.ph-bold.ph-file-text:before {
|
|
1842
|
+
content: "\e23a";
|
|
1843
|
+
}
|
|
1844
|
+
.ph-bold.ph-file-ts:before {
|
|
1845
|
+
content: "\eb26";
|
|
1846
|
+
}
|
|
1847
|
+
.ph-bold.ph-file-tsx:before {
|
|
1848
|
+
content: "\eb3c";
|
|
1849
|
+
}
|
|
1850
|
+
.ph-bold.ph-file-txt:before {
|
|
1851
|
+
content: "\eb35";
|
|
1852
|
+
}
|
|
1853
|
+
.ph-bold.ph-file-video:before {
|
|
1854
|
+
content: "\ea22";
|
|
1855
|
+
}
|
|
1856
|
+
.ph-bold.ph-file-vue:before {
|
|
1857
|
+
content: "\eb3e";
|
|
1858
|
+
}
|
|
1859
|
+
.ph-bold.ph-file-x:before {
|
|
1860
|
+
content: "\e23c";
|
|
1861
|
+
}
|
|
1862
|
+
.ph-bold.ph-file-xls:before {
|
|
1863
|
+
content: "\eb22";
|
|
1864
|
+
}
|
|
1865
|
+
.ph-bold.ph-file-zip:before {
|
|
1866
|
+
content: "\e958";
|
|
1867
|
+
}
|
|
1868
|
+
.ph-bold.ph-files:before {
|
|
1869
|
+
content: "\e710";
|
|
1870
|
+
}
|
|
1871
|
+
.ph-bold.ph-film-reel:before {
|
|
1872
|
+
content: "\e8c0";
|
|
1873
|
+
}
|
|
1874
|
+
.ph-bold.ph-film-script:before {
|
|
1875
|
+
content: "\eb50";
|
|
1876
|
+
}
|
|
1877
|
+
.ph-bold.ph-film-slate:before {
|
|
1878
|
+
content: "\e8c2";
|
|
1879
|
+
}
|
|
1880
|
+
.ph-bold.ph-film-strip:before {
|
|
1881
|
+
content: "\e792";
|
|
1882
|
+
}
|
|
1883
|
+
.ph-bold.ph-fingerprint:before {
|
|
1884
|
+
content: "\e23e";
|
|
1885
|
+
}
|
|
1886
|
+
.ph-bold.ph-fingerprint-simple:before {
|
|
1887
|
+
content: "\e240";
|
|
1888
|
+
}
|
|
1889
|
+
.ph-bold.ph-finn-the-human:before {
|
|
1890
|
+
content: "\e56c";
|
|
1891
|
+
}
|
|
1892
|
+
.ph-bold.ph-fire:before {
|
|
1893
|
+
content: "\e242";
|
|
1894
|
+
}
|
|
1895
|
+
.ph-bold.ph-fire-extinguisher:before {
|
|
1896
|
+
content: "\e9e8";
|
|
1897
|
+
}
|
|
1898
|
+
.ph-bold.ph-fire-simple:before {
|
|
1899
|
+
content: "\e620";
|
|
1900
|
+
}
|
|
1901
|
+
.ph-bold.ph-fire-truck:before {
|
|
1902
|
+
content: "\e574";
|
|
1903
|
+
}
|
|
1904
|
+
.ph-bold.ph-first-aid:before {
|
|
1905
|
+
content: "\e56e";
|
|
1906
|
+
}
|
|
1907
|
+
.ph-bold.ph-first-aid-kit:before {
|
|
1908
|
+
content: "\e570";
|
|
1909
|
+
}
|
|
1910
|
+
.ph-bold.ph-fish:before {
|
|
1911
|
+
content: "\e728";
|
|
1912
|
+
}
|
|
1913
|
+
.ph-bold.ph-fish-simple:before {
|
|
1914
|
+
content: "\e72a";
|
|
1915
|
+
}
|
|
1916
|
+
.ph-bold.ph-flag:before {
|
|
1917
|
+
content: "\e244";
|
|
1918
|
+
}
|
|
1919
|
+
.ph-bold.ph-flag-banner:before {
|
|
1920
|
+
content: "\e622";
|
|
1921
|
+
}
|
|
1922
|
+
.ph-bold.ph-flag-banner-fold:before {
|
|
1923
|
+
content: "\ecf2";
|
|
1924
|
+
}
|
|
1925
|
+
.ph-bold.ph-flag-checkered:before {
|
|
1926
|
+
content: "\ea38";
|
|
1927
|
+
}
|
|
1928
|
+
.ph-bold.ph-flag-pennant:before {
|
|
1929
|
+
content: "\ecf0";
|
|
1930
|
+
}
|
|
1931
|
+
.ph-bold.ph-flame:before {
|
|
1932
|
+
content: "\e624";
|
|
1933
|
+
}
|
|
1934
|
+
.ph-bold.ph-flashlight:before {
|
|
1935
|
+
content: "\e246";
|
|
1936
|
+
}
|
|
1937
|
+
.ph-bold.ph-flask:before {
|
|
1938
|
+
content: "\e79e";
|
|
1939
|
+
}
|
|
1940
|
+
.ph-bold.ph-flip-horizontal:before {
|
|
1941
|
+
content: "\ed6a";
|
|
1942
|
+
}
|
|
1943
|
+
.ph-bold.ph-flip-vertical:before {
|
|
1944
|
+
content: "\ed6c";
|
|
1945
|
+
}
|
|
1946
|
+
.ph-bold.ph-floppy-disk:before {
|
|
1947
|
+
content: "\e248";
|
|
1948
|
+
}
|
|
1949
|
+
.ph-bold.ph-floppy-disk-back:before {
|
|
1950
|
+
content: "\eaf4";
|
|
1951
|
+
}
|
|
1952
|
+
.ph-bold.ph-flow-arrow:before {
|
|
1953
|
+
content: "\e6ec";
|
|
1954
|
+
}
|
|
1955
|
+
.ph-bold.ph-flower:before {
|
|
1956
|
+
content: "\e75e";
|
|
1957
|
+
}
|
|
1958
|
+
.ph-bold.ph-flower-lotus:before {
|
|
1959
|
+
content: "\e6cc";
|
|
1960
|
+
}
|
|
1961
|
+
.ph-bold.ph-flower-tulip:before {
|
|
1962
|
+
content: "\eacc";
|
|
1963
|
+
}
|
|
1964
|
+
.ph-bold.ph-flying-saucer:before {
|
|
1965
|
+
content: "\eb4a";
|
|
1966
|
+
}
|
|
1967
|
+
.ph-bold.ph-folder:before {
|
|
1968
|
+
content: "\e24a";
|
|
1969
|
+
}
|
|
1970
|
+
.ph-bold.ph-folder-notch:before {
|
|
1971
|
+
content: "\e24a";
|
|
1972
|
+
}
|
|
1973
|
+
.ph-bold.ph-folder-dashed:before {
|
|
1974
|
+
content: "\e8f8";
|
|
1975
|
+
}
|
|
1976
|
+
.ph-bold.ph-folder-dotted:before {
|
|
1977
|
+
content: "\e8f8";
|
|
1978
|
+
}
|
|
1979
|
+
.ph-bold.ph-folder-lock:before {
|
|
1980
|
+
content: "\ea3c";
|
|
1981
|
+
}
|
|
1982
|
+
.ph-bold.ph-folder-minus:before {
|
|
1983
|
+
content: "\e254";
|
|
1984
|
+
}
|
|
1985
|
+
.ph-bold.ph-folder-notch-minus:before {
|
|
1986
|
+
content: "\e254";
|
|
1987
|
+
}
|
|
1988
|
+
.ph-bold.ph-folder-open:before {
|
|
1989
|
+
content: "\e256";
|
|
1990
|
+
}
|
|
1991
|
+
.ph-bold.ph-folder-notch-open:before {
|
|
1992
|
+
content: "\e256";
|
|
1993
|
+
}
|
|
1994
|
+
.ph-bold.ph-folder-plus:before {
|
|
1995
|
+
content: "\e258";
|
|
1996
|
+
}
|
|
1997
|
+
.ph-bold.ph-folder-notch-plus:before {
|
|
1998
|
+
content: "\e258";
|
|
1999
|
+
}
|
|
2000
|
+
.ph-bold.ph-folder-simple:before {
|
|
2001
|
+
content: "\e25a";
|
|
2002
|
+
}
|
|
2003
|
+
.ph-bold.ph-folder-simple-dashed:before {
|
|
2004
|
+
content: "\ec2a";
|
|
2005
|
+
}
|
|
2006
|
+
.ph-bold.ph-folder-simple-dotted:before {
|
|
2007
|
+
content: "\ec2a";
|
|
2008
|
+
}
|
|
2009
|
+
.ph-bold.ph-folder-simple-lock:before {
|
|
2010
|
+
content: "\eb5e";
|
|
2011
|
+
}
|
|
2012
|
+
.ph-bold.ph-folder-simple-minus:before {
|
|
2013
|
+
content: "\e25c";
|
|
2014
|
+
}
|
|
2015
|
+
.ph-bold.ph-folder-simple-plus:before {
|
|
2016
|
+
content: "\e25e";
|
|
2017
|
+
}
|
|
2018
|
+
.ph-bold.ph-folder-simple-star:before {
|
|
2019
|
+
content: "\ec2e";
|
|
2020
|
+
}
|
|
2021
|
+
.ph-bold.ph-folder-simple-user:before {
|
|
2022
|
+
content: "\eb60";
|
|
2023
|
+
}
|
|
2024
|
+
.ph-bold.ph-folder-star:before {
|
|
2025
|
+
content: "\ea86";
|
|
2026
|
+
}
|
|
2027
|
+
.ph-bold.ph-folder-user:before {
|
|
2028
|
+
content: "\eb46";
|
|
2029
|
+
}
|
|
2030
|
+
.ph-bold.ph-folders:before {
|
|
2031
|
+
content: "\e260";
|
|
2032
|
+
}
|
|
2033
|
+
.ph-bold.ph-football:before {
|
|
2034
|
+
content: "\e718";
|
|
2035
|
+
}
|
|
2036
|
+
.ph-bold.ph-football-helmet:before {
|
|
2037
|
+
content: "\ee4c";
|
|
2038
|
+
}
|
|
2039
|
+
.ph-bold.ph-footprints:before {
|
|
2040
|
+
content: "\ea88";
|
|
2041
|
+
}
|
|
2042
|
+
.ph-bold.ph-fork-knife:before {
|
|
2043
|
+
content: "\e262";
|
|
2044
|
+
}
|
|
2045
|
+
.ph-bold.ph-four-k:before {
|
|
2046
|
+
content: "\ea5c";
|
|
2047
|
+
}
|
|
2048
|
+
.ph-bold.ph-frame-corners:before {
|
|
2049
|
+
content: "\e626";
|
|
2050
|
+
}
|
|
2051
|
+
.ph-bold.ph-framer-logo:before {
|
|
2052
|
+
content: "\e264";
|
|
2053
|
+
}
|
|
2054
|
+
.ph-bold.ph-function:before {
|
|
2055
|
+
content: "\ebe4";
|
|
2056
|
+
}
|
|
2057
|
+
.ph-bold.ph-funnel:before {
|
|
2058
|
+
content: "\e266";
|
|
2059
|
+
}
|
|
2060
|
+
.ph-bold.ph-funnel-simple:before {
|
|
2061
|
+
content: "\e268";
|
|
2062
|
+
}
|
|
2063
|
+
.ph-bold.ph-funnel-simple-x:before {
|
|
2064
|
+
content: "\e26a";
|
|
2065
|
+
}
|
|
2066
|
+
.ph-bold.ph-funnel-x:before {
|
|
2067
|
+
content: "\e26c";
|
|
2068
|
+
}
|
|
2069
|
+
.ph-bold.ph-game-controller:before {
|
|
2070
|
+
content: "\e26e";
|
|
2071
|
+
}
|
|
2072
|
+
.ph-bold.ph-garage:before {
|
|
2073
|
+
content: "\ecd6";
|
|
2074
|
+
}
|
|
2075
|
+
.ph-bold.ph-gas-can:before {
|
|
2076
|
+
content: "\e8ce";
|
|
2077
|
+
}
|
|
2078
|
+
.ph-bold.ph-gas-pump:before {
|
|
2079
|
+
content: "\e768";
|
|
2080
|
+
}
|
|
2081
|
+
.ph-bold.ph-gauge:before {
|
|
2082
|
+
content: "\e628";
|
|
2083
|
+
}
|
|
2084
|
+
.ph-bold.ph-gavel:before {
|
|
2085
|
+
content: "\ea32";
|
|
2086
|
+
}
|
|
2087
|
+
.ph-bold.ph-gear:before {
|
|
2088
|
+
content: "\e270";
|
|
2089
|
+
}
|
|
2090
|
+
.ph-bold.ph-gear-fine:before {
|
|
2091
|
+
content: "\e87c";
|
|
2092
|
+
}
|
|
2093
|
+
.ph-bold.ph-gear-six:before {
|
|
2094
|
+
content: "\e272";
|
|
2095
|
+
}
|
|
2096
|
+
.ph-bold.ph-gender-female:before {
|
|
2097
|
+
content: "\e6e0";
|
|
2098
|
+
}
|
|
2099
|
+
.ph-bold.ph-gender-intersex:before {
|
|
2100
|
+
content: "\e6e6";
|
|
2101
|
+
}
|
|
2102
|
+
.ph-bold.ph-gender-male:before {
|
|
2103
|
+
content: "\e6e2";
|
|
2104
|
+
}
|
|
2105
|
+
.ph-bold.ph-gender-neuter:before {
|
|
2106
|
+
content: "\e6ea";
|
|
2107
|
+
}
|
|
2108
|
+
.ph-bold.ph-gender-nonbinary:before {
|
|
2109
|
+
content: "\e6e4";
|
|
2110
|
+
}
|
|
2111
|
+
.ph-bold.ph-gender-transgender:before {
|
|
2112
|
+
content: "\e6e8";
|
|
2113
|
+
}
|
|
2114
|
+
.ph-bold.ph-ghost:before {
|
|
2115
|
+
content: "\e62a";
|
|
2116
|
+
}
|
|
2117
|
+
.ph-bold.ph-gif:before {
|
|
2118
|
+
content: "\e274";
|
|
2119
|
+
}
|
|
2120
|
+
.ph-bold.ph-gift:before {
|
|
2121
|
+
content: "\e276";
|
|
2122
|
+
}
|
|
2123
|
+
.ph-bold.ph-git-branch:before {
|
|
2124
|
+
content: "\e278";
|
|
2125
|
+
}
|
|
2126
|
+
.ph-bold.ph-git-commit:before {
|
|
2127
|
+
content: "\e27a";
|
|
2128
|
+
}
|
|
2129
|
+
.ph-bold.ph-git-diff:before {
|
|
2130
|
+
content: "\e27c";
|
|
2131
|
+
}
|
|
2132
|
+
.ph-bold.ph-git-fork:before {
|
|
2133
|
+
content: "\e27e";
|
|
2134
|
+
}
|
|
2135
|
+
.ph-bold.ph-git-merge:before {
|
|
2136
|
+
content: "\e280";
|
|
2137
|
+
}
|
|
2138
|
+
.ph-bold.ph-git-pull-request:before {
|
|
2139
|
+
content: "\e282";
|
|
2140
|
+
}
|
|
2141
|
+
.ph-bold.ph-github-logo:before {
|
|
2142
|
+
content: "\e576";
|
|
2143
|
+
}
|
|
2144
|
+
.ph-bold.ph-gitlab-logo:before {
|
|
2145
|
+
content: "\e694";
|
|
2146
|
+
}
|
|
2147
|
+
.ph-bold.ph-gitlab-logo-simple:before {
|
|
2148
|
+
content: "\e696";
|
|
2149
|
+
}
|
|
2150
|
+
.ph-bold.ph-globe:before {
|
|
2151
|
+
content: "\e288";
|
|
2152
|
+
}
|
|
2153
|
+
.ph-bold.ph-globe-hemisphere-east:before {
|
|
2154
|
+
content: "\e28a";
|
|
2155
|
+
}
|
|
2156
|
+
.ph-bold.ph-globe-hemisphere-west:before {
|
|
2157
|
+
content: "\e28c";
|
|
2158
|
+
}
|
|
2159
|
+
.ph-bold.ph-globe-simple:before {
|
|
2160
|
+
content: "\e28e";
|
|
2161
|
+
}
|
|
2162
|
+
.ph-bold.ph-globe-simple-x:before {
|
|
2163
|
+
content: "\e284";
|
|
2164
|
+
}
|
|
2165
|
+
.ph-bold.ph-globe-stand:before {
|
|
2166
|
+
content: "\e290";
|
|
2167
|
+
}
|
|
2168
|
+
.ph-bold.ph-globe-x:before {
|
|
2169
|
+
content: "\e286";
|
|
2170
|
+
}
|
|
2171
|
+
.ph-bold.ph-goggles:before {
|
|
2172
|
+
content: "\ecb4";
|
|
2173
|
+
}
|
|
2174
|
+
.ph-bold.ph-golf:before {
|
|
2175
|
+
content: "\ea3e";
|
|
2176
|
+
}
|
|
2177
|
+
.ph-bold.ph-goodreads-logo:before {
|
|
2178
|
+
content: "\ed10";
|
|
2179
|
+
}
|
|
2180
|
+
.ph-bold.ph-google-cardboard-logo:before {
|
|
2181
|
+
content: "\e7b6";
|
|
2182
|
+
}
|
|
2183
|
+
.ph-bold.ph-google-chrome-logo:before {
|
|
2184
|
+
content: "\e976";
|
|
2185
|
+
}
|
|
2186
|
+
.ph-bold.ph-google-drive-logo:before {
|
|
2187
|
+
content: "\e8f6";
|
|
2188
|
+
}
|
|
2189
|
+
.ph-bold.ph-google-logo:before {
|
|
2190
|
+
content: "\e292";
|
|
2191
|
+
}
|
|
2192
|
+
.ph-bold.ph-google-photos-logo:before {
|
|
2193
|
+
content: "\eb92";
|
|
2194
|
+
}
|
|
2195
|
+
.ph-bold.ph-google-play-logo:before {
|
|
2196
|
+
content: "\e294";
|
|
2197
|
+
}
|
|
2198
|
+
.ph-bold.ph-google-podcasts-logo:before {
|
|
2199
|
+
content: "\eb94";
|
|
2200
|
+
}
|
|
2201
|
+
.ph-bold.ph-gps:before {
|
|
2202
|
+
content: "\edd8";
|
|
2203
|
+
}
|
|
2204
|
+
.ph-bold.ph-gps-fix:before {
|
|
2205
|
+
content: "\edd6";
|
|
2206
|
+
}
|
|
2207
|
+
.ph-bold.ph-gps-slash:before {
|
|
2208
|
+
content: "\edd4";
|
|
2209
|
+
}
|
|
2210
|
+
.ph-bold.ph-gradient:before {
|
|
2211
|
+
content: "\eb42";
|
|
2212
|
+
}
|
|
2213
|
+
.ph-bold.ph-graduation-cap:before {
|
|
2214
|
+
content: "\e62c";
|
|
2215
|
+
}
|
|
2216
|
+
.ph-bold.ph-grains:before {
|
|
2217
|
+
content: "\ec68";
|
|
2218
|
+
}
|
|
2219
|
+
.ph-bold.ph-grains-slash:before {
|
|
2220
|
+
content: "\ec6a";
|
|
2221
|
+
}
|
|
2222
|
+
.ph-bold.ph-graph:before {
|
|
2223
|
+
content: "\eb58";
|
|
2224
|
+
}
|
|
2225
|
+
.ph-bold.ph-graphics-card:before {
|
|
2226
|
+
content: "\e612";
|
|
2227
|
+
}
|
|
2228
|
+
.ph-bold.ph-greater-than:before {
|
|
2229
|
+
content: "\edc4";
|
|
2230
|
+
}
|
|
2231
|
+
.ph-bold.ph-greater-than-or-equal:before {
|
|
2232
|
+
content: "\eda2";
|
|
2233
|
+
}
|
|
2234
|
+
.ph-bold.ph-grid-four:before {
|
|
2235
|
+
content: "\e296";
|
|
2236
|
+
}
|
|
2237
|
+
.ph-bold.ph-grid-nine:before {
|
|
2238
|
+
content: "\ec8c";
|
|
2239
|
+
}
|
|
2240
|
+
.ph-bold.ph-guitar:before {
|
|
2241
|
+
content: "\ea8a";
|
|
2242
|
+
}
|
|
2243
|
+
.ph-bold.ph-hair-dryer:before {
|
|
2244
|
+
content: "\ea66";
|
|
2245
|
+
}
|
|
2246
|
+
.ph-bold.ph-hamburger:before {
|
|
2247
|
+
content: "\e790";
|
|
2248
|
+
}
|
|
2249
|
+
.ph-bold.ph-hammer:before {
|
|
2250
|
+
content: "\e80e";
|
|
2251
|
+
}
|
|
2252
|
+
.ph-bold.ph-hand:before {
|
|
2253
|
+
content: "\e298";
|
|
2254
|
+
}
|
|
2255
|
+
.ph-bold.ph-hand-arrow-down:before {
|
|
2256
|
+
content: "\ea4e";
|
|
2257
|
+
}
|
|
2258
|
+
.ph-bold.ph-hand-arrow-up:before {
|
|
2259
|
+
content: "\ee5a";
|
|
2260
|
+
}
|
|
2261
|
+
.ph-bold.ph-hand-coins:before {
|
|
2262
|
+
content: "\ea8c";
|
|
2263
|
+
}
|
|
2264
|
+
.ph-bold.ph-hand-deposit:before {
|
|
2265
|
+
content: "\ee82";
|
|
2266
|
+
}
|
|
2267
|
+
.ph-bold.ph-hand-eye:before {
|
|
2268
|
+
content: "\ea4c";
|
|
2269
|
+
}
|
|
2270
|
+
.ph-bold.ph-hand-fist:before {
|
|
2271
|
+
content: "\e57a";
|
|
2272
|
+
}
|
|
2273
|
+
.ph-bold.ph-hand-grabbing:before {
|
|
2274
|
+
content: "\e57c";
|
|
2275
|
+
}
|
|
2276
|
+
.ph-bold.ph-hand-heart:before {
|
|
2277
|
+
content: "\e810";
|
|
2278
|
+
}
|
|
2279
|
+
.ph-bold.ph-hand-palm:before {
|
|
2280
|
+
content: "\e57e";
|
|
2281
|
+
}
|
|
2282
|
+
.ph-bold.ph-hand-peace:before {
|
|
2283
|
+
content: "\e7cc";
|
|
2284
|
+
}
|
|
2285
|
+
.ph-bold.ph-hand-pointing:before {
|
|
2286
|
+
content: "\e29a";
|
|
2287
|
+
}
|
|
2288
|
+
.ph-bold.ph-hand-soap:before {
|
|
2289
|
+
content: "\e630";
|
|
2290
|
+
}
|
|
2291
|
+
.ph-bold.ph-hand-swipe-left:before {
|
|
2292
|
+
content: "\ec94";
|
|
2293
|
+
}
|
|
2294
|
+
.ph-bold.ph-hand-swipe-right:before {
|
|
2295
|
+
content: "\ec92";
|
|
2296
|
+
}
|
|
2297
|
+
.ph-bold.ph-hand-tap:before {
|
|
2298
|
+
content: "\ec90";
|
|
2299
|
+
}
|
|
2300
|
+
.ph-bold.ph-hand-waving:before {
|
|
2301
|
+
content: "\e580";
|
|
2302
|
+
}
|
|
2303
|
+
.ph-bold.ph-hand-withdraw:before {
|
|
2304
|
+
content: "\ee80";
|
|
2305
|
+
}
|
|
2306
|
+
.ph-bold.ph-handbag:before {
|
|
2307
|
+
content: "\e29c";
|
|
2308
|
+
}
|
|
2309
|
+
.ph-bold.ph-handbag-simple:before {
|
|
2310
|
+
content: "\e62e";
|
|
2311
|
+
}
|
|
2312
|
+
.ph-bold.ph-hands-clapping:before {
|
|
2313
|
+
content: "\e6a0";
|
|
2314
|
+
}
|
|
2315
|
+
.ph-bold.ph-hands-praying:before {
|
|
2316
|
+
content: "\ecc8";
|
|
2317
|
+
}
|
|
2318
|
+
.ph-bold.ph-handshake:before {
|
|
2319
|
+
content: "\e582";
|
|
2320
|
+
}
|
|
2321
|
+
.ph-bold.ph-hard-drive:before {
|
|
2322
|
+
content: "\e29e";
|
|
2323
|
+
}
|
|
2324
|
+
.ph-bold.ph-hard-drives:before {
|
|
2325
|
+
content: "\e2a0";
|
|
2326
|
+
}
|
|
2327
|
+
.ph-bold.ph-hard-hat:before {
|
|
2328
|
+
content: "\ed46";
|
|
2329
|
+
}
|
|
2330
|
+
.ph-bold.ph-hash:before {
|
|
2331
|
+
content: "\e2a2";
|
|
2332
|
+
}
|
|
2333
|
+
.ph-bold.ph-hash-straight:before {
|
|
2334
|
+
content: "\e2a4";
|
|
2335
|
+
}
|
|
2336
|
+
.ph-bold.ph-head-circuit:before {
|
|
2337
|
+
content: "\e7d4";
|
|
2338
|
+
}
|
|
2339
|
+
.ph-bold.ph-headlights:before {
|
|
2340
|
+
content: "\e6fe";
|
|
2341
|
+
}
|
|
2342
|
+
.ph-bold.ph-headphones:before {
|
|
2343
|
+
content: "\e2a6";
|
|
2344
|
+
}
|
|
2345
|
+
.ph-bold.ph-headset:before {
|
|
2346
|
+
content: "\e584";
|
|
2347
|
+
}
|
|
2348
|
+
.ph-bold.ph-heart:before {
|
|
2349
|
+
content: "\e2a8";
|
|
2350
|
+
}
|
|
2351
|
+
.ph-bold.ph-heart-break:before {
|
|
2352
|
+
content: "\ebe8";
|
|
2353
|
+
}
|
|
2354
|
+
.ph-bold.ph-heart-half:before {
|
|
2355
|
+
content: "\ec48";
|
|
2356
|
+
}
|
|
2357
|
+
.ph-bold.ph-heart-straight:before {
|
|
2358
|
+
content: "\e2aa";
|
|
2359
|
+
}
|
|
2360
|
+
.ph-bold.ph-heart-straight-break:before {
|
|
2361
|
+
content: "\eb98";
|
|
2362
|
+
}
|
|
2363
|
+
.ph-bold.ph-heartbeat:before {
|
|
2364
|
+
content: "\e2ac";
|
|
2365
|
+
}
|
|
2366
|
+
.ph-bold.ph-hexagon:before {
|
|
2367
|
+
content: "\e2ae";
|
|
2368
|
+
}
|
|
2369
|
+
.ph-bold.ph-high-definition:before {
|
|
2370
|
+
content: "\ea8e";
|
|
2371
|
+
}
|
|
2372
|
+
.ph-bold.ph-high-heel:before {
|
|
2373
|
+
content: "\e8e8";
|
|
2374
|
+
}
|
|
2375
|
+
.ph-bold.ph-highlighter:before {
|
|
2376
|
+
content: "\ec76";
|
|
2377
|
+
}
|
|
2378
|
+
.ph-bold.ph-highlighter-circle:before {
|
|
2379
|
+
content: "\e632";
|
|
2380
|
+
}
|
|
2381
|
+
.ph-bold.ph-hockey:before {
|
|
2382
|
+
content: "\ec86";
|
|
2383
|
+
}
|
|
2384
|
+
.ph-bold.ph-hoodie:before {
|
|
2385
|
+
content: "\ecd0";
|
|
2386
|
+
}
|
|
2387
|
+
.ph-bold.ph-horse:before {
|
|
2388
|
+
content: "\e2b0";
|
|
2389
|
+
}
|
|
2390
|
+
.ph-bold.ph-hospital:before {
|
|
2391
|
+
content: "\e844";
|
|
2392
|
+
}
|
|
2393
|
+
.ph-bold.ph-hourglass:before {
|
|
2394
|
+
content: "\e2b2";
|
|
2395
|
+
}
|
|
2396
|
+
.ph-bold.ph-hourglass-high:before {
|
|
2397
|
+
content: "\e2b4";
|
|
2398
|
+
}
|
|
2399
|
+
.ph-bold.ph-hourglass-low:before {
|
|
2400
|
+
content: "\e2b6";
|
|
2401
|
+
}
|
|
2402
|
+
.ph-bold.ph-hourglass-medium:before {
|
|
2403
|
+
content: "\e2b8";
|
|
2404
|
+
}
|
|
2405
|
+
.ph-bold.ph-hourglass-simple:before {
|
|
2406
|
+
content: "\e2ba";
|
|
2407
|
+
}
|
|
2408
|
+
.ph-bold.ph-hourglass-simple-high:before {
|
|
2409
|
+
content: "\e2bc";
|
|
2410
|
+
}
|
|
2411
|
+
.ph-bold.ph-hourglass-simple-low:before {
|
|
2412
|
+
content: "\e2be";
|
|
2413
|
+
}
|
|
2414
|
+
.ph-bold.ph-hourglass-simple-medium:before {
|
|
2415
|
+
content: "\e2c0";
|
|
2416
|
+
}
|
|
2417
|
+
.ph-bold.ph-house:before {
|
|
2418
|
+
content: "\e2c2";
|
|
2419
|
+
}
|
|
2420
|
+
.ph-bold.ph-house-line:before {
|
|
2421
|
+
content: "\e2c4";
|
|
2422
|
+
}
|
|
2423
|
+
.ph-bold.ph-house-simple:before {
|
|
2424
|
+
content: "\e2c6";
|
|
2425
|
+
}
|
|
2426
|
+
.ph-bold.ph-hurricane:before {
|
|
2427
|
+
content: "\e88e";
|
|
2428
|
+
}
|
|
2429
|
+
.ph-bold.ph-ice-cream:before {
|
|
2430
|
+
content: "\e804";
|
|
2431
|
+
}
|
|
2432
|
+
.ph-bold.ph-identification-badge:before {
|
|
2433
|
+
content: "\e6f6";
|
|
2434
|
+
}
|
|
2435
|
+
.ph-bold.ph-identification-card:before {
|
|
2436
|
+
content: "\e2c8";
|
|
2437
|
+
}
|
|
2438
|
+
.ph-bold.ph-image:before {
|
|
2439
|
+
content: "\e2ca";
|
|
2440
|
+
}
|
|
2441
|
+
.ph-bold.ph-image-broken:before {
|
|
2442
|
+
content: "\e7a8";
|
|
2443
|
+
}
|
|
2444
|
+
.ph-bold.ph-image-square:before {
|
|
2445
|
+
content: "\e2cc";
|
|
2446
|
+
}
|
|
2447
|
+
.ph-bold.ph-images:before {
|
|
2448
|
+
content: "\e836";
|
|
2449
|
+
}
|
|
2450
|
+
.ph-bold.ph-images-square:before {
|
|
2451
|
+
content: "\e834";
|
|
2452
|
+
}
|
|
2453
|
+
.ph-bold.ph-infinity:before {
|
|
2454
|
+
content: "\e634";
|
|
2455
|
+
}
|
|
2456
|
+
.ph-bold.ph-lemniscate:before {
|
|
2457
|
+
content: "\e634";
|
|
2458
|
+
}
|
|
2459
|
+
.ph-bold.ph-info:before {
|
|
2460
|
+
content: "\e2ce";
|
|
2461
|
+
}
|
|
2462
|
+
.ph-bold.ph-instagram-logo:before {
|
|
2463
|
+
content: "\e2d0";
|
|
2464
|
+
}
|
|
2465
|
+
.ph-bold.ph-intersect:before {
|
|
2466
|
+
content: "\e2d2";
|
|
2467
|
+
}
|
|
2468
|
+
.ph-bold.ph-intersect-square:before {
|
|
2469
|
+
content: "\e87a";
|
|
2470
|
+
}
|
|
2471
|
+
.ph-bold.ph-intersect-three:before {
|
|
2472
|
+
content: "\ecc4";
|
|
2473
|
+
}
|
|
2474
|
+
.ph-bold.ph-intersection:before {
|
|
2475
|
+
content: "\edba";
|
|
2476
|
+
}
|
|
2477
|
+
.ph-bold.ph-invoice:before {
|
|
2478
|
+
content: "\ee42";
|
|
2479
|
+
}
|
|
2480
|
+
.ph-bold.ph-island:before {
|
|
2481
|
+
content: "\ee06";
|
|
2482
|
+
}
|
|
2483
|
+
.ph-bold.ph-jar:before {
|
|
2484
|
+
content: "\e7e0";
|
|
2485
|
+
}
|
|
2486
|
+
.ph-bold.ph-jar-label:before {
|
|
2487
|
+
content: "\e7e1";
|
|
2488
|
+
}
|
|
2489
|
+
.ph-bold.ph-jeep:before {
|
|
2490
|
+
content: "\e2d4";
|
|
2491
|
+
}
|
|
2492
|
+
.ph-bold.ph-joystick:before {
|
|
2493
|
+
content: "\ea5e";
|
|
2494
|
+
}
|
|
2495
|
+
.ph-bold.ph-kanban:before {
|
|
2496
|
+
content: "\eb54";
|
|
2497
|
+
}
|
|
2498
|
+
.ph-bold.ph-key:before {
|
|
2499
|
+
content: "\e2d6";
|
|
2500
|
+
}
|
|
2501
|
+
.ph-bold.ph-key-return:before {
|
|
2502
|
+
content: "\e782";
|
|
2503
|
+
}
|
|
2504
|
+
.ph-bold.ph-keyboard:before {
|
|
2505
|
+
content: "\e2d8";
|
|
2506
|
+
}
|
|
2507
|
+
.ph-bold.ph-keyhole:before {
|
|
2508
|
+
content: "\ea78";
|
|
2509
|
+
}
|
|
2510
|
+
.ph-bold.ph-knife:before {
|
|
2511
|
+
content: "\e636";
|
|
2512
|
+
}
|
|
2513
|
+
.ph-bold.ph-ladder:before {
|
|
2514
|
+
content: "\e9e4";
|
|
2515
|
+
}
|
|
2516
|
+
.ph-bold.ph-ladder-simple:before {
|
|
2517
|
+
content: "\ec26";
|
|
2518
|
+
}
|
|
2519
|
+
.ph-bold.ph-lamp:before {
|
|
2520
|
+
content: "\e638";
|
|
2521
|
+
}
|
|
2522
|
+
.ph-bold.ph-lamp-pendant:before {
|
|
2523
|
+
content: "\ee2e";
|
|
2524
|
+
}
|
|
2525
|
+
.ph-bold.ph-laptop:before {
|
|
2526
|
+
content: "\e586";
|
|
2527
|
+
}
|
|
2528
|
+
.ph-bold.ph-lasso:before {
|
|
2529
|
+
content: "\edc6";
|
|
2530
|
+
}
|
|
2531
|
+
.ph-bold.ph-lastfm-logo:before {
|
|
2532
|
+
content: "\e842";
|
|
2533
|
+
}
|
|
2534
|
+
.ph-bold.ph-layout:before {
|
|
2535
|
+
content: "\e6d6";
|
|
2536
|
+
}
|
|
2537
|
+
.ph-bold.ph-leaf:before {
|
|
2538
|
+
content: "\e2da";
|
|
2539
|
+
}
|
|
2540
|
+
.ph-bold.ph-lectern:before {
|
|
2541
|
+
content: "\e95a";
|
|
2542
|
+
}
|
|
2543
|
+
.ph-bold.ph-lego:before {
|
|
2544
|
+
content: "\e8c6";
|
|
2545
|
+
}
|
|
2546
|
+
.ph-bold.ph-lego-smiley:before {
|
|
2547
|
+
content: "\e8c7";
|
|
2548
|
+
}
|
|
2549
|
+
.ph-bold.ph-less-than:before {
|
|
2550
|
+
content: "\edac";
|
|
2551
|
+
}
|
|
2552
|
+
.ph-bold.ph-less-than-or-equal:before {
|
|
2553
|
+
content: "\eda4";
|
|
2554
|
+
}
|
|
2555
|
+
.ph-bold.ph-letter-circle-h:before {
|
|
2556
|
+
content: "\ebf8";
|
|
2557
|
+
}
|
|
2558
|
+
.ph-bold.ph-letter-circle-p:before {
|
|
2559
|
+
content: "\ec08";
|
|
2560
|
+
}
|
|
2561
|
+
.ph-bold.ph-letter-circle-v:before {
|
|
2562
|
+
content: "\ec14";
|
|
2563
|
+
}
|
|
2564
|
+
.ph-bold.ph-lifebuoy:before {
|
|
2565
|
+
content: "\e63a";
|
|
2566
|
+
}
|
|
2567
|
+
.ph-bold.ph-lightbulb:before {
|
|
2568
|
+
content: "\e2dc";
|
|
2569
|
+
}
|
|
2570
|
+
.ph-bold.ph-lightbulb-filament:before {
|
|
2571
|
+
content: "\e63c";
|
|
2572
|
+
}
|
|
2573
|
+
.ph-bold.ph-lighthouse:before {
|
|
2574
|
+
content: "\e9f6";
|
|
2575
|
+
}
|
|
2576
|
+
.ph-bold.ph-lightning:before {
|
|
2577
|
+
content: "\e2de";
|
|
2578
|
+
}
|
|
2579
|
+
.ph-bold.ph-lightning-a:before {
|
|
2580
|
+
content: "\ea84";
|
|
2581
|
+
}
|
|
2582
|
+
.ph-bold.ph-lightning-slash:before {
|
|
2583
|
+
content: "\e2e0";
|
|
2584
|
+
}
|
|
2585
|
+
.ph-bold.ph-line-segment:before {
|
|
2586
|
+
content: "\e6d2";
|
|
2587
|
+
}
|
|
2588
|
+
.ph-bold.ph-line-segments:before {
|
|
2589
|
+
content: "\e6d4";
|
|
2590
|
+
}
|
|
2591
|
+
.ph-bold.ph-line-vertical:before {
|
|
2592
|
+
content: "\ed70";
|
|
2593
|
+
}
|
|
2594
|
+
.ph-bold.ph-link:before {
|
|
2595
|
+
content: "\e2e2";
|
|
2596
|
+
}
|
|
2597
|
+
.ph-bold.ph-link-break:before {
|
|
2598
|
+
content: "\e2e4";
|
|
2599
|
+
}
|
|
2600
|
+
.ph-bold.ph-link-simple:before {
|
|
2601
|
+
content: "\e2e6";
|
|
2602
|
+
}
|
|
2603
|
+
.ph-bold.ph-link-simple-break:before {
|
|
2604
|
+
content: "\e2e8";
|
|
2605
|
+
}
|
|
2606
|
+
.ph-bold.ph-link-simple-horizontal:before {
|
|
2607
|
+
content: "\e2ea";
|
|
2608
|
+
}
|
|
2609
|
+
.ph-bold.ph-link-simple-horizontal-break:before {
|
|
2610
|
+
content: "\e2ec";
|
|
2611
|
+
}
|
|
2612
|
+
.ph-bold.ph-linkedin-logo:before {
|
|
2613
|
+
content: "\e2ee";
|
|
2614
|
+
}
|
|
2615
|
+
.ph-bold.ph-linktree-logo:before {
|
|
2616
|
+
content: "\edee";
|
|
2617
|
+
}
|
|
2618
|
+
.ph-bold.ph-linux-logo:before {
|
|
2619
|
+
content: "\eb02";
|
|
2620
|
+
}
|
|
2621
|
+
.ph-bold.ph-list:before {
|
|
2622
|
+
content: "\e2f0";
|
|
2623
|
+
}
|
|
2624
|
+
.ph-bold.ph-list-bullets:before {
|
|
2625
|
+
content: "\e2f2";
|
|
2626
|
+
}
|
|
2627
|
+
.ph-bold.ph-list-checks:before {
|
|
2628
|
+
content: "\eadc";
|
|
2629
|
+
}
|
|
2630
|
+
.ph-bold.ph-list-dashes:before {
|
|
2631
|
+
content: "\e2f4";
|
|
2632
|
+
}
|
|
2633
|
+
.ph-bold.ph-list-heart:before {
|
|
2634
|
+
content: "\ebde";
|
|
2635
|
+
}
|
|
2636
|
+
.ph-bold.ph-list-magnifying-glass:before {
|
|
2637
|
+
content: "\ebe0";
|
|
2638
|
+
}
|
|
2639
|
+
.ph-bold.ph-list-numbers:before {
|
|
2640
|
+
content: "\e2f6";
|
|
2641
|
+
}
|
|
2642
|
+
.ph-bold.ph-list-plus:before {
|
|
2643
|
+
content: "\e2f8";
|
|
2644
|
+
}
|
|
2645
|
+
.ph-bold.ph-list-star:before {
|
|
2646
|
+
content: "\ebdc";
|
|
2647
|
+
}
|
|
2648
|
+
.ph-bold.ph-lock:before {
|
|
2649
|
+
content: "\e2fa";
|
|
2650
|
+
}
|
|
2651
|
+
.ph-bold.ph-lock-key:before {
|
|
2652
|
+
content: "\e2fe";
|
|
2653
|
+
}
|
|
2654
|
+
.ph-bold.ph-lock-key-open:before {
|
|
2655
|
+
content: "\e300";
|
|
2656
|
+
}
|
|
2657
|
+
.ph-bold.ph-lock-laminated:before {
|
|
2658
|
+
content: "\e302";
|
|
2659
|
+
}
|
|
2660
|
+
.ph-bold.ph-lock-laminated-open:before {
|
|
2661
|
+
content: "\e304";
|
|
2662
|
+
}
|
|
2663
|
+
.ph-bold.ph-lock-open:before {
|
|
2664
|
+
content: "\e306";
|
|
2665
|
+
}
|
|
2666
|
+
.ph-bold.ph-lock-simple:before {
|
|
2667
|
+
content: "\e308";
|
|
2668
|
+
}
|
|
2669
|
+
.ph-bold.ph-lock-simple-open:before {
|
|
2670
|
+
content: "\e30a";
|
|
2671
|
+
}
|
|
2672
|
+
.ph-bold.ph-lockers:before {
|
|
2673
|
+
content: "\ecb8";
|
|
2674
|
+
}
|
|
2675
|
+
.ph-bold.ph-log:before {
|
|
2676
|
+
content: "\ed82";
|
|
2677
|
+
}
|
|
2678
|
+
.ph-bold.ph-magic-wand:before {
|
|
2679
|
+
content: "\e6b6";
|
|
2680
|
+
}
|
|
2681
|
+
.ph-bold.ph-magnet:before {
|
|
2682
|
+
content: "\e680";
|
|
2683
|
+
}
|
|
2684
|
+
.ph-bold.ph-magnet-straight:before {
|
|
2685
|
+
content: "\e682";
|
|
2686
|
+
}
|
|
2687
|
+
.ph-bold.ph-magnifying-glass:before {
|
|
2688
|
+
content: "\e30c";
|
|
2689
|
+
}
|
|
2690
|
+
.ph-bold.ph-magnifying-glass-minus:before {
|
|
2691
|
+
content: "\e30e";
|
|
2692
|
+
}
|
|
2693
|
+
.ph-bold.ph-magnifying-glass-plus:before {
|
|
2694
|
+
content: "\e310";
|
|
2695
|
+
}
|
|
2696
|
+
.ph-bold.ph-mailbox:before {
|
|
2697
|
+
content: "\ec1e";
|
|
2698
|
+
}
|
|
2699
|
+
.ph-bold.ph-map-pin:before {
|
|
2700
|
+
content: "\e316";
|
|
2701
|
+
}
|
|
2702
|
+
.ph-bold.ph-map-pin-area:before {
|
|
2703
|
+
content: "\ee3a";
|
|
2704
|
+
}
|
|
2705
|
+
.ph-bold.ph-map-pin-line:before {
|
|
2706
|
+
content: "\e318";
|
|
2707
|
+
}
|
|
2708
|
+
.ph-bold.ph-map-pin-plus:before {
|
|
2709
|
+
content: "\e314";
|
|
2710
|
+
}
|
|
2711
|
+
.ph-bold.ph-map-pin-simple:before {
|
|
2712
|
+
content: "\ee3e";
|
|
2713
|
+
}
|
|
2714
|
+
.ph-bold.ph-map-pin-simple-area:before {
|
|
2715
|
+
content: "\ee3c";
|
|
2716
|
+
}
|
|
2717
|
+
.ph-bold.ph-map-pin-simple-line:before {
|
|
2718
|
+
content: "\ee38";
|
|
2719
|
+
}
|
|
2720
|
+
.ph-bold.ph-map-trifold:before {
|
|
2721
|
+
content: "\e31a";
|
|
2722
|
+
}
|
|
2723
|
+
.ph-bold.ph-markdown-logo:before {
|
|
2724
|
+
content: "\e508";
|
|
2725
|
+
}
|
|
2726
|
+
.ph-bold.ph-marker-circle:before {
|
|
2727
|
+
content: "\e640";
|
|
2728
|
+
}
|
|
2729
|
+
.ph-bold.ph-martini:before {
|
|
2730
|
+
content: "\e31c";
|
|
2731
|
+
}
|
|
2732
|
+
.ph-bold.ph-mask-happy:before {
|
|
2733
|
+
content: "\e9f4";
|
|
2734
|
+
}
|
|
2735
|
+
.ph-bold.ph-mask-sad:before {
|
|
2736
|
+
content: "\eb9e";
|
|
2737
|
+
}
|
|
2738
|
+
.ph-bold.ph-mastodon-logo:before {
|
|
2739
|
+
content: "\ed68";
|
|
2740
|
+
}
|
|
2741
|
+
.ph-bold.ph-math-operations:before {
|
|
2742
|
+
content: "\e31e";
|
|
2743
|
+
}
|
|
2744
|
+
.ph-bold.ph-matrix-logo:before {
|
|
2745
|
+
content: "\ed64";
|
|
2746
|
+
}
|
|
2747
|
+
.ph-bold.ph-medal:before {
|
|
2748
|
+
content: "\e320";
|
|
2749
|
+
}
|
|
2750
|
+
.ph-bold.ph-medal-military:before {
|
|
2751
|
+
content: "\ecfc";
|
|
2752
|
+
}
|
|
2753
|
+
.ph-bold.ph-medium-logo:before {
|
|
2754
|
+
content: "\e322";
|
|
2755
|
+
}
|
|
2756
|
+
.ph-bold.ph-megaphone:before {
|
|
2757
|
+
content: "\e324";
|
|
2758
|
+
}
|
|
2759
|
+
.ph-bold.ph-megaphone-simple:before {
|
|
2760
|
+
content: "\e642";
|
|
2761
|
+
}
|
|
2762
|
+
.ph-bold.ph-member-of:before {
|
|
2763
|
+
content: "\edc2";
|
|
2764
|
+
}
|
|
2765
|
+
.ph-bold.ph-memory:before {
|
|
2766
|
+
content: "\e9c4";
|
|
2767
|
+
}
|
|
2768
|
+
.ph-bold.ph-messenger-logo:before {
|
|
2769
|
+
content: "\e6d8";
|
|
2770
|
+
}
|
|
2771
|
+
.ph-bold.ph-meta-logo:before {
|
|
2772
|
+
content: "\ed02";
|
|
2773
|
+
}
|
|
2774
|
+
.ph-bold.ph-meteor:before {
|
|
2775
|
+
content: "\e9ba";
|
|
2776
|
+
}
|
|
2777
|
+
.ph-bold.ph-metronome:before {
|
|
2778
|
+
content: "\ec8e";
|
|
2779
|
+
}
|
|
2780
|
+
.ph-bold.ph-microphone:before {
|
|
2781
|
+
content: "\e326";
|
|
2782
|
+
}
|
|
2783
|
+
.ph-bold.ph-microphone-slash:before {
|
|
2784
|
+
content: "\e328";
|
|
2785
|
+
}
|
|
2786
|
+
.ph-bold.ph-microphone-stage:before {
|
|
2787
|
+
content: "\e75c";
|
|
2788
|
+
}
|
|
2789
|
+
.ph-bold.ph-microscope:before {
|
|
2790
|
+
content: "\ec7a";
|
|
2791
|
+
}
|
|
2792
|
+
.ph-bold.ph-microsoft-excel-logo:before {
|
|
2793
|
+
content: "\eb6c";
|
|
2794
|
+
}
|
|
2795
|
+
.ph-bold.ph-microsoft-outlook-logo:before {
|
|
2796
|
+
content: "\eb70";
|
|
2797
|
+
}
|
|
2798
|
+
.ph-bold.ph-microsoft-powerpoint-logo:before {
|
|
2799
|
+
content: "\eace";
|
|
2800
|
+
}
|
|
2801
|
+
.ph-bold.ph-microsoft-teams-logo:before {
|
|
2802
|
+
content: "\eb66";
|
|
2803
|
+
}
|
|
2804
|
+
.ph-bold.ph-microsoft-word-logo:before {
|
|
2805
|
+
content: "\eb6a";
|
|
2806
|
+
}
|
|
2807
|
+
.ph-bold.ph-minus:before {
|
|
2808
|
+
content: "\e32a";
|
|
2809
|
+
}
|
|
2810
|
+
.ph-bold.ph-minus-circle:before {
|
|
2811
|
+
content: "\e32c";
|
|
2812
|
+
}
|
|
2813
|
+
.ph-bold.ph-minus-square:before {
|
|
2814
|
+
content: "\ed4c";
|
|
2815
|
+
}
|
|
2816
|
+
.ph-bold.ph-money:before {
|
|
2817
|
+
content: "\e588";
|
|
2818
|
+
}
|
|
2819
|
+
.ph-bold.ph-money-wavy:before {
|
|
2820
|
+
content: "\ee68";
|
|
2821
|
+
}
|
|
2822
|
+
.ph-bold.ph-monitor:before {
|
|
2823
|
+
content: "\e32e";
|
|
2824
|
+
}
|
|
2825
|
+
.ph-bold.ph-monitor-arrow-up:before {
|
|
2826
|
+
content: "\e58a";
|
|
2827
|
+
}
|
|
2828
|
+
.ph-bold.ph-monitor-play:before {
|
|
2829
|
+
content: "\e58c";
|
|
2830
|
+
}
|
|
2831
|
+
.ph-bold.ph-moon:before {
|
|
2832
|
+
content: "\e330";
|
|
2833
|
+
}
|
|
2834
|
+
.ph-bold.ph-moon-stars:before {
|
|
2835
|
+
content: "\e58e";
|
|
2836
|
+
}
|
|
2837
|
+
.ph-bold.ph-moped:before {
|
|
2838
|
+
content: "\e824";
|
|
2839
|
+
}
|
|
2840
|
+
.ph-bold.ph-moped-front:before {
|
|
2841
|
+
content: "\e822";
|
|
2842
|
+
}
|
|
2843
|
+
.ph-bold.ph-mosque:before {
|
|
2844
|
+
content: "\ecee";
|
|
2845
|
+
}
|
|
2846
|
+
.ph-bold.ph-motorcycle:before {
|
|
2847
|
+
content: "\e80a";
|
|
2848
|
+
}
|
|
2849
|
+
.ph-bold.ph-mountains:before {
|
|
2850
|
+
content: "\e7ae";
|
|
2851
|
+
}
|
|
2852
|
+
.ph-bold.ph-mouse:before {
|
|
2853
|
+
content: "\e33a";
|
|
2854
|
+
}
|
|
2855
|
+
.ph-bold.ph-mouse-left-click:before {
|
|
2856
|
+
content: "\e334";
|
|
2857
|
+
}
|
|
2858
|
+
.ph-bold.ph-mouse-middle-click:before {
|
|
2859
|
+
content: "\e338";
|
|
2860
|
+
}
|
|
2861
|
+
.ph-bold.ph-mouse-right-click:before {
|
|
2862
|
+
content: "\e336";
|
|
2863
|
+
}
|
|
2864
|
+
.ph-bold.ph-mouse-scroll:before {
|
|
2865
|
+
content: "\e332";
|
|
2866
|
+
}
|
|
2867
|
+
.ph-bold.ph-mouse-simple:before {
|
|
2868
|
+
content: "\e644";
|
|
2869
|
+
}
|
|
2870
|
+
.ph-bold.ph-music-note:before {
|
|
2871
|
+
content: "\e33c";
|
|
2872
|
+
}
|
|
2873
|
+
.ph-bold.ph-music-note-simple:before {
|
|
2874
|
+
content: "\e33e";
|
|
2875
|
+
}
|
|
2876
|
+
.ph-bold.ph-music-notes:before {
|
|
2877
|
+
content: "\e340";
|
|
2878
|
+
}
|
|
2879
|
+
.ph-bold.ph-music-notes-minus:before {
|
|
2880
|
+
content: "\ee0c";
|
|
2881
|
+
}
|
|
2882
|
+
.ph-bold.ph-music-notes-plus:before {
|
|
2883
|
+
content: "\eb7c";
|
|
2884
|
+
}
|
|
2885
|
+
.ph-bold.ph-music-notes-simple:before {
|
|
2886
|
+
content: "\e342";
|
|
2887
|
+
}
|
|
2888
|
+
.ph-bold.ph-navigation-arrow:before {
|
|
2889
|
+
content: "\eade";
|
|
2890
|
+
}
|
|
2891
|
+
.ph-bold.ph-needle:before {
|
|
2892
|
+
content: "\e82e";
|
|
2893
|
+
}
|
|
2894
|
+
.ph-bold.ph-network:before {
|
|
2895
|
+
content: "\edde";
|
|
2896
|
+
}
|
|
2897
|
+
.ph-bold.ph-network-slash:before {
|
|
2898
|
+
content: "\eddc";
|
|
2899
|
+
}
|
|
2900
|
+
.ph-bold.ph-network-x:before {
|
|
2901
|
+
content: "\edda";
|
|
2902
|
+
}
|
|
2903
|
+
.ph-bold.ph-newspaper:before {
|
|
2904
|
+
content: "\e344";
|
|
2905
|
+
}
|
|
2906
|
+
.ph-bold.ph-newspaper-clipping:before {
|
|
2907
|
+
content: "\e346";
|
|
2908
|
+
}
|
|
2909
|
+
.ph-bold.ph-not-equals:before {
|
|
2910
|
+
content: "\eda6";
|
|
2911
|
+
}
|
|
2912
|
+
.ph-bold.ph-not-member-of:before {
|
|
2913
|
+
content: "\edae";
|
|
2914
|
+
}
|
|
2915
|
+
.ph-bold.ph-not-subset-of:before {
|
|
2916
|
+
content: "\edb0";
|
|
2917
|
+
}
|
|
2918
|
+
.ph-bold.ph-not-superset-of:before {
|
|
2919
|
+
content: "\edb2";
|
|
2920
|
+
}
|
|
2921
|
+
.ph-bold.ph-notches:before {
|
|
2922
|
+
content: "\ed3a";
|
|
2923
|
+
}
|
|
2924
|
+
.ph-bold.ph-note:before {
|
|
2925
|
+
content: "\e348";
|
|
2926
|
+
}
|
|
2927
|
+
.ph-bold.ph-note-blank:before {
|
|
2928
|
+
content: "\e34a";
|
|
2929
|
+
}
|
|
2930
|
+
.ph-bold.ph-note-pencil:before {
|
|
2931
|
+
content: "\e34c";
|
|
2932
|
+
}
|
|
2933
|
+
.ph-bold.ph-notebook:before {
|
|
2934
|
+
content: "\e34e";
|
|
2935
|
+
}
|
|
2936
|
+
.ph-bold.ph-notepad:before {
|
|
2937
|
+
content: "\e63e";
|
|
2938
|
+
}
|
|
2939
|
+
.ph-bold.ph-notification:before {
|
|
2940
|
+
content: "\e6fa";
|
|
2941
|
+
}
|
|
2942
|
+
.ph-bold.ph-notion-logo:before {
|
|
2943
|
+
content: "\e9a0";
|
|
2944
|
+
}
|
|
2945
|
+
.ph-bold.ph-nuclear-plant:before {
|
|
2946
|
+
content: "\ed7c";
|
|
2947
|
+
}
|
|
2948
|
+
.ph-bold.ph-number-circle-eight:before {
|
|
2949
|
+
content: "\e352";
|
|
2950
|
+
}
|
|
2951
|
+
.ph-bold.ph-number-circle-five:before {
|
|
2952
|
+
content: "\e358";
|
|
2953
|
+
}
|
|
2954
|
+
.ph-bold.ph-number-circle-four:before {
|
|
2955
|
+
content: "\e35e";
|
|
2956
|
+
}
|
|
2957
|
+
.ph-bold.ph-number-circle-nine:before {
|
|
2958
|
+
content: "\e364";
|
|
2959
|
+
}
|
|
2960
|
+
.ph-bold.ph-number-circle-one:before {
|
|
2961
|
+
content: "\e36a";
|
|
2962
|
+
}
|
|
2963
|
+
.ph-bold.ph-number-circle-seven:before {
|
|
2964
|
+
content: "\e370";
|
|
2965
|
+
}
|
|
2966
|
+
.ph-bold.ph-number-circle-six:before {
|
|
2967
|
+
content: "\e376";
|
|
2968
|
+
}
|
|
2969
|
+
.ph-bold.ph-number-circle-three:before {
|
|
2970
|
+
content: "\e37c";
|
|
2971
|
+
}
|
|
2972
|
+
.ph-bold.ph-number-circle-two:before {
|
|
2973
|
+
content: "\e382";
|
|
2974
|
+
}
|
|
2975
|
+
.ph-bold.ph-number-circle-zero:before {
|
|
2976
|
+
content: "\e388";
|
|
2977
|
+
}
|
|
2978
|
+
.ph-bold.ph-number-eight:before {
|
|
2979
|
+
content: "\e350";
|
|
2980
|
+
}
|
|
2981
|
+
.ph-bold.ph-number-five:before {
|
|
2982
|
+
content: "\e356";
|
|
2983
|
+
}
|
|
2984
|
+
.ph-bold.ph-number-four:before {
|
|
2985
|
+
content: "\e35c";
|
|
2986
|
+
}
|
|
2987
|
+
.ph-bold.ph-number-nine:before {
|
|
2988
|
+
content: "\e362";
|
|
2989
|
+
}
|
|
2990
|
+
.ph-bold.ph-number-one:before {
|
|
2991
|
+
content: "\e368";
|
|
2992
|
+
}
|
|
2993
|
+
.ph-bold.ph-number-seven:before {
|
|
2994
|
+
content: "\e36e";
|
|
2995
|
+
}
|
|
2996
|
+
.ph-bold.ph-number-six:before {
|
|
2997
|
+
content: "\e374";
|
|
2998
|
+
}
|
|
2999
|
+
.ph-bold.ph-number-square-eight:before {
|
|
3000
|
+
content: "\e354";
|
|
3001
|
+
}
|
|
3002
|
+
.ph-bold.ph-number-square-five:before {
|
|
3003
|
+
content: "\e35a";
|
|
3004
|
+
}
|
|
3005
|
+
.ph-bold.ph-number-square-four:before {
|
|
3006
|
+
content: "\e360";
|
|
3007
|
+
}
|
|
3008
|
+
.ph-bold.ph-number-square-nine:before {
|
|
3009
|
+
content: "\e366";
|
|
3010
|
+
}
|
|
3011
|
+
.ph-bold.ph-number-square-one:before {
|
|
3012
|
+
content: "\e36c";
|
|
3013
|
+
}
|
|
3014
|
+
.ph-bold.ph-number-square-seven:before {
|
|
3015
|
+
content: "\e372";
|
|
3016
|
+
}
|
|
3017
|
+
.ph-bold.ph-number-square-six:before {
|
|
3018
|
+
content: "\e378";
|
|
3019
|
+
}
|
|
3020
|
+
.ph-bold.ph-number-square-three:before {
|
|
3021
|
+
content: "\e37e";
|
|
3022
|
+
}
|
|
3023
|
+
.ph-bold.ph-number-square-two:before {
|
|
3024
|
+
content: "\e384";
|
|
3025
|
+
}
|
|
3026
|
+
.ph-bold.ph-number-square-zero:before {
|
|
3027
|
+
content: "\e38a";
|
|
3028
|
+
}
|
|
3029
|
+
.ph-bold.ph-number-three:before {
|
|
3030
|
+
content: "\e37a";
|
|
3031
|
+
}
|
|
3032
|
+
.ph-bold.ph-number-two:before {
|
|
3033
|
+
content: "\e380";
|
|
3034
|
+
}
|
|
3035
|
+
.ph-bold.ph-number-zero:before {
|
|
3036
|
+
content: "\e386";
|
|
3037
|
+
}
|
|
3038
|
+
.ph-bold.ph-numpad:before {
|
|
3039
|
+
content: "\e3c8";
|
|
3040
|
+
}
|
|
3041
|
+
.ph-bold.ph-nut:before {
|
|
3042
|
+
content: "\e38c";
|
|
3043
|
+
}
|
|
3044
|
+
.ph-bold.ph-ny-times-logo:before {
|
|
3045
|
+
content: "\e646";
|
|
3046
|
+
}
|
|
3047
|
+
.ph-bold.ph-octagon:before {
|
|
3048
|
+
content: "\e38e";
|
|
3049
|
+
}
|
|
3050
|
+
.ph-bold.ph-office-chair:before {
|
|
3051
|
+
content: "\ea46";
|
|
3052
|
+
}
|
|
3053
|
+
.ph-bold.ph-onigiri:before {
|
|
3054
|
+
content: "\ee2c";
|
|
3055
|
+
}
|
|
3056
|
+
.ph-bold.ph-open-ai-logo:before {
|
|
3057
|
+
content: "\e7d2";
|
|
3058
|
+
}
|
|
3059
|
+
.ph-bold.ph-option:before {
|
|
3060
|
+
content: "\e8a8";
|
|
3061
|
+
}
|
|
3062
|
+
.ph-bold.ph-orange:before {
|
|
3063
|
+
content: "\ee40";
|
|
3064
|
+
}
|
|
3065
|
+
.ph-bold.ph-orange-slice:before {
|
|
3066
|
+
content: "\ed36";
|
|
3067
|
+
}
|
|
3068
|
+
.ph-bold.ph-oven:before {
|
|
3069
|
+
content: "\ed8c";
|
|
3070
|
+
}
|
|
3071
|
+
.ph-bold.ph-package:before {
|
|
3072
|
+
content: "\e390";
|
|
3073
|
+
}
|
|
3074
|
+
.ph-bold.ph-paint-brush:before {
|
|
3075
|
+
content: "\e6f0";
|
|
3076
|
+
}
|
|
3077
|
+
.ph-bold.ph-paint-brush-broad:before {
|
|
3078
|
+
content: "\e590";
|
|
3079
|
+
}
|
|
3080
|
+
.ph-bold.ph-paint-brush-household:before {
|
|
3081
|
+
content: "\e6f2";
|
|
3082
|
+
}
|
|
3083
|
+
.ph-bold.ph-paint-bucket:before {
|
|
3084
|
+
content: "\e392";
|
|
3085
|
+
}
|
|
3086
|
+
.ph-bold.ph-paint-roller:before {
|
|
3087
|
+
content: "\e6f4";
|
|
3088
|
+
}
|
|
3089
|
+
.ph-bold.ph-palette:before {
|
|
3090
|
+
content: "\e6c8";
|
|
3091
|
+
}
|
|
3092
|
+
.ph-bold.ph-panorama:before {
|
|
3093
|
+
content: "\eaa2";
|
|
3094
|
+
}
|
|
3095
|
+
.ph-bold.ph-pants:before {
|
|
3096
|
+
content: "\ec88";
|
|
3097
|
+
}
|
|
3098
|
+
.ph-bold.ph-paper-plane:before {
|
|
3099
|
+
content: "\e394";
|
|
3100
|
+
}
|
|
3101
|
+
.ph-bold.ph-paper-plane-right:before {
|
|
3102
|
+
content: "\e396";
|
|
3103
|
+
}
|
|
3104
|
+
.ph-bold.ph-paper-plane-tilt:before {
|
|
3105
|
+
content: "\e398";
|
|
3106
|
+
}
|
|
3107
|
+
.ph-bold.ph-paperclip:before {
|
|
3108
|
+
content: "\e39a";
|
|
3109
|
+
}
|
|
3110
|
+
.ph-bold.ph-paperclip-horizontal:before {
|
|
3111
|
+
content: "\e592";
|
|
3112
|
+
}
|
|
3113
|
+
.ph-bold.ph-parachute:before {
|
|
3114
|
+
content: "\ea7c";
|
|
3115
|
+
}
|
|
3116
|
+
.ph-bold.ph-paragraph:before {
|
|
3117
|
+
content: "\e960";
|
|
3118
|
+
}
|
|
3119
|
+
.ph-bold.ph-parallelogram:before {
|
|
3120
|
+
content: "\ecc6";
|
|
3121
|
+
}
|
|
3122
|
+
.ph-bold.ph-park:before {
|
|
3123
|
+
content: "\ecb2";
|
|
3124
|
+
}
|
|
3125
|
+
.ph-bold.ph-password:before {
|
|
3126
|
+
content: "\e752";
|
|
3127
|
+
}
|
|
3128
|
+
.ph-bold.ph-path:before {
|
|
3129
|
+
content: "\e39c";
|
|
3130
|
+
}
|
|
3131
|
+
.ph-bold.ph-patreon-logo:before {
|
|
3132
|
+
content: "\e98a";
|
|
3133
|
+
}
|
|
3134
|
+
.ph-bold.ph-pause:before {
|
|
3135
|
+
content: "\e39e";
|
|
3136
|
+
}
|
|
3137
|
+
.ph-bold.ph-pause-circle:before {
|
|
3138
|
+
content: "\e3a0";
|
|
3139
|
+
}
|
|
3140
|
+
.ph-bold.ph-paw-print:before {
|
|
3141
|
+
content: "\e648";
|
|
3142
|
+
}
|
|
3143
|
+
.ph-bold.ph-paypal-logo:before {
|
|
3144
|
+
content: "\e98c";
|
|
3145
|
+
}
|
|
3146
|
+
.ph-bold.ph-peace:before {
|
|
3147
|
+
content: "\e3a2";
|
|
3148
|
+
}
|
|
3149
|
+
.ph-bold.ph-pen:before {
|
|
3150
|
+
content: "\e3aa";
|
|
3151
|
+
}
|
|
3152
|
+
.ph-bold.ph-pen-nib:before {
|
|
3153
|
+
content: "\e3ac";
|
|
3154
|
+
}
|
|
3155
|
+
.ph-bold.ph-pen-nib-straight:before {
|
|
3156
|
+
content: "\e64a";
|
|
3157
|
+
}
|
|
3158
|
+
.ph-bold.ph-pencil:before {
|
|
3159
|
+
content: "\e3ae";
|
|
3160
|
+
}
|
|
3161
|
+
.ph-bold.ph-pencil-circle:before {
|
|
3162
|
+
content: "\e3b0";
|
|
3163
|
+
}
|
|
3164
|
+
.ph-bold.ph-pencil-line:before {
|
|
3165
|
+
content: "\e3b2";
|
|
3166
|
+
}
|
|
3167
|
+
.ph-bold.ph-pencil-ruler:before {
|
|
3168
|
+
content: "\e906";
|
|
3169
|
+
}
|
|
3170
|
+
.ph-bold.ph-pencil-simple:before {
|
|
3171
|
+
content: "\e3b4";
|
|
3172
|
+
}
|
|
3173
|
+
.ph-bold.ph-pencil-simple-line:before {
|
|
3174
|
+
content: "\ebc6";
|
|
3175
|
+
}
|
|
3176
|
+
.ph-bold.ph-pencil-simple-slash:before {
|
|
3177
|
+
content: "\ecf6";
|
|
3178
|
+
}
|
|
3179
|
+
.ph-bold.ph-pencil-slash:before {
|
|
3180
|
+
content: "\ecf8";
|
|
3181
|
+
}
|
|
3182
|
+
.ph-bold.ph-pentagon:before {
|
|
3183
|
+
content: "\ec7e";
|
|
3184
|
+
}
|
|
3185
|
+
.ph-bold.ph-pentagram:before {
|
|
3186
|
+
content: "\ec5c";
|
|
3187
|
+
}
|
|
3188
|
+
.ph-bold.ph-pepper:before {
|
|
3189
|
+
content: "\e94a";
|
|
3190
|
+
}
|
|
3191
|
+
.ph-bold.ph-percent:before {
|
|
3192
|
+
content: "\e3b6";
|
|
3193
|
+
}
|
|
3194
|
+
.ph-bold.ph-person:before {
|
|
3195
|
+
content: "\e3a8";
|
|
3196
|
+
}
|
|
3197
|
+
.ph-bold.ph-person-arms-spread:before {
|
|
3198
|
+
content: "\ecfe";
|
|
3199
|
+
}
|
|
3200
|
+
.ph-bold.ph-person-simple:before {
|
|
3201
|
+
content: "\e72e";
|
|
3202
|
+
}
|
|
3203
|
+
.ph-bold.ph-person-simple-bike:before {
|
|
3204
|
+
content: "\e734";
|
|
3205
|
+
}
|
|
3206
|
+
.ph-bold.ph-person-simple-circle:before {
|
|
3207
|
+
content: "\ee58";
|
|
3208
|
+
}
|
|
3209
|
+
.ph-bold.ph-person-simple-hike:before {
|
|
3210
|
+
content: "\ed54";
|
|
3211
|
+
}
|
|
3212
|
+
.ph-bold.ph-person-simple-run:before {
|
|
3213
|
+
content: "\e730";
|
|
3214
|
+
}
|
|
3215
|
+
.ph-bold.ph-person-simple-ski:before {
|
|
3216
|
+
content: "\e71c";
|
|
3217
|
+
}
|
|
3218
|
+
.ph-bold.ph-person-simple-snowboard:before {
|
|
3219
|
+
content: "\e71e";
|
|
3220
|
+
}
|
|
3221
|
+
.ph-bold.ph-person-simple-swim:before {
|
|
3222
|
+
content: "\e736";
|
|
3223
|
+
}
|
|
3224
|
+
.ph-bold.ph-person-simple-tai-chi:before {
|
|
3225
|
+
content: "\ed5c";
|
|
3226
|
+
}
|
|
3227
|
+
.ph-bold.ph-person-simple-throw:before {
|
|
3228
|
+
content: "\e732";
|
|
3229
|
+
}
|
|
3230
|
+
.ph-bold.ph-person-simple-walk:before {
|
|
3231
|
+
content: "\e73a";
|
|
3232
|
+
}
|
|
3233
|
+
.ph-bold.ph-perspective:before {
|
|
3234
|
+
content: "\ebe6";
|
|
3235
|
+
}
|
|
3236
|
+
.ph-bold.ph-phone:before {
|
|
3237
|
+
content: "\e3b8";
|
|
3238
|
+
}
|
|
3239
|
+
.ph-bold.ph-phone-call:before {
|
|
3240
|
+
content: "\e3ba";
|
|
3241
|
+
}
|
|
3242
|
+
.ph-bold.ph-phone-disconnect:before {
|
|
3243
|
+
content: "\e3bc";
|
|
3244
|
+
}
|
|
3245
|
+
.ph-bold.ph-phone-incoming:before {
|
|
3246
|
+
content: "\e3be";
|
|
3247
|
+
}
|
|
3248
|
+
.ph-bold.ph-phone-list:before {
|
|
3249
|
+
content: "\e3cc";
|
|
3250
|
+
}
|
|
3251
|
+
.ph-bold.ph-phone-outgoing:before {
|
|
3252
|
+
content: "\e3c0";
|
|
3253
|
+
}
|
|
3254
|
+
.ph-bold.ph-phone-pause:before {
|
|
3255
|
+
content: "\e3ca";
|
|
3256
|
+
}
|
|
3257
|
+
.ph-bold.ph-phone-plus:before {
|
|
3258
|
+
content: "\ec56";
|
|
3259
|
+
}
|
|
3260
|
+
.ph-bold.ph-phone-slash:before {
|
|
3261
|
+
content: "\e3c2";
|
|
3262
|
+
}
|
|
3263
|
+
.ph-bold.ph-phone-transfer:before {
|
|
3264
|
+
content: "\e3c6";
|
|
3265
|
+
}
|
|
3266
|
+
.ph-bold.ph-phone-x:before {
|
|
3267
|
+
content: "\e3c4";
|
|
3268
|
+
}
|
|
3269
|
+
.ph-bold.ph-phosphor-logo:before {
|
|
3270
|
+
content: "\e3ce";
|
|
3271
|
+
}
|
|
3272
|
+
.ph-bold.ph-pi:before {
|
|
3273
|
+
content: "\ec80";
|
|
3274
|
+
}
|
|
3275
|
+
.ph-bold.ph-piano-keys:before {
|
|
3276
|
+
content: "\e9c8";
|
|
3277
|
+
}
|
|
3278
|
+
.ph-bold.ph-picnic-table:before {
|
|
3279
|
+
content: "\ee26";
|
|
3280
|
+
}
|
|
3281
|
+
.ph-bold.ph-picture-in-picture:before {
|
|
3282
|
+
content: "\e64c";
|
|
3283
|
+
}
|
|
3284
|
+
.ph-bold.ph-piggy-bank:before {
|
|
3285
|
+
content: "\ea04";
|
|
3286
|
+
}
|
|
3287
|
+
.ph-bold.ph-pill:before {
|
|
3288
|
+
content: "\e700";
|
|
3289
|
+
}
|
|
3290
|
+
.ph-bold.ph-ping-pong:before {
|
|
3291
|
+
content: "\ea42";
|
|
3292
|
+
}
|
|
3293
|
+
.ph-bold.ph-pint-glass:before {
|
|
3294
|
+
content: "\edd0";
|
|
3295
|
+
}
|
|
3296
|
+
.ph-bold.ph-pinterest-logo:before {
|
|
3297
|
+
content: "\e64e";
|
|
3298
|
+
}
|
|
3299
|
+
.ph-bold.ph-pinwheel:before {
|
|
3300
|
+
content: "\eb9c";
|
|
3301
|
+
}
|
|
3302
|
+
.ph-bold.ph-pipe:before {
|
|
3303
|
+
content: "\ed86";
|
|
3304
|
+
}
|
|
3305
|
+
.ph-bold.ph-pipe-wrench:before {
|
|
3306
|
+
content: "\ed88";
|
|
3307
|
+
}
|
|
3308
|
+
.ph-bold.ph-pix-logo:before {
|
|
3309
|
+
content: "\ecc2";
|
|
3310
|
+
}
|
|
3311
|
+
.ph-bold.ph-pizza:before {
|
|
3312
|
+
content: "\e796";
|
|
3313
|
+
}
|
|
3314
|
+
.ph-bold.ph-placeholder:before {
|
|
3315
|
+
content: "\e650";
|
|
3316
|
+
}
|
|
3317
|
+
.ph-bold.ph-planet:before {
|
|
3318
|
+
content: "\e652";
|
|
3319
|
+
}
|
|
3320
|
+
.ph-bold.ph-plant:before {
|
|
3321
|
+
content: "\ebae";
|
|
3322
|
+
}
|
|
3323
|
+
.ph-bold.ph-play:before {
|
|
3324
|
+
content: "\e3d0";
|
|
3325
|
+
}
|
|
3326
|
+
.ph-bold.ph-play-circle:before {
|
|
3327
|
+
content: "\e3d2";
|
|
3328
|
+
}
|
|
3329
|
+
.ph-bold.ph-play-pause:before {
|
|
3330
|
+
content: "\e8be";
|
|
3331
|
+
}
|
|
3332
|
+
.ph-bold.ph-playlist:before {
|
|
3333
|
+
content: "\e6aa";
|
|
3334
|
+
}
|
|
3335
|
+
.ph-bold.ph-plug:before {
|
|
3336
|
+
content: "\e946";
|
|
3337
|
+
}
|
|
3338
|
+
.ph-bold.ph-plug-charging:before {
|
|
3339
|
+
content: "\eb5c";
|
|
3340
|
+
}
|
|
3341
|
+
.ph-bold.ph-plugs:before {
|
|
3342
|
+
content: "\eb56";
|
|
3343
|
+
}
|
|
3344
|
+
.ph-bold.ph-plugs-connected:before {
|
|
3345
|
+
content: "\eb5a";
|
|
3346
|
+
}
|
|
3347
|
+
.ph-bold.ph-plus:before {
|
|
3348
|
+
content: "\e3d4";
|
|
3349
|
+
}
|
|
3350
|
+
.ph-bold.ph-plus-circle:before {
|
|
3351
|
+
content: "\e3d6";
|
|
3352
|
+
}
|
|
3353
|
+
.ph-bold.ph-plus-minus:before {
|
|
3354
|
+
content: "\e3d8";
|
|
3355
|
+
}
|
|
3356
|
+
.ph-bold.ph-plus-square:before {
|
|
3357
|
+
content: "\ed4a";
|
|
3358
|
+
}
|
|
3359
|
+
.ph-bold.ph-poker-chip:before {
|
|
3360
|
+
content: "\e594";
|
|
3361
|
+
}
|
|
3362
|
+
.ph-bold.ph-police-car:before {
|
|
3363
|
+
content: "\ec4a";
|
|
3364
|
+
}
|
|
3365
|
+
.ph-bold.ph-polygon:before {
|
|
3366
|
+
content: "\e6d0";
|
|
3367
|
+
}
|
|
3368
|
+
.ph-bold.ph-popcorn:before {
|
|
3369
|
+
content: "\eb4e";
|
|
3370
|
+
}
|
|
3371
|
+
.ph-bold.ph-popsicle:before {
|
|
3372
|
+
content: "\ebbe";
|
|
3373
|
+
}
|
|
3374
|
+
.ph-bold.ph-potted-plant:before {
|
|
3375
|
+
content: "\ec22";
|
|
3376
|
+
}
|
|
3377
|
+
.ph-bold.ph-power:before {
|
|
3378
|
+
content: "\e3da";
|
|
3379
|
+
}
|
|
3380
|
+
.ph-bold.ph-prescription:before {
|
|
3381
|
+
content: "\e7a2";
|
|
3382
|
+
}
|
|
3383
|
+
.ph-bold.ph-presentation:before {
|
|
3384
|
+
content: "\e654";
|
|
3385
|
+
}
|
|
3386
|
+
.ph-bold.ph-presentation-chart:before {
|
|
3387
|
+
content: "\e656";
|
|
3388
|
+
}
|
|
3389
|
+
.ph-bold.ph-printer:before {
|
|
3390
|
+
content: "\e3dc";
|
|
3391
|
+
}
|
|
3392
|
+
.ph-bold.ph-prohibit:before {
|
|
3393
|
+
content: "\e3de";
|
|
3394
|
+
}
|
|
3395
|
+
.ph-bold.ph-prohibit-inset:before {
|
|
3396
|
+
content: "\e3e0";
|
|
3397
|
+
}
|
|
3398
|
+
.ph-bold.ph-projector-screen:before {
|
|
3399
|
+
content: "\e658";
|
|
3400
|
+
}
|
|
3401
|
+
.ph-bold.ph-projector-screen-chart:before {
|
|
3402
|
+
content: "\e65a";
|
|
3403
|
+
}
|
|
3404
|
+
.ph-bold.ph-pulse:before {
|
|
3405
|
+
content: "\e000";
|
|
3406
|
+
}
|
|
3407
|
+
.ph-bold.ph-activity:before {
|
|
3408
|
+
content: "\e000";
|
|
3409
|
+
}
|
|
3410
|
+
.ph-bold.ph-push-pin:before {
|
|
3411
|
+
content: "\e3e2";
|
|
3412
|
+
}
|
|
3413
|
+
.ph-bold.ph-push-pin-simple:before {
|
|
3414
|
+
content: "\e65c";
|
|
3415
|
+
}
|
|
3416
|
+
.ph-bold.ph-push-pin-simple-slash:before {
|
|
3417
|
+
content: "\e65e";
|
|
3418
|
+
}
|
|
3419
|
+
.ph-bold.ph-push-pin-slash:before {
|
|
3420
|
+
content: "\e3e4";
|
|
3421
|
+
}
|
|
3422
|
+
.ph-bold.ph-puzzle-piece:before {
|
|
3423
|
+
content: "\e596";
|
|
3424
|
+
}
|
|
3425
|
+
.ph-bold.ph-qr-code:before {
|
|
3426
|
+
content: "\e3e6";
|
|
3427
|
+
}
|
|
3428
|
+
.ph-bold.ph-question:before {
|
|
3429
|
+
content: "\e3e8";
|
|
3430
|
+
}
|
|
3431
|
+
.ph-bold.ph-question-mark:before {
|
|
3432
|
+
content: "\e3e9";
|
|
3433
|
+
}
|
|
3434
|
+
.ph-bold.ph-queue:before {
|
|
3435
|
+
content: "\e6ac";
|
|
3436
|
+
}
|
|
3437
|
+
.ph-bold.ph-quotes:before {
|
|
3438
|
+
content: "\e660";
|
|
3439
|
+
}
|
|
3440
|
+
.ph-bold.ph-rabbit:before {
|
|
3441
|
+
content: "\eac2";
|
|
3442
|
+
}
|
|
3443
|
+
.ph-bold.ph-racquet:before {
|
|
3444
|
+
content: "\ee02";
|
|
3445
|
+
}
|
|
3446
|
+
.ph-bold.ph-radical:before {
|
|
3447
|
+
content: "\e3ea";
|
|
3448
|
+
}
|
|
3449
|
+
.ph-bold.ph-radio:before {
|
|
3450
|
+
content: "\e77e";
|
|
3451
|
+
}
|
|
3452
|
+
.ph-bold.ph-radio-button:before {
|
|
3453
|
+
content: "\eb08";
|
|
3454
|
+
}
|
|
3455
|
+
.ph-bold.ph-radioactive:before {
|
|
3456
|
+
content: "\e9dc";
|
|
3457
|
+
}
|
|
3458
|
+
.ph-bold.ph-rainbow:before {
|
|
3459
|
+
content: "\e598";
|
|
3460
|
+
}
|
|
3461
|
+
.ph-bold.ph-rainbow-cloud:before {
|
|
3462
|
+
content: "\e59a";
|
|
3463
|
+
}
|
|
3464
|
+
.ph-bold.ph-ranking:before {
|
|
3465
|
+
content: "\ed62";
|
|
3466
|
+
}
|
|
3467
|
+
.ph-bold.ph-read-cv-logo:before {
|
|
3468
|
+
content: "\ed0c";
|
|
3469
|
+
}
|
|
3470
|
+
.ph-bold.ph-receipt:before {
|
|
3471
|
+
content: "\e3ec";
|
|
3472
|
+
}
|
|
3473
|
+
.ph-bold.ph-receipt-x:before {
|
|
3474
|
+
content: "\ed40";
|
|
3475
|
+
}
|
|
3476
|
+
.ph-bold.ph-record:before {
|
|
3477
|
+
content: "\e3ee";
|
|
3478
|
+
}
|
|
3479
|
+
.ph-bold.ph-rectangle:before {
|
|
3480
|
+
content: "\e3f0";
|
|
3481
|
+
}
|
|
3482
|
+
.ph-bold.ph-rectangle-dashed:before {
|
|
3483
|
+
content: "\e3f2";
|
|
3484
|
+
}
|
|
3485
|
+
.ph-bold.ph-recycle:before {
|
|
3486
|
+
content: "\e75a";
|
|
3487
|
+
}
|
|
3488
|
+
.ph-bold.ph-reddit-logo:before {
|
|
3489
|
+
content: "\e59c";
|
|
3490
|
+
}
|
|
3491
|
+
.ph-bold.ph-repeat:before {
|
|
3492
|
+
content: "\e3f6";
|
|
3493
|
+
}
|
|
3494
|
+
.ph-bold.ph-repeat-once:before {
|
|
3495
|
+
content: "\e3f8";
|
|
3496
|
+
}
|
|
3497
|
+
.ph-bold.ph-replit-logo:before {
|
|
3498
|
+
content: "\eb8a";
|
|
3499
|
+
}
|
|
3500
|
+
.ph-bold.ph-resize:before {
|
|
3501
|
+
content: "\ed6e";
|
|
3502
|
+
}
|
|
3503
|
+
.ph-bold.ph-rewind:before {
|
|
3504
|
+
content: "\e6a8";
|
|
3505
|
+
}
|
|
3506
|
+
.ph-bold.ph-rewind-circle:before {
|
|
3507
|
+
content: "\e3fa";
|
|
3508
|
+
}
|
|
3509
|
+
.ph-bold.ph-road-horizon:before {
|
|
3510
|
+
content: "\e838";
|
|
3511
|
+
}
|
|
3512
|
+
.ph-bold.ph-robot:before {
|
|
3513
|
+
content: "\e762";
|
|
3514
|
+
}
|
|
3515
|
+
.ph-bold.ph-rocket:before {
|
|
3516
|
+
content: "\e3fc";
|
|
3517
|
+
}
|
|
3518
|
+
.ph-bold.ph-rocket-launch:before {
|
|
3519
|
+
content: "\e3fe";
|
|
3520
|
+
}
|
|
3521
|
+
.ph-bold.ph-rows:before {
|
|
3522
|
+
content: "\e5a2";
|
|
3523
|
+
}
|
|
3524
|
+
.ph-bold.ph-rows-plus-bottom:before {
|
|
3525
|
+
content: "\e59e";
|
|
3526
|
+
}
|
|
3527
|
+
.ph-bold.ph-rows-plus-top:before {
|
|
3528
|
+
content: "\e5a0";
|
|
3529
|
+
}
|
|
3530
|
+
.ph-bold.ph-rss:before {
|
|
3531
|
+
content: "\e400";
|
|
3532
|
+
}
|
|
3533
|
+
.ph-bold.ph-rss-simple:before {
|
|
3534
|
+
content: "\e402";
|
|
3535
|
+
}
|
|
3536
|
+
.ph-bold.ph-rug:before {
|
|
3537
|
+
content: "\ea1a";
|
|
3538
|
+
}
|
|
3539
|
+
.ph-bold.ph-ruler:before {
|
|
3540
|
+
content: "\e6b8";
|
|
3541
|
+
}
|
|
3542
|
+
.ph-bold.ph-sailboat:before {
|
|
3543
|
+
content: "\e78a";
|
|
3544
|
+
}
|
|
3545
|
+
.ph-bold.ph-scales:before {
|
|
3546
|
+
content: "\e750";
|
|
3547
|
+
}
|
|
3548
|
+
.ph-bold.ph-scan:before {
|
|
3549
|
+
content: "\ebb6";
|
|
3550
|
+
}
|
|
3551
|
+
.ph-bold.ph-scan-smiley:before {
|
|
3552
|
+
content: "\ebb4";
|
|
3553
|
+
}
|
|
3554
|
+
.ph-bold.ph-scissors:before {
|
|
3555
|
+
content: "\eae0";
|
|
3556
|
+
}
|
|
3557
|
+
.ph-bold.ph-scooter:before {
|
|
3558
|
+
content: "\e820";
|
|
3559
|
+
}
|
|
3560
|
+
.ph-bold.ph-screencast:before {
|
|
3561
|
+
content: "\e404";
|
|
3562
|
+
}
|
|
3563
|
+
.ph-bold.ph-screwdriver:before {
|
|
3564
|
+
content: "\e86e";
|
|
3565
|
+
}
|
|
3566
|
+
.ph-bold.ph-scribble:before {
|
|
3567
|
+
content: "\e806";
|
|
3568
|
+
}
|
|
3569
|
+
.ph-bold.ph-scribble-loop:before {
|
|
3570
|
+
content: "\e662";
|
|
3571
|
+
}
|
|
3572
|
+
.ph-bold.ph-scroll:before {
|
|
3573
|
+
content: "\eb7a";
|
|
3574
|
+
}
|
|
3575
|
+
.ph-bold.ph-seal:before {
|
|
3576
|
+
content: "\e604";
|
|
3577
|
+
}
|
|
3578
|
+
.ph-bold.ph-circle-wavy:before {
|
|
3579
|
+
content: "\e604";
|
|
3580
|
+
}
|
|
3581
|
+
.ph-bold.ph-seal-check:before {
|
|
3582
|
+
content: "\e606";
|
|
3583
|
+
}
|
|
3584
|
+
.ph-bold.ph-circle-wavy-check:before {
|
|
3585
|
+
content: "\e606";
|
|
3586
|
+
}
|
|
3587
|
+
.ph-bold.ph-seal-percent:before {
|
|
3588
|
+
content: "\e60a";
|
|
3589
|
+
}
|
|
3590
|
+
.ph-bold.ph-seal-question:before {
|
|
3591
|
+
content: "\e608";
|
|
3592
|
+
}
|
|
3593
|
+
.ph-bold.ph-circle-wavy-question:before {
|
|
3594
|
+
content: "\e608";
|
|
3595
|
+
}
|
|
3596
|
+
.ph-bold.ph-seal-warning:before {
|
|
3597
|
+
content: "\e60c";
|
|
3598
|
+
}
|
|
3599
|
+
.ph-bold.ph-circle-wavy-warning:before {
|
|
3600
|
+
content: "\e60c";
|
|
3601
|
+
}
|
|
3602
|
+
.ph-bold.ph-seat:before {
|
|
3603
|
+
content: "\eb8e";
|
|
3604
|
+
}
|
|
3605
|
+
.ph-bold.ph-seatbelt:before {
|
|
3606
|
+
content: "\edfe";
|
|
3607
|
+
}
|
|
3608
|
+
.ph-bold.ph-security-camera:before {
|
|
3609
|
+
content: "\eca4";
|
|
3610
|
+
}
|
|
3611
|
+
.ph-bold.ph-selection:before {
|
|
3612
|
+
content: "\e69a";
|
|
3613
|
+
}
|
|
3614
|
+
.ph-bold.ph-selection-all:before {
|
|
3615
|
+
content: "\e746";
|
|
3616
|
+
}
|
|
3617
|
+
.ph-bold.ph-selection-background:before {
|
|
3618
|
+
content: "\eaf8";
|
|
3619
|
+
}
|
|
3620
|
+
.ph-bold.ph-selection-foreground:before {
|
|
3621
|
+
content: "\eaf6";
|
|
3622
|
+
}
|
|
3623
|
+
.ph-bold.ph-selection-inverse:before {
|
|
3624
|
+
content: "\e744";
|
|
3625
|
+
}
|
|
3626
|
+
.ph-bold.ph-selection-plus:before {
|
|
3627
|
+
content: "\e69c";
|
|
3628
|
+
}
|
|
3629
|
+
.ph-bold.ph-selection-slash:before {
|
|
3630
|
+
content: "\e69e";
|
|
3631
|
+
}
|
|
3632
|
+
.ph-bold.ph-shapes:before {
|
|
3633
|
+
content: "\ec5e";
|
|
3634
|
+
}
|
|
3635
|
+
.ph-bold.ph-share:before {
|
|
3636
|
+
content: "\e406";
|
|
3637
|
+
}
|
|
3638
|
+
.ph-bold.ph-share-fat:before {
|
|
3639
|
+
content: "\ed52";
|
|
3640
|
+
}
|
|
3641
|
+
.ph-bold.ph-share-network:before {
|
|
3642
|
+
content: "\e408";
|
|
3643
|
+
}
|
|
3644
|
+
.ph-bold.ph-shield:before {
|
|
3645
|
+
content: "\e40a";
|
|
3646
|
+
}
|
|
3647
|
+
.ph-bold.ph-shield-check:before {
|
|
3648
|
+
content: "\e40c";
|
|
3649
|
+
}
|
|
3650
|
+
.ph-bold.ph-shield-checkered:before {
|
|
3651
|
+
content: "\e708";
|
|
3652
|
+
}
|
|
3653
|
+
.ph-bold.ph-shield-chevron:before {
|
|
3654
|
+
content: "\e40e";
|
|
3655
|
+
}
|
|
3656
|
+
.ph-bold.ph-shield-plus:before {
|
|
3657
|
+
content: "\e706";
|
|
3658
|
+
}
|
|
3659
|
+
.ph-bold.ph-shield-slash:before {
|
|
3660
|
+
content: "\e410";
|
|
3661
|
+
}
|
|
3662
|
+
.ph-bold.ph-shield-star:before {
|
|
3663
|
+
content: "\ec34";
|
|
3664
|
+
}
|
|
3665
|
+
.ph-bold.ph-shield-warning:before {
|
|
3666
|
+
content: "\e412";
|
|
3667
|
+
}
|
|
3668
|
+
.ph-bold.ph-shipping-container:before {
|
|
3669
|
+
content: "\e78c";
|
|
3670
|
+
}
|
|
3671
|
+
.ph-bold.ph-shirt-folded:before {
|
|
3672
|
+
content: "\ea92";
|
|
3673
|
+
}
|
|
3674
|
+
.ph-bold.ph-shooting-star:before {
|
|
3675
|
+
content: "\ecfa";
|
|
3676
|
+
}
|
|
3677
|
+
.ph-bold.ph-shopping-bag:before {
|
|
3678
|
+
content: "\e416";
|
|
3679
|
+
}
|
|
3680
|
+
.ph-bold.ph-shopping-bag-open:before {
|
|
3681
|
+
content: "\e418";
|
|
3682
|
+
}
|
|
3683
|
+
.ph-bold.ph-shopping-cart:before {
|
|
3684
|
+
content: "\e41e";
|
|
3685
|
+
}
|
|
3686
|
+
.ph-bold.ph-shopping-cart-simple:before {
|
|
3687
|
+
content: "\e420";
|
|
3688
|
+
}
|
|
3689
|
+
.ph-bold.ph-shovel:before {
|
|
3690
|
+
content: "\e9e6";
|
|
3691
|
+
}
|
|
3692
|
+
.ph-bold.ph-shower:before {
|
|
3693
|
+
content: "\e776";
|
|
3694
|
+
}
|
|
3695
|
+
.ph-bold.ph-shrimp:before {
|
|
3696
|
+
content: "\eab4";
|
|
3697
|
+
}
|
|
3698
|
+
.ph-bold.ph-shuffle:before {
|
|
3699
|
+
content: "\e422";
|
|
3700
|
+
}
|
|
3701
|
+
.ph-bold.ph-shuffle-angular:before {
|
|
3702
|
+
content: "\e424";
|
|
3703
|
+
}
|
|
3704
|
+
.ph-bold.ph-shuffle-simple:before {
|
|
3705
|
+
content: "\e426";
|
|
3706
|
+
}
|
|
3707
|
+
.ph-bold.ph-sidebar:before {
|
|
3708
|
+
content: "\eab6";
|
|
3709
|
+
}
|
|
3710
|
+
.ph-bold.ph-sidebar-simple:before {
|
|
3711
|
+
content: "\ec24";
|
|
3712
|
+
}
|
|
3713
|
+
.ph-bold.ph-sigma:before {
|
|
3714
|
+
content: "\eab8";
|
|
3715
|
+
}
|
|
3716
|
+
.ph-bold.ph-sign-in:before {
|
|
3717
|
+
content: "\e428";
|
|
3718
|
+
}
|
|
3719
|
+
.ph-bold.ph-sign-out:before {
|
|
3720
|
+
content: "\e42a";
|
|
3721
|
+
}
|
|
3722
|
+
.ph-bold.ph-signature:before {
|
|
3723
|
+
content: "\ebac";
|
|
3724
|
+
}
|
|
3725
|
+
.ph-bold.ph-signpost:before {
|
|
3726
|
+
content: "\e89c";
|
|
3727
|
+
}
|
|
3728
|
+
.ph-bold.ph-sim-card:before {
|
|
3729
|
+
content: "\e664";
|
|
3730
|
+
}
|
|
3731
|
+
.ph-bold.ph-siren:before {
|
|
3732
|
+
content: "\e9b8";
|
|
3733
|
+
}
|
|
3734
|
+
.ph-bold.ph-sketch-logo:before {
|
|
3735
|
+
content: "\e42c";
|
|
3736
|
+
}
|
|
3737
|
+
.ph-bold.ph-skip-back:before {
|
|
3738
|
+
content: "\e5a4";
|
|
3739
|
+
}
|
|
3740
|
+
.ph-bold.ph-skip-back-circle:before {
|
|
3741
|
+
content: "\e42e";
|
|
3742
|
+
}
|
|
3743
|
+
.ph-bold.ph-skip-forward:before {
|
|
3744
|
+
content: "\e5a6";
|
|
3745
|
+
}
|
|
3746
|
+
.ph-bold.ph-skip-forward-circle:before {
|
|
3747
|
+
content: "\e430";
|
|
3748
|
+
}
|
|
3749
|
+
.ph-bold.ph-skull:before {
|
|
3750
|
+
content: "\e916";
|
|
3751
|
+
}
|
|
3752
|
+
.ph-bold.ph-skype-logo:before {
|
|
3753
|
+
content: "\e8dc";
|
|
3754
|
+
}
|
|
3755
|
+
.ph-bold.ph-slack-logo:before {
|
|
3756
|
+
content: "\e5a8";
|
|
3757
|
+
}
|
|
3758
|
+
.ph-bold.ph-sliders:before {
|
|
3759
|
+
content: "\e432";
|
|
3760
|
+
}
|
|
3761
|
+
.ph-bold.ph-sliders-horizontal:before {
|
|
3762
|
+
content: "\e434";
|
|
3763
|
+
}
|
|
3764
|
+
.ph-bold.ph-slideshow:before {
|
|
3765
|
+
content: "\ed32";
|
|
3766
|
+
}
|
|
3767
|
+
.ph-bold.ph-smiley:before {
|
|
3768
|
+
content: "\e436";
|
|
3769
|
+
}
|
|
3770
|
+
.ph-bold.ph-smiley-angry:before {
|
|
3771
|
+
content: "\ec62";
|
|
3772
|
+
}
|
|
3773
|
+
.ph-bold.ph-smiley-blank:before {
|
|
3774
|
+
content: "\e438";
|
|
3775
|
+
}
|
|
3776
|
+
.ph-bold.ph-smiley-meh:before {
|
|
3777
|
+
content: "\e43a";
|
|
3778
|
+
}
|
|
3779
|
+
.ph-bold.ph-smiley-melting:before {
|
|
3780
|
+
content: "\ee56";
|
|
3781
|
+
}
|
|
3782
|
+
.ph-bold.ph-smiley-nervous:before {
|
|
3783
|
+
content: "\e43c";
|
|
3784
|
+
}
|
|
3785
|
+
.ph-bold.ph-smiley-sad:before {
|
|
3786
|
+
content: "\e43e";
|
|
3787
|
+
}
|
|
3788
|
+
.ph-bold.ph-smiley-sticker:before {
|
|
3789
|
+
content: "\e440";
|
|
3790
|
+
}
|
|
3791
|
+
.ph-bold.ph-smiley-wink:before {
|
|
3792
|
+
content: "\e666";
|
|
3793
|
+
}
|
|
3794
|
+
.ph-bold.ph-smiley-x-eyes:before {
|
|
3795
|
+
content: "\e442";
|
|
3796
|
+
}
|
|
3797
|
+
.ph-bold.ph-snapchat-logo:before {
|
|
3798
|
+
content: "\e668";
|
|
3799
|
+
}
|
|
3800
|
+
.ph-bold.ph-sneaker:before {
|
|
3801
|
+
content: "\e80c";
|
|
3802
|
+
}
|
|
3803
|
+
.ph-bold.ph-sneaker-move:before {
|
|
3804
|
+
content: "\ed60";
|
|
3805
|
+
}
|
|
3806
|
+
.ph-bold.ph-snowflake:before {
|
|
3807
|
+
content: "\e5aa";
|
|
3808
|
+
}
|
|
3809
|
+
.ph-bold.ph-soccer-ball:before {
|
|
3810
|
+
content: "\e716";
|
|
3811
|
+
}
|
|
3812
|
+
.ph-bold.ph-sock:before {
|
|
3813
|
+
content: "\ecce";
|
|
3814
|
+
}
|
|
3815
|
+
.ph-bold.ph-solar-panel:before {
|
|
3816
|
+
content: "\ed7a";
|
|
3817
|
+
}
|
|
3818
|
+
.ph-bold.ph-solar-roof:before {
|
|
3819
|
+
content: "\ed7b";
|
|
3820
|
+
}
|
|
3821
|
+
.ph-bold.ph-sort-ascending:before {
|
|
3822
|
+
content: "\e444";
|
|
3823
|
+
}
|
|
3824
|
+
.ph-bold.ph-sort-descending:before {
|
|
3825
|
+
content: "\e446";
|
|
3826
|
+
}
|
|
3827
|
+
.ph-bold.ph-soundcloud-logo:before {
|
|
3828
|
+
content: "\e8de";
|
|
3829
|
+
}
|
|
3830
|
+
.ph-bold.ph-spade:before {
|
|
3831
|
+
content: "\e448";
|
|
3832
|
+
}
|
|
3833
|
+
.ph-bold.ph-sparkle:before {
|
|
3834
|
+
content: "\e6a2";
|
|
3835
|
+
}
|
|
3836
|
+
.ph-bold.ph-speaker-hifi:before {
|
|
3837
|
+
content: "\ea08";
|
|
3838
|
+
}
|
|
3839
|
+
.ph-bold.ph-speaker-high:before {
|
|
3840
|
+
content: "\e44a";
|
|
3841
|
+
}
|
|
3842
|
+
.ph-bold.ph-speaker-low:before {
|
|
3843
|
+
content: "\e44c";
|
|
3844
|
+
}
|
|
3845
|
+
.ph-bold.ph-speaker-none:before {
|
|
3846
|
+
content: "\e44e";
|
|
3847
|
+
}
|
|
3848
|
+
.ph-bold.ph-speaker-simple-high:before {
|
|
3849
|
+
content: "\e450";
|
|
3850
|
+
}
|
|
3851
|
+
.ph-bold.ph-speaker-simple-low:before {
|
|
3852
|
+
content: "\e452";
|
|
3853
|
+
}
|
|
3854
|
+
.ph-bold.ph-speaker-simple-none:before {
|
|
3855
|
+
content: "\e454";
|
|
3856
|
+
}
|
|
3857
|
+
.ph-bold.ph-speaker-simple-slash:before {
|
|
3858
|
+
content: "\e456";
|
|
3859
|
+
}
|
|
3860
|
+
.ph-bold.ph-speaker-simple-x:before {
|
|
3861
|
+
content: "\e458";
|
|
3862
|
+
}
|
|
3863
|
+
.ph-bold.ph-speaker-slash:before {
|
|
3864
|
+
content: "\e45a";
|
|
3865
|
+
}
|
|
3866
|
+
.ph-bold.ph-speaker-x:before {
|
|
3867
|
+
content: "\e45c";
|
|
3868
|
+
}
|
|
3869
|
+
.ph-bold.ph-speedometer:before {
|
|
3870
|
+
content: "\ee74";
|
|
3871
|
+
}
|
|
3872
|
+
.ph-bold.ph-sphere:before {
|
|
3873
|
+
content: "\ee66";
|
|
3874
|
+
}
|
|
3875
|
+
.ph-bold.ph-spinner:before {
|
|
3876
|
+
content: "\e66a";
|
|
3877
|
+
}
|
|
3878
|
+
.ph-bold.ph-spinner-ball:before {
|
|
3879
|
+
content: "\ee28";
|
|
3880
|
+
}
|
|
3881
|
+
.ph-bold.ph-spinner-gap:before {
|
|
3882
|
+
content: "\e66c";
|
|
3883
|
+
}
|
|
3884
|
+
.ph-bold.ph-spiral:before {
|
|
3885
|
+
content: "\e9fa";
|
|
3886
|
+
}
|
|
3887
|
+
.ph-bold.ph-split-horizontal:before {
|
|
3888
|
+
content: "\e872";
|
|
3889
|
+
}
|
|
3890
|
+
.ph-bold.ph-split-vertical:before {
|
|
3891
|
+
content: "\e876";
|
|
3892
|
+
}
|
|
3893
|
+
.ph-bold.ph-spotify-logo:before {
|
|
3894
|
+
content: "\e66e";
|
|
3895
|
+
}
|
|
3896
|
+
.ph-bold.ph-spray-bottle:before {
|
|
3897
|
+
content: "\e7e4";
|
|
3898
|
+
}
|
|
3899
|
+
.ph-bold.ph-square:before {
|
|
3900
|
+
content: "\e45e";
|
|
3901
|
+
}
|
|
3902
|
+
.ph-bold.ph-square-half:before {
|
|
3903
|
+
content: "\e462";
|
|
3904
|
+
}
|
|
3905
|
+
.ph-bold.ph-square-half-bottom:before {
|
|
3906
|
+
content: "\eb16";
|
|
3907
|
+
}
|
|
3908
|
+
.ph-bold.ph-square-logo:before {
|
|
3909
|
+
content: "\e690";
|
|
3910
|
+
}
|
|
3911
|
+
.ph-bold.ph-square-split-horizontal:before {
|
|
3912
|
+
content: "\e870";
|
|
3913
|
+
}
|
|
3914
|
+
.ph-bold.ph-square-split-vertical:before {
|
|
3915
|
+
content: "\e874";
|
|
3916
|
+
}
|
|
3917
|
+
.ph-bold.ph-squares-four:before {
|
|
3918
|
+
content: "\e464";
|
|
3919
|
+
}
|
|
3920
|
+
.ph-bold.ph-stack:before {
|
|
3921
|
+
content: "\e466";
|
|
3922
|
+
}
|
|
3923
|
+
.ph-bold.ph-stack-minus:before {
|
|
3924
|
+
content: "\edf4";
|
|
3925
|
+
}
|
|
3926
|
+
.ph-bold.ph-stack-overflow-logo:before {
|
|
3927
|
+
content: "\eb78";
|
|
3928
|
+
}
|
|
3929
|
+
.ph-bold.ph-stack-plus:before {
|
|
3930
|
+
content: "\edf6";
|
|
3931
|
+
}
|
|
3932
|
+
.ph-bold.ph-stack-simple:before {
|
|
3933
|
+
content: "\e468";
|
|
3934
|
+
}
|
|
3935
|
+
.ph-bold.ph-stairs:before {
|
|
3936
|
+
content: "\e8ec";
|
|
3937
|
+
}
|
|
3938
|
+
.ph-bold.ph-stamp:before {
|
|
3939
|
+
content: "\ea48";
|
|
3940
|
+
}
|
|
3941
|
+
.ph-bold.ph-standard-definition:before {
|
|
3942
|
+
content: "\ea90";
|
|
3943
|
+
}
|
|
3944
|
+
.ph-bold.ph-star:before {
|
|
3945
|
+
content: "\e46a";
|
|
3946
|
+
}
|
|
3947
|
+
.ph-bold.ph-star-and-crescent:before {
|
|
3948
|
+
content: "\ecf4";
|
|
3949
|
+
}
|
|
3950
|
+
.ph-bold.ph-star-four:before {
|
|
3951
|
+
content: "\e6a4";
|
|
3952
|
+
}
|
|
3953
|
+
.ph-bold.ph-star-half:before {
|
|
3954
|
+
content: "\e70a";
|
|
3955
|
+
}
|
|
3956
|
+
.ph-bold.ph-star-of-david:before {
|
|
3957
|
+
content: "\e89e";
|
|
3958
|
+
}
|
|
3959
|
+
.ph-bold.ph-steam-logo:before {
|
|
3960
|
+
content: "\ead4";
|
|
3961
|
+
}
|
|
3962
|
+
.ph-bold.ph-steering-wheel:before {
|
|
3963
|
+
content: "\e9ac";
|
|
3964
|
+
}
|
|
3965
|
+
.ph-bold.ph-steps:before {
|
|
3966
|
+
content: "\ecbe";
|
|
3967
|
+
}
|
|
3968
|
+
.ph-bold.ph-stethoscope:before {
|
|
3969
|
+
content: "\e7ea";
|
|
3970
|
+
}
|
|
3971
|
+
.ph-bold.ph-sticker:before {
|
|
3972
|
+
content: "\e5ac";
|
|
3973
|
+
}
|
|
3974
|
+
.ph-bold.ph-stool:before {
|
|
3975
|
+
content: "\ea44";
|
|
3976
|
+
}
|
|
3977
|
+
.ph-bold.ph-stop:before {
|
|
3978
|
+
content: "\e46c";
|
|
3979
|
+
}
|
|
3980
|
+
.ph-bold.ph-stop-circle:before {
|
|
3981
|
+
content: "\e46e";
|
|
3982
|
+
}
|
|
3983
|
+
.ph-bold.ph-storefront:before {
|
|
3984
|
+
content: "\e470";
|
|
3985
|
+
}
|
|
3986
|
+
.ph-bold.ph-strategy:before {
|
|
3987
|
+
content: "\ea3a";
|
|
3988
|
+
}
|
|
3989
|
+
.ph-bold.ph-stripe-logo:before {
|
|
3990
|
+
content: "\e698";
|
|
3991
|
+
}
|
|
3992
|
+
.ph-bold.ph-student:before {
|
|
3993
|
+
content: "\e73e";
|
|
3994
|
+
}
|
|
3995
|
+
.ph-bold.ph-subset-of:before {
|
|
3996
|
+
content: "\edc0";
|
|
3997
|
+
}
|
|
3998
|
+
.ph-bold.ph-subset-proper-of:before {
|
|
3999
|
+
content: "\edb6";
|
|
4000
|
+
}
|
|
4001
|
+
.ph-bold.ph-subtitles:before {
|
|
4002
|
+
content: "\e1a8";
|
|
4003
|
+
}
|
|
4004
|
+
.ph-bold.ph-subtitles-slash:before {
|
|
4005
|
+
content: "\e1a6";
|
|
4006
|
+
}
|
|
4007
|
+
.ph-bold.ph-subtract:before {
|
|
4008
|
+
content: "\ebd6";
|
|
4009
|
+
}
|
|
4010
|
+
.ph-bold.ph-subtract-square:before {
|
|
4011
|
+
content: "\ebd4";
|
|
4012
|
+
}
|
|
4013
|
+
.ph-bold.ph-subway:before {
|
|
4014
|
+
content: "\e498";
|
|
4015
|
+
}
|
|
4016
|
+
.ph-bold.ph-suitcase:before {
|
|
4017
|
+
content: "\e5ae";
|
|
4018
|
+
}
|
|
4019
|
+
.ph-bold.ph-suitcase-rolling:before {
|
|
4020
|
+
content: "\e9b0";
|
|
4021
|
+
}
|
|
4022
|
+
.ph-bold.ph-suitcase-simple:before {
|
|
4023
|
+
content: "\e5b0";
|
|
4024
|
+
}
|
|
4025
|
+
.ph-bold.ph-sun:before {
|
|
4026
|
+
content: "\e472";
|
|
4027
|
+
}
|
|
4028
|
+
.ph-bold.ph-sun-dim:before {
|
|
4029
|
+
content: "\e474";
|
|
4030
|
+
}
|
|
4031
|
+
.ph-bold.ph-sun-horizon:before {
|
|
4032
|
+
content: "\e5b6";
|
|
4033
|
+
}
|
|
4034
|
+
.ph-bold.ph-sunglasses:before {
|
|
4035
|
+
content: "\e816";
|
|
4036
|
+
}
|
|
4037
|
+
.ph-bold.ph-superset-of:before {
|
|
4038
|
+
content: "\edb8";
|
|
4039
|
+
}
|
|
4040
|
+
.ph-bold.ph-superset-proper-of:before {
|
|
4041
|
+
content: "\edb4";
|
|
4042
|
+
}
|
|
4043
|
+
.ph-bold.ph-swap:before {
|
|
4044
|
+
content: "\e83c";
|
|
4045
|
+
}
|
|
4046
|
+
.ph-bold.ph-swatches:before {
|
|
4047
|
+
content: "\e5b8";
|
|
4048
|
+
}
|
|
4049
|
+
.ph-bold.ph-swimming-pool:before {
|
|
4050
|
+
content: "\ecb6";
|
|
4051
|
+
}
|
|
4052
|
+
.ph-bold.ph-sword:before {
|
|
4053
|
+
content: "\e5ba";
|
|
4054
|
+
}
|
|
4055
|
+
.ph-bold.ph-synagogue:before {
|
|
4056
|
+
content: "\ecec";
|
|
4057
|
+
}
|
|
4058
|
+
.ph-bold.ph-syringe:before {
|
|
4059
|
+
content: "\e968";
|
|
4060
|
+
}
|
|
4061
|
+
.ph-bold.ph-t-shirt:before {
|
|
4062
|
+
content: "\e670";
|
|
4063
|
+
}
|
|
4064
|
+
.ph-bold.ph-table:before {
|
|
4065
|
+
content: "\e476";
|
|
4066
|
+
}
|
|
4067
|
+
.ph-bold.ph-tabs:before {
|
|
4068
|
+
content: "\e778";
|
|
4069
|
+
}
|
|
4070
|
+
.ph-bold.ph-tag:before {
|
|
4071
|
+
content: "\e478";
|
|
4072
|
+
}
|
|
4073
|
+
.ph-bold.ph-tag-chevron:before {
|
|
4074
|
+
content: "\e672";
|
|
4075
|
+
}
|
|
4076
|
+
.ph-bold.ph-tag-simple:before {
|
|
4077
|
+
content: "\e47a";
|
|
4078
|
+
}
|
|
4079
|
+
.ph-bold.ph-target:before {
|
|
4080
|
+
content: "\e47c";
|
|
4081
|
+
}
|
|
4082
|
+
.ph-bold.ph-taxi:before {
|
|
4083
|
+
content: "\e902";
|
|
4084
|
+
}
|
|
4085
|
+
.ph-bold.ph-tea-bag:before {
|
|
4086
|
+
content: "\e8e6";
|
|
4087
|
+
}
|
|
4088
|
+
.ph-bold.ph-telegram-logo:before {
|
|
4089
|
+
content: "\e5bc";
|
|
4090
|
+
}
|
|
4091
|
+
.ph-bold.ph-television:before {
|
|
4092
|
+
content: "\e754";
|
|
4093
|
+
}
|
|
4094
|
+
.ph-bold.ph-television-simple:before {
|
|
4095
|
+
content: "\eae6";
|
|
4096
|
+
}
|
|
4097
|
+
.ph-bold.ph-tennis-ball:before {
|
|
4098
|
+
content: "\e720";
|
|
4099
|
+
}
|
|
4100
|
+
.ph-bold.ph-tent:before {
|
|
4101
|
+
content: "\e8ba";
|
|
4102
|
+
}
|
|
4103
|
+
.ph-bold.ph-terminal:before {
|
|
4104
|
+
content: "\e47e";
|
|
4105
|
+
}
|
|
4106
|
+
.ph-bold.ph-terminal-window:before {
|
|
4107
|
+
content: "\eae8";
|
|
4108
|
+
}
|
|
4109
|
+
.ph-bold.ph-test-tube:before {
|
|
4110
|
+
content: "\e7a0";
|
|
4111
|
+
}
|
|
4112
|
+
.ph-bold.ph-text-a-underline:before {
|
|
4113
|
+
content: "\ed34";
|
|
4114
|
+
}
|
|
4115
|
+
.ph-bold.ph-text-aa:before {
|
|
4116
|
+
content: "\e6ee";
|
|
4117
|
+
}
|
|
4118
|
+
.ph-bold.ph-text-align-center:before {
|
|
4119
|
+
content: "\e480";
|
|
4120
|
+
}
|
|
4121
|
+
.ph-bold.ph-text-align-justify:before {
|
|
4122
|
+
content: "\e482";
|
|
4123
|
+
}
|
|
4124
|
+
.ph-bold.ph-text-align-left:before {
|
|
4125
|
+
content: "\e484";
|
|
4126
|
+
}
|
|
4127
|
+
.ph-bold.ph-text-align-right:before {
|
|
4128
|
+
content: "\e486";
|
|
4129
|
+
}
|
|
4130
|
+
.ph-bold.ph-text-b:before {
|
|
4131
|
+
content: "\e5be";
|
|
4132
|
+
}
|
|
4133
|
+
.ph-bold.ph-text-bolder:before {
|
|
4134
|
+
content: "\e5be";
|
|
4135
|
+
}
|
|
4136
|
+
.ph-bold.ph-text-columns:before {
|
|
4137
|
+
content: "\ec96";
|
|
4138
|
+
}
|
|
4139
|
+
.ph-bold.ph-text-h:before {
|
|
4140
|
+
content: "\e6ba";
|
|
4141
|
+
}
|
|
4142
|
+
.ph-bold.ph-text-h-five:before {
|
|
4143
|
+
content: "\e6c4";
|
|
4144
|
+
}
|
|
4145
|
+
.ph-bold.ph-text-h-four:before {
|
|
4146
|
+
content: "\e6c2";
|
|
4147
|
+
}
|
|
4148
|
+
.ph-bold.ph-text-h-one:before {
|
|
4149
|
+
content: "\e6bc";
|
|
4150
|
+
}
|
|
4151
|
+
.ph-bold.ph-text-h-six:before {
|
|
4152
|
+
content: "\e6c6";
|
|
4153
|
+
}
|
|
4154
|
+
.ph-bold.ph-text-h-three:before {
|
|
4155
|
+
content: "\e6c0";
|
|
4156
|
+
}
|
|
4157
|
+
.ph-bold.ph-text-h-two:before {
|
|
4158
|
+
content: "\e6be";
|
|
4159
|
+
}
|
|
4160
|
+
.ph-bold.ph-text-indent:before {
|
|
4161
|
+
content: "\ea1e";
|
|
4162
|
+
}
|
|
4163
|
+
.ph-bold.ph-text-italic:before {
|
|
4164
|
+
content: "\e5c0";
|
|
4165
|
+
}
|
|
4166
|
+
.ph-bold.ph-text-outdent:before {
|
|
4167
|
+
content: "\ea1c";
|
|
4168
|
+
}
|
|
4169
|
+
.ph-bold.ph-text-strikethrough:before {
|
|
4170
|
+
content: "\e5c2";
|
|
4171
|
+
}
|
|
4172
|
+
.ph-bold.ph-text-subscript:before {
|
|
4173
|
+
content: "\ec98";
|
|
4174
|
+
}
|
|
4175
|
+
.ph-bold.ph-text-superscript:before {
|
|
4176
|
+
content: "\ec9a";
|
|
4177
|
+
}
|
|
4178
|
+
.ph-bold.ph-text-t:before {
|
|
4179
|
+
content: "\e48a";
|
|
4180
|
+
}
|
|
4181
|
+
.ph-bold.ph-text-t-slash:before {
|
|
4182
|
+
content: "\e488";
|
|
4183
|
+
}
|
|
4184
|
+
.ph-bold.ph-text-underline:before {
|
|
4185
|
+
content: "\e5c4";
|
|
4186
|
+
}
|
|
4187
|
+
.ph-bold.ph-textbox:before {
|
|
4188
|
+
content: "\eb0a";
|
|
4189
|
+
}
|
|
4190
|
+
.ph-bold.ph-thermometer:before {
|
|
4191
|
+
content: "\e5c6";
|
|
4192
|
+
}
|
|
4193
|
+
.ph-bold.ph-thermometer-cold:before {
|
|
4194
|
+
content: "\e5c8";
|
|
4195
|
+
}
|
|
4196
|
+
.ph-bold.ph-thermometer-hot:before {
|
|
4197
|
+
content: "\e5ca";
|
|
4198
|
+
}
|
|
4199
|
+
.ph-bold.ph-thermometer-simple:before {
|
|
4200
|
+
content: "\e5cc";
|
|
4201
|
+
}
|
|
4202
|
+
.ph-bold.ph-threads-logo:before {
|
|
4203
|
+
content: "\ed9e";
|
|
4204
|
+
}
|
|
4205
|
+
.ph-bold.ph-three-d:before {
|
|
4206
|
+
content: "\ea5a";
|
|
4207
|
+
}
|
|
4208
|
+
.ph-bold.ph-thumbs-down:before {
|
|
4209
|
+
content: "\e48c";
|
|
4210
|
+
}
|
|
4211
|
+
.ph-bold.ph-thumbs-up:before {
|
|
4212
|
+
content: "\e48e";
|
|
4213
|
+
}
|
|
4214
|
+
.ph-bold.ph-ticket:before {
|
|
4215
|
+
content: "\e490";
|
|
4216
|
+
}
|
|
4217
|
+
.ph-bold.ph-tidal-logo:before {
|
|
4218
|
+
content: "\ed1c";
|
|
4219
|
+
}
|
|
4220
|
+
.ph-bold.ph-tiktok-logo:before {
|
|
4221
|
+
content: "\eaf2";
|
|
4222
|
+
}
|
|
4223
|
+
.ph-bold.ph-tilde:before {
|
|
4224
|
+
content: "\eda8";
|
|
4225
|
+
}
|
|
4226
|
+
.ph-bold.ph-timer:before {
|
|
4227
|
+
content: "\e492";
|
|
4228
|
+
}
|
|
4229
|
+
.ph-bold.ph-tip-jar:before {
|
|
4230
|
+
content: "\e7e2";
|
|
4231
|
+
}
|
|
4232
|
+
.ph-bold.ph-tipi:before {
|
|
4233
|
+
content: "\ed30";
|
|
4234
|
+
}
|
|
4235
|
+
.ph-bold.ph-tire:before {
|
|
4236
|
+
content: "\edd2";
|
|
4237
|
+
}
|
|
4238
|
+
.ph-bold.ph-toggle-left:before {
|
|
4239
|
+
content: "\e674";
|
|
4240
|
+
}
|
|
4241
|
+
.ph-bold.ph-toggle-right:before {
|
|
4242
|
+
content: "\e676";
|
|
4243
|
+
}
|
|
4244
|
+
.ph-bold.ph-toilet:before {
|
|
4245
|
+
content: "\e79a";
|
|
4246
|
+
}
|
|
4247
|
+
.ph-bold.ph-toilet-paper:before {
|
|
4248
|
+
content: "\e79c";
|
|
4249
|
+
}
|
|
4250
|
+
.ph-bold.ph-toolbox:before {
|
|
4251
|
+
content: "\eca0";
|
|
4252
|
+
}
|
|
4253
|
+
.ph-bold.ph-tooth:before {
|
|
4254
|
+
content: "\e9cc";
|
|
4255
|
+
}
|
|
4256
|
+
.ph-bold.ph-tornado:before {
|
|
4257
|
+
content: "\e88c";
|
|
4258
|
+
}
|
|
4259
|
+
.ph-bold.ph-tote:before {
|
|
4260
|
+
content: "\e494";
|
|
4261
|
+
}
|
|
4262
|
+
.ph-bold.ph-tote-simple:before {
|
|
4263
|
+
content: "\e678";
|
|
4264
|
+
}
|
|
4265
|
+
.ph-bold.ph-towel:before {
|
|
4266
|
+
content: "\ede6";
|
|
4267
|
+
}
|
|
4268
|
+
.ph-bold.ph-tractor:before {
|
|
4269
|
+
content: "\ec6e";
|
|
4270
|
+
}
|
|
4271
|
+
.ph-bold.ph-trademark:before {
|
|
4272
|
+
content: "\e9f0";
|
|
4273
|
+
}
|
|
4274
|
+
.ph-bold.ph-trademark-registered:before {
|
|
4275
|
+
content: "\e3f4";
|
|
4276
|
+
}
|
|
4277
|
+
.ph-bold.ph-traffic-cone:before {
|
|
4278
|
+
content: "\e9a8";
|
|
4279
|
+
}
|
|
4280
|
+
.ph-bold.ph-traffic-sign:before {
|
|
4281
|
+
content: "\e67a";
|
|
4282
|
+
}
|
|
4283
|
+
.ph-bold.ph-traffic-signal:before {
|
|
4284
|
+
content: "\e9aa";
|
|
4285
|
+
}
|
|
4286
|
+
.ph-bold.ph-train:before {
|
|
4287
|
+
content: "\e496";
|
|
4288
|
+
}
|
|
4289
|
+
.ph-bold.ph-train-regional:before {
|
|
4290
|
+
content: "\e49e";
|
|
4291
|
+
}
|
|
4292
|
+
.ph-bold.ph-train-simple:before {
|
|
4293
|
+
content: "\e4a0";
|
|
4294
|
+
}
|
|
4295
|
+
.ph-bold.ph-tram:before {
|
|
4296
|
+
content: "\e9ec";
|
|
4297
|
+
}
|
|
4298
|
+
.ph-bold.ph-translate:before {
|
|
4299
|
+
content: "\e4a2";
|
|
4300
|
+
}
|
|
4301
|
+
.ph-bold.ph-trash:before {
|
|
4302
|
+
content: "\e4a6";
|
|
4303
|
+
}
|
|
4304
|
+
.ph-bold.ph-trash-simple:before {
|
|
4305
|
+
content: "\e4a8";
|
|
4306
|
+
}
|
|
4307
|
+
.ph-bold.ph-tray:before {
|
|
4308
|
+
content: "\e4aa";
|
|
4309
|
+
}
|
|
4310
|
+
.ph-bold.ph-tray-arrow-down:before {
|
|
4311
|
+
content: "\e010";
|
|
4312
|
+
}
|
|
4313
|
+
.ph-bold.ph-archive-tray:before {
|
|
4314
|
+
content: "\e010";
|
|
4315
|
+
}
|
|
4316
|
+
.ph-bold.ph-tray-arrow-up:before {
|
|
4317
|
+
content: "\ee52";
|
|
4318
|
+
}
|
|
4319
|
+
.ph-bold.ph-treasure-chest:before {
|
|
4320
|
+
content: "\ede2";
|
|
4321
|
+
}
|
|
4322
|
+
.ph-bold.ph-tree:before {
|
|
4323
|
+
content: "\e6da";
|
|
4324
|
+
}
|
|
4325
|
+
.ph-bold.ph-tree-evergreen:before {
|
|
4326
|
+
content: "\e6dc";
|
|
4327
|
+
}
|
|
4328
|
+
.ph-bold.ph-tree-palm:before {
|
|
4329
|
+
content: "\e91a";
|
|
4330
|
+
}
|
|
4331
|
+
.ph-bold.ph-tree-structure:before {
|
|
4332
|
+
content: "\e67c";
|
|
4333
|
+
}
|
|
4334
|
+
.ph-bold.ph-tree-view:before {
|
|
4335
|
+
content: "\ee48";
|
|
4336
|
+
}
|
|
4337
|
+
.ph-bold.ph-trend-down:before {
|
|
4338
|
+
content: "\e4ac";
|
|
4339
|
+
}
|
|
4340
|
+
.ph-bold.ph-trend-up:before {
|
|
4341
|
+
content: "\e4ae";
|
|
4342
|
+
}
|
|
4343
|
+
.ph-bold.ph-triangle:before {
|
|
4344
|
+
content: "\e4b0";
|
|
4345
|
+
}
|
|
4346
|
+
.ph-bold.ph-triangle-dashed:before {
|
|
4347
|
+
content: "\e4b2";
|
|
4348
|
+
}
|
|
4349
|
+
.ph-bold.ph-trolley:before {
|
|
4350
|
+
content: "\e5b2";
|
|
4351
|
+
}
|
|
4352
|
+
.ph-bold.ph-trolley-suitcase:before {
|
|
4353
|
+
content: "\e5b4";
|
|
4354
|
+
}
|
|
4355
|
+
.ph-bold.ph-trophy:before {
|
|
4356
|
+
content: "\e67e";
|
|
4357
|
+
}
|
|
4358
|
+
.ph-bold.ph-truck:before {
|
|
4359
|
+
content: "\e4b4";
|
|
4360
|
+
}
|
|
4361
|
+
.ph-bold.ph-truck-trailer:before {
|
|
4362
|
+
content: "\e4b6";
|
|
4363
|
+
}
|
|
4364
|
+
.ph-bold.ph-tumblr-logo:before {
|
|
4365
|
+
content: "\e8d4";
|
|
4366
|
+
}
|
|
4367
|
+
.ph-bold.ph-twitch-logo:before {
|
|
4368
|
+
content: "\e5ce";
|
|
4369
|
+
}
|
|
4370
|
+
.ph-bold.ph-twitter-logo:before {
|
|
4371
|
+
content: "\e4ba";
|
|
4372
|
+
}
|
|
4373
|
+
.ph-bold.ph-umbrella:before {
|
|
4374
|
+
content: "\e684";
|
|
4375
|
+
}
|
|
4376
|
+
.ph-bold.ph-umbrella-simple:before {
|
|
4377
|
+
content: "\e686";
|
|
4378
|
+
}
|
|
4379
|
+
.ph-bold.ph-union:before {
|
|
4380
|
+
content: "\edbe";
|
|
4381
|
+
}
|
|
4382
|
+
.ph-bold.ph-unite:before {
|
|
4383
|
+
content: "\e87e";
|
|
4384
|
+
}
|
|
4385
|
+
.ph-bold.ph-unite-square:before {
|
|
4386
|
+
content: "\e878";
|
|
4387
|
+
}
|
|
4388
|
+
.ph-bold.ph-upload:before {
|
|
4389
|
+
content: "\e4be";
|
|
4390
|
+
}
|
|
4391
|
+
.ph-bold.ph-upload-simple:before {
|
|
4392
|
+
content: "\e4c0";
|
|
4393
|
+
}
|
|
4394
|
+
.ph-bold.ph-usb:before {
|
|
4395
|
+
content: "\e956";
|
|
4396
|
+
}
|
|
4397
|
+
.ph-bold.ph-user:before {
|
|
4398
|
+
content: "\e4c2";
|
|
4399
|
+
}
|
|
4400
|
+
.ph-bold.ph-user-check:before {
|
|
4401
|
+
content: "\eafa";
|
|
4402
|
+
}
|
|
4403
|
+
.ph-bold.ph-user-circle:before {
|
|
4404
|
+
content: "\e4c4";
|
|
4405
|
+
}
|
|
4406
|
+
.ph-bold.ph-user-circle-check:before {
|
|
4407
|
+
content: "\ec38";
|
|
4408
|
+
}
|
|
4409
|
+
.ph-bold.ph-user-circle-dashed:before {
|
|
4410
|
+
content: "\ec36";
|
|
4411
|
+
}
|
|
4412
|
+
.ph-bold.ph-user-circle-gear:before {
|
|
4413
|
+
content: "\e4c6";
|
|
4414
|
+
}
|
|
4415
|
+
.ph-bold.ph-user-circle-minus:before {
|
|
4416
|
+
content: "\e4c8";
|
|
4417
|
+
}
|
|
4418
|
+
.ph-bold.ph-user-circle-plus:before {
|
|
4419
|
+
content: "\e4ca";
|
|
4420
|
+
}
|
|
4421
|
+
.ph-bold.ph-user-focus:before {
|
|
4422
|
+
content: "\e6fc";
|
|
4423
|
+
}
|
|
4424
|
+
.ph-bold.ph-user-gear:before {
|
|
4425
|
+
content: "\e4cc";
|
|
4426
|
+
}
|
|
4427
|
+
.ph-bold.ph-user-list:before {
|
|
4428
|
+
content: "\e73c";
|
|
4429
|
+
}
|
|
4430
|
+
.ph-bold.ph-user-minus:before {
|
|
4431
|
+
content: "\e4ce";
|
|
4432
|
+
}
|
|
4433
|
+
.ph-bold.ph-user-plus:before {
|
|
4434
|
+
content: "\e4d0";
|
|
4435
|
+
}
|
|
4436
|
+
.ph-bold.ph-user-rectangle:before {
|
|
4437
|
+
content: "\e4d2";
|
|
4438
|
+
}
|
|
4439
|
+
.ph-bold.ph-user-sound:before {
|
|
4440
|
+
content: "\eca8";
|
|
4441
|
+
}
|
|
4442
|
+
.ph-bold.ph-user-square:before {
|
|
4443
|
+
content: "\e4d4";
|
|
4444
|
+
}
|
|
4445
|
+
.ph-bold.ph-user-switch:before {
|
|
4446
|
+
content: "\e756";
|
|
4447
|
+
}
|
|
4448
|
+
.ph-bold.ph-users:before {
|
|
4449
|
+
content: "\e4d6";
|
|
4450
|
+
}
|
|
4451
|
+
.ph-bold.ph-users-four:before {
|
|
4452
|
+
content: "\e68c";
|
|
4453
|
+
}
|
|
4454
|
+
.ph-bold.ph-users-three:before {
|
|
4455
|
+
content: "\e68e";
|
|
4456
|
+
}
|
|
4457
|
+
.ph-bold.ph-van:before {
|
|
4458
|
+
content: "\e826";
|
|
4459
|
+
}
|
|
4460
|
+
.ph-bold.ph-vault:before {
|
|
4461
|
+
content: "\e76e";
|
|
4462
|
+
}
|
|
4463
|
+
.ph-bold.ph-vector-three:before {
|
|
4464
|
+
content: "\ee62";
|
|
4465
|
+
}
|
|
4466
|
+
.ph-bold.ph-vector-two:before {
|
|
4467
|
+
content: "\ee64";
|
|
4468
|
+
}
|
|
4469
|
+
.ph-bold.ph-vibrate:before {
|
|
4470
|
+
content: "\e4d8";
|
|
4471
|
+
}
|
|
4472
|
+
.ph-bold.ph-video:before {
|
|
4473
|
+
content: "\e740";
|
|
4474
|
+
}
|
|
4475
|
+
.ph-bold.ph-video-camera:before {
|
|
4476
|
+
content: "\e4da";
|
|
4477
|
+
}
|
|
4478
|
+
.ph-bold.ph-video-camera-slash:before {
|
|
4479
|
+
content: "\e4dc";
|
|
4480
|
+
}
|
|
4481
|
+
.ph-bold.ph-video-conference:before {
|
|
4482
|
+
content: "\edce";
|
|
4483
|
+
}
|
|
4484
|
+
.ph-bold.ph-vignette:before {
|
|
4485
|
+
content: "\eba2";
|
|
4486
|
+
}
|
|
4487
|
+
.ph-bold.ph-vinyl-record:before {
|
|
4488
|
+
content: "\ecac";
|
|
4489
|
+
}
|
|
4490
|
+
.ph-bold.ph-virtual-reality:before {
|
|
4491
|
+
content: "\e7b8";
|
|
4492
|
+
}
|
|
4493
|
+
.ph-bold.ph-virus:before {
|
|
4494
|
+
content: "\e7d6";
|
|
4495
|
+
}
|
|
4496
|
+
.ph-bold.ph-visor:before {
|
|
4497
|
+
content: "\ee2a";
|
|
4498
|
+
}
|
|
4499
|
+
.ph-bold.ph-voicemail:before {
|
|
4500
|
+
content: "\e4de";
|
|
4501
|
+
}
|
|
4502
|
+
.ph-bold.ph-volleyball:before {
|
|
4503
|
+
content: "\e726";
|
|
4504
|
+
}
|
|
4505
|
+
.ph-bold.ph-wall:before {
|
|
4506
|
+
content: "\e688";
|
|
4507
|
+
}
|
|
4508
|
+
.ph-bold.ph-wallet:before {
|
|
4509
|
+
content: "\e68a";
|
|
4510
|
+
}
|
|
4511
|
+
.ph-bold.ph-warehouse:before {
|
|
4512
|
+
content: "\ecd4";
|
|
4513
|
+
}
|
|
4514
|
+
.ph-bold.ph-warning:before {
|
|
4515
|
+
content: "\e4e0";
|
|
4516
|
+
}
|
|
4517
|
+
.ph-bold.ph-warning-circle:before {
|
|
4518
|
+
content: "\e4e2";
|
|
4519
|
+
}
|
|
4520
|
+
.ph-bold.ph-warning-diamond:before {
|
|
4521
|
+
content: "\e7fc";
|
|
4522
|
+
}
|
|
4523
|
+
.ph-bold.ph-warning-octagon:before {
|
|
4524
|
+
content: "\e4e4";
|
|
4525
|
+
}
|
|
4526
|
+
.ph-bold.ph-washing-machine:before {
|
|
4527
|
+
content: "\ede8";
|
|
4528
|
+
}
|
|
4529
|
+
.ph-bold.ph-watch:before {
|
|
4530
|
+
content: "\e4e6";
|
|
4531
|
+
}
|
|
4532
|
+
.ph-bold.ph-wave-sawtooth:before {
|
|
4533
|
+
content: "\ea9c";
|
|
4534
|
+
}
|
|
4535
|
+
.ph-bold.ph-wave-sine:before {
|
|
4536
|
+
content: "\ea9a";
|
|
4537
|
+
}
|
|
4538
|
+
.ph-bold.ph-wave-square:before {
|
|
4539
|
+
content: "\ea9e";
|
|
4540
|
+
}
|
|
4541
|
+
.ph-bold.ph-wave-triangle:before {
|
|
4542
|
+
content: "\eaa0";
|
|
4543
|
+
}
|
|
4544
|
+
.ph-bold.ph-waveform:before {
|
|
4545
|
+
content: "\e802";
|
|
4546
|
+
}
|
|
4547
|
+
.ph-bold.ph-waveform-slash:before {
|
|
4548
|
+
content: "\e800";
|
|
4549
|
+
}
|
|
4550
|
+
.ph-bold.ph-waves:before {
|
|
4551
|
+
content: "\e6de";
|
|
4552
|
+
}
|
|
4553
|
+
.ph-bold.ph-webcam:before {
|
|
4554
|
+
content: "\e9b2";
|
|
4555
|
+
}
|
|
4556
|
+
.ph-bold.ph-webcam-slash:before {
|
|
4557
|
+
content: "\ecdc";
|
|
4558
|
+
}
|
|
4559
|
+
.ph-bold.ph-webhooks-logo:before {
|
|
4560
|
+
content: "\ecae";
|
|
4561
|
+
}
|
|
4562
|
+
.ph-bold.ph-wechat-logo:before {
|
|
4563
|
+
content: "\e8d2";
|
|
4564
|
+
}
|
|
4565
|
+
.ph-bold.ph-whatsapp-logo:before {
|
|
4566
|
+
content: "\e5d0";
|
|
4567
|
+
}
|
|
4568
|
+
.ph-bold.ph-wheelchair:before {
|
|
4569
|
+
content: "\e4e8";
|
|
4570
|
+
}
|
|
4571
|
+
.ph-bold.ph-wheelchair-motion:before {
|
|
4572
|
+
content: "\e89a";
|
|
4573
|
+
}
|
|
4574
|
+
.ph-bold.ph-wifi-high:before {
|
|
4575
|
+
content: "\e4ea";
|
|
4576
|
+
}
|
|
4577
|
+
.ph-bold.ph-wifi-low:before {
|
|
4578
|
+
content: "\e4ec";
|
|
4579
|
+
}
|
|
4580
|
+
.ph-bold.ph-wifi-medium:before {
|
|
4581
|
+
content: "\e4ee";
|
|
4582
|
+
}
|
|
4583
|
+
.ph-bold.ph-wifi-none:before {
|
|
4584
|
+
content: "\e4f0";
|
|
4585
|
+
}
|
|
4586
|
+
.ph-bold.ph-wifi-slash:before {
|
|
4587
|
+
content: "\e4f2";
|
|
4588
|
+
}
|
|
4589
|
+
.ph-bold.ph-wifi-x:before {
|
|
4590
|
+
content: "\e4f4";
|
|
4591
|
+
}
|
|
4592
|
+
.ph-bold.ph-wind:before {
|
|
4593
|
+
content: "\e5d2";
|
|
4594
|
+
}
|
|
4595
|
+
.ph-bold.ph-windmill:before {
|
|
4596
|
+
content: "\e9f8";
|
|
4597
|
+
}
|
|
4598
|
+
.ph-bold.ph-windows-logo:before {
|
|
4599
|
+
content: "\e692";
|
|
4600
|
+
}
|
|
4601
|
+
.ph-bold.ph-wine:before {
|
|
4602
|
+
content: "\e6b2";
|
|
4603
|
+
}
|
|
4604
|
+
.ph-bold.ph-wrench:before {
|
|
4605
|
+
content: "\e5d4";
|
|
4606
|
+
}
|
|
4607
|
+
.ph-bold.ph-x:before {
|
|
4608
|
+
content: "\e4f6";
|
|
4609
|
+
}
|
|
4610
|
+
.ph-bold.ph-x-circle:before {
|
|
4611
|
+
content: "\e4f8";
|
|
4612
|
+
}
|
|
4613
|
+
.ph-bold.ph-x-logo:before {
|
|
4614
|
+
content: "\e4bc";
|
|
4615
|
+
}
|
|
4616
|
+
.ph-bold.ph-x-square:before {
|
|
4617
|
+
content: "\e4fa";
|
|
4618
|
+
}
|
|
4619
|
+
.ph-bold.ph-yarn:before {
|
|
4620
|
+
content: "\ed9a";
|
|
4621
|
+
}
|
|
4622
|
+
.ph-bold.ph-yin-yang:before {
|
|
4623
|
+
content: "\e92a";
|
|
4624
|
+
}
|
|
4625
|
+
.ph-bold.ph-youtube-logo:before {
|
|
4626
|
+
content: "\e4fc";
|
|
4627
|
+
}
|