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.
- package/dist/cja-phoenix.es.js +3816 -4306
- package/dist/style.css +1 -0
- package/dist/types/components/composite/CheckoutCrossSell.vue.d.ts +29 -0
- package/dist/types/components/composite/CheckoutLayout.vue.d.ts +23 -0
- package/dist/types/components/composite/CheckoutMilestones.vue.d.ts +16 -0
- package/dist/types/components/composite/CjaFooter.vue.d.ts +34 -0
- package/dist/types/components/composite/CjaMenuBar.vue.d.ts +52 -0
- package/dist/types/components/composite/FunnelLayout.vue.d.ts +35 -0
- package/dist/types/components/composite/FunnelSubmit.vue.d.ts +26 -0
- package/dist/types/components/composite/FunnelSummary.vue.d.ts +77 -0
- package/dist/types/components/composite/FunnelTitle.vue.d.ts +19 -0
- package/dist/types/components/composite/InfoShowcase.vue.d.ts +25 -0
- package/dist/types/components/composite/JourneyMacroSteps.vue.d.ts +16 -0
- package/dist/types/components/composite/ResultsSidebar.vue.d.ts +9 -0
- package/dist/types/components/forms/CheckboxInput.vue.d.ts +41 -0
- package/dist/types/components/forms/CurrencyInput.vue.d.ts +65 -0
- package/dist/types/components/forms/FileInput.vue.d.ts +89 -0
- package/dist/types/components/forms/NumberInput.vue.d.ts +58 -0
- package/dist/types/components/forms/PhoneInput.vue.d.ts +69 -0
- package/dist/types/components/forms/RadioInput.vue.d.ts +43 -0
- package/dist/types/components/forms/RadioInputList.vue.d.ts +65 -0
- package/dist/types/components/forms/SelectInput.vue.d.ts +80 -0
- package/dist/types/components/forms/SelectionTiles.vue.d.ts +51 -0
- package/dist/types/components/forms/TextInput.vue.d.ts +76 -0
- package/dist/types/components/forms/TileCheckboxInput.vue.d.ts +23 -0
- package/dist/types/components/forms/ToggleInput.vue.d.ts +51 -0
- package/dist/types/components/forms/structure/InputContainer.vue.d.ts +22 -0
- package/dist/types/components/forms/structure/InputError.vue.d.ts +15 -0
- package/dist/types/components/forms/structure/InputTitle.vue.d.ts +21 -0
- package/dist/types/components/structural/CjaButton.vue.d.ts +59 -0
- package/dist/types/components/structural/CollapseContainer.vue.d.ts +51 -0
- package/dist/{components → types/components}/structural/ContentTabs.vue.d.ts +17 -20
- package/dist/types/components/structural/FixedContainer.vue.d.ts +68 -0
- package/dist/types/components/structural/GridContainer.vue.d.ts +36 -0
- package/dist/types/components/structural/GridItem.vue.d.ts +26 -0
- package/dist/types/components/structural/InfoMessage.vue.d.ts +30 -0
- package/dist/types/components/structural/LoadingSpinner.vue.d.ts +17 -0
- package/dist/types/components/structural/Modal.vue.d.ts +65 -0
- package/dist/types/components/structural/Scaffold.vue.d.ts +9 -0
- package/dist/types/index.d.ts +16 -7
- package/dist/types/stories/CjaButton.story.vue.d.ts +2 -0
- package/dist/types/stories/ContentTabs.story.vue.d.ts +2 -0
- package/dist/types/stories/Modal.story.vue.d.ts +2 -0
- package/dist/types/stories/RadioInputList.story.vue.d.ts +2 -0
- package/dist/types/{Router.d.ts → types/Router.d.ts} +1 -0
- package/dist/types/types/index.d.ts +7 -0
- package/dist/{utils → types/utils}/formValidations.d.ts +3 -0
- package/package.json +21 -30
- package/src/assets/backdrop.scss +10 -0
- package/src/assets/breakpoints.scss +12 -0
- package/src/assets/fonts.scss +1 -0
- package/src/assets/forms.scss +97 -0
- package/src/assets/grid.scss +14 -0
- package/src/assets/iconia/Read Me.txt +7 -0
- package/src/assets/iconia/demo-files/demo.css +155 -0
- package/src/assets/iconia/demo-files/demo.js +30 -0
- package/src/assets/iconia/demo.html +7055 -0
- package/src/assets/iconia/fonts/CGG-icomoon.eot +0 -0
- package/src/assets/iconia/fonts/CGG-icomoon.svg +513 -0
- package/src/assets/iconia/fonts/CGG-icomoon.ttf +0 -0
- package/src/assets/iconia/fonts/CGG-icomoon.woff +0 -0
- package/src/assets/iconia/selection.json +1 -0
- package/src/assets/iconia/style.css +1547 -0
- package/src/assets/iconia/style.scss +2556 -0
- package/src/assets/iconia/variables.scss +507 -0
- package/src/assets/main.scss +30 -0
- package/src/assets/radioOld.scss +52 -0
- package/src/assets/shadows.scss +3 -0
- package/src/assets/tippy.scss +45 -0
- package/src/assets/vars/development.scss +4 -0
- package/src/assets/vars/production.scss +4 -0
- package/src/components/composite/CheckoutCrossSell.vue +478 -0
- package/src/components/composite/CheckoutLayout.vue +59 -0
- package/src/components/composite/CheckoutMilestones.vue +161 -0
- package/src/components/composite/CjaFooter.vue +223 -0
- package/src/components/composite/CjaMenuBar.vue +543 -0
- package/src/components/composite/FunnelLayout.vue +197 -0
- package/src/components/composite/FunnelSubmit.vue +53 -0
- package/src/components/composite/FunnelSummary.vue +198 -0
- package/src/components/composite/FunnelTitle.vue +59 -0
- package/src/components/composite/InfoShowcase.vue +87 -0
- package/src/components/composite/JourneyMacroSteps.vue +104 -0
- package/src/components/composite/ProductDetails.vue +149 -0
- package/src/components/composite/ResultsLayout.vue +156 -0
- package/src/components/composite/ResultsSidebar.vue +74 -0
- package/src/components/forms/CheckboxInput.vue +103 -0
- package/src/components/forms/CurrencyInput.vue +126 -0
- package/src/components/forms/FileInput.vue +250 -0
- package/src/components/forms/NumberInput.vue +165 -0
- package/src/components/forms/PhoneInput.vue +122 -0
- package/src/components/forms/RadioInput.vue +98 -0
- package/src/components/forms/RadioInputList.vue +156 -0
- package/src/components/forms/SelectInput.vue +392 -0
- package/src/components/forms/SelectionTiles.vue +196 -0
- package/src/components/forms/TextInput.vue +144 -0
- package/src/components/forms/TileCheckboxInput.vue +96 -0
- package/src/components/forms/ToggleInput.vue +88 -0
- package/src/components/forms/structure/InputContainer.vue +28 -0
- package/src/components/forms/structure/InputError.vue +26 -0
- package/src/components/forms/structure/InputTitle.vue +52 -0
- package/src/components/index.ts +73 -0
- package/src/components/structural/CjaButton.vue +332 -0
- package/src/components/structural/CollapseContainer.vue +141 -0
- package/src/components/structural/ContentTabs.vue +105 -0
- package/src/components/structural/FixedContainer.vue +107 -0
- package/src/components/structural/GridContainer.vue +70 -0
- package/src/components/structural/GridItem.vue +47 -0
- package/src/components/structural/InfoMessage.vue +105 -0
- package/src/components/structural/LoadingSpinner.vue +39 -0
- package/src/components/structural/Modal.vue +209 -0
- package/src/components/structural/Scaffold.vue +3 -0
- package/src/constants/MyConstants.ts +1 -0
- package/src/constants/index.ts +5 -0
- package/src/env.d.ts +11 -0
- package/src/index.ts +31 -0
- package/src/stories/CjaButton.story.vue +192 -0
- package/src/stories/ContentTabs.story.vue +59 -0
- package/src/stories/Modal.story.vue +127 -0
- package/src/stories/RadioInputList.story.vue +61 -0
- package/src/types/CheckoutMilestone.ts +5 -0
- package/src/types/Footer.ts +17 -0
- package/src/types/Menu.ts +19 -0
- package/src/types/RadioOption.ts +7 -0
- package/src/types/Router.ts +19 -0
- package/src/types/SelectOption.ts +6 -0
- package/src/types/StoreDataValue.ts +12 -0
- package/src/types/Storyblok.ts +10 -0
- package/src/types/TileOption.ts +8 -0
- package/src/types/index.ts +19 -0
- package/src/utils/cjaRouter.ts +74 -0
- package/src/utils/cjaStore.ts +43 -0
- package/src/utils/findScrollAncestor.ts +16 -0
- package/src/utils/formValidations.ts +192 -0
- package/src/utils/generateRoutes.ts +36 -0
- package/src/utils/getFromUrl.ts +25 -0
- package/src/utils/getMessages.ts +23 -0
- package/src/utils/gtm.ts +158 -0
- package/src/utils/index.ts +31 -0
- package/src/utils/jsonReviver.ts +20 -0
- package/src/utils/storyblokLink.ts +4 -0
- package/src/utils/updateForm.ts +40 -0
- package/src/utils/uploadFile.ts +25 -0
- package/src/utils/useGlobalProperties.ts +11 -0
- package/src/utils/useViewportDetector.ts +35 -0
- package/dist/cja-phoenix.cjs.js +0 -44
- package/dist/cja-phoenix.d.ts +0 -3
- package/dist/cja-phoenix.umd.js +0 -45
- package/dist/components/composite/CheckoutCrossSell.vue.d.ts +0 -36
- package/dist/components/composite/CheckoutLayout.vue.d.ts +0 -20
- package/dist/components/composite/CheckoutMilestones.vue.d.ts +0 -13
- package/dist/components/composite/CjaFooter.vue.d.ts +0 -29
- package/dist/components/composite/CjaMenuBar.vue.d.ts +0 -53
- package/dist/components/composite/FunnelLayout.vue.d.ts +0 -38
- package/dist/components/composite/FunnelSubmit.vue.d.ts +0 -25
- package/dist/components/composite/FunnelSummary.vue.d.ts +0 -76
- package/dist/components/composite/FunnelTitle.vue.d.ts +0 -24
- package/dist/components/composite/InfoShowcase.vue.d.ts +0 -28
- package/dist/components/composite/JourneyMacroSteps.vue.d.ts +0 -13
- package/dist/components/forms/CheckboxInput.vue.d.ts +0 -38
- package/dist/components/forms/CurrencyInput.vue.d.ts +0 -92
- package/dist/components/forms/FileInput.vue.d.ts +0 -118
- package/dist/components/forms/NumberInput.vue.d.ts +0 -73
- package/dist/components/forms/PhoneInput.vue.d.ts +0 -104
- package/dist/components/forms/RadioInputList.vue.d.ts +0 -96
- package/dist/components/forms/SelectInput.vue.d.ts +0 -121
- package/dist/components/forms/SelectionTiles.vue.d.ts +0 -64
- package/dist/components/forms/TextInput.vue.d.ts +0 -127
- package/dist/components/forms/TileCheckboxInput.vue.d.ts +0 -34
- package/dist/components/forms/ToggleInput.vue.d.ts +0 -70
- package/dist/components/forms/structure/InputContainer.vue.d.ts +0 -17
- package/dist/components/forms/structure/InputError.vue.d.ts +0 -12
- package/dist/components/forms/structure/InputTitle.vue.d.ts +0 -30
- package/dist/components/structural/CjaButton.vue.d.ts +0 -66
- package/dist/components/structural/CollapseContainer.vue.d.ts +0 -40
- package/dist/components/structural/FixedContainer.vue.d.ts +0 -69
- package/dist/components/structural/GridContainer.vue.d.ts +0 -21
- package/dist/components/structural/GridItem.vue.d.ts +0 -29
- package/dist/components/structural/InfoMessage.vue.d.ts +0 -39
- package/dist/components/structural/LoadingSpinner.vue.d.ts +0 -16
- package/dist/components/structural/Modal.vue.d.ts +0 -50
- package/dist/components/structural/Scaffold.vue.d.ts +0 -3
- package/dist/components/structural/Scaffold.vue.d.ts.map +0 -1
- package/dist/index.d.ts +0 -14
- package/dist/src/components/composite/CheckoutCrossSell.vue.d.ts +0 -5
- package/dist/src/components/composite/CheckoutCrossSell.vue.d.ts.map +0 -1
- package/dist/src/components/composite/CheckoutLayout.vue.d.ts +0 -5
- package/dist/src/components/composite/CheckoutLayout.vue.d.ts.map +0 -1
- package/dist/src/components/composite/CheckoutMilestones.vue.d.ts +0 -5
- package/dist/src/components/composite/CheckoutMilestones.vue.d.ts.map +0 -1
- package/dist/src/components/composite/CjaFooter.vue.d.ts +0 -5
- package/dist/src/components/composite/CjaFooter.vue.d.ts.map +0 -1
- package/dist/src/components/composite/CjaMenuBar.vue.d.ts +0 -5
- package/dist/src/components/composite/CjaMenuBar.vue.d.ts.map +0 -1
- package/dist/src/components/composite/FunnelLayout.vue.d.ts +0 -5
- package/dist/src/components/composite/FunnelLayout.vue.d.ts.map +0 -1
- package/dist/src/components/composite/FunnelSubmit.vue.d.ts +0 -5
- package/dist/src/components/composite/FunnelSubmit.vue.d.ts.map +0 -1
- package/dist/src/components/composite/FunnelSummary.vue.d.ts +0 -5
- package/dist/src/components/composite/FunnelSummary.vue.d.ts.map +0 -1
- package/dist/src/components/composite/FunnelTitle.vue.d.ts +0 -5
- package/dist/src/components/composite/FunnelTitle.vue.d.ts.map +0 -1
- package/dist/src/components/composite/InfoShowcase.vue.d.ts +0 -5
- package/dist/src/components/composite/InfoShowcase.vue.d.ts.map +0 -1
- package/dist/src/components/composite/JourneyMacroSteps.vue.d.ts +0 -5
- package/dist/src/components/composite/JourneyMacroSteps.vue.d.ts.map +0 -1
- package/dist/src/components/composite/ProductDetails.vue.d.ts +0 -5
- package/dist/src/components/composite/ProductDetails.vue.d.ts.map +0 -1
- package/dist/src/components/composite/ResultsLayout.vue.d.ts +0 -5
- package/dist/src/components/composite/ResultsLayout.vue.d.ts.map +0 -1
- package/dist/src/components/forms/CheckboxInput.vue.d.ts +0 -5
- package/dist/src/components/forms/CheckboxInput.vue.d.ts.map +0 -1
- package/dist/src/components/forms/CurrencyInput.vue.d.ts +0 -5
- package/dist/src/components/forms/CurrencyInput.vue.d.ts.map +0 -1
- package/dist/src/components/forms/FileInput.vue.d.ts +0 -5
- package/dist/src/components/forms/FileInput.vue.d.ts.map +0 -1
- package/dist/src/components/forms/NumberInput.vue.d.ts +0 -5
- package/dist/src/components/forms/NumberInput.vue.d.ts.map +0 -1
- package/dist/src/components/forms/PhoneInput.vue.d.ts +0 -5
- package/dist/src/components/forms/PhoneInput.vue.d.ts.map +0 -1
- package/dist/src/components/forms/RadioInputList.vue.d.ts +0 -5
- package/dist/src/components/forms/RadioInputList.vue.d.ts.map +0 -1
- package/dist/src/components/forms/SelectInput.vue.d.ts +0 -5
- package/dist/src/components/forms/SelectInput.vue.d.ts.map +0 -1
- package/dist/src/components/forms/SelectionTiles.vue.d.ts +0 -5
- package/dist/src/components/forms/SelectionTiles.vue.d.ts.map +0 -1
- package/dist/src/components/forms/TextInput.vue.d.ts +0 -5
- package/dist/src/components/forms/TextInput.vue.d.ts.map +0 -1
- package/dist/src/components/forms/TileCheckboxInput.vue.d.ts +0 -5
- package/dist/src/components/forms/TileCheckboxInput.vue.d.ts.map +0 -1
- package/dist/src/components/forms/ToggleInput.vue.d.ts +0 -5
- package/dist/src/components/forms/ToggleInput.vue.d.ts.map +0 -1
- package/dist/src/components/forms/structure/InputContainer.vue.d.ts +0 -5
- package/dist/src/components/forms/structure/InputContainer.vue.d.ts.map +0 -1
- package/dist/src/components/forms/structure/InputError.vue.d.ts +0 -5
- package/dist/src/components/forms/structure/InputError.vue.d.ts.map +0 -1
- package/dist/src/components/forms/structure/InputTitle.vue.d.ts +0 -5
- package/dist/src/components/forms/structure/InputTitle.vue.d.ts.map +0 -1
- package/dist/src/components/structural/CjaButton.vue.d.ts +0 -5
- package/dist/src/components/structural/CjaButton.vue.d.ts.map +0 -1
- package/dist/src/components/structural/CollapseContainer.vue.d.ts +0 -5
- package/dist/src/components/structural/CollapseContainer.vue.d.ts.map +0 -1
- package/dist/src/components/structural/ContentTabs.vue.d.ts +0 -5
- package/dist/src/components/structural/ContentTabs.vue.d.ts.map +0 -1
- package/dist/src/components/structural/FixedContainer.vue.d.ts +0 -5
- package/dist/src/components/structural/FixedContainer.vue.d.ts.map +0 -1
- package/dist/src/components/structural/GridContainer.vue.d.ts +0 -5
- package/dist/src/components/structural/GridContainer.vue.d.ts.map +0 -1
- package/dist/src/components/structural/GridItem.vue.d.ts +0 -5
- package/dist/src/components/structural/GridItem.vue.d.ts.map +0 -1
- package/dist/src/components/structural/InfoMessage.vue.d.ts +0 -5
- package/dist/src/components/structural/InfoMessage.vue.d.ts.map +0 -1
- package/dist/src/components/structural/LoadingSpinner.vue.d.ts +0 -5
- package/dist/src/components/structural/LoadingSpinner.vue.d.ts.map +0 -1
- package/dist/src/components/structural/Modal.vue.d.ts +0 -5
- package/dist/src/components/structural/Modal.vue.d.ts.map +0 -1
- package/dist/styles.css +0 -1
- /package/dist/{components → types/components}/composite/ProductDetails.vue.d.ts +0 -0
- /package/dist/{components → types/components}/composite/ResultsLayout.vue.d.ts +0 -0
- /package/dist/{components → types/components}/index.d.ts +0 -0
- /package/dist/{constants → types/constants}/MyConstants.d.ts +0 -0
- /package/dist/{constants → types/constants}/index.d.ts +0 -0
- /package/dist/types/{CheckoutMilestone.d.ts → types/CheckoutMilestone.d.ts} +0 -0
- /package/dist/types/{Footer.d.ts → types/Footer.d.ts} +0 -0
- /package/dist/types/{Menu.d.ts → types/Menu.d.ts} +0 -0
- /package/dist/types/{RadioOption.d.ts → types/RadioOption.d.ts} +0 -0
- /package/dist/types/{SelectOption.d.ts → types/SelectOption.d.ts} +0 -0
- /package/dist/types/{StoreDataValue.d.ts → types/StoreDataValue.d.ts} +0 -0
- /package/dist/types/{Storyblok.d.ts → types/Storyblok.d.ts} +0 -0
- /package/dist/types/{TileOption.d.ts → types/TileOption.d.ts} +0 -0
- /package/dist/{utils → types/utils}/cjaRouter.d.ts +0 -0
- /package/dist/{utils → types/utils}/cjaStore.d.ts +0 -0
- /package/dist/{utils → types/utils}/findScrollAncestor.d.ts +0 -0
- /package/dist/{utils → types/utils}/generateRoutes.d.ts +0 -0
- /package/dist/{utils → types/utils}/getFromUrl.d.ts +0 -0
- /package/dist/{utils → types/utils}/getMessages.d.ts +0 -0
- /package/dist/{utils → types/utils}/gtm.d.ts +0 -0
- /package/dist/{utils → types/utils}/index.d.ts +0 -0
- /package/dist/{utils → types/utils}/jsonReviver.d.ts +0 -0
- /package/dist/{utils → types/utils}/storyblokLink.d.ts +0 -0
- /package/dist/{utils → types/utils}/updateForm.d.ts +0 -0
- /package/dist/{utils → types/utils}/uploadFile.d.ts +0 -0
- /package/dist/{utils → types/utils}/useGlobalProperties.d.ts +0 -0
- /package/dist/{utils → types/utils}/useViewportDetector.d.ts +0 -0
|
@@ -0,0 +1,1547 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: 'CGG-icomoon';
|
|
3
|
+
src: url('fonts/CGG-icomoon.eot?581rb2');
|
|
4
|
+
src: url('fonts/CGG-icomoon.eot?581rb2#iefix') format('embedded-opentype'),
|
|
5
|
+
url('fonts/CGG-icomoon.ttf?581rb2') format('truetype'),
|
|
6
|
+
url('fonts/CGG-icomoon.woff?581rb2') format('woff'),
|
|
7
|
+
url('fonts/CGG-icomoon.svg?581rb2#CGG-icomoon') format('svg');
|
|
8
|
+
font-weight: normal;
|
|
9
|
+
font-style: normal;
|
|
10
|
+
font-display: block;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
[class^="m-cgg-icon--"], [class*=" m-cgg-icon--"] {
|
|
14
|
+
/* use !important to prevent issues with browser extensions that change fonts */
|
|
15
|
+
font-family: 'CGG-icomoon' !important;
|
|
16
|
+
speak: never;
|
|
17
|
+
font-style: normal;
|
|
18
|
+
font-weight: normal;
|
|
19
|
+
font-variant: normal;
|
|
20
|
+
text-transform: none;
|
|
21
|
+
line-height: 1;
|
|
22
|
+
|
|
23
|
+
/* Better Font Rendering =========== */
|
|
24
|
+
-webkit-font-smoothing: antialiased;
|
|
25
|
+
-moz-osx-font-smoothing: grayscale;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.m-cgg-icon--filters:before {
|
|
29
|
+
content: "\ea31";
|
|
30
|
+
}
|
|
31
|
+
.m-cgg-icon--search:before {
|
|
32
|
+
content: "\ea32";
|
|
33
|
+
}
|
|
34
|
+
.m-cgg-icon--macro-step-contact:before {
|
|
35
|
+
content: "\ea24";
|
|
36
|
+
}
|
|
37
|
+
.m-cgg-icon--macro-step-checkout:before {
|
|
38
|
+
content: "\ea2e";
|
|
39
|
+
}
|
|
40
|
+
.m-cgg-icon--macro-step-results:before {
|
|
41
|
+
content: "\ea2f";
|
|
42
|
+
}
|
|
43
|
+
.m-cgg-icon--macro-step-funnel:before {
|
|
44
|
+
content: "\ea30";
|
|
45
|
+
}
|
|
46
|
+
.m-cgg-icon--affiliates-add:before {
|
|
47
|
+
content: "\e900";
|
|
48
|
+
}
|
|
49
|
+
.m-cgg-icon--affiliates-dashboard:before {
|
|
50
|
+
content: "\ea2a";
|
|
51
|
+
}
|
|
52
|
+
.m-cgg-icon--affiliates-home:before {
|
|
53
|
+
content: "\ea2b";
|
|
54
|
+
}
|
|
55
|
+
.m-cgg-icon--affiliates-settings:before {
|
|
56
|
+
content: "\ea2c";
|
|
57
|
+
}
|
|
58
|
+
.m-cgg-icon--tiktok:before {
|
|
59
|
+
content: "\ea27";
|
|
60
|
+
color: #076b9c;
|
|
61
|
+
}
|
|
62
|
+
.m-cgg-icon--list-mode:before {
|
|
63
|
+
content: "\ea22";
|
|
64
|
+
}
|
|
65
|
+
.m-cgg-icon--grid-mode:before {
|
|
66
|
+
content: "\ea21";
|
|
67
|
+
}
|
|
68
|
+
.m-cgg-icon--swap:before {
|
|
69
|
+
content: "\ea20";
|
|
70
|
+
}
|
|
71
|
+
.m-cgg-icon--cja-cashback:before {
|
|
72
|
+
content: "\ea1c";
|
|
73
|
+
}
|
|
74
|
+
.m-cgg-icon--no-money:before {
|
|
75
|
+
content: "\ea1e";
|
|
76
|
+
}
|
|
77
|
+
.m-cgg-icon--plane:before {
|
|
78
|
+
content: "\ea1f";
|
|
79
|
+
}
|
|
80
|
+
.m-cgg-icon--time:before {
|
|
81
|
+
content: "\ea1d";
|
|
82
|
+
}
|
|
83
|
+
.m-cgg-icon--filtros:before {
|
|
84
|
+
content: "\ea1a";
|
|
85
|
+
}
|
|
86
|
+
.m-cgg-icon--ordenacao:before {
|
|
87
|
+
content: "\ea1b";
|
|
88
|
+
}
|
|
89
|
+
.m-cgg-icon--gears:before {
|
|
90
|
+
content: "\ea19";
|
|
91
|
+
}
|
|
92
|
+
.m-cgg-icon--telemovel:before {
|
|
93
|
+
content: "\ea09";
|
|
94
|
+
}
|
|
95
|
+
.m-cgg-icon--dual:before {
|
|
96
|
+
content: "\e9ef";
|
|
97
|
+
}
|
|
98
|
+
.m-cgg-icon--callcenter:before {
|
|
99
|
+
content: "\e9f5";
|
|
100
|
+
}
|
|
101
|
+
.m-cgg-icon--notes:before {
|
|
102
|
+
content: "\e9f6";
|
|
103
|
+
}
|
|
104
|
+
.m-cgg-icon--pig:before {
|
|
105
|
+
content: "\e9f7";
|
|
106
|
+
}
|
|
107
|
+
.m-cgg-icon--cja-email:before {
|
|
108
|
+
content: "\ea18";
|
|
109
|
+
}
|
|
110
|
+
.m-cgg-icon--linkedin-square:before {
|
|
111
|
+
content: "\ea13";
|
|
112
|
+
}
|
|
113
|
+
.m-cgg-icon--instagram-square:before {
|
|
114
|
+
content: "\ea14";
|
|
115
|
+
}
|
|
116
|
+
.m-cgg-icon--facebook-circle:before {
|
|
117
|
+
content: "\ea15";
|
|
118
|
+
}
|
|
119
|
+
.m-cgg-icon--pin:before {
|
|
120
|
+
content: "\ea16";
|
|
121
|
+
}
|
|
122
|
+
.m-cgg-icon--younited-favicon .path1:before {
|
|
123
|
+
content: "\ea11";
|
|
124
|
+
color: rgb(81, 95, 117);
|
|
125
|
+
}
|
|
126
|
+
.m-cgg-icon--younited-favicon .path2:before {
|
|
127
|
+
content: "\ea12";
|
|
128
|
+
margin-left: -0.89453125em;
|
|
129
|
+
color: rgb(253, 78, 0);
|
|
130
|
+
}
|
|
131
|
+
.m-cgg-icon--star-line:before {
|
|
132
|
+
content: "\ea0b";
|
|
133
|
+
}
|
|
134
|
+
.m-cgg-icon--moedas:before {
|
|
135
|
+
content: "\ea0c";
|
|
136
|
+
}
|
|
137
|
+
.m-cgg-icon--speed:before {
|
|
138
|
+
content: "\ea0d";
|
|
139
|
+
}
|
|
140
|
+
.m-cgg-icon--trouphy:before {
|
|
141
|
+
content: "\ea0e";
|
|
142
|
+
}
|
|
143
|
+
.m-cgg-icon--comparaja .path1:before {
|
|
144
|
+
content: "\ea0f";
|
|
145
|
+
color: rgb(7, 107, 156);
|
|
146
|
+
}
|
|
147
|
+
.m-cgg-icon--comparaja .path2:before {
|
|
148
|
+
content: "\ea10";
|
|
149
|
+
margin-left: -1em;
|
|
150
|
+
color: rgb(119, 170, 67);
|
|
151
|
+
}
|
|
152
|
+
.m-cgg-icon--netmovel:before {
|
|
153
|
+
content: "\ea03";
|
|
154
|
+
}
|
|
155
|
+
.m-cgg-icon--pin-morada:before {
|
|
156
|
+
content: "\ea07";
|
|
157
|
+
}
|
|
158
|
+
.m-cgg-icon--net:before {
|
|
159
|
+
content: "\ea04";
|
|
160
|
+
}
|
|
161
|
+
.m-cgg-icon--online:before {
|
|
162
|
+
content: "\ea05";
|
|
163
|
+
}
|
|
164
|
+
.m-cgg-icon--telefone:before {
|
|
165
|
+
content: "\ea06";
|
|
166
|
+
}
|
|
167
|
+
.m-cgg-icon--telefone-linha:before {
|
|
168
|
+
content: "\ea08";
|
|
169
|
+
}
|
|
170
|
+
.m-cgg-icon--tv:before {
|
|
171
|
+
content: "\ea0a";
|
|
172
|
+
}
|
|
173
|
+
.m-cgg-icon--prazo-icon:before {
|
|
174
|
+
content: "\ea00";
|
|
175
|
+
}
|
|
176
|
+
.m-cgg-icon--montante-icon:before {
|
|
177
|
+
content: "\ea01";
|
|
178
|
+
}
|
|
179
|
+
.m-cgg-icon--casa-icon:before {
|
|
180
|
+
content: "\ea02";
|
|
181
|
+
}
|
|
182
|
+
.m-cgg-icon--attention:before {
|
|
183
|
+
content: "\e9fd";
|
|
184
|
+
}
|
|
185
|
+
.m-cgg-icon--diamond:before {
|
|
186
|
+
content: "\e9fe";
|
|
187
|
+
}
|
|
188
|
+
.m-cgg-icon--edit1:before {
|
|
189
|
+
content: "\e9ff";
|
|
190
|
+
}
|
|
191
|
+
.m-cgg-icon--checkmark:before {
|
|
192
|
+
content: "\e9f8";
|
|
193
|
+
}
|
|
194
|
+
.m-cgg-icon--carteira:before {
|
|
195
|
+
content: "\e9f9";
|
|
196
|
+
}
|
|
197
|
+
.m-cgg-icon--documentos:before {
|
|
198
|
+
content: "\e9fa";
|
|
199
|
+
}
|
|
200
|
+
.m-cgg-icon--tabela:before {
|
|
201
|
+
content: "\e9fb";
|
|
202
|
+
}
|
|
203
|
+
.m-cgg-icon--user:before {
|
|
204
|
+
content: "\e9fc";
|
|
205
|
+
}
|
|
206
|
+
.m-cgg-icon--twitter:before {
|
|
207
|
+
content: "\e009";
|
|
208
|
+
color: #076b9c;
|
|
209
|
+
}
|
|
210
|
+
.m-cgg-icon--fb:before {
|
|
211
|
+
content: "\e962";
|
|
212
|
+
color: #076b9c;
|
|
213
|
+
}
|
|
214
|
+
.m-cgg-icon--linkedin:before {
|
|
215
|
+
content: "\e99b";
|
|
216
|
+
color: #076b9c;
|
|
217
|
+
}
|
|
218
|
+
.m-cgg-icon--instagram:before {
|
|
219
|
+
content: "\e9a3";
|
|
220
|
+
color: #076b9c;
|
|
221
|
+
}
|
|
222
|
+
.m-cgg-icon--copy:before {
|
|
223
|
+
content: "\ea2d";
|
|
224
|
+
}
|
|
225
|
+
.m-cgg-icon--whatsapp:before {
|
|
226
|
+
content: "\ea28";
|
|
227
|
+
}
|
|
228
|
+
.m-cgg-icon--dashboard:before {
|
|
229
|
+
content: "\ea23";
|
|
230
|
+
}
|
|
231
|
+
.m-cgg-icon--item-list:before {
|
|
232
|
+
content: "\ea25";
|
|
233
|
+
}
|
|
234
|
+
.m-cgg-icon--upload-cloud:before {
|
|
235
|
+
content: "\ea26";
|
|
236
|
+
}
|
|
237
|
+
.m-cgg-icon--rounded-arrow:before {
|
|
238
|
+
content: "\ea17";
|
|
239
|
+
}
|
|
240
|
+
.m-cgg-icon--cross-cja:before {
|
|
241
|
+
content: "\e9f3";
|
|
242
|
+
}
|
|
243
|
+
.m-cgg-icon--check-cja:before {
|
|
244
|
+
content: "\e9f2";
|
|
245
|
+
}
|
|
246
|
+
.m-cgg-icon--trash:before {
|
|
247
|
+
content: "\e9f4";
|
|
248
|
+
}
|
|
249
|
+
.m-cgg-icon--upload:before {
|
|
250
|
+
content: "\e9f1";
|
|
251
|
+
}
|
|
252
|
+
.m-cgg-icon--total:before {
|
|
253
|
+
content: "\e9f0";
|
|
254
|
+
}
|
|
255
|
+
.m-cgg-icon--gas:before {
|
|
256
|
+
content: "\e9ea";
|
|
257
|
+
}
|
|
258
|
+
.m-cgg-icon--tarifasimples:before {
|
|
259
|
+
content: "\e9eb";
|
|
260
|
+
}
|
|
261
|
+
.m-cgg-icon--electricity:before {
|
|
262
|
+
content: "\e9ec";
|
|
263
|
+
}
|
|
264
|
+
.m-cgg-icon--greenenergy:before {
|
|
265
|
+
content: "\e9ed";
|
|
266
|
+
}
|
|
267
|
+
.m-cgg-icon--bi-horaria:before {
|
|
268
|
+
content: "\e9ee";
|
|
269
|
+
}
|
|
270
|
+
.m-cgg-icon--onlinebanking:before {
|
|
271
|
+
content: "\e901";
|
|
272
|
+
}
|
|
273
|
+
.m-cgg-icon--otc:before {
|
|
274
|
+
content: "\e902";
|
|
275
|
+
}
|
|
276
|
+
.m-cgg-icon--paymentcentre:before {
|
|
277
|
+
content: "\e903";
|
|
278
|
+
}
|
|
279
|
+
.m-cgg-icon--paypal:before {
|
|
280
|
+
content: "\e904";
|
|
281
|
+
}
|
|
282
|
+
.m-cgg-icon--cheque:before {
|
|
283
|
+
content: "\e905";
|
|
284
|
+
}
|
|
285
|
+
.m-cgg-icon--creditcard:before {
|
|
286
|
+
content: "\e906";
|
|
287
|
+
}
|
|
288
|
+
.m-cgg-icon--notification:before {
|
|
289
|
+
content: "\e907";
|
|
290
|
+
}
|
|
291
|
+
.m-cgg-icon--cat-right:before {
|
|
292
|
+
content: "\e002";
|
|
293
|
+
}
|
|
294
|
+
.m-cgg-icon--arrow-back:before {
|
|
295
|
+
content: "\e003";
|
|
296
|
+
}
|
|
297
|
+
.m-cgg-icon--load:before {
|
|
298
|
+
content: "\e004";
|
|
299
|
+
}
|
|
300
|
+
.m-cgg-icon--arrow-top:before {
|
|
301
|
+
content: "\e005";
|
|
302
|
+
}
|
|
303
|
+
.m-cgg-icon--arrow-bottom:before {
|
|
304
|
+
content: "\e006";
|
|
305
|
+
}
|
|
306
|
+
.m-cgg-icon--open-quote:before {
|
|
307
|
+
content: "\e007";
|
|
308
|
+
}
|
|
309
|
+
.m-cgg-icon--arrow-next:before {
|
|
310
|
+
content: "\e008";
|
|
311
|
+
}
|
|
312
|
+
.m-cgg-icon--uniE00A:before {
|
|
313
|
+
content: "\e00a";
|
|
314
|
+
}
|
|
315
|
+
.m-cgg-icon--clock:before {
|
|
316
|
+
content: "\e00b";
|
|
317
|
+
}
|
|
318
|
+
.m-cgg-icon--check2:before {
|
|
319
|
+
content: "\e015";
|
|
320
|
+
}
|
|
321
|
+
.m-cgg-icon--cross2:before {
|
|
322
|
+
content: "\e016";
|
|
323
|
+
}
|
|
324
|
+
.m-cgg-icon--no:before {
|
|
325
|
+
content: "\e017";
|
|
326
|
+
}
|
|
327
|
+
.m-cgg-icon--tlist:before {
|
|
328
|
+
content: "\e020";
|
|
329
|
+
}
|
|
330
|
+
.m-cgg-icon--ci-car2:before {
|
|
331
|
+
content: "\e021";
|
|
332
|
+
}
|
|
333
|
+
.m-cgg-icon--ci-user:before {
|
|
334
|
+
content: "\e022";
|
|
335
|
+
}
|
|
336
|
+
.m-cgg-icon--ci-details:before {
|
|
337
|
+
content: "\e023";
|
|
338
|
+
}
|
|
339
|
+
.m-cgg-icon--tlist-small:before {
|
|
340
|
+
content: "\e024";
|
|
341
|
+
}
|
|
342
|
+
.m-cgg-icon--tlist-small-vertical:before {
|
|
343
|
+
content: "\e025";
|
|
344
|
+
}
|
|
345
|
+
.m-cgg-icon--tlist-grid:before {
|
|
346
|
+
content: "\e026";
|
|
347
|
+
}
|
|
348
|
+
.m-cgg-icon--paper-plane:before {
|
|
349
|
+
content: "\e027";
|
|
350
|
+
}
|
|
351
|
+
.m-cgg-icon--popular:before {
|
|
352
|
+
content: "\e028";
|
|
353
|
+
}
|
|
354
|
+
.m-cgg-icon--exclusive:before {
|
|
355
|
+
content: "\e029";
|
|
356
|
+
}
|
|
357
|
+
.m-cgg-icon--price-tag:before {
|
|
358
|
+
content: "\e02a";
|
|
359
|
+
}
|
|
360
|
+
.m-cgg-icon--return:before {
|
|
361
|
+
content: "\e030";
|
|
362
|
+
}
|
|
363
|
+
.m-cgg-icon--libris-usp1:before {
|
|
364
|
+
content: "\e100";
|
|
365
|
+
}
|
|
366
|
+
.m-cgg-icon--libris-usp2:before {
|
|
367
|
+
content: "\e101";
|
|
368
|
+
}
|
|
369
|
+
.m-cgg-icon--libris-usp3:before {
|
|
370
|
+
content: "\e102";
|
|
371
|
+
}
|
|
372
|
+
.m-cgg-icon--libris-details:before {
|
|
373
|
+
content: "\e103";
|
|
374
|
+
}
|
|
375
|
+
.m-cgg-icon--libris-search:before {
|
|
376
|
+
content: "\e104";
|
|
377
|
+
}
|
|
378
|
+
.m-cgg-icon--libris-bestoption:before {
|
|
379
|
+
content: "\e105";
|
|
380
|
+
}
|
|
381
|
+
.m-cgg-icon--ci-car:before {
|
|
382
|
+
content: "\e106";
|
|
383
|
+
}
|
|
384
|
+
.m-cgg-icon--ci-driver:before {
|
|
385
|
+
content: "\e107";
|
|
386
|
+
}
|
|
387
|
+
.m-cgg-icon--ci-compare:before {
|
|
388
|
+
content: "\e108";
|
|
389
|
+
}
|
|
390
|
+
.m-cgg-icon--faq:before {
|
|
391
|
+
content: "\e109";
|
|
392
|
+
}
|
|
393
|
+
.m-cgg-icon--tips:before {
|
|
394
|
+
content: "\e110";
|
|
395
|
+
}
|
|
396
|
+
.m-cgg-icon--need-help:before {
|
|
397
|
+
content: "\e111";
|
|
398
|
+
}
|
|
399
|
+
.m-cgg-icon--tipseur:before {
|
|
400
|
+
content: "\e112";
|
|
401
|
+
}
|
|
402
|
+
.m-cgg-icon--guide-ci:before {
|
|
403
|
+
content: "\e200";
|
|
404
|
+
}
|
|
405
|
+
.m-cgg-icon--guide-cc:before {
|
|
406
|
+
content: "\e201";
|
|
407
|
+
}
|
|
408
|
+
.m-cgg-icon--guide-mobile:before {
|
|
409
|
+
content: "\e202";
|
|
410
|
+
}
|
|
411
|
+
.m-cgg-icon--guide-pl:before {
|
|
412
|
+
content: "\e203";
|
|
413
|
+
}
|
|
414
|
+
.m-cgg-icon--guide-ti:before {
|
|
415
|
+
content: "\e204";
|
|
416
|
+
}
|
|
417
|
+
.m-cgg-icon--guide-mi:before {
|
|
418
|
+
content: "\e205";
|
|
419
|
+
}
|
|
420
|
+
.m-cgg-icon--guide-broadband:before {
|
|
421
|
+
content: "\e206";
|
|
422
|
+
}
|
|
423
|
+
.m-cgg-icon--guide-mortgage:before {
|
|
424
|
+
content: "\e207";
|
|
425
|
+
}
|
|
426
|
+
.m-cgg-icon--list:before {
|
|
427
|
+
content: "\e600";
|
|
428
|
+
}
|
|
429
|
+
.m-cgg-icon--arrow-up:before {
|
|
430
|
+
content: "\e601";
|
|
431
|
+
}
|
|
432
|
+
.m-cgg-icon--arrow-left:before {
|
|
433
|
+
content: "\e602";
|
|
434
|
+
}
|
|
435
|
+
.m-cgg-icon--arrow-down:before {
|
|
436
|
+
content: "\e603";
|
|
437
|
+
}
|
|
438
|
+
.m-cgg-icon--arrow-right:before {
|
|
439
|
+
content: "\e604";
|
|
440
|
+
}
|
|
441
|
+
.m-cgg-icon--home:before {
|
|
442
|
+
content: "\e605";
|
|
443
|
+
}
|
|
444
|
+
.m-cgg-icon--cross:before {
|
|
445
|
+
content: "\e606";
|
|
446
|
+
}
|
|
447
|
+
.m-cgg-icon--signal:before {
|
|
448
|
+
content: "\e607";
|
|
449
|
+
}
|
|
450
|
+
.m-cgg-icon--gift:before {
|
|
451
|
+
content: "\e608";
|
|
452
|
+
}
|
|
453
|
+
.m-cgg-icon--hand:before {
|
|
454
|
+
content: "\e609";
|
|
455
|
+
}
|
|
456
|
+
.m-cgg-icon--phone:before {
|
|
457
|
+
content: "\e60a";
|
|
458
|
+
}
|
|
459
|
+
.m-cgg-icon--caret-right:before {
|
|
460
|
+
content: "\e60b";
|
|
461
|
+
}
|
|
462
|
+
.m-cgg-icon--caret-left:before {
|
|
463
|
+
content: "\e60c";
|
|
464
|
+
}
|
|
465
|
+
.m-cgg-icon--caret-up:before {
|
|
466
|
+
content: "\e60d";
|
|
467
|
+
}
|
|
468
|
+
.m-cgg-icon--caret-down:before {
|
|
469
|
+
content: "\e60e";
|
|
470
|
+
}
|
|
471
|
+
.m-cgg-icon--help:before {
|
|
472
|
+
content: "\e60f";
|
|
473
|
+
}
|
|
474
|
+
.m-cgg-icon--phone-invert:before {
|
|
475
|
+
content: "\e610";
|
|
476
|
+
}
|
|
477
|
+
.m-cgg-icon--star:before {
|
|
478
|
+
content: "\e611";
|
|
479
|
+
}
|
|
480
|
+
.m-cgg-icon--check:before {
|
|
481
|
+
content: "\e612";
|
|
482
|
+
}
|
|
483
|
+
.m-cgg-icon--plus:before {
|
|
484
|
+
content: "\e613";
|
|
485
|
+
}
|
|
486
|
+
.m-cgg-icon--airmiles-o:before {
|
|
487
|
+
content: "\e614";
|
|
488
|
+
}
|
|
489
|
+
.m-cgg-icon--best-deal-1-o:before {
|
|
490
|
+
content: "\e615";
|
|
491
|
+
}
|
|
492
|
+
.m-cgg-icon--cashback-o:before {
|
|
493
|
+
content: "\e616";
|
|
494
|
+
}
|
|
495
|
+
.m-cgg-icon--bar-contactless-payment-o:before {
|
|
496
|
+
content: "\e617";
|
|
497
|
+
}
|
|
498
|
+
.m-cgg-icon--bar-Creditline:before {
|
|
499
|
+
content: "\e618";
|
|
500
|
+
}
|
|
501
|
+
.m-cgg-icon--all-o:before {
|
|
502
|
+
content: "\e619";
|
|
503
|
+
}
|
|
504
|
+
.m-cgg-icon--usp-1-id:before {
|
|
505
|
+
content: "\e61a";
|
|
506
|
+
}
|
|
507
|
+
.m-cgg-icon--bar-deposit-o:before {
|
|
508
|
+
content: "\e61b";
|
|
509
|
+
}
|
|
510
|
+
.m-cgg-icon--dining-o:before {
|
|
511
|
+
content: "\e61c";
|
|
512
|
+
}
|
|
513
|
+
.m-cgg-icon--online-shopping-o:before {
|
|
514
|
+
content: "\e61d";
|
|
515
|
+
}
|
|
516
|
+
.m-cgg-icon--bar-Instalment:before {
|
|
517
|
+
content: "\e61e";
|
|
518
|
+
}
|
|
519
|
+
.m-cgg-icon--bar-Tax:before {
|
|
520
|
+
content: "\e61f";
|
|
521
|
+
}
|
|
522
|
+
.m-cgg-icon--calendar-empty:before {
|
|
523
|
+
content: "\e620";
|
|
524
|
+
}
|
|
525
|
+
.m-cgg-icon--calendar-full:before {
|
|
526
|
+
content: "\e621";
|
|
527
|
+
}
|
|
528
|
+
.m-cgg-icon--couple:before {
|
|
529
|
+
content: "\e622";
|
|
530
|
+
}
|
|
531
|
+
.m-cgg-icon--dental-2:before {
|
|
532
|
+
content: "\e623";
|
|
533
|
+
}
|
|
534
|
+
.m-cgg-icon--premium-1-o:before {
|
|
535
|
+
content: "\e624";
|
|
536
|
+
}
|
|
537
|
+
.m-cgg-icon--existing-history:before {
|
|
538
|
+
content: "\e625";
|
|
539
|
+
}
|
|
540
|
+
.m-cgg-icon--eye:before {
|
|
541
|
+
content: "\e626";
|
|
542
|
+
}
|
|
543
|
+
.m-cgg-icon--single-flight:before {
|
|
544
|
+
content: "\e627";
|
|
545
|
+
}
|
|
546
|
+
.m-cgg-icon--group:before {
|
|
547
|
+
content: "\e628";
|
|
548
|
+
}
|
|
549
|
+
.m-cgg-icon--inpatient:before {
|
|
550
|
+
content: "\e629";
|
|
551
|
+
}
|
|
552
|
+
.m-cgg-icon--just-me:before {
|
|
553
|
+
content: "\e62a";
|
|
554
|
+
}
|
|
555
|
+
.m-cgg-icon--maternity-o2:before {
|
|
556
|
+
content: "\e62b";
|
|
557
|
+
}
|
|
558
|
+
.m-cgg-icon--me-and-kids:before {
|
|
559
|
+
content: "\e62c";
|
|
560
|
+
}
|
|
561
|
+
.m-cgg-icon--my-family:before {
|
|
562
|
+
content: "\e62e";
|
|
563
|
+
}
|
|
564
|
+
.m-cgg-icon--outpatient2:before {
|
|
565
|
+
content: "\e62f";
|
|
566
|
+
}
|
|
567
|
+
.m-cgg-icon--private-room:before {
|
|
568
|
+
content: "\e630";
|
|
569
|
+
}
|
|
570
|
+
.m-cgg-icon--sport2:before {
|
|
571
|
+
content: "\e631";
|
|
572
|
+
}
|
|
573
|
+
.m-cgg-icon--doctor:before {
|
|
574
|
+
content: "\e632";
|
|
575
|
+
}
|
|
576
|
+
.m-cgg-icon--cag-gift:before {
|
|
577
|
+
content: "\e633";
|
|
578
|
+
}
|
|
579
|
+
.m-cgg-icon--fee-waiver:before {
|
|
580
|
+
content: "\e634";
|
|
581
|
+
}
|
|
582
|
+
.m-cgg-icon--contactless-payment:before {
|
|
583
|
+
content: "\e635";
|
|
584
|
+
}
|
|
585
|
+
.m-cgg-icon--lock:before {
|
|
586
|
+
content: "\e636";
|
|
587
|
+
}
|
|
588
|
+
.m-cgg-icon--early-payment-fee-waiver:before {
|
|
589
|
+
content: "\e637";
|
|
590
|
+
}
|
|
591
|
+
.m-cgg-icon--boxes-contacless:before {
|
|
592
|
+
content: "\e638";
|
|
593
|
+
}
|
|
594
|
+
.m-cgg-icon--boxes-download:before {
|
|
595
|
+
content: "\e639";
|
|
596
|
+
}
|
|
597
|
+
.m-cgg-icon--close2:before {
|
|
598
|
+
content: "\e63a";
|
|
599
|
+
}
|
|
600
|
+
.m-cgg-icon--boxes-fee-waiver:before {
|
|
601
|
+
content: "\e63b";
|
|
602
|
+
}
|
|
603
|
+
.m-cgg-icon--boxes-gift:before {
|
|
604
|
+
content: "\e63c";
|
|
605
|
+
}
|
|
606
|
+
.m-cgg-icon--boxes-mortgage:before {
|
|
607
|
+
content: "\e63d";
|
|
608
|
+
}
|
|
609
|
+
.m-cgg-icon--boxes-tick:before {
|
|
610
|
+
content: "\e63e";
|
|
611
|
+
}
|
|
612
|
+
.m-cgg-icon--chevron-right:before {
|
|
613
|
+
content: "\e63f";
|
|
614
|
+
}
|
|
615
|
+
.m-cgg-icon--airmile-local-o:before {
|
|
616
|
+
content: "\e640";
|
|
617
|
+
}
|
|
618
|
+
.m-cgg-icon--usp-1-pt:before {
|
|
619
|
+
content: "\e641";
|
|
620
|
+
}
|
|
621
|
+
.m-cgg-icon--clock2:before {
|
|
622
|
+
content: "\e642";
|
|
623
|
+
}
|
|
624
|
+
.m-cgg-icon--amateur-sports:before {
|
|
625
|
+
content: "\e643";
|
|
626
|
+
}
|
|
627
|
+
.m-cgg-icon--nav-home:before {
|
|
628
|
+
content: "\e644";
|
|
629
|
+
}
|
|
630
|
+
.m-cgg-icon--chevron-down:before {
|
|
631
|
+
content: "\e645";
|
|
632
|
+
}
|
|
633
|
+
.m-cgg-icon--chevron-left:before {
|
|
634
|
+
content: "\e646";
|
|
635
|
+
}
|
|
636
|
+
.m-cgg-icon--chevron-up:before {
|
|
637
|
+
content: "\e647";
|
|
638
|
+
}
|
|
639
|
+
.m-cgg-icon--credit-cards:before {
|
|
640
|
+
content: "\e648";
|
|
641
|
+
}
|
|
642
|
+
.m-cgg-icon--health-insurance:before {
|
|
643
|
+
content: "\e649";
|
|
644
|
+
}
|
|
645
|
+
.m-cgg-icon--home-loans:before {
|
|
646
|
+
content: "\e64a";
|
|
647
|
+
}
|
|
648
|
+
.m-cgg-icon--personal-loans:before {
|
|
649
|
+
content: "\e64b";
|
|
650
|
+
}
|
|
651
|
+
.m-cgg-icon--timer:before {
|
|
652
|
+
content: "\e64c";
|
|
653
|
+
}
|
|
654
|
+
.m-cgg-icon--travel-insurance:before {
|
|
655
|
+
content: "\e64d";
|
|
656
|
+
}
|
|
657
|
+
.m-cgg-icon--dental-1:before {
|
|
658
|
+
content: "\e64e";
|
|
659
|
+
}
|
|
660
|
+
.m-cgg-icon--maternity:before {
|
|
661
|
+
content: "\e64f";
|
|
662
|
+
}
|
|
663
|
+
.m-cgg-icon--outpatient:before {
|
|
664
|
+
content: "\e650";
|
|
665
|
+
}
|
|
666
|
+
.m-cgg-icon--surgical:before {
|
|
667
|
+
content: "\e651";
|
|
668
|
+
}
|
|
669
|
+
.m-cgg-icon--high-risk-sports:before {
|
|
670
|
+
content: "\e652";
|
|
671
|
+
}
|
|
672
|
+
.m-cgg-icon--winter-sports:before {
|
|
673
|
+
content: "\e653";
|
|
674
|
+
}
|
|
675
|
+
.m-cgg-icon--bb-plus-tv:before {
|
|
676
|
+
content: "\e654";
|
|
677
|
+
}
|
|
678
|
+
.m-cgg-icon--car-insurance:before {
|
|
679
|
+
content: "\e655";
|
|
680
|
+
}
|
|
681
|
+
.m-cgg-icon--mobile:before {
|
|
682
|
+
content: "\e656";
|
|
683
|
+
}
|
|
684
|
+
.m-cgg-icon--unemployment-benefits:before {
|
|
685
|
+
content: "\e657";
|
|
686
|
+
}
|
|
687
|
+
.m-cgg-icon--china-star:before {
|
|
688
|
+
content: "\e658";
|
|
689
|
+
}
|
|
690
|
+
.m-cgg-icon--bar-FastCashLoan:before {
|
|
691
|
+
content: "\e659";
|
|
692
|
+
}
|
|
693
|
+
.m-cgg-icon--critical-illness:before {
|
|
694
|
+
content: "\e65a";
|
|
695
|
+
}
|
|
696
|
+
.m-cgg-icon--supplemental-major:before {
|
|
697
|
+
content: "\e65b";
|
|
698
|
+
}
|
|
699
|
+
.m-cgg-icon--boxes-early-payment:before {
|
|
700
|
+
content: "\e65c";
|
|
701
|
+
}
|
|
702
|
+
.m-cgg-icon--fast-approval:before {
|
|
703
|
+
content: "\e65d";
|
|
704
|
+
}
|
|
705
|
+
.m-cgg-icon--cc-low-application-o:before {
|
|
706
|
+
content: "\e65e";
|
|
707
|
+
}
|
|
708
|
+
.m-cgg-icon--car-insurance2:before {
|
|
709
|
+
content: "\e65f";
|
|
710
|
+
}
|
|
711
|
+
.m-cgg-icon--usp-1-dk:before {
|
|
712
|
+
content: "\e660";
|
|
713
|
+
}
|
|
714
|
+
.m-cgg-icon--usp-1-en:before {
|
|
715
|
+
content: "\e661";
|
|
716
|
+
}
|
|
717
|
+
.m-cgg-icon--usp-2:before {
|
|
718
|
+
content: "\e662";
|
|
719
|
+
}
|
|
720
|
+
.m-cgg-icon--usp-3:before {
|
|
721
|
+
content: "\e663";
|
|
722
|
+
}
|
|
723
|
+
.m-cgg-icon--currency-cny-o:before {
|
|
724
|
+
content: "\e664";
|
|
725
|
+
}
|
|
726
|
+
.m-cgg-icon--easy-card-o:before {
|
|
727
|
+
content: "\e665";
|
|
728
|
+
}
|
|
729
|
+
.m-cgg-icon--gasoline-o:before {
|
|
730
|
+
content: "\e666";
|
|
731
|
+
}
|
|
732
|
+
.m-cgg-icon--movie-o:before {
|
|
733
|
+
content: "\e667";
|
|
734
|
+
}
|
|
735
|
+
.m-cgg-icon--other-currencies-o:before {
|
|
736
|
+
content: "\e668";
|
|
737
|
+
}
|
|
738
|
+
.m-cgg-icon--currency-twd-o:before {
|
|
739
|
+
content: "\e669";
|
|
740
|
+
}
|
|
741
|
+
.m-cgg-icon--currency-usd-o:before {
|
|
742
|
+
content: "\e66a";
|
|
743
|
+
}
|
|
744
|
+
.m-cgg-icon--easy-card:before {
|
|
745
|
+
content: "\e66b";
|
|
746
|
+
}
|
|
747
|
+
.m-cgg-icon--broadband:before {
|
|
748
|
+
content: "\e66c";
|
|
749
|
+
}
|
|
750
|
+
.m-cgg-icon--close:before {
|
|
751
|
+
content: "\e66d";
|
|
752
|
+
}
|
|
753
|
+
.m-cgg-icon--i-tooltip:before {
|
|
754
|
+
content: "\e66e";
|
|
755
|
+
}
|
|
756
|
+
.m-cgg-icon--search-o:before {
|
|
757
|
+
content: "\e66f";
|
|
758
|
+
}
|
|
759
|
+
.m-cgg-icon--dollar-o:before {
|
|
760
|
+
content: "\e670";
|
|
761
|
+
}
|
|
762
|
+
.m-cgg-icon--star-o:before {
|
|
763
|
+
content: "\e671";
|
|
764
|
+
}
|
|
765
|
+
.m-cgg-icon--warning:before {
|
|
766
|
+
content: "\e672";
|
|
767
|
+
}
|
|
768
|
+
.m-cgg-icon--cookie-icon-simple:before {
|
|
769
|
+
content: "\e673";
|
|
770
|
+
}
|
|
771
|
+
.m-cgg-icon--time-deposit:before {
|
|
772
|
+
content: "\e674";
|
|
773
|
+
}
|
|
774
|
+
.m-cgg-icon--cookie-icon:before {
|
|
775
|
+
content: "\e675";
|
|
776
|
+
}
|
|
777
|
+
.m-cgg-icon--best-deal-2-o:before {
|
|
778
|
+
content: "\e676";
|
|
779
|
+
}
|
|
780
|
+
.m-cgg-icon--premium-2-o:before {
|
|
781
|
+
content: "\e677";
|
|
782
|
+
}
|
|
783
|
+
.m-cgg-icon--specialty-o:before {
|
|
784
|
+
content: "\e678";
|
|
785
|
+
}
|
|
786
|
+
.m-cgg-icon--car-loan:before {
|
|
787
|
+
content: "\e679";
|
|
788
|
+
}
|
|
789
|
+
.m-cgg-icon--fast-cash-loan:before {
|
|
790
|
+
content: "\e67a";
|
|
791
|
+
}
|
|
792
|
+
.m-cgg-icon--star-o2:before {
|
|
793
|
+
content: "\e67b";
|
|
794
|
+
}
|
|
795
|
+
.m-cgg-icon--search-o2:before {
|
|
796
|
+
content: "\e67c";
|
|
797
|
+
}
|
|
798
|
+
.m-cgg-icon--scales-o:before {
|
|
799
|
+
content: "\e67d";
|
|
800
|
+
}
|
|
801
|
+
.m-cgg-icon--dollar-o2:before {
|
|
802
|
+
content: "\e67e";
|
|
803
|
+
}
|
|
804
|
+
.m-cgg-icon--edit:before {
|
|
805
|
+
content: "\e67f";
|
|
806
|
+
}
|
|
807
|
+
.m-cgg-icon--heart:before {
|
|
808
|
+
content: "\e680";
|
|
809
|
+
}
|
|
810
|
+
.m-cgg-icon--usp-1-fi:before {
|
|
811
|
+
content: "\e681";
|
|
812
|
+
}
|
|
813
|
+
.m-cgg-icon--bank:before {
|
|
814
|
+
content: "\e682";
|
|
815
|
+
}
|
|
816
|
+
.m-cgg-icon--coinseur:before {
|
|
817
|
+
content: "\e683";
|
|
818
|
+
}
|
|
819
|
+
.m-cgg-icon--coins:before {
|
|
820
|
+
content: "\e684";
|
|
821
|
+
}
|
|
822
|
+
.m-cgg-icon--cta-arrow:before {
|
|
823
|
+
content: "\e685";
|
|
824
|
+
}
|
|
825
|
+
.m-cgg-icon--cta-arrow-down:before {
|
|
826
|
+
content: "\e686";
|
|
827
|
+
}
|
|
828
|
+
.m-cgg-icon--islamic:before {
|
|
829
|
+
content: "\e687";
|
|
830
|
+
}
|
|
831
|
+
.m-cgg-icon--glc:before {
|
|
832
|
+
content: "\e688";
|
|
833
|
+
}
|
|
834
|
+
.m-cgg-icon--BB_Business:before {
|
|
835
|
+
content: "\e689";
|
|
836
|
+
}
|
|
837
|
+
.m-cgg-icon--BB_Home:before {
|
|
838
|
+
content: "\e68a";
|
|
839
|
+
}
|
|
840
|
+
.m-cgg-icon--BB_HomeTV:before {
|
|
841
|
+
content: "\e68b";
|
|
842
|
+
}
|
|
843
|
+
.m-cgg-icon--BB_Mobile:before {
|
|
844
|
+
content: "\e68c";
|
|
845
|
+
}
|
|
846
|
+
.m-cgg-icon--dollareur-o:before {
|
|
847
|
+
content: "\e68d";
|
|
848
|
+
}
|
|
849
|
+
.m-cgg-icon--flight:before {
|
|
850
|
+
content: "\e68e";
|
|
851
|
+
}
|
|
852
|
+
.m-cgg-icon--multiple-flight:before {
|
|
853
|
+
content: "\e68f";
|
|
854
|
+
}
|
|
855
|
+
.m-cgg-icon--credit-cards-md:before {
|
|
856
|
+
content: "\e690";
|
|
857
|
+
}
|
|
858
|
+
.m-cgg-icon--Zeroannuity:before {
|
|
859
|
+
content: "\e800";
|
|
860
|
+
}
|
|
861
|
+
.m-cgg-icon--Balancetransfer:before {
|
|
862
|
+
content: "\e801";
|
|
863
|
+
}
|
|
864
|
+
.m-cgg-icon--bar-glc:before {
|
|
865
|
+
content: "\e802";
|
|
866
|
+
}
|
|
867
|
+
.m-cgg-icon--bar-islamic:before {
|
|
868
|
+
content: "\e803";
|
|
869
|
+
}
|
|
870
|
+
.m-cgg-icon--bar-Debt:before {
|
|
871
|
+
content: "\e804";
|
|
872
|
+
}
|
|
873
|
+
.m-cgg-icon--bar-lendingCompanies:before {
|
|
874
|
+
content: "\e805";
|
|
875
|
+
}
|
|
876
|
+
.m-cgg-icon--icon-funnel-pt-Residente-Perm:before {
|
|
877
|
+
content: "\e908";
|
|
878
|
+
}
|
|
879
|
+
.m-cgg-icon--discount:before {
|
|
880
|
+
content: "\e909";
|
|
881
|
+
}
|
|
882
|
+
.m-cgg-icon--Student-1:before {
|
|
883
|
+
content: "\e90a";
|
|
884
|
+
}
|
|
885
|
+
.m-cgg-icon--officechair:before {
|
|
886
|
+
content: "\e90b";
|
|
887
|
+
}
|
|
888
|
+
.m-cgg-icon--optical-fiber:before {
|
|
889
|
+
content: "\e90c";
|
|
890
|
+
}
|
|
891
|
+
.m-cgg-icon--wifi:before {
|
|
892
|
+
content: "\e90d";
|
|
893
|
+
}
|
|
894
|
+
.m-cgg-icon--cafe:before {
|
|
895
|
+
content: "\e90e";
|
|
896
|
+
}
|
|
897
|
+
.m-cgg-icon--gym:before {
|
|
898
|
+
content: "\e90f";
|
|
899
|
+
}
|
|
900
|
+
.m-cgg-icon--hotel:before {
|
|
901
|
+
content: "\e910";
|
|
902
|
+
}
|
|
903
|
+
.m-cgg-icon--sport:before {
|
|
904
|
+
content: "\e911";
|
|
905
|
+
}
|
|
906
|
+
.m-cgg-icon--store:before {
|
|
907
|
+
content: "\e912";
|
|
908
|
+
}
|
|
909
|
+
.m-cgg-icon--supermarket:before {
|
|
910
|
+
content: "\e913";
|
|
911
|
+
}
|
|
912
|
+
.m-cgg-icon--requirement:before {
|
|
913
|
+
content: "\e914";
|
|
914
|
+
}
|
|
915
|
+
.m-cgg-icon--no-fee:before {
|
|
916
|
+
content: "\e915";
|
|
917
|
+
}
|
|
918
|
+
.m-cgg-icon--balance-transfer:before {
|
|
919
|
+
content: "\e916";
|
|
920
|
+
}
|
|
921
|
+
.m-cgg-icon--for-personal:before {
|
|
922
|
+
content: "\e917";
|
|
923
|
+
}
|
|
924
|
+
.m-cgg-icon--for-my-business:before {
|
|
925
|
+
content: "\e918";
|
|
926
|
+
}
|
|
927
|
+
.m-cgg-icon--for-new-business:before {
|
|
928
|
+
content: "\e919";
|
|
929
|
+
}
|
|
930
|
+
.m-cgg-icon--money:before {
|
|
931
|
+
content: "\e91a";
|
|
932
|
+
}
|
|
933
|
+
.m-cgg-icon--email:before {
|
|
934
|
+
content: "\e91b";
|
|
935
|
+
}
|
|
936
|
+
.m-cgg-icon--BBFunnel-FiveUsers:before {
|
|
937
|
+
content: "\e91c";
|
|
938
|
+
}
|
|
939
|
+
.m-cgg-icon--BBFunnel-Games:before {
|
|
940
|
+
content: "\e91d";
|
|
941
|
+
}
|
|
942
|
+
.m-cgg-icon--BBFunnel-HomeOut:before {
|
|
943
|
+
content: "\e91e";
|
|
944
|
+
}
|
|
945
|
+
.m-cgg-icon--BBFunnel-Home:before {
|
|
946
|
+
content: "\e91f";
|
|
947
|
+
}
|
|
948
|
+
.m-cgg-icon--BBFunnel-Hour1:before {
|
|
949
|
+
content: "\e920";
|
|
950
|
+
}
|
|
951
|
+
.m-cgg-icon--BBFunnel-Hour2:before {
|
|
952
|
+
content: "\e921";
|
|
953
|
+
}
|
|
954
|
+
.m-cgg-icon--BBFunnel-Hour3:before {
|
|
955
|
+
content: "\e922";
|
|
956
|
+
}
|
|
957
|
+
.m-cgg-icon--BBFunnel-Hour4:before {
|
|
958
|
+
content: "\e923";
|
|
959
|
+
}
|
|
960
|
+
.m-cgg-icon--Retired-1:before {
|
|
961
|
+
content: "\e924";
|
|
962
|
+
}
|
|
963
|
+
.m-cgg-icon--BBFunnel-No:before {
|
|
964
|
+
content: "\e925";
|
|
965
|
+
}
|
|
966
|
+
.m-cgg-icon--BBFunnel-NotSure:before {
|
|
967
|
+
content: "\e926";
|
|
968
|
+
}
|
|
969
|
+
.m-cgg-icon--BBFunne-OneUser:before {
|
|
970
|
+
content: "\e927";
|
|
971
|
+
}
|
|
972
|
+
.m-cgg-icon--BBFunnel-Out:before {
|
|
973
|
+
content: "\e928";
|
|
974
|
+
}
|
|
975
|
+
.m-cgg-icon--BBFunnel-ReadPaper:before {
|
|
976
|
+
content: "\e929";
|
|
977
|
+
}
|
|
978
|
+
.m-cgg-icon--BBFunnel-SixUsers:before {
|
|
979
|
+
content: "\e92a";
|
|
980
|
+
}
|
|
981
|
+
.m-cgg-icon--BBFunnel-ThreeUsers:before {
|
|
982
|
+
content: "\e92b";
|
|
983
|
+
}
|
|
984
|
+
.m-cgg-icon--BBFunnel-Work:before {
|
|
985
|
+
content: "\e92c";
|
|
986
|
+
}
|
|
987
|
+
.m-cgg-icon--BBFunnel-Yes:before {
|
|
988
|
+
content: "\e92d";
|
|
989
|
+
}
|
|
990
|
+
.m-cgg-icon--cta-arrow-left:before {
|
|
991
|
+
content: "\e92e";
|
|
992
|
+
}
|
|
993
|
+
.m-cgg-icon--wifi2:before {
|
|
994
|
+
content: "\e92f";
|
|
995
|
+
}
|
|
996
|
+
.m-cgg-icon--laptop:before {
|
|
997
|
+
content: "\e930";
|
|
998
|
+
}
|
|
999
|
+
.m-cgg-icon--infinity:before {
|
|
1000
|
+
content: "\e931";
|
|
1001
|
+
}
|
|
1002
|
+
.m-cgg-icon--wedding:before {
|
|
1003
|
+
content: "\e932";
|
|
1004
|
+
}
|
|
1005
|
+
.m-cgg-icon--car-car-loan:before {
|
|
1006
|
+
content: "\e933";
|
|
1007
|
+
}
|
|
1008
|
+
.m-cgg-icon--debt-consolidation:before {
|
|
1009
|
+
content: "\e934";
|
|
1010
|
+
}
|
|
1011
|
+
.m-cgg-icon--education:before {
|
|
1012
|
+
content: "\e935";
|
|
1013
|
+
}
|
|
1014
|
+
.m-cgg-icon--couple-with-children:before {
|
|
1015
|
+
content: "\e936";
|
|
1016
|
+
}
|
|
1017
|
+
.m-cgg-icon--couple-without-children:before {
|
|
1018
|
+
content: "\e937";
|
|
1019
|
+
}
|
|
1020
|
+
.m-cgg-icon--electronics:before {
|
|
1021
|
+
content: "\e938";
|
|
1022
|
+
}
|
|
1023
|
+
.m-cgg-icon--homeworks-and-renovation:before {
|
|
1024
|
+
content: "\e939";
|
|
1025
|
+
}
|
|
1026
|
+
.m-cgg-icon--refinancing:before {
|
|
1027
|
+
content: "\e93a";
|
|
1028
|
+
}
|
|
1029
|
+
.m-cgg-icon--relocation:before {
|
|
1030
|
+
content: "\e93b";
|
|
1031
|
+
}
|
|
1032
|
+
.m-cgg-icon--single-with-children:before {
|
|
1033
|
+
content: "\e93c";
|
|
1034
|
+
}
|
|
1035
|
+
.m-cgg-icon--single-without-children:before {
|
|
1036
|
+
content: "\e93d";
|
|
1037
|
+
}
|
|
1038
|
+
.m-cgg-icon--student:before {
|
|
1039
|
+
content: "\e93e";
|
|
1040
|
+
}
|
|
1041
|
+
.m-cgg-icon--holiday:before {
|
|
1042
|
+
content: "\e93f";
|
|
1043
|
+
}
|
|
1044
|
+
.m-cgg-icon--home-decoration:before {
|
|
1045
|
+
content: "\e940";
|
|
1046
|
+
}
|
|
1047
|
+
.m-cgg-icon--investment-purposes:before {
|
|
1048
|
+
content: "\e941";
|
|
1049
|
+
}
|
|
1050
|
+
.m-cgg-icon--medical-bills:before {
|
|
1051
|
+
content: "\e942";
|
|
1052
|
+
}
|
|
1053
|
+
.m-cgg-icon--mortgage-repayments:before {
|
|
1054
|
+
content: "\e943";
|
|
1055
|
+
}
|
|
1056
|
+
.m-cgg-icon--property-purchase:before {
|
|
1057
|
+
content: "\e944";
|
|
1058
|
+
}
|
|
1059
|
+
.m-cgg-icon--tax-payment:before {
|
|
1060
|
+
content: "\e945";
|
|
1061
|
+
}
|
|
1062
|
+
.m-cgg-icon--employed:before {
|
|
1063
|
+
content: "\e946";
|
|
1064
|
+
}
|
|
1065
|
+
.m-cgg-icon--HK-ID-holder:before {
|
|
1066
|
+
content: "\e947";
|
|
1067
|
+
}
|
|
1068
|
+
.m-cgg-icon--HK-PID-holder:before {
|
|
1069
|
+
content: "\e948";
|
|
1070
|
+
}
|
|
1071
|
+
.m-cgg-icon--Non-HK-resident:before {
|
|
1072
|
+
content: "\e949";
|
|
1073
|
+
}
|
|
1074
|
+
.m-cgg-icon--prefer-not-to-say:before {
|
|
1075
|
+
content: "\e94a";
|
|
1076
|
+
}
|
|
1077
|
+
.m-cgg-icon--self-employed:before {
|
|
1078
|
+
content: "\e94b";
|
|
1079
|
+
}
|
|
1080
|
+
.m-cgg-icon--unemployed:before {
|
|
1081
|
+
content: "\e94c";
|
|
1082
|
+
}
|
|
1083
|
+
.m-cgg-icon--something-else:before {
|
|
1084
|
+
content: "\e94d";
|
|
1085
|
+
}
|
|
1086
|
+
.m-cgg-icon--cashback:before {
|
|
1087
|
+
content: "\e94e";
|
|
1088
|
+
}
|
|
1089
|
+
.m-cgg-icon--dining:before {
|
|
1090
|
+
content: "\e94f";
|
|
1091
|
+
}
|
|
1092
|
+
.m-cgg-icon--lock-2:before {
|
|
1093
|
+
content: "\e950";
|
|
1094
|
+
}
|
|
1095
|
+
.m-cgg-icon--nine-dots:before {
|
|
1096
|
+
content: "\e951";
|
|
1097
|
+
}
|
|
1098
|
+
.m-cgg-icon--shopping-rewards:before {
|
|
1099
|
+
content: "\e952";
|
|
1100
|
+
}
|
|
1101
|
+
.m-cgg-icon--premium-privileges:before {
|
|
1102
|
+
content: "\e953";
|
|
1103
|
+
}
|
|
1104
|
+
.m-cgg-icon--travel-insurance2:before {
|
|
1105
|
+
content: "\e954";
|
|
1106
|
+
}
|
|
1107
|
+
.m-cgg-icon--three-stars:before {
|
|
1108
|
+
content: "\e955";
|
|
1109
|
+
}
|
|
1110
|
+
.m-cgg-icon--prepaid:before {
|
|
1111
|
+
content: "\e956";
|
|
1112
|
+
}
|
|
1113
|
+
.m-cgg-icon--cashback-2:before {
|
|
1114
|
+
content: "\e957";
|
|
1115
|
+
}
|
|
1116
|
+
.m-cgg-icon--air-miles:before {
|
|
1117
|
+
content: "\e958";
|
|
1118
|
+
}
|
|
1119
|
+
.m-cgg-icon--call-circle:before {
|
|
1120
|
+
content: "\e959";
|
|
1121
|
+
}
|
|
1122
|
+
.m-cgg-icon--chevron-down-2:before {
|
|
1123
|
+
content: "\e95a";
|
|
1124
|
+
}
|
|
1125
|
+
.m-cgg-icon--chevron-right-circle:before {
|
|
1126
|
+
content: "\e95b";
|
|
1127
|
+
}
|
|
1128
|
+
.m-cgg-icon--chevron-up-2:before {
|
|
1129
|
+
content: "\e95c";
|
|
1130
|
+
}
|
|
1131
|
+
.m-cgg-icon--fixed-contract:before {
|
|
1132
|
+
content: "\e95d";
|
|
1133
|
+
}
|
|
1134
|
+
.m-cgg-icon--indefinite-contract:before {
|
|
1135
|
+
content: "\e95e";
|
|
1136
|
+
}
|
|
1137
|
+
.m-cgg-icon--refine-01:before {
|
|
1138
|
+
content: "\e95f";
|
|
1139
|
+
}
|
|
1140
|
+
.m-cgg-icon--ciab-cross:before {
|
|
1141
|
+
content: "\e960";
|
|
1142
|
+
}
|
|
1143
|
+
.m-cgg-icon--ciab-minus:before {
|
|
1144
|
+
content: "\e961";
|
|
1145
|
+
}
|
|
1146
|
+
.m-cgg-icon--ciab-tick:before {
|
|
1147
|
+
content: "\e963";
|
|
1148
|
+
}
|
|
1149
|
+
.m-cgg-icon--commercial-vehicle:before {
|
|
1150
|
+
content: "\e964";
|
|
1151
|
+
}
|
|
1152
|
+
.m-cgg-icon--couple-with-children2:before {
|
|
1153
|
+
content: "\e965";
|
|
1154
|
+
}
|
|
1155
|
+
.m-cgg-icon--couple-without-children2:before {
|
|
1156
|
+
content: "\e966";
|
|
1157
|
+
}
|
|
1158
|
+
.m-cgg-icon--employed2:before {
|
|
1159
|
+
content: "\e967";
|
|
1160
|
+
}
|
|
1161
|
+
.m-cgg-icon--employee-fixed-contract:before {
|
|
1162
|
+
content: "\e968";
|
|
1163
|
+
}
|
|
1164
|
+
.m-cgg-icon--employee-indefinite-contract:before {
|
|
1165
|
+
content: "\e969";
|
|
1166
|
+
}
|
|
1167
|
+
.m-cgg-icon--expired-policy:before {
|
|
1168
|
+
content: "\e96a";
|
|
1169
|
+
}
|
|
1170
|
+
.m-cgg-icon--id-holder:before {
|
|
1171
|
+
content: "\e96b";
|
|
1172
|
+
}
|
|
1173
|
+
.m-cgg-icon--new-policy:before {
|
|
1174
|
+
content: "\e96c";
|
|
1175
|
+
}
|
|
1176
|
+
.m-cgg-icon--non-hk-resident:before {
|
|
1177
|
+
content: "\e96d";
|
|
1178
|
+
}
|
|
1179
|
+
.m-cgg-icon--personal-vehicle:before {
|
|
1180
|
+
content: "\e96e";
|
|
1181
|
+
}
|
|
1182
|
+
.m-cgg-icon--pid-holder:before {
|
|
1183
|
+
content: "\e96f";
|
|
1184
|
+
}
|
|
1185
|
+
.m-cgg-icon--prefer-not-to-say2:before {
|
|
1186
|
+
content: "\e970";
|
|
1187
|
+
}
|
|
1188
|
+
.m-cgg-icon--renewal-policy:before {
|
|
1189
|
+
content: "\e971";
|
|
1190
|
+
}
|
|
1191
|
+
.m-cgg-icon--single-without-children2:before {
|
|
1192
|
+
content: "\e972";
|
|
1193
|
+
}
|
|
1194
|
+
.m-cgg-icon--self-employed2:before {
|
|
1195
|
+
content: "\e973";
|
|
1196
|
+
}
|
|
1197
|
+
.m-cgg-icon--single-with-children2:before {
|
|
1198
|
+
content: "\e974";
|
|
1199
|
+
}
|
|
1200
|
+
.m-cgg-icon--student2:before {
|
|
1201
|
+
content: "\e975";
|
|
1202
|
+
}
|
|
1203
|
+
.m-cgg-icon--uber-or-grab:before {
|
|
1204
|
+
content: "\e976";
|
|
1205
|
+
}
|
|
1206
|
+
.m-cgg-icon--unemployed2:before {
|
|
1207
|
+
content: "\e977";
|
|
1208
|
+
}
|
|
1209
|
+
.m-cgg-icon--with-aon:before {
|
|
1210
|
+
content: "\e978";
|
|
1211
|
+
}
|
|
1212
|
+
.m-cgg-icon--without-aon:before {
|
|
1213
|
+
content: "\e979";
|
|
1214
|
+
}
|
|
1215
|
+
.m-cgg-icon--filter-panel:before {
|
|
1216
|
+
content: "\e97a";
|
|
1217
|
+
}
|
|
1218
|
+
.m-cgg-icon--giftbox:before {
|
|
1219
|
+
content: "\e97b";
|
|
1220
|
+
}
|
|
1221
|
+
.m-cgg-icon--trophy:before {
|
|
1222
|
+
content: "\e97c";
|
|
1223
|
+
}
|
|
1224
|
+
.m-cgg-icon--online-music:before {
|
|
1225
|
+
content: "\e97d";
|
|
1226
|
+
}
|
|
1227
|
+
.m-cgg-icon--online-video:before {
|
|
1228
|
+
content: "\e97e";
|
|
1229
|
+
}
|
|
1230
|
+
.m-cgg-icon--iphone4:before {
|
|
1231
|
+
content: "\e97f";
|
|
1232
|
+
}
|
|
1233
|
+
.m-cgg-icon--earth-phone:before {
|
|
1234
|
+
content: "\e980";
|
|
1235
|
+
}
|
|
1236
|
+
.m-cgg-icon--phone-wifi:before {
|
|
1237
|
+
content: "\e981";
|
|
1238
|
+
}
|
|
1239
|
+
.m-cgg-icon--BBFunnel-HourInfinite:before {
|
|
1240
|
+
content: "\e982";
|
|
1241
|
+
}
|
|
1242
|
+
.m-cgg-icon--newspaper:before {
|
|
1243
|
+
content: "\e983";
|
|
1244
|
+
}
|
|
1245
|
+
.m-cgg-icon--phone-message:before {
|
|
1246
|
+
content: "\e984";
|
|
1247
|
+
}
|
|
1248
|
+
.m-cgg-icon--full-arrow-down:before {
|
|
1249
|
+
content: "\e985";
|
|
1250
|
+
}
|
|
1251
|
+
.m-cgg-icon--full-arrow-left:before {
|
|
1252
|
+
content: "\e986";
|
|
1253
|
+
}
|
|
1254
|
+
.m-cgg-icon--full-arrow-right:before {
|
|
1255
|
+
content: "\e987";
|
|
1256
|
+
}
|
|
1257
|
+
.m-cgg-icon--full-arrow-up:before {
|
|
1258
|
+
content: "\e988";
|
|
1259
|
+
}
|
|
1260
|
+
.m-cgg-icon--chevron-bottom-circle:before {
|
|
1261
|
+
content: "\e989";
|
|
1262
|
+
}
|
|
1263
|
+
.m-cgg-icon--chevron-top-circle:before {
|
|
1264
|
+
content: "\e98a";
|
|
1265
|
+
}
|
|
1266
|
+
.m-cgg-icon--video-player:before {
|
|
1267
|
+
content: "\e98b";
|
|
1268
|
+
}
|
|
1269
|
+
.m-cgg-icon--music-note:before {
|
|
1270
|
+
content: "\e98c";
|
|
1271
|
+
}
|
|
1272
|
+
.m-cgg-icon--magazine-blocks:before {
|
|
1273
|
+
content: "\e98d";
|
|
1274
|
+
}
|
|
1275
|
+
.m-cgg-icon--hotspot-right:before {
|
|
1276
|
+
content: "\e98e";
|
|
1277
|
+
}
|
|
1278
|
+
.m-cgg-icon--angle-double-up:before {
|
|
1279
|
+
content: "\e98f";
|
|
1280
|
+
}
|
|
1281
|
+
.m-cgg-icon--angle-double-down:before {
|
|
1282
|
+
content: "\e990";
|
|
1283
|
+
}
|
|
1284
|
+
.m-cgg-icon--cl-details:before {
|
|
1285
|
+
content: "\e991";
|
|
1286
|
+
}
|
|
1287
|
+
.m-cgg-icon--cl-new:before {
|
|
1288
|
+
content: "\e992";
|
|
1289
|
+
}
|
|
1290
|
+
.m-cgg-icon--td_AUD:before {
|
|
1291
|
+
content: "\e993";
|
|
1292
|
+
}
|
|
1293
|
+
.m-cgg-icon--td_CNY:before {
|
|
1294
|
+
content: "\e994";
|
|
1295
|
+
}
|
|
1296
|
+
.m-cgg-icon--td_NZD:before {
|
|
1297
|
+
content: "\e995";
|
|
1298
|
+
}
|
|
1299
|
+
.m-cgg-icon--td_OTHER:before {
|
|
1300
|
+
content: "\e996";
|
|
1301
|
+
}
|
|
1302
|
+
.m-cgg-icon--cl-used:before {
|
|
1303
|
+
content: "\e997";
|
|
1304
|
+
}
|
|
1305
|
+
.m-cgg-icon--td_TWD:before {
|
|
1306
|
+
content: "\e998";
|
|
1307
|
+
}
|
|
1308
|
+
.m-cgg-icon--td_USD:before {
|
|
1309
|
+
content: "\e999";
|
|
1310
|
+
}
|
|
1311
|
+
.m-cgg-icon--td_ZAR:before {
|
|
1312
|
+
content: "\e99a";
|
|
1313
|
+
}
|
|
1314
|
+
.m-cgg-icon--gplus:before {
|
|
1315
|
+
content: "\e99c";
|
|
1316
|
+
}
|
|
1317
|
+
.m-cgg-icon--youtube:before {
|
|
1318
|
+
content: "\e99d";
|
|
1319
|
+
}
|
|
1320
|
+
.m-cgg-icon--location:before {
|
|
1321
|
+
content: "\e99e";
|
|
1322
|
+
}
|
|
1323
|
+
.m-cgg-icon--ownhouse:before {
|
|
1324
|
+
content: "\e99f";
|
|
1325
|
+
}
|
|
1326
|
+
.m-cgg-icon--rent-house:before {
|
|
1327
|
+
content: "\e9a0";
|
|
1328
|
+
}
|
|
1329
|
+
.m-cgg-icon--familhouse:before {
|
|
1330
|
+
content: "\e9a1";
|
|
1331
|
+
}
|
|
1332
|
+
.m-cgg-icon--BBFunnel-Movies:before {
|
|
1333
|
+
content: "\e9a2";
|
|
1334
|
+
}
|
|
1335
|
+
.m-cgg-icon--info:before {
|
|
1336
|
+
content: "\e9a4";
|
|
1337
|
+
}
|
|
1338
|
+
.m-cgg-icon--Islamic:before {
|
|
1339
|
+
content: "\e9a5";
|
|
1340
|
+
}
|
|
1341
|
+
.m-cgg-icon--BBFunnel-homeandphone:before {
|
|
1342
|
+
content: "\e9a6";
|
|
1343
|
+
}
|
|
1344
|
+
.m-cgg-icon--BBFunnel-TV:before {
|
|
1345
|
+
content: "\e9a7";
|
|
1346
|
+
}
|
|
1347
|
+
.m-cgg-icon--cell-phone:before {
|
|
1348
|
+
content: "\e9a8";
|
|
1349
|
+
}
|
|
1350
|
+
.m-cgg-icon--icon-cc-home-overall:before {
|
|
1351
|
+
content: "\e9a9";
|
|
1352
|
+
}
|
|
1353
|
+
.m-cgg-icon--icon-cc-home-all:before {
|
|
1354
|
+
content: "\e9aa";
|
|
1355
|
+
}
|
|
1356
|
+
.m-cgg-icon--icon-cc-home-cashback:before {
|
|
1357
|
+
content: "\e9ab";
|
|
1358
|
+
}
|
|
1359
|
+
.m-cgg-icon--icon-cc-home-dining:before {
|
|
1360
|
+
content: "\e9ac";
|
|
1361
|
+
}
|
|
1362
|
+
.m-cgg-icon--icon-cc-home-airmiles:before {
|
|
1363
|
+
content: "\e9ad";
|
|
1364
|
+
}
|
|
1365
|
+
.m-cgg-icon--icon-cc-home-shopping:before {
|
|
1366
|
+
content: "\e9ae";
|
|
1367
|
+
}
|
|
1368
|
+
.m-cgg-icon--icon-cc-home-premium:before {
|
|
1369
|
+
content: "\e9af";
|
|
1370
|
+
}
|
|
1371
|
+
.m-cgg-icon--icon-funnel-pt-Residente-Temp:before {
|
|
1372
|
+
content: "\e9b0";
|
|
1373
|
+
}
|
|
1374
|
+
.m-cgg-icon--icon-funnel-pt-portugues:before {
|
|
1375
|
+
content: "\e9b1";
|
|
1376
|
+
}
|
|
1377
|
+
.m-cgg-icon--icon-funnel-pt-Nao-Residente:before {
|
|
1378
|
+
content: "\e9b2";
|
|
1379
|
+
}
|
|
1380
|
+
.m-cgg-icon--Fuel-Rebate:before {
|
|
1381
|
+
content: "\e9b3";
|
|
1382
|
+
}
|
|
1383
|
+
.m-cgg-icon--Low-interest-rate:before {
|
|
1384
|
+
content: "\e9b4";
|
|
1385
|
+
}
|
|
1386
|
+
.m-cgg-icon--coverage_Integral:before {
|
|
1387
|
+
content: "\e9b5";
|
|
1388
|
+
}
|
|
1389
|
+
.m-cgg-icon--party:before {
|
|
1390
|
+
content: "\e9b6";
|
|
1391
|
+
}
|
|
1392
|
+
.m-cgg-icon--sweet15:before {
|
|
1393
|
+
content: "\e9b7";
|
|
1394
|
+
}
|
|
1395
|
+
.m-cgg-icon--ticket:before {
|
|
1396
|
+
content: "\e9b8";
|
|
1397
|
+
}
|
|
1398
|
+
.m-cgg-icon--Religious:before {
|
|
1399
|
+
content: "\e9b9";
|
|
1400
|
+
}
|
|
1401
|
+
.m-cgg-icon--coverage_amplia:before {
|
|
1402
|
+
content: "\e9ba";
|
|
1403
|
+
}
|
|
1404
|
+
.m-cgg-icon--coverage_limited:before {
|
|
1405
|
+
content: "\e9bb";
|
|
1406
|
+
}
|
|
1407
|
+
.m-cgg-icon--coverage_r-civil:before {
|
|
1408
|
+
content: "\e9bc";
|
|
1409
|
+
}
|
|
1410
|
+
.m-cgg-icon--boat:before {
|
|
1411
|
+
content: "\e9bd";
|
|
1412
|
+
}
|
|
1413
|
+
.m-cgg-icon--caravan:before {
|
|
1414
|
+
content: "\e9be";
|
|
1415
|
+
}
|
|
1416
|
+
.m-cgg-icon--tv-remote:before {
|
|
1417
|
+
content: "\e9bf";
|
|
1418
|
+
}
|
|
1419
|
+
.m-cgg-icon--Phone-Bundle:before {
|
|
1420
|
+
content: "\e9c0";
|
|
1421
|
+
}
|
|
1422
|
+
.m-cgg-icon--PackBundle:before {
|
|
1423
|
+
content: "\e9c1";
|
|
1424
|
+
}
|
|
1425
|
+
.m-cgg-icon--motorcycle:before {
|
|
1426
|
+
content: "\e9c2";
|
|
1427
|
+
}
|
|
1428
|
+
.m-cgg-icon--energy-saving:before {
|
|
1429
|
+
content: "\e9c3";
|
|
1430
|
+
}
|
|
1431
|
+
.m-cgg-icon--contract:before {
|
|
1432
|
+
content: "\e9c4";
|
|
1433
|
+
}
|
|
1434
|
+
.m-cgg-icon--bonus:before {
|
|
1435
|
+
content: "\e9c5";
|
|
1436
|
+
}
|
|
1437
|
+
.m-cgg-icon--autopay:before {
|
|
1438
|
+
content: "\e9c6";
|
|
1439
|
+
}
|
|
1440
|
+
.m-cgg-icon--permanent-contract:before {
|
|
1441
|
+
content: "\e9c7";
|
|
1442
|
+
}
|
|
1443
|
+
.m-cgg-icon--employee:before {
|
|
1444
|
+
content: "\e9c8";
|
|
1445
|
+
}
|
|
1446
|
+
.m-cgg-icon--SIM:before {
|
|
1447
|
+
content: "\e9c9";
|
|
1448
|
+
}
|
|
1449
|
+
.m-cgg-icon--SIM2:before {
|
|
1450
|
+
content: "\e9ca";
|
|
1451
|
+
}
|
|
1452
|
+
.m-cgg-icon--SIM3:before {
|
|
1453
|
+
content: "\e9cb";
|
|
1454
|
+
}
|
|
1455
|
+
.m-cgg-icon--Part-time:before {
|
|
1456
|
+
content: "\e9cc";
|
|
1457
|
+
}
|
|
1458
|
+
.m-cgg-icon--recording:before {
|
|
1459
|
+
content: "\e9cd";
|
|
1460
|
+
}
|
|
1461
|
+
.m-cgg-icon--vod:before {
|
|
1462
|
+
content: "\e9ce";
|
|
1463
|
+
}
|
|
1464
|
+
.m-cgg-icon--multiple-screen:before {
|
|
1465
|
+
content: "\e9cf";
|
|
1466
|
+
}
|
|
1467
|
+
.m-cgg-icon--chat:before {
|
|
1468
|
+
content: "\e9d0";
|
|
1469
|
+
}
|
|
1470
|
+
.m-cgg-icon--china-star-2:before {
|
|
1471
|
+
content: "\e9d1";
|
|
1472
|
+
}
|
|
1473
|
+
.m-cgg-icon--nostar:before {
|
|
1474
|
+
content: "\e9d2";
|
|
1475
|
+
}
|
|
1476
|
+
.m-cgg-icon--onestar:before {
|
|
1477
|
+
content: "\e9d3";
|
|
1478
|
+
}
|
|
1479
|
+
.m-cgg-icon--portugal-phone:before {
|
|
1480
|
+
content: "\e9d4";
|
|
1481
|
+
}
|
|
1482
|
+
.m-cgg-icon--2stars:before {
|
|
1483
|
+
content: "\e9d5";
|
|
1484
|
+
}
|
|
1485
|
+
.m-cgg-icon--3stars:before {
|
|
1486
|
+
content: "\e9d6";
|
|
1487
|
+
}
|
|
1488
|
+
.m-cgg-icon--usage-light:before {
|
|
1489
|
+
content: "\e9d7";
|
|
1490
|
+
}
|
|
1491
|
+
.m-cgg-icon--usage-medium:before {
|
|
1492
|
+
content: "\e9d8";
|
|
1493
|
+
}
|
|
1494
|
+
.m-cgg-icon--Commission:before {
|
|
1495
|
+
content: "\e9d9";
|
|
1496
|
+
}
|
|
1497
|
+
.m-cgg-icon--Housewife:before {
|
|
1498
|
+
content: "\e9da";
|
|
1499
|
+
}
|
|
1500
|
+
.m-cgg-icon--usage-heavy:before {
|
|
1501
|
+
content: "\e9db";
|
|
1502
|
+
}
|
|
1503
|
+
.m-cgg-icon--local-use:before {
|
|
1504
|
+
content: "\e9dc";
|
|
1505
|
+
}
|
|
1506
|
+
.m-cgg-icon--internet-use:before {
|
|
1507
|
+
content: "\e9dd";
|
|
1508
|
+
}
|
|
1509
|
+
.m-cgg-icon--a-flight:before {
|
|
1510
|
+
content: "\e9de";
|
|
1511
|
+
}
|
|
1512
|
+
.m-cgg-icon--multiple-places:before {
|
|
1513
|
+
content: "\e9df";
|
|
1514
|
+
}
|
|
1515
|
+
.m-cgg-icon--family-home:before {
|
|
1516
|
+
content: "\e9e0";
|
|
1517
|
+
}
|
|
1518
|
+
.m-cgg-icon--relatives-home:before {
|
|
1519
|
+
content: "\e9e1";
|
|
1520
|
+
}
|
|
1521
|
+
.m-cgg-icon--myself:before {
|
|
1522
|
+
content: "\e9e2";
|
|
1523
|
+
}
|
|
1524
|
+
.m-cgg-icon--earth:before {
|
|
1525
|
+
content: "\e9e3";
|
|
1526
|
+
}
|
|
1527
|
+
.m-cgg-icon--local-use-filled:before {
|
|
1528
|
+
content: "\e9e4";
|
|
1529
|
+
}
|
|
1530
|
+
.m-cgg-icon--0-2mth-contract:before {
|
|
1531
|
+
content: "\e9e5";
|
|
1532
|
+
}
|
|
1533
|
+
.m-cgg-icon--2-6mth-contract:before {
|
|
1534
|
+
content: "\e9e6";
|
|
1535
|
+
}
|
|
1536
|
+
.m-cgg-icon--6mthplus-contract:before {
|
|
1537
|
+
content: "\e9e7";
|
|
1538
|
+
}
|
|
1539
|
+
.m-cgg-icon--unionpay:before {
|
|
1540
|
+
content: "\e9e8";
|
|
1541
|
+
}
|
|
1542
|
+
.m-cgg-icon--sorting:before {
|
|
1543
|
+
content: "\e9e9";
|
|
1544
|
+
}
|
|
1545
|
+
.m-cgg-icon--PRC:before {
|
|
1546
|
+
content: "\ea29";
|
|
1547
|
+
}
|