@iris.interactive/handcook 1.0.2 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/package.json +1 -1
  2. package/public/fonts/svgfont/etourisme/etourisme-font.eot +0 -0
  3. package/public/fonts/svgfont/etourisme/etourisme-font.svg +1 -0
  4. package/public/fonts/svgfont/etourisme/etourisme-font.ttf +0 -0
  5. package/public/fonts/svgfont/etourisme/etourisme-font.woff +0 -0
  6. package/public/fonts/svgfont/info-neige/info-neige-font.eot +0 -0
  7. package/public/fonts/svgfont/info-neige/info-neige-font.svg +1 -0
  8. package/public/fonts/svgfont/info-neige/info-neige-font.ttf +0 -0
  9. package/public/fonts/svgfont/info-neige/info-neige-font.woff +0 -0
  10. package/public/fonts/svgfont/iris-tides/iris-tides-font.eot +0 -0
  11. package/public/fonts/svgfont/iris-tides/iris-tides-font.svg +1 -0
  12. package/public/fonts/svgfont/iris-tides/iris-tides-font.ttf +0 -0
  13. package/public/fonts/svgfont/iris-tides/iris-tides-font.woff +0 -0
  14. package/public/fonts/svgfont/iris-weather/iris-weather-font.eot +0 -0
  15. package/public/fonts/svgfont/iris-weather/iris-weather-font.svg +1 -0
  16. package/public/fonts/svgfont/iris-weather/iris-weather-font.ttf +0 -0
  17. package/public/fonts/svgfont/iris-weather/iris-weather-font.woff +0 -0
  18. package/public/fonts/svgfont/theme/theme-font.eot +0 -0
  19. package/public/fonts/svgfont/theme/theme-font.svg +1 -0
  20. package/public/fonts/svgfont/theme/theme-font.ttf +0 -0
  21. package/public/fonts/svgfont/theme/theme-font.woff +0 -0
  22. package/public/scripts/index.js +236 -2
  23. package/public/styles/scss/_mixin-font.scss +31 -0
  24. package/public/styles/scss/lib/_etourisme-font.scss +54 -0
  25. package/public/styles/scss/lib/_info-neige-font.scss +36 -0
  26. package/public/styles/scss/lib/_iris-tides-font.scss +38 -0
  27. package/public/styles/scss/lib/_iris-weather-font.scss +47 -0
  28. package/public/styles/scss/lib/_theme-font.scss +134 -0
  29. package/public/styles/style.css +985 -0
  30. package/public/scripts/index.js.map +0 -1
