cja-phoenix 0.6.0 → 0.6.2

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 (283) hide show
  1. package/dist/cja-phoenix.es.js +3816 -4306
  2. package/dist/style.css +1 -0
  3. package/dist/types/components/composite/CheckoutCrossSell.vue.d.ts +29 -0
  4. package/dist/types/components/composite/CheckoutLayout.vue.d.ts +23 -0
  5. package/dist/types/components/composite/CheckoutMilestones.vue.d.ts +16 -0
  6. package/dist/types/components/composite/CjaFooter.vue.d.ts +34 -0
  7. package/dist/types/components/composite/CjaMenuBar.vue.d.ts +52 -0
  8. package/dist/types/components/composite/FunnelLayout.vue.d.ts +35 -0
  9. package/dist/types/components/composite/FunnelSubmit.vue.d.ts +26 -0
  10. package/dist/types/components/composite/FunnelSummary.vue.d.ts +77 -0
  11. package/dist/types/components/composite/FunnelTitle.vue.d.ts +19 -0
  12. package/dist/types/components/composite/InfoShowcase.vue.d.ts +25 -0
  13. package/dist/types/components/composite/JourneyMacroSteps.vue.d.ts +16 -0
  14. package/dist/types/components/composite/ResultsSidebar.vue.d.ts +9 -0
  15. package/dist/types/components/forms/CheckboxInput.vue.d.ts +41 -0
  16. package/dist/types/components/forms/CurrencyInput.vue.d.ts +65 -0
  17. package/dist/types/components/forms/FileInput.vue.d.ts +89 -0
  18. package/dist/types/components/forms/NumberInput.vue.d.ts +58 -0
  19. package/dist/types/components/forms/PhoneInput.vue.d.ts +69 -0
  20. package/dist/types/components/forms/RadioInput.vue.d.ts +43 -0
  21. package/dist/types/components/forms/RadioInputList.vue.d.ts +65 -0
  22. package/dist/types/components/forms/SelectInput.vue.d.ts +80 -0
  23. package/dist/types/components/forms/SelectionTiles.vue.d.ts +51 -0
  24. package/dist/types/components/forms/TextInput.vue.d.ts +76 -0
  25. package/dist/types/components/forms/TileCheckboxInput.vue.d.ts +23 -0
  26. package/dist/types/components/forms/ToggleInput.vue.d.ts +51 -0
  27. package/dist/types/components/forms/structure/InputContainer.vue.d.ts +22 -0
  28. package/dist/types/components/forms/structure/InputError.vue.d.ts +15 -0
  29. package/dist/types/components/forms/structure/InputTitle.vue.d.ts +21 -0
  30. package/dist/types/components/structural/CjaButton.vue.d.ts +59 -0
  31. package/dist/types/components/structural/CollapseContainer.vue.d.ts +51 -0
  32. package/dist/{components → types/components}/structural/ContentTabs.vue.d.ts +17 -20
  33. package/dist/types/components/structural/FixedContainer.vue.d.ts +68 -0
  34. package/dist/types/components/structural/GridContainer.vue.d.ts +36 -0
  35. package/dist/types/components/structural/GridItem.vue.d.ts +26 -0
  36. package/dist/types/components/structural/InfoMessage.vue.d.ts +30 -0
  37. package/dist/types/components/structural/LoadingSpinner.vue.d.ts +17 -0
  38. package/dist/types/components/structural/Modal.vue.d.ts +65 -0
  39. package/dist/types/components/structural/Scaffold.vue.d.ts +9 -0
  40. package/dist/types/index.d.ts +16 -7
  41. package/dist/types/stories/CjaButton.story.vue.d.ts +2 -0
  42. package/dist/types/stories/ContentTabs.story.vue.d.ts +2 -0
  43. package/dist/types/stories/Modal.story.vue.d.ts +2 -0
  44. package/dist/types/stories/RadioInputList.story.vue.d.ts +2 -0
  45. package/dist/types/{Router.d.ts → types/Router.d.ts} +1 -0
  46. package/dist/types/types/index.d.ts +7 -0
  47. package/dist/{utils → types/utils}/formValidations.d.ts +3 -0
  48. package/package.json +21 -30
  49. package/src/assets/backdrop.scss +10 -0
  50. package/src/assets/breakpoints.scss +12 -0
  51. package/src/assets/fonts.scss +1 -0
  52. package/src/assets/forms.scss +97 -0
  53. package/src/assets/grid.scss +14 -0
  54. package/src/assets/iconia/Read Me.txt +7 -0
  55. package/src/assets/iconia/demo-files/demo.css +155 -0
  56. package/src/assets/iconia/demo-files/demo.js +30 -0
  57. package/src/assets/iconia/demo.html +7055 -0
  58. package/src/assets/iconia/fonts/CGG-icomoon.eot +0 -0
  59. package/src/assets/iconia/fonts/CGG-icomoon.svg +513 -0
  60. package/src/assets/iconia/fonts/CGG-icomoon.ttf +0 -0
  61. package/src/assets/iconia/fonts/CGG-icomoon.woff +0 -0
  62. package/src/assets/iconia/selection.json +1 -0
  63. package/src/assets/iconia/style.css +1547 -0
  64. package/src/assets/iconia/style.scss +2556 -0
  65. package/src/assets/iconia/variables.scss +507 -0
  66. package/src/assets/main.scss +30 -0
  67. package/src/assets/radioOld.scss +52 -0
  68. package/src/assets/shadows.scss +3 -0
  69. package/src/assets/tippy.scss +45 -0
  70. package/src/assets/vars/development.scss +4 -0
  71. package/src/assets/vars/production.scss +4 -0
  72. package/src/components/composite/CheckoutCrossSell.vue +478 -0
  73. package/src/components/composite/CheckoutLayout.vue +59 -0
  74. package/src/components/composite/CheckoutMilestones.vue +161 -0
  75. package/src/components/composite/CjaFooter.vue +223 -0
  76. package/src/components/composite/CjaMenuBar.vue +543 -0
  77. package/src/components/composite/FunnelLayout.vue +197 -0
  78. package/src/components/composite/FunnelSubmit.vue +53 -0
  79. package/src/components/composite/FunnelSummary.vue +198 -0
  80. package/src/components/composite/FunnelTitle.vue +59 -0
  81. package/src/components/composite/InfoShowcase.vue +87 -0
  82. package/src/components/composite/JourneyMacroSteps.vue +104 -0
  83. package/src/components/composite/ProductDetails.vue +149 -0
  84. package/src/components/composite/ResultsLayout.vue +156 -0
  85. package/src/components/composite/ResultsSidebar.vue +74 -0
  86. package/src/components/forms/CheckboxInput.vue +103 -0
  87. package/src/components/forms/CurrencyInput.vue +126 -0
  88. package/src/components/forms/FileInput.vue +250 -0
  89. package/src/components/forms/NumberInput.vue +165 -0
  90. package/src/components/forms/PhoneInput.vue +122 -0
  91. package/src/components/forms/RadioInput.vue +98 -0
  92. package/src/components/forms/RadioInputList.vue +156 -0
  93. package/src/components/forms/SelectInput.vue +392 -0
  94. package/src/components/forms/SelectionTiles.vue +196 -0
  95. package/src/components/forms/TextInput.vue +144 -0
  96. package/src/components/forms/TileCheckboxInput.vue +96 -0
  97. package/src/components/forms/ToggleInput.vue +88 -0
  98. package/src/components/forms/structure/InputContainer.vue +28 -0
  99. package/src/components/forms/structure/InputError.vue +26 -0
  100. package/src/components/forms/structure/InputTitle.vue +52 -0
  101. package/src/components/index.ts +73 -0
  102. package/src/components/structural/CjaButton.vue +332 -0
  103. package/src/components/structural/CollapseContainer.vue +141 -0
  104. package/src/components/structural/ContentTabs.vue +105 -0
  105. package/src/components/structural/FixedContainer.vue +107 -0
  106. package/src/components/structural/GridContainer.vue +70 -0
  107. package/src/components/structural/GridItem.vue +47 -0
  108. package/src/components/structural/InfoMessage.vue +105 -0
  109. package/src/components/structural/LoadingSpinner.vue +39 -0
  110. package/src/components/structural/Modal.vue +209 -0
  111. package/src/components/structural/Scaffold.vue +3 -0
  112. package/src/constants/MyConstants.ts +1 -0
  113. package/src/constants/index.ts +5 -0
  114. package/src/env.d.ts +11 -0
  115. package/src/index.ts +31 -0
  116. package/src/stories/CjaButton.story.vue +192 -0
  117. package/src/stories/ContentTabs.story.vue +59 -0
  118. package/src/stories/Modal.story.vue +127 -0
  119. package/src/stories/RadioInputList.story.vue +61 -0
  120. package/src/types/CheckoutMilestone.ts +5 -0
  121. package/src/types/Footer.ts +17 -0
  122. package/src/types/Menu.ts +19 -0
  123. package/src/types/RadioOption.ts +7 -0
  124. package/src/types/Router.ts +19 -0
  125. package/src/types/SelectOption.ts +6 -0
  126. package/src/types/StoreDataValue.ts +12 -0
  127. package/src/types/Storyblok.ts +10 -0
  128. package/src/types/TileOption.ts +8 -0
  129. package/src/types/index.ts +19 -0
  130. package/src/utils/cjaRouter.ts +74 -0
  131. package/src/utils/cjaStore.ts +43 -0
  132. package/src/utils/findScrollAncestor.ts +16 -0
  133. package/src/utils/formValidations.ts +192 -0
  134. package/src/utils/generateRoutes.ts +36 -0
  135. package/src/utils/getFromUrl.ts +25 -0
  136. package/src/utils/getMessages.ts +23 -0
  137. package/src/utils/gtm.ts +158 -0
  138. package/src/utils/index.ts +31 -0
  139. package/src/utils/jsonReviver.ts +20 -0
  140. package/src/utils/storyblokLink.ts +4 -0
  141. package/src/utils/updateForm.ts +40 -0
  142. package/src/utils/uploadFile.ts +25 -0
  143. package/src/utils/useGlobalProperties.ts +11 -0
  144. package/src/utils/useViewportDetector.ts +35 -0
  145. package/dist/cja-phoenix.cjs.js +0 -44
  146. package/dist/cja-phoenix.d.ts +0 -3
  147. package/dist/cja-phoenix.umd.js +0 -45
  148. package/dist/components/composite/CheckoutCrossSell.vue.d.ts +0 -36
  149. package/dist/components/composite/CheckoutLayout.vue.d.ts +0 -20
  150. package/dist/components/composite/CheckoutMilestones.vue.d.ts +0 -13
  151. package/dist/components/composite/CjaFooter.vue.d.ts +0 -29
  152. package/dist/components/composite/CjaMenuBar.vue.d.ts +0 -53
  153. package/dist/components/composite/FunnelLayout.vue.d.ts +0 -38
  154. package/dist/components/composite/FunnelSubmit.vue.d.ts +0 -25
  155. package/dist/components/composite/FunnelSummary.vue.d.ts +0 -76
  156. package/dist/components/composite/FunnelTitle.vue.d.ts +0 -24
  157. package/dist/components/composite/InfoShowcase.vue.d.ts +0 -28
  158. package/dist/components/composite/JourneyMacroSteps.vue.d.ts +0 -13
  159. package/dist/components/forms/CheckboxInput.vue.d.ts +0 -38
  160. package/dist/components/forms/CurrencyInput.vue.d.ts +0 -92
  161. package/dist/components/forms/FileInput.vue.d.ts +0 -118
  162. package/dist/components/forms/NumberInput.vue.d.ts +0 -73
  163. package/dist/components/forms/PhoneInput.vue.d.ts +0 -104
  164. package/dist/components/forms/RadioInputList.vue.d.ts +0 -96
  165. package/dist/components/forms/SelectInput.vue.d.ts +0 -121
  166. package/dist/components/forms/SelectionTiles.vue.d.ts +0 -64
  167. package/dist/components/forms/TextInput.vue.d.ts +0 -127
  168. package/dist/components/forms/TileCheckboxInput.vue.d.ts +0 -34
  169. package/dist/components/forms/ToggleInput.vue.d.ts +0 -70
  170. package/dist/components/forms/structure/InputContainer.vue.d.ts +0 -17
  171. package/dist/components/forms/structure/InputError.vue.d.ts +0 -12
  172. package/dist/components/forms/structure/InputTitle.vue.d.ts +0 -30
  173. package/dist/components/structural/CjaButton.vue.d.ts +0 -66
  174. package/dist/components/structural/CollapseContainer.vue.d.ts +0 -40
  175. package/dist/components/structural/FixedContainer.vue.d.ts +0 -69
  176. package/dist/components/structural/GridContainer.vue.d.ts +0 -21
  177. package/dist/components/structural/GridItem.vue.d.ts +0 -29
  178. package/dist/components/structural/InfoMessage.vue.d.ts +0 -39
  179. package/dist/components/structural/LoadingSpinner.vue.d.ts +0 -16
  180. package/dist/components/structural/Modal.vue.d.ts +0 -50
  181. package/dist/components/structural/Scaffold.vue.d.ts +0 -3
  182. package/dist/components/structural/Scaffold.vue.d.ts.map +0 -1
  183. package/dist/index.d.ts +0 -14
  184. package/dist/src/components/composite/CheckoutCrossSell.vue.d.ts +0 -5
  185. package/dist/src/components/composite/CheckoutCrossSell.vue.d.ts.map +0 -1
  186. package/dist/src/components/composite/CheckoutLayout.vue.d.ts +0 -5
  187. package/dist/src/components/composite/CheckoutLayout.vue.d.ts.map +0 -1
  188. package/dist/src/components/composite/CheckoutMilestones.vue.d.ts +0 -5
  189. package/dist/src/components/composite/CheckoutMilestones.vue.d.ts.map +0 -1
  190. package/dist/src/components/composite/CjaFooter.vue.d.ts +0 -5
  191. package/dist/src/components/composite/CjaFooter.vue.d.ts.map +0 -1
  192. package/dist/src/components/composite/CjaMenuBar.vue.d.ts +0 -5
  193. package/dist/src/components/composite/CjaMenuBar.vue.d.ts.map +0 -1
  194. package/dist/src/components/composite/FunnelLayout.vue.d.ts +0 -5
  195. package/dist/src/components/composite/FunnelLayout.vue.d.ts.map +0 -1
  196. package/dist/src/components/composite/FunnelSubmit.vue.d.ts +0 -5
  197. package/dist/src/components/composite/FunnelSubmit.vue.d.ts.map +0 -1
  198. package/dist/src/components/composite/FunnelSummary.vue.d.ts +0 -5
  199. package/dist/src/components/composite/FunnelSummary.vue.d.ts.map +0 -1
  200. package/dist/src/components/composite/FunnelTitle.vue.d.ts +0 -5
  201. package/dist/src/components/composite/FunnelTitle.vue.d.ts.map +0 -1
  202. package/dist/src/components/composite/InfoShowcase.vue.d.ts +0 -5
  203. package/dist/src/components/composite/InfoShowcase.vue.d.ts.map +0 -1
  204. package/dist/src/components/composite/JourneyMacroSteps.vue.d.ts +0 -5
  205. package/dist/src/components/composite/JourneyMacroSteps.vue.d.ts.map +0 -1
  206. package/dist/src/components/composite/ProductDetails.vue.d.ts +0 -5
  207. package/dist/src/components/composite/ProductDetails.vue.d.ts.map +0 -1
  208. package/dist/src/components/composite/ResultsLayout.vue.d.ts +0 -5
  209. package/dist/src/components/composite/ResultsLayout.vue.d.ts.map +0 -1
  210. package/dist/src/components/forms/CheckboxInput.vue.d.ts +0 -5
  211. package/dist/src/components/forms/CheckboxInput.vue.d.ts.map +0 -1
  212. package/dist/src/components/forms/CurrencyInput.vue.d.ts +0 -5
  213. package/dist/src/components/forms/CurrencyInput.vue.d.ts.map +0 -1
  214. package/dist/src/components/forms/FileInput.vue.d.ts +0 -5
  215. package/dist/src/components/forms/FileInput.vue.d.ts.map +0 -1
  216. package/dist/src/components/forms/NumberInput.vue.d.ts +0 -5
  217. package/dist/src/components/forms/NumberInput.vue.d.ts.map +0 -1
  218. package/dist/src/components/forms/PhoneInput.vue.d.ts +0 -5
  219. package/dist/src/components/forms/PhoneInput.vue.d.ts.map +0 -1
  220. package/dist/src/components/forms/RadioInputList.vue.d.ts +0 -5
  221. package/dist/src/components/forms/RadioInputList.vue.d.ts.map +0 -1
  222. package/dist/src/components/forms/SelectInput.vue.d.ts +0 -5
  223. package/dist/src/components/forms/SelectInput.vue.d.ts.map +0 -1
  224. package/dist/src/components/forms/SelectionTiles.vue.d.ts +0 -5
  225. package/dist/src/components/forms/SelectionTiles.vue.d.ts.map +0 -1
  226. package/dist/src/components/forms/TextInput.vue.d.ts +0 -5
  227. package/dist/src/components/forms/TextInput.vue.d.ts.map +0 -1
  228. package/dist/src/components/forms/TileCheckboxInput.vue.d.ts +0 -5
  229. package/dist/src/components/forms/TileCheckboxInput.vue.d.ts.map +0 -1
  230. package/dist/src/components/forms/ToggleInput.vue.d.ts +0 -5
  231. package/dist/src/components/forms/ToggleInput.vue.d.ts.map +0 -1
  232. package/dist/src/components/forms/structure/InputContainer.vue.d.ts +0 -5
  233. package/dist/src/components/forms/structure/InputContainer.vue.d.ts.map +0 -1
  234. package/dist/src/components/forms/structure/InputError.vue.d.ts +0 -5
  235. package/dist/src/components/forms/structure/InputError.vue.d.ts.map +0 -1
  236. package/dist/src/components/forms/structure/InputTitle.vue.d.ts +0 -5
  237. package/dist/src/components/forms/structure/InputTitle.vue.d.ts.map +0 -1
  238. package/dist/src/components/structural/CjaButton.vue.d.ts +0 -5
  239. package/dist/src/components/structural/CjaButton.vue.d.ts.map +0 -1
  240. package/dist/src/components/structural/CollapseContainer.vue.d.ts +0 -5
  241. package/dist/src/components/structural/CollapseContainer.vue.d.ts.map +0 -1
  242. package/dist/src/components/structural/ContentTabs.vue.d.ts +0 -5
  243. package/dist/src/components/structural/ContentTabs.vue.d.ts.map +0 -1
  244. package/dist/src/components/structural/FixedContainer.vue.d.ts +0 -5
  245. package/dist/src/components/structural/FixedContainer.vue.d.ts.map +0 -1
  246. package/dist/src/components/structural/GridContainer.vue.d.ts +0 -5
  247. package/dist/src/components/structural/GridContainer.vue.d.ts.map +0 -1
  248. package/dist/src/components/structural/GridItem.vue.d.ts +0 -5
  249. package/dist/src/components/structural/GridItem.vue.d.ts.map +0 -1
  250. package/dist/src/components/structural/InfoMessage.vue.d.ts +0 -5
  251. package/dist/src/components/structural/InfoMessage.vue.d.ts.map +0 -1
  252. package/dist/src/components/structural/LoadingSpinner.vue.d.ts +0 -5
  253. package/dist/src/components/structural/LoadingSpinner.vue.d.ts.map +0 -1
  254. package/dist/src/components/structural/Modal.vue.d.ts +0 -5
  255. package/dist/src/components/structural/Modal.vue.d.ts.map +0 -1
  256. package/dist/styles.css +0 -1
  257. /package/dist/{components → types/components}/composite/ProductDetails.vue.d.ts +0 -0
  258. /package/dist/{components → types/components}/composite/ResultsLayout.vue.d.ts +0 -0
  259. /package/dist/{components → types/components}/index.d.ts +0 -0
  260. /package/dist/{constants → types/constants}/MyConstants.d.ts +0 -0
  261. /package/dist/{constants → types/constants}/index.d.ts +0 -0
  262. /package/dist/types/{CheckoutMilestone.d.ts → types/CheckoutMilestone.d.ts} +0 -0
  263. /package/dist/types/{Footer.d.ts → types/Footer.d.ts} +0 -0
  264. /package/dist/types/{Menu.d.ts → types/Menu.d.ts} +0 -0
  265. /package/dist/types/{RadioOption.d.ts → types/RadioOption.d.ts} +0 -0
  266. /package/dist/types/{SelectOption.d.ts → types/SelectOption.d.ts} +0 -0
  267. /package/dist/types/{StoreDataValue.d.ts → types/StoreDataValue.d.ts} +0 -0
  268. /package/dist/types/{Storyblok.d.ts → types/Storyblok.d.ts} +0 -0
  269. /package/dist/types/{TileOption.d.ts → types/TileOption.d.ts} +0 -0
  270. /package/dist/{utils → types/utils}/cjaRouter.d.ts +0 -0
  271. /package/dist/{utils → types/utils}/cjaStore.d.ts +0 -0
  272. /package/dist/{utils → types/utils}/findScrollAncestor.d.ts +0 -0
  273. /package/dist/{utils → types/utils}/generateRoutes.d.ts +0 -0
  274. /package/dist/{utils → types/utils}/getFromUrl.d.ts +0 -0
  275. /package/dist/{utils → types/utils}/getMessages.d.ts +0 -0
  276. /package/dist/{utils → types/utils}/gtm.d.ts +0 -0
  277. /package/dist/{utils → types/utils}/index.d.ts +0 -0
  278. /package/dist/{utils → types/utils}/jsonReviver.d.ts +0 -0
  279. /package/dist/{utils → types/utils}/storyblokLink.d.ts +0 -0
  280. /package/dist/{utils → types/utils}/updateForm.d.ts +0 -0
  281. /package/dist/{utils → types/utils}/uploadFile.d.ts +0 -0
  282. /package/dist/{utils → types/utils}/useGlobalProperties.d.ts +0 -0
  283. /package/dist/{utils → types/utils}/useViewportDetector.d.ts +0 -0
