@saooti/octopus-sdk 1.0.0 → 1.1.1

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