@@ -0,0 +1,985 @@
1
+ /*
2
+ * Created by IRIS Interactive
3
+ * User : IRIS Interactive
4
+ */
5
+ /* Import
6
+ /* ============================================= */
7
+ /* Fonticon
8
+ /* ============================================= */
9
+ @font-face {
10
+ font-family: "etourisme-font";
11
+ font-weight: normal;
12
+ font-style: normal;
13
+ src: url("../fonts/svgfont/etourisme/etourisme-font.eot"), url("../fonts/svgfont/etourisme/etourisme-font.woff") format("woff"), url("../fonts/svgfont/etourisme/etourisme-font.ttf") format("truetype"), url("../fonts/svgfont/etourisme/etourisme-font.eot?#iefix") format("embedded-opentype"), url("../fonts/svgfont/etourisme/etourisme-font.svg#etourisme-font") format("svg");
14
+ font-display: swap;
15
+ }
16
+ .ei:before,
17
+ .ei:after {
18
+ display: inline-block;
19
+ vertical-align: middle;
20
+ font-family: "etourisme-font", sans-serif;
21
+ font-style: initial;
22
+ }
23
+
24
+ .ei--danger:not(.ei--after):before {
25
+ content: "\ea01";
26
+ }
27
+
28
+ .ei--danger.ei--after:after {
29
+ content: "\ea01";
30
+ }
31
+
32
+ .ei--denivele:not(.ei--after):before {
33
+ content: "\ea02";
34
+ }
35
+
36
+ .ei--denivele.ei--after:after {
37
+ content: "\ea02";
38
+ }
39
+
40
+ .ei--distance:not(.ei--after):before {
41
+ content: "\ea03";
42
+ }
43
+
44
+ .ei--distance.ei--after:after {
45
+ content: "\ea03";
46
+ }
47
+
48
+ .ei--duration:not(.ei--after):before {
49
+ content: "\ea04";
50
+ }
51
+
52
+ .ei--duration.ei--after:after {
53
+ content: "\ea04";
54
+ }
55
+
56
+ .ei--environment:not(.ei--after):before {
57
+ content: "\ea05";
58
+ }
59
+
60
+ .ei--environment.ei--after:after {
61
+ content: "\ea05";
62
+ }
63
+
64
+ .ei--file-downlaod:not(.ei--after):before {
65
+ content: "\ea06";
66
+ }
67
+
68
+ .ei--file-downlaod.ei--after:after {
69
+ content: "\ea06";
70
+ }
71
+
72
+ .ei--flag:not(.ei--after):before {
73
+ content: "\ea07";
74
+ }
75
+
76
+ .ei--flag.ei--after:after {
77
+ content: "\ea07";
78
+ }
79
+
80
+ .ei--itinerary:not(.ei--after):before {
81
+ content: "\ea08";
82
+ }
83
+
84
+ .ei--itinerary.ei--after:after {
85
+ content: "\ea08";
86
+ }
87
+
88
+ .ei--level:not(.ei--after):before {
89
+ content: "\ea09";
90
+ }
91
+
92
+ .ei--level.ei--after:after {
93
+ content: "\ea09";
94
+ }
95
+
96
+ .ei--location-on:not(.ei--after):before {
97
+ content: "\ea0a";
98
+ }
99
+
100
+ .ei--location-on.ei--after:after {
101
+ content: "\ea0a";
102
+ }
103
+
104
+ .ei--loop:not(.ei--after):before {
105
+ content: "\ea0b";
106
+ }
107
+
108
+ .ei--loop.ei--after:after {
109
+ content: "\ea0b";
110
+ }
111
+
112
+ .ei--path:not(.ei--after):before {
113
+ content: "\ea0c";
114
+ }
115
+
116
+ .ei--path.ei--after:after {
117
+ content: "\ea0c";
118
+ }
119
+
120
+ .ei--period:not(.ei--after):before {
121
+ content: "\ea0d";
122
+ }
123
+
124
+ .ei--period.ei--after:after {
125
+ content: "\ea0d";
126
+ }
127
+
128
+ @font-face {
129
+ font-family: "info-neige-font";
130
+ font-weight: normal;
131
+ font-style: normal;
132
+ src: url("../fonts/svgfont/info-neige/info-neige-font.eot"), url("../fonts/svgfont/info-neige/info-neige-font.woff") format("woff"), url("../fonts/svgfont/info-neige/info-neige-font.ttf") format("truetype"), url("../fonts/svgfont/info-neige/info-neige-font.eot?#iefix") format("embedded-opentype"), url("../fonts/svgfont/info-neige/info-neige-font.svg#info-neige-font") format("svg");
133
+ font-display: swap;
134
+ }
135
+ .ni:before {
136
+ font-family: "info-neige-font", sans-serif;
137
+ font-style: initial;
138
+ }
139
+
140
+ .ni-bullet:before {
141
+ content: "\ea01";
142
+ }
143
+
144
+ @font-face {
145
+ font-family: "iris-tides-font";
146
+ font-weight: normal;
147
+ font-style: normal;
148
+ src: url("../fonts/svgfont/iris-tides/iris-tides-font.eot"), url("../fonts/svgfont/iris-tides/iris-tides-font.woff") format("woff"), url("../fonts/svgfont/iris-tides/iris-tides-font.ttf") format("truetype"), url("../fonts/svgfont/iris-tides/iris-tides-font.eot?#iefix") format("embedded-opentype"), url("../fonts/svgfont/iris-tides/iris-tides-font.svg#iris-tides-font") format("svg");
149
+ font-display: swap;
150
+ }
151
+ .ti:before {
152
+ font-family: "iris-tides-font", sans-serif;
153
+ font-style: initial;
154
+ }
155
+
156
+ .ti-coefficient:before {
157
+ content: "\ea01";
158
+ }
159
+
160
+ .ti-high-tide:before {
161
+ content: "\ea02";
162
+ }
163
+
164
+ .ti-low-tide:before {
165
+ content: "\ea03";
166
+ }
167
+
168
+ @font-face {
169
+ font-family: "iris-weather-font";
170
+ font-weight: normal;
171
+ font-style: normal;
172
+ src: url("../fonts/svgfont/iris-weather/iris-weather-font.eot"), url("../fonts/svgfont/iris-weather/iris-weather-font.woff") format("woff"), url("../fonts/svgfont/iris-weather/iris-weather-font.ttf") format("truetype"), url("../fonts/svgfont/iris-weather/iris-weather-font.eot?#iefix") format("embedded-opentype"), url("../fonts/svgfont/iris-weather/iris-weather-font.svg#iris-weather-font") format("svg");
173
+ font-display: swap;
174
+ }
175
+ .wi:before {
176
+ font-family: "iris-weather-font", sans-serif;
177
+ font-style: initial;
178
+ }
179
+
180
+ .wi-day-cloudy:before {
181
+ content: "\ea01";
182
+ }
183
+
184
+ .wi-day-fog:before {
185
+ content: "\ea02";
186
+ }
187
+
188
+ .wi-day-rain:before {
189
+ content: "\ea03";
190
+ }
191
+
192
+ .wi-day-sleet:before {
193
+ content: "\ea04";
194
+ }
195
+
196
+ .wi-day-snow:before {
197
+ content: "\ea05";
198
+ }
199
+
200
+ .wi-day-sunny:before {
201
+ content: "\ea06";
202
+ }
203
+
204
+ .wi-day-windy:before {
205
+ content: "\ea07";
206
+ }
207
+
208
+ .wi-flag-wind:before {
209
+ content: "\ea08";
210
+ }
211
+
212
+ .wi-humidity:before {
213
+ content: "\ea09";
214
+ }
215
+
216
+ .wi-night-clear:before {
217
+ content: "\ea0a";
218
+ }
219
+
220
+ .wi-night-cloudy:before {
221
+ content: "\ea0b";
222
+ }
223
+
224
+ .wi-thermostat:before {
225
+ content: "\ea0c";
226
+ }
227
+
228
+ @font-face {
229
+ font-family: "theme-font";
230
+ font-weight: normal;
231
+ font-style: normal;
232
+ src: url("../fonts/svgfont/theme/theme-font.eot"), url("../fonts/svgfont/theme/theme-font.woff") format("woff"), url("../fonts/svgfont/theme/theme-font.ttf") format("truetype"), url("../fonts/svgfont/theme/theme-font.eot?#iefix") format("embedded-opentype"), url("../fonts/svgfont/theme/theme-font.svg#theme-font") format("svg");
233
+ font-display: swap;
234
+ }
235
+ .fi:before,
236
+ .fi:after {
237
+ display: inline-block;
238
+ vertical-align: middle;
239
+ font-family: "theme-font", sans-serif;
240
+ font-style: initial;
241
+ }
242
+
243
+ .fi--activites:not(.fi--after):before {
244
+ content: "\ea01";
245
+ }
246
+
247
+ .fi--activites.fi--after:after {
248
+ content: "\ea01";
249
+ }
250
+
251
+ .fi--add-location-alt-line:not(.fi--after):before {
252
+ content: "\ea02";
253
+ }
254
+
255
+ .fi--add-location-alt-line.fi--after:after {
256
+ content: "\ea02";
257
+ }
258
+
259
+ .fi--add-location-alt:not(.fi--after):before {
260
+ content: "\ea03";
261
+ }
262
+
263
+ .fi--add-location-alt.fi--after:after {
264
+ content: "\ea03";
265
+ }
266
+
267
+ .fi--add:not(.fi--after):before {
268
+ content: "\ea04";
269
+ }
270
+
271
+ .fi--add.fi--after:after {
272
+ content: "\ea04";
273
+ }
274
+
275
+ .fi--arrow-back:not(.fi--after):before {
276
+ content: "\ea05";
277
+ }
278
+
279
+ .fi--arrow-back.fi--after:after {
280
+ content: "\ea05";
281
+ }
282
+
283
+ .fi--arrow-downward:not(.fi--after):before {
284
+ content: "\ea06";
285
+ }
286
+
287
+ .fi--arrow-downward.fi--after:after {
288
+ content: "\ea06";
289
+ }
290
+
291
+ .fi--arrow-forward:not(.fi--after):before {
292
+ content: "\ea07";
293
+ }
294
+
295
+ .fi--arrow-forward.fi--after:after {
296
+ content: "\ea07";
297
+ }
298
+
299
+ .fi--arrow-upward:not(.fi--after):before {
300
+ content: "\ea08";
301
+ }
302
+
303
+ .fi--arrow-upward.fi--after:after {
304
+ content: "\ea08";
305
+ }
306
+
307
+ .fi--beenhere:not(.fi--after):before {
308
+ content: "\ea09";
309
+ }
310
+
311
+ .fi--beenhere.fi--after:after {
312
+ content: "\ea09";
313
+ }
314
+
315
+ .fi--by-a-boat:not(.fi--after):before {
316
+ content: "\ea0a";
317
+ }
318
+
319
+ .fi--by-a-boat.fi--after:after {
320
+ content: "\ea0a";
321
+ }
322
+
323
+ .fi--by-car:not(.fi--after):before {
324
+ content: "\ea0b";
325
+ }
326
+
327
+ .fi--by-car.fi--after:after {
328
+ content: "\ea0b";
329
+ }
330
+
331
+ .fi--by-plane:not(.fi--after):before {
332
+ content: "\ea0c";
333
+ }
334
+
335
+ .fi--by-plane.fi--after:after {
336
+ content: "\ea0c";
337
+ }
338
+
339
+ .fi--by-train:not(.fi--after):before {
340
+ content: "\ea0d";
341
+ }
342
+
343
+ .fi--by-train.fi--after:after {
344
+ content: "\ea0d";
345
+ }
346
+
347
+ .fi--calendar-today:not(.fi--after):before {
348
+ content: "\ea0e";
349
+ }
350
+
351
+ .fi--calendar-today.fi--after:after {
352
+ content: "\ea0e";
353
+ }
354
+
355
+ .fi--call:not(.fi--after):before {
356
+ content: "\ea0f";
357
+ }
358
+
359
+ .fi--call.fi--after:after {
360
+ content: "\ea0f";
361
+ }
362
+
363
+ .fi--capacity-banquet:not(.fi--after):before {
364
+ content: "\ea10";
365
+ }
366
+
367
+ .fi--capacity-banquet.fi--after:after {
368
+ content: "\ea10";
369
+ }
370
+
371
+ .fi--capacity-carre:not(.fi--after):before {
372
+ content: "\ea11";
373
+ }
374
+
375
+ .fi--capacity-carre.fi--after:after {
376
+ content: "\ea11";
377
+ }
378
+
379
+ .fi--capacity-class:not(.fi--after):before {
380
+ content: "\ea12";
381
+ }
382
+
383
+ .fi--capacity-class.fi--after:after {
384
+ content: "\ea12";
385
+ }
386
+
387
+ .fi--capacity-cocktail:not(.fi--after):before {
388
+ content: "\ea13";
389
+ }
390
+
391
+ .fi--capacity-cocktail.fi--after:after {
392
+ content: "\ea13";
393
+ }
394
+
395
+ .fi--capacity-modular:not(.fi--after):before {
396
+ content: "\ea14";
397
+ }
398
+
399
+ .fi--capacity-modular.fi--after:after {
400
+ content: "\ea14";
401
+ }
402
+
403
+ .fi--capacity-theatre:not(.fi--after):before {
404
+ content: "\ea15";
405
+ }
406
+
407
+ .fi--capacity-theatre.fi--after:after {
408
+ content: "\ea15";
409
+ }
410
+
411
+ .fi--capacity-u:not(.fi--after):before {
412
+ content: "\ea16";
413
+ }
414
+
415
+ .fi--capacity-u.fi--after:after {
416
+ content: "\ea16";
417
+ }
418
+
419
+ .fi--category:not(.fi--after):before {
420
+ content: "\ea17";
421
+ }
422
+
423
+ .fi--category.fi--after:after {
424
+ content: "\ea17";
425
+ }
426
+
427
+ .fi--centered-position:not(.fi--after):before {
428
+ content: "\ea18";
429
+ }
430
+
431
+ .fi--centered-position.fi--after:after {
432
+ content: "\ea18";
433
+ }
434
+
435
+ .fi--check-box:not(.fi--after):before {
436
+ content: "\ea19";
437
+ }
438
+
439
+ .fi--check-box.fi--after:after {
440
+ content: "\ea19";
441
+ }
442
+
443
+ .fi--chevron-bottom:not(.fi--after):before {
444
+ content: "\ea1a";
445
+ }
446
+
447
+ .fi--chevron-bottom.fi--after:after {
448
+ content: "\ea1a";
449
+ }
450
+
451
+ .fi--chevron-left:not(.fi--after):before {
452
+ content: "\ea1b";
453
+ }
454
+
455
+ .fi--chevron-left.fi--after:after {
456
+ content: "\ea1b";
457
+ }
458
+
459
+ .fi--chevron-right:not(.fi--after):before {
460
+ content: "\ea1c";
461
+ }
462
+
463
+ .fi--chevron-right.fi--after:after {
464
+ content: "\ea1c";
465
+ }
466
+
467
+ .fi--chevron-top:not(.fi--after):before {
468
+ content: "\ea1d";
469
+ }
470
+
471
+ .fi--chevron-top.fi--after:after {
472
+ content: "\ea1d";
473
+ }
474
+
475
+ .fi--circle:not(.fi--after):before {
476
+ content: "\ea1e";
477
+ }
478
+
479
+ .fi--circle.fi--after:after {
480
+ content: "\ea1e";
481
+ }
482
+
483
+ .fi--close:not(.fi--after):before {
484
+ content: "\ea1f";
485
+ }
486
+
487
+ .fi--close.fi--after:after {
488
+ content: "\ea1f";
489
+ }
490
+
491
+ .fi--computer:not(.fi--after):before {
492
+ content: "\ea20";
493
+ }
494
+
495
+ .fi--computer.fi--after:after {
496
+ content: "\ea20";
497
+ }
498
+
499
+ .fi--confirmation-number:not(.fi--after):before {
500
+ content: "\ea21";
501
+ }
502
+
503
+ .fi--confirmation-number.fi--after:after {
504
+ content: "\ea21";
505
+ }
506
+
507
+ .fi--credit-score:not(.fi--after):before {
508
+ content: "\ea22";
509
+ }
510
+
511
+ .fi--credit-score.fi--after:after {
512
+ content: "\ea22";
513
+ }
514
+
515
+ .fi--delete-forever:not(.fi--after):before {
516
+ content: "\ea23";
517
+ }
518
+
519
+ .fi--delete-forever.fi--after:after {
520
+ content: "\ea23";
521
+ }
522
+
523
+ .fi--direction-run:not(.fi--after):before {
524
+ content: "\ea24";
525
+ }
526
+
527
+ .fi--direction-run.fi--after:after {
528
+ content: "\ea24";
529
+ }
530
+
531
+ .fi--edit:not(.fi--after):before {
532
+ content: "\ea25";
533
+ }
534
+
535
+ .fi--edit.fi--after:after {
536
+ content: "\ea25";
537
+ }
538
+
539
+ .fi--email:not(.fi--after):before {
540
+ content: "\ea26";
541
+ }
542
+
543
+ .fi--email.fi--after:after {
544
+ content: "\ea26";
545
+ }
546
+
547
+ .fi--error:not(.fi--after):before {
548
+ content: "\ea27";
549
+ }
550
+
551
+ .fi--error.fi--after:after {
552
+ content: "\ea27";
553
+ }
554
+
555
+ .fi--event-available:not(.fi--after):before {
556
+ content: "\ea28";
557
+ }
558
+
559
+ .fi--event-available.fi--after:after {
560
+ content: "\ea28";
561
+ }
562
+
563
+ .fi--facebook:not(.fi--after):before {
564
+ content: "\ea29";
565
+ }
566
+
567
+ .fi--facebook.fi--after:after {
568
+ content: "\ea29";
569
+ }
570
+
571
+ .fi--favorite-filled:not(.fi--after):before {
572
+ content: "\ea2a";
573
+ }
574
+
575
+ .fi--favorite-filled.fi--after:after {
576
+ content: "\ea2a";
577
+ }
578
+
579
+ .fi--favorite:not(.fi--after):before {
580
+ content: "\ea2b";
581
+ }
582
+
583
+ .fi--favorite.fi--after:after {
584
+ content: "\ea2b";
585
+ }
586
+
587
+ .fi--file-download:not(.fi--after):before {
588
+ content: "\ea2c";
589
+ }
590
+
591
+ .fi--file-download.fi--after:after {
592
+ content: "\ea2c";
593
+ }
594
+
595
+ .fi--file-upload:not(.fi--after):before {
596
+ content: "\ea2d";
597
+ }
598
+
599
+ .fi--file-upload.fi--after:after {
600
+ content: "\ea2d";
601
+ }
602
+
603
+ .fi--filter:not(.fi--after):before {
604
+ content: "\ea2e";
605
+ }
606
+
607
+ .fi--filter.fi--after:after {
608
+ content: "\ea2e";
609
+ }
610
+
611
+ .fi--forward-to-inbox:not(.fi--after):before {
612
+ content: "\ea2f";
613
+ }
614
+
615
+ .fi--forward-to-inbox.fi--after:after {
616
+ content: "\ea2f";
617
+ }
618
+
619
+ .fi--fullscreen:not(.fi--after):before {
620
+ content: "\ea30";
621
+ }
622
+
623
+ .fi--fullscreen.fi--after:after {
624
+ content: "\ea30";
625
+ }
626
+
627
+ .fi--group:not(.fi--after):before {
628
+ content: "\ea31";
629
+ }
630
+
631
+ .fi--group.fi--after:after {
632
+ content: "\ea31";
633
+ }
634
+
635
+ .fi--hebergement:not(.fi--after):before {
636
+ content: "\ea32";
637
+ }
638
+
639
+ .fi--hebergement.fi--after:after {
640
+ content: "\ea32";
641
+ }
642
+
643
+ .fi--hebergements:not(.fi--after):before {
644
+ content: "\ea33";
645
+ }
646
+
647
+ .fi--hebergements.fi--after:after {
648
+ content: "\ea33";
649
+ }
650
+
651
+ .fi--hotel:not(.fi--after):before {
652
+ content: "\ea34";
653
+ }
654
+
655
+ .fi--hotel.fi--after:after {
656
+ content: "\ea34";
657
+ }
658
+
659
+ .fi--infos-pratiques:not(.fi--after):before {
660
+ content: "\ea35";
661
+ }
662
+
663
+ .fi--infos-pratiques.fi--after:after {
664
+ content: "\ea35";
665
+ }
666
+
667
+ .fi--instagram:not(.fi--after):before {
668
+ content: "\ea36";
669
+ }
670
+
671
+ .fi--instagram.fi--after:after {
672
+ content: "\ea36";
673
+ }
674
+
675
+ .fi--layers:not(.fi--after):before {
676
+ content: "\ea37";
677
+ }
678
+
679
+ .fi--layers.fi--after:after {
680
+ content: "\ea37";
681
+ }
682
+
683
+ .fi--local-activity:not(.fi--after):before {
684
+ content: "\ea38";
685
+ }
686
+
687
+ .fi--local-activity.fi--after:after {
688
+ content: "\ea38";
689
+ }
690
+
691
+ .fi--location-on-line:not(.fi--after):before {
692
+ content: "\ea39";
693
+ }
694
+
695
+ .fi--location-on-line.fi--after:after {
696
+ content: "\ea39";
697
+ }
698
+
699
+ .fi--location-on:not(.fi--after):before {
700
+ content: "\ea3a";
701
+ }
702
+
703
+ .fi--location-on.fi--after:after {
704
+ content: "\ea3a";
705
+ }
706
+
707
+ .fi--map:not(.fi--after):before {
708
+ content: "\ea3b";
709
+ }
710
+
711
+ .fi--map.fi--after:after {
712
+ content: "\ea3b";
713
+ }
714
+
715
+ .fi--menu-book:not(.fi--after):before {
716
+ content: "\ea3c";
717
+ }
718
+
719
+ .fi--menu-book.fi--after:after {
720
+ content: "\ea3c";
721
+ }
722
+
723
+ .fi--mic:not(.fi--after):before {
724
+ content: "\ea3d";
725
+ }
726
+
727
+ .fi--mic.fi--after:after {
728
+ content: "\ea3d";
729
+ }
730
+
731
+ .fi--photo-camera:not(.fi--after):before {
732
+ content: "\ea3e";
733
+ }
734
+
735
+ .fi--photo-camera.fi--after:after {
736
+ content: "\ea3e";
737
+ }
738
+
739
+ .fi--picture-as-pdf:not(.fi--after):before {
740
+ content: "\ea3f";
741
+ }
742
+
743
+ .fi--picture-as-pdf.fi--after:after {
744
+ content: "\ea3f";
745
+ }
746
+
747
+ .fi--play-circle:not(.fi--after):before {
748
+ content: "\ea40";
749
+ }
750
+
751
+ .fi--play-circle.fi--after:after {
752
+ content: "\ea40";
753
+ }
754
+
755
+ .fi--print:not(.fi--after):before {
756
+ content: "\ea41";
757
+ }
758
+
759
+ .fi--print.fi--after:after {
760
+ content: "\ea41";
761
+ }
762
+
763
+ .fi--question-answer:not(.fi--after):before {
764
+ content: "\ea42";
765
+ }
766
+
767
+ .fi--question-answer.fi--after:after {
768
+ content: "\ea42";
769
+ }
770
+
771
+ .fi--quote:not(.fi--after):before {
772
+ content: "\ea43";
773
+ }
774
+
775
+ .fi--quote.fi--after:after {
776
+ content: "\ea43";
777
+ }
778
+
779
+ .fi--remove:not(.fi--after):before {
780
+ content: "\ea44";
781
+ }
782
+
783
+ .fi--remove.fi--after:after {
784
+ content: "\ea44";
785
+ }
786
+
787
+ .fi--replay:not(.fi--after):before {
788
+ content: "\ea45";
789
+ }
790
+
791
+ .fi--replay.fi--after:after {
792
+ content: "\ea45";
793
+ }
794
+
795
+ .fi--reply:not(.fi--after):before {
796
+ content: "\ea46";
797
+ }
798
+
799
+ .fi--reply.fi--after:after {
800
+ content: "\ea46";
801
+ }
802
+
803
+ .fi--reset:not(.fi--after):before {
804
+ content: "\ea47";
805
+ }
806
+
807
+ .fi--reset.fi--after:after {
808
+ content: "\ea47";
809
+ }
810
+
811
+ .fi--restaurant:not(.fi--after):before {
812
+ content: "\ea48";
813
+ }
814
+
815
+ .fi--restaurant.fi--after:after {
816
+ content: "\ea48";
817
+ }
818
+
819
+ .fi--restaurants:not(.fi--after):before {
820
+ content: "\ea49";
821
+ }
822
+
823
+ .fi--restaurants.fi--after:after {
824
+ content: "\ea49";
825
+ }
826
+
827
+ .fi--schedule:not(.fi--after):before {
828
+ content: "\ea4a";
829
+ }
830
+
831
+ .fi--schedule.fi--after:after {
832
+ content: "\ea4a";
833
+ }
834
+
835
+ .fi--search:not(.fi--after):before {
836
+ content: "\ea4b";
837
+ }
838
+
839
+ .fi--search.fi--after:after {
840
+ content: "\ea4b";
841
+ }
842
+
843
+ .fi--sell:not(.fi--after):before {
844
+ content: "\ea4c";
845
+ }
846
+
847
+ .fi--sell.fi--after:after {
848
+ content: "\ea4c";
849
+ }
850
+
851
+ .fi--share:not(.fi--after):before {
852
+ content: "\ea4d";
853
+ }
854
+
855
+ .fi--share.fi--after:after {
856
+ content: "\ea4d";
857
+ }
858
+
859
+ .fi--shopping-cart:not(.fi--after):before {
860
+ content: "\ea4e";
861
+ }
862
+
863
+ .fi--shopping-cart.fi--after:after {
864
+ content: "\ea4e";
865
+ }
866
+
867
+ .fi--sites-visites:not(.fi--after):before {
868
+ content: "\ea4f";
869
+ }
870
+
871
+ .fi--sites-visites.fi--after:after {
872
+ content: "\ea4f";
873
+ }
874
+
875
+ .fi--support:not(.fi--after):before {
876
+ content: "\ea50";
877
+ }
878
+
879
+ .fi--support.fi--after:after {
880
+ content: "\ea50";
881
+ }
882
+
883
+ .fi--thermostat:not(.fi--after):before {
884
+ content: "\ea51";
885
+ }
886
+
887
+ .fi--thermostat.fi--after:after {
888
+ content: "\ea51";
889
+ }
890
+
891
+ .fi--thumb-down:not(.fi--after):before {
892
+ content: "\ea52";
893
+ }
894
+
895
+ .fi--thumb-down.fi--after:after {
896
+ content: "\ea52";
897
+ }
898
+
899
+ .fi--thumb-up:not(.fi--after):before {
900
+ content: "\ea53";
901
+ }
902
+
903
+ .fi--thumb-up.fi--after:after {
904
+ content: "\ea53";
905
+ }
906
+
907
+ .fi--toggle-off:not(.fi--after):before {
908
+ content: "\ea54";
909
+ }
910
+
911
+ .fi--toggle-off.fi--after:after {
912
+ content: "\ea54";
913
+ }
914
+
915
+ .fi--toggle-on:not(.fi--after):before {
916
+ content: "\ea55";
917
+ }
918
+
919
+ .fi--toggle-on.fi--after:after {
920
+ content: "\ea55";
921
+ }
922
+
923
+ .fi--twitter:not(.fi--after):before {
924
+ content: "\ea56";
925
+ }
926
+
927
+ .fi--twitter.fi--after:after {
928
+ content: "\ea56";
929
+ }
930
+
931
+ .fi--videocam:not(.fi--after):before {
932
+ content: "\ea57";
933
+ }
934
+
935
+ .fi--videocam.fi--after:after {
936
+ content: "\ea57";
937
+ }
938
+
939
+ .fi--visibility:not(.fi--after):before {
940
+ content: "\ea58";
941
+ }
942
+
943
+ .fi--visibility.fi--after:after {
944
+ content: "\ea58";
945
+ }
946
+
947
+ .fi--volume-off:not(.fi--after):before {
948
+ content: "\ea59";
949
+ }
950
+
951
+ .fi--volume-off.fi--after:after {
952
+ content: "\ea59";
953
+ }
954
+
955
+ .fi--volume-up:not(.fi--after):before {
956
+ content: "\ea5a";
957
+ }
958
+
959
+ .fi--volume-up.fi--after:after {
960
+ content: "\ea5a";
961
+ }
962
+
963
+ .fi--whatsapp:not(.fi--after):before {
964
+ content: "\ea5b";
965
+ }
966
+
967
+ .fi--whatsapp.fi--after:after {
968
+ content: "\ea5b";
969
+ }
970
+
971
+ .fi--work:not(.fi--after):before {
972
+ content: "\ea5c";
973
+ }
974
+
975
+ .fi--work.fi--after:after {
976
+ content: "\ea5c";
977
+ }
978
+
979
+ .fi--youtube:not(.fi--after):before {
980
+ content: "\ea5d";
981
+ }
982
+
983
+ .fi--youtube.fi--after:after {
984
+ content: "\ea5d";
985
+ }