@@ -0,0 +1,2556 @@
1
+ @import "variables";
2
+
3
+ @font-face {
4
+ font-family: '#{$icomoon-font-family}';
5
+ src: url('#{$icomoon-font-path}/#{$icomoon-font-family}.eot?581rb2');
6
+ src: url('#{$icomoon-font-path}/#{$icomoon-font-family}.eot?581rb2#iefix') format('embedded-opentype'),
7
+ url('#{$icomoon-font-path}/#{$icomoon-font-family}.ttf?581rb2') format('truetype'),
8
+ url('#{$icomoon-font-path}/#{$icomoon-font-family}.woff?581rb2') format('woff'),
9
+ url('#{$icomoon-font-path}/#{$icomoon-font-family}.svg?581rb2##{$icomoon-font-family}') format('svg');
10
+ font-weight: normal;
11
+ font-style: normal;
12
+ font-display: block;
13
+ }
14
+
15
+ [class^="m-cgg-icon--"], [class*=" m-cgg-icon--"] {
16
+ /* use !important to prevent issues with browser extensions that change fonts */
17
+ font-family: '#{$icomoon-font-family}' !important;
18
+ speak: never;
19
+ font-style: normal;
20
+ font-weight: normal;
21
+ font-variant: normal;
22
+ text-transform: none;
23
+ line-height: 1;
24
+
25
+ /* Better Font Rendering =========== */
26
+ -webkit-font-smoothing: antialiased;
27
+ -moz-osx-font-smoothing: grayscale;
28
+ }
29
+
30
+ .m-cgg-icon--filters {
31
+ &:before {
32
+ content: $m-cgg-icon--filters;
33
+ }
34
+ }
35
+ .m-cgg-icon--search {
36
+ &:before {
37
+ content: $m-cgg-icon--search;
38
+ }
39
+ }
40
+ .m-cgg-icon--macro-step-contact {
41
+ &:before {
42
+ content: $m-cgg-icon--macro-step-contact;
43
+ }
44
+ }
45
+ .m-cgg-icon--macro-step-checkout {
46
+ &:before {
47
+ content: $m-cgg-icon--macro-step-checkout;
48
+ }
49
+ }
50
+ .m-cgg-icon--macro-step-results {
51
+ &:before {
52
+ content: $m-cgg-icon--macro-step-results;
53
+ }
54
+ }
55
+ .m-cgg-icon--macro-step-funnel {
56
+ &:before {
57
+ content: $m-cgg-icon--macro-step-funnel;
58
+ }
59
+ }
60
+ .m-cgg-icon--affiliates-add {
61
+ &:before {
62
+ content: $m-cgg-icon--affiliates-add;
63
+ }
64
+ }
65
+ .m-cgg-icon--affiliates-dashboard {
66
+ &:before {
67
+ content: $m-cgg-icon--affiliates-dashboard;
68
+ }
69
+ }
70
+ .m-cgg-icon--affiliates-home {
71
+ &:before {
72
+ content: $m-cgg-icon--affiliates-home;
73
+ }
74
+ }
75
+ .m-cgg-icon--affiliates-settings {
76
+ &:before {
77
+ content: $m-cgg-icon--affiliates-settings;
78
+ }
79
+ }
80
+ .m-cgg-icon--tiktok {
81
+ &:before {
82
+ content: $m-cgg-icon--tiktok;
83
+ color: #076b9c;
84
+ }
85
+ }
86
+ .m-cgg-icon--list-mode {
87
+ &:before {
88
+ content: $m-cgg-icon--list-mode;
89
+ }
90
+ }
91
+ .m-cgg-icon--grid-mode {
92
+ &:before {
93
+ content: $m-cgg-icon--grid-mode;
94
+ }
95
+ }
96
+ .m-cgg-icon--swap {
97
+ &:before {
98
+ content: $m-cgg-icon--swap;
99
+ }
100
+ }
101
+ .m-cgg-icon--cja-cashback {
102
+ &:before {
103
+ content: $m-cgg-icon--cja-cashback;
104
+ }
105
+ }
106
+ .m-cgg-icon--no-money {
107
+ &:before {
108
+ content: $m-cgg-icon--no-money;
109
+ }
110
+ }
111
+ .m-cgg-icon--plane {
112
+ &:before {
113
+ content: $m-cgg-icon--plane;
114
+ }
115
+ }
116
+ .m-cgg-icon--time {
117
+ &:before {
118
+ content: $m-cgg-icon--time;
119
+ }
120
+ }
121
+ .m-cgg-icon--filtros {
122
+ &:before {
123
+ content: $m-cgg-icon--filtros;
124
+ }
125
+ }
126
+ .m-cgg-icon--ordenacao {
127
+ &:before {
128
+ content: $m-cgg-icon--ordenacao;
129
+ }
130
+ }
131
+ .m-cgg-icon--gears {
132
+ &:before {
133
+ content: $m-cgg-icon--gears;
134
+ }
135
+ }
136
+ .m-cgg-icon--telemovel {
137
+ &:before {
138
+ content: $m-cgg-icon--telemovel;
139
+ }
140
+ }
141
+ .m-cgg-icon--dual {
142
+ &:before {
143
+ content: $m-cgg-icon--dual;
144
+ }
145
+ }
146
+ .m-cgg-icon--callcenter {
147
+ &:before {
148
+ content: $m-cgg-icon--callcenter;
149
+ }
150
+ }
151
+ .m-cgg-icon--notes {
152
+ &:before {
153
+ content: $m-cgg-icon--notes;
154
+ }
155
+ }
156
+ .m-cgg-icon--pig {
157
+ &:before {
158
+ content: $m-cgg-icon--pig;
159
+ }
160
+ }
161
+ .m-cgg-icon--cja-email {
162
+ &:before {
163
+ content: $m-cgg-icon--cja-email;
164
+ }
165
+ }
166
+ .m-cgg-icon--linkedin-square {
167
+ &:before {
168
+ content: $m-cgg-icon--linkedin-square;
169
+ }
170
+ }
171
+ .m-cgg-icon--instagram-square {
172
+ &:before {
173
+ content: $m-cgg-icon--instagram-square;
174
+ }
175
+ }
176
+ .m-cgg-icon--facebook-circle {
177
+ &:before {
178
+ content: $m-cgg-icon--facebook-circle;
179
+ }
180
+ }
181
+ .m-cgg-icon--pin {
182
+ &:before {
183
+ content: $m-cgg-icon--pin;
184
+ }
185
+ }
186
+ .m-cgg-icon--younited-favicon .path1 {
187
+ &:before {
188
+ content: $m-cgg-icon--younited-favicon-path1;
189
+ color: rgb(81, 95, 117);
190
+ }
191
+ }
192
+ .m-cgg-icon--younited-favicon .path2 {
193
+ &:before {
194
+ content: $m-cgg-icon--younited-favicon-path2;
195
+ margin-left: -0.89453125em;
196
+ color: rgb(253, 78, 0);
197
+ }
198
+ }
199
+ .m-cgg-icon--star-line {
200
+ &:before {
201
+ content: $m-cgg-icon--star-line;
202
+ }
203
+ }
204
+ .m-cgg-icon--moedas {
205
+ &:before {
206
+ content: $m-cgg-icon--moedas;
207
+ }
208
+ }
209
+ .m-cgg-icon--speed {
210
+ &:before {
211
+ content: $m-cgg-icon--speed;
212
+ }
213
+ }
214
+ .m-cgg-icon--trouphy {
215
+ &:before {
216
+ content: $m-cgg-icon--trouphy;
217
+ }
218
+ }
219
+ .m-cgg-icon--comparaja .path1 {
220
+ &:before {
221
+ content: $m-cgg-icon--comparaja-path1;
222
+ color: rgb(7, 107, 156);
223
+ }
224
+ }
225
+ .m-cgg-icon--comparaja .path2 {
226
+ &:before {
227
+ content: $m-cgg-icon--comparaja-path2;
228
+ margin-left: -1em;
229
+ color: rgb(119, 170, 67);
230
+ }
231
+ }
232
+ .m-cgg-icon--netmovel {
233
+ &:before {
234
+ content: $m-cgg-icon--netmovel;
235
+ }
236
+ }
237
+ .m-cgg-icon--pin-morada {
238
+ &:before {
239
+ content: $m-cgg-icon--pin-morada;
240
+ }
241
+ }
242
+ .m-cgg-icon--net {
243
+ &:before {
244
+ content: $m-cgg-icon--net;
245
+ }
246
+ }
247
+ .m-cgg-icon--online {
248
+ &:before {
249
+ content: $m-cgg-icon--online;
250
+ }
251
+ }
252
+ .m-cgg-icon--telefone {
253
+ &:before {
254
+ content: $m-cgg-icon--telefone;
255
+ }
256
+ }
257
+ .m-cgg-icon--telefone-linha {
258
+ &:before {
259
+ content: $m-cgg-icon--telefone-linha;
260
+ }
261
+ }
262
+ .m-cgg-icon--tv {
263
+ &:before {
264
+ content: $m-cgg-icon--tv;
265
+ }
266
+ }
267
+ .m-cgg-icon--prazo-icon {
268
+ &:before {
269
+ content: $m-cgg-icon--prazo-icon;
270
+ }
271
+ }
272
+ .m-cgg-icon--montante-icon {
273
+ &:before {
274
+ content: $m-cgg-icon--montante-icon;
275
+ }
276
+ }
277
+ .m-cgg-icon--casa-icon {
278
+ &:before {
279
+ content: $m-cgg-icon--casa-icon;
280
+ }
281
+ }
282
+ .m-cgg-icon--attention {
283
+ &:before {
284
+ content: $m-cgg-icon--attention;
285
+ }
286
+ }
287
+ .m-cgg-icon--diamond {
288
+ &:before {
289
+ content: $m-cgg-icon--diamond;
290
+ }
291
+ }
292
+ .m-cgg-icon--edit1 {
293
+ &:before {
294
+ content: $m-cgg-icon--edit1;
295
+ }
296
+ }
297
+ .m-cgg-icon--checkmark {
298
+ &:before {
299
+ content: $m-cgg-icon--checkmark;
300
+ }
301
+ }
302
+ .m-cgg-icon--carteira {
303
+ &:before {
304
+ content: $m-cgg-icon--carteira;
305
+ }
306
+ }
307
+ .m-cgg-icon--documentos {
308
+ &:before {
309
+ content: $m-cgg-icon--documentos;
310
+ }
311
+ }
312
+ .m-cgg-icon--tabela {
313
+ &:before {
314
+ content: $m-cgg-icon--tabela;
315
+ }
316
+ }
317
+ .m-cgg-icon--user {
318
+ &:before {
319
+ content: $m-cgg-icon--user;
320
+ }
321
+ }
322
+ .m-cgg-icon--twitter {
323
+ &:before {
324
+ content: $m-cgg-icon--twitter;
325
+ color: #076b9c;
326
+ }
327
+ }
328
+ .m-cgg-icon--fb {
329
+ &:before {
330
+ content: $m-cgg-icon--fb;
331
+ color: #076b9c;
332
+ }
333
+ }
334
+ .m-cgg-icon--linkedin {
335
+ &:before {
336
+ content: $m-cgg-icon--linkedin;
337
+ color: #076b9c;
338
+ }
339
+ }
340
+ .m-cgg-icon--instagram {
341
+ &:before {
342
+ content: $m-cgg-icon--instagram;
343
+ color: #076b9c;
344
+ }
345
+ }
346
+ .m-cgg-icon--copy {
347
+ &:before {
348
+ content: $m-cgg-icon--copy;
349
+ }
350
+ }
351
+ .m-cgg-icon--whatsapp {
352
+ &:before {
353
+ content: $m-cgg-icon--whatsapp;
354
+ }
355
+ }
356
+ .m-cgg-icon--dashboard {
357
+ &:before {
358
+ content: $m-cgg-icon--dashboard;
359
+ }
360
+ }
361
+ .m-cgg-icon--item-list {
362
+ &:before {
363
+ content: $m-cgg-icon--item-list;
364
+ }
365
+ }
366
+ .m-cgg-icon--upload-cloud {
367
+ &:before {
368
+ content: $m-cgg-icon--upload-cloud;
369
+ }
370
+ }
371
+ .m-cgg-icon--rounded-arrow {
372
+ &:before {
373
+ content: $m-cgg-icon--rounded-arrow;
374
+ }
375
+ }
376
+ .m-cgg-icon--cross-cja {
377
+ &:before {
378
+ content: $m-cgg-icon--cross-cja;
379
+ }
380
+ }
381
+ .m-cgg-icon--check-cja {
382
+ &:before {
383
+ content: $m-cgg-icon--check-cja;
384
+ }
385
+ }
386
+ .m-cgg-icon--trash {
387
+ &:before {
388
+ content: $m-cgg-icon--trash;
389
+ }
390
+ }
391
+ .m-cgg-icon--upload {
392
+ &:before {
393
+ content: $m-cgg-icon--upload;
394
+ }
395
+ }
396
+ .m-cgg-icon--total {
397
+ &:before {
398
+ content: $m-cgg-icon--total;
399
+ }
400
+ }
401
+ .m-cgg-icon--gas {
402
+ &:before {
403
+ content: $m-cgg-icon--gas;
404
+ }
405
+ }
406
+ .m-cgg-icon--tarifasimples {
407
+ &:before {
408
+ content: $m-cgg-icon--tarifasimples;
409
+ }
410
+ }
411
+ .m-cgg-icon--electricity {
412
+ &:before {
413
+ content: $m-cgg-icon--electricity;
414
+ }
415
+ }
416
+ .m-cgg-icon--greenenergy {
417
+ &:before {
418
+ content: $m-cgg-icon--greenenergy;
419
+ }
420
+ }
421
+ .m-cgg-icon--bi-horaria {
422
+ &:before {
423
+ content: $m-cgg-icon--bi-horaria;
424
+ }
425
+ }
426
+ .m-cgg-icon--onlinebanking {
427
+ &:before {
428
+ content: $m-cgg-icon--onlinebanking;
429
+ }
430
+ }
431
+ .m-cgg-icon--otc {
432
+ &:before {
433
+ content: $m-cgg-icon--otc;
434
+ }
435
+ }
436
+ .m-cgg-icon--paymentcentre {
437
+ &:before {
438
+ content: $m-cgg-icon--paymentcentre;
439
+ }
440
+ }
441
+ .m-cgg-icon--paypal {
442
+ &:before {
443
+ content: $m-cgg-icon--paypal;
444
+ }
445
+ }
446
+ .m-cgg-icon--cheque {
447
+ &:before {
448
+ content: $m-cgg-icon--cheque;
449
+ }
450
+ }
451
+ .m-cgg-icon--creditcard {
452
+ &:before {
453
+ content: $m-cgg-icon--creditcard;
454
+ }
455
+ }
456
+ .m-cgg-icon--notification {
457
+ &:before {
458
+ content: $m-cgg-icon--notification;
459
+ }
460
+ }
461
+ .m-cgg-icon--cat-right {
462
+ &:before {
463
+ content: $m-cgg-icon--cat-right;
464
+ }
465
+ }
466
+ .m-cgg-icon--arrow-back {
467
+ &:before {
468
+ content: $m-cgg-icon--arrow-back;
469
+ }
470
+ }
471
+ .m-cgg-icon--load {
472
+ &:before {
473
+ content: $m-cgg-icon--load;
474
+ }
475
+ }
476
+ .m-cgg-icon--arrow-top {
477
+ &:before {
478
+ content: $m-cgg-icon--arrow-top;
479
+ }
480
+ }
481
+ .m-cgg-icon--arrow-bottom {
482
+ &:before {
483
+ content: $m-cgg-icon--arrow-bottom;
484
+ }
485
+ }
486
+ .m-cgg-icon--open-quote {
487
+ &:before {
488
+ content: $m-cgg-icon--open-quote;
489
+ }
490
+ }
491
+ .m-cgg-icon--arrow-next {
492
+ &:before {
493
+ content: $m-cgg-icon--arrow-next;
494
+ }
495
+ }
496
+ .m-cgg-icon--uniE00A {
497
+ &:before {
498
+ content: $m-cgg-icon--uniE00A;
499
+ }
500
+ }
501
+ .m-cgg-icon--clock {
502
+ &:before {
503
+ content: $m-cgg-icon--clock;
504
+ }
505
+ }
506
+ .m-cgg-icon--check2 {
507
+ &:before {
508
+ content: $m-cgg-icon--check2;
509
+ }
510
+ }
511
+ .m-cgg-icon--cross2 {
512
+ &:before {
513
+ content: $m-cgg-icon--cross2;
514
+ }
515
+ }
516
+ .m-cgg-icon--no {
517
+ &:before {
518
+ content: $m-cgg-icon--no;
519
+ }
520
+ }
521
+ .m-cgg-icon--tlist {
522
+ &:before {
523
+ content: $m-cgg-icon--tlist;
524
+ }
525
+ }
526
+ .m-cgg-icon--ci-car2 {
527
+ &:before {
528
+ content: $m-cgg-icon--ci-car2;
529
+ }
530
+ }
531
+ .m-cgg-icon--ci-user {
532
+ &:before {
533
+ content: $m-cgg-icon--ci-user;
534
+ }
535
+ }
536
+ .m-cgg-icon--ci-details {
537
+ &:before {
538
+ content: $m-cgg-icon--ci-details;
539
+ }
540
+ }
541
+ .m-cgg-icon--tlist-small {
542
+ &:before {
543
+ content: $m-cgg-icon--tlist-small;
544
+ }
545
+ }
546
+ .m-cgg-icon--tlist-small-vertical {
547
+ &:before {
548
+ content: $m-cgg-icon--tlist-small-vertical;
549
+ }
550
+ }
551
+ .m-cgg-icon--tlist-grid {
552
+ &:before {
553
+ content: $m-cgg-icon--tlist-grid;
554
+ }
555
+ }
556
+ .m-cgg-icon--paper-plane {
557
+ &:before {
558
+ content: $m-cgg-icon--paper-plane;
559
+ }
560
+ }
561
+ .m-cgg-icon--popular {
562
+ &:before {
563
+ content: $m-cgg-icon--popular;
564
+ }
565
+ }
566
+ .m-cgg-icon--exclusive {
567
+ &:before {
568
+ content: $m-cgg-icon--exclusive;
569
+ }
570
+ }
571
+ .m-cgg-icon--price-tag {
572
+ &:before {
573
+ content: $m-cgg-icon--price-tag;
574
+ }
575
+ }
576
+ .m-cgg-icon--return {
577
+ &:before {
578
+ content: $m-cgg-icon--return;
579
+ }
580
+ }
581
+ .m-cgg-icon--libris-usp1 {
582
+ &:before {
583
+ content: $m-cgg-icon--libris-usp1;
584
+ }
585
+ }
586
+ .m-cgg-icon--libris-usp2 {
587
+ &:before {
588
+ content: $m-cgg-icon--libris-usp2;
589
+ }
590
+ }
591
+ .m-cgg-icon--libris-usp3 {
592
+ &:before {
593
+ content: $m-cgg-icon--libris-usp3;
594
+ }
595
+ }
596
+ .m-cgg-icon--libris-details {
597
+ &:before {
598
+ content: $m-cgg-icon--libris-details;
599
+ }
600
+ }
601
+ .m-cgg-icon--libris-search {
602
+ &:before {
603
+ content: $m-cgg-icon--libris-search;
604
+ }
605
+ }
606
+ .m-cgg-icon--libris-bestoption {
607
+ &:before {
608
+ content: $m-cgg-icon--libris-bestoption;
609
+ }
610
+ }
611
+ .m-cgg-icon--ci-car {
612
+ &:before {
613
+ content: $m-cgg-icon--ci-car;
614
+ }
615
+ }
616
+ .m-cgg-icon--ci-driver {
617
+ &:before {
618
+ content: $m-cgg-icon--ci-driver;
619
+ }
620
+ }
621
+ .m-cgg-icon--ci-compare {
622
+ &:before {
623
+ content: $m-cgg-icon--ci-compare;
624
+ }
625
+ }
626
+ .m-cgg-icon--faq {
627
+ &:before {
628
+ content: $m-cgg-icon--faq;
629
+ }
630
+ }
631
+ .m-cgg-icon--tips {
632
+ &:before {
633
+ content: $m-cgg-icon--tips;
634
+ }
635
+ }
636
+ .m-cgg-icon--need-help {
637
+ &:before {
638
+ content: $m-cgg-icon--need-help;
639
+ }
640
+ }
641
+ .m-cgg-icon--tipseur {
642
+ &:before {
643
+ content: $m-cgg-icon--tipseur;
644
+ }
645
+ }
646
+ .m-cgg-icon--guide-ci {
647
+ &:before {
648
+ content: $m-cgg-icon--guide-ci;
649
+ }
650
+ }
651
+ .m-cgg-icon--guide-cc {
652
+ &:before {
653
+ content: $m-cgg-icon--guide-cc;
654
+ }
655
+ }
656
+ .m-cgg-icon--guide-mobile {
657
+ &:before {
658
+ content: $m-cgg-icon--guide-mobile;
659
+ }
660
+ }
661
+ .m-cgg-icon--guide-pl {
662
+ &:before {
663
+ content: $m-cgg-icon--guide-pl;
664
+ }
665
+ }
666
+ .m-cgg-icon--guide-ti {
667
+ &:before {
668
+ content: $m-cgg-icon--guide-ti;
669
+ }
670
+ }
671
+ .m-cgg-icon--guide-mi {
672
+ &:before {
673
+ content: $m-cgg-icon--guide-mi;
674
+ }
675
+ }
676
+ .m-cgg-icon--guide-broadband {
677
+ &:before {
678
+ content: $m-cgg-icon--guide-broadband;
679
+ }
680
+ }
681
+ .m-cgg-icon--guide-mortgage {
682
+ &:before {
683
+ content: $m-cgg-icon--guide-mortgage;
684
+ }
685
+ }
686
+ .m-cgg-icon--list {
687
+ &:before {
688
+ content: $m-cgg-icon--list;
689
+ }
690
+ }
691
+ .m-cgg-icon--arrow-up {
692
+ &:before {
693
+ content: $m-cgg-icon--arrow-up;
694
+ }
695
+ }
696
+ .m-cgg-icon--arrow-left {
697
+ &:before {
698
+ content: $m-cgg-icon--arrow-left;
699
+ }
700
+ }
701
+ .m-cgg-icon--arrow-down {
702
+ &:before {
703
+ content: $m-cgg-icon--arrow-down;
704
+ }
705
+ }
706
+ .m-cgg-icon--arrow-right {
707
+ &:before {
708
+ content: $m-cgg-icon--arrow-right;
709
+ }
710
+ }
711
+ .m-cgg-icon--home {
712
+ &:before {
713
+ content: $m-cgg-icon--home;
714
+ }
715
+ }
716
+ .m-cgg-icon--cross {
717
+ &:before {
718
+ content: $m-cgg-icon--cross;
719
+ }
720
+ }
721
+ .m-cgg-icon--signal {
722
+ &:before {
723
+ content: $m-cgg-icon--signal;
724
+ }
725
+ }
726
+ .m-cgg-icon--gift {
727
+ &:before {
728
+ content: $m-cgg-icon--gift;
729
+ }
730
+ }
731
+ .m-cgg-icon--hand {
732
+ &:before {
733
+ content: $m-cgg-icon--hand;
734
+ }
735
+ }
736
+ .m-cgg-icon--phone {
737
+ &:before {
738
+ content: $m-cgg-icon--phone;
739
+ }
740
+ }
741
+ .m-cgg-icon--caret-right {
742
+ &:before {
743
+ content: $m-cgg-icon--caret-right;
744
+ }
745
+ }
746
+ .m-cgg-icon--caret-left {
747
+ &:before {
748
+ content: $m-cgg-icon--caret-left;
749
+ }
750
+ }
751
+ .m-cgg-icon--caret-up {
752
+ &:before {
753
+ content: $m-cgg-icon--caret-up;
754
+ }
755
+ }
756
+ .m-cgg-icon--caret-down {
757
+ &:before {
758
+ content: $m-cgg-icon--caret-down;
759
+ }
760
+ }
761
+ .m-cgg-icon--help {
762
+ &:before {
763
+ content: $m-cgg-icon--help;
764
+ }
765
+ }
766
+ .m-cgg-icon--phone-invert {
767
+ &:before {
768
+ content: $m-cgg-icon--phone-invert;
769
+ }
770
+ }
771
+ .m-cgg-icon--star {
772
+ &:before {
773
+ content: $m-cgg-icon--star;
774
+ }
775
+ }
776
+ .m-cgg-icon--check {
777
+ &:before {
778
+ content: $m-cgg-icon--check;
779
+ }
780
+ }
781
+ .m-cgg-icon--plus {
782
+ &:before {
783
+ content: $m-cgg-icon--plus;
784
+ }
785
+ }
786
+ .m-cgg-icon--airmiles-o {
787
+ &:before {
788
+ content: $m-cgg-icon--airmiles-o;
789
+ }
790
+ }
791
+ .m-cgg-icon--best-deal-1-o {
792
+ &:before {
793
+ content: $m-cgg-icon--best-deal-1-o;
794
+ }
795
+ }
796
+ .m-cgg-icon--cashback-o {
797
+ &:before {
798
+ content: $m-cgg-icon--cashback-o;
799
+ }
800
+ }
801
+ .m-cgg-icon--bar-contactless-payment-o {
802
+ &:before {
803
+ content: $m-cgg-icon--bar-contactless-payment-o;
804
+ }
805
+ }
806
+ .m-cgg-icon--bar-Creditline {
807
+ &:before {
808
+ content: $m-cgg-icon--bar-Creditline;
809
+ }
810
+ }
811
+ .m-cgg-icon--all-o {
812
+ &:before {
813
+ content: $m-cgg-icon--all-o;
814
+ }
815
+ }
816
+ .m-cgg-icon--usp-1-id {
817
+ &:before {
818
+ content: $m-cgg-icon--usp-1-id;
819
+ }
820
+ }
821
+ .m-cgg-icon--bar-deposit-o {
822
+ &:before {
823
+ content: $m-cgg-icon--bar-deposit-o;
824
+ }
825
+ }
826
+ .m-cgg-icon--dining-o {
827
+ &:before {
828
+ content: $m-cgg-icon--dining-o;
829
+ }
830
+ }
831
+ .m-cgg-icon--online-shopping-o {
832
+ &:before {
833
+ content: $m-cgg-icon--online-shopping-o;
834
+ }
835
+ }
836
+ .m-cgg-icon--bar-Instalment {
837
+ &:before {
838
+ content: $m-cgg-icon--bar-Instalment;
839
+ }
840
+ }
841
+ .m-cgg-icon--bar-Tax {
842
+ &:before {
843
+ content: $m-cgg-icon--bar-Tax;
844
+ }
845
+ }
846
+ .m-cgg-icon--calendar-empty {
847
+ &:before {
848
+ content: $m-cgg-icon--calendar-empty;
849
+ }
850
+ }
851
+ .m-cgg-icon--calendar-full {
852
+ &:before {
853
+ content: $m-cgg-icon--calendar-full;
854
+ }
855
+ }
856
+ .m-cgg-icon--couple {
857
+ &:before {
858
+ content: $m-cgg-icon--couple;
859
+ }
860
+ }
861
+ .m-cgg-icon--dental-2 {
862
+ &:before {
863
+ content: $m-cgg-icon--dental-2;
864
+ }
865
+ }
866
+ .m-cgg-icon--premium-1-o {
867
+ &:before {
868
+ content: $m-cgg-icon--premium-1-o;
869
+ }
870
+ }
871
+ .m-cgg-icon--existing-history {
872
+ &:before {
873
+ content: $m-cgg-icon--existing-history;
874
+ }
875
+ }
876
+ .m-cgg-icon--eye {
877
+ &:before {
878
+ content: $m-cgg-icon--eye;
879
+ }
880
+ }
881
+ .m-cgg-icon--single-flight {
882
+ &:before {
883
+ content: $m-cgg-icon--single-flight;
884
+ }
885
+ }
886
+ .m-cgg-icon--group {
887
+ &:before {
888
+ content: $m-cgg-icon--group;
889
+ }
890
+ }
891
+ .m-cgg-icon--inpatient {
892
+ &:before {
893
+ content: $m-cgg-icon--inpatient;
894
+ }
895
+ }
896
+ .m-cgg-icon--just-me {
897
+ &:before {
898
+ content: $m-cgg-icon--just-me;
899
+ }
900
+ }
901
+ .m-cgg-icon--maternity-o2 {
902
+ &:before {
903
+ content: $m-cgg-icon--maternity-o2;
904
+ }
905
+ }
906
+ .m-cgg-icon--me-and-kids {
907
+ &:before {
908
+ content: $m-cgg-icon--me-and-kids;
909
+ }
910
+ }
911
+ .m-cgg-icon--my-family {
912
+ &:before {
913
+ content: $m-cgg-icon--my-family;
914
+ }
915
+ }
916
+ .m-cgg-icon--outpatient2 {
917
+ &:before {
918
+ content: $m-cgg-icon--outpatient2;
919
+ }
920
+ }
921
+ .m-cgg-icon--private-room {
922
+ &:before {
923
+ content: $m-cgg-icon--private-room;
924
+ }
925
+ }
926
+ .m-cgg-icon--sport2 {
927
+ &:before {
928
+ content: $m-cgg-icon--sport2;
929
+ }
930
+ }
931
+ .m-cgg-icon--doctor {
932
+ &:before {
933
+ content: $m-cgg-icon--doctor;
934
+ }
935
+ }
936
+ .m-cgg-icon--cag-gift {
937
+ &:before {
938
+ content: $m-cgg-icon--cag-gift;
939
+ }
940
+ }
941
+ .m-cgg-icon--fee-waiver {
942
+ &:before {
943
+ content: $m-cgg-icon--fee-waiver;
944
+ }
945
+ }
946
+ .m-cgg-icon--contactless-payment {
947
+ &:before {
948
+ content: $m-cgg-icon--contactless-payment;
949
+ }
950
+ }
951
+ .m-cgg-icon--lock {
952
+ &:before {
953
+ content: $m-cgg-icon--lock;
954
+ }
955
+ }
956
+ .m-cgg-icon--early-payment-fee-waiver {
957
+ &:before {
958
+ content: $m-cgg-icon--early-payment-fee-waiver;
959
+ }
960
+ }
961
+ .m-cgg-icon--boxes-contacless {
962
+ &:before {
963
+ content: $m-cgg-icon--boxes-contacless;
964
+ }
965
+ }
966
+ .m-cgg-icon--boxes-download {
967
+ &:before {
968
+ content: $m-cgg-icon--boxes-download;
969
+ }
970
+ }
971
+ .m-cgg-icon--close2 {
972
+ &:before {
973
+ content: $m-cgg-icon--close2;
974
+ }
975
+ }
976
+ .m-cgg-icon--boxes-fee-waiver {
977
+ &:before {
978
+ content: $m-cgg-icon--boxes-fee-waiver;
979
+ }
980
+ }
981
+ .m-cgg-icon--boxes-gift {
982
+ &:before {
983
+ content: $m-cgg-icon--boxes-gift;
984
+ }
985
+ }
986
+ .m-cgg-icon--boxes-mortgage {
987
+ &:before {
988
+ content: $m-cgg-icon--boxes-mortgage;
989
+ }
990
+ }
991
+ .m-cgg-icon--boxes-tick {
992
+ &:before {
993
+ content: $m-cgg-icon--boxes-tick;
994
+ }
995
+ }
996
+ .m-cgg-icon--chevron-right {
997
+ &:before {
998
+ content: $m-cgg-icon--chevron-right;
999
+ }
1000
+ }
1001
+ .m-cgg-icon--airmile-local-o {
1002
+ &:before {
1003
+ content: $m-cgg-icon--airmile-local-o;
1004
+ }
1005
+ }
1006
+ .m-cgg-icon--usp-1-pt {
1007
+ &:before {
1008
+ content: $m-cgg-icon--usp-1-pt;
1009
+ }
1010
+ }
1011
+ .m-cgg-icon--clock2 {
1012
+ &:before {
1013
+ content: $m-cgg-icon--clock2;
1014
+ }
1015
+ }
1016
+ .m-cgg-icon--amateur-sports {
1017
+ &:before {
1018
+ content: $m-cgg-icon--amateur-sports;
1019
+ }
1020
+ }
1021
+ .m-cgg-icon--nav-home {
1022
+ &:before {
1023
+ content: $m-cgg-icon--nav-home;
1024
+ }
1025
+ }
1026
+ .m-cgg-icon--chevron-down {
1027
+ &:before {
1028
+ content: $m-cgg-icon--chevron-down;
1029
+ }
1030
+ }
1031
+ .m-cgg-icon--chevron-left {
1032
+ &:before {
1033
+ content: $m-cgg-icon--chevron-left;
1034
+ }
1035
+ }
1036
+ .m-cgg-icon--chevron-up {
1037
+ &:before {
1038
+ content: $m-cgg-icon--chevron-up;
1039
+ }
1040
+ }
1041
+ .m-cgg-icon--credit-cards {
1042
+ &:before {
1043
+ content: $m-cgg-icon--credit-cards;
1044
+ }
1045
+ }
1046
+ .m-cgg-icon--health-insurance {
1047
+ &:before {
1048
+ content: $m-cgg-icon--health-insurance;
1049
+ }
1050
+ }
1051
+ .m-cgg-icon--home-loans {
1052
+ &:before {
1053
+ content: $m-cgg-icon--home-loans;
1054
+ }
1055
+ }
1056
+ .m-cgg-icon--personal-loans {
1057
+ &:before {
1058
+ content: $m-cgg-icon--personal-loans;
1059
+ }
1060
+ }
1061
+ .m-cgg-icon--timer {
1062
+ &:before {
1063
+ content: $m-cgg-icon--timer;
1064
+ }
1065
+ }
1066
+ .m-cgg-icon--travel-insurance {
1067
+ &:before {
1068
+ content: $m-cgg-icon--travel-insurance;
1069
+ }
1070
+ }
1071
+ .m-cgg-icon--dental-1 {
1072
+ &:before {
1073
+ content: $m-cgg-icon--dental-1;
1074
+ }
1075
+ }
1076
+ .m-cgg-icon--maternity {
1077
+ &:before {
1078
+ content: $m-cgg-icon--maternity;
1079
+ }
1080
+ }
1081
+ .m-cgg-icon--outpatient {
1082
+ &:before {
1083
+ content: $m-cgg-icon--outpatient;
1084
+ }
1085
+ }
1086
+ .m-cgg-icon--surgical {
1087
+ &:before {
1088
+ content: $m-cgg-icon--surgical;
1089
+ }
1090
+ }
1091
+ .m-cgg-icon--high-risk-sports {
1092
+ &:before {
1093
+ content: $m-cgg-icon--high-risk-sports;
1094
+ }
1095
+ }
1096
+ .m-cgg-icon--winter-sports {
1097
+ &:before {
1098
+ content: $m-cgg-icon--winter-sports;
1099
+ }
1100
+ }
1101
+ .m-cgg-icon--bb-plus-tv {
1102
+ &:before {
1103
+ content: $m-cgg-icon--bb-plus-tv;
1104
+ }
1105
+ }
1106
+ .m-cgg-icon--car-insurance {
1107
+ &:before {
1108
+ content: $m-cgg-icon--car-insurance;
1109
+ }
1110
+ }
1111
+ .m-cgg-icon--mobile {
1112
+ &:before {
1113
+ content: $m-cgg-icon--mobile;
1114
+ }
1115
+ }
1116
+ .m-cgg-icon--unemployment-benefits {
1117
+ &:before {
1118
+ content: $m-cgg-icon--unemployment-benefits;
1119
+ }
1120
+ }
1121
+ .m-cgg-icon--china-star {
1122
+ &:before {
1123
+ content: $m-cgg-icon--china-star;
1124
+ }
1125
+ }
1126
+ .m-cgg-icon--bar-FastCashLoan {
1127
+ &:before {
1128
+ content: $m-cgg-icon--bar-FastCashLoan;
1129
+ }
1130
+ }
1131
+ .m-cgg-icon--critical-illness {
1132
+ &:before {
1133
+ content: $m-cgg-icon--critical-illness;
1134
+ }
1135
+ }
1136
+ .m-cgg-icon--supplemental-major {
1137
+ &:before {
1138
+ content: $m-cgg-icon--supplemental-major;
1139
+ }
1140
+ }
1141
+ .m-cgg-icon--boxes-early-payment {
1142
+ &:before {
1143
+ content: $m-cgg-icon--boxes-early-payment;
1144
+ }
1145
+ }
1146
+ .m-cgg-icon--fast-approval {
1147
+ &:before {
1148
+ content: $m-cgg-icon--fast-approval;
1149
+ }
1150
+ }
1151
+ .m-cgg-icon--cc-low-application-o {
1152
+ &:before {
1153
+ content: $m-cgg-icon--cc-low-application-o;
1154
+ }
1155
+ }
1156
+ .m-cgg-icon--car-insurance2 {
1157
+ &:before {
1158
+ content: $m-cgg-icon--car-insurance2;
1159
+ }
1160
+ }
1161
+ .m-cgg-icon--usp-1-dk {
1162
+ &:before {
1163
+ content: $m-cgg-icon--usp-1-dk;
1164
+ }
1165
+ }
1166
+ .m-cgg-icon--usp-1-en {
1167
+ &:before {
1168
+ content: $m-cgg-icon--usp-1-en;
1169
+ }
1170
+ }
1171
+ .m-cgg-icon--usp-2 {
1172
+ &:before {
1173
+ content: $m-cgg-icon--usp-2;
1174
+ }
1175
+ }
1176
+ .m-cgg-icon--usp-3 {
1177
+ &:before {
1178
+ content: $m-cgg-icon--usp-3;
1179
+ }
1180
+ }
1181
+ .m-cgg-icon--currency-cny-o {
1182
+ &:before {
1183
+ content: $m-cgg-icon--currency-cny-o;
1184
+ }
1185
+ }
1186
+ .m-cgg-icon--easy-card-o {
1187
+ &:before {
1188
+ content: $m-cgg-icon--easy-card-o;
1189
+ }
1190
+ }
1191
+ .m-cgg-icon--gasoline-o {
1192
+ &:before {
1193
+ content: $m-cgg-icon--gasoline-o;
1194
+ }
1195
+ }
1196
+ .m-cgg-icon--movie-o {
1197
+ &:before {
1198
+ content: $m-cgg-icon--movie-o;
1199
+ }
1200
+ }
1201
+ .m-cgg-icon--other-currencies-o {
1202
+ &:before {
1203
+ content: $m-cgg-icon--other-currencies-o;
1204
+ }
1205
+ }
1206
+ .m-cgg-icon--currency-twd-o {
1207
+ &:before {
1208
+ content: $m-cgg-icon--currency-twd-o;
1209
+ }
1210
+ }
1211
+ .m-cgg-icon--currency-usd-o {
1212
+ &:before {
1213
+ content: $m-cgg-icon--currency-usd-o;
1214
+ }
1215
+ }
1216
+ .m-cgg-icon--easy-card {
1217
+ &:before {
1218
+ content: $m-cgg-icon--easy-card;
1219
+ }
1220
+ }
1221
+ .m-cgg-icon--broadband {
1222
+ &:before {
1223
+ content: $m-cgg-icon--broadband;
1224
+ }
1225
+ }
1226
+ .m-cgg-icon--close {
1227
+ &:before {
1228
+ content: $m-cgg-icon--close;
1229
+ }
1230
+ }
1231
+ .m-cgg-icon--i-tooltip {
1232
+ &:before {
1233
+ content: $m-cgg-icon--i-tooltip;
1234
+ }
1235
+ }
1236
+ .m-cgg-icon--search-o {
1237
+ &:before {
1238
+ content: $m-cgg-icon--search-o;
1239
+ }
1240
+ }
1241
+ .m-cgg-icon--dollar-o {
1242
+ &:before {
1243
+ content: $m-cgg-icon--dollar-o;
1244
+ }
1245
+ }
1246
+ .m-cgg-icon--star-o {
1247
+ &:before {
1248
+ content: $m-cgg-icon--star-o;
1249
+ }
1250
+ }
1251
+ .m-cgg-icon--warning {
1252
+ &:before {
1253
+ content: $m-cgg-icon--warning;
1254
+ }
1255
+ }
1256
+ .m-cgg-icon--cookie-icon-simple {
1257
+ &:before {
1258
+ content: $m-cgg-icon--cookie-icon-simple;
1259
+ }
1260
+ }
1261
+ .m-cgg-icon--time-deposit {
1262
+ &:before {
1263
+ content: $m-cgg-icon--time-deposit;
1264
+ }
1265
+ }
1266
+ .m-cgg-icon--cookie-icon {
1267
+ &:before {
1268
+ content: $m-cgg-icon--cookie-icon;
1269
+ }
1270
+ }
1271
+ .m-cgg-icon--best-deal-2-o {
1272
+ &:before {
1273
+ content: $m-cgg-icon--best-deal-2-o;
1274
+ }
1275
+ }
1276
+ .m-cgg-icon--premium-2-o {
1277
+ &:before {
1278
+ content: $m-cgg-icon--premium-2-o;
1279
+ }
1280
+ }
1281
+ .m-cgg-icon--specialty-o {
1282
+ &:before {
1283
+ content: $m-cgg-icon--specialty-o;
1284
+ }
1285
+ }
1286
+ .m-cgg-icon--car-loan {
1287
+ &:before {
1288
+ content: $m-cgg-icon--car-loan;
1289
+ }
1290
+ }
1291
+ .m-cgg-icon--fast-cash-loan {
1292
+ &:before {
1293
+ content: $m-cgg-icon--fast-cash-loan;
1294
+ }
1295
+ }
1296
+ .m-cgg-icon--star-o2 {
1297
+ &:before {
1298
+ content: $m-cgg-icon--star-o2;
1299
+ }
1300
+ }
1301
+ .m-cgg-icon--search-o2 {
1302
+ &:before {
1303
+ content: $m-cgg-icon--search-o2;
1304
+ }
1305
+ }
1306
+ .m-cgg-icon--scales-o {
1307
+ &:before {
1308
+ content: $m-cgg-icon--scales-o;
1309
+ }
1310
+ }
1311
+ .m-cgg-icon--dollar-o2 {
1312
+ &:before {
1313
+ content: $m-cgg-icon--dollar-o2;
1314
+ }
1315
+ }
1316
+ .m-cgg-icon--edit {
1317
+ &:before {
1318
+ content: $m-cgg-icon--edit;
1319
+ }
1320
+ }
1321
+ .m-cgg-icon--heart {
1322
+ &:before {
1323
+ content: $m-cgg-icon--heart;
1324
+ }
1325
+ }
1326
+ .m-cgg-icon--usp-1-fi {
1327
+ &:before {
1328
+ content: $m-cgg-icon--usp-1-fi;
1329
+ }
1330
+ }
1331
+ .m-cgg-icon--bank {
1332
+ &:before {
1333
+ content: $m-cgg-icon--bank;
1334
+ }
1335
+ }
1336
+ .m-cgg-icon--coinseur {
1337
+ &:before {
1338
+ content: $m-cgg-icon--coinseur;
1339
+ }
1340
+ }
1341
+ .m-cgg-icon--coins {
1342
+ &:before {
1343
+ content: $m-cgg-icon--coins;
1344
+ }
1345
+ }
1346
+ .m-cgg-icon--cta-arrow {
1347
+ &:before {
1348
+ content: $m-cgg-icon--cta-arrow;
1349
+ }
1350
+ }
1351
+ .m-cgg-icon--cta-arrow-down {
1352
+ &:before {
1353
+ content: $m-cgg-icon--cta-arrow-down;
1354
+ }
1355
+ }
1356
+ .m-cgg-icon--islamic {
1357
+ &:before {
1358
+ content: $m-cgg-icon--islamic;
1359
+ }
1360
+ }
1361
+ .m-cgg-icon--glc {
1362
+ &:before {
1363
+ content: $m-cgg-icon--glc;
1364
+ }
1365
+ }
1366
+ .m-cgg-icon--BB_Business {
1367
+ &:before {
1368
+ content: $m-cgg-icon--BB_Business;
1369
+ }
1370
+ }
1371
+ .m-cgg-icon--BB_Home {
1372
+ &:before {
1373
+ content: $m-cgg-icon--BB_Home;
1374
+ }
1375
+ }
1376
+ .m-cgg-icon--BB_HomeTV {
1377
+ &:before {
1378
+ content: $m-cgg-icon--BB_HomeTV;
1379
+ }
1380
+ }
1381
+ .m-cgg-icon--BB_Mobile {
1382
+ &:before {
1383
+ content: $m-cgg-icon--BB_Mobile;
1384
+ }
1385
+ }
1386
+ .m-cgg-icon--dollareur-o {
1387
+ &:before {
1388
+ content: $m-cgg-icon--dollareur-o;
1389
+ }
1390
+ }
1391
+ .m-cgg-icon--flight {
1392
+ &:before {
1393
+ content: $m-cgg-icon--flight;
1394
+ }
1395
+ }
1396
+ .m-cgg-icon--multiple-flight {
1397
+ &:before {
1398
+ content: $m-cgg-icon--multiple-flight;
1399
+ }
1400
+ }
1401
+ .m-cgg-icon--credit-cards-md {
1402
+ &:before {
1403
+ content: $m-cgg-icon--credit-cards-md;
1404
+ }
1405
+ }
1406
+ .m-cgg-icon--Zeroannuity {
1407
+ &:before {
1408
+ content: $m-cgg-icon--Zeroannuity;
1409
+ }
1410
+ }
1411
+ .m-cgg-icon--Balancetransfer {
1412
+ &:before {
1413
+ content: $m-cgg-icon--Balancetransfer;
1414
+ }
1415
+ }
1416
+ .m-cgg-icon--bar-glc {
1417
+ &:before {
1418
+ content: $m-cgg-icon--bar-glc;
1419
+ }
1420
+ }
1421
+ .m-cgg-icon--bar-islamic {
1422
+ &:before {
1423
+ content: $m-cgg-icon--bar-islamic;
1424
+ }
1425
+ }
1426
+ .m-cgg-icon--bar-Debt {
1427
+ &:before {
1428
+ content: $m-cgg-icon--bar-Debt;
1429
+ }
1430
+ }
1431
+ .m-cgg-icon--bar-lendingCompanies {
1432
+ &:before {
1433
+ content: $m-cgg-icon--bar-lendingCompanies;
1434
+ }
1435
+ }
1436
+ .m-cgg-icon--icon-funnel-pt-Residente-Perm {
1437
+ &:before {
1438
+ content: $m-cgg-icon--icon-funnel-pt-Residente-Perm;
1439
+ }
1440
+ }
1441
+ .m-cgg-icon--discount {
1442
+ &:before {
1443
+ content: $m-cgg-icon--discount;
1444
+ }
1445
+ }
1446
+ .m-cgg-icon--Student-1 {
1447
+ &:before {
1448
+ content: $m-cgg-icon--Student-1;
1449
+ }
1450
+ }
1451
+ .m-cgg-icon--officechair {
1452
+ &:before {
1453
+ content: $m-cgg-icon--officechair;
1454
+ }
1455
+ }
1456
+ .m-cgg-icon--optical-fiber {
1457
+ &:before {
1458
+ content: $m-cgg-icon--optical-fiber;
1459
+ }
1460
+ }
1461
+ .m-cgg-icon--wifi {
1462
+ &:before {
1463
+ content: $m-cgg-icon--wifi;
1464
+ }
1465
+ }
1466
+ .m-cgg-icon--cafe {
1467
+ &:before {
1468
+ content: $m-cgg-icon--cafe;
1469
+ }
1470
+ }
1471
+ .m-cgg-icon--gym {
1472
+ &:before {
1473
+ content: $m-cgg-icon--gym;
1474
+ }
1475
+ }
1476
+ .m-cgg-icon--hotel {
1477
+ &:before {
1478
+ content: $m-cgg-icon--hotel;
1479
+ }
1480
+ }
1481
+ .m-cgg-icon--sport {
1482
+ &:before {
1483
+ content: $m-cgg-icon--sport;
1484
+ }
1485
+ }
1486
+ .m-cgg-icon--store {
1487
+ &:before {
1488
+ content: $m-cgg-icon--store;
1489
+ }
1490
+ }
1491
+ .m-cgg-icon--supermarket {
1492
+ &:before {
1493
+ content: $m-cgg-icon--supermarket;
1494
+ }
1495
+ }
1496
+ .m-cgg-icon--requirement {
1497
+ &:before {
1498
+ content: $m-cgg-icon--requirement;
1499
+ }
1500
+ }
1501
+ .m-cgg-icon--no-fee {
1502
+ &:before {
1503
+ content: $m-cgg-icon--no-fee;
1504
+ }
1505
+ }
1506
+ .m-cgg-icon--balance-transfer {
1507
+ &:before {
1508
+ content: $m-cgg-icon--balance-transfer;
1509
+ }
1510
+ }
1511
+ .m-cgg-icon--for-personal {
1512
+ &:before {
1513
+ content: $m-cgg-icon--for-personal;
1514
+ }
1515
+ }
1516
+ .m-cgg-icon--for-my-business {
1517
+ &:before {
1518
+ content: $m-cgg-icon--for-my-business;
1519
+ }
1520
+ }
1521
+ .m-cgg-icon--for-new-business {
1522
+ &:before {
1523
+ content: $m-cgg-icon--for-new-business;
1524
+ }
1525
+ }
1526
+ .m-cgg-icon--money {
1527
+ &:before {
1528
+ content: $m-cgg-icon--money;
1529
+ }
1530
+ }
1531
+ .m-cgg-icon--email {
1532
+ &:before {
1533
+ content: $m-cgg-icon--email;
1534
+ }
1535
+ }
1536
+ .m-cgg-icon--BBFunnel-FiveUsers {
1537
+ &:before {
1538
+ content: $m-cgg-icon--BBFunnel-FiveUsers;
1539
+ }
1540
+ }
1541
+ .m-cgg-icon--BBFunnel-Games {
1542
+ &:before {
1543
+ content: $m-cgg-icon--BBFunnel-Games;
1544
+ }
1545
+ }
1546
+ .m-cgg-icon--BBFunnel-HomeOut {
1547
+ &:before {
1548
+ content: $m-cgg-icon--BBFunnel-HomeOut;
1549
+ }
1550
+ }
1551
+ .m-cgg-icon--BBFunnel-Home {
1552
+ &:before {
1553
+ content: $m-cgg-icon--BBFunnel-Home;
1554
+ }
1555
+ }
1556
+ .m-cgg-icon--BBFunnel-Hour1 {
1557
+ &:before {
1558
+ content: $m-cgg-icon--BBFunnel-Hour1;
1559
+ }
1560
+ }
1561
+ .m-cgg-icon--BBFunnel-Hour2 {
1562
+ &:before {
1563
+ content: $m-cgg-icon--BBFunnel-Hour2;
1564
+ }
1565
+ }
1566
+ .m-cgg-icon--BBFunnel-Hour3 {
1567
+ &:before {
1568
+ content: $m-cgg-icon--BBFunnel-Hour3;
1569
+ }
1570
+ }
1571
+ .m-cgg-icon--BBFunnel-Hour4 {
1572
+ &:before {
1573
+ content: $m-cgg-icon--BBFunnel-Hour4;
1574
+ }
1575
+ }
1576
+ .m-cgg-icon--Retired-1 {
1577
+ &:before {
1578
+ content: $m-cgg-icon--Retired-1;
1579
+ }
1580
+ }
1581
+ .m-cgg-icon--BBFunnel-No {
1582
+ &:before {
1583
+ content: $m-cgg-icon--BBFunnel-No;
1584
+ }
1585
+ }
1586
+ .m-cgg-icon--BBFunnel-NotSure {
1587
+ &:before {
1588
+ content: $m-cgg-icon--BBFunnel-NotSure;
1589
+ }
1590
+ }
1591
+ .m-cgg-icon--BBFunne-OneUser {
1592
+ &:before {
1593
+ content: $m-cgg-icon--BBFunne-OneUser;
1594
+ }
1595
+ }
1596
+ .m-cgg-icon--BBFunnel-Out {
1597
+ &:before {
1598
+ content: $m-cgg-icon--BBFunnel-Out;
1599
+ }
1600
+ }
1601
+ .m-cgg-icon--BBFunnel-ReadPaper {
1602
+ &:before {
1603
+ content: $m-cgg-icon--BBFunnel-ReadPaper;
1604
+ }
1605
+ }
1606
+ .m-cgg-icon--BBFunnel-SixUsers {
1607
+ &:before {
1608
+ content: $m-cgg-icon--BBFunnel-SixUsers;
1609
+ }
1610
+ }
1611
+ .m-cgg-icon--BBFunnel-ThreeUsers {
1612
+ &:before {
1613
+ content: $m-cgg-icon--BBFunnel-ThreeUsers;
1614
+ }
1615
+ }
1616
+ .m-cgg-icon--BBFunnel-Work {
1617
+ &:before {
1618
+ content: $m-cgg-icon--BBFunnel-Work;
1619
+ }
1620
+ }
1621
+ .m-cgg-icon--BBFunnel-Yes {
1622
+ &:before {
1623
+ content: $m-cgg-icon--BBFunnel-Yes;
1624
+ }
1625
+ }
1626
+ .m-cgg-icon--cta-arrow-left {
1627
+ &:before {
1628
+ content: $m-cgg-icon--cta-arrow-left;
1629
+ }
1630
+ }
1631
+ .m-cgg-icon--wifi2 {
1632
+ &:before {
1633
+ content: $m-cgg-icon--wifi2;
1634
+ }
1635
+ }
1636
+ .m-cgg-icon--laptop {
1637
+ &:before {
1638
+ content: $m-cgg-icon--laptop;
1639
+ }
1640
+ }
1641
+ .m-cgg-icon--infinity {
1642
+ &:before {
1643
+ content: $m-cgg-icon--infinity;
1644
+ }
1645
+ }
1646
+ .m-cgg-icon--wedding {
1647
+ &:before {
1648
+ content: $m-cgg-icon--wedding;
1649
+ }
1650
+ }
1651
+ .m-cgg-icon--car-car-loan {
1652
+ &:before {
1653
+ content: $m-cgg-icon--car-car-loan;
1654
+ }
1655
+ }
1656
+ .m-cgg-icon--debt-consolidation {
1657
+ &:before {
1658
+ content: $m-cgg-icon--debt-consolidation;
1659
+ }
1660
+ }
1661
+ .m-cgg-icon--education {
1662
+ &:before {
1663
+ content: $m-cgg-icon--education;
1664
+ }
1665
+ }
1666
+ .m-cgg-icon--couple-with-children {
1667
+ &:before {
1668
+ content: $m-cgg-icon--couple-with-children;
1669
+ }
1670
+ }
1671
+ .m-cgg-icon--couple-without-children {
1672
+ &:before {
1673
+ content: $m-cgg-icon--couple-without-children;
1674
+ }
1675
+ }
1676
+ .m-cgg-icon--electronics {
1677
+ &:before {
1678
+ content: $m-cgg-icon--electronics;
1679
+ }
1680
+ }
1681
+ .m-cgg-icon--homeworks-and-renovation {
1682
+ &:before {
1683
+ content: $m-cgg-icon--homeworks-and-renovation;
1684
+ }
1685
+ }
1686
+ .m-cgg-icon--refinancing {
1687
+ &:before {
1688
+ content: $m-cgg-icon--refinancing;
1689
+ }
1690
+ }
1691
+ .m-cgg-icon--relocation {
1692
+ &:before {
1693
+ content: $m-cgg-icon--relocation;
1694
+ }
1695
+ }
1696
+ .m-cgg-icon--single-with-children {
1697
+ &:before {
1698
+ content: $m-cgg-icon--single-with-children;
1699
+ }
1700
+ }
1701
+ .m-cgg-icon--single-without-children {
1702
+ &:before {
1703
+ content: $m-cgg-icon--single-without-children;
1704
+ }
1705
+ }
1706
+ .m-cgg-icon--student {
1707
+ &:before {
1708
+ content: $m-cgg-icon--student;
1709
+ }
1710
+ }
1711
+ .m-cgg-icon--holiday {
1712
+ &:before {
1713
+ content: $m-cgg-icon--holiday;
1714
+ }
1715
+ }
1716
+ .m-cgg-icon--home-decoration {
1717
+ &:before {
1718
+ content: $m-cgg-icon--home-decoration;
1719
+ }
1720
+ }
1721
+ .m-cgg-icon--investment-purposes {
1722
+ &:before {
1723
+ content: $m-cgg-icon--investment-purposes;
1724
+ }
1725
+ }
1726
+ .m-cgg-icon--medical-bills {
1727
+ &:before {
1728
+ content: $m-cgg-icon--medical-bills;
1729
+ }
1730
+ }
1731
+ .m-cgg-icon--mortgage-repayments {
1732
+ &:before {
1733
+ content: $m-cgg-icon--mortgage-repayments;
1734
+ }
1735
+ }
1736
+ .m-cgg-icon--property-purchase {
1737
+ &:before {
1738
+ content: $m-cgg-icon--property-purchase;
1739
+ }
1740
+ }
1741
+ .m-cgg-icon--tax-payment {
1742
+ &:before {
1743
+ content: $m-cgg-icon--tax-payment;
1744
+ }
1745
+ }
1746
+ .m-cgg-icon--employed {
1747
+ &:before {
1748
+ content: $m-cgg-icon--employed;
1749
+ }
1750
+ }
1751
+ .m-cgg-icon--HK-ID-holder {
1752
+ &:before {
1753
+ content: $m-cgg-icon--HK-ID-holder;
1754
+ }
1755
+ }
1756
+ .m-cgg-icon--HK-PID-holder {
1757
+ &:before {
1758
+ content: $m-cgg-icon--HK-PID-holder;
1759
+ }
1760
+ }
1761
+ .m-cgg-icon--Non-HK-resident {
1762
+ &:before {
1763
+ content: $m-cgg-icon--Non-HK-resident;
1764
+ }
1765
+ }
1766
+ .m-cgg-icon--prefer-not-to-say {
1767
+ &:before {
1768
+ content: $m-cgg-icon--prefer-not-to-say;
1769
+ }
1770
+ }
1771
+ .m-cgg-icon--self-employed {
1772
+ &:before {
1773
+ content: $m-cgg-icon--self-employed;
1774
+ }
1775
+ }
1776
+ .m-cgg-icon--unemployed {
1777
+ &:before {
1778
+ content: $m-cgg-icon--unemployed;
1779
+ }
1780
+ }
1781
+ .m-cgg-icon--something-else {
1782
+ &:before {
1783
+ content: $m-cgg-icon--something-else;
1784
+ }
1785
+ }
1786
+ .m-cgg-icon--cashback {
1787
+ &:before {
1788
+ content: $m-cgg-icon--cashback;
1789
+ }
1790
+ }
1791
+ .m-cgg-icon--dining {
1792
+ &:before {
1793
+ content: $m-cgg-icon--dining;
1794
+ }
1795
+ }
1796
+ .m-cgg-icon--lock-2 {
1797
+ &:before {
1798
+ content: $m-cgg-icon--lock-2;
1799
+ }
1800
+ }
1801
+ .m-cgg-icon--nine-dots {
1802
+ &:before {
1803
+ content: $m-cgg-icon--nine-dots;
1804
+ }
1805
+ }
1806
+ .m-cgg-icon--shopping-rewards {
1807
+ &:before {
1808
+ content: $m-cgg-icon--shopping-rewards;
1809
+ }
1810
+ }
1811
+ .m-cgg-icon--premium-privileges {
1812
+ &:before {
1813
+ content: $m-cgg-icon--premium-privileges;
1814
+ }
1815
+ }
1816
+ .m-cgg-icon--travel-insurance2 {
1817
+ &:before {
1818
+ content: $m-cgg-icon--travel-insurance2;
1819
+ }
1820
+ }
1821
+ .m-cgg-icon--three-stars {
1822
+ &:before {
1823
+ content: $m-cgg-icon--three-stars;
1824
+ }
1825
+ }
1826
+ .m-cgg-icon--prepaid {
1827
+ &:before {
1828
+ content: $m-cgg-icon--prepaid;
1829
+ }
1830
+ }
1831
+ .m-cgg-icon--cashback-2 {
1832
+ &:before {
1833
+ content: $m-cgg-icon--cashback-2;
1834
+ }
1835
+ }
1836
+ .m-cgg-icon--air-miles {
1837
+ &:before {
1838
+ content: $m-cgg-icon--air-miles;
1839
+ }
1840
+ }
1841
+ .m-cgg-icon--call-circle {
1842
+ &:before {
1843
+ content: $m-cgg-icon--call-circle;
1844
+ }
1845
+ }
1846
+ .m-cgg-icon--chevron-down-2 {
1847
+ &:before {
1848
+ content: $m-cgg-icon--chevron-down-2;
1849
+ }
1850
+ }
1851
+ .m-cgg-icon--chevron-right-circle {
1852
+ &:before {
1853
+ content: $m-cgg-icon--chevron-right-circle;
1854
+ }
1855
+ }
1856
+ .m-cgg-icon--chevron-up-2 {
1857
+ &:before {
1858
+ content: $m-cgg-icon--chevron-up-2;
1859
+ }
1860
+ }
1861
+ .m-cgg-icon--fixed-contract {
1862
+ &:before {
1863
+ content: $m-cgg-icon--fixed-contract;
1864
+ }
1865
+ }
1866
+ .m-cgg-icon--indefinite-contract {
1867
+ &:before {
1868
+ content: $m-cgg-icon--indefinite-contract;
1869
+ }
1870
+ }
1871
+ .m-cgg-icon--refine-01 {
1872
+ &:before {
1873
+ content: $m-cgg-icon--refine-01;
1874
+ }
1875
+ }
1876
+ .m-cgg-icon--ciab-cross {
1877
+ &:before {
1878
+ content: $m-cgg-icon--ciab-cross;
1879
+ }
1880
+ }
1881
+ .m-cgg-icon--ciab-minus {
1882
+ &:before {
1883
+ content: $m-cgg-icon--ciab-minus;
1884
+ }
1885
+ }
1886
+ .m-cgg-icon--ciab-tick {
1887
+ &:before {
1888
+ content: $m-cgg-icon--ciab-tick;
1889
+ }
1890
+ }
1891
+ .m-cgg-icon--commercial-vehicle {
1892
+ &:before {
1893
+ content: $m-cgg-icon--commercial-vehicle;
1894
+ }
1895
+ }
1896
+ .m-cgg-icon--couple-with-children2 {
1897
+ &:before {
1898
+ content: $m-cgg-icon--couple-with-children2;
1899
+ }
1900
+ }
1901
+ .m-cgg-icon--couple-without-children2 {
1902
+ &:before {
1903
+ content: $m-cgg-icon--couple-without-children2;
1904
+ }
1905
+ }
1906
+ .m-cgg-icon--employed2 {
1907
+ &:before {
1908
+ content: $m-cgg-icon--employed2;
1909
+ }
1910
+ }
1911
+ .m-cgg-icon--employee-fixed-contract {
1912
+ &:before {
1913
+ content: $m-cgg-icon--employee-fixed-contract;
1914
+ }
1915
+ }
1916
+ .m-cgg-icon--employee-indefinite-contract {
1917
+ &:before {
1918
+ content: $m-cgg-icon--employee-indefinite-contract;
1919
+ }
1920
+ }
1921
+ .m-cgg-icon--expired-policy {
1922
+ &:before {
1923
+ content: $m-cgg-icon--expired-policy;
1924
+ }
1925
+ }
1926
+ .m-cgg-icon--id-holder {
1927
+ &:before {
1928
+ content: $m-cgg-icon--id-holder;
1929
+ }
1930
+ }
1931
+ .m-cgg-icon--new-policy {
1932
+ &:before {
1933
+ content: $m-cgg-icon--new-policy;
1934
+ }
1935
+ }
1936
+ .m-cgg-icon--non-hk-resident {
1937
+ &:before {
1938
+ content: $m-cgg-icon--non-hk-resident;
1939
+ }
1940
+ }
1941
+ .m-cgg-icon--personal-vehicle {
1942
+ &:before {
1943
+ content: $m-cgg-icon--personal-vehicle;
1944
+ }
1945
+ }
1946
+ .m-cgg-icon--pid-holder {
1947
+ &:before {
1948
+ content: $m-cgg-icon--pid-holder;
1949
+ }
1950
+ }
1951
+ .m-cgg-icon--prefer-not-to-say2 {
1952
+ &:before {
1953
+ content: $m-cgg-icon--prefer-not-to-say2;
1954
+ }
1955
+ }
1956
+ .m-cgg-icon--renewal-policy {
1957
+ &:before {
1958
+ content: $m-cgg-icon--renewal-policy;
1959
+ }
1960
+ }
1961
+ .m-cgg-icon--single-without-children2 {
1962
+ &:before {
1963
+ content: $m-cgg-icon--single-without-children2;
1964
+ }
1965
+ }
1966
+ .m-cgg-icon--self-employed2 {
1967
+ &:before {
1968
+ content: $m-cgg-icon--self-employed2;
1969
+ }
1970
+ }
1971
+ .m-cgg-icon--single-with-children2 {
1972
+ &:before {
1973
+ content: $m-cgg-icon--single-with-children2;
1974
+ }
1975
+ }
1976
+ .m-cgg-icon--student2 {
1977
+ &:before {
1978
+ content: $m-cgg-icon--student2;
1979
+ }
1980
+ }
1981
+ .m-cgg-icon--uber-or-grab {
1982
+ &:before {
1983
+ content: $m-cgg-icon--uber-or-grab;
1984
+ }
1985
+ }
1986
+ .m-cgg-icon--unemployed2 {
1987
+ &:before {
1988
+ content: $m-cgg-icon--unemployed2;
1989
+ }
1990
+ }
1991
+ .m-cgg-icon--with-aon {
1992
+ &:before {
1993
+ content: $m-cgg-icon--with-aon;
1994
+ }
1995
+ }
1996
+ .m-cgg-icon--without-aon {
1997
+ &:before {
1998
+ content: $m-cgg-icon--without-aon;
1999
+ }
2000
+ }
2001
+ .m-cgg-icon--filter-panel {
2002
+ &:before {
2003
+ content: $m-cgg-icon--filter-panel;
2004
+ }
2005
+ }
2006
+ .m-cgg-icon--giftbox {
2007
+ &:before {
2008
+ content: $m-cgg-icon--giftbox;
2009
+ }
2010
+ }
2011
+ .m-cgg-icon--trophy {
2012
+ &:before {
2013
+ content: $m-cgg-icon--trophy;
2014
+ }
2015
+ }
2016
+ .m-cgg-icon--online-music {
2017
+ &:before {
2018
+ content: $m-cgg-icon--online-music;
2019
+ }
2020
+ }
2021
+ .m-cgg-icon--online-video {
2022
+ &:before {
2023
+ content: $m-cgg-icon--online-video;
2024
+ }
2025
+ }
2026
+ .m-cgg-icon--iphone4 {
2027
+ &:before {
2028
+ content: $m-cgg-icon--iphone4;
2029
+ }
2030
+ }
2031
+ .m-cgg-icon--earth-phone {
2032
+ &:before {
2033
+ content: $m-cgg-icon--earth-phone;
2034
+ }
2035
+ }
2036
+ .m-cgg-icon--phone-wifi {
2037
+ &:before {
2038
+ content: $m-cgg-icon--phone-wifi;
2039
+ }
2040
+ }
2041
+ .m-cgg-icon--BBFunnel-HourInfinite {
2042
+ &:before {
2043
+ content: $m-cgg-icon--BBFunnel-HourInfinite;
2044
+ }
2045
+ }
2046
+ .m-cgg-icon--newspaper {
2047
+ &:before {
2048
+ content: $m-cgg-icon--newspaper;
2049
+ }
2050
+ }
2051
+ .m-cgg-icon--phone-message {
2052
+ &:before {
2053
+ content: $m-cgg-icon--phone-message;
2054
+ }
2055
+ }
2056
+ .m-cgg-icon--full-arrow-down {
2057
+ &:before {
2058
+ content: $m-cgg-icon--full-arrow-down;
2059
+ }
2060
+ }
2061
+ .m-cgg-icon--full-arrow-left {
2062
+ &:before {
2063
+ content: $m-cgg-icon--full-arrow-left;
2064
+ }
2065
+ }
2066
+ .m-cgg-icon--full-arrow-right {
2067
+ &:before {
2068
+ content: $m-cgg-icon--full-arrow-right;
2069
+ }
2070
+ }
2071
+ .m-cgg-icon--full-arrow-up {
2072
+ &:before {
2073
+ content: $m-cgg-icon--full-arrow-up;
2074
+ }
2075
+ }
2076
+ .m-cgg-icon--chevron-bottom-circle {
2077
+ &:before {
2078
+ content: $m-cgg-icon--chevron-bottom-circle;
2079
+ }
2080
+ }
2081
+ .m-cgg-icon--chevron-top-circle {
2082
+ &:before {
2083
+ content: $m-cgg-icon--chevron-top-circle;
2084
+ }
2085
+ }
2086
+ .m-cgg-icon--video-player {
2087
+ &:before {
2088
+ content: $m-cgg-icon--video-player;
2089
+ }
2090
+ }
2091
+ .m-cgg-icon--music-note {
2092
+ &:before {
2093
+ content: $m-cgg-icon--music-note;
2094
+ }
2095
+ }
2096
+ .m-cgg-icon--magazine-blocks {
2097
+ &:before {
2098
+ content: $m-cgg-icon--magazine-blocks;
2099
+ }
2100
+ }
2101
+ .m-cgg-icon--hotspot-right {
2102
+ &:before {
2103
+ content: $m-cgg-icon--hotspot-right;
2104
+ }
2105
+ }
2106
+ .m-cgg-icon--angle-double-up {
2107
+ &:before {
2108
+ content: $m-cgg-icon--angle-double-up;
2109
+ }
2110
+ }
2111
+ .m-cgg-icon--angle-double-down {
2112
+ &:before {
2113
+ content: $m-cgg-icon--angle-double-down;
2114
+ }
2115
+ }
2116
+ .m-cgg-icon--cl-details {
2117
+ &:before {
2118
+ content: $m-cgg-icon--cl-details;
2119
+ }
2120
+ }
2121
+ .m-cgg-icon--cl-new {
2122
+ &:before {
2123
+ content: $m-cgg-icon--cl-new;
2124
+ }
2125
+ }
2126
+ .m-cgg-icon--td_AUD {
2127
+ &:before {
2128
+ content: $m-cgg-icon--td_AUD;
2129
+ }
2130
+ }
2131
+ .m-cgg-icon--td_CNY {
2132
+ &:before {
2133
+ content: $m-cgg-icon--td_CNY;
2134
+ }
2135
+ }
2136
+ .m-cgg-icon--td_NZD {
2137
+ &:before {
2138
+ content: $m-cgg-icon--td_NZD;
2139
+ }
2140
+ }
2141
+ .m-cgg-icon--td_OTHER {
2142
+ &:before {
2143
+ content: $m-cgg-icon--td_OTHER;
2144
+ }
2145
+ }
2146
+ .m-cgg-icon--cl-used {
2147
+ &:before {
2148
+ content: $m-cgg-icon--cl-used;
2149
+ }
2150
+ }
2151
+ .m-cgg-icon--td_TWD {
2152
+ &:before {
2153
+ content: $m-cgg-icon--td_TWD;
2154
+ }
2155
+ }
2156
+ .m-cgg-icon--td_USD {
2157
+ &:before {
2158
+ content: $m-cgg-icon--td_USD;
2159
+ }
2160
+ }
2161
+ .m-cgg-icon--td_ZAR {
2162
+ &:before {
2163
+ content: $m-cgg-icon--td_ZAR;
2164
+ }
2165
+ }
2166
+ .m-cgg-icon--gplus {
2167
+ &:before {
2168
+ content: $m-cgg-icon--gplus;
2169
+ }
2170
+ }
2171
+ .m-cgg-icon--youtube {
2172
+ &:before {
2173
+ content: $m-cgg-icon--youtube;
2174
+ }
2175
+ }
2176
+ .m-cgg-icon--location {
2177
+ &:before {
2178
+ content: $m-cgg-icon--location;
2179
+ }
2180
+ }
2181
+ .m-cgg-icon--ownhouse {
2182
+ &:before {
2183
+ content: $m-cgg-icon--ownhouse;
2184
+ }
2185
+ }
2186
+ .m-cgg-icon--rent-house {
2187
+ &:before {
2188
+ content: $m-cgg-icon--rent-house;
2189
+ }
2190
+ }
2191
+ .m-cgg-icon--familhouse {
2192
+ &:before {
2193
+ content: $m-cgg-icon--familhouse;
2194
+ }
2195
+ }
2196
+ .m-cgg-icon--BBFunnel-Movies {
2197
+ &:before {
2198
+ content: $m-cgg-icon--BBFunnel-Movies;
2199
+ }
2200
+ }
2201
+ .m-cgg-icon--info {
2202
+ &:before {
2203
+ content: $m-cgg-icon--info;
2204
+ }
2205
+ }
2206
+ .m-cgg-icon--Islamic {
2207
+ &:before {
2208
+ content: $m-cgg-icon--Islamic;
2209
+ }
2210
+ }
2211
+ .m-cgg-icon--BBFunnel-homeandphone {
2212
+ &:before {
2213
+ content: $m-cgg-icon--BBFunnel-homeandphone;
2214
+ }
2215
+ }
2216
+ .m-cgg-icon--BBFunnel-TV {
2217
+ &:before {
2218
+ content: $m-cgg-icon--BBFunnel-TV;
2219
+ }
2220
+ }
2221
+ .m-cgg-icon--cell-phone {
2222
+ &:before {
2223
+ content: $m-cgg-icon--cell-phone;
2224
+ }
2225
+ }
2226
+ .m-cgg-icon--icon-cc-home-overall {
2227
+ &:before {
2228
+ content: $m-cgg-icon--icon-cc-home-overall;
2229
+ }
2230
+ }
2231
+ .m-cgg-icon--icon-cc-home-all {
2232
+ &:before {
2233
+ content: $m-cgg-icon--icon-cc-home-all;
2234
+ }
2235
+ }
2236
+ .m-cgg-icon--icon-cc-home-cashback {
2237
+ &:before {
2238
+ content: $m-cgg-icon--icon-cc-home-cashback;
2239
+ }
2240
+ }
2241
+ .m-cgg-icon--icon-cc-home-dining {
2242
+ &:before {
2243
+ content: $m-cgg-icon--icon-cc-home-dining;
2244
+ }
2245
+ }
2246
+ .m-cgg-icon--icon-cc-home-airmiles {
2247
+ &:before {
2248
+ content: $m-cgg-icon--icon-cc-home-airmiles;
2249
+ }
2250
+ }
2251
+ .m-cgg-icon--icon-cc-home-shopping {
2252
+ &:before {
2253
+ content: $m-cgg-icon--icon-cc-home-shopping;
2254
+ }
2255
+ }
2256
+ .m-cgg-icon--icon-cc-home-premium {
2257
+ &:before {
2258
+ content: $m-cgg-icon--icon-cc-home-premium;
2259
+ }
2260
+ }
2261
+ .m-cgg-icon--icon-funnel-pt-Residente-Temp {
2262
+ &:before {
2263
+ content: $m-cgg-icon--icon-funnel-pt-Residente-Temp;
2264
+ }
2265
+ }
2266
+ .m-cgg-icon--icon-funnel-pt-portugues {
2267
+ &:before {
2268
+ content: $m-cgg-icon--icon-funnel-pt-portugues;
2269
+ }
2270
+ }
2271
+ .m-cgg-icon--icon-funnel-pt-Nao-Residente {
2272
+ &:before {
2273
+ content: $m-cgg-icon--icon-funnel-pt-Nao-Residente;
2274
+ }
2275
+ }
2276
+ .m-cgg-icon--Fuel-Rebate {
2277
+ &:before {
2278
+ content: $m-cgg-icon--Fuel-Rebate;
2279
+ }
2280
+ }
2281
+ .m-cgg-icon--Low-interest-rate {
2282
+ &:before {
2283
+ content: $m-cgg-icon--Low-interest-rate;
2284
+ }
2285
+ }
2286
+ .m-cgg-icon--coverage_Integral {
2287
+ &:before {
2288
+ content: $m-cgg-icon--coverage_Integral;
2289
+ }
2290
+ }
2291
+ .m-cgg-icon--party {
2292
+ &:before {
2293
+ content: $m-cgg-icon--party;
2294
+ }
2295
+ }
2296
+ .m-cgg-icon--sweet15 {
2297
+ &:before {
2298
+ content: $m-cgg-icon--sweet15;
2299
+ }
2300
+ }
2301
+ .m-cgg-icon--ticket {
2302
+ &:before {
2303
+ content: $m-cgg-icon--ticket;
2304
+ }
2305
+ }
2306
+ .m-cgg-icon--Religious {
2307
+ &:before {
2308
+ content: $m-cgg-icon--Religious;
2309
+ }
2310
+ }
2311
+ .m-cgg-icon--coverage_amplia {
2312
+ &:before {
2313
+ content: $m-cgg-icon--coverage_amplia;
2314
+ }
2315
+ }
2316
+ .m-cgg-icon--coverage_limited {
2317
+ &:before {
2318
+ content: $m-cgg-icon--coverage_limited;
2319
+ }
2320
+ }
2321
+ .m-cgg-icon--coverage_r-civil {
2322
+ &:before {
2323
+ content: $m-cgg-icon--coverage_r-civil;
2324
+ }
2325
+ }
2326
+ .m-cgg-icon--boat {
2327
+ &:before {
2328
+ content: $m-cgg-icon--boat;
2329
+ }
2330
+ }
2331
+ .m-cgg-icon--caravan {
2332
+ &:before {
2333
+ content: $m-cgg-icon--caravan;
2334
+ }
2335
+ }
2336
+ .m-cgg-icon--tv-remote {
2337
+ &:before {
2338
+ content: $m-cgg-icon--tv-remote;
2339
+ }
2340
+ }
2341
+ .m-cgg-icon--Phone-Bundle {
2342
+ &:before {
2343
+ content: $m-cgg-icon--Phone-Bundle;
2344
+ }
2345
+ }
2346
+ .m-cgg-icon--PackBundle {
2347
+ &:before {
2348
+ content: $m-cgg-icon--PackBundle;
2349
+ }
2350
+ }
2351
+ .m-cgg-icon--motorcycle {
2352
+ &:before {
2353
+ content: $m-cgg-icon--motorcycle;
2354
+ }
2355
+ }
2356
+ .m-cgg-icon--energy-saving {
2357
+ &:before {
2358
+ content: $m-cgg-icon--energy-saving;
2359
+ }
2360
+ }
2361
+ .m-cgg-icon--contract {
2362
+ &:before {
2363
+ content: $m-cgg-icon--contract;
2364
+ }
2365
+ }
2366
+ .m-cgg-icon--bonus {
2367
+ &:before {
2368
+ content: $m-cgg-icon--bonus;
2369
+ }
2370
+ }
2371
+ .m-cgg-icon--autopay {
2372
+ &:before {
2373
+ content: $m-cgg-icon--autopay;
2374
+ }
2375
+ }
2376
+ .m-cgg-icon--permanent-contract {
2377
+ &:before {
2378
+ content: $m-cgg-icon--permanent-contract;
2379
+ }
2380
+ }
2381
+ .m-cgg-icon--employee {
2382
+ &:before {
2383
+ content: $m-cgg-icon--employee;
2384
+ }
2385
+ }
2386
+ .m-cgg-icon--SIM {
2387
+ &:before {
2388
+ content: $m-cgg-icon--SIM;
2389
+ }
2390
+ }
2391
+ .m-cgg-icon--SIM2 {
2392
+ &:before {
2393
+ content: $m-cgg-icon--SIM2;
2394
+ }
2395
+ }
2396
+ .m-cgg-icon--SIM3 {
2397
+ &:before {
2398
+ content: $m-cgg-icon--SIM3;
2399
+ }
2400
+ }
2401
+ .m-cgg-icon--Part-time {
2402
+ &:before {
2403
+ content: $m-cgg-icon--Part-time;
2404
+ }
2405
+ }
2406
+ .m-cgg-icon--recording {
2407
+ &:before {
2408
+ content: $m-cgg-icon--recording;
2409
+ }
2410
+ }
2411
+ .m-cgg-icon--vod {
2412
+ &:before {
2413
+ content: $m-cgg-icon--vod;
2414
+ }
2415
+ }
2416
+ .m-cgg-icon--multiple-screen {
2417
+ &:before {
2418
+ content: $m-cgg-icon--multiple-screen;
2419
+ }
2420
+ }
2421
+ .m-cgg-icon--chat {
2422
+ &:before {
2423
+ content: $m-cgg-icon--chat;
2424
+ }
2425
+ }
2426
+ .m-cgg-icon--china-star-2 {
2427
+ &:before {
2428
+ content: $m-cgg-icon--china-star-2;
2429
+ }
2430
+ }
2431
+ .m-cgg-icon--nostar {
2432
+ &:before {
2433
+ content: $m-cgg-icon--nostar;
2434
+ }
2435
+ }
2436
+ .m-cgg-icon--onestar {
2437
+ &:before {
2438
+ content: $m-cgg-icon--onestar;
2439
+ }
2440
+ }
2441
+ .m-cgg-icon--portugal-phone {
2442
+ &:before {
2443
+ content: $m-cgg-icon--portugal-phone;
2444
+ }
2445
+ }
2446
+ .m-cgg-icon--2stars {
2447
+ &:before {
2448
+ content: $m-cgg-icon--2stars;
2449
+ }
2450
+ }
2451
+ .m-cgg-icon--3stars {
2452
+ &:before {
2453
+ content: $m-cgg-icon--3stars;
2454
+ }
2455
+ }
2456
+ .m-cgg-icon--usage-light {
2457
+ &:before {
2458
+ content: $m-cgg-icon--usage-light;
2459
+ }
2460
+ }
2461
+ .m-cgg-icon--usage-medium {
2462
+ &:before {
2463
+ content: $m-cgg-icon--usage-medium;
2464
+ }
2465
+ }
2466
+ .m-cgg-icon--Commission {
2467
+ &:before {
2468
+ content: $m-cgg-icon--Commission;
2469
+ }
2470
+ }
2471
+ .m-cgg-icon--Housewife {
2472
+ &:before {
2473
+ content: $m-cgg-icon--Housewife;
2474
+ }
2475
+ }
2476
+ .m-cgg-icon--usage-heavy {
2477
+ &:before {
2478
+ content: $m-cgg-icon--usage-heavy;
2479
+ }
2480
+ }
2481
+ .m-cgg-icon--local-use {
2482
+ &:before {
2483
+ content: $m-cgg-icon--local-use;
2484
+ }
2485
+ }
2486
+ .m-cgg-icon--internet-use {
2487
+ &:before {
2488
+ content: $m-cgg-icon--internet-use;
2489
+ }
2490
+ }
2491
+ .m-cgg-icon--a-flight {
2492
+ &:before {
2493
+ content: $m-cgg-icon--a-flight;
2494
+ }
2495
+ }
2496
+ .m-cgg-icon--multiple-places {
2497
+ &:before {
2498
+ content: $m-cgg-icon--multiple-places;
2499
+ }
2500
+ }
2501
+ .m-cgg-icon--family-home {
2502
+ &:before {
2503
+ content: $m-cgg-icon--family-home;
2504
+ }
2505
+ }
2506
+ .m-cgg-icon--relatives-home {
2507
+ &:before {
2508
+ content: $m-cgg-icon--relatives-home;
2509
+ }
2510
+ }
2511
+ .m-cgg-icon--myself {
2512
+ &:before {
2513
+ content: $m-cgg-icon--myself;
2514
+ }
2515
+ }
2516
+ .m-cgg-icon--earth {
2517
+ &:before {
2518
+ content: $m-cgg-icon--earth;
2519
+ }
2520
+ }
2521
+ .m-cgg-icon--local-use-filled {
2522
+ &:before {
2523
+ content: $m-cgg-icon--local-use-filled;
2524
+ }
2525
+ }
2526
+ .m-cgg-icon--0-2mth-contract {
2527
+ &:before {
2528
+ content: $m-cgg-icon--0-2mth-contract;
2529
+ }
2530
+ }
2531
+ .m-cgg-icon--2-6mth-contract {
2532
+ &:before {
2533
+ content: $m-cgg-icon--2-6mth-contract;
2534
+ }
2535
+ }
2536
+ .m-cgg-icon--6mthplus-contract {
2537
+ &:before {
2538
+ content: $m-cgg-icon--6mthplus-contract;
2539
+ }
2540
+ }
2541
+ .m-cgg-icon--unionpay {
2542
+ &:before {
2543
+ content: $m-cgg-icon--unionpay;
2544
+ }
2545
+ }
2546
+ .m-cgg-icon--sorting {
2547
+ &:before {
2548
+ content: $m-cgg-icon--sorting;
2549
+ }
2550
+ }
2551
+ .m-cgg-icon--PRC {
2552
+ &:before {
2553
+ content: $m-cgg-icon--PRC;
2554
+ }
2555
+ }
2556
+