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