@saooti/octopus-sdk 32.0.3 → 32.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.
- package/README.md +4 -1
- package/package.json +23 -23
- package/public/css/fonts/icomoon.eot +0 -0
- package/public/css/fonts/icomoon.svg +129 -0
- package/public/css/fonts/icomoon.ttf +0 -0
- package/public/css/fonts/icomoon.woff +0 -0
- package/public/css/fonts/style.css +185 -1275
- package/src/assets/bootstrap-diff.scss +2 -1
- package/src/assets/form.scss +3 -1
- package/src/components/display/categories/CategoryChooser.vue +1 -1
- package/src/components/display/comments/CommentItem.vue +2 -2
- package/src/components/display/comments/CommentList.vue +0 -1
- package/src/components/display/comments/CommentSection.vue +1 -1
- package/src/components/display/edit/EditCommentBox.vue +3 -3
- package/src/components/display/emission/EmissionChooser.vue +1 -2
- package/src/components/display/emission/EmissionPlayerItem.vue +2 -2
- package/src/components/display/filter/AdvancedSearch.vue +1 -1
- package/src/components/display/filter/MonetizableFilter.vue +1 -1
- package/src/components/display/filter/RubriqueChoice.vue +1 -1
- package/src/components/display/organisation/OrganisationChooser.vue +1 -1
- package/src/components/display/podcasts/PodcastImage.vue +11 -6
- package/src/components/display/podcasts/PodcastItemInfo.vue +2 -2
- package/src/components/display/rubriques/RubriqueChooser.vue +1 -1
- package/src/components/display/sharing/ShareButtonsIntern.vue +5 -5
- package/src/components/display/sharing/ShareDistribution.vue +6 -2
- package/src/components/form/ClassicSearch.vue +4 -4
- package/src/components/misc/HomeDropdown.vue +1 -1
- package/src/components/misc/TopBar.vue +4 -4
- package/src/components/misc/modal/MessageModal.vue +1 -1
- package/src/components/misc/modal/NewsletterModal.vue +2 -2
- package/src/components/misc/modal/ShareModalPlayer.vue +4 -4
- package/src/components/misc/player/PlayerCompact.vue +4 -4
- package/src/components/misc/player/PlayerLarge.vue +4 -4
- package/src/components/misc/player/PlayerTimeline.vue +1 -1
- package/src/components/pages/Playlist.vue +4 -1
- package/public/css/fonts/saooti-ui.eot +0 -0
- package/public/css/fonts/saooti-ui.svg +0 -843
- package/public/css/fonts/saooti-ui.ttf +0 -0
- package/public/css/fonts/saooti-ui.woff +0 -0
- package/public/css/fonts/stitcher-logo.svg +0 -83
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
@font-face {
|
|
2
|
-
font-family: '
|
|
3
|
-
src: url('/css/fonts/
|
|
4
|
-
src: url('/css/fonts/
|
|
5
|
-
url('/css/fonts/
|
|
6
|
-
url('/css/fonts/
|
|
7
|
-
url('/css/fonts/
|
|
2
|
+
font-family: 'icomoon';
|
|
3
|
+
src: url('/css/fonts/icomoon.eot?8edpg2');
|
|
4
|
+
src: url('/css/fonts/icomoon.eot?8edpg2#iefix') format('embedded-opentype'),
|
|
5
|
+
url('/css/fonts/icomoon.ttf?8edpg2') format('truetype'),
|
|
6
|
+
url('/css/fonts/icomoon.woff?8edpg2') format('woff'),
|
|
7
|
+
url('/css/fonts/icomoon.svg?8edpg2#icomoon') format('svg');
|
|
8
8
|
font-weight: normal;
|
|
9
9
|
font-style: normal;
|
|
10
10
|
font-display: block;
|
|
@@ -12,1498 +12,408 @@
|
|
|
12
12
|
|
|
13
13
|
[class^="saooti-"], [class*=" saooti-"] {
|
|
14
14
|
/* use !important to prevent issues with browser extensions that change fonts */
|
|
15
|
-
font-family: '
|
|
15
|
+
font-family: 'icomoon' !important;
|
|
16
16
|
speak: never;
|
|
17
17
|
font-style: normal;
|
|
18
18
|
font-weight: normal;
|
|
19
19
|
font-variant: normal;
|
|
20
20
|
text-transform: none;
|
|
21
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
22
|
|
|
33
23
|
/* Better Font Rendering =========== */
|
|
34
24
|
-webkit-font-smoothing: antialiased;
|
|
35
25
|
-moz-osx-font-smoothing: grayscale;
|
|
36
26
|
}
|
|
37
27
|
|
|
38
|
-
.saooti-language:before {
|
|
39
|
-
content: "\eadb";
|
|
40
|
-
}
|
|
41
|
-
.saooti-copy-octopus:before {
|
|
42
|
-
content: "\eae4";
|
|
43
|
-
}
|
|
44
|
-
.saooti-pin-octopus:before {
|
|
45
|
-
content: "\eae5";
|
|
46
|
-
}
|
|
47
|
-
.saooti-tools:before {
|
|
48
|
-
content: "\eae3";
|
|
49
|
-
}
|
|
50
|
-
.saooti-qrcode:before {
|
|
51
|
-
content: "\eae2";
|
|
52
|
-
}
|
|
53
|
-
.saooti-newsletter:before {
|
|
54
|
-
content: "\eadf";
|
|
55
|
-
}
|
|
56
|
-
.saooti-exit2:before {
|
|
57
|
-
content: "\eae0";
|
|
58
|
-
}
|
|
59
|
-
.saooti-more:before {
|
|
60
|
-
content: "\eae1";
|
|
61
|
-
}
|
|
62
|
-
.saooti-Whatsapp .path1:before {
|
|
63
|
-
content: "\eadc";
|
|
64
|
-
color: rgb(44, 183, 66);
|
|
65
|
-
}
|
|
66
|
-
.saooti-Whatsapp .path2:before {
|
|
67
|
-
content: "\eadd";
|
|
68
|
-
margin-left: -1em;
|
|
69
|
-
color: rgb(255, 255, 255);
|
|
70
|
-
}
|
|
71
|
-
.saooti-Whatsapp .path3:before {
|
|
72
|
-
content: "\eade";
|
|
73
|
-
margin-left: -1em;
|
|
74
|
-
color: rgb(44, 183, 66);
|
|
75
|
-
}
|
|
76
|
-
.saooti-amazon .path1:before {
|
|
77
|
-
content: "\ead8";
|
|
78
|
-
color: rgb(255, 153, 0);
|
|
79
|
-
}
|
|
80
|
-
.saooti-amazon .path2:before {
|
|
81
|
-
content: "\ead9";
|
|
82
|
-
margin-left: -1em;
|
|
83
|
-
color: rgb(255, 153, 0);
|
|
84
|
-
}
|
|
85
|
-
.saooti-amazon .path3:before {
|
|
86
|
-
content: "\eada";
|
|
87
|
-
margin-left: -1em;
|
|
88
|
-
color: rgb(0, 0, 0);
|
|
89
|
-
}
|
|
90
|
-
.saooti-podcast-republic:before {
|
|
91
|
-
content: "\ea91";
|
|
92
|
-
color: rgb(92, 133, 221);
|
|
93
|
-
}
|
|
94
|
-
.saooti-overcast:before {
|
|
95
|
-
content: "\eab8";
|
|
96
|
-
color: #fc7e0f;
|
|
97
|
-
}
|
|
98
|
-
.saooti-Google-Home .path1:before {
|
|
99
|
-
content: "\eab9";
|
|
100
|
-
color: rgb(236, 80, 67);
|
|
101
|
-
}
|
|
102
|
-
.saooti-Google-Home .path2:before {
|
|
103
|
-
content: "\eaba";
|
|
104
|
-
margin-left: -1em;
|
|
105
|
-
color: rgb(69, 134, 247);
|
|
106
|
-
}
|
|
107
|
-
.saooti-Google-Home .path3:before {
|
|
108
|
-
content: "\eabb";
|
|
109
|
-
margin-left: -1em;
|
|
110
|
-
color: rgb(253, 192, 13);
|
|
111
|
-
}
|
|
112
|
-
.saooti-Google-Home .path4:before {
|
|
113
|
-
content: "\eabc";
|
|
114
|
-
margin-left: -1em;
|
|
115
|
-
color: rgb(59, 171, 89);
|
|
116
|
-
}
|
|
117
|
-
.saooti-google-podcasts .path1:before {
|
|
118
|
-
content: "\eabd";
|
|
119
|
-
color: rgb(0, 102, 217);
|
|
120
|
-
}
|
|
121
|
-
.saooti-google-podcasts .path2:before {
|
|
122
|
-
content: "\eabe";
|
|
123
|
-
margin-left: -1em;
|
|
124
|
-
color: rgb(66, 133, 244);
|
|
125
|
-
}
|
|
126
|
-
.saooti-google-podcasts .path3:before {
|
|
127
|
-
content: "\eabf";
|
|
128
|
-
margin-left: -1em;
|
|
129
|
-
color: rgb(234, 67, 53);
|
|
130
|
-
}
|
|
131
|
-
.saooti-google-podcasts .path4:before {
|
|
132
|
-
content: "\eac0";
|
|
133
|
-
margin-left: -1em;
|
|
134
|
-
color: rgb(52, 168, 83);
|
|
135
|
-
}
|
|
136
|
-
.saooti-google-podcasts .path5:before {
|
|
137
|
-
content: "\eac1";
|
|
138
|
-
margin-left: -1em;
|
|
139
|
-
color: rgb(250, 185, 8);
|
|
140
|
-
}
|
|
141
|
-
.saooti-google-podcasts .path6:before {
|
|
142
|
-
content: "\eac2";
|
|
143
|
-
margin-left: -1em;
|
|
144
|
-
color: rgb(52, 168, 83);
|
|
145
|
-
}
|
|
146
|
-
.saooti-google-podcasts .path7:before {
|
|
147
|
-
content: "\eac3";
|
|
148
|
-
margin-left: -1em;
|
|
149
|
-
color: rgb(250, 185, 8);
|
|
150
|
-
}
|
|
151
|
-
.saooti-filter-distrib:before {
|
|
152
|
-
content: "\ea9d";
|
|
153
|
-
}
|
|
154
|
-
.saooti-podcast-addict:before {
|
|
155
|
-
content: "\ea9e";
|
|
156
|
-
color: rgb(244, 132, 45);
|
|
157
|
-
}
|
|
158
|
-
.saooti-podcast-addict:after {
|
|
159
|
-
content: "\ea9f";
|
|
160
|
-
margin-left: -0.9970703125em;
|
|
161
|
-
color: rgb(255, 255, 255);
|
|
162
|
-
}
|
|
163
|
-
.saooti-playerfm:before {
|
|
164
|
-
content: "\eaa0";
|
|
165
|
-
color: #bb202a;
|
|
166
|
-
}
|
|
167
|
-
.saooti-pocket-casts:before {
|
|
168
|
-
content: "\eaa1";
|
|
169
|
-
color: rgb(244, 62, 55);
|
|
170
|
-
}
|
|
171
|
-
.saooti-pocket-casts:after {
|
|
172
|
-
content: "\eaa2";
|
|
173
|
-
margin-left: -1em;
|
|
174
|
-
color: rgb(255, 255, 255);
|
|
175
|
-
}
|
|
176
|
-
.saooti-stitcher-logo .path1:before {
|
|
177
|
-
content: "\eaa3";
|
|
178
|
-
margin-left: -1em;
|
|
179
|
-
color: rgb(0, 0, 0);
|
|
180
|
-
}
|
|
181
|
-
.saooti-stitcher-logo .path2:before {
|
|
182
|
-
content: "\eaa4";
|
|
183
|
-
margin-left: -1em;
|
|
184
|
-
color: rgb(0, 0, 0);
|
|
185
|
-
}
|
|
186
|
-
.saooti-stitcher-logo .path3:before {
|
|
187
|
-
content: "\eaa5";
|
|
188
|
-
margin-left: -1em;
|
|
189
|
-
color: rgb(0, 0, 0);
|
|
190
|
-
}
|
|
191
|
-
.saooti-stitcher-logo .path4:before {
|
|
192
|
-
content: "\eaa6";
|
|
193
|
-
margin-left: -1em;
|
|
194
|
-
color: rgb(0, 0, 0);
|
|
195
|
-
}
|
|
196
|
-
.saooti-stitcher-logo .path5:before {
|
|
197
|
-
content: "\eaa7";
|
|
198
|
-
margin-left: -1em;
|
|
199
|
-
color: rgb(0, 0, 0);
|
|
200
|
-
}
|
|
201
|
-
.saooti-stitcher-logo .path6:before {
|
|
202
|
-
content: "\eaa8";
|
|
203
|
-
margin-left: -1em;
|
|
204
|
-
color: rgb(0, 0, 0);
|
|
205
|
-
}
|
|
206
|
-
.saooti-stitcher-logo .path7:before {
|
|
207
|
-
content: "\eaa9";
|
|
208
|
-
margin-left: -1em;
|
|
209
|
-
color: rgb(0, 0, 0);
|
|
210
|
-
}
|
|
211
|
-
.saooti-stitcher-logo .path8:before {
|
|
212
|
-
content: "\eaaa";
|
|
213
|
-
margin-left: -1em;
|
|
214
|
-
color: rgb(0, 0, 0);
|
|
215
|
-
}
|
|
216
|
-
.saooti-stitcher-logo .path9:before {
|
|
217
|
-
content: "\eaab";
|
|
218
|
-
margin-left: -1em;
|
|
219
|
-
color: rgb(53, 144, 197);
|
|
220
|
-
}
|
|
221
|
-
.saooti-stitcher-logo .path10:before {
|
|
222
|
-
content: "\eaac";
|
|
223
|
-
margin-left: -1em;
|
|
224
|
-
color: rgb(53, 144, 197);
|
|
225
|
-
}
|
|
226
|
-
.saooti-stitcher-logo .path11:before {
|
|
227
|
-
content: "\eaad";
|
|
228
|
-
margin-left: -1em;
|
|
229
|
-
color: rgb(197, 56, 39);
|
|
230
|
-
}
|
|
231
|
-
.saooti-stitcher-logo .path12:before {
|
|
232
|
-
content: "\eaae";
|
|
233
|
-
margin-left: -1em;
|
|
234
|
-
color: rgb(197, 56, 39);
|
|
235
|
-
}
|
|
236
|
-
.saooti-stitcher-logo .path13:before {
|
|
237
|
-
content: "\eaaf";
|
|
238
|
-
margin-left: -1em;
|
|
239
|
-
color: rgb(236, 139, 36);
|
|
240
|
-
}
|
|
241
|
-
.saooti-stitcher-logo .path14:before {
|
|
242
|
-
content: "\eab0";
|
|
243
|
-
margin-left: -1em;
|
|
244
|
-
color: rgb(236, 139, 36);
|
|
245
|
-
}
|
|
246
|
-
.saooti-stitcher-logo .path15:before {
|
|
247
|
-
content: "\eab1";
|
|
248
|
-
margin-left: -1em;
|
|
249
|
-
color: rgb(251, 198, 24);
|
|
250
|
-
}
|
|
251
|
-
.saooti-stitcher-logo .path16:before {
|
|
252
|
-
content: "\eab2";
|
|
253
|
-
margin-left: -1em;
|
|
254
|
-
color: rgb(251, 198, 24);
|
|
255
|
-
}
|
|
256
|
-
.saooti-stitcher-logo .path17:before {
|
|
257
|
-
content: "\eab3";
|
|
258
|
-
margin-left: -1em;
|
|
259
|
-
color: rgb(97, 34, 104);
|
|
260
|
-
}
|
|
261
|
-
.saooti-stitcher-logo .path18:before {
|
|
262
|
-
content: "\eab4";
|
|
263
|
-
margin-left: -1em;
|
|
264
|
-
color: rgb(97, 34, 104);
|
|
265
|
-
}
|
|
266
|
-
.saooti-user-octopus:before {
|
|
267
|
-
content: "\ea9b";
|
|
268
|
-
}
|
|
269
|
-
.saooti-audionow:before {
|
|
270
|
-
content: "\eacb";
|
|
271
|
-
color: rgb(217, 16, 62);
|
|
272
|
-
}
|
|
273
|
-
.saooti-listening:before {
|
|
274
|
-
content: "\ea9a";
|
|
275
|
-
}
|
|
276
|
-
.saooti-google-play-badge:before {
|
|
277
|
-
content: "\ea99";
|
|
278
|
-
}
|
|
279
|
-
.saooti-appstore-badge:before {
|
|
280
|
-
content: "\ea98";
|
|
281
|
-
}
|
|
282
|
-
.saooti-scroll-down:before {
|
|
283
|
-
content: "\ea97";
|
|
284
|
-
}
|
|
285
|
-
.saooti-cartouche:before {
|
|
286
|
-
content: "\e920";
|
|
287
|
-
}
|
|
288
|
-
.saooti-mic-off:before {
|
|
289
|
-
content: "\ea96";
|
|
290
|
-
}
|
|
291
|
-
.saooti-apple:before {
|
|
292
|
-
content: "\ea8e";
|
|
293
|
-
color: #999;
|
|
294
|
-
}
|
|
295
|
-
.saooti-deezer:before {
|
|
296
|
-
content: "\ea8f";
|
|
297
|
-
color: #00c7f2;
|
|
298
|
-
}
|
|
299
|
-
.saooti-podcast-octopus:before {
|
|
300
|
-
content: "\ea95";
|
|
301
|
-
color: #93c;
|
|
302
|
-
}
|
|
303
|
-
.saooti-spotify:before {
|
|
304
|
-
content: "\ea90";
|
|
305
|
-
color: #1ed760;
|
|
306
|
-
}
|
|
307
|
-
.saooti-tootak:before {
|
|
308
|
-
content: "\ea92";
|
|
309
|
-
color: #ff4d53;
|
|
310
|
-
}
|
|
311
|
-
.saooti-radioline:before {
|
|
312
|
-
content: "\ea93";
|
|
313
|
-
color: rgb(22, 120, 189);
|
|
314
|
-
}
|
|
315
|
-
.saooti-tunin:before {
|
|
316
|
-
content: "\ea94";
|
|
317
|
-
color: #36b4a7;
|
|
318
|
-
}
|
|
319
|
-
.saooti-instagram2:before {
|
|
320
|
-
content: "\ea8c";
|
|
321
|
-
}
|
|
322
|
-
.saooti-linkedin1:before {
|
|
323
|
-
content: "\ea8d";
|
|
324
|
-
}
|
|
325
|
-
.saooti-youtube:before {
|
|
326
|
-
content: "\ea8b";
|
|
327
|
-
}
|
|
328
|
-
.saooti-iTunes2:before {
|
|
329
|
-
content: "\ea8a";
|
|
330
|
-
}
|
|
331
|
-
.saooti-Interactivity-bounty:before {
|
|
332
|
-
content: "\ea88";
|
|
333
|
-
}
|
|
334
|
-
.saooti-listen-bounty:before {
|
|
335
|
-
content: "\ea89";
|
|
336
|
-
}
|
|
337
|
-
.saooti-save-bounty:before {
|
|
338
|
-
content: "\ea86";
|
|
339
|
-
}
|
|
340
|
-
.saooti-edit-bounty:before {
|
|
341
|
-
content: "\ea87";
|
|
342
|
-
}
|
|
343
|
-
.saooti-heartbreak-bounty:before {
|
|
344
|
-
content: "\ea83";
|
|
345
|
-
}
|
|
346
|
-
.saooti-downwave-bounty:before {
|
|
347
|
-
content: "\ea7e";
|
|
348
|
-
}
|
|
349
|
-
.saooti-downvideo-bounty:before {
|
|
350
|
-
content: "\ea7f";
|
|
351
|
-
}
|
|
352
|
-
.saooti-noun_clock_2284436:before {
|
|
353
|
-
content: "\ea80";
|
|
354
|
-
}
|
|
355
|
-
.saooti-warning-bounty:before {
|
|
356
|
-
content: "\ea69";
|
|
357
|
-
}
|
|
358
|
-
.saooti-play2-bounty:before {
|
|
359
|
-
content: "\ea6a";
|
|
360
|
-
}
|
|
361
|
-
.saooti-volume-bounty:before {
|
|
362
|
-
content: "\ea6b";
|
|
363
|
-
}
|
|
364
|
-
.saooti-novolume-bounty:before {
|
|
365
|
-
content: "\ea6c";
|
|
366
|
-
}
|
|
367
|
-
.saooti-next2-bounty:before {
|
|
368
|
-
content: "\ea6d";
|
|
369
|
-
}
|
|
370
|
-
.saooti-next-bounty:before {
|
|
371
|
-
content: "\ea6e";
|
|
372
|
-
}
|
|
373
|
-
.saooti-up-bounty:before {
|
|
374
|
-
content: "\ea84";
|
|
375
|
-
}
|
|
376
|
-
.saooti-down-bounty:before {
|
|
377
|
-
content: "\ea85";
|
|
378
|
-
}
|
|
379
|
-
.saooti-prec-bounty:before {
|
|
380
|
-
content: "\ea81";
|
|
381
|
-
}
|
|
382
|
-
.saooti-pause-bounty:before {
|
|
383
|
-
content: "\ea6f";
|
|
384
|
-
}
|
|
385
|
-
.saooti-stop-bounty:before {
|
|
386
|
-
content: "\ea70";
|
|
387
|
-
}
|
|
388
|
-
.saooti-share-bounty:before {
|
|
389
|
-
content: "\ea71";
|
|
390
|
-
}
|
|
391
|
-
.saooti-rss-bounty:before {
|
|
392
|
-
content: "\ea72";
|
|
393
|
-
}
|
|
394
|
-
.saooti-remove-bounty:before {
|
|
395
|
-
content: "\ea73";
|
|
396
|
-
}
|
|
397
|
-
.saooti-twitter-bounty:before {
|
|
398
|
-
content: "\ea74";
|
|
399
|
-
}
|
|
400
|
-
.saooti-facebook-bounty:before {
|
|
401
|
-
content: "\ea75";
|
|
402
|
-
}
|
|
403
|
-
.saooti-search-bounty:before {
|
|
404
|
-
content: "\ea76";
|
|
405
|
-
}
|
|
406
|
-
.saooti-send-bounty:before {
|
|
407
|
-
content: "\ea77";
|
|
408
|
-
}
|
|
409
|
-
.saooti-play-bounty:before {
|
|
410
|
-
content: "\ea78";
|
|
411
|
-
}
|
|
412
|
-
.saooti-star-bounty:before {
|
|
413
|
-
content: "\ea79";
|
|
414
|
-
}
|
|
415
|
-
.saooti-export-bounty:before {
|
|
416
|
-
content: "\ea7a";
|
|
417
|
-
}
|
|
418
|
-
.saooti-heart-bounty:before {
|
|
419
|
-
content: "\ea7b";
|
|
420
|
-
}
|
|
421
|
-
.saooti-mail-bounty:before {
|
|
422
|
-
content: "\ea7c";
|
|
423
|
-
}
|
|
424
|
-
.saooti-download-bounty:before {
|
|
425
|
-
content: "\ea7d";
|
|
426
|
-
}
|
|
427
|
-
.saooti-headphones:before {
|
|
428
|
-
content: "\ea5f";
|
|
429
|
-
}
|
|
430
|
-
.saooti-feed:before {
|
|
431
|
-
content: "\ea60";
|
|
432
|
-
}
|
|
433
|
-
.saooti-mic2:before {
|
|
434
|
-
content: "\ea61";
|
|
435
|
-
}
|
|
436
|
-
.saooti-location:before {
|
|
437
|
-
content: "\ea62";
|
|
438
|
-
}
|
|
439
|
-
.saooti-location2:before {
|
|
440
|
-
content: "\ea63";
|
|
441
|
-
}
|
|
442
|
-
.saooti-chapiter-stud:before {
|
|
443
|
-
content: "\ea82";
|
|
444
|
-
}
|
|
445
|
-
.saooti-switch-rec-stud:before {
|
|
446
|
-
content: "\ea24";
|
|
447
|
-
}
|
|
448
|
-
.saooti-remove-notifs-stud:before {
|
|
449
|
-
content: "\ea21";
|
|
450
|
-
}
|
|
451
|
-
.saooti-download-stud:before {
|
|
452
|
-
content: "\ea1f";
|
|
453
|
-
}
|
|
454
|
-
.saooti-no-transfert-stud:before {
|
|
455
|
-
content: "\ea19";
|
|
456
|
-
}
|
|
457
|
-
.saooti-transfert-stud:before {
|
|
458
|
-
content: "\ea18";
|
|
459
|
-
}
|
|
460
|
-
.saooti-add-user-stud:before {
|
|
461
|
-
content: "\ea17";
|
|
462
|
-
}
|
|
463
|
-
.saooti-remove-user-stud:before {
|
|
464
|
-
content: "\ea16";
|
|
465
|
-
}
|
|
466
|
-
.saooti-talkover-on-stud:before {
|
|
467
|
-
content: "\ea14";
|
|
468
|
-
}
|
|
469
|
-
.saooti-talkover-off-stud:before {
|
|
470
|
-
content: "\ea15";
|
|
471
|
-
}
|
|
472
|
-
.saooti-disconnected-stud:before {
|
|
473
|
-
content: "\ea13";
|
|
474
|
-
}
|
|
475
|
-
.saooti-disconnect-board-stud:before {
|
|
476
|
-
content: "\ea12";
|
|
477
|
-
}
|
|
478
|
-
.saooti-connect-board-stud:before {
|
|
479
|
-
content: "\ea11";
|
|
480
|
-
}
|
|
481
|
-
.saooti-close-public-stud:before {
|
|
482
|
-
content: "\ea10";
|
|
483
|
-
}
|
|
484
|
-
.saooti-open-public-stud:before {
|
|
485
|
-
content: "\ea0f";
|
|
486
|
-
}
|
|
487
|
-
.saooti-refresh-stud:before {
|
|
488
|
-
content: "\ea0e";
|
|
489
|
-
}
|
|
490
|
-
.saooti-connect-user-stud:before {
|
|
491
|
-
content: "\ea0d";
|
|
492
|
-
}
|
|
493
|
-
.saooti-disconnect-user-stud:before {
|
|
494
|
-
content: "\e9f6";
|
|
495
|
-
}
|
|
496
|
-
.saooti-info-stud:before {
|
|
497
|
-
content: "\e9f5";
|
|
498
|
-
}
|
|
499
|
-
.saooti-shareddoc-stud:before {
|
|
500
|
-
content: "\e9f3";
|
|
501
|
-
}
|
|
502
|
-
.saooti-stop-stud:before {
|
|
503
|
-
content: "\e9e2";
|
|
504
|
-
}
|
|
505
|
-
.saooti-burger-stud:before {
|
|
506
|
-
content: "\e9ec";
|
|
507
|
-
}
|
|
508
|
-
.saooti-playlist-stud:before {
|
|
509
|
-
content: "\e9f8";
|
|
510
|
-
}
|
|
511
|
-
.saooti-cancel-stud:before {
|
|
512
|
-
content: "\e9e4";
|
|
513
|
-
}
|
|
514
|
-
.saooti-prec-stud:before {
|
|
515
|
-
content: "\e9e5";
|
|
516
|
-
}
|
|
517
|
-
.saooti-chat-stud:before {
|
|
518
|
-
content: "\e9e6";
|
|
519
|
-
}
|
|
520
|
-
.saooti-close-stud:before {
|
|
521
|
-
content: "\e9e7";
|
|
522
|
-
}
|
|
523
|
-
.saooti-comment-stud:before {
|
|
524
|
-
content: "\e9e8";
|
|
525
|
-
}
|
|
526
|
-
.saooti-clock-stud:before {
|
|
527
|
-
content: "\e9e9";
|
|
528
|
-
}
|
|
529
|
-
.saooti-next-stud:before {
|
|
530
|
-
content: "\e9ea";
|
|
531
|
-
}
|
|
532
|
-
.saooti-edit-stud:before {
|
|
533
|
-
content: "\e9eb";
|
|
534
|
-
}
|
|
535
|
-
.saooti-share-stud:before {
|
|
536
|
-
content: "\e9ed";
|
|
537
|
-
}
|
|
538
|
-
.saooti-loupe-stud:before {
|
|
539
|
-
content: "\e9ee";
|
|
540
|
-
}
|
|
541
|
-
.saooti-send-stud:before {
|
|
542
|
-
content: "\e9ef";
|
|
543
|
-
}
|
|
544
|
-
.saooti-play-stud:before {
|
|
545
|
-
content: "\e9f0";
|
|
546
|
-
}
|
|
547
|
-
.saooti-dtmf-stud:before {
|
|
548
|
-
content: "\e9f1";
|
|
549
|
-
}
|
|
550
|
-
.saooti-microphone-on-stud:before {
|
|
551
|
-
content: "\e9f2";
|
|
552
|
-
}
|
|
553
|
-
.saooti-valid-stud:before {
|
|
554
|
-
content: "\e9f4";
|
|
555
|
-
}
|
|
556
|
-
.saooti-user3:before {
|
|
557
|
-
content: "\e9f7";
|
|
558
|
-
}
|
|
559
|
-
.saooti-participant-stud:before {
|
|
560
|
-
content: "\e9f9";
|
|
561
|
-
}
|
|
562
|
-
.saooti-call-stud:before {
|
|
563
|
-
content: "\e9fa";
|
|
564
|
-
}
|
|
565
|
-
.saooti-microphone-off-stud:before {
|
|
566
|
-
content: "\e9fb";
|
|
567
|
-
}
|
|
568
|
-
.saooti-media-stud:before {
|
|
569
|
-
content: "\e9fc";
|
|
570
|
-
}
|
|
571
|
-
.saooti-note-stud:before {
|
|
572
|
-
content: "\e9fd";
|
|
573
|
-
}
|
|
574
|
-
.saooti-rec-stud:before {
|
|
575
|
-
content: "\e9fe";
|
|
576
|
-
}
|
|
577
|
-
.saooti-stop-rec-stud:before {
|
|
578
|
-
content: "\ea0c";
|
|
579
|
-
}
|
|
580
|
-
.saooti-led-stud:before {
|
|
581
|
-
content: "\e9ff";
|
|
582
|
-
}
|
|
583
|
-
.saooti-switch:before {
|
|
584
|
-
content: "\ea5d";
|
|
585
|
-
}
|
|
586
|
-
.saooti-soundcloud:before {
|
|
587
|
-
content: "\ea58";
|
|
588
|
-
}
|
|
589
|
-
.saooti-vimeo:before {
|
|
590
|
-
content: "\ea59";
|
|
591
|
-
}
|
|
592
|
-
.saooti-paper:before {
|
|
593
|
-
content: "\ea57";
|
|
594
|
-
}
|
|
595
|
-
.saooti-video2:before {
|
|
596
|
-
content: "\ea56";
|
|
597
|
-
}
|
|
598
|
-
.saooti-docmuent-end:before {
|
|
599
|
-
content: "\ea4f";
|
|
600
|
-
}
|
|
601
|
-
.saooti-docmuent:before {
|
|
602
|
-
content: "\ea50";
|
|
603
|
-
}
|
|
604
|
-
.saooti-doc:before {
|
|
605
|
-
content: "\ea51";
|
|
606
|
-
}
|
|
607
|
-
.saooti-full_screen:before {
|
|
608
|
-
content: "\ea52";
|
|
609
|
-
}
|
|
610
|
-
.saooti-minimise:before {
|
|
611
|
-
content: "\ea53";
|
|
612
|
-
}
|
|
613
|
-
.saooti-daily:before {
|
|
614
|
-
content: "\ea4b";
|
|
615
|
-
}
|
|
616
|
-
.saooti-insta:before {
|
|
617
|
-
content: "\ea4c";
|
|
618
|
-
}
|
|
619
|
-
.saooti-vine:before {
|
|
620
|
-
content: "\ea4d";
|
|
621
|
-
}
|
|
622
|
-
.saooti-google-plus:before {
|
|
623
|
-
content: "\ea22";
|
|
624
|
-
}
|
|
625
|
-
.saooti-linkedin:before {
|
|
626
|
-
content: "\ea23";
|
|
627
|
-
}
|
|
628
|
-
.saooti-lock2:before {
|
|
629
|
-
content: "\ea20";
|
|
630
|
-
}
|
|
631
|
-
.saooti-heart-break:before {
|
|
632
|
-
content: "\ea1e";
|
|
633
|
-
}
|
|
634
|
-
.saooti-right:before {
|
|
635
|
-
content: "\ea1c";
|
|
636
|
-
}
|
|
637
28
|
.saooti-left:before {
|
|
638
|
-
content: "\ea1d";
|
|
639
|
-
}
|
|
640
|
-
.saooti-close:before {
|
|
641
|
-
content: "\ea1b";
|
|
642
|
-
}
|
|
643
|
-
.saooti-save:before {
|
|
644
|
-
content: "\e9b2";
|
|
645
|
-
}
|
|
646
|
-
.saooti-saooti-chat:before {
|
|
647
|
-
content: "\e9b4";
|
|
648
|
-
}
|
|
649
|
-
.saooti-panels:before {
|
|
650
|
-
content: "\e9b5";
|
|
651
|
-
}
|
|
652
|
-
.saooti-stop22:before {
|
|
653
|
-
content: "\e9b6";
|
|
654
|
-
}
|
|
655
|
-
.saooti-play22:before {
|
|
656
|
-
content: "\e9b7";
|
|
657
|
-
}
|
|
658
|
-
.saooti-pause22:before {
|
|
659
|
-
content: "\e9b8";
|
|
660
|
-
}
|
|
661
|
-
.saooti-logout:before {
|
|
662
|
-
content: "\e9b9";
|
|
663
|
-
}
|
|
664
|
-
.saooti-headphone:before {
|
|
665
|
-
content: "\e9ba";
|
|
666
|
-
}
|
|
667
|
-
.saooti-globe:before {
|
|
668
|
-
content: "\e9bb";
|
|
669
|
-
}
|
|
670
|
-
.saooti-user2:before {
|
|
671
|
-
content: "\e9bc";
|
|
672
|
-
}
|
|
673
|
-
.saooti-avenir:before {
|
|
674
|
-
content: "\e9bd";
|
|
675
|
-
}
|
|
676
|
-
.saooti-podcast2:before {
|
|
677
|
-
content: "\e9be";
|
|
678
|
-
}
|
|
679
|
-
.saooti-micro:before {
|
|
680
|
-
content: "\ea00";
|
|
681
|
-
}
|
|
682
|
-
.saooti-burger:before {
|
|
683
|
-
content: "\ea01";
|
|
684
|
-
}
|
|
685
|
-
.saooti-down:before {
|
|
686
|
-
content: "\ea02";
|
|
687
|
-
}
|
|
688
|
-
.saooti-up:before {
|
|
689
|
-
content: "\ea03";
|
|
690
|
-
}
|
|
691
|
-
.saooti-heart2:before {
|
|
692
|
-
content: "\ea04";
|
|
693
|
-
}
|
|
694
|
-
.saooti-download-wave:before {
|
|
695
|
-
content: "\ea05";
|
|
696
|
-
}
|
|
697
|
-
.saooti-edit:before {
|
|
698
|
-
content: "\e9bf";
|
|
699
|
-
}
|
|
700
|
-
.saooti-stop3:before {
|
|
701
|
-
content: "\e9c0";
|
|
702
|
-
}
|
|
703
|
-
.saooti-delete:before {
|
|
704
|
-
content: "\e9c1";
|
|
705
|
-
}
|
|
706
|
-
.saooti-volume_off:before {
|
|
707
|
-
content: "\e9c2";
|
|
708
|
-
}
|
|
709
|
-
.saooti-arrow_down:before {
|
|
710
|
-
content: "\e9c3";
|
|
711
|
-
}
|
|
712
|
-
.saooti-arrow_drop_down:before {
|
|
713
|
-
content: "\e9c4";
|
|
714
|
-
}
|
|
715
|
-
.saooti-more_vert:before {
|
|
716
|
-
content: "\e9c5";
|
|
717
|
-
}
|
|
718
|
-
.saooti-volume_up:before {
|
|
719
|
-
content: "\e9c6";
|
|
720
|
-
}
|
|
721
|
-
.saooti-arrow_right:before {
|
|
722
|
-
content: "\e9c8";
|
|
723
|
-
}
|
|
724
|
-
.saooti-pause23:before {
|
|
725
|
-
content: "\e9c9";
|
|
726
|
-
}
|
|
727
|
-
.saooti-like:before {
|
|
728
|
-
content: "\e9ca";
|
|
729
|
-
}
|
|
730
|
-
.saooti-dislike:before {
|
|
731
|
-
content: "\e9cb";
|
|
732
|
-
}
|
|
733
|
-
.saooti-play-video:before {
|
|
734
|
-
content: "\ea06";
|
|
735
|
-
}
|
|
736
|
-
.saooti-download-video:before {
|
|
737
|
-
content: "\ea07";
|
|
738
|
-
}
|
|
739
|
-
.saooti-clock3:before {
|
|
740
|
-
content: "\ea08";
|
|
741
|
-
}
|
|
742
|
-
.saooti-send:before {
|
|
743
|
-
content: "\ea09";
|
|
744
|
-
}
|
|
745
|
-
.saooti-link2:before {
|
|
746
|
-
content: "\ea0a";
|
|
747
|
-
}
|
|
748
|
-
.saooti-alert:before {
|
|
749
|
-
content: "\ea0b";
|
|
750
|
-
}
|
|
751
|
-
.saooti-download2:before {
|
|
752
|
-
content: "\e9cc";
|
|
753
|
-
}
|
|
754
|
-
.saooti-search2:before {
|
|
755
|
-
content: "\e9cd";
|
|
756
|
-
}
|
|
757
|
-
.saooti-envelope:before {
|
|
758
|
-
content: "\e9ce";
|
|
759
|
-
}
|
|
760
|
-
.saooti-star:before {
|
|
761
|
-
content: "\e9dd";
|
|
762
|
-
}
|
|
763
|
-
.saooti-play4:before {
|
|
764
|
-
content: "\e9de";
|
|
765
|
-
}
|
|
766
|
-
.saooti-iTunes:before {
|
|
767
|
-
content: "\e9df";
|
|
768
|
-
}
|
|
769
|
-
.saooti-embed2:before {
|
|
770
|
-
content: "\e9e0";
|
|
771
|
-
}
|
|
772
|
-
.saooti-share22:before {
|
|
773
|
-
content: "\e9e1";
|
|
774
|
-
}
|
|
775
|
-
.saooti-facebook22:before {
|
|
776
|
-
content: "\ea1a";
|
|
777
|
-
}
|
|
778
|
-
.saooti-twitter:before {
|
|
779
|
-
content: "\e9e3";
|
|
780
|
-
}
|
|
781
|
-
.saooti-feed2:before {
|
|
782
|
-
content: "\e9cf";
|
|
783
|
-
}
|
|
784
|
-
.saooti-publish_podcast:before {
|
|
785
|
-
content: "\ea68";
|
|
786
|
-
}
|
|
787
|
-
.saooti-cone:before {
|
|
788
|
-
content: "\ea65";
|
|
789
|
-
}
|
|
790
|
-
.saooti-editor:before {
|
|
791
|
-
content: "\ea64";
|
|
792
|
-
}
|
|
793
|
-
.saooti-animator:before {
|
|
794
|
-
content: "\ea66";
|
|
795
|
-
}
|
|
796
|
-
.saooti-administrator:before {
|
|
797
|
-
content: "\ea67";
|
|
798
|
-
}
|
|
799
|
-
.saooti-clipboard2:before {
|
|
800
|
-
content: "\ea5e";
|
|
801
|
-
}
|
|
802
|
-
.saooti-disconnect-user:before {
|
|
803
|
-
content: "\ea5a";
|
|
804
|
-
}
|
|
805
|
-
.saooti-activ-user:before {
|
|
806
|
-
content: "\ea5b";
|
|
807
|
-
}
|
|
808
|
-
.saooti-key:before {
|
|
809
|
-
content: "\ea5c";
|
|
810
|
-
}
|
|
811
|
-
.saooti-videocast-novisible:before {
|
|
812
|
-
content: "\ea43";
|
|
813
|
-
}
|
|
814
|
-
.saooti-videocast-visible:before {
|
|
815
|
-
content: "\ea42";
|
|
816
|
-
}
|
|
817
|
-
.saooti-window:before {
|
|
818
|
-
content: "\ea54";
|
|
819
|
-
}
|
|
820
|
-
.saooti-socials:before {
|
|
821
|
-
content: "\ea55";
|
|
822
|
-
}
|
|
823
|
-
.saooti-photocam:before {
|
|
824
|
-
content: "\ea4e";
|
|
825
|
-
}
|
|
826
|
-
.saooti-no-download:before {
|
|
827
|
-
content: "\ea41";
|
|
828
|
-
}
|
|
829
|
-
.saooti-videocast-download-ok:before {
|
|
830
|
-
content: "\ea44";
|
|
831
|
-
}
|
|
832
|
-
.saooti-no-videocast:before {
|
|
833
|
-
content: "\ea45";
|
|
834
|
-
}
|
|
835
|
-
.saooti-videocast-nodownload:before {
|
|
836
|
-
content: "\ea46";
|
|
837
|
-
}
|
|
838
|
-
.saooti-podcast-visible:before {
|
|
839
|
-
content: "\ea47";
|
|
840
|
-
}
|
|
841
|
-
.saooti-podcast-novisible:before {
|
|
842
|
-
content: "\ea48";
|
|
843
|
-
}
|
|
844
|
-
.saooti-download-ok:before {
|
|
845
|
-
content: "\ea49";
|
|
846
|
-
}
|
|
847
|
-
.saooti-no-podcast:before {
|
|
848
|
-
content: "\ea4a";
|
|
849
|
-
}
|
|
850
|
-
.saooti-playlist-stud-mix:before {
|
|
851
|
-
content: "\ea40";
|
|
852
|
-
}
|
|
853
|
-
.saooti-playlist-stud-public:before {
|
|
854
|
-
content: "\ea3c";
|
|
855
|
-
}
|
|
856
|
-
.saooti-playlist-stud-prive:before {
|
|
857
|
-
content: "\ea3d";
|
|
858
|
-
}
|
|
859
|
-
.saooti-conflicted:before {
|
|
860
|
-
content: "\ea38";
|
|
861
|
-
}
|
|
862
|
-
.saooti-no-prog:before {
|
|
863
|
-
content: "\ea39";
|
|
864
|
-
}
|
|
865
|
-
.saooti-loupe-less:before {
|
|
866
|
-
content: "\ea3e";
|
|
867
|
-
}
|
|
868
|
-
.saooti-loupe-more:before {
|
|
869
|
-
content: "\ea3f";
|
|
870
|
-
}
|
|
871
|
-
.saooti-plus2:before {
|
|
872
|
-
content: "\ea32";
|
|
873
|
-
}
|
|
874
|
-
.saooti-copy:before {
|
|
875
|
-
content: "\ea33";
|
|
876
|
-
}
|
|
877
|
-
.saooti-note-barre:before {
|
|
878
|
-
content: "\ea34";
|
|
879
|
-
}
|
|
880
|
-
.saooti-chaine:before {
|
|
881
|
-
content: "\ea35";
|
|
882
|
-
}
|
|
883
|
-
.saooti-refresh-wrm:before {
|
|
884
|
-
content: "\ea36";
|
|
885
|
-
}
|
|
886
|
-
.saooti-alert-orange:before {
|
|
887
|
-
content: "\ea37";
|
|
888
|
-
}
|
|
889
|
-
.saooti-hand:before {
|
|
890
|
-
content: "\ea3a";
|
|
891
|
-
}
|
|
892
|
-
.saooti-record:before {
|
|
893
|
-
content: "\ea3b";
|
|
894
|
-
}
|
|
895
|
-
.saooti-power-off:before {
|
|
896
|
-
content: "\ea31";
|
|
897
|
-
}
|
|
898
|
-
.saooti-upload2:before {
|
|
899
|
-
content: "\ea30";
|
|
900
|
-
}
|
|
901
|
-
.saooti-brush:before {
|
|
902
|
-
content: "\ea2f";
|
|
903
|
-
}
|
|
904
|
-
.saooti-cogs2:before {
|
|
905
|
-
content: "\ea2d";
|
|
906
|
-
}
|
|
907
|
-
.saooti-option:before {
|
|
908
|
-
content: "\ea2e";
|
|
909
|
-
}
|
|
910
|
-
.saooti-profile-face-headphone:before {
|
|
911
|
-
content: "\ea2c";
|
|
912
|
-
}
|
|
913
|
-
.saooti-profile-face:before {
|
|
914
|
-
content: "\ea2b";
|
|
915
|
-
}
|
|
916
|
-
.saooti-cloud:before {
|
|
917
|
-
content: "\ea29";
|
|
918
|
-
}
|
|
919
|
-
.saooti-hourglass:before {
|
|
920
|
-
content: "\ea2a";
|
|
921
|
-
}
|
|
922
|
-
.saooti-doc-novisible:before {
|
|
923
|
-
content: "\ea26";
|
|
924
|
-
}
|
|
925
|
-
.saooti-doc-visible:before {
|
|
926
|
-
content: "\ea27";
|
|
927
|
-
}
|
|
928
|
-
.saooti-pdf:before {
|
|
929
|
-
content: "\ea28";
|
|
930
|
-
}
|
|
931
|
-
.saooti-polls:before {
|
|
932
|
-
content: "\ea25";
|
|
933
|
-
}
|
|
934
|
-
.saooti-loupe:before {
|
|
935
|
-
content: "\e9ad";
|
|
936
|
-
}
|
|
937
|
-
.saooti-video:before {
|
|
938
|
-
content: "\e9c7";
|
|
939
|
-
}
|
|
940
|
-
.saooti-info3:before {
|
|
941
|
-
content: "\e9d0";
|
|
942
|
-
}
|
|
943
|
-
.saooti-next3:before {
|
|
944
|
-
content: "\e9d1";
|
|
945
|
-
}
|
|
946
|
-
.saooti-burger-menu:before {
|
|
947
|
-
content: "\e9d2";
|
|
948
|
-
}
|
|
949
|
-
.saooti-emisson-avenir:before {
|
|
950
|
-
content: "\e9d3";
|
|
951
|
-
}
|
|
952
|
-
.saooti-emisson:before {
|
|
953
|
-
content: "\e9d4";
|
|
954
|
-
}
|
|
955
|
-
.saooti-podcast:before {
|
|
956
|
-
content: "\e9d5";
|
|
957
|
-
}
|
|
958
|
-
.saooti-tools-2:before {
|
|
959
|
-
content: "\e9d6";
|
|
960
|
-
}
|
|
961
|
-
.saooti-popup:before {
|
|
962
|
-
content: "\e9d7";
|
|
963
|
-
}
|
|
964
|
-
.saooti-pricetags:before {
|
|
965
|
-
content: "\e9d8";
|
|
966
|
-
}
|
|
967
|
-
.saooti-chat:before {
|
|
968
|
-
content: "\e9d9";
|
|
969
|
-
}
|
|
970
|
-
.saooti-profile-male:before {
|
|
971
|
-
content: "\e9da";
|
|
972
|
-
}
|
|
973
|
-
.saooti-help:before {
|
|
974
|
-
content: "\e9db";
|
|
975
|
-
}
|
|
976
|
-
.saooti-musical2:before {
|
|
977
|
-
content: "\e9dc";
|
|
978
|
-
}
|
|
979
|
-
.saooti-home2:before {
|
|
980
|
-
content: "\e9ae";
|
|
981
|
-
}
|
|
982
|
-
.saooti-microphone:before {
|
|
983
|
-
content: "\e9af";
|
|
984
|
-
}
|
|
985
|
-
.saooti-note:before {
|
|
986
|
-
content: "\e9b0";
|
|
987
|
-
}
|
|
988
|
-
.saooti-planning:before {
|
|
989
|
-
content: "\e9b3";
|
|
990
|
-
}
|
|
991
|
-
.saooti-stats:before {
|
|
992
|
-
content: "\e9b1";
|
|
993
|
-
}
|
|
994
|
-
.saooti-info:before {
|
|
995
29
|
content: "\e900";
|
|
996
30
|
}
|
|
997
|
-
.saooti-
|
|
31
|
+
.saooti-right:before {
|
|
998
32
|
content: "\e901";
|
|
999
33
|
}
|
|
1000
|
-
.saooti-
|
|
34
|
+
.saooti-volume-mute:before {
|
|
1001
35
|
content: "\e902";
|
|
1002
36
|
}
|
|
1003
|
-
.saooti-
|
|
37
|
+
.saooti-volume-high:before {
|
|
1004
38
|
content: "\e903";
|
|
1005
39
|
}
|
|
1006
|
-
.saooti-
|
|
40
|
+
.saooti-forward:before {
|
|
1007
41
|
content: "\e904";
|
|
1008
42
|
}
|
|
1009
|
-
.saooti-
|
|
43
|
+
.saooti-backward:before {
|
|
1010
44
|
content: "\e905";
|
|
1011
45
|
}
|
|
1012
|
-
.saooti-
|
|
46
|
+
.saooti-exit:before {
|
|
1013
47
|
content: "\e906";
|
|
1014
48
|
}
|
|
1015
|
-
.saooti-
|
|
49
|
+
.saooti-enter:before {
|
|
1016
50
|
content: "\e907";
|
|
1017
51
|
}
|
|
1018
|
-
.saooti-
|
|
52
|
+
.saooti-checkmark:before {
|
|
1019
53
|
content: "\e908";
|
|
1020
54
|
}
|
|
1021
|
-
.saooti-
|
|
55
|
+
.saooti-minus:before {
|
|
1022
56
|
content: "\e909";
|
|
1023
57
|
}
|
|
1024
|
-
.saooti-
|
|
58
|
+
.saooti-eye-blocked:before {
|
|
1025
59
|
content: "\e90a";
|
|
1026
60
|
}
|
|
1027
|
-
.saooti-
|
|
61
|
+
.saooti-eye:before {
|
|
1028
62
|
content: "\e90b";
|
|
1029
63
|
}
|
|
1030
|
-
.saooti-
|
|
64
|
+
.saooti-link:before {
|
|
1031
65
|
content: "\e90c";
|
|
1032
66
|
}
|
|
1033
|
-
.saooti-
|
|
67
|
+
.saooti-menu:before {
|
|
1034
68
|
content: "\e90d";
|
|
1035
69
|
}
|
|
1036
|
-
.saooti-
|
|
70
|
+
.saooti-bin:before {
|
|
1037
71
|
content: "\e90e";
|
|
1038
72
|
}
|
|
1039
|
-
.saooti-
|
|
73
|
+
.saooti-user-plus:before {
|
|
1040
74
|
content: "\e90f";
|
|
1041
75
|
}
|
|
1042
|
-
.saooti-
|
|
76
|
+
.saooti-users:before {
|
|
1043
77
|
content: "\e910";
|
|
1044
78
|
}
|
|
1045
|
-
.saooti-
|
|
79
|
+
.saooti-bubbles:before {
|
|
1046
80
|
content: "\e911";
|
|
1047
81
|
}
|
|
1048
|
-
.saooti-
|
|
82
|
+
.saooti-download:before {
|
|
1049
83
|
content: "\e912";
|
|
1050
84
|
}
|
|
1051
85
|
.saooti-clock:before {
|
|
1052
86
|
content: "\e913";
|
|
1053
87
|
}
|
|
1054
|
-
.saooti-
|
|
88
|
+
.saooti-phone:before {
|
|
1055
89
|
content: "\e914";
|
|
1056
90
|
}
|
|
1057
|
-
.saooti-
|
|
91
|
+
.saooti-file-music:before {
|
|
1058
92
|
content: "\e915";
|
|
1059
93
|
}
|
|
1060
|
-
.saooti-
|
|
94
|
+
.saooti-music:before {
|
|
1061
95
|
content: "\e916";
|
|
1062
96
|
}
|
|
1063
|
-
.saooti-
|
|
97
|
+
.saooti-newspaper:before {
|
|
1064
98
|
content: "\e917";
|
|
1065
99
|
}
|
|
1066
|
-
.saooti-
|
|
100
|
+
.saooti-help:before {
|
|
1067
101
|
content: "\e918";
|
|
1068
102
|
}
|
|
1069
|
-
.saooti-
|
|
103
|
+
.saooti-hourglass:before {
|
|
1070
104
|
content: "\e919";
|
|
1071
105
|
}
|
|
1072
|
-
.saooti-
|
|
106
|
+
.saooti-more_vert:before {
|
|
1073
107
|
content: "\e91a";
|
|
1074
108
|
}
|
|
1075
|
-
.saooti-
|
|
109
|
+
.saooti-video:before {
|
|
1076
110
|
content: "\e91b";
|
|
1077
111
|
}
|
|
1078
|
-
.saooti-
|
|
112
|
+
.saooti-rec:before {
|
|
1079
113
|
content: "\e91c";
|
|
1080
114
|
}
|
|
1081
|
-
.saooti-
|
|
115
|
+
.saooti-dtmf:before {
|
|
1082
116
|
content: "\e91d";
|
|
1083
117
|
}
|
|
1084
|
-
.saooti-
|
|
118
|
+
.saooti-refresh:before {
|
|
1085
119
|
content: "\e91e";
|
|
1086
120
|
}
|
|
1087
|
-
.saooti-
|
|
121
|
+
.saooti-disconnected:before {
|
|
1088
122
|
content: "\e91f";
|
|
1089
123
|
}
|
|
1090
|
-
.saooti-
|
|
1091
|
-
content: "\
|
|
124
|
+
.saooti-feed:before {
|
|
125
|
+
content: "\e920";
|
|
1092
126
|
}
|
|
1093
|
-
.saooti-
|
|
1094
|
-
content: "\
|
|
127
|
+
.saooti-headphones:before {
|
|
128
|
+
content: "\e921";
|
|
1095
129
|
}
|
|
1096
|
-
.saooti-
|
|
130
|
+
.saooti-export:before {
|
|
1097
131
|
content: "\e923";
|
|
1098
132
|
}
|
|
1099
|
-
.saooti-
|
|
133
|
+
.saooti-send:before {
|
|
1100
134
|
content: "\e924";
|
|
1101
135
|
}
|
|
1102
|
-
.saooti-
|
|
136
|
+
.saooti-search:before {
|
|
1103
137
|
content: "\e925";
|
|
1104
138
|
}
|
|
1105
|
-
.saooti-
|
|
139
|
+
.saooti-facebook:before {
|
|
1106
140
|
content: "\e926";
|
|
1107
141
|
}
|
|
1108
|
-
.saooti-
|
|
142
|
+
.saooti-twitter:before {
|
|
1109
143
|
content: "\e927";
|
|
1110
144
|
}
|
|
1111
|
-
.saooti-
|
|
145
|
+
.saooti-remove:before {
|
|
1112
146
|
content: "\e928";
|
|
1113
147
|
}
|
|
1114
|
-
.saooti-
|
|
148
|
+
.saooti-rss:before {
|
|
1115
149
|
content: "\e929";
|
|
1116
150
|
}
|
|
1117
|
-
.saooti-
|
|
151
|
+
.saooti-stop:before {
|
|
1118
152
|
content: "\e92a";
|
|
1119
153
|
}
|
|
1120
|
-
.saooti-
|
|
154
|
+
.saooti-pause:before {
|
|
1121
155
|
content: "\e92b";
|
|
1122
156
|
}
|
|
1123
|
-
.saooti-
|
|
157
|
+
.saooti-down:before {
|
|
1124
158
|
content: "\e92c";
|
|
1125
159
|
}
|
|
1126
|
-
.saooti-
|
|
160
|
+
.saooti-up:before {
|
|
1127
161
|
content: "\e92d";
|
|
1128
162
|
}
|
|
1129
|
-
.saooti-
|
|
163
|
+
.saooti-volume:before {
|
|
1130
164
|
content: "\e92e";
|
|
1131
165
|
}
|
|
1132
|
-
.saooti-
|
|
166
|
+
.saooti-play:before {
|
|
1133
167
|
content: "\e92f";
|
|
1134
168
|
}
|
|
1135
|
-
.saooti-
|
|
169
|
+
.saooti-warning:before {
|
|
1136
170
|
content: "\e930";
|
|
1137
171
|
}
|
|
1138
|
-
.saooti-
|
|
172
|
+
.saooti-edit:before {
|
|
1139
173
|
content: "\e931";
|
|
1140
174
|
}
|
|
1141
|
-
.saooti-
|
|
175
|
+
.saooti-linkedin:before {
|
|
1142
176
|
content: "\e932";
|
|
1143
177
|
}
|
|
1144
|
-
.saooti-
|
|
178
|
+
.saooti-tunin:before {
|
|
1145
179
|
content: "\e933";
|
|
180
|
+
color: #36b4a7;
|
|
1146
181
|
}
|
|
1147
|
-
.saooti-
|
|
182
|
+
.saooti-radioline:before {
|
|
1148
183
|
content: "\e934";
|
|
184
|
+
color: rgb(22, 120, 189);
|
|
1149
185
|
}
|
|
1150
|
-
.saooti-
|
|
1151
|
-
content: "\e935";
|
|
1152
|
-
}
|
|
1153
|
-
.saooti-link:before {
|
|
1154
|
-
content: "\e936";
|
|
1155
|
-
}
|
|
1156
|
-
.saooti-attachment:before {
|
|
1157
|
-
content: "\e937";
|
|
1158
|
-
}
|
|
1159
|
-
.saooti-eye:before {
|
|
1160
|
-
content: "\e938";
|
|
1161
|
-
}
|
|
1162
|
-
.saooti-eye-plus:before {
|
|
1163
|
-
content: "\e939";
|
|
1164
|
-
}
|
|
1165
|
-
.saooti-eye-minus:before {
|
|
1166
|
-
content: "\e93a";
|
|
1167
|
-
}
|
|
1168
|
-
.saooti-eye-blocked:before {
|
|
1169
|
-
content: "\e93b";
|
|
1170
|
-
}
|
|
1171
|
-
.saooti-star-empty:before {
|
|
1172
|
-
content: "\e93c";
|
|
1173
|
-
}
|
|
1174
|
-
.saooti-star-half:before {
|
|
1175
|
-
content: "\e93d";
|
|
1176
|
-
}
|
|
1177
|
-
.saooti-star-full:before {
|
|
1178
|
-
content: "\e93e";
|
|
1179
|
-
}
|
|
1180
|
-
.saooti-heart:before {
|
|
1181
|
-
content: "\e93f";
|
|
1182
|
-
}
|
|
1183
|
-
.saooti-heart-broken:before {
|
|
1184
|
-
content: "\e940";
|
|
1185
|
-
}
|
|
1186
|
-
.saooti-happy:before {
|
|
186
|
+
.saooti-spotify:before {
|
|
1187
187
|
content: "\e941";
|
|
188
|
+
color: #1ed760;
|
|
1188
189
|
}
|
|
1189
|
-
.saooti-
|
|
190
|
+
.saooti-podcast:before {
|
|
1190
191
|
content: "\e942";
|
|
192
|
+
color: #93c;
|
|
1191
193
|
}
|
|
1192
|
-
.saooti-
|
|
194
|
+
.saooti-deezer:before {
|
|
1193
195
|
content: "\e943";
|
|
196
|
+
color: #00c7f2;
|
|
1194
197
|
}
|
|
1195
|
-
.saooti-
|
|
198
|
+
.saooti-apple:before {
|
|
1196
199
|
content: "\e944";
|
|
200
|
+
color: #999;
|
|
1197
201
|
}
|
|
1198
|
-
.saooti-
|
|
202
|
+
.saooti-mic:before {
|
|
1199
203
|
content: "\e945";
|
|
1200
204
|
}
|
|
1201
|
-
.saooti-
|
|
205
|
+
.saooti-mic-off:before {
|
|
1202
206
|
content: "\e946";
|
|
1203
207
|
}
|
|
1204
|
-
.saooti-
|
|
208
|
+
.saooti-cartouche:before {
|
|
1205
209
|
content: "\e947";
|
|
1206
210
|
}
|
|
1207
|
-
.saooti-
|
|
211
|
+
.saooti-listening:before {
|
|
1208
212
|
content: "\e948";
|
|
1209
213
|
}
|
|
1210
|
-
.saooti-
|
|
214
|
+
.saooti-user:before {
|
|
1211
215
|
content: "\e949";
|
|
1212
216
|
}
|
|
1213
|
-
.saooti-
|
|
217
|
+
.saooti-stitcher-logo .path1:before {
|
|
1214
218
|
content: "\e94a";
|
|
219
|
+
color: rgb(0, 0, 0);
|
|
1215
220
|
}
|
|
1216
|
-
.saooti-
|
|
221
|
+
.saooti-stitcher-logo .path2:before {
|
|
1217
222
|
content: "\e94b";
|
|
223
|
+
margin-left: -1em;
|
|
224
|
+
color: rgb(0, 0, 0);
|
|
1218
225
|
}
|
|
1219
|
-
.saooti-
|
|
226
|
+
.saooti-stitcher-logo .path3:before {
|
|
1220
227
|
content: "\e94c";
|
|
228
|
+
margin-left: -1em;
|
|
229
|
+
color: rgb(0, 0, 0);
|
|
1221
230
|
}
|
|
1222
|
-
.saooti-
|
|
231
|
+
.saooti-stitcher-logo .path4:before {
|
|
1223
232
|
content: "\e94d";
|
|
233
|
+
margin-left: -1em;
|
|
234
|
+
color: rgb(0, 0, 0);
|
|
1224
235
|
}
|
|
1225
|
-
.saooti-
|
|
236
|
+
.saooti-stitcher-logo .path5:before {
|
|
1226
237
|
content: "\e94e";
|
|
238
|
+
margin-left: -1em;
|
|
239
|
+
color: rgb(0, 0, 0);
|
|
1227
240
|
}
|
|
1228
|
-
.saooti-
|
|
241
|
+
.saooti-stitcher-logo .path6:before {
|
|
1229
242
|
content: "\e94f";
|
|
243
|
+
margin-left: -1em;
|
|
244
|
+
color: rgb(0, 0, 0);
|
|
1230
245
|
}
|
|
1231
|
-
.saooti-
|
|
246
|
+
.saooti-stitcher-logo .path7:before {
|
|
1232
247
|
content: "\e950";
|
|
248
|
+
margin-left: -1em;
|
|
249
|
+
color: rgb(0, 0, 0);
|
|
1233
250
|
}
|
|
1234
|
-
.saooti-
|
|
251
|
+
.saooti-stitcher-logo .path8:before {
|
|
1235
252
|
content: "\e951";
|
|
253
|
+
margin-left: -1em;
|
|
254
|
+
color: rgb(0, 0, 0);
|
|
1236
255
|
}
|
|
1237
|
-
.saooti-
|
|
256
|
+
.saooti-stitcher-logo .path9:before {
|
|
1238
257
|
content: "\e952";
|
|
258
|
+
margin-left: -1em;
|
|
259
|
+
color: rgb(53, 144, 197);
|
|
1239
260
|
}
|
|
1240
|
-
.saooti-
|
|
261
|
+
.saooti-stitcher-logo .path10:before {
|
|
1241
262
|
content: "\e953";
|
|
263
|
+
margin-left: -1em;
|
|
264
|
+
color: rgb(53, 144, 197);
|
|
1242
265
|
}
|
|
1243
|
-
.saooti-
|
|
266
|
+
.saooti-stitcher-logo .path11:before {
|
|
1244
267
|
content: "\e954";
|
|
268
|
+
margin-left: -1em;
|
|
269
|
+
color: rgb(197, 56, 39);
|
|
1245
270
|
}
|
|
1246
|
-
.saooti-
|
|
271
|
+
.saooti-stitcher-logo .path12:before {
|
|
1247
272
|
content: "\e955";
|
|
273
|
+
margin-left: -1em;
|
|
274
|
+
color: rgb(197, 56, 39);
|
|
1248
275
|
}
|
|
1249
|
-
.saooti-
|
|
276
|
+
.saooti-stitcher-logo .path13:before {
|
|
1250
277
|
content: "\e956";
|
|
278
|
+
margin-left: -1em;
|
|
279
|
+
color: rgb(236, 139, 36);
|
|
1251
280
|
}
|
|
1252
|
-
.saooti-
|
|
281
|
+
.saooti-stitcher-logo .path14:before {
|
|
1253
282
|
content: "\e957";
|
|
283
|
+
margin-left: -1em;
|
|
284
|
+
color: rgb(236, 139, 36);
|
|
1254
285
|
}
|
|
1255
|
-
.saooti-
|
|
286
|
+
.saooti-stitcher-logo .path15:before {
|
|
1256
287
|
content: "\e958";
|
|
288
|
+
margin-left: -1em;
|
|
289
|
+
color: rgb(251, 198, 24);
|
|
1257
290
|
}
|
|
1258
|
-
.saooti-
|
|
291
|
+
.saooti-stitcher-logo .path16:before {
|
|
1259
292
|
content: "\e959";
|
|
293
|
+
margin-left: -1em;
|
|
294
|
+
color: rgb(251, 198, 24);
|
|
1260
295
|
}
|
|
1261
|
-
.saooti-
|
|
296
|
+
.saooti-stitcher-logo .path17:before {
|
|
1262
297
|
content: "\e95a";
|
|
298
|
+
margin-left: -1em;
|
|
299
|
+
color: rgb(97, 34, 104);
|
|
1263
300
|
}
|
|
1264
|
-
.saooti-
|
|
301
|
+
.saooti-stitcher-logo .path18:before {
|
|
1265
302
|
content: "\e95b";
|
|
303
|
+
margin-left: -1em;
|
|
304
|
+
color: rgb(97, 34, 104);
|
|
1266
305
|
}
|
|
1267
|
-
.saooti-
|
|
306
|
+
.saooti-pocket-casts:before {
|
|
1268
307
|
content: "\e95c";
|
|
308
|
+
color: rgb(244, 62, 55);
|
|
1269
309
|
}
|
|
1270
|
-
.saooti-
|
|
310
|
+
.saooti-pocket-casts:after {
|
|
1271
311
|
content: "\e95d";
|
|
312
|
+
margin-left: -1em;
|
|
313
|
+
color: rgb(255, 255, 255);
|
|
1272
314
|
}
|
|
1273
|
-
.saooti-
|
|
315
|
+
.saooti-playerfm:before {
|
|
1274
316
|
content: "\e95e";
|
|
317
|
+
color: #bb202a;
|
|
1275
318
|
}
|
|
1276
|
-
.saooti-
|
|
319
|
+
.saooti-podcast-addict:before {
|
|
1277
320
|
content: "\e95f";
|
|
321
|
+
color: rgb(244, 132, 45);
|
|
1278
322
|
}
|
|
1279
|
-
.saooti-
|
|
323
|
+
.saooti-podcast-addict:after {
|
|
1280
324
|
content: "\e960";
|
|
325
|
+
margin-left: -0.998046875em;
|
|
326
|
+
color: rgb(255, 255, 255);
|
|
1281
327
|
}
|
|
1282
|
-
.saooti-
|
|
328
|
+
.saooti-filter-distrib:before {
|
|
1283
329
|
content: "\e961";
|
|
1284
330
|
}
|
|
1285
|
-
.saooti-
|
|
331
|
+
.saooti-google-podcasts .path1:before {
|
|
1286
332
|
content: "\e962";
|
|
333
|
+
color: rgb(0, 102, 217);
|
|
1287
334
|
}
|
|
1288
|
-
.saooti-
|
|
335
|
+
.saooti-google-podcasts .path2:before {
|
|
1289
336
|
content: "\e963";
|
|
337
|
+
margin-left: -1em;
|
|
338
|
+
color: rgb(66, 133, 244);
|
|
1290
339
|
}
|
|
1291
|
-
.saooti-
|
|
340
|
+
.saooti-google-podcasts .path3:before {
|
|
1292
341
|
content: "\e964";
|
|
342
|
+
margin-left: -1em;
|
|
343
|
+
color: rgb(234, 67, 53);
|
|
1293
344
|
}
|
|
1294
|
-
.saooti-
|
|
345
|
+
.saooti-google-podcasts .path4:before {
|
|
1295
346
|
content: "\e965";
|
|
347
|
+
margin-left: -1em;
|
|
348
|
+
color: rgb(52, 168, 83);
|
|
1296
349
|
}
|
|
1297
|
-
.saooti-
|
|
350
|
+
.saooti-google-podcasts .path5:before {
|
|
1298
351
|
content: "\e966";
|
|
352
|
+
margin-left: -1em;
|
|
353
|
+
color: rgb(250, 185, 8);
|
|
1299
354
|
}
|
|
1300
|
-
.saooti-
|
|
355
|
+
.saooti-google-podcasts .path6:before {
|
|
1301
356
|
content: "\e967";
|
|
357
|
+
margin-left: -1em;
|
|
358
|
+
color: rgb(52, 168, 83);
|
|
1302
359
|
}
|
|
1303
|
-
.saooti-
|
|
360
|
+
.saooti-google-podcasts .path7:before {
|
|
1304
361
|
content: "\e968";
|
|
362
|
+
margin-left: -1em;
|
|
363
|
+
color: rgb(250, 185, 8);
|
|
1305
364
|
}
|
|
1306
|
-
.saooti-
|
|
365
|
+
.saooti-amazon .path1:before {
|
|
1307
366
|
content: "\e969";
|
|
367
|
+
color: rgb(255, 153, 0);
|
|
1308
368
|
}
|
|
1309
|
-
.saooti-
|
|
369
|
+
.saooti-amazon .path2:before {
|
|
1310
370
|
content: "\e96a";
|
|
371
|
+
margin-left: -1em;
|
|
372
|
+
color: rgb(255, 153, 0);
|
|
1311
373
|
}
|
|
1312
|
-
.saooti-
|
|
374
|
+
.saooti-amazon .path3:before {
|
|
1313
375
|
content: "\e96b";
|
|
376
|
+
margin-left: -1em;
|
|
377
|
+
color: rgb(0, 0, 0);
|
|
1314
378
|
}
|
|
1315
|
-
.saooti-
|
|
379
|
+
.saooti-Whatsapp .path1:before {
|
|
1316
380
|
content: "\e96c";
|
|
381
|
+
color: rgb(44, 183, 66);
|
|
1317
382
|
}
|
|
1318
|
-
.saooti-
|
|
383
|
+
.saooti-Whatsapp .path2:before {
|
|
1319
384
|
content: "\e96d";
|
|
385
|
+
margin-left: -1em;
|
|
386
|
+
color: rgb(255, 255, 255);
|
|
1320
387
|
}
|
|
1321
|
-
.saooti-
|
|
388
|
+
.saooti-Whatsapp .path3:before {
|
|
1322
389
|
content: "\e96e";
|
|
390
|
+
margin-left: -1em;
|
|
391
|
+
color: rgb(44, 183, 66);
|
|
1323
392
|
}
|
|
1324
|
-
.saooti-
|
|
393
|
+
.saooti-more:before {
|
|
1325
394
|
content: "\e96f";
|
|
1326
395
|
}
|
|
1327
|
-
.saooti-
|
|
396
|
+
.saooti-newsletter:before {
|
|
1328
397
|
content: "\e970";
|
|
1329
398
|
}
|
|
1330
|
-
.saooti-
|
|
399
|
+
.saooti-qrcode:before {
|
|
1331
400
|
content: "\e971";
|
|
1332
401
|
}
|
|
1333
|
-
.saooti-
|
|
402
|
+
.saooti-pin:before {
|
|
1334
403
|
content: "\e972";
|
|
1335
404
|
}
|
|
1336
|
-
.saooti-
|
|
405
|
+
.saooti-copy:before {
|
|
1337
406
|
content: "\e973";
|
|
1338
407
|
}
|
|
1339
|
-
.saooti-
|
|
408
|
+
.saooti-table:before {
|
|
1340
409
|
content: "\e974";
|
|
1341
410
|
}
|
|
1342
|
-
.saooti-
|
|
411
|
+
.saooti-arrow-right:before {
|
|
1343
412
|
content: "\e975";
|
|
1344
413
|
}
|
|
1345
|
-
.saooti-
|
|
414
|
+
.saooti-arrow-down:before {
|
|
1346
415
|
content: "\e976";
|
|
1347
416
|
}
|
|
1348
|
-
.saooti-exit:before {
|
|
1349
|
-
content: "\e977";
|
|
1350
|
-
}
|
|
1351
|
-
.saooti-play2:before {
|
|
1352
|
-
content: "\e978";
|
|
1353
|
-
}
|
|
1354
|
-
.saooti-pause:before {
|
|
1355
|
-
content: "\e979";
|
|
1356
|
-
}
|
|
1357
|
-
.saooti-stop:before {
|
|
1358
|
-
content: "\e97a";
|
|
1359
|
-
}
|
|
1360
|
-
.saooti-previous:before {
|
|
1361
|
-
content: "\e97b";
|
|
1362
|
-
}
|
|
1363
|
-
.saooti-next:before {
|
|
1364
|
-
content: "\e97c";
|
|
1365
|
-
}
|
|
1366
|
-
.saooti-backward:before {
|
|
1367
|
-
content: "\e97d";
|
|
1368
|
-
}
|
|
1369
|
-
.saooti-forward2:before {
|
|
1370
|
-
content: "\e97e";
|
|
1371
|
-
}
|
|
1372
|
-
.saooti-play3:before {
|
|
1373
|
-
content: "\e97f";
|
|
1374
|
-
}
|
|
1375
|
-
.saooti-pause2:before {
|
|
1376
|
-
content: "\e980";
|
|
1377
|
-
}
|
|
1378
|
-
.saooti-stop2:before {
|
|
1379
|
-
content: "\e981";
|
|
1380
|
-
}
|
|
1381
|
-
.saooti-backward2:before {
|
|
1382
|
-
content: "\e982";
|
|
1383
|
-
}
|
|
1384
|
-
.saooti-forward3:before {
|
|
1385
|
-
content: "\e983";
|
|
1386
|
-
}
|
|
1387
|
-
.saooti-first:before {
|
|
1388
|
-
content: "\e984";
|
|
1389
|
-
}
|
|
1390
|
-
.saooti-last:before {
|
|
1391
|
-
content: "\e985";
|
|
1392
|
-
}
|
|
1393
|
-
.saooti-previous2:before {
|
|
1394
|
-
content: "\e986";
|
|
1395
|
-
}
|
|
1396
|
-
.saooti-next2:before {
|
|
1397
|
-
content: "\e987";
|
|
1398
|
-
}
|
|
1399
|
-
.saooti-eject:before {
|
|
1400
|
-
content: "\e988";
|
|
1401
|
-
}
|
|
1402
|
-
.saooti-volume-high:before {
|
|
1403
|
-
content: "\e989";
|
|
1404
|
-
}
|
|
1405
|
-
.saooti-volume-medium:before {
|
|
1406
|
-
content: "\e98a";
|
|
1407
|
-
}
|
|
1408
|
-
.saooti-volume-low:before {
|
|
1409
|
-
content: "\e98b";
|
|
1410
|
-
}
|
|
1411
|
-
.saooti-volume-mute:before {
|
|
1412
|
-
content: "\e98c";
|
|
1413
|
-
}
|
|
1414
|
-
.saooti-volume-mute2:before {
|
|
1415
|
-
content: "\e98d";
|
|
1416
|
-
}
|
|
1417
|
-
.saooti-volume-increase:before {
|
|
1418
|
-
content: "\e98e";
|
|
1419
|
-
}
|
|
1420
|
-
.saooti-volume-decrease:before {
|
|
1421
|
-
content: "\e98f";
|
|
1422
|
-
}
|
|
1423
417
|
.saooti-arrow-up:before {
|
|
1424
|
-
content: "\
|
|
1425
|
-
}
|
|
1426
|
-
.saooti-arrow-right:before {
|
|
1427
|
-
content: "\e991";
|
|
1428
|
-
}
|
|
1429
|
-
.saooti-arrow-down:before {
|
|
1430
|
-
content: "\e992";
|
|
1431
|
-
}
|
|
1432
|
-
.saooti-arrow-left:before {
|
|
1433
|
-
content: "\e993";
|
|
1434
|
-
}
|
|
1435
|
-
.saooti-arrow-up2:before {
|
|
1436
|
-
content: "\e994";
|
|
1437
|
-
}
|
|
1438
|
-
.saooti-arrow-right2:before {
|
|
1439
|
-
content: "\e995";
|
|
1440
|
-
}
|
|
1441
|
-
.saooti-arrow-down2:before {
|
|
1442
|
-
content: "\e996";
|
|
1443
|
-
}
|
|
1444
|
-
.saooti-arrow-left2:before {
|
|
1445
|
-
content: "\e997";
|
|
1446
|
-
}
|
|
1447
|
-
.saooti-circle-up:before {
|
|
1448
|
-
content: "\e998";
|
|
1449
|
-
}
|
|
1450
|
-
.saooti-circle-right:before {
|
|
1451
|
-
content: "\e999";
|
|
1452
|
-
}
|
|
1453
|
-
.saooti-circle-down:before {
|
|
1454
|
-
content: "\e99a";
|
|
1455
|
-
}
|
|
1456
|
-
.saooti-circle-left:before {
|
|
1457
|
-
content: "\e99b";
|
|
1458
|
-
}
|
|
1459
|
-
.saooti-sort-alpha-asc:before {
|
|
1460
|
-
content: "\e99c";
|
|
1461
|
-
}
|
|
1462
|
-
.saooti-sort-alpha-desc:before {
|
|
1463
|
-
content: "\e99d";
|
|
1464
|
-
}
|
|
1465
|
-
.saooti-sort-amount-asc:before {
|
|
1466
|
-
content: "\e99e";
|
|
1467
|
-
}
|
|
1468
|
-
.saooti-sort-amount-desc:before {
|
|
1469
|
-
content: "\e99f";
|
|
1470
|
-
}
|
|
1471
|
-
.saooti-checkbox-checked:before {
|
|
1472
|
-
content: "\e9a0";
|
|
1473
|
-
}
|
|
1474
|
-
.saooti-checkbox-unchecked:before {
|
|
1475
|
-
content: "\e9a1";
|
|
1476
|
-
}
|
|
1477
|
-
.saooti-radio-checked:before {
|
|
1478
|
-
content: "\e9a2";
|
|
1479
|
-
}
|
|
1480
|
-
.saooti-radio-unchecked:before {
|
|
1481
|
-
content: "\e9a3";
|
|
1482
|
-
}
|
|
1483
|
-
.saooti-scissors:before {
|
|
1484
|
-
content: "\e9a4";
|
|
1485
|
-
}
|
|
1486
|
-
.saooti-filter:before {
|
|
1487
|
-
content: "\e9a5";
|
|
1488
|
-
}
|
|
1489
|
-
.saooti-table:before {
|
|
1490
|
-
content: "\e9a6";
|
|
1491
|
-
}
|
|
1492
|
-
.saooti-share2:before {
|
|
1493
|
-
content: "\e9a7";
|
|
1494
|
-
}
|
|
1495
|
-
.saooti-mail:before {
|
|
1496
|
-
content: "\e9a8";
|
|
1497
|
-
}
|
|
1498
|
-
.saooti-google-plus2:before {
|
|
1499
|
-
content: "\e9a9";
|
|
1500
|
-
}
|
|
1501
|
-
.saooti-facebook2:before {
|
|
1502
|
-
content: "\e9aa";
|
|
1503
|
-
}
|
|
1504
|
-
.saooti-twitter2:before {
|
|
1505
|
-
content: "\e9ab";
|
|
1506
|
-
}
|
|
1507
|
-
.saooti-feed3:before {
|
|
1508
|
-
content: "\e9ac";
|
|
418
|
+
content: "\e977";
|
|
1509
419
|
}
|