@configuratorware/configurator-frontendgui 1.28.6 → 1.29.3

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 (482) hide show
  1. package/App/Constant.js +73 -0
  2. package/App/Error/DevelopmentErrorPage/index.js +74 -0
  3. package/App/Error/ErrorBoundary.js +98 -0
  4. package/App/Error/ProductionErrorPage/Style.scss +47 -0
  5. package/App/Error/ProductionErrorPage/index.js +43 -0
  6. package/App/Error/ProductionErrorPage/index.story.js +13 -0
  7. package/App/Error/ProductionErrorPage/res/error_gears.png +0 -0
  8. package/App/Frame.js +95 -0
  9. package/App/Modules/Creator/Components/ConfigurationvariantItem/Styles.scss +33 -0
  10. package/App/Modules/Creator/Components/ConfigurationvariantItem/index.js +118 -0
  11. package/App/Modules/Creator/Components/ConfigurationvariantSelection/Styles.scss +47 -0
  12. package/App/Modules/Creator/Components/ConfigurationvariantSelection/index.js +130 -0
  13. package/App/Modules/Creator/Components/CustomTitleEditor/Styles.scss +43 -0
  14. package/App/Modules/Creator/Components/CustomTitleEditor/index.js +144 -0
  15. package/App/Modules/Creator/Components/ExternalVisualization/index.js +140 -0
  16. package/App/Modules/Creator/Components/FastConfiguration/SelectableRow.js +128 -0
  17. package/App/Modules/Creator/Components/FastConfiguration/Styles.scss +53 -0
  18. package/App/Modules/Creator/Components/FastConfiguration/index.js +280 -0
  19. package/App/Modules/Creator/Components/FastConfigurationRow/Styles.scss +45 -0
  20. package/App/Modules/Creator/Components/FastConfigurationRow/index.js +78 -0
  21. package/App/Modules/Creator/Components/FastConfigurationSelect/Styles.scss +35 -0
  22. package/App/Modules/Creator/Components/FastConfigurationSelect/index.js +251 -0
  23. package/App/Modules/Creator/Components/FormattedNumber/index.js +45 -0
  24. package/App/Modules/Creator/Components/FormattedPrice/index.js +57 -0
  25. package/App/Modules/Creator/Components/FullScreenView/FullScreenView.js +104 -0
  26. package/App/Modules/Creator/Components/Incompatibility/OptionExclusionRule/index.js +186 -0
  27. package/App/Modules/Creator/Components/Incompatibility/OptionRule/index.js +182 -0
  28. package/App/Modules/Creator/Components/Incompatibility/RuleComponent.js +88 -0
  29. package/App/Modules/Creator/Components/Incompatibility/index.js +253 -0
  30. package/App/Modules/Creator/Components/InvalidConfigurationNotice/index.js +164 -0
  31. package/App/Modules/Creator/Components/LoginForm/Styles.scss +9 -0
  32. package/App/Modules/Creator/Components/LoginForm/index.js +129 -0
  33. package/App/Modules/Creator/Components/Option/index.js +545 -0
  34. package/App/Modules/Creator/Components/Option/index.story.js +154 -0
  35. package/App/Modules/Creator/Components/OptionAmount/index.js +236 -0
  36. package/App/Modules/Creator/Components/OptionGroup/index.js +55 -0
  37. package/App/Modules/Creator/Components/Optiondetail/ZoomImage/index.js +173 -0
  38. package/App/Modules/Creator/Components/Optiondetail/index.js +499 -0
  39. package/App/Modules/Creator/Components/Optiondetail/index.story.js +117 -0
  40. package/App/Modules/Creator/Components/OptionsList/index.js +193 -0
  41. package/App/Modules/Creator/Components/Price/Styles.scss +3 -0
  42. package/App/Modules/Creator/Components/Price/index.js +79 -0
  43. package/App/Modules/Creator/Components/ProductPart/index.js +187 -0
  44. package/App/Modules/Creator/Components/ProductPart/index.story.js +88 -0
  45. package/App/Modules/Creator/Components/ProductPartsList/index.js +153 -0
  46. package/App/Modules/Creator/Components/ProductPartsList/index.story.js +101 -0
  47. package/App/Modules/Creator/Components/SavedConfiguration/Styles.scss +19 -0
  48. package/App/Modules/Creator/Components/SavedConfiguration/index.js +82 -0
  49. package/App/Modules/Creator/Components/ShareConfiguration/Styles.scss +23 -0
  50. package/App/Modules/Creator/Components/ShareConfiguration/index.js +224 -0
  51. package/App/Modules/Creator/Components/StockInformation/index.js +93 -0
  52. package/App/Modules/Creator/Components/StoreConfigurationForm/Styles.scss +5 -0
  53. package/App/Modules/Creator/Components/StoreConfigurationForm/index.js +123 -0
  54. package/App/Modules/Creator/Components/Tools/Styles.scss +44 -0
  55. package/App/Modules/Creator/Components/Tools/index.js +102 -0
  56. package/App/Modules/Creator/Components/ValidationResult/Styles.scss +45 -0
  57. package/App/Modules/Creator/Components/ValidationResult/index.js +165 -0
  58. package/App/Modules/Creator/Components/index.js +84 -0
  59. package/App/Modules/Creator/Containers/AmountPrice/index.js +26 -0
  60. package/App/Modules/Creator/Containers/ConfigurationvariantSelection/index.js +60 -0
  61. package/App/Modules/Creator/Containers/CustomTitleEditor/index.js +52 -0
  62. package/App/Modules/Creator/Containers/FastConfiguration/index.js +62 -0
  63. package/App/Modules/Creator/Containers/FormattedPrice/index.js +31 -0
  64. package/App/Modules/Creator/Containers/Incompatibility/index.js +40 -0
  65. package/App/Modules/Creator/Containers/InvalidConfigurationNotice/index.js +89 -0
  66. package/App/Modules/Creator/Containers/LoadingOverlay/index.js +26 -0
  67. package/App/Modules/Creator/Containers/Optiondetail/index.js +48 -0
  68. package/App/Modules/Creator/Containers/OptionsList/index.js +49 -0
  69. package/App/Modules/Creator/Containers/ProductPart/index.js +26 -0
  70. package/App/Modules/Creator/Containers/ProductPartsList/index.js +50 -0
  71. package/App/Modules/Creator/Containers/SavedConfigurationContainer/index.js +25 -0
  72. package/App/Modules/Creator/Containers/ShareConfiguration/index.js +42 -0
  73. package/App/Modules/Creator/Containers/StockInformation/index.js +33 -0
  74. package/App/Modules/Creator/Containers/Tools/index.js +44 -0
  75. package/App/Modules/Creator/Containers/ValidationResult/index.js +34 -0
  76. package/App/Modules/Creator/Containers/index.js +175 -0
  77. package/App/Modules/Creator/CreatorScreen.js +307 -0
  78. package/App/Modules/Creator/Layouts/DefaultLayout.js +260 -0
  79. package/App/Modules/Creator/Styles.scss +216 -0
  80. package/App/Modules/Designer/Components/AddGalleryImage/index.js +234 -0
  81. package/App/Modules/Designer/Components/AddGalleryImage/index.story.js +94 -0
  82. package/App/Modules/Designer/Components/AddGalleryImage/index.test.js +151 -0
  83. package/App/Modules/Designer/Components/AddVisualElement/Styles.scss +0 -0
  84. package/App/Modules/Designer/Components/AddVisualElement/index.js +278 -0
  85. package/App/Modules/Designer/Components/AddVisualElement/index.story.js +24 -0
  86. package/App/Modules/Designer/Components/AddVisualElement/index.test.js +47 -0
  87. package/App/Modules/Designer/Components/CloseDesignEditor/index.js +130 -0
  88. package/App/Modules/Designer/Components/CloseGraphicsEditorButton/index.js +54 -0
  89. package/App/Modules/Designer/Components/ColorPalettes/ColorPalettesSearch.js +175 -0
  90. package/App/Modules/Designer/Components/ColorPalettes/index.js +814 -0
  91. package/App/Modules/Designer/Components/ColorPalettes/index.story.js +158 -0
  92. package/App/Modules/Designer/Components/ColorPalettes/index.test.js +150 -0
  93. package/App/Modules/Designer/Components/DesignAreaControlbox/Styles.scss +0 -0
  94. package/App/Modules/Designer/Components/DesignAreaControlbox/index.js +467 -0
  95. package/App/Modules/Designer/Components/DesignAreaControlbox/index.story.js +272 -0
  96. package/App/Modules/Designer/Components/DesignAreaControlbox/index.test.js +164 -0
  97. package/App/Modules/Designer/Components/DesignerSelectionToolbox/CustomFontOverlay.js +162 -0
  98. package/App/Modules/Designer/Components/DesignerSelectionToolbox/DesignerSelectionToolbox.js +425 -0
  99. package/App/Modules/Designer/Components/DesignerSelectionToolbox/fontItemUtils.js +48 -0
  100. package/App/Modules/Designer/Components/Dialog/index.js +125 -0
  101. package/App/Modules/Designer/Components/EditDesignButton/index.js +128 -0
  102. package/App/Modules/Designer/Components/FeedbackNotice/index.js +110 -0
  103. package/App/Modules/Designer/Components/FeedbackNotice/index.test.js +16 -0
  104. package/App/Modules/Designer/Components/FullScreenView/FullScreenView.js +63 -0
  105. package/App/Modules/Designer/Components/ImageColorPicker/ImageColorPicker.dev.js +32 -0
  106. package/App/Modules/Designer/Components/ImageColorPicker/ImageColorPicker.js +430 -0
  107. package/App/Modules/Designer/Components/ImageColorize/index.js +636 -0
  108. package/App/Modules/Designer/Components/ImageColorize/index.story.js +73 -0
  109. package/App/Modules/Designer/Components/ImageControlbox/index.js +302 -0
  110. package/App/Modules/Designer/Components/ImageEditDialog/ImageThumbnail.js +171 -0
  111. package/App/Modules/Designer/Components/ImageEditDialog/ImageUpload.js +478 -0
  112. package/App/Modules/Designer/Components/ImageEditDialog/index.js +716 -0
  113. package/App/Modules/Designer/Components/ImageEditDialog/res/baseline_colorize_black_24dp.png +0 -0
  114. package/App/Modules/Designer/Components/ImageEditDialog/res/checkers_tile.png +0 -0
  115. package/App/Modules/Designer/Components/ImageLibraryFilter/index.js +179 -0
  116. package/App/Modules/Designer/Components/ImageLibraryThumbnail/Styles.scss +14 -0
  117. package/App/Modules/Designer/Components/ImageLibraryThumbnail/index.js +165 -0
  118. package/App/Modules/Designer/Components/ObjectTools/index.js +146 -0
  119. package/App/Modules/Designer/Components/Select/index.js +171 -0
  120. package/App/Modules/Designer/Components/TextControlbox/TextFormatIcon.js +48 -0
  121. package/App/Modules/Designer/Components/TextControlbox/index.js +656 -0
  122. package/App/Modules/Designer/Components/TextControlbox/index.story.js +109 -0
  123. package/App/Modules/Designer/Components/TextControlbox/index.test.js +172 -0
  124. package/App/Modules/Designer/Containers/AddGalleryImage.js +90 -0
  125. package/App/Modules/Designer/Containers/AddVisualElement.js +166 -0
  126. package/App/Modules/Designer/Containers/CloseDesignEditor.js +32 -0
  127. package/App/Modules/Designer/Containers/CloseGraphicsEditorButton.js +32 -0
  128. package/App/Modules/Designer/Containers/ColorPalettes.js +145 -0
  129. package/App/Modules/Designer/Containers/DesignAreaControlbox.js +54 -0
  130. package/App/Modules/Designer/Containers/Designer.js +37 -0
  131. package/App/Modules/Designer/Containers/DesignerSelectionToolbox.js +116 -0
  132. package/App/Modules/Designer/Containers/EditDesignButton.js +35 -0
  133. package/App/Modules/Designer/Containers/ImageEditDialog.js +1130 -0
  134. package/App/Modules/Designer/Designer.js +231 -0
  135. package/App/Modules/Designer/DesignerScreen.js +255 -0
  136. package/App/Modules/Designer/DesignerUI.js +241 -0
  137. package/App/Modules/Designer/Layouts/DefaultLayout.js +221 -0
  138. package/App/Modules/Designer/Layouts/Mobile/TwoSideBottomBar.js +50 -0
  139. package/App/Modules/Designer/Layouts/PopupAreaProvider.js +186 -0
  140. package/App/Modules/Designer/MultilayerComponents/DesignerClickAwayListener.js +53 -0
  141. package/App/Modules/Designer/MultilayerComponents/InlineToolboxPortal.js +106 -0
  142. package/App/Modules/Designer/MultilayerComponents/StandardToolboxPortal.js +64 -0
  143. package/App/Modules/Designer/Utils/FontFaceRepository.js +82 -0
  144. package/App/Modules/Designer/Utils/ImageEditUtils.js +104 -0
  145. package/App/Modules/Designer/Utils/Transformers.js +164 -0
  146. package/App/Modules/Designer/setupDesigner.js +182 -0
  147. package/App/Modules/Designer/withActiveCanvas.js +136 -0
  148. package/App/Modules/Visualization/AlignTargetContainer.js +55 -0
  149. package/App/Modules/Visualization/CreatorAlignTarget.js +41 -0
  150. package/App/Modules/Visualization/DefaultVisualizationProvider.js +105 -0
  151. package/App/Modules/Visualization/DesignerAlignTarget.js +45 -0
  152. package/App/Modules/Visualization/Utils/getFirstDataURLFromScreenshotsObj.js +20 -0
  153. package/App/Reducers/Actions.js +297 -0
  154. package/App/Reducers/ConfigurationMode/Actions.js +21 -0
  155. package/App/Reducers/ConfigurationMode/Reducer.js +80 -0
  156. package/App/Reducers/ConfigurationMode/Selectors.js +84 -0
  157. package/App/Reducers/Configurator/Actions.js +1417 -0
  158. package/App/Reducers/Configurator/AttributeSelectors.js +32 -0
  159. package/App/Reducers/Configurator/Modifiers.js +35 -0
  160. package/App/Reducers/Configurator/Reducer.js +639 -0
  161. package/App/Reducers/Configurator/Selectors.js +242 -0
  162. package/App/Reducers/Confirm/Actions.js +84 -0
  163. package/App/Reducers/Confirm/Reducer.js +30 -0
  164. package/App/Reducers/DesignArea/Actions.js +76 -0
  165. package/App/Reducers/DesignArea/DesignElementSelectors.js +114 -0
  166. package/App/Reducers/DesignArea/MaskSelectors.js +101 -0
  167. package/App/Reducers/DesignArea/Reducer.js +150 -0
  168. package/App/Reducers/DesignArea/Selectors.js +1304 -0
  169. package/App/Reducers/DesignArea/Transformers.js +333 -0
  170. package/App/Reducers/DesignData/Actions.js +232 -0
  171. package/App/Reducers/DesignData/Modifiers.js +328 -0
  172. package/App/Reducers/DesignData/Reducer.js +189 -0
  173. package/App/Reducers/DesignData/Selectors.js +94 -0
  174. package/App/Reducers/DesignData/Transformers.js +27 -0
  175. package/App/Reducers/DesignView/Actions.js +19 -0
  176. package/App/Reducers/DesignView/Reducer.js +165 -0
  177. package/App/Reducers/DesignView/Selectors.js +130 -0
  178. package/App/Reducers/DesignView/Transformers.js +32 -0
  179. package/App/Reducers/Device/Actions.js +16 -0
  180. package/App/Reducers/Device/Reducer.js +51 -0
  181. package/App/Reducers/Fonts/Actions.js +137 -0
  182. package/App/Reducers/Fonts/Reducer.js +39 -0
  183. package/App/Reducers/Fonts/Selectors.js +98 -0
  184. package/App/Reducers/GeneralActions.js +16 -0
  185. package/App/Reducers/ImageGallery/Actions.js +336 -0
  186. package/App/Reducers/ImageGallery/Modifiers.js +67 -0
  187. package/App/Reducers/ImageGallery/Reducer.js +320 -0
  188. package/App/Reducers/ImageGallery/Selectors.js +206 -0
  189. package/App/Reducers/Reducer.js +107 -0
  190. package/App/Reducers/UI/Actions.js +191 -0
  191. package/App/Reducers/UI/Reducer.js +98 -0
  192. package/App/Reducers/UI/Selectors.js +32 -0
  193. package/App/Reducers.js +48 -0
  194. package/App/Routing.js +168 -0
  195. package/App/Screens/Configurator/CalculationWidgetScreen.js +84 -0
  196. package/App/Screens/Configurator/Components/AmountSelection/Styles.scss +17 -0
  197. package/App/Screens/Configurator/Components/AmountSelection/index.js +170 -0
  198. package/App/Screens/Configurator/Components/AmountSelection/index.story.js +36 -0
  199. package/App/Screens/Configurator/Components/CalculationWidget/index.js +652 -0
  200. package/App/Screens/Configurator/Components/CalculationWidget/index.story.js +154 -0
  201. package/App/Screens/Configurator/Components/CalculationWidget/index.test.js +142 -0
  202. package/App/Screens/Configurator/Components/ConfigurationModeSwitch/ConfigurationModeSwitch.js +82 -0
  203. package/App/Screens/Configurator/Components/ConfigurationModeSwitch/index.js +15 -0
  204. package/App/Screens/Configurator/Components/Confirm/Styles.scss +0 -0
  205. package/App/Screens/Configurator/Components/Confirm/index.js +105 -0
  206. package/App/Screens/Configurator/Components/DesignApproval/index.js +76 -0
  207. package/App/Screens/Configurator/Components/DesignApproval/index.story.js +27 -0
  208. package/App/Screens/Configurator/Components/DesignApproval/index.test.js +31 -0
  209. package/App/Screens/Configurator/Components/Error/index.js +106 -0
  210. package/App/Screens/Configurator/Components/FallbackVisualization/FallbackVisualization.js +96 -0
  211. package/App/Screens/Configurator/Components/FileUpload/FileUploadBase.js +1 -0
  212. package/App/Screens/Configurator/Components/FullScreenView/index.js +304 -0
  213. package/App/Screens/Configurator/Components/FullScreenView/index.test.js +28 -0
  214. package/App/Screens/Configurator/Components/ImageLoader/ImageLoader.js +96 -0
  215. package/App/Screens/Configurator/Components/LandscapeInformation/index.js +75 -0
  216. package/App/Screens/Configurator/Components/NoVisualization/NoVisualization.js +35 -0
  217. package/App/Screens/Configurator/Components/PreviewPortal/index.js +249 -0
  218. package/App/Screens/Configurator/Components/Styles.scss +1 -0
  219. package/App/Screens/Configurator/Components/Thumbnail/index.js +394 -0
  220. package/App/Screens/Configurator/Components/Thumbnail/index.test.js +50 -0
  221. package/App/Screens/Configurator/Components/TotalPrice/TotalPrice.js +57 -0
  222. package/App/Screens/Configurator/Containers/AmountPrice.js +84 -0
  223. package/App/Screens/Configurator/Containers/CalculationWidget.js +278 -0
  224. package/App/Screens/Configurator/Containers/ConfigurationModeSwitch.js +81 -0
  225. package/App/Screens/Configurator/Containers/Confirm.js +37 -0
  226. package/App/Screens/Configurator/Containers/DesignApproval.js +129 -0
  227. package/App/Screens/Configurator/Containers/FallbackVisualization.js +32 -0
  228. package/App/Screens/Configurator/Containers/FullScreenView.js +47 -0
  229. package/App/Screens/Configurator/Containers/Thumbnail.js +41 -0
  230. package/App/Screens/Configurator/Containers/Visualization.js +13 -0
  231. package/App/Screens/Configurator/DynamicComponents.js +40 -0
  232. package/App/Screens/Configurator/Screen.js +238 -0
  233. package/App/Screens/Configurator/ScreenPropTypes.js +45 -0
  234. package/App/Screens/Configurator/ThemeProvider.js +298 -0
  235. package/App/Screens/DesignerProductPreview/Constants.js +12 -0
  236. package/App/Screens/DesignerProductPreview/DesignerProductPreviewManager.js +554 -0
  237. package/App/Screens/DesignerProductPreview/Screen.js +407 -0
  238. package/App/Screens.js +42 -0
  239. package/App/ServiceLocator.js +309 -0
  240. package/App/Services/AdminareaCommunicationService.js +149 -0
  241. package/App/Services/AnalyticsService.js +403 -0
  242. package/App/Services/ConfiguratorService.js +1166 -0
  243. package/App/Services/DesignDataService.js +3249 -0
  244. package/App/Services/DesignerService.js +496 -0
  245. package/App/Services/InteractionService.js +784 -0
  246. package/App/Services/UIService.js +129 -0
  247. package/App/Services/VisualizationService.js +844 -0
  248. package/App/Shared/Components/AcceptDesign/index.js +166 -0
  249. package/App/Shared/Components/AddToBasket/index.js +194 -0
  250. package/App/Shared/Components/AddToBasket/index.story.js +47 -0
  251. package/App/Shared/Components/AlertDialog/index.js +138 -0
  252. package/App/Shared/Components/AmountInput/Styles.scss +6 -0
  253. package/App/Shared/Components/AmountInput/index.js +296 -0
  254. package/App/Shared/Components/AmountInput/index.story.js +29 -0
  255. package/App/Shared/Components/AmountPrice/index.js +925 -0
  256. package/App/Shared/Components/AmountPrice/index.story.js +112 -0
  257. package/App/Shared/Components/AmountPrice/index.test.js +125 -0
  258. package/App/Shared/Components/Analytics/AnalyticsWrapper.js +49 -0
  259. package/App/Shared/Components/BulkNames/index.js +319 -0
  260. package/App/Shared/Components/CallToAction/index.js +220 -0
  261. package/App/Shared/Components/Header/Header.js +150 -0
  262. package/App/Shared/Components/Header/index.js +15 -0
  263. package/App/Shared/Components/Header/index.story.js +143 -0
  264. package/App/Shared/Components/InformationTag/InformationTag.js +155 -0
  265. package/App/Shared/Components/LicenseNotice/LicenseNotice.js +148 -0
  266. package/App/Shared/Components/LicenseNotice/index.js +15 -0
  267. package/App/Shared/Components/LoadConfiguration/index.js +218 -0
  268. package/App/Shared/Components/MessageBox/index.js +84 -0
  269. package/App/Shared/Components/MessageBox/index.story.js +49 -0
  270. package/App/Shared/Components/Notification/index.js +105 -0
  271. package/App/Shared/Components/Notification/index.story.js +55 -0
  272. package/App/Shared/Components/PdfDownload/index.js +150 -0
  273. package/App/Shared/Components/PlusMinusInput/index.js +118 -0
  274. package/App/Shared/Components/PriceList/index.js +237 -0
  275. package/App/Shared/Components/PriceList/index.story.js +114 -0
  276. package/App/Shared/Components/PriceOverview/index.js +177 -0
  277. package/App/Shared/Components/PriceOverview/index.story.js +215 -0
  278. package/App/Shared/Components/ProductVariant/Image.js +75 -0
  279. package/App/Shared/Components/ProductVariant/Styles.scss +11 -0
  280. package/App/Shared/Components/ProductVariant/index.js +477 -0
  281. package/App/Shared/Components/ProductVariant/index.story.js +283 -0
  282. package/App/Shared/Components/Progress/Progress.js +59 -0
  283. package/App/Shared/Components/ReceiveOfferForm/index.js +432 -0
  284. package/App/Shared/Components/ReceiveOfferForm/index.story.js +32 -0
  285. package/App/Shared/Components/ReceiveOfferForm/index.test.js +36 -0
  286. package/App/Shared/Components/SaveConfiguration/index.js +286 -0
  287. package/App/Shared/Components/SendEmail/index.js +103 -0
  288. package/App/Shared/Components/Stepper/index.js +136 -0
  289. package/App/Shared/Components/Stepper/index.story.js +38 -0
  290. package/App/Shared/Components/ToolbarList/index.js +231 -0
  291. package/App/Shared/Components/ToolbarList/index.story.js +33 -0
  292. package/App/Shared/Components/VariantChooser/index.js +270 -0
  293. package/App/Shared/Components/VariantChooser/index.story.js +100 -0
  294. package/App/Shared/Containers/AlertMessages.js +37 -0
  295. package/App/Shared/Containers/AmountPrice/AmountPriceAdminareaWrapper.js +40 -0
  296. package/App/Shared/Containers/AmountPrice/index.js +284 -0
  297. package/App/Shared/Containers/BulkNames.js +310 -0
  298. package/App/Shared/Containers/Error.js +37 -0
  299. package/App/Shared/Containers/GlobalLoader.js +25 -0
  300. package/App/Shared/Containers/Header/index.js +178 -0
  301. package/App/Shared/Containers/LicenseNotice/LicenseNotice.js +26 -0
  302. package/App/Shared/Containers/LicenseNotice/index.js +15 -0
  303. package/App/Shared/Containers/LoadConfiguration/LoadConfiguration.js +146 -0
  304. package/App/Shared/Containers/LoadConfiguration/index.js +15 -0
  305. package/App/Shared/Containers/PdfDownload/index.js +39 -0
  306. package/App/Shared/Containers/ProductVariant/ProductVariant.js +339 -0
  307. package/App/Shared/Containers/ProductVariant/index.js +15 -0
  308. package/App/Shared/Containers/SaveConfiguration.js +49 -0
  309. package/App/Shared/Containers/SendEmail/SendEmail.js +45 -0
  310. package/App/Shared/Containers/SendEmail/index.js +15 -0
  311. package/App/Shared/Providers/DefaultCanvasProvider.js +86 -0
  312. package/App/Storage.js +17 -0
  313. package/App/Store.js +87 -0
  314. package/App/Styles.scss +0 -0
  315. package/App/Translations.js +88 -0
  316. package/App/Utils/createMessageInterface.js +65 -0
  317. package/App/Utils/customClassName.js +12 -0
  318. package/App/Utils/getContrastText.js +27 -0
  319. package/App/Utils/getImageUrl.js +32 -0
  320. package/App/Variables.scss +84 -0
  321. package/App/configuration.js +421 -0
  322. package/App/index.js +52 -0
  323. package/App/initServices.js +67 -0
  324. package/App/setup.js +22 -0
  325. package/App/versionInfo.js +8 -0
  326. package/Framework/Api.js +178 -0
  327. package/Framework/ComponentContainer.js +165 -0
  328. package/Framework/Components/Carousel/Styles.scss +85 -0
  329. package/Framework/Components/Carousel/index.js +322 -0
  330. package/Framework/Components/Dialog/Style.scss +79 -0
  331. package/Framework/Components/Dialog/index.js +721 -0
  332. package/Framework/Components/DialogSelect/Styles.scss +53 -0
  333. package/Framework/Components/DialogSelect/index.js +331 -0
  334. package/Framework/Components/Input/index.js +147 -0
  335. package/Framework/Components/LoadingOverlay/Styles.scss +37 -0
  336. package/Framework/Components/LoadingOverlay/index.js +33 -0
  337. package/Framework/Components/Markdown/index.js +62 -0
  338. package/Framework/Components/Mobile/index.js +33 -0
  339. package/Framework/CustomError.js +51 -0
  340. package/Framework/Helpers/TransitionDetect.js +116 -0
  341. package/Framework/Helpers/isLandscapeMobile.js +14 -0
  342. package/Framework/Helpers/isMobileDevice.js +17 -0
  343. package/Framework/Helpers/isMobileSize.js +13 -0
  344. package/Framework/Mixins.scss +235 -0
  345. package/Framework/Services/AbstractAdminareaCommunicationService.js +48 -0
  346. package/Framework/Services/AbstractAsyncService.js +44 -0
  347. package/Framework/Services/AbstractConfiguratorService.js +47 -0
  348. package/Framework/Services/AbstractInteractionService.js +50 -0
  349. package/Framework/Services/AbstractStoreService.js +42 -0
  350. package/Framework/Services/AbstractUIService.js +53 -0
  351. package/Framework/Services/AbstractVisualizationService.js +47 -0
  352. package/Framework/Services/AsyncService.js +93 -0
  353. package/Framework/Services/StoreService.js +237 -0
  354. package/Framework/Variables.scss +22 -0
  355. package/Framework/bindDecorator.js +173 -0
  356. package/Framework/i18n.js +382 -0
  357. package/README.md +5 -26
  358. package/Resources/Icons/MaterialUI/Icons/AddCircle.js +13 -0
  359. package/Resources/Icons/MaterialUI/Icons/RemoveCircle.js +13 -0
  360. package/Resources/Icons/MaterialUI/fontFace.scss +37 -0
  361. package/Resources/Icons/MaterialUI/fonts/MaterialIcons-Regular.eot +0 -0
  362. package/Resources/Icons/MaterialUI/fonts/MaterialIcons-Regular.svg +2373 -0
  363. package/Resources/Icons/MaterialUI/fonts/MaterialIcons-Regular.ttf +0 -0
  364. package/Resources/Icons/MaterialUI/fonts/MaterialIcons-Regular.woff +0 -0
  365. package/Resources/Icons/MaterialUI/fonts/MaterialIcons-Regular.woff2 +0 -0
  366. package/Resources/Icons/fonts/ionicons.eot +0 -0
  367. package/Resources/Icons/fonts/ionicons.svg +2230 -0
  368. package/Resources/Icons/fonts/ionicons.ttf +0 -0
  369. package/Resources/Icons/fonts/ionicons.woff +0 -0
  370. package/Resources/Icons/ionicons.scss +1489 -0
  371. package/Resources/Icons/ioniconsExtend.scss +1469 -0
  372. package/Resources/Icons/v4/fontFace.scss +11 -0
  373. package/Resources/Icons/v4/fonts/ionicons.eot +0 -0
  374. package/Resources/Icons/v4/fonts/ionicons.svg +2090 -0
  375. package/Resources/Icons/v4/fonts/ionicons.ttf +0 -0
  376. package/Resources/Icons/v4/fonts/ionicons.woff +0 -0
  377. package/Resources/Icons/v4/fonts/ionicons.woff2 +0 -0
  378. package/Resources/Icons/v4/icons.scss +15 -0
  379. package/Resources/Icons/v4/iconsExtend.scss +7 -0
  380. package/Resources/Images/designer_placeholder_logo.svg +1 -0
  381. package/Resources/Masks/circle.svg +4 -0
  382. package/Shared/Components/CustomDialog.js +133 -0
  383. package/Shared/Components/CustomDialogSelect.js +161 -0
  384. package/Shared/Components/MainButton.js +81 -0
  385. package/Shared/ErrorTypes/DeferredError.js +51 -0
  386. package/Shared/HOCs/ResizeDetect/ResizeDetect.dev.js +60 -0
  387. package/Shared/HOCs/ResizeDetect/ResizeDetect.js +217 -0
  388. package/Shared/HOCs/getDisplayName.js +10 -0
  389. package/Shared/HOCs/withFixedChangeHandler.js +46 -0
  390. package/Shared/PropTypes/ReactComponent.js +13 -0
  391. package/Shared/Styles/absoluteCenter.js +17 -0
  392. package/Utils/Array/isIdentical.js +38 -0
  393. package/Utils/Async/AsyncManager.js +128 -0
  394. package/Utils/Async/Deferred.js +145 -0
  395. package/Utils/Async/ObjectLock.js +38 -0
  396. package/Utils/Decorators/Observable.js +130 -0
  397. package/Utils/Dev/HOCs/withFilePicker.js +101 -0
  398. package/Utils/Dev/isDev.js +21 -0
  399. package/Utils/Events/pointerEvent.js +199 -0
  400. package/Utils/Events/preventEventDoubling.js +23 -0
  401. package/Utils/Function/cached.js +64 -0
  402. package/Utils/Function/createDebounceManager.js +77 -0
  403. package/Utils/Function/createSelector.js +62 -0
  404. package/Utils/Function/memoize.js +46 -0
  405. package/Utils/Function/sendMessage.js +22 -0
  406. package/Utils/Helper/createSelectionRangeMemo.js +45 -0
  407. package/Utils/Immutable/set.js +81 -0
  408. package/Utils/Math/conversions.js +13 -0
  409. package/Utils/Math/isPositiveNumber.js +12 -0
  410. package/Utils/Redux/createActionWithGlobalState.js +23 -0
  411. package/Utils/Styles/combineMediaQueries.js +24 -0
  412. package/Utils/Styles/createCheckerBoardBackground.js +22 -0
  413. package/Utils/Test/CallOrderChecker.js +29 -0
  414. package/Utils/Test/createStoreProvider.js +33 -0
  415. package/Utils/Test/formDataToJSON.js +20 -0
  416. package/Utils/Test/mountWithState.js +40 -0
  417. package/index.js +8 -0
  418. package/package.json +22 -103
  419. package/public/translations/de_DE.json +3 -0
  420. package/public/translations/en_GB.json +3 -0
  421. package/scripts/cpPublic.js +3 -3
  422. package/scripts/getDefaultWebpackConfig.js +11 -10
  423. package/src/App/Error/ProductionErrorPage/Style.scss +1 -1
  424. package/src/App/Modules/Creator/Components/Incompatibility/OptionExclusionRule/index.js +116 -0
  425. package/src/App/Modules/Creator/Components/Incompatibility/index.js +2 -1
  426. package/src/App/Modules/Creator/Components/Option/index.test.js +1 -1
  427. package/src/App/Modules/Creator/Components/OptionAmount/index.test.js +1 -1
  428. package/src/App/Modules/Creator/Components/ProductPart/__snapshots__/index.test.js.snap +33 -10
  429. package/src/App/Modules/Creator/Components/ProductPart/index.js +5 -1
  430. package/src/App/Modules/Creator/Components/ProductPart/index.test.js +14 -1
  431. package/src/App/Modules/Creator/Components/ProductPartsList/index.js +3 -0
  432. package/src/App/Modules/Creator/Containers/ProductPartsList/index.js +1 -0
  433. package/src/App/Modules/Designer/Components/AddGalleryImage/index.story.js +1 -1
  434. package/src/App/Modules/Designer/Components/ColorPalettes/index.test.jsx +1 -1
  435. package/src/App/Modules/Designer/Components/DesignAreaControlbox/index.js +21 -4
  436. package/src/App/Modules/Designer/Components/DesignAreaControlbox/index.test.jsx +1 -1
  437. package/src/App/Modules/Designer/Components/TextControlbox/index.test.jsx +1 -1
  438. package/src/App/Modules/Designer/Containers/Designer.js +1 -1
  439. package/src/App/Modules/Designer/DesignerScreen.js +32 -8
  440. package/src/App/{Screens/Configurator → Modules/Designer}/DesignerUI.js +42 -26
  441. package/src/App/Modules/Designer/Layouts/DefaultLayout.js +35 -1
  442. package/src/App/Modules/Designer/MultilayerComponents/DesignerClickAwayListener.js +18 -0
  443. package/src/App/Modules/Designer/MultilayerComponents/InlineToolboxPortal.js +54 -0
  444. package/src/App/Modules/Designer/MultilayerComponents/StandardToolboxPortal.js +38 -0
  445. package/src/App/Reducers/DesignView/Actions.js +1 -2
  446. package/src/App/Reducers/DesignView/Reducer.js +2 -10
  447. package/src/App/Reducers/DesignView/__mocks__/designerViewData.js +0 -1
  448. package/src/App/Reducers/DesignView/__tests__/Reducer.test.js +0 -22
  449. package/src/App/Reducers/ImageGallery/Actions.js +1 -1
  450. package/src/App/Screens/Configurator/Components/CalculationWidget/__snapshots__/index.test.jsx.snap +4 -4
  451. package/src/App/Screens/Configurator/Components/CalculationWidget/index.test.jsx +1 -1
  452. package/src/App/Screens/Configurator/Components/DesignApproval/index.test.jsx +1 -1
  453. package/src/App/Screens/Configurator/Components/FullScreenView/__snapshots__/index.test.jsx.snap +1 -1
  454. package/src/App/Screens/Configurator/Components/FullScreenView/index.js +3 -2
  455. package/src/App/Screens/Configurator/Components/FullScreenView/index.test.jsx +1 -1
  456. package/src/App/Screens/Configurator/Components/PreviewPortal/index.js +7 -3
  457. package/src/App/Screens/Configurator/Containers/AmountPrice.js +1 -1
  458. package/src/App/Screens/Configurator/Containers/Confirm.js +1 -1
  459. package/src/App/Screens/Configurator/Containers/FullScreenView.js +1 -0
  460. package/src/App/Screens/Configurator/Containers/__tests__/Designer.test.js +1 -1
  461. package/src/App/Screens/Configurator/Screen.js +3 -1
  462. package/src/App/Screens/DesignerProductPreview/__tests__/__snapshots__/Screen.test.js.snap +1 -1
  463. package/src/App/Services/ConfiguratorService.js +25 -4
  464. package/src/App/Services/InteractionService.js +2 -1
  465. package/src/App/Services/VisualizationService.js +3 -0
  466. package/src/App/Services/__tests__/DesignDataService.selectViewForComponent.test.js +0 -53
  467. package/src/App/Shared/Containers/AlertMessages.js +1 -1
  468. package/src/App/Shared/Containers/AmountPrice/index.test.js +1 -1
  469. package/src/App/Shared/Containers/Error.js +1 -1
  470. package/src/App/Shared/Containers/SaveConfiguration.js +1 -1
  471. package/src/App/Translations.js +1 -1
  472. package/src/App/Utils/createMessageInterface.js +10 -0
  473. package/src/App/configuration.js +3 -0
  474. package/src/Framework/i18n.js +2 -3
  475. package/babel.config.js +0 -46
  476. package/public/ConfigurationMessagingDemo.html +0 -55
  477. package/scripts/cpPath.js +0 -135
  478. package/scripts/moveLibToPackageRoot.js +0 -40
  479. package/scripts/rmDir.js +0 -29
  480. package/scripts/updateLocalPackages.js +0 -68
  481. package/scripts/utils/process.js +0 -19
  482. package/tsconfig.json +0 -22
