sempli-website-lib 5.5.0-beta.1 → 6.2.0-beta.0
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/esm2022/lib/sempli-website-lib.module.mjs +4 -4
- package/fesm2022/sempli-website-lib.mjs +4 -4
- package/package.json +1 -1
- package/styles/master-app.scss +81 -93
- package/styles/master-landing.scss +80 -112
- package/styles/modules/_mixins.scss +5 -3
- package/styles/partials/_base.scss +0 -4
- package/styles/partials/_buttons.scss +7 -3
- package/styles/partials/_fonts.scss +5 -5
- package/styles/partials/_forms.scss +2 -0
- package/styles/partials/animations.scss +44 -11
- package/styles/partials/app/_cards.scss +1 -1
- package/styles/partials/app/_general.scss +13 -28
- package/styles/partials/app/_header.scss +4 -14
- package/styles/partials/app/_layout.scss +0 -8
- package/styles/partials/app/_my-products.scss +0 -16
- package/styles/partials/landing/_footer.scss +0 -4
- package/styles/partials/landing/_general.scss +0 -32
- package/styles/vendor/_modules_export.scss +5 -3
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { NgModule } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export class SempliWebsiteLibModule {
|
|
4
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
5
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.
|
|
6
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.
|
|
4
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.8", ngImport: i0, type: SempliWebsiteLibModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.1.8", ngImport: i0, type: SempliWebsiteLibModule }); }
|
|
6
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.1.8", ngImport: i0, type: SempliWebsiteLibModule }); }
|
|
7
7
|
}
|
|
8
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
8
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.8", ngImport: i0, type: SempliWebsiteLibModule, decorators: [{
|
|
9
9
|
type: NgModule,
|
|
10
10
|
args: [{
|
|
11
11
|
declarations: [],
|
|
@@ -2,11 +2,11 @@ import * as i0 from '@angular/core';
|
|
|
2
2
|
import { NgModule } from '@angular/core';
|
|
3
3
|
|
|
4
4
|
class SempliWebsiteLibModule {
|
|
5
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
6
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.
|
|
7
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.
|
|
5
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.8", ngImport: i0, type: SempliWebsiteLibModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.1.8", ngImport: i0, type: SempliWebsiteLibModule }); }
|
|
7
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.1.8", ngImport: i0, type: SempliWebsiteLibModule }); }
|
|
8
8
|
}
|
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
9
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.8", ngImport: i0, type: SempliWebsiteLibModule, decorators: [{
|
|
10
10
|
type: NgModule,
|
|
11
11
|
args: [{
|
|
12
12
|
declarations: [],
|
package/package.json
CHANGED
package/styles/master-app.scss
CHANGED
|
@@ -11480,7 +11480,7 @@ $rem-base: 16px !default;
|
|
|
11480
11480
|
#############################################################################*/
|
|
11481
11481
|
|
|
11482
11482
|
// Media Queries
|
|
11483
|
-
|
|
11483
|
+
/* stylelint-disable media-query-no-invalid */
|
|
11484
11484
|
@mixin responsive($break-point) {
|
|
11485
11485
|
|
|
11486
11486
|
@media only screen and (min-width: rem-calc($break-point)) { @content; }
|
|
@@ -11510,7 +11510,7 @@ $rem-base: 16px !default;
|
|
|
11510
11510
|
@media only screen and (max-height: rem-calc($break-point)) { @content; }
|
|
11511
11511
|
|
|
11512
11512
|
}
|
|
11513
|
-
|
|
11513
|
+
/* stylelint-enable media-query-no-invalid */
|
|
11514
11514
|
|
|
11515
11515
|
// ------------------------------------------------
|
|
11516
11516
|
// Retina display support
|
|
@@ -11520,10 +11520,11 @@ div.logo {
|
|
|
11520
11520
|
@include background-retina("logo2x.png", 100px, 25px);
|
|
11521
11521
|
}
|
|
11522
11522
|
*/
|
|
11523
|
+
/* stylelint-disable media-feature-name-no-unknown */
|
|
11523
11524
|
@mixin background-retina($image, $width, $height) {
|
|
11524
11525
|
@media
|
|
11525
11526
|
only screen and (-webkit-min-device-pixel-ratio: 1.3),
|
|
11526
|
-
only screen and (-o-min-device-pixel-ratio: 2.6/2),
|
|
11527
|
+
only screen and (-o-min-device-pixel-ratio: 2.6 / 2),
|
|
11527
11528
|
only screen and (min--moz-device-pixel-ratio: 1.3),
|
|
11528
11529
|
only screen and (min-device-pixel-ratio: 1.3),
|
|
11529
11530
|
only screen and (min-resolution: 1.3dppx) {
|
|
@@ -11531,6 +11532,7 @@ div.logo {
|
|
|
11531
11532
|
background-size: $width $height;
|
|
11532
11533
|
}
|
|
11533
11534
|
}
|
|
11535
|
+
/* stylelint-enable media-feature-name-no-unknown */
|
|
11534
11536
|
|
|
11535
11537
|
|
|
11536
11538
|
/*#############################################################################
|
|
@@ -11545,6 +11547,11 @@ div.logo {
|
|
|
11545
11547
|
|
|
11546
11548
|
// Partials : Base and Layout
|
|
11547
11549
|
/* src-url: "https://fonts.googleapis.com/css?family=Lato:300,400,900" */
|
|
11550
|
+
// Font for signature text
|
|
11551
|
+
@import url("https://fonts.googleapis.com/css2?family=Nothing+You+Could+Do&display=swap");
|
|
11552
|
+
// Font Credit Card
|
|
11553
|
+
@import url("https://fonts.googleapis.com/css2?family=Karla:wght@700&display=swap");
|
|
11554
|
+
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
|
|
11548
11555
|
|
|
11549
11556
|
@font-face {
|
|
11550
11557
|
font-family: 'Lato';
|
|
@@ -11622,11 +11629,6 @@ div.logo {
|
|
|
11622
11629
|
// font-style: italic;
|
|
11623
11630
|
// }
|
|
11624
11631
|
|
|
11625
|
-
// Font for signature text
|
|
11626
|
-
@import url("https://fonts.googleapis.com/css2?family=Nothing+You+Could+Do&display=swap");
|
|
11627
|
-
// Font Credit Card
|
|
11628
|
-
@import url("https://fonts.googleapis.com/css2?family=Karla:wght@700&display=swap");
|
|
11629
|
-
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
|
|
11630
11632
|
|
|
11631
11633
|
/*#############################################################################
|
|
11632
11634
|
# BASE
|
|
@@ -11867,10 +11869,6 @@ hr {
|
|
|
11867
11869
|
font-weight: $font-weight-normal!important;
|
|
11868
11870
|
}
|
|
11869
11871
|
|
|
11870
|
-
.text-w-normal {
|
|
11871
|
-
font-weight: $font-weight-medium!important;
|
|
11872
|
-
}
|
|
11873
|
-
|
|
11874
11872
|
.text-w-600 {
|
|
11875
11873
|
font-weight: 600!important;
|
|
11876
11874
|
}
|
|
@@ -12214,10 +12212,6 @@ body#app, .app-layout {
|
|
|
12214
12212
|
background-color: transparent;
|
|
12215
12213
|
}
|
|
12216
12214
|
|
|
12217
|
-
&::-webkit-scrollbar{
|
|
12218
|
-
// display: none;
|
|
12219
|
-
}
|
|
12220
|
-
|
|
12221
12215
|
// Centered Content
|
|
12222
12216
|
&.centered-content {
|
|
12223
12217
|
.content-wrapper {
|
|
@@ -12225,10 +12219,6 @@ body#app, .app-layout {
|
|
|
12225
12219
|
margin: 0 auto;
|
|
12226
12220
|
text-align: center;
|
|
12227
12221
|
|
|
12228
|
-
// Content Sizes Overwrite
|
|
12229
|
-
&.large {
|
|
12230
|
-
|
|
12231
|
-
}
|
|
12232
12222
|
}
|
|
12233
12223
|
}
|
|
12234
12224
|
}
|
|
@@ -12433,7 +12423,7 @@ button.cursor-pointer {
|
|
|
12433
12423
|
position: relative;
|
|
12434
12424
|
height: 40px;
|
|
12435
12425
|
display: block;
|
|
12436
|
-
font-family:
|
|
12426
|
+
font-family: Arial, Helvetica, sans-serif;
|
|
12437
12427
|
font-size: 1em;
|
|
12438
12428
|
line-height: 1em;
|
|
12439
12429
|
z-index: 0;
|
|
@@ -12552,8 +12542,10 @@ button.cursor-pointer {
|
|
|
12552
12542
|
&.whatsapp-button {
|
|
12553
12543
|
right: 40px;
|
|
12554
12544
|
bottom: 180px;
|
|
12545
|
+
animation-name: float-button-out;
|
|
12555
12546
|
animation-delay: 0.15s;
|
|
12556
|
-
animation:
|
|
12547
|
+
animation-duration: 0.15s;
|
|
12548
|
+
animation-timing-function: linear;
|
|
12557
12549
|
animation-fill-mode: forwards;
|
|
12558
12550
|
background-color: #25d366;
|
|
12559
12551
|
background-repeat: no-repeat;
|
|
@@ -12565,8 +12557,10 @@ button.cursor-pointer {
|
|
|
12565
12557
|
&.intercom-button {
|
|
12566
12558
|
right: 40px;
|
|
12567
12559
|
bottom: 120px;
|
|
12560
|
+
animation-name: float-button-out;
|
|
12561
|
+
animation-duration: 0.3s;
|
|
12562
|
+
animation-timing-function: linear;
|
|
12568
12563
|
animation-delay: 0.2s;
|
|
12569
|
-
animation: float-button-out 0.3s linear;
|
|
12570
12564
|
animation-fill-mode: forwards;
|
|
12571
12565
|
background-color: rgb(48, 71, 236);
|
|
12572
12566
|
background-repeat: no-repeat;
|
|
@@ -12868,9 +12862,11 @@ button.cursor-pointer {
|
|
|
12868
12862
|
:-ms-input-placeholder { /* IE 10+ */
|
|
12869
12863
|
color: $color-secondary;
|
|
12870
12864
|
}
|
|
12865
|
+
/* stylelint-disable selector-pseudo-class-no-unknown */
|
|
12871
12866
|
:-moz-placeholder { /* Firefox 18- */
|
|
12872
12867
|
color: $color-secondary;
|
|
12873
12868
|
}
|
|
12869
|
+
/* stylelint-enable selector-pseudo-class-no-unknown */
|
|
12874
12870
|
|
|
12875
12871
|
// FILTER SELECT WRAPPER
|
|
12876
12872
|
.select-wrapper {
|
|
@@ -14156,33 +14152,66 @@ div.progress-bar {
|
|
|
14156
14152
|
* ----------------------------------------
|
|
14157
14153
|
*/
|
|
14158
14154
|
@keyframes float-action-active {
|
|
14159
|
-
from {
|
|
14160
|
-
|
|
14155
|
+
from {
|
|
14156
|
+
opacity: 0;
|
|
14157
|
+
transform: rotateZ(-70deg);
|
|
14158
|
+
}
|
|
14159
|
+
to {
|
|
14160
|
+
opacity: 1;
|
|
14161
|
+
transform: rotateZ(0deg);
|
|
14162
|
+
}
|
|
14161
14163
|
}
|
|
14162
14164
|
|
|
14163
14165
|
@keyframes float-action-disable {
|
|
14164
|
-
from {
|
|
14165
|
-
|
|
14166
|
+
from {
|
|
14167
|
+
opacity: 1;
|
|
14168
|
+
transform: rotateZ(0deg);
|
|
14169
|
+
}
|
|
14170
|
+
to {
|
|
14171
|
+
opacity: 0;
|
|
14172
|
+
transform: rotateZ(-70deg);
|
|
14173
|
+
}
|
|
14166
14174
|
}
|
|
14167
14175
|
|
|
14168
14176
|
@keyframes float-action-button-in {
|
|
14169
|
-
from {
|
|
14170
|
-
|
|
14177
|
+
from {
|
|
14178
|
+
opacity: 1;
|
|
14179
|
+
transform: rotateZ(0deg);
|
|
14180
|
+
}
|
|
14181
|
+
to {
|
|
14182
|
+
opacity: 0;
|
|
14183
|
+
transform: rotateZ(180deg);
|
|
14184
|
+
}
|
|
14171
14185
|
}
|
|
14172
14186
|
|
|
14173
14187
|
@keyframes float-action-button-out {
|
|
14174
|
-
from {
|
|
14175
|
-
|
|
14188
|
+
from {
|
|
14189
|
+
opacity: 0;
|
|
14190
|
+
transform: rotateZ(180deg);
|
|
14191
|
+
}
|
|
14192
|
+
to {
|
|
14193
|
+
opacity: 1;
|
|
14194
|
+
transform: rotateZ(0deg);
|
|
14195
|
+
}
|
|
14176
14196
|
}
|
|
14177
14197
|
|
|
14178
14198
|
@keyframes float-button-in {
|
|
14179
14199
|
from {opacity: 0;}
|
|
14180
|
-
to {
|
|
14200
|
+
to {
|
|
14201
|
+
opacity: 1;
|
|
14202
|
+
transform: scale(1);
|
|
14203
|
+
}
|
|
14181
14204
|
}
|
|
14182
14205
|
|
|
14183
14206
|
@keyframes float-button-out {
|
|
14184
|
-
from {
|
|
14185
|
-
|
|
14207
|
+
from {
|
|
14208
|
+
opacity: 1;
|
|
14209
|
+
transform: scale(1);
|
|
14210
|
+
}
|
|
14211
|
+
to {
|
|
14212
|
+
opacity: 0;
|
|
14213
|
+
transform: scale(0);
|
|
14214
|
+
}
|
|
14186
14215
|
}
|
|
14187
14216
|
|
|
14188
14217
|
|
|
@@ -14426,7 +14455,7 @@ $card-padding: 30px;
|
|
|
14426
14455
|
@include box-shadow(-20px 10px 20px 0 rgba(black, 0.15));
|
|
14427
14456
|
|
|
14428
14457
|
.card-body {
|
|
14429
|
-
padding-right: $card-padding*2;
|
|
14458
|
+
padding-right: $card-padding * 2;
|
|
14430
14459
|
}
|
|
14431
14460
|
|
|
14432
14461
|
&::before {
|
|
@@ -14724,6 +14753,14 @@ a.navigate-back {
|
|
|
14724
14753
|
.actions-wrapper {
|
|
14725
14754
|
left: auto;
|
|
14726
14755
|
right: 0;
|
|
14756
|
+
display: flex;
|
|
14757
|
+
justify-content: center;
|
|
14758
|
+
gap: 6%;
|
|
14759
|
+
|
|
14760
|
+
.step-action-button {
|
|
14761
|
+
width: 110px;
|
|
14762
|
+
text-align: center;
|
|
14763
|
+
}
|
|
14727
14764
|
}
|
|
14728
14765
|
}
|
|
14729
14766
|
}
|
|
@@ -15127,14 +15164,6 @@ ul.list-view {
|
|
|
15127
15164
|
}
|
|
15128
15165
|
}
|
|
15129
15166
|
|
|
15130
|
-
.table-body {
|
|
15131
|
-
.table-row {
|
|
15132
|
-
.table-cell {
|
|
15133
|
-
|
|
15134
|
-
}
|
|
15135
|
-
}
|
|
15136
|
-
}
|
|
15137
|
-
|
|
15138
15167
|
.table-footer {
|
|
15139
15168
|
.table-row {
|
|
15140
15169
|
border-bottom: none;
|
|
@@ -15404,10 +15433,6 @@ ul.wizard-steps {
|
|
|
15404
15433
|
&:first-child {
|
|
15405
15434
|
padding-top: 0;
|
|
15406
15435
|
|
|
15407
|
-
&::after {
|
|
15408
|
-
|
|
15409
|
-
}
|
|
15410
|
-
|
|
15411
15436
|
// Remove line from first element
|
|
15412
15437
|
&::before {
|
|
15413
15438
|
display: none;
|
|
@@ -15481,21 +15506,6 @@ ul.wizard-steps {
|
|
|
15481
15506
|
}
|
|
15482
15507
|
}
|
|
15483
15508
|
|
|
15484
|
-
&.small {
|
|
15485
|
-
li {
|
|
15486
|
-
padding-top: 20px;
|
|
15487
|
-
// LINES
|
|
15488
|
-
|
|
15489
|
-
&:first-child {
|
|
15490
|
-
padding-top: 0;
|
|
15491
|
-
}
|
|
15492
|
-
|
|
15493
|
-
&::before {
|
|
15494
|
-
height: 60px;
|
|
15495
|
-
bottom: 20%;
|
|
15496
|
-
}
|
|
15497
|
-
}
|
|
15498
|
-
}
|
|
15499
15509
|
}
|
|
15500
15510
|
|
|
15501
15511
|
p.code-validation-instruction {
|
|
@@ -15645,7 +15655,11 @@ section.account-wrapper {
|
|
|
15645
15655
|
|
|
15646
15656
|
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
|
|
15647
15657
|
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
|
|
15648
|
-
@keyframes spin { 100% {
|
|
15658
|
+
@keyframes spin { 100% {
|
|
15659
|
+
-webkit-transform: rotate(360deg);
|
|
15660
|
+
transform:rotate(360deg);
|
|
15661
|
+
}
|
|
15662
|
+
}
|
|
15649
15663
|
|
|
15650
15664
|
.signature-box-wrapper {
|
|
15651
15665
|
width: 100%;
|
|
@@ -16053,6 +16067,10 @@ header.app-header {
|
|
|
16053
16067
|
border-bottom: none;
|
|
16054
16068
|
}
|
|
16055
16069
|
}
|
|
16070
|
+
|
|
16071
|
+
@include responsive($breakpoint-medium) {
|
|
16072
|
+
display: none;
|
|
16073
|
+
}
|
|
16056
16074
|
}
|
|
16057
16075
|
|
|
16058
16076
|
.mobile-nav, .header-nav {
|
|
@@ -16236,20 +16254,6 @@ header.app-header {
|
|
|
16236
16254
|
}
|
|
16237
16255
|
}
|
|
16238
16256
|
|
|
16239
|
-
// Mobile Navigation
|
|
16240
|
-
.mobile-nav {
|
|
16241
|
-
@include responsive($breakpoint-medium) {
|
|
16242
|
-
display: none;
|
|
16243
|
-
}
|
|
16244
|
-
}
|
|
16245
|
-
|
|
16246
|
-
// Mobile Navigation
|
|
16247
|
-
.mobile-nav {
|
|
16248
|
-
@include responsive($breakpoint-medium) {
|
|
16249
|
-
display: none;
|
|
16250
|
-
}
|
|
16251
|
-
}
|
|
16252
|
-
|
|
16253
16257
|
input#burger {
|
|
16254
16258
|
opacity: 0;
|
|
16255
16259
|
}
|
|
@@ -16830,22 +16834,6 @@ ul.team-members {
|
|
|
16830
16834
|
justify-self: start;
|
|
16831
16835
|
}
|
|
16832
16836
|
|
|
16833
|
-
.credit-payment-progress {
|
|
16834
|
-
|
|
16835
|
-
}
|
|
16836
|
-
|
|
16837
|
-
.credit-installments {
|
|
16838
|
-
|
|
16839
|
-
}
|
|
16840
|
-
|
|
16841
|
-
.credit-payment {
|
|
16842
|
-
|
|
16843
|
-
}
|
|
16844
|
-
|
|
16845
|
-
.credit-actions {
|
|
16846
|
-
|
|
16847
|
-
}
|
|
16848
|
-
|
|
16849
16837
|
// Content Elements
|
|
16850
16838
|
|
|
16851
16839
|
.product-box-title {
|
|
@@ -11480,7 +11480,7 @@ $rem-base: 16px !default;
|
|
|
11480
11480
|
#############################################################################*/
|
|
11481
11481
|
|
|
11482
11482
|
// Media Queries
|
|
11483
|
-
|
|
11483
|
+
/* stylelint-disable media-query-no-invalid */
|
|
11484
11484
|
@mixin responsive($break-point) {
|
|
11485
11485
|
|
|
11486
11486
|
@media only screen and (min-width: rem-calc($break-point)) { @content; }
|
|
@@ -11510,7 +11510,7 @@ $rem-base: 16px !default;
|
|
|
11510
11510
|
@media only screen and (max-height: rem-calc($break-point)) { @content; }
|
|
11511
11511
|
|
|
11512
11512
|
}
|
|
11513
|
-
|
|
11513
|
+
/* stylelint-enable media-query-no-invalid */
|
|
11514
11514
|
|
|
11515
11515
|
// ------------------------------------------------
|
|
11516
11516
|
// Retina display support
|
|
@@ -11520,10 +11520,11 @@ div.logo {
|
|
|
11520
11520
|
@include background-retina("logo2x.png", 100px, 25px);
|
|
11521
11521
|
}
|
|
11522
11522
|
*/
|
|
11523
|
+
/* stylelint-disable media-feature-name-no-unknown */
|
|
11523
11524
|
@mixin background-retina($image, $width, $height) {
|
|
11524
11525
|
@media
|
|
11525
11526
|
only screen and (-webkit-min-device-pixel-ratio: 1.3),
|
|
11526
|
-
only screen and (-o-min-device-pixel-ratio: 2.6/2),
|
|
11527
|
+
only screen and (-o-min-device-pixel-ratio: 2.6 / 2),
|
|
11527
11528
|
only screen and (min--moz-device-pixel-ratio: 1.3),
|
|
11528
11529
|
only screen and (min-device-pixel-ratio: 1.3),
|
|
11529
11530
|
only screen and (min-resolution: 1.3dppx) {
|
|
@@ -11531,6 +11532,7 @@ div.logo {
|
|
|
11531
11532
|
background-size: $width $height;
|
|
11532
11533
|
}
|
|
11533
11534
|
}
|
|
11535
|
+
/* stylelint-enable media-feature-name-no-unknown */
|
|
11534
11536
|
|
|
11535
11537
|
|
|
11536
11538
|
/*#############################################################################
|
|
@@ -11545,6 +11547,11 @@ div.logo {
|
|
|
11545
11547
|
|
|
11546
11548
|
// Partials : Base and Layout
|
|
11547
11549
|
/* src-url: "https://fonts.googleapis.com/css?family=Lato:300,400,900" */
|
|
11550
|
+
// Font for signature text
|
|
11551
|
+
@import url("https://fonts.googleapis.com/css2?family=Nothing+You+Could+Do&display=swap");
|
|
11552
|
+
// Font Credit Card
|
|
11553
|
+
@import url("https://fonts.googleapis.com/css2?family=Karla:wght@700&display=swap");
|
|
11554
|
+
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
|
|
11548
11555
|
|
|
11549
11556
|
@font-face {
|
|
11550
11557
|
font-family: 'Lato';
|
|
@@ -11622,11 +11629,6 @@ div.logo {
|
|
|
11622
11629
|
// font-style: italic;
|
|
11623
11630
|
// }
|
|
11624
11631
|
|
|
11625
|
-
// Font for signature text
|
|
11626
|
-
@import url("https://fonts.googleapis.com/css2?family=Nothing+You+Could+Do&display=swap");
|
|
11627
|
-
// Font Credit Card
|
|
11628
|
-
@import url("https://fonts.googleapis.com/css2?family=Karla:wght@700&display=swap");
|
|
11629
|
-
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
|
|
11630
11632
|
|
|
11631
11633
|
/*#############################################################################
|
|
11632
11634
|
# BASE
|
|
@@ -11867,10 +11869,6 @@ hr {
|
|
|
11867
11869
|
font-weight: $font-weight-normal!important;
|
|
11868
11870
|
}
|
|
11869
11871
|
|
|
11870
|
-
.text-w-normal {
|
|
11871
|
-
font-weight: $font-weight-medium!important;
|
|
11872
|
-
}
|
|
11873
|
-
|
|
11874
11872
|
.text-w-600 {
|
|
11875
11873
|
font-weight: 600!important;
|
|
11876
11874
|
}
|
|
@@ -12205,7 +12203,7 @@ button.cursor-pointer {
|
|
|
12205
12203
|
position: relative;
|
|
12206
12204
|
height: 40px;
|
|
12207
12205
|
display: block;
|
|
12208
|
-
font-family:
|
|
12206
|
+
font-family: Arial, Helvetica, sans-serif;
|
|
12209
12207
|
font-size: 1em;
|
|
12210
12208
|
line-height: 1em;
|
|
12211
12209
|
z-index: 0;
|
|
@@ -12324,8 +12322,10 @@ button.cursor-pointer {
|
|
|
12324
12322
|
&.whatsapp-button {
|
|
12325
12323
|
right: 40px;
|
|
12326
12324
|
bottom: 180px;
|
|
12325
|
+
animation-name: float-button-out;
|
|
12327
12326
|
animation-delay: 0.15s;
|
|
12328
|
-
animation:
|
|
12327
|
+
animation-duration: 0.15s;
|
|
12328
|
+
animation-timing-function: linear;
|
|
12329
12329
|
animation-fill-mode: forwards;
|
|
12330
12330
|
background-color: #25d366;
|
|
12331
12331
|
background-repeat: no-repeat;
|
|
@@ -12337,8 +12337,10 @@ button.cursor-pointer {
|
|
|
12337
12337
|
&.intercom-button {
|
|
12338
12338
|
right: 40px;
|
|
12339
12339
|
bottom: 120px;
|
|
12340
|
+
animation-name: float-button-out;
|
|
12341
|
+
animation-duration: 0.3s;
|
|
12342
|
+
animation-timing-function: linear;
|
|
12340
12343
|
animation-delay: 0.2s;
|
|
12341
|
-
animation: float-button-out 0.3s linear;
|
|
12342
12344
|
animation-fill-mode: forwards;
|
|
12343
12345
|
background-color: rgb(48, 71, 236);
|
|
12344
12346
|
background-repeat: no-repeat;
|
|
@@ -12640,9 +12642,11 @@ button.cursor-pointer {
|
|
|
12640
12642
|
:-ms-input-placeholder { /* IE 10+ */
|
|
12641
12643
|
color: $color-secondary;
|
|
12642
12644
|
}
|
|
12645
|
+
/* stylelint-disable selector-pseudo-class-no-unknown */
|
|
12643
12646
|
:-moz-placeholder { /* Firefox 18- */
|
|
12644
12647
|
color: $color-secondary;
|
|
12645
12648
|
}
|
|
12649
|
+
/* stylelint-enable selector-pseudo-class-no-unknown */
|
|
12646
12650
|
|
|
12647
12651
|
// FILTER SELECT WRAPPER
|
|
12648
12652
|
.select-wrapper {
|
|
@@ -13928,33 +13932,66 @@ div.progress-bar {
|
|
|
13928
13932
|
* ----------------------------------------
|
|
13929
13933
|
*/
|
|
13930
13934
|
@keyframes float-action-active {
|
|
13931
|
-
from {
|
|
13932
|
-
|
|
13935
|
+
from {
|
|
13936
|
+
opacity: 0;
|
|
13937
|
+
transform: rotateZ(-70deg);
|
|
13938
|
+
}
|
|
13939
|
+
to {
|
|
13940
|
+
opacity: 1;
|
|
13941
|
+
transform: rotateZ(0deg);
|
|
13942
|
+
}
|
|
13933
13943
|
}
|
|
13934
13944
|
|
|
13935
13945
|
@keyframes float-action-disable {
|
|
13936
|
-
from {
|
|
13937
|
-
|
|
13946
|
+
from {
|
|
13947
|
+
opacity: 1;
|
|
13948
|
+
transform: rotateZ(0deg);
|
|
13949
|
+
}
|
|
13950
|
+
to {
|
|
13951
|
+
opacity: 0;
|
|
13952
|
+
transform: rotateZ(-70deg);
|
|
13953
|
+
}
|
|
13938
13954
|
}
|
|
13939
13955
|
|
|
13940
13956
|
@keyframes float-action-button-in {
|
|
13941
|
-
from {
|
|
13942
|
-
|
|
13957
|
+
from {
|
|
13958
|
+
opacity: 1;
|
|
13959
|
+
transform: rotateZ(0deg);
|
|
13960
|
+
}
|
|
13961
|
+
to {
|
|
13962
|
+
opacity: 0;
|
|
13963
|
+
transform: rotateZ(180deg);
|
|
13964
|
+
}
|
|
13943
13965
|
}
|
|
13944
13966
|
|
|
13945
13967
|
@keyframes float-action-button-out {
|
|
13946
|
-
from {
|
|
13947
|
-
|
|
13968
|
+
from {
|
|
13969
|
+
opacity: 0;
|
|
13970
|
+
transform: rotateZ(180deg);
|
|
13971
|
+
}
|
|
13972
|
+
to {
|
|
13973
|
+
opacity: 1;
|
|
13974
|
+
transform: rotateZ(0deg);
|
|
13975
|
+
}
|
|
13948
13976
|
}
|
|
13949
13977
|
|
|
13950
13978
|
@keyframes float-button-in {
|
|
13951
13979
|
from {opacity: 0;}
|
|
13952
|
-
to {
|
|
13980
|
+
to {
|
|
13981
|
+
opacity: 1;
|
|
13982
|
+
transform: scale(1);
|
|
13983
|
+
}
|
|
13953
13984
|
}
|
|
13954
13985
|
|
|
13955
13986
|
@keyframes float-button-out {
|
|
13956
|
-
from {
|
|
13957
|
-
|
|
13987
|
+
from {
|
|
13988
|
+
opacity: 1;
|
|
13989
|
+
transform: scale(1);
|
|
13990
|
+
}
|
|
13991
|
+
to {
|
|
13992
|
+
opacity: 0;
|
|
13993
|
+
transform: scale(0);
|
|
13994
|
+
}
|
|
13958
13995
|
}
|
|
13959
13996
|
|
|
13960
13997
|
|
|
@@ -14490,10 +14527,6 @@ footer#main-footer {
|
|
|
14490
14527
|
list-style: none;
|
|
14491
14528
|
margin: 0;
|
|
14492
14529
|
padding: 0;
|
|
14493
|
-
|
|
14494
|
-
li {
|
|
14495
|
-
|
|
14496
|
-
}
|
|
14497
14530
|
}
|
|
14498
14531
|
|
|
14499
14532
|
a.link-item {
|
|
@@ -14515,10 +14548,6 @@ footer#main-footer {
|
|
|
14515
14548
|
|
|
14516
14549
|
// Content Box - Content Elements
|
|
14517
14550
|
.content-box {
|
|
14518
|
-
.content-title {
|
|
14519
|
-
|
|
14520
|
-
}
|
|
14521
|
-
|
|
14522
14551
|
.content-subtitle {
|
|
14523
14552
|
color: #00C8E1;
|
|
14524
14553
|
text-transform: uppercase;
|
|
@@ -15068,10 +15097,6 @@ section#our-investors {
|
|
|
15068
15097
|
max-width: 75%;
|
|
15069
15098
|
}
|
|
15070
15099
|
|
|
15071
|
-
.investor-name {
|
|
15072
|
-
|
|
15073
|
-
}
|
|
15074
|
-
|
|
15075
15100
|
.investor-description {
|
|
15076
15101
|
color: $color-secondary;
|
|
15077
15102
|
}
|
|
@@ -15117,10 +15142,6 @@ section#help-center {
|
|
|
15117
15142
|
}
|
|
15118
15143
|
}
|
|
15119
15144
|
|
|
15120
|
-
.section-category-cta {
|
|
15121
|
-
|
|
15122
|
-
}
|
|
15123
|
-
|
|
15124
15145
|
aside {
|
|
15125
15146
|
display: none;
|
|
15126
15147
|
|
|
@@ -15247,11 +15268,6 @@ section.insurance-details {
|
|
|
15247
15268
|
}
|
|
15248
15269
|
}
|
|
15249
15270
|
|
|
15250
|
-
main {
|
|
15251
|
-
article {
|
|
15252
|
-
|
|
15253
|
-
}
|
|
15254
|
-
}
|
|
15255
15271
|
}
|
|
15256
15272
|
|
|
15257
15273
|
section#in-the-news {
|
|
@@ -15358,13 +15374,6 @@ section#our-values {
|
|
|
15358
15374
|
margin: 0 auto 10px;
|
|
15359
15375
|
}
|
|
15360
15376
|
|
|
15361
|
-
.value-title {
|
|
15362
|
-
|
|
15363
|
-
}
|
|
15364
|
-
|
|
15365
|
-
.value-description {
|
|
15366
|
-
|
|
15367
|
-
}
|
|
15368
15377
|
}
|
|
15369
15378
|
|
|
15370
15379
|
section#career-opportunities {
|
|
@@ -15687,14 +15696,6 @@ section.simulators.simulators-wrapper {
|
|
|
15687
15696
|
}
|
|
15688
15697
|
}
|
|
15689
15698
|
|
|
15690
|
-
.table-body {
|
|
15691
|
-
.table-row {
|
|
15692
|
-
.table-cell {
|
|
15693
|
-
|
|
15694
|
-
}
|
|
15695
|
-
}
|
|
15696
|
-
}
|
|
15697
|
-
|
|
15698
15699
|
.table-footer {
|
|
15699
15700
|
.table-row {
|
|
15700
15701
|
border-bottom: none;
|
|
@@ -16701,10 +16702,6 @@ body#app, .app-layout {
|
|
|
16701
16702
|
background-color: transparent;
|
|
16702
16703
|
}
|
|
16703
16704
|
|
|
16704
|
-
&::-webkit-scrollbar{
|
|
16705
|
-
// display: none;
|
|
16706
|
-
}
|
|
16707
|
-
|
|
16708
16705
|
// Centered Content
|
|
16709
16706
|
&.centered-content {
|
|
16710
16707
|
.content-wrapper {
|
|
@@ -16712,10 +16709,6 @@ body#app, .app-layout {
|
|
|
16712
16709
|
margin: 0 auto;
|
|
16713
16710
|
text-align: center;
|
|
16714
16711
|
|
|
16715
|
-
// Content Sizes Overwrite
|
|
16716
|
-
&.large {
|
|
16717
|
-
|
|
16718
|
-
}
|
|
16719
16712
|
}
|
|
16720
16713
|
}
|
|
16721
16714
|
}
|
|
@@ -17174,6 +17167,10 @@ header.app-header {
|
|
|
17174
17167
|
border-bottom: none;
|
|
17175
17168
|
}
|
|
17176
17169
|
}
|
|
17170
|
+
|
|
17171
|
+
@include responsive($breakpoint-medium) {
|
|
17172
|
+
display: none;
|
|
17173
|
+
}
|
|
17177
17174
|
}
|
|
17178
17175
|
|
|
17179
17176
|
.mobile-nav, .header-nav {
|
|
@@ -17357,20 +17354,6 @@ header.app-header {
|
|
|
17357
17354
|
}
|
|
17358
17355
|
}
|
|
17359
17356
|
|
|
17360
|
-
// Mobile Navigation
|
|
17361
|
-
.mobile-nav {
|
|
17362
|
-
@include responsive($breakpoint-medium) {
|
|
17363
|
-
display: none;
|
|
17364
|
-
}
|
|
17365
|
-
}
|
|
17366
|
-
|
|
17367
|
-
// Mobile Navigation
|
|
17368
|
-
.mobile-nav {
|
|
17369
|
-
@include responsive($breakpoint-medium) {
|
|
17370
|
-
display: none;
|
|
17371
|
-
}
|
|
17372
|
-
}
|
|
17373
|
-
|
|
17374
17357
|
input#burger {
|
|
17375
17358
|
opacity: 0;
|
|
17376
17359
|
}
|
|
@@ -17778,6 +17761,14 @@ a.navigate-back {
|
|
|
17778
17761
|
.actions-wrapper {
|
|
17779
17762
|
left: auto;
|
|
17780
17763
|
right: 0;
|
|
17764
|
+
display: flex;
|
|
17765
|
+
justify-content: center;
|
|
17766
|
+
gap: 6%;
|
|
17767
|
+
|
|
17768
|
+
.step-action-button {
|
|
17769
|
+
width: 110px;
|
|
17770
|
+
text-align: center;
|
|
17771
|
+
}
|
|
17781
17772
|
}
|
|
17782
17773
|
}
|
|
17783
17774
|
}
|
|
@@ -18181,14 +18172,6 @@ ul.list-view {
|
|
|
18181
18172
|
}
|
|
18182
18173
|
}
|
|
18183
18174
|
|
|
18184
|
-
.table-body {
|
|
18185
|
-
.table-row {
|
|
18186
|
-
.table-cell {
|
|
18187
|
-
|
|
18188
|
-
}
|
|
18189
|
-
}
|
|
18190
|
-
}
|
|
18191
|
-
|
|
18192
18175
|
.table-footer {
|
|
18193
18176
|
.table-row {
|
|
18194
18177
|
border-bottom: none;
|
|
@@ -18458,10 +18441,6 @@ ul.wizard-steps {
|
|
|
18458
18441
|
&:first-child {
|
|
18459
18442
|
padding-top: 0;
|
|
18460
18443
|
|
|
18461
|
-
&::after {
|
|
18462
|
-
|
|
18463
|
-
}
|
|
18464
|
-
|
|
18465
18444
|
// Remove line from first element
|
|
18466
18445
|
&::before {
|
|
18467
18446
|
display: none;
|
|
@@ -18535,21 +18514,6 @@ ul.wizard-steps {
|
|
|
18535
18514
|
}
|
|
18536
18515
|
}
|
|
18537
18516
|
|
|
18538
|
-
&.small {
|
|
18539
|
-
li {
|
|
18540
|
-
padding-top: 20px;
|
|
18541
|
-
// LINES
|
|
18542
|
-
|
|
18543
|
-
&:first-child {
|
|
18544
|
-
padding-top: 0;
|
|
18545
|
-
}
|
|
18546
|
-
|
|
18547
|
-
&::before {
|
|
18548
|
-
height: 60px;
|
|
18549
|
-
bottom: 20%;
|
|
18550
|
-
}
|
|
18551
|
-
}
|
|
18552
|
-
}
|
|
18553
18517
|
}
|
|
18554
18518
|
|
|
18555
18519
|
p.code-validation-instruction {
|
|
@@ -18699,7 +18663,11 @@ section.account-wrapper {
|
|
|
18699
18663
|
|
|
18700
18664
|
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
|
|
18701
18665
|
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
|
|
18702
|
-
@keyframes spin { 100% {
|
|
18666
|
+
@keyframes spin { 100% {
|
|
18667
|
+
-webkit-transform: rotate(360deg);
|
|
18668
|
+
transform:rotate(360deg);
|
|
18669
|
+
}
|
|
18670
|
+
}
|
|
18703
18671
|
|
|
18704
18672
|
.signature-box-wrapper {
|
|
18705
18673
|
width: 100%;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
#############################################################################*/
|
|
4
4
|
|
|
5
5
|
// Media Queries
|
|
6
|
-
|
|
6
|
+
/* stylelint-disable media-query-no-invalid */
|
|
7
7
|
@mixin responsive($break-point) {
|
|
8
8
|
|
|
9
9
|
@media only screen and (min-width: rem-calc($break-point)) { @content; }
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
@media only screen and (max-height: rem-calc($break-point)) { @content; }
|
|
34
34
|
|
|
35
35
|
}
|
|
36
|
-
|
|
36
|
+
/* stylelint-enable media-query-no-invalid */
|
|
37
37
|
|
|
38
38
|
// ------------------------------------------------
|
|
39
39
|
// Retina display support
|
|
@@ -43,10 +43,11 @@ div.logo {
|
|
|
43
43
|
@include background-retina("logo2x.png", 100px, 25px);
|
|
44
44
|
}
|
|
45
45
|
*/
|
|
46
|
+
/* stylelint-disable media-feature-name-no-unknown */
|
|
46
47
|
@mixin background-retina($image, $width, $height) {
|
|
47
48
|
@media
|
|
48
49
|
only screen and (-webkit-min-device-pixel-ratio: 1.3),
|
|
49
|
-
only screen and (-o-min-device-pixel-ratio: 2.6/2),
|
|
50
|
+
only screen and (-o-min-device-pixel-ratio: 2.6 / 2),
|
|
50
51
|
only screen and (min--moz-device-pixel-ratio: 1.3),
|
|
51
52
|
only screen and (min-device-pixel-ratio: 1.3),
|
|
52
53
|
only screen and (min-resolution: 1.3dppx) {
|
|
@@ -54,6 +55,7 @@ div.logo {
|
|
|
54
55
|
background-size: $width $height;
|
|
55
56
|
}
|
|
56
57
|
}
|
|
58
|
+
/* stylelint-enable media-feature-name-no-unknown */
|
|
57
59
|
|
|
58
60
|
|
|
59
61
|
/*#############################################################################
|
|
@@ -141,7 +141,7 @@ button.cursor-pointer {
|
|
|
141
141
|
position: relative;
|
|
142
142
|
height: 40px;
|
|
143
143
|
display: block;
|
|
144
|
-
font-family:
|
|
144
|
+
font-family: Arial, Helvetica, sans-serif;
|
|
145
145
|
font-size: 1em;
|
|
146
146
|
line-height: 1em;
|
|
147
147
|
z-index: 0;
|
|
@@ -260,8 +260,10 @@ button.cursor-pointer {
|
|
|
260
260
|
&.whatsapp-button {
|
|
261
261
|
right: 40px;
|
|
262
262
|
bottom: 180px;
|
|
263
|
+
animation-name: float-button-out;
|
|
263
264
|
animation-delay: 0.15s;
|
|
264
|
-
animation:
|
|
265
|
+
animation-duration: 0.15s;
|
|
266
|
+
animation-timing-function: linear;
|
|
265
267
|
animation-fill-mode: forwards;
|
|
266
268
|
background-color: #25d366;
|
|
267
269
|
background-repeat: no-repeat;
|
|
@@ -273,8 +275,10 @@ button.cursor-pointer {
|
|
|
273
275
|
&.intercom-button {
|
|
274
276
|
right: 40px;
|
|
275
277
|
bottom: 120px;
|
|
278
|
+
animation-name: float-button-out;
|
|
279
|
+
animation-duration: 0.3s;
|
|
280
|
+
animation-timing-function: linear;
|
|
276
281
|
animation-delay: 0.2s;
|
|
277
|
-
animation: float-button-out 0.3s linear;
|
|
278
282
|
animation-fill-mode: forwards;
|
|
279
283
|
background-color: rgb(48, 71, 236);
|
|
280
284
|
background-repeat: no-repeat;
|
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
/* src-url: "https://fonts.googleapis.com/css?family=Lato:300,400,900" */
|
|
2
|
+
// Font for signature text
|
|
3
|
+
@import url("https://fonts.googleapis.com/css2?family=Nothing+You+Could+Do&display=swap");
|
|
4
|
+
// Font Credit Card
|
|
5
|
+
@import url("https://fonts.googleapis.com/css2?family=Karla:wght@700&display=swap");
|
|
6
|
+
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
|
|
2
7
|
|
|
3
8
|
@font-face {
|
|
4
9
|
font-family: 'Lato';
|
|
@@ -76,8 +81,3 @@
|
|
|
76
81
|
// font-style: italic;
|
|
77
82
|
// }
|
|
78
83
|
|
|
79
|
-
// Font for signature text
|
|
80
|
-
@import url("https://fonts.googleapis.com/css2?family=Nothing+You+Could+Do&display=swap");
|
|
81
|
-
// Font Credit Card
|
|
82
|
-
@import url("https://fonts.googleapis.com/css2?family=Karla:wght@700&display=swap");
|
|
83
|
-
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
|
|
@@ -174,9 +174,11 @@
|
|
|
174
174
|
:-ms-input-placeholder { /* IE 10+ */
|
|
175
175
|
color: $color-secondary;
|
|
176
176
|
}
|
|
177
|
+
/* stylelint-disable selector-pseudo-class-no-unknown */
|
|
177
178
|
:-moz-placeholder { /* Firefox 18- */
|
|
178
179
|
color: $color-secondary;
|
|
179
180
|
}
|
|
181
|
+
/* stylelint-enable selector-pseudo-class-no-unknown */
|
|
180
182
|
|
|
181
183
|
// FILTER SELECT WRAPPER
|
|
182
184
|
.select-wrapper {
|
|
@@ -92,31 +92,64 @@
|
|
|
92
92
|
* ----------------------------------------
|
|
93
93
|
*/
|
|
94
94
|
@keyframes float-action-active {
|
|
95
|
-
from {
|
|
96
|
-
|
|
95
|
+
from {
|
|
96
|
+
opacity: 0;
|
|
97
|
+
transform: rotateZ(-70deg);
|
|
98
|
+
}
|
|
99
|
+
to {
|
|
100
|
+
opacity: 1;
|
|
101
|
+
transform: rotateZ(0deg);
|
|
102
|
+
}
|
|
97
103
|
}
|
|
98
104
|
|
|
99
105
|
@keyframes float-action-disable {
|
|
100
|
-
from {
|
|
101
|
-
|
|
106
|
+
from {
|
|
107
|
+
opacity: 1;
|
|
108
|
+
transform: rotateZ(0deg);
|
|
109
|
+
}
|
|
110
|
+
to {
|
|
111
|
+
opacity: 0;
|
|
112
|
+
transform: rotateZ(-70deg);
|
|
113
|
+
}
|
|
102
114
|
}
|
|
103
115
|
|
|
104
116
|
@keyframes float-action-button-in {
|
|
105
|
-
from {
|
|
106
|
-
|
|
117
|
+
from {
|
|
118
|
+
opacity: 1;
|
|
119
|
+
transform: rotateZ(0deg);
|
|
120
|
+
}
|
|
121
|
+
to {
|
|
122
|
+
opacity: 0;
|
|
123
|
+
transform: rotateZ(180deg);
|
|
124
|
+
}
|
|
107
125
|
}
|
|
108
126
|
|
|
109
127
|
@keyframes float-action-button-out {
|
|
110
|
-
from {
|
|
111
|
-
|
|
128
|
+
from {
|
|
129
|
+
opacity: 0;
|
|
130
|
+
transform: rotateZ(180deg);
|
|
131
|
+
}
|
|
132
|
+
to {
|
|
133
|
+
opacity: 1;
|
|
134
|
+
transform: rotateZ(0deg);
|
|
135
|
+
}
|
|
112
136
|
}
|
|
113
137
|
|
|
114
138
|
@keyframes float-button-in {
|
|
115
139
|
from {opacity: 0;}
|
|
116
|
-
to {
|
|
140
|
+
to {
|
|
141
|
+
opacity: 1;
|
|
142
|
+
transform: scale(1);
|
|
143
|
+
}
|
|
117
144
|
}
|
|
118
145
|
|
|
119
146
|
@keyframes float-button-out {
|
|
120
|
-
from {
|
|
121
|
-
|
|
147
|
+
from {
|
|
148
|
+
opacity: 1;
|
|
149
|
+
transform: scale(1);
|
|
150
|
+
}
|
|
151
|
+
to {
|
|
152
|
+
opacity: 0;
|
|
153
|
+
transform: scale(0);
|
|
154
|
+
}
|
|
122
155
|
}
|
|
@@ -277,6 +277,14 @@ a.navigate-back {
|
|
|
277
277
|
.actions-wrapper {
|
|
278
278
|
left: auto;
|
|
279
279
|
right: 0;
|
|
280
|
+
display: flex;
|
|
281
|
+
justify-content: center;
|
|
282
|
+
gap: 6%;
|
|
283
|
+
|
|
284
|
+
.step-action-button {
|
|
285
|
+
width: 110px;
|
|
286
|
+
text-align: center;
|
|
287
|
+
}
|
|
280
288
|
}
|
|
281
289
|
}
|
|
282
290
|
}
|
|
@@ -680,14 +688,6 @@ ul.list-view {
|
|
|
680
688
|
}
|
|
681
689
|
}
|
|
682
690
|
|
|
683
|
-
.table-body {
|
|
684
|
-
.table-row {
|
|
685
|
-
.table-cell {
|
|
686
|
-
|
|
687
|
-
}
|
|
688
|
-
}
|
|
689
|
-
}
|
|
690
|
-
|
|
691
691
|
.table-footer {
|
|
692
692
|
.table-row {
|
|
693
693
|
border-bottom: none;
|
|
@@ -957,10 +957,6 @@ ul.wizard-steps {
|
|
|
957
957
|
&:first-child {
|
|
958
958
|
padding-top: 0;
|
|
959
959
|
|
|
960
|
-
&::after {
|
|
961
|
-
|
|
962
|
-
}
|
|
963
|
-
|
|
964
960
|
// Remove line from first element
|
|
965
961
|
&::before {
|
|
966
962
|
display: none;
|
|
@@ -1034,21 +1030,6 @@ ul.wizard-steps {
|
|
|
1034
1030
|
}
|
|
1035
1031
|
}
|
|
1036
1032
|
|
|
1037
|
-
&.small {
|
|
1038
|
-
li {
|
|
1039
|
-
padding-top: 20px;
|
|
1040
|
-
// LINES
|
|
1041
|
-
|
|
1042
|
-
&:first-child {
|
|
1043
|
-
padding-top: 0;
|
|
1044
|
-
}
|
|
1045
|
-
|
|
1046
|
-
&::before {
|
|
1047
|
-
height: 60px;
|
|
1048
|
-
bottom: 20%;
|
|
1049
|
-
}
|
|
1050
|
-
}
|
|
1051
|
-
}
|
|
1052
1033
|
}
|
|
1053
1034
|
|
|
1054
1035
|
p.code-validation-instruction {
|
|
@@ -1198,7 +1179,11 @@ section.account-wrapper {
|
|
|
1198
1179
|
|
|
1199
1180
|
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
|
|
1200
1181
|
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
|
|
1201
|
-
@keyframes spin { 100% {
|
|
1182
|
+
@keyframes spin { 100% {
|
|
1183
|
+
-webkit-transform: rotate(360deg);
|
|
1184
|
+
transform:rotate(360deg);
|
|
1185
|
+
}
|
|
1186
|
+
}
|
|
1202
1187
|
|
|
1203
1188
|
.signature-box-wrapper {
|
|
1204
1189
|
width: 100%;
|
|
@@ -397,6 +397,10 @@ header.app-header {
|
|
|
397
397
|
border-bottom: none;
|
|
398
398
|
}
|
|
399
399
|
}
|
|
400
|
+
|
|
401
|
+
@include responsive($breakpoint-medium) {
|
|
402
|
+
display: none;
|
|
403
|
+
}
|
|
400
404
|
}
|
|
401
405
|
|
|
402
406
|
.mobile-nav, .header-nav {
|
|
@@ -580,20 +584,6 @@ header.app-header {
|
|
|
580
584
|
}
|
|
581
585
|
}
|
|
582
586
|
|
|
583
|
-
// Mobile Navigation
|
|
584
|
-
.mobile-nav {
|
|
585
|
-
@include responsive($breakpoint-medium) {
|
|
586
|
-
display: none;
|
|
587
|
-
}
|
|
588
|
-
}
|
|
589
|
-
|
|
590
|
-
// Mobile Navigation
|
|
591
|
-
.mobile-nav {
|
|
592
|
-
@include responsive($breakpoint-medium) {
|
|
593
|
-
display: none;
|
|
594
|
-
}
|
|
595
|
-
}
|
|
596
|
-
|
|
597
587
|
input#burger {
|
|
598
588
|
opacity: 0;
|
|
599
589
|
}
|
|
@@ -152,10 +152,6 @@ body#app, .app-layout {
|
|
|
152
152
|
background-color: transparent;
|
|
153
153
|
}
|
|
154
154
|
|
|
155
|
-
&::-webkit-scrollbar{
|
|
156
|
-
// display: none;
|
|
157
|
-
}
|
|
158
|
-
|
|
159
155
|
// Centered Content
|
|
160
156
|
&.centered-content {
|
|
161
157
|
.content-wrapper {
|
|
@@ -163,10 +159,6 @@ body#app, .app-layout {
|
|
|
163
159
|
margin: 0 auto;
|
|
164
160
|
text-align: center;
|
|
165
161
|
|
|
166
|
-
// Content Sizes Overwrite
|
|
167
|
-
&.large {
|
|
168
|
-
|
|
169
|
-
}
|
|
170
162
|
}
|
|
171
163
|
}
|
|
172
164
|
}
|
|
@@ -4,10 +4,6 @@
|
|
|
4
4
|
|
|
5
5
|
// Content Box - Content Elements
|
|
6
6
|
.content-box {
|
|
7
|
-
.content-title {
|
|
8
|
-
|
|
9
|
-
}
|
|
10
|
-
|
|
11
7
|
.content-subtitle {
|
|
12
8
|
color: #00C8E1;
|
|
13
9
|
text-transform: uppercase;
|
|
@@ -557,10 +553,6 @@ section#our-investors {
|
|
|
557
553
|
max-width: 75%;
|
|
558
554
|
}
|
|
559
555
|
|
|
560
|
-
.investor-name {
|
|
561
|
-
|
|
562
|
-
}
|
|
563
|
-
|
|
564
556
|
.investor-description {
|
|
565
557
|
color: $color-secondary;
|
|
566
558
|
}
|
|
@@ -606,10 +598,6 @@ section#help-center {
|
|
|
606
598
|
}
|
|
607
599
|
}
|
|
608
600
|
|
|
609
|
-
.section-category-cta {
|
|
610
|
-
|
|
611
|
-
}
|
|
612
|
-
|
|
613
601
|
aside {
|
|
614
602
|
display: none;
|
|
615
603
|
|
|
@@ -736,11 +724,6 @@ section.insurance-details {
|
|
|
736
724
|
}
|
|
737
725
|
}
|
|
738
726
|
|
|
739
|
-
main {
|
|
740
|
-
article {
|
|
741
|
-
|
|
742
|
-
}
|
|
743
|
-
}
|
|
744
727
|
}
|
|
745
728
|
|
|
746
729
|
section#in-the-news {
|
|
@@ -847,13 +830,6 @@ section#our-values {
|
|
|
847
830
|
margin: 0 auto 10px;
|
|
848
831
|
}
|
|
849
832
|
|
|
850
|
-
.value-title {
|
|
851
|
-
|
|
852
|
-
}
|
|
853
|
-
|
|
854
|
-
.value-description {
|
|
855
|
-
|
|
856
|
-
}
|
|
857
833
|
}
|
|
858
834
|
|
|
859
835
|
section#career-opportunities {
|
|
@@ -1176,14 +1152,6 @@ section.simulators.simulators-wrapper {
|
|
|
1176
1152
|
}
|
|
1177
1153
|
}
|
|
1178
1154
|
|
|
1179
|
-
.table-body {
|
|
1180
|
-
.table-row {
|
|
1181
|
-
.table-cell {
|
|
1182
|
-
|
|
1183
|
-
}
|
|
1184
|
-
}
|
|
1185
|
-
}
|
|
1186
|
-
|
|
1187
1155
|
.table-footer {
|
|
1188
1156
|
.table-row {
|
|
1189
1157
|
border-bottom: none;
|
|
@@ -11137,7 +11137,7 @@ $rem-base: 16px !default;
|
|
|
11137
11137
|
#############################################################################*/
|
|
11138
11138
|
|
|
11139
11139
|
// Media Queries
|
|
11140
|
-
|
|
11140
|
+
/* stylelint-disable media-query-no-invalid */
|
|
11141
11141
|
@mixin responsive($break-point) {
|
|
11142
11142
|
|
|
11143
11143
|
@media only screen and (min-width: rem-calc($break-point)) { @content; }
|
|
@@ -11167,7 +11167,7 @@ $rem-base: 16px !default;
|
|
|
11167
11167
|
@media only screen and (max-height: rem-calc($break-point)) { @content; }
|
|
11168
11168
|
|
|
11169
11169
|
}
|
|
11170
|
-
|
|
11170
|
+
/* stylelint-enable media-query-no-invalid */
|
|
11171
11171
|
|
|
11172
11172
|
// ------------------------------------------------
|
|
11173
11173
|
// Retina display support
|
|
@@ -11177,10 +11177,11 @@ div.logo {
|
|
|
11177
11177
|
@include background-retina("logo2x.png", 100px, 25px);
|
|
11178
11178
|
}
|
|
11179
11179
|
*/
|
|
11180
|
+
/* stylelint-disable media-feature-name-no-unknown */
|
|
11180
11181
|
@mixin background-retina($image, $width, $height) {
|
|
11181
11182
|
@media
|
|
11182
11183
|
only screen and (-webkit-min-device-pixel-ratio: 1.3),
|
|
11183
|
-
only screen and (-o-min-device-pixel-ratio: 2.6/2),
|
|
11184
|
+
only screen and (-o-min-device-pixel-ratio: 2.6 / 2),
|
|
11184
11185
|
only screen and (min--moz-device-pixel-ratio: 1.3),
|
|
11185
11186
|
only screen and (min-device-pixel-ratio: 1.3),
|
|
11186
11187
|
only screen and (min-resolution: 1.3dppx) {
|
|
@@ -11188,6 +11189,7 @@ div.logo {
|
|
|
11188
11189
|
background-size: $width $height;
|
|
11189
11190
|
}
|
|
11190
11191
|
}
|
|
11192
|
+
/* stylelint-enable media-feature-name-no-unknown */
|
|
11191
11193
|
|
|
11192
11194
|
|
|
11193
11195
|
/*#############################################################################
|