@@ -0,0 +1,1469 @@
1
+ @import "v4/iconsExtend";
2
+
3
+ %ion, %ionicons, %ion-alert:before, %ion-alert-circled:before, %ion-android-add:before, %ion-android-add-circle:before, %ion-android-alarm-clock:before, %ion-android-alert:before, %ion-android-apps:before, %ion-android-archive:before, %ion-android-arrow-back:before, %ion-android-arrow-down:before, %ion-android-arrow-dropdown:before, %ion-android-arrow-dropdown-circle:before, %ion-android-arrow-dropleft:before, %ion-android-arrow-dropleft-circle:before, %ion-android-arrow-dropright:before, %ion-android-arrow-dropright-circle:before, %ion-android-arrow-dropup:before, %ion-android-arrow-dropup-circle:before, %ion-android-arrow-forward:before, %ion-android-arrow-up:before, %ion-android-attach:before, %ion-android-bar:before, %ion-android-bicycle:before, %ion-android-boat:before, %ion-android-bookmark:before, %ion-android-bulb:before, %ion-android-bus:before, %ion-android-calendar:before, %ion-android-call:before, %ion-android-camera:before, %ion-android-cancel:before, %ion-android-car:before, %ion-android-cart:before, %ion-android-chat:before, %ion-android-checkbox:before, %ion-android-checkbox-blank:before, %ion-android-checkbox-outline:before, %ion-android-checkbox-outline-blank:before, %ion-android-checkmark-circle:before, %ion-android-clipboard:before, %ion-android-close:before, %ion-android-cloud:before, %ion-android-cloud-circle:before, %ion-android-cloud-done:before, %ion-android-cloud-outline:before, %ion-android-color-palette:before, %ion-android-compass:before, %ion-android-contact:before, %ion-android-contacts:before, %ion-android-contract:before, %ion-android-create:before, %ion-android-delete:before, %ion-android-desktop:before, %ion-android-document:before, %ion-android-done:before, %ion-android-done-all:before, %ion-android-download:before, %ion-android-drafts:before, %ion-android-exit:before, %ion-android-expand:before, %ion-android-favorite:before, %ion-android-favorite-outline:before, %ion-android-film:before, %ion-android-folder:before, %ion-android-folder-open:before, %ion-android-funnel:before, %ion-android-globe:before, %ion-android-hand:before, %ion-android-hangout:before, %ion-android-happy:before, %ion-android-home:before, %ion-android-image:before, %ion-android-laptop:before, %ion-android-list:before, %ion-android-locate:before, %ion-android-lock:before, %ion-android-mail:before, %ion-android-map:before, %ion-android-menu:before, %ion-android-microphone:before, %ion-android-microphone-off:before, %ion-android-more-horizontal:before, %ion-android-more-vertical:before, %ion-android-navigate:before, %ion-android-notifications:before, %ion-android-notifications-none:before, %ion-android-notifications-off:before, %ion-android-open:before, %ion-android-options:before, %ion-android-people:before, %ion-android-person:before, %ion-android-person-add:before, %ion-android-phone-landscape:before, %ion-android-phone-portrait:before, %ion-android-pin:before, %ion-android-plane:before, %ion-android-playstore:before, %ion-android-print:before, %ion-android-radio-button-off:before, %ion-android-radio-button-on:before, %ion-android-refresh:before, %ion-android-remove:before, %ion-android-remove-circle:before, %ion-android-restaurant:before, %ion-android-sad:before, %ion-android-search:before, %ion-android-send:before, %ion-android-settings:before, %ion-android-share:before, %ion-android-share-alt:before, %ion-android-star:before, %ion-android-star-half:before, %ion-android-star-outline:before, %ion-android-stopwatch:before, %ion-android-subway:before, %ion-android-sunny:before, %ion-android-sync:before, %ion-android-textsms:before, %ion-android-time:before, %ion-android-train:before, %ion-android-unlock:before, %ion-android-upload:before, %ion-android-volume-down:before, %ion-android-volume-mute:before, %ion-android-volume-off:before, %ion-android-volume-up:before, %ion-android-walk:before, %ion-android-warning:before, %ion-android-watch:before, %ion-android-wifi:before, %ion-aperture:before, %ion-archive:before, %ion-arrow-down-a:before, %ion-arrow-down-b:before, %ion-arrow-down-c:before, %ion-arrow-expand:before, %ion-arrow-graph-down-left:before, %ion-arrow-graph-down-right:before, %ion-arrow-graph-up-left:before, %ion-arrow-graph-up-right:before, %ion-arrow-left-a:before, %ion-arrow-left-b:before, %ion-arrow-left-c:before, %ion-arrow-move:before, %ion-arrow-resize:before, %ion-arrow-return-left:before, %ion-arrow-return-right:before, %ion-arrow-right-a:before, %ion-arrow-right-b:before, %ion-arrow-right-c:before, %ion-arrow-shrink:before, %ion-arrow-swap:before, %ion-arrow-up-a:before, %ion-arrow-up-b:before, %ion-arrow-up-c:before, %ion-asterisk:before, %ion-at:before, %ion-backspace:before, %ion-backspace-outline:before, %ion-bag:before, %ion-battery-charging:before, %ion-battery-empty:before, %ion-battery-full:before, %ion-battery-half:before, %ion-battery-low:before, %ion-beaker:before, %ion-beer:before, %ion-bluetooth:before, %ion-bonfire:before, %ion-bookmark:before, %ion-bowtie:before, %ion-briefcase:before, %ion-bug:before, %ion-calculator:before, %ion-calendar:before, %ion-camera:before, %ion-card:before, %ion-cash:before, %ion-chatbox:before, %ion-chatbox-working:before, %ion-chatboxes:before, %ion-chatbubble:before, %ion-chatbubble-working:before, %ion-chatbubbles:before, %ion-checkmark:before, %ion-checkmark-circled:before, %ion-checkmark-round:before, %ion-chevron-down:before, %ion-chevron-left:before, %ion-chevron-right:before, %ion-chevron-up:before, %ion-clipboard:before, %ion-clock:before, %ion-close:before, %ion-close-circled:before, %ion-close-round:before, %ion-closed-captioning:before, %ion-cloud:before, %ion-code:before, %ion-code-download:before, %ion-code-working:before, %ion-coffee:before, %ion-compass:before, %ion-compose:before, %ion-connection-bars:before, %ion-contrast:before, %ion-crop:before, %ion-cube:before, %ion-disc:before, %ion-document:before, %ion-document-text:before, %ion-drag:before, %ion-earth:before, %ion-easel:before, %ion-edit:before, %ion-egg:before, %ion-eject:before, %ion-email:before, %ion-email-unread:before, %ion-erlenmeyer-flask:before, %ion-erlenmeyer-flask-bubbles:before, %ion-eye:before, %ion-eye-disabled:before, %ion-female:before, %ion-filing:before, %ion-film-marker:before, %ion-fireball:before, %ion-flag:before, %ion-flame:before, %ion-flash:before, %ion-flash-off:before, %ion-folder:before, %ion-fork:before, %ion-fork-repo:before, %ion-forward:before, %ion-funnel:before, %ion-gear-a:before, %ion-gear-b:before, %ion-grid:before, %ion-hammer:before, %ion-happy:before, %ion-happy-outline:before, %ion-headphone:before, %ion-heart:before, %ion-heart-broken:before, %ion-help:before, %ion-help-buoy:before, %ion-help-circled:before, %ion-home:before, %ion-icecream:before, %ion-image:before, %ion-images:before, %ion-information:before, %ion-information-circled:before, %ion-ionic:before, %ion-ios-alarm:before, %ion-ios-alarm-outline:before, %ion-ios-albums:before, %ion-ios-albums-outline:before, %ion-ios-americanfootball:before, %ion-ios-americanfootball-outline:before, %ion-ios-analytics:before, %ion-ios-analytics-outline:before, %ion-ios-arrow-back:before, %ion-ios-arrow-down:before, %ion-ios-arrow-forward:before, %ion-ios-arrow-left:before, %ion-ios-arrow-right:before, %ion-ios-arrow-thin-down:before, %ion-ios-arrow-thin-left:before, %ion-ios-arrow-thin-right:before, %ion-ios-arrow-thin-up:before, %ion-ios-arrow-up:before, %ion-ios-at:before, %ion-ios-at-outline:before, %ion-ios-barcode:before, %ion-ios-barcode-outline:before, %ion-ios-baseball:before, %ion-ios-baseball-outline:before, %ion-ios-basketball:before, %ion-ios-basketball-outline:before, %ion-ios-bell:before, %ion-ios-bell-outline:before, %ion-ios-body:before, %ion-ios-body-outline:before, %ion-ios-bolt:before, %ion-ios-bolt-outline:before, %ion-ios-book:before, %ion-ios-book-outline:before, %ion-ios-bookmarks:before, %ion-ios-bookmarks-outline:before, %ion-ios-box:before, %ion-ios-box-outline:before, %ion-ios-briefcase:before, %ion-ios-briefcase-outline:before, %ion-ios-browsers:before, %ion-ios-browsers-outline:before, %ion-ios-calculator:before, %ion-ios-calculator-outline:before, %ion-ios-calendar:before, %ion-ios-calendar-outline:before, %ion-ios-camera:before, %ion-ios-camera-outline:before, %ion-ios-cart:before, %ion-ios-cart-outline:before, %ion-ios-chatboxes:before, %ion-ios-chatboxes-outline:before, %ion-ios-chatbubble:before, %ion-ios-chatbubble-outline:before, %ion-ios-checkmark:before, %ion-ios-checkmark-empty:before, %ion-ios-checkmark-outline:before, %ion-ios-circle-filled:before, %ion-ios-circle-outline:before, %ion-ios-clock:before, %ion-ios-clock-outline:before, %ion-ios-close:before, %ion-ios-close-empty:before, %ion-ios-close-outline:before, %ion-ios-cloud:before, %ion-ios-cloud-download:before, %ion-ios-cloud-download-outline:before, %ion-ios-cloud-outline:before, %ion-ios-cloud-upload:before, %ion-ios-cloud-upload-outline:before, %ion-ios-cloudy:before, %ion-ios-cloudy-night:before, %ion-ios-cloudy-night-outline:before, %ion-ios-cloudy-outline:before, %ion-ios-cog:before, %ion-ios-cog-outline:before, %ion-ios-color-filter:before, %ion-ios-color-filter-outline:before, %ion-ios-color-wand:before, %ion-ios-color-wand-outline:before, %ion-ios-compose:before, %ion-ios-compose-outline:before, %ion-ios-contact:before, %ion-ios-contact-outline:before, %ion-ios-copy:before, %ion-ios-copy-outline:before, %ion-ios-crop:before, %ion-ios-crop-strong:before, %ion-ios-download:before, %ion-ios-download-outline:before, %ion-ios-drag:before, %ion-ios-email:before, %ion-ios-email-outline:before, %ion-ios-eye:before, %ion-ios-eye-outline:before, %ion-ios-fastforward:before, %ion-ios-fastforward-outline:before, %ion-ios-filing:before, %ion-ios-filing-outline:before, %ion-ios-film:before, %ion-ios-film-outline:before, %ion-ios-flag:before, %ion-ios-flag-outline:before, %ion-ios-flame:before, %ion-ios-flame-outline:before, %ion-ios-flask:before, %ion-ios-flask-outline:before, %ion-ios-flower:before, %ion-ios-flower-outline:before, %ion-ios-folder:before, %ion-ios-folder-outline:before, %ion-ios-football:before, %ion-ios-football-outline:before, %ion-ios-game-controller-a:before, %ion-ios-game-controller-a-outline:before, %ion-ios-game-controller-b:before, %ion-ios-game-controller-b-outline:before, %ion-ios-gear:before, %ion-ios-gear-outline:before, %ion-ios-glasses:before, %ion-ios-glasses-outline:before, %ion-ios-grid-view:before, %ion-ios-grid-view-outline:before, %ion-ios-heart:before, %ion-ios-heart-outline:before, %ion-ios-help:before, %ion-ios-help-empty:before, %ion-ios-help-outline:before, %ion-ios-home:before, %ion-ios-home-outline:before, %ion-ios-infinite:before, %ion-ios-infinite-outline:before, %ion-ios-information:before, %ion-ios-information-empty:before, %ion-ios-information-outline:before, %ion-ios-ionic-outline:before, %ion-ios-keypad:before, %ion-ios-keypad-outline:before, %ion-ios-lightbulb:before, %ion-ios-lightbulb-outline:before, %ion-ios-list:before, %ion-ios-list-outline:before, %ion-ios-location:before, %ion-ios-location-outline:before, %ion-ios-locked:before, %ion-ios-locked-outline:before, %ion-ios-loop:before, %ion-ios-loop-strong:before, %ion-ios-medical:before, %ion-ios-medical-outline:before, %ion-ios-medkit:before, %ion-ios-medkit-outline:before, %ion-ios-mic:before, %ion-ios-mic-off:before, %ion-ios-mic-outline:before, %ion-ios-minus:before, %ion-ios-minus-empty:before, %ion-ios-minus-outline:before, %ion-ios-monitor:before, %ion-ios-monitor-outline:before, %ion-ios-moon:before, %ion-ios-moon-outline:before, %ion-ios-more:before, %ion-ios-more-outline:before, %ion-ios-musical-note:before, %ion-ios-musical-notes:before, %ion-ios-navigate:before, %ion-ios-navigate-outline:before, %ion-ios-nutrition:before, %ion-ios-nutrition-outline:before, %ion-ios-paper:before, %ion-ios-paper-outline:before, %ion-ios-paperplane:before, %ion-ios-paperplane-outline:before, %ion-ios-partlysunny:before, %ion-ios-partlysunny-outline:before, %ion-ios-pause:before, %ion-ios-pause-outline:before, %ion-ios-paw:before, %ion-ios-paw-outline:before, %ion-ios-people:before, %ion-ios-people-outline:before, %ion-ios-person:before, %ion-ios-person-outline:before, %ion-ios-personadd:before, %ion-ios-personadd-outline:before, %ion-ios-photos:before, %ion-ios-photos-outline:before, %ion-ios-pie:before, %ion-ios-pie-outline:before, %ion-ios-pint:before, %ion-ios-pint-outline:before, %ion-ios-play:before, %ion-ios-play-outline:before, %ion-ios-plus:before, %ion-ios-plus-empty:before, %ion-ios-plus-outline:before, %ion-ios-pricetag:before, %ion-ios-pricetag-outline:before, %ion-ios-pricetags:before, %ion-ios-pricetags-outline:before, %ion-ios-printer:before, %ion-ios-printer-outline:before, %ion-ios-pulse:before, %ion-ios-pulse-strong:before, %ion-ios-rainy:before, %ion-ios-rainy-outline:before, %ion-ios-recording:before, %ion-ios-recording-outline:before, %ion-ios-redo:before, %ion-ios-redo-outline:before, %ion-ios-refresh:before, %ion-ios-refresh-empty:before, %ion-ios-refresh-outline:before, %ion-ios-reload:before, %ion-ios-reverse-camera:before, %ion-ios-reverse-camera-outline:before, %ion-ios-rewind:before, %ion-ios-rewind-outline:before, %ion-ios-rose:before, %ion-ios-rose-outline:before, %ion-ios-search:before, %ion-ios-search-strong:before, %ion-ios-settings:before, %ion-ios-settings-strong:before, %ion-ios-shuffle:before, %ion-ios-shuffle-strong:before, %ion-ios-skipbackward:before, %ion-ios-skipbackward-outline:before, %ion-ios-skipforward:before, %ion-ios-skipforward-outline:before, %ion-ios-snowy:before, %ion-ios-speedometer:before, %ion-ios-speedometer-outline:before, %ion-ios-star:before, %ion-ios-star-half:before, %ion-ios-star-outline:before, %ion-ios-stopwatch:before, %ion-ios-stopwatch-outline:before, %ion-ios-sunny:before, %ion-ios-sunny-outline:before, %ion-ios-telephone:before, %ion-ios-telephone-outline:before, %ion-ios-tennisball:before, %ion-ios-tennisball-outline:before, %ion-ios-thunderstorm:before, %ion-ios-thunderstorm-outline:before, %ion-ios-time:before, %ion-ios-time-outline:before, %ion-ios-timer:before, %ion-ios-timer-outline:before, %ion-ios-toggle:before, %ion-ios-toggle-outline:before, %ion-ios-trash:before, %ion-ios-trash-outline:before, %ion-ios-undo:before, %ion-ios-undo-outline:before, %ion-ios-unlocked:before, %ion-ios-unlocked-outline:before, %ion-ios-upload:before, %ion-ios-upload-outline:before, %ion-ios-videocam:before, %ion-ios-videocam-outline:before, %ion-ios-volume-high:before, %ion-ios-volume-low:before, %ion-ios-wineglass:before, %ion-ios-wineglass-outline:before, %ion-ios-world:before, %ion-ios-world-outline:before, %ion-ipad:before, %ion-iphone:before, %ion-ipod:before, %ion-jet:before, %ion-key:before, %ion-knife:before, %ion-laptop:before, %ion-leaf:before, %ion-levels:before, %ion-lightbulb:before, %ion-link:before, %ion-load-a:before, %ion-load-b:before, %ion-load-c:before, %ion-load-d:before, %ion-location:before, %ion-lock-combination:before, %ion-locked:before, %ion-log-in:before, %ion-log-out:before, %ion-loop:before, %ion-magnet:before, %ion-male:before, %ion-man:before, %ion-map:before, %ion-medkit:before, %ion-merge:before, %ion-mic-a:before, %ion-mic-b:before, %ion-mic-c:before, %ion-minus:before, %ion-minus-circled:before, %ion-minus-round:before, %ion-model-s:before, %ion-monitor:before, %ion-more:before, %ion-mouse:before, %ion-music-note:before, %ion-navicon:before, %ion-navicon-round:before, %ion-navigate:before, %ion-network:before, %ion-no-smoking:before, %ion-nuclear:before, %ion-outlet:before, %ion-paintbrush:before, %ion-paintbucket:before, %ion-paper-airplane:before, %ion-paperclip:before, %ion-pause:before, %ion-person:before, %ion-person-add:before, %ion-person-stalker:before, %ion-pie-graph:before, %ion-pin:before, %ion-pinpoint:before, %ion-pizza:before, %ion-plane:before, %ion-planet:before, %ion-play:before, %ion-playstation:before, %ion-plus:before, %ion-plus-circled:before, %ion-plus-round:before, %ion-podium:before, %ion-pound:before, %ion-power:before, %ion-pricetag:before, %ion-pricetags:before, %ion-printer:before, %ion-pull-request:before, %ion-qr-scanner:before, %ion-quote:before, %ion-radio-waves:before, %ion-record:before, %ion-refresh:before, %ion-reply:before, %ion-reply-all:before, %ion-ribbon-a:before, %ion-ribbon-b:before, %ion-sad:before, %ion-sad-outline:before, %ion-scissors:before, %ion-search:before, %ion-settings:before, %ion-share:before, %ion-shuffle:before, %ion-skip-backward:before, %ion-skip-forward:before, %ion-social-android:before, %ion-social-android-outline:before, %ion-social-angular:before, %ion-social-angular-outline:before, %ion-social-apple:before, %ion-social-apple-outline:before, %ion-social-bitcoin:before, %ion-social-bitcoin-outline:before, %ion-social-buffer:before, %ion-social-buffer-outline:before, %ion-social-chrome:before, %ion-social-chrome-outline:before, %ion-social-codepen:before, %ion-social-codepen-outline:before, %ion-social-css3:before, %ion-social-css3-outline:before, %ion-social-designernews:before, %ion-social-designernews-outline:before, %ion-social-dribbble:before, %ion-social-dribbble-outline:before, %ion-social-dropbox:before, %ion-social-dropbox-outline:before, %ion-social-euro:before, %ion-social-euro-outline:before, %ion-social-facebook:before, %ion-social-facebook-outline:before, %ion-social-foursquare:before, %ion-social-foursquare-outline:before, %ion-social-freebsd-devil:before, %ion-social-github:before, %ion-social-github-outline:before, %ion-social-google:before, %ion-social-google-outline:before, %ion-social-googleplus:before, %ion-social-googleplus-outline:before, %ion-social-hackernews:before, %ion-social-hackernews-outline:before, %ion-social-html5:before, %ion-social-html5-outline:before, %ion-social-instagram:before, %ion-social-instagram-outline:before, %ion-social-javascript:before, %ion-social-javascript-outline:before, %ion-social-linkedin:before, %ion-social-linkedin-outline:before, %ion-social-markdown:before, %ion-social-nodejs:before, %ion-social-octocat:before, %ion-social-pinterest:before, %ion-social-pinterest-outline:before, %ion-social-python:before, %ion-social-reddit:before, %ion-social-reddit-outline:before, %ion-social-rss:before, %ion-social-rss-outline:before, %ion-social-sass:before, %ion-social-skype:before, %ion-social-skype-outline:before, %ion-social-snapchat:before, %ion-social-snapchat-outline:before, %ion-social-tumblr:before, %ion-social-tumblr-outline:before, %ion-social-tux:before, %ion-social-twitch:before, %ion-social-twitch-outline:before, %ion-social-twitter:before, %ion-social-twitter-outline:before, %ion-social-usd:before, %ion-social-usd-outline:before, %ion-social-vimeo:before, %ion-social-vimeo-outline:before, %ion-social-whatsapp:before, %ion-social-whatsapp-outline:before, %ion-social-windows:before, %ion-social-windows-outline:before, %ion-social-wordpress:before, %ion-social-wordpress-outline:before, %ion-social-yahoo:before, %ion-social-yahoo-outline:before, %ion-social-yen:before, %ion-social-yen-outline:before, %ion-social-youtube:before, %ion-social-youtube-outline:before, %ion-soup-can:before, %ion-soup-can-outline:before, %ion-speakerphone:before, %ion-speedometer:before, %ion-spoon:before, %ion-star:before, %ion-stats-bars:before, %ion-steam:before, %ion-stop:before, %ion-thermometer:before, %ion-thumbsdown:before, %ion-thumbsup:before, %ion-toggle:before, %ion-toggle-filled:before, %ion-transgender:before, %ion-trash-a:before, %ion-trash-b:before, %ion-trophy:before, %ion-tshirt:before, %ion-tshirt-outline:before, %ion-umbrella:before, %ion-university:before, %ion-unlocked:before, %ion-upload:before, %ion-usb:before, %ion-videocamera:before, %ion-volume-high:before, %ion-volume-low:before, %ion-volume-medium:before, %ion-volume-mute:before, %ion-wand:before, %ion-waterdrop:before, %ion-wifi:before, %ion-wineglass:before, %ion-woman:before, %ion-wrench:before, %ion-xbox:before { display: inline-block; font-family: "Ionicons"; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; text-rendering: auto; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
4
+
5
+ %ion-alert:before { content: "\f101"; }
6
+
7
+ %ion-alert-circled:before { content: "\f100"; }
8
+
9
+ %ion-android-add:before { content: "\f2c7"; }
10
+
11
+ %ion-android-add-circle:before { content: "\f359"; }
12
+
13
+ %ion-android-alarm-clock:before { content: "\f35a"; }
14
+
15
+ %ion-android-alert:before { content: "\f35b"; }
16
+
17
+ %ion-android-apps:before { content: "\f35c"; }
18
+
19
+ %ion-android-archive:before { content: "\f2c9"; }
20
+
21
+ %ion-android-arrow-back:before { content: "\f2ca"; }
22
+
23
+ %ion-android-arrow-down:before { content: "\f35d"; }
24
+
25
+ %ion-android-arrow-dropdown:before { content: "\f35f"; }
26
+
27
+ %ion-android-arrow-dropdown-circle:before { content: "\f35e"; }
28
+
29
+ %ion-android-arrow-dropleft:before { content: "\f361"; }
30
+
31
+ %ion-android-arrow-dropleft-circle:before { content: "\f360"; }
32
+
33
+ %ion-android-arrow-dropright:before { content: "\f363"; }
34
+
35
+ %ion-android-arrow-dropright-circle:before { content: "\f362"; }
36
+
37
+ %ion-android-arrow-dropup:before { content: "\f365"; }
38
+
39
+ %ion-android-arrow-dropup-circle:before { content: "\f364"; }
40
+
41
+ %ion-android-arrow-forward:before { content: "\f30f"; }
42
+
43
+ %ion-android-arrow-up:before { content: "\f366"; }
44
+
45
+ %ion-android-attach:before { content: "\f367"; }
46
+
47
+ %ion-android-bar:before { content: "\f368"; }
48
+
49
+ %ion-android-bicycle:before { content: "\f369"; }
50
+
51
+ %ion-android-boat:before { content: "\f36a"; }
52
+
53
+ %ion-android-bookmark:before { content: "\f36b"; }
54
+
55
+ %ion-android-bulb:before { content: "\f36c"; }
56
+
57
+ %ion-android-bus:before { content: "\f36d"; }
58
+
59
+ %ion-android-calendar:before { content: "\f2d1"; }
60
+
61
+ %ion-android-call:before { content: "\f2d2"; }
62
+
63
+ %ion-android-camera:before { content: "\f2d3"; }
64
+
65
+ %ion-android-cancel:before { content: "\f36e"; }
66
+
67
+ %ion-android-car:before { content: "\f36f"; }
68
+
69
+ %ion-android-cart:before { content: "\f370"; }
70
+
71
+ %ion-android-chat:before { content: "\f2d4"; }
72
+
73
+ %ion-android-checkbox:before { content: "\f374"; }
74
+
75
+ %ion-android-checkbox-blank:before { content: "\f371"; }
76
+
77
+ %ion-android-checkbox-outline:before { content: "\f373"; }
78
+
79
+ %ion-android-checkbox-outline-blank:before { content: "\f372"; }
80
+
81
+ %ion-android-checkmark-circle:before { content: "\f375"; }
82
+
83
+ %ion-android-clipboard:before { content: "\f376"; }
84
+
85
+ %ion-android-close:before { content: "\f2d7"; }
86
+
87
+ %ion-android-cloud:before { content: "\f37a"; }
88
+
89
+ %ion-android-cloud-circle:before { content: "\f377"; }
90
+
91
+ %ion-android-cloud-done:before { content: "\f378"; }
92
+
93
+ %ion-android-cloud-outline:before { content: "\f379"; }
94
+
95
+ %ion-android-color-palette:before { content: "\f37b"; }
96
+
97
+ %ion-android-compass:before { content: "\f37c"; }
98
+
99
+ %ion-android-contact:before { content: "\f2d8"; }
100
+
101
+ %ion-android-contacts:before { content: "\f2d9"; }
102
+
103
+ %ion-android-contract:before { content: "\f37d"; }
104
+
105
+ %ion-android-create:before { content: "\f37e"; }
106
+
107
+ %ion-android-delete:before { content: "\f37f"; }
108
+
109
+ %ion-android-desktop:before { content: "\f380"; }
110
+
111
+ %ion-android-document:before { content: "\f381"; }
112
+
113
+ %ion-android-done:before { content: "\f383"; }
114
+
115
+ %ion-android-done-all:before { content: "\f382"; }
116
+
117
+ %ion-android-download:before { content: "\f2dd"; }
118
+
119
+ %ion-android-drafts:before { content: "\f384"; }
120
+
121
+ %ion-android-exit:before { content: "\f385"; }
122
+
123
+ %ion-android-expand:before { content: "\f386"; }
124
+
125
+ %ion-android-favorite:before { content: "\f388"; }
126
+
127
+ %ion-android-favorite-outline:before { content: "\f387"; }
128
+
129
+ %ion-android-film:before { content: "\f389"; }
130
+
131
+ %ion-android-folder:before { content: "\f2e0"; }
132
+
133
+ %ion-android-folder-open:before { content: "\f38a"; }
134
+
135
+ %ion-android-funnel:before { content: "\f38b"; }
136
+
137
+ %ion-android-globe:before { content: "\f38c"; }
138
+
139
+ %ion-android-hand:before { content: "\f2e3"; }
140
+
141
+ %ion-android-hangout:before { content: "\f38d"; }
142
+
143
+ %ion-android-happy:before { content: "\f38e"; }
144
+
145
+ %ion-android-home:before { content: "\f38f"; }
146
+
147
+ %ion-android-image:before { content: "\f2e4"; }
148
+
149
+ %ion-android-laptop:before { content: "\f390"; }
150
+
151
+ %ion-android-list:before { content: "\f391"; }
152
+
153
+ %ion-android-locate:before { content: "\f2e9"; }
154
+
155
+ %ion-android-lock:before { content: "\f392"; }
156
+
157
+ %ion-android-mail:before { content: "\f2eb"; }
158
+
159
+ %ion-android-map:before { content: "\f393"; }
160
+
161
+ %ion-android-menu:before { content: "\f394"; }
162
+
163
+ %ion-android-microphone:before { content: "\f2ec"; }
164
+
165
+ %ion-android-microphone-off:before { content: "\f395"; }
166
+
167
+ %ion-android-more-horizontal:before { content: "\f396"; }
168
+
169
+ %ion-android-more-vertical:before { content: "\f397"; }
170
+
171
+ %ion-android-navigate:before { content: "\f398"; }
172
+
173
+ %ion-android-notifications:before { content: "\f39b"; }
174
+
175
+ %ion-android-notifications-none:before { content: "\f399"; }
176
+
177
+ %ion-android-notifications-off:before { content: "\f39a"; }
178
+
179
+ %ion-android-open:before { content: "\f39c"; }
180
+
181
+ %ion-android-options:before { content: "\f39d"; }
182
+
183
+ %ion-android-people:before { content: "\f39e"; }
184
+
185
+ %ion-android-person:before { content: "\f3a0"; }
186
+
187
+ %ion-android-person-add:before { content: "\f39f"; }
188
+
189
+ %ion-android-phone-landscape:before { content: "\f3a1"; }
190
+
191
+ %ion-android-phone-portrait:before { content: "\f3a2"; }
192
+
193
+ %ion-android-pin:before { content: "\f3a3"; }
194
+
195
+ %ion-android-plane:before { content: "\f3a4"; }
196
+
197
+ %ion-android-playstore:before { content: "\f2f0"; }
198
+
199
+ %ion-android-print:before { content: "\f3a5"; }
200
+
201
+ %ion-android-radio-button-off:before { content: "\f3a6"; }
202
+
203
+ %ion-android-radio-button-on:before { content: "\f3a7"; }
204
+
205
+ %ion-android-refresh:before { content: "\f3a8"; }
206
+
207
+ %ion-android-remove:before { content: "\f2f4"; }
208
+
209
+ %ion-android-remove-circle:before { content: "\f3a9"; }
210
+
211
+ %ion-android-restaurant:before { content: "\f3aa"; }
212
+
213
+ %ion-android-sad:before { content: "\f3ab"; }
214
+
215
+ %ion-android-search:before { content: "\f2f5"; }
216
+
217
+ %ion-android-send:before { content: "\f2f6"; }
218
+
219
+ %ion-android-settings:before { content: "\f2f7"; }
220
+
221
+ %ion-android-share:before { content: "\f2f8"; }
222
+
223
+ %ion-android-share-alt:before { content: "\f3ac"; }
224
+
225
+ %ion-android-star:before { content: "\f2fc"; }
226
+
227
+ %ion-android-star-half:before { content: "\f3ad"; }
228
+
229
+ %ion-android-star-outline:before { content: "\f3ae"; }
230
+
231
+ %ion-android-stopwatch:before { content: "\f2fd"; }
232
+
233
+ %ion-android-subway:before { content: "\f3af"; }
234
+
235
+ %ion-android-sunny:before { content: "\f3b0"; }
236
+
237
+ %ion-android-sync:before { content: "\f3b1"; }
238
+
239
+ %ion-android-textsms:before { content: "\f3b2"; }
240
+
241
+ %ion-android-time:before { content: "\f3b3"; }
242
+
243
+ %ion-android-train:before { content: "\f3b4"; }
244
+
245
+ %ion-android-unlock:before { content: "\f3b5"; }
246
+
247
+ %ion-android-upload:before { content: "\f3b6"; }
248
+
249
+ %ion-android-volume-down:before { content: "\f3b7"; }
250
+
251
+ %ion-android-volume-mute:before { content: "\f3b8"; }
252
+
253
+ %ion-android-volume-off:before { content: "\f3b9"; }
254
+
255
+ %ion-android-volume-up:before { content: "\f3ba"; }
256
+
257
+ %ion-android-walk:before { content: "\f3bb"; }
258
+
259
+ %ion-android-warning:before { content: "\f3bc"; }
260
+
261
+ %ion-android-watch:before { content: "\f3bd"; }
262
+
263
+ %ion-android-wifi:before { content: "\f305"; }
264
+
265
+ %ion-aperture:before { content: "\f313"; }
266
+
267
+ %ion-archive:before { content: "\f102"; }
268
+
269
+ %ion-arrow-down-a:before { content: "\f103"; }
270
+
271
+ %ion-arrow-down-b:before { content: "\f104"; }
272
+
273
+ %ion-arrow-down-c:before { content: "\f105"; }
274
+
275
+ %ion-arrow-expand:before { content: "\f25e"; }
276
+
277
+ %ion-arrow-graph-down-left:before { content: "\f25f"; }
278
+
279
+ %ion-arrow-graph-down-right:before { content: "\f260"; }
280
+
281
+ %ion-arrow-graph-up-left:before { content: "\f261"; }
282
+
283
+ %ion-arrow-graph-up-right:before { content: "\f262"; }
284
+
285
+ %ion-arrow-left-a:before { content: "\f106"; }
286
+
287
+ %ion-arrow-left-b:before { content: "\f107"; }
288
+
289
+ %ion-arrow-left-c:before { content: "\f108"; }
290
+
291
+ %ion-arrow-move:before { content: "\f263"; }
292
+
293
+ %ion-arrow-resize:before { content: "\f264"; }
294
+
295
+ %ion-arrow-return-left:before { content: "\f265"; }
296
+
297
+ %ion-arrow-return-right:before { content: "\f266"; }
298
+
299
+ %ion-arrow-right-a:before { content: "\f109"; }
300
+
301
+ %ion-arrow-right-b:before { content: "\f10a"; }
302
+
303
+ %ion-arrow-right-c:before { content: "\f10b"; }
304
+
305
+ %ion-arrow-shrink:before { content: "\f267"; }
306
+
307
+ %ion-arrow-swap:before { content: "\f268"; }
308
+
309
+ %ion-arrow-up-a:before { content: "\f10c"; }
310
+
311
+ %ion-arrow-up-b:before { content: "\f10d"; }
312
+
313
+ %ion-arrow-up-c:before { content: "\f10e"; }
314
+
315
+ %ion-asterisk:before { content: "\f314"; }
316
+
317
+ %ion-at:before { content: "\f10f"; }
318
+
319
+ %ion-backspace:before { content: "\f3bf"; }
320
+
321
+ %ion-backspace-outline:before { content: "\f3be"; }
322
+
323
+ %ion-bag:before { content: "\f110"; }
324
+
325
+ %ion-battery-charging:before { content: "\f111"; }
326
+
327
+ %ion-battery-empty:before { content: "\f112"; }
328
+
329
+ %ion-battery-full:before { content: "\f113"; }
330
+
331
+ %ion-battery-half:before { content: "\f114"; }
332
+
333
+ %ion-battery-low:before { content: "\f115"; }
334
+
335
+ %ion-beaker:before { content: "\f269"; }
336
+
337
+ %ion-beer:before { content: "\f26a"; }
338
+
339
+ %ion-bluetooth:before { content: "\f116"; }
340
+
341
+ %ion-bonfire:before { content: "\f315"; }
342
+
343
+ %ion-bookmark:before { content: "\f26b"; }
344
+
345
+ %ion-bowtie:before { content: "\f3c0"; }
346
+
347
+ %ion-briefcase:before { content: "\f26c"; }
348
+
349
+ %ion-bug:before { content: "\f2be"; }
350
+
351
+ %ion-calculator:before { content: "\f26d"; }
352
+
353
+ %ion-calendar:before { content: "\f117"; }
354
+
355
+ %ion-camera:before { content: "\f118"; }
356
+
357
+ %ion-card:before { content: "\f119"; }
358
+
359
+ %ion-cash:before { content: "\f316"; }
360
+
361
+ %ion-chatbox:before { content: "\f11b"; }
362
+
363
+ %ion-chatbox-working:before { content: "\f11a"; }
364
+
365
+ %ion-chatboxes:before { content: "\f11c"; }
366
+
367
+ %ion-chatbubble:before { content: "\f11e"; }
368
+
369
+ %ion-chatbubble-working:before { content: "\f11d"; }
370
+
371
+ %ion-chatbubbles:before { content: "\f11f"; }
372
+
373
+ %ion-checkmark:before { content: "\f122"; }
374
+
375
+ %ion-checkmark-circled:before { content: "\f120"; }
376
+
377
+ %ion-checkmark-round:before { content: "\f121"; }
378
+
379
+ %ion-chevron-down:before { content: "\f123"; }
380
+
381
+ %ion-chevron-left:before { content: "\f124"; }
382
+
383
+ %ion-chevron-right:before { content: "\f125"; }
384
+
385
+ %ion-chevron-up:before { content: "\f126"; }
386
+
387
+ %ion-clipboard:before { content: "\f127"; }
388
+
389
+ %ion-clock:before { content: "\f26e"; }
390
+
391
+ %ion-close:before { content: "\f12a"; }
392
+
393
+ %ion-close-circled:before { content: "\f128"; }
394
+
395
+ %ion-close-round:before { content: "\f129"; }
396
+
397
+ %ion-closed-captioning:before { content: "\f317"; }
398
+
399
+ %ion-cloud:before { content: "\f12b"; }
400
+
401
+ %ion-code:before { content: "\f271"; }
402
+
403
+ %ion-code-download:before { content: "\f26f"; }
404
+
405
+ %ion-code-working:before { content: "\f270"; }
406
+
407
+ %ion-coffee:before { content: "\f272"; }
408
+
409
+ %ion-compass:before { content: "\f273"; }
410
+
411
+ %ion-compose:before { content: "\f12c"; }
412
+
413
+ %ion-connection-bars:before { content: "\f274"; }
414
+
415
+ %ion-contrast:before { content: "\f275"; }
416
+
417
+ %ion-crop:before { content: "\f3c1"; }
418
+
419
+ %ion-cube:before { content: "\f318"; }
420
+
421
+ %ion-disc:before { content: "\f12d"; }
422
+
423
+ %ion-document:before { content: "\f12f"; }
424
+
425
+ %ion-document-text:before { content: "\f12e"; }
426
+
427
+ %ion-drag:before { content: "\f130"; }
428
+
429
+ %ion-earth:before { content: "\f276"; }
430
+
431
+ %ion-easel:before { content: "\f3c2"; }
432
+
433
+ %ion-edit:before { content: "\f2bf"; }
434
+
435
+ %ion-egg:before { content: "\f277"; }
436
+
437
+ %ion-eject:before { content: "\f131"; }
438
+
439
+ %ion-email:before { content: "\f132"; }
440
+
441
+ %ion-email-unread:before { content: "\f3c3"; }
442
+
443
+ %ion-erlenmeyer-flask:before { content: "\f3c5"; }
444
+
445
+ %ion-erlenmeyer-flask-bubbles:before { content: "\f3c4"; }
446
+
447
+ %ion-eye:before { content: "\f133"; }
448
+
449
+ %ion-eye-disabled:before { content: "\f306"; }
450
+
451
+ %ion-female:before { content: "\f278"; }
452
+
453
+ %ion-filing:before { content: "\f134"; }
454
+
455
+ %ion-film-marker:before { content: "\f135"; }
456
+
457
+ %ion-fireball:before { content: "\f319"; }
458
+
459
+ %ion-flag:before { content: "\f279"; }
460
+
461
+ %ion-flame:before { content: "\f31a"; }
462
+
463
+ %ion-flash:before { content: "\f137"; }
464
+
465
+ %ion-flash-off:before { content: "\f136"; }
466
+
467
+ %ion-folder:before { content: "\f139"; }
468
+
469
+ %ion-fork:before { content: "\f27a"; }
470
+
471
+ %ion-fork-repo:before { content: "\f2c0"; }
472
+
473
+ %ion-forward:before { content: "\f13a"; }
474
+
475
+ %ion-funnel:before { content: "\f31b"; }
476
+
477
+ %ion-gear-a:before { content: "\f13d"; }
478
+
479
+ %ion-gear-b:before { content: "\f13e"; }
480
+
481
+ %ion-grid:before { content: "\f13f"; }
482
+
483
+ %ion-hammer:before { content: "\f27b"; }
484
+
485
+ %ion-happy:before { content: "\f31c"; }
486
+
487
+ %ion-happy-outline:before { content: "\f3c6"; }
488
+
489
+ %ion-headphone:before { content: "\f140"; }
490
+
491
+ %ion-heart:before { content: "\f141"; }
492
+
493
+ %ion-heart-broken:before { content: "\f31d"; }
494
+
495
+ %ion-help:before { content: "\f143"; }
496
+
497
+ %ion-help-buoy:before { content: "\f27c"; }
498
+
499
+ %ion-help-circled:before { content: "\f142"; }
500
+
501
+ %ion-home:before { content: "\f144"; }
502
+
503
+ %ion-icecream:before { content: "\f27d"; }
504
+
505
+ %ion-image:before { content: "\f147"; }
506
+
507
+ %ion-images:before { content: "\f148"; }
508
+
509
+ %ion-information:before { content: "\f14a"; }
510
+
511
+ %ion-information-circled:before { content: "\f149"; }
512
+
513
+ %ion-ionic:before { content: "\f14b"; }
514
+
515
+ %ion-ios-alarm:before { content: "\f3c8"; }
516
+
517
+ %ion-ios-alarm-outline:before { content: "\f3c7"; }
518
+
519
+ %ion-ios-albums:before { content: "\f3ca"; }
520
+
521
+ %ion-ios-albums-outline:before { content: "\f3c9"; }
522
+
523
+ %ion-ios-americanfootball:before { content: "\f3cc"; }
524
+
525
+ %ion-ios-americanfootball-outline:before { content: "\f3cb"; }
526
+
527
+ %ion-ios-analytics:before { content: "\f3ce"; }
528
+
529
+ %ion-ios-analytics-outline:before { content: "\f3cd"; }
530
+
531
+ %ion-ios-arrow-back:before { content: "\f3cf"; }
532
+
533
+ %ion-ios-arrow-down:before { content: "\f3d0"; }
534
+
535
+ %ion-ios-arrow-forward:before { content: "\f3d1"; }
536
+
537
+ %ion-ios-arrow-left:before { content: "\f3d2"; }
538
+
539
+ %ion-ios-arrow-right:before { content: "\f3d3"; }
540
+
541
+ %ion-ios-arrow-thin-down:before { content: "\f3d4"; }
542
+
543
+ %ion-ios-arrow-thin-left:before { content: "\f3d5"; }
544
+
545
+ %ion-ios-arrow-thin-right:before { content: "\f3d6"; }
546
+
547
+ %ion-ios-arrow-thin-up:before { content: "\f3d7"; }
548
+
549
+ %ion-ios-arrow-up:before { content: "\f3d8"; }
550
+
551
+ %ion-ios-at:before { content: "\f3da"; }
552
+
553
+ %ion-ios-at-outline:before { content: "\f3d9"; }
554
+
555
+ %ion-ios-barcode:before { content: "\f3dc"; }
556
+
557
+ %ion-ios-barcode-outline:before { content: "\f3db"; }
558
+
559
+ %ion-ios-baseball:before { content: "\f3de"; }
560
+
561
+ %ion-ios-baseball-outline:before { content: "\f3dd"; }
562
+
563
+ %ion-ios-basketball:before { content: "\f3e0"; }
564
+
565
+ %ion-ios-basketball-outline:before { content: "\f3df"; }
566
+
567
+ %ion-ios-bell:before { content: "\f3e2"; }
568
+
569
+ %ion-ios-bell-outline:before { content: "\f3e1"; }
570
+
571
+ %ion-ios-body:before { content: "\f3e4"; }
572
+
573
+ %ion-ios-body-outline:before { content: "\f3e3"; }
574
+
575
+ %ion-ios-bolt:before { content: "\f3e6"; }
576
+
577
+ %ion-ios-bolt-outline:before { content: "\f3e5"; }
578
+
579
+ %ion-ios-book:before { content: "\f3e8"; }
580
+
581
+ %ion-ios-book-outline:before { content: "\f3e7"; }
582
+
583
+ %ion-ios-bookmarks:before { content: "\f3ea"; }
584
+
585
+ %ion-ios-bookmarks-outline:before { content: "\f3e9"; }
586
+
587
+ %ion-ios-box:before { content: "\f3ec"; }
588
+
589
+ %ion-ios-box-outline:before { content: "\f3eb"; }
590
+
591
+ %ion-ios-briefcase:before { content: "\f3ee"; }
592
+
593
+ %ion-ios-briefcase-outline:before { content: "\f3ed"; }
594
+
595
+ %ion-ios-browsers:before { content: "\f3f0"; }
596
+
597
+ %ion-ios-browsers-outline:before { content: "\f3ef"; }
598
+
599
+ %ion-ios-calculator:before { content: "\f3f2"; }
600
+
601
+ %ion-ios-calculator-outline:before { content: "\f3f1"; }
602
+
603
+ %ion-ios-calendar:before { content: "\f3f4"; }
604
+
605
+ %ion-ios-calendar-outline:before { content: "\f3f3"; }
606
+
607
+ %ion-ios-camera:before { content: "\f3f6"; }
608
+
609
+ %ion-ios-camera-outline:before { content: "\f3f5"; }
610
+
611
+ %ion-ios-cart:before { content: "\f3f8"; }
612
+
613
+ %ion-ios-cart-outline:before { content: "\f3f7"; }
614
+
615
+ %ion-ios-chatboxes:before { content: "\f3fa"; }
616
+
617
+ %ion-ios-chatboxes-outline:before { content: "\f3f9"; }
618
+
619
+ %ion-ios-chatbubble:before { content: "\f3fc"; }
620
+
621
+ %ion-ios-chatbubble-outline:before { content: "\f3fb"; }
622
+
623
+ %ion-ios-checkmark:before { content: "\f3ff"; }
624
+
625
+ %ion-ios-checkmark-empty:before { content: "\f3fd"; }
626
+
627
+ %ion-ios-checkmark-outline:before { content: "\f3fe"; }
628
+
629
+ %ion-ios-circle-filled:before { content: "\f400"; }
630
+
631
+ %ion-ios-circle-outline:before { content: "\f401"; }
632
+
633
+ %ion-ios-clock:before { content: "\f403"; }
634
+
635
+ %ion-ios-clock-outline:before { content: "\f402"; }
636
+
637
+ %ion-ios-close:before { content: "\f406"; }
638
+
639
+ %ion-ios-close-empty:before { content: "\f404"; }
640
+
641
+ %ion-ios-close-outline:before { content: "\f405"; }
642
+
643
+ %ion-ios-cloud:before { content: "\f40c"; }
644
+
645
+ %ion-ios-cloud-download:before { content: "\f408"; }
646
+
647
+ %ion-ios-cloud-download-outline:before { content: "\f407"; }
648
+
649
+ %ion-ios-cloud-outline:before { content: "\f409"; }
650
+
651
+ %ion-ios-cloud-upload:before { content: "\f40b"; }
652
+
653
+ %ion-ios-cloud-upload-outline:before { content: "\f40a"; }
654
+
655
+ %ion-ios-cloudy:before { content: "\f410"; }
656
+
657
+ %ion-ios-cloudy-night:before { content: "\f40e"; }
658
+
659
+ %ion-ios-cloudy-night-outline:before { content: "\f40d"; }
660
+
661
+ %ion-ios-cloudy-outline:before { content: "\f40f"; }
662
+
663
+ %ion-ios-cog:before { content: "\f412"; }
664
+
665
+ %ion-ios-cog-outline:before { content: "\f411"; }
666
+
667
+ %ion-ios-color-filter:before { content: "\f414"; }
668
+
669
+ %ion-ios-color-filter-outline:before { content: "\f413"; }
670
+
671
+ %ion-ios-color-wand:before { content: "\f416"; }
672
+
673
+ %ion-ios-color-wand-outline:before { content: "\f415"; }
674
+
675
+ %ion-ios-compose:before { content: "\f418"; }
676
+
677
+ %ion-ios-compose-outline:before { content: "\f417"; }
678
+
679
+ %ion-ios-contact:before { content: "\f41a"; }
680
+
681
+ %ion-ios-contact-outline:before { content: "\f419"; }
682
+
683
+ %ion-ios-copy:before { content: "\f41c"; }
684
+
685
+ %ion-ios-copy-outline:before { content: "\f41b"; }
686
+
687
+ %ion-ios-crop:before { content: "\f41e"; }
688
+
689
+ %ion-ios-crop-strong:before { content: "\f41d"; }
690
+
691
+ %ion-ios-download:before { content: "\f420"; }
692
+
693
+ %ion-ios-download-outline:before { content: "\f41f"; }
694
+
695
+ %ion-ios-drag:before { content: "\f421"; }
696
+
697
+ %ion-ios-email:before { content: "\f423"; }
698
+
699
+ %ion-ios-email-outline:before { content: "\f422"; }
700
+
701
+ %ion-ios-eye:before { content: "\f425"; }
702
+
703
+ %ion-ios-eye-outline:before { content: "\f424"; }
704
+
705
+ %ion-ios-fastforward:before { content: "\f427"; }
706
+
707
+ %ion-ios-fastforward-outline:before { content: "\f426"; }
708
+
709
+ %ion-ios-filing:before { content: "\f429"; }
710
+
711
+ %ion-ios-filing-outline:before { content: "\f428"; }
712
+
713
+ %ion-ios-film:before { content: "\f42b"; }
714
+
715
+ %ion-ios-film-outline:before { content: "\f42a"; }
716
+
717
+ %ion-ios-flag:before { content: "\f42d"; }
718
+
719
+ %ion-ios-flag-outline:before { content: "\f42c"; }
720
+
721
+ %ion-ios-flame:before { content: "\f42f"; }
722
+
723
+ %ion-ios-flame-outline:before { content: "\f42e"; }
724
+
725
+ %ion-ios-flask:before { content: "\f431"; }
726
+
727
+ %ion-ios-flask-outline:before { content: "\f430"; }
728
+
729
+ %ion-ios-flower:before { content: "\f433"; }
730
+
731
+ %ion-ios-flower-outline:before { content: "\f432"; }
732
+
733
+ %ion-ios-folder:before { content: "\f435"; }
734
+
735
+ %ion-ios-folder-outline:before { content: "\f434"; }
736
+
737
+ %ion-ios-football:before { content: "\f437"; }
738
+
739
+ %ion-ios-football-outline:before { content: "\f436"; }
740
+
741
+ %ion-ios-game-controller-a:before { content: "\f439"; }
742
+
743
+ %ion-ios-game-controller-a-outline:before { content: "\f438"; }
744
+
745
+ %ion-ios-game-controller-b:before { content: "\f43b"; }
746
+
747
+ %ion-ios-game-controller-b-outline:before { content: "\f43a"; }
748
+
749
+ %ion-ios-gear:before { content: "\f43d"; }
750
+
751
+ %ion-ios-gear-outline:before { content: "\f43c"; }
752
+
753
+ %ion-ios-glasses:before { content: "\f43f"; }
754
+
755
+ %ion-ios-glasses-outline:before { content: "\f43e"; }
756
+
757
+ %ion-ios-grid-view:before { content: "\f441"; }
758
+
759
+ %ion-ios-grid-view-outline:before { content: "\f440"; }
760
+
761
+ %ion-ios-heart:before { content: "\f443"; }
762
+
763
+ %ion-ios-heart-outline:before { content: "\f442"; }
764
+
765
+ %ion-ios-help:before { content: "\f446"; }
766
+
767
+ %ion-ios-help-empty:before { content: "\f444"; }
768
+
769
+ %ion-ios-help-outline:before { content: "\f445"; }
770
+
771
+ %ion-ios-home:before { content: "\f448"; }
772
+
773
+ %ion-ios-home-outline:before { content: "\f447"; }
774
+
775
+ %ion-ios-infinite:before { content: "\f44a"; }
776
+
777
+ %ion-ios-infinite-outline:before { content: "\f449"; }
778
+
779
+ %ion-ios-information:before { content: "\f44d"; }
780
+
781
+ %ion-ios-information-empty:before { content: "\f44b"; }
782
+
783
+ %ion-ios-information-outline:before { content: "\f44c"; }
784
+
785
+ %ion-ios-ionic-outline:before { content: "\f44e"; }
786
+
787
+ %ion-ios-keypad:before { content: "\f450"; }
788
+
789
+ %ion-ios-keypad-outline:before { content: "\f44f"; }
790
+
791
+ %ion-ios-lightbulb:before { content: "\f452"; }
792
+
793
+ %ion-ios-lightbulb-outline:before { content: "\f451"; }
794
+
795
+ %ion-ios-list:before { content: "\f454"; }
796
+
797
+ %ion-ios-list-outline:before { content: "\f453"; }
798
+
799
+ %ion-ios-location:before { content: "\f456"; }
800
+
801
+ %ion-ios-location-outline:before { content: "\f455"; }
802
+
803
+ %ion-ios-locked:before { content: "\f458"; }
804
+
805
+ %ion-ios-locked-outline:before { content: "\f457"; }
806
+
807
+ %ion-ios-loop:before { content: "\f45a"; }
808
+
809
+ %ion-ios-loop-strong:before { content: "\f459"; }
810
+
811
+ %ion-ios-medical:before { content: "\f45c"; }
812
+
813
+ %ion-ios-medical-outline:before { content: "\f45b"; }
814
+
815
+ %ion-ios-medkit:before { content: "\f45e"; }
816
+
817
+ %ion-ios-medkit-outline:before { content: "\f45d"; }
818
+
819
+ %ion-ios-mic:before { content: "\f461"; }
820
+
821
+ %ion-ios-mic-off:before { content: "\f45f"; }
822
+
823
+ %ion-ios-mic-outline:before { content: "\f460"; }
824
+
825
+ %ion-ios-minus:before { content: "\f464"; }
826
+
827
+ %ion-ios-minus-empty:before { content: "\f462"; }
828
+
829
+ %ion-ios-minus-outline:before { content: "\f463"; }
830
+
831
+ %ion-ios-monitor:before { content: "\f466"; }
832
+
833
+ %ion-ios-monitor-outline:before { content: "\f465"; }
834
+
835
+ %ion-ios-moon:before { content: "\f468"; }
836
+
837
+ %ion-ios-moon-outline:before { content: "\f467"; }
838
+
839
+ %ion-ios-more:before { content: "\f46a"; }
840
+
841
+ %ion-ios-more-outline:before { content: "\f469"; }
842
+
843
+ %ion-ios-musical-note:before { content: "\f46b"; }
844
+
845
+ %ion-ios-musical-notes:before { content: "\f46c"; }
846
+
847
+ %ion-ios-navigate:before { content: "\f46e"; }
848
+
849
+ %ion-ios-navigate-outline:before { content: "\f46d"; }
850
+
851
+ %ion-ios-nutrition:before { content: "\f470"; }
852
+
853
+ %ion-ios-nutrition-outline:before { content: "\f46f"; }
854
+
855
+ %ion-ios-paper:before { content: "\f472"; }
856
+
857
+ %ion-ios-paper-outline:before { content: "\f471"; }
858
+
859
+ %ion-ios-paperplane:before { content: "\f474"; }
860
+
861
+ %ion-ios-paperplane-outline:before { content: "\f473"; }
862
+
863
+ %ion-ios-partlysunny:before { content: "\f476"; }
864
+
865
+ %ion-ios-partlysunny-outline:before { content: "\f475"; }
866
+
867
+ %ion-ios-pause:before { content: "\f478"; }
868
+
869
+ %ion-ios-pause-outline:before { content: "\f477"; }
870
+
871
+ %ion-ios-paw:before { content: "\f47a"; }
872
+
873
+ %ion-ios-paw-outline:before { content: "\f479"; }
874
+
875
+ %ion-ios-people:before { content: "\f47c"; }
876
+
877
+ %ion-ios-people-outline:before { content: "\f47b"; }
878
+
879
+ %ion-ios-person:before { content: "\f47e"; }
880
+
881
+ %ion-ios-person-outline:before { content: "\f47d"; }
882
+
883
+ %ion-ios-personadd:before { content: "\f480"; }
884
+
885
+ %ion-ios-personadd-outline:before { content: "\f47f"; }
886
+
887
+ %ion-ios-photos:before { content: "\f482"; }
888
+
889
+ %ion-ios-photos-outline:before { content: "\f481"; }
890
+
891
+ %ion-ios-pie:before { content: "\f484"; }
892
+
893
+ %ion-ios-pie-outline:before { content: "\f483"; }
894
+
895
+ %ion-ios-pint:before { content: "\f486"; }
896
+
897
+ %ion-ios-pint-outline:before { content: "\f485"; }
898
+
899
+ %ion-ios-play:before { content: "\f488"; }
900
+
901
+ %ion-ios-play-outline:before { content: "\f487"; }
902
+
903
+ %ion-ios-plus:before { content: "\f48b"; }
904
+
905
+ %ion-ios-plus-empty:before { content: "\f489"; }
906
+
907
+ %ion-ios-plus-outline:before { content: "\f48a"; }
908
+
909
+ %ion-ios-pricetag:before { content: "\f48d"; }
910
+
911
+ %ion-ios-pricetag-outline:before { content: "\f48c"; }
912
+
913
+ %ion-ios-pricetags:before { content: "\f48f"; }
914
+
915
+ %ion-ios-pricetags-outline:before { content: "\f48e"; }
916
+
917
+ %ion-ios-printer:before { content: "\f491"; }
918
+
919
+ %ion-ios-printer-outline:before { content: "\f490"; }
920
+
921
+ %ion-ios-pulse:before { content: "\f493"; }
922
+
923
+ %ion-ios-pulse-strong:before { content: "\f492"; }
924
+
925
+ %ion-ios-rainy:before { content: "\f495"; }
926
+
927
+ %ion-ios-rainy-outline:before { content: "\f494"; }
928
+
929
+ %ion-ios-recording:before { content: "\f497"; }
930
+
931
+ %ion-ios-recording-outline:before { content: "\f496"; }
932
+
933
+ %ion-ios-redo:before { content: "\f499"; }
934
+
935
+ %ion-ios-redo-outline:before { content: "\f498"; }
936
+
937
+ %ion-ios-refresh:before { content: "\f49c"; }
938
+
939
+ %ion-ios-refresh-empty:before { content: "\f49a"; }
940
+
941
+ %ion-ios-refresh-outline:before { content: "\f49b"; }
942
+
943
+ %ion-ios-reload:before { content: "\f49d"; }
944
+
945
+ %ion-ios-reverse-camera:before { content: "\f49f"; }
946
+
947
+ %ion-ios-reverse-camera-outline:before { content: "\f49e"; }
948
+
949
+ %ion-ios-rewind:before { content: "\f4a1"; }
950
+
951
+ %ion-ios-rewind-outline:before { content: "\f4a0"; }
952
+
953
+ %ion-ios-rose:before { content: "\f4a3"; }
954
+
955
+ %ion-ios-rose-outline:before { content: "\f4a2"; }
956
+
957
+ %ion-ios-search:before { content: "\f4a5"; }
958
+
959
+ %ion-ios-search-strong:before { content: "\f4a4"; }
960
+
961
+ %ion-ios-settings:before { content: "\f4a7"; }
962
+
963
+ %ion-ios-settings-strong:before { content: "\f4a6"; }
964
+
965
+ %ion-ios-shuffle:before { content: "\f4a9"; }
966
+
967
+ %ion-ios-shuffle-strong:before { content: "\f4a8"; }
968
+
969
+ %ion-ios-skipbackward:before { content: "\f4ab"; }
970
+
971
+ %ion-ios-skipbackward-outline:before { content: "\f4aa"; }
972
+
973
+ %ion-ios-skipforward:before { content: "\f4ad"; }
974
+
975
+ %ion-ios-skipforward-outline:before { content: "\f4ac"; }
976
+
977
+ %ion-ios-snowy:before { content: "\f4ae"; }
978
+
979
+ %ion-ios-speedometer:before { content: "\f4b0"; }
980
+
981
+ %ion-ios-speedometer-outline:before { content: "\f4af"; }
982
+
983
+ %ion-ios-star:before { content: "\f4b3"; }
984
+
985
+ %ion-ios-star-half:before { content: "\f4b1"; }
986
+
987
+ %ion-ios-star-outline:before { content: "\f4b2"; }
988
+
989
+ %ion-ios-stopwatch:before { content: "\f4b5"; }
990
+
991
+ %ion-ios-stopwatch-outline:before { content: "\f4b4"; }
992
+
993
+ %ion-ios-sunny:before { content: "\f4b7"; }
994
+
995
+ %ion-ios-sunny-outline:before { content: "\f4b6"; }
996
+
997
+ %ion-ios-telephone:before { content: "\f4b9"; }
998
+
999
+ %ion-ios-telephone-outline:before { content: "\f4b8"; }
1000
+
1001
+ %ion-ios-tennisball:before { content: "\f4bb"; }
1002
+
1003
+ %ion-ios-tennisball-outline:before { content: "\f4ba"; }
1004
+
1005
+ %ion-ios-thunderstorm:before { content: "\f4bd"; }
1006
+
1007
+ %ion-ios-thunderstorm-outline:before { content: "\f4bc"; }
1008
+
1009
+ %ion-ios-time:before { content: "\f4bf"; }
1010
+
1011
+ %ion-ios-time-outline:before { content: "\f4be"; }
1012
+
1013
+ %ion-ios-timer:before { content: "\f4c1"; }
1014
+
1015
+ %ion-ios-timer-outline:before { content: "\f4c0"; }
1016
+
1017
+ %ion-ios-toggle:before { content: "\f4c3"; }
1018
+
1019
+ %ion-ios-toggle-outline:before { content: "\f4c2"; }
1020
+
1021
+ %ion-ios-trash:before { content: "\f4c5"; }
1022
+
1023
+ %ion-ios-trash-outline:before { content: "\f4c4"; }
1024
+
1025
+ %ion-ios-undo:before { content: "\f4c7"; }
1026
+
1027
+ %ion-ios-undo-outline:before { content: "\f4c6"; }
1028
+
1029
+ %ion-ios-unlocked:before { content: "\f4c9"; }
1030
+
1031
+ %ion-ios-unlocked-outline:before { content: "\f4c8"; }
1032
+
1033
+ %ion-ios-upload:before { content: "\f4cb"; }
1034
+
1035
+ %ion-ios-upload-outline:before { content: "\f4ca"; }
1036
+
1037
+ %ion-ios-videocam:before { content: "\f4cd"; }
1038
+
1039
+ %ion-ios-videocam-outline:before { content: "\f4cc"; }
1040
+
1041
+ %ion-ios-volume-high:before { content: "\f4ce"; }
1042
+
1043
+ %ion-ios-volume-low:before { content: "\f4cf"; }
1044
+
1045
+ %ion-ios-wineglass:before { content: "\f4d1"; }
1046
+
1047
+ %ion-ios-wineglass-outline:before { content: "\f4d0"; }
1048
+
1049
+ %ion-ios-world:before { content: "\f4d3"; }
1050
+
1051
+ %ion-ios-world-outline:before { content: "\f4d2"; }
1052
+
1053
+ %ion-ipad:before { content: "\f1f9"; }
1054
+
1055
+ %ion-iphone:before { content: "\f1fa"; }
1056
+
1057
+ %ion-ipod:before { content: "\f1fb"; }
1058
+
1059
+ %ion-jet:before { content: "\f295"; }
1060
+
1061
+ %ion-key:before { content: "\f296"; }
1062
+
1063
+ %ion-knife:before { content: "\f297"; }
1064
+
1065
+ %ion-laptop:before { content: "\f1fc"; }
1066
+
1067
+ %ion-leaf:before { content: "\f1fd"; }
1068
+
1069
+ %ion-levels:before { content: "\f298"; }
1070
+
1071
+ %ion-lightbulb:before { content: "\f299"; }
1072
+
1073
+ %ion-link:before { content: "\f1fe"; }
1074
+
1075
+ %ion-load-a:before { content: "\f29a"; }
1076
+
1077
+ %ion-load-b:before { content: "\f29b"; }
1078
+
1079
+ %ion-load-c:before { content: "\f29c"; }
1080
+
1081
+ %ion-load-d:before { content: "\f29d"; }
1082
+
1083
+ %ion-location:before { content: "\f1ff"; }
1084
+
1085
+ %ion-lock-combination:before { content: "\f4d4"; }
1086
+
1087
+ %ion-locked:before { content: "\f200"; }
1088
+
1089
+ %ion-log-in:before { content: "\f29e"; }
1090
+
1091
+ %ion-log-out:before { content: "\f29f"; }
1092
+
1093
+ %ion-loop:before { content: "\f201"; }
1094
+
1095
+ %ion-magnet:before { content: "\f2a0"; }
1096
+
1097
+ %ion-male:before { content: "\f2a1"; }
1098
+
1099
+ %ion-man:before { content: "\f202"; }
1100
+
1101
+ %ion-map:before { content: "\f203"; }
1102
+
1103
+ %ion-medkit:before { content: "\f2a2"; }
1104
+
1105
+ %ion-merge:before { content: "\f33f"; }
1106
+
1107
+ %ion-mic-a:before { content: "\f204"; }
1108
+
1109
+ %ion-mic-b:before { content: "\f205"; }
1110
+
1111
+ %ion-mic-c:before { content: "\f206"; }
1112
+
1113
+ %ion-minus:before { content: "\f209"; }
1114
+
1115
+ %ion-minus-circled:before { content: "\f207"; }
1116
+
1117
+ %ion-minus-round:before { content: "\f208"; }
1118
+
1119
+ %ion-model-s:before { content: "\f2c1"; }
1120
+
1121
+ %ion-monitor:before { content: "\f20a"; }
1122
+
1123
+ %ion-more:before { content: "\f20b"; }
1124
+
1125
+ %ion-mouse:before { content: "\f340"; }
1126
+
1127
+ %ion-music-note:before { content: "\f20c"; }
1128
+
1129
+ %ion-navicon:before { content: "\f20e"; }
1130
+
1131
+ %ion-navicon-round:before { content: "\f20d"; }
1132
+
1133
+ %ion-navigate:before { content: "\f2a3"; }
1134
+
1135
+ %ion-network:before { content: "\f341"; }
1136
+
1137
+ %ion-no-smoking:before { content: "\f2c2"; }
1138
+
1139
+ %ion-nuclear:before { content: "\f2a4"; }
1140
+
1141
+ %ion-outlet:before { content: "\f342"; }
1142
+
1143
+ %ion-paintbrush:before { content: "\f4d5"; }
1144
+
1145
+ %ion-paintbucket:before { content: "\f4d6"; }
1146
+
1147
+ %ion-paper-airplane:before { content: "\f2c3"; }
1148
+
1149
+ %ion-paperclip:before { content: "\f20f"; }
1150
+
1151
+ %ion-pause:before { content: "\f210"; }
1152
+
1153
+ %ion-person:before { content: "\f213"; }
1154
+
1155
+ %ion-person-add:before { content: "\f211"; }
1156
+
1157
+ %ion-person-stalker:before { content: "\f212"; }
1158
+
1159
+ %ion-pie-graph:before { content: "\f2a5"; }
1160
+
1161
+ %ion-pin:before { content: "\f2a6"; }
1162
+
1163
+ %ion-pinpoint:before { content: "\f2a7"; }
1164
+
1165
+ %ion-pizza:before { content: "\f2a8"; }
1166
+
1167
+ %ion-plane:before { content: "\f214"; }
1168
+
1169
+ %ion-planet:before { content: "\f343"; }
1170
+
1171
+ %ion-play:before { content: "\f215"; }
1172
+
1173
+ %ion-playstation:before { content: "\f30a"; }
1174
+
1175
+ %ion-plus:before { content: "\f218"; }
1176
+
1177
+ %ion-plus-circled:before { content: "\f216"; }
1178
+
1179
+ %ion-plus-round:before { content: "\f217"; }
1180
+
1181
+ %ion-podium:before { content: "\f344"; }
1182
+
1183
+ %ion-pound:before { content: "\f219"; }
1184
+
1185
+ %ion-power:before { content: "\f2a9"; }
1186
+
1187
+ %ion-pricetag:before { content: "\f2aa"; }
1188
+
1189
+ %ion-pricetags:before { content: "\f2ab"; }
1190
+
1191
+ %ion-printer:before { content: "\f21a"; }
1192
+
1193
+ %ion-pull-request:before { content: "\f345"; }
1194
+
1195
+ %ion-qr-scanner:before { content: "\f346"; }
1196
+
1197
+ %ion-quote:before { content: "\f347"; }
1198
+
1199
+ %ion-radio-waves:before { content: "\f2ac"; }
1200
+
1201
+ %ion-record:before { content: "\f21b"; }
1202
+
1203
+ %ion-refresh:before { content: "\f21c"; }
1204
+
1205
+ %ion-reply:before { content: "\f21e"; }
1206
+
1207
+ %ion-reply-all:before { content: "\f21d"; }
1208
+
1209
+ %ion-ribbon-a:before { content: "\f348"; }
1210
+
1211
+ %ion-ribbon-b:before { content: "\f349"; }
1212
+
1213
+ %ion-sad:before { content: "\f34a"; }
1214
+
1215
+ %ion-sad-outline:before { content: "\f4d7"; }
1216
+
1217
+ %ion-scissors:before { content: "\f34b"; }
1218
+
1219
+ %ion-search:before { content: "\f21f"; }
1220
+
1221
+ %ion-settings:before { content: "\f2ad"; }
1222
+
1223
+ %ion-share:before { content: "\f220"; }
1224
+
1225
+ %ion-shuffle:before { content: "\f221"; }
1226
+
1227
+ %ion-skip-backward:before { content: "\f222"; }
1228
+
1229
+ %ion-skip-forward:before { content: "\f223"; }
1230
+
1231
+ %ion-social-android:before { content: "\f225"; }
1232
+
1233
+ %ion-social-android-outline:before { content: "\f224"; }
1234
+
1235
+ %ion-social-angular:before { content: "\f4d9"; }
1236
+
1237
+ %ion-social-angular-outline:before { content: "\f4d8"; }
1238
+
1239
+ %ion-social-apple:before { content: "\f227"; }
1240
+
1241
+ %ion-social-apple-outline:before { content: "\f226"; }
1242
+
1243
+ %ion-social-bitcoin:before { content: "\f2af"; }
1244
+
1245
+ %ion-social-bitcoin-outline:before { content: "\f2ae"; }
1246
+
1247
+ %ion-social-buffer:before { content: "\f229"; }
1248
+
1249
+ %ion-social-buffer-outline:before { content: "\f228"; }
1250
+
1251
+ %ion-social-chrome:before { content: "\f4db"; }
1252
+
1253
+ %ion-social-chrome-outline:before { content: "\f4da"; }
1254
+
1255
+ %ion-social-codepen:before { content: "\f4dd"; }
1256
+
1257
+ %ion-social-codepen-outline:before { content: "\f4dc"; }
1258
+
1259
+ %ion-social-css3:before { content: "\f4df"; }
1260
+
1261
+ %ion-social-css3-outline:before { content: "\f4de"; }
1262
+
1263
+ %ion-social-designernews:before { content: "\f22b"; }
1264
+
1265
+ %ion-social-designernews-outline:before { content: "\f22a"; }
1266
+
1267
+ %ion-social-dribbble:before { content: "\f22d"; }
1268
+
1269
+ %ion-social-dribbble-outline:before { content: "\f22c"; }
1270
+
1271
+ %ion-social-dropbox:before { content: "\f22f"; }
1272
+
1273
+ %ion-social-dropbox-outline:before { content: "\f22e"; }
1274
+
1275
+ %ion-social-euro:before { content: "\f4e1"; }
1276
+
1277
+ %ion-social-euro-outline:before { content: "\f4e0"; }
1278
+
1279
+ %ion-social-facebook:before { content: "\f231"; }
1280
+
1281
+ %ion-social-facebook-outline:before { content: "\f230"; }
1282
+
1283
+ %ion-social-foursquare:before { content: "\f34d"; }
1284
+
1285
+ %ion-social-foursquare-outline:before { content: "\f34c"; }
1286
+
1287
+ %ion-social-freebsd-devil:before { content: "\f2c4"; }
1288
+
1289
+ %ion-social-github:before { content: "\f233"; }
1290
+
1291
+ %ion-social-github-outline:before { content: "\f232"; }
1292
+
1293
+ %ion-social-google:before { content: "\f34f"; }
1294
+
1295
+ %ion-social-google-outline:before { content: "\f34e"; }
1296
+
1297
+ %ion-social-googleplus:before { content: "\f235"; }
1298
+
1299
+ %ion-social-googleplus-outline:before { content: "\f234"; }
1300
+
1301
+ %ion-social-hackernews:before { content: "\f237"; }
1302
+
1303
+ %ion-social-hackernews-outline:before { content: "\f236"; }
1304
+
1305
+ %ion-social-html5:before { content: "\f4e3"; }
1306
+
1307
+ %ion-social-html5-outline:before { content: "\f4e2"; }
1308
+
1309
+ %ion-social-instagram:before { content: "\f351"; }
1310
+
1311
+ %ion-social-instagram-outline:before { content: "\f350"; }
1312
+
1313
+ %ion-social-javascript:before { content: "\f4e5"; }
1314
+
1315
+ %ion-social-javascript-outline:before { content: "\f4e4"; }
1316
+
1317
+ %ion-social-linkedin:before { content: "\f239"; }
1318
+
1319
+ %ion-social-linkedin-outline:before { content: "\f238"; }
1320
+
1321
+ %ion-social-markdown:before { content: "\f4e6"; }
1322
+
1323
+ %ion-social-nodejs:before { content: "\f4e7"; }
1324
+
1325
+ %ion-social-octocat:before { content: "\f4e8"; }
1326
+
1327
+ %ion-social-pinterest:before { content: "\f2b1"; }
1328
+
1329
+ %ion-social-pinterest-outline:before { content: "\f2b0"; }
1330
+
1331
+ %ion-social-python:before { content: "\f4e9"; }
1332
+
1333
+ %ion-social-reddit:before { content: "\f23b"; }
1334
+
1335
+ %ion-social-reddit-outline:before { content: "\f23a"; }
1336
+
1337
+ %ion-social-rss:before { content: "\f23d"; }
1338
+
1339
+ %ion-social-rss-outline:before { content: "\f23c"; }
1340
+
1341
+ %ion-social-sass:before { content: "\f4ea"; }
1342
+
1343
+ %ion-social-skype:before { content: "\f23f"; }
1344
+
1345
+ %ion-social-skype-outline:before { content: "\f23e"; }
1346
+
1347
+ %ion-social-snapchat:before { content: "\f4ec"; }
1348
+
1349
+ %ion-social-snapchat-outline:before { content: "\f4eb"; }
1350
+
1351
+ %ion-social-tumblr:before { content: "\f241"; }
1352
+
1353
+ %ion-social-tumblr-outline:before { content: "\f240"; }
1354
+
1355
+ %ion-social-tux:before { content: "\f2c5"; }
1356
+
1357
+ %ion-social-twitch:before { content: "\f4ee"; }
1358
+
1359
+ %ion-social-twitch-outline:before { content: "\f4ed"; }
1360
+
1361
+ %ion-social-twitter:before { content: "\f243"; }
1362
+
1363
+ %ion-social-twitter-outline:before { content: "\f242"; }
1364
+
1365
+ %ion-social-usd:before { content: "\f353"; }
1366
+
1367
+ %ion-social-usd-outline:before { content: "\f352"; }
1368
+
1369
+ %ion-social-vimeo:before { content: "\f245"; }
1370
+
1371
+ %ion-social-vimeo-outline:before { content: "\f244"; }
1372
+
1373
+ %ion-social-whatsapp:before { content: "\f4f0"; }
1374
+
1375
+ %ion-social-whatsapp-outline:before { content: "\f4ef"; }
1376
+
1377
+ %ion-social-windows:before { content: "\f247"; }
1378
+
1379
+ %ion-social-windows-outline:before { content: "\f246"; }
1380
+
1381
+ %ion-social-wordpress:before { content: "\f249"; }
1382
+
1383
+ %ion-social-wordpress-outline:before { content: "\f248"; }
1384
+
1385
+ %ion-social-yahoo:before { content: "\f24b"; }
1386
+
1387
+ %ion-social-yahoo-outline:before { content: "\f24a"; }
1388
+
1389
+ %ion-social-yen:before { content: "\f4f2"; }
1390
+
1391
+ %ion-social-yen-outline:before { content: "\f4f1"; }
1392
+
1393
+ %ion-social-youtube:before { content: "\f24d"; }
1394
+
1395
+ %ion-social-youtube-outline:before { content: "\f24c"; }
1396
+
1397
+ %ion-soup-can:before { content: "\f4f4"; }
1398
+
1399
+ %ion-soup-can-outline:before { content: "\f4f3"; }
1400
+
1401
+ %ion-speakerphone:before { content: "\f2b2"; }
1402
+
1403
+ %ion-speedometer:before { content: "\f2b3"; }
1404
+
1405
+ %ion-spoon:before { content: "\f2b4"; }
1406
+
1407
+ %ion-star:before { content: "\f24e"; }
1408
+
1409
+ %ion-stats-bars:before { content: "\f2b5"; }
1410
+
1411
+ %ion-steam:before { content: "\f30b"; }
1412
+
1413
+ %ion-stop:before { content: "\f24f"; }
1414
+
1415
+ %ion-thermometer:before { content: "\f2b6"; }
1416
+
1417
+ %ion-thumbsdown:before { content: "\f250"; }
1418
+
1419
+ %ion-thumbsup:before { content: "\f251"; }
1420
+
1421
+ %ion-toggle:before { content: "\f355"; }
1422
+
1423
+ %ion-toggle-filled:before { content: "\f354"; }
1424
+
1425
+ %ion-transgender:before { content: "\f4f5"; }
1426
+
1427
+ %ion-trash-a:before { content: "\f252"; }
1428
+
1429
+ %ion-trash-b:before { content: "\f253"; }
1430
+
1431
+ %ion-trophy:before { content: "\f356"; }
1432
+
1433
+ %ion-tshirt:before { content: "\f4f7"; }
1434
+
1435
+ %ion-tshirt-outline:before { content: "\f4f6"; }
1436
+
1437
+ %ion-umbrella:before { content: "\f2b7"; }
1438
+
1439
+ %ion-university:before { content: "\f357"; }
1440
+
1441
+ %ion-unlocked:before { content: "\f254"; }
1442
+
1443
+ %ion-upload:before { content: "\f255"; }
1444
+
1445
+ %ion-usb:before { content: "\f2b8"; }
1446
+
1447
+ %ion-videocamera:before { content: "\f256"; }
1448
+
1449
+ %ion-volume-high:before { content: "\f257"; }
1450
+
1451
+ %ion-volume-low:before { content: "\f258"; }
1452
+
1453
+ %ion-volume-medium:before { content: "\f259"; }
1454
+
1455
+ %ion-volume-mute:before { content: "\f25a"; }
1456
+
1457
+ %ion-wand:before { content: "\f358"; }
1458
+
1459
+ %ion-waterdrop:before { content: "\f25b"; }
1460
+
1461
+ %ion-wifi:before { content: "\f25c"; }
1462
+
1463
+ %ion-wineglass:before { content: "\f2b9"; }
1464
+
1465
+ %ion-woman:before { content: "\f25d"; }
1466
+
1467
+ %ion-wrench:before { content: "\f2ba"; }
1468
+
1469
+ %ion-xbox:before { content: "\f30c"; }