@axa-fr/design-system-slash-css 1.2.1-alpha.8 → 1.2.1-alpha.80

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/dist/Accordion/Accordion.css +1 -1
  2. package/dist/Accordion/Accordion.css.map +1 -1
  3. package/dist/Accordion/Accordion.scss +23 -4
  4. package/dist/Alert/Alert.css +1 -1
  5. package/dist/Alert/Alert.css.map +1 -1
  6. package/dist/Alert/Alert.scss +4 -108
  7. package/dist/Button/Button.css +1 -1
  8. package/dist/Button/Button.css.map +1 -1
  9. package/dist/Button/Button.scss +48 -59
  10. package/dist/Card/Card.css +82 -0
  11. package/dist/Form/Checkbox/Checkbox.css +1 -1
  12. package/dist/Form/Checkbox/Checkbox.css.map +1 -1
  13. package/dist/Form/Checkbox/Checkbox.scss +187 -82
  14. package/dist/Form/Date/Date.css +1 -1
  15. package/dist/Form/Date/Date.css.map +1 -1
  16. package/dist/Form/MultiSelect/MultiSelect.css +1 -1
  17. package/dist/Form/MultiSelect/MultiSelect.css.map +1 -1
  18. package/dist/Form/MultiSelect/MultiSelect.scss +2 -3
  19. package/dist/Form/Pass/Pass.css +1 -1
  20. package/dist/Form/Pass/Pass.css.map +1 -1
  21. package/dist/Form/Radio/Radio.css +1 -1
  22. package/dist/Form/Radio/Radio.css.map +1 -1
  23. package/dist/Form/Radio/Radio.scss +106 -102
  24. package/dist/Form/Radio/RadioCardGroup.css +86 -0
  25. package/dist/Form/Select/Select.css +1 -1
  26. package/dist/Form/Select/Select.css.map +1 -1
  27. package/dist/Form/Select/Select.scss +7 -7
  28. package/dist/Form/Text/Text.css +1 -1
  29. package/dist/Form/Text/Text.css.map +1 -1
  30. package/dist/Form/Text/Text.scss +27 -21
  31. package/dist/Form/Textarea/Textarea.css +1 -1
  32. package/dist/Form/Textarea/Textarea.css.map +1 -1
  33. package/dist/Form/Textarea/Textarea.scss +24 -23
  34. package/dist/Form/core/FormCore.css +1 -1
  35. package/dist/Form/core/FormCore.css.map +1 -1
  36. package/dist/Form/core/FormCore.scss +5 -25
  37. package/dist/Layout/Header/AnchorNavBar/AnchorNavBar.css +61 -0
  38. package/dist/Layout/Header/HeaderTitle/HeaderTitle.css +1 -1
  39. package/dist/Layout/Header/HeaderTitle/HeaderTitle.css.map +1 -1
  40. package/dist/Layout/Header/HeaderTitle/HeaderTitle.scss +37 -20
  41. package/dist/Message/Message.css +83 -0
  42. package/dist/Modal/Modal.css +1 -1
  43. package/dist/Modal/Modal.css.map +1 -1
  44. package/dist/Modal/Modal.scss +30 -55
  45. package/dist/Steps/Steps.css +1 -1
  46. package/dist/Steps/Steps.css.map +1 -1
  47. package/dist/Steps/Steps.scss +55 -46
  48. package/dist/Steps/VerticalStep.css +102 -0
  49. package/dist/Table/Pager.css +1 -1
  50. package/dist/Table/Pager.css.map +1 -1
  51. package/dist/Table/Pager.scss +3 -2
  52. package/dist/Table/Paging.css +1 -1
  53. package/dist/Table/Paging.css.map +1 -1
  54. package/dist/common/tokens.css +77 -56
  55. package/dist/slash.css +1 -1
  56. package/dist/slash.css.map +1 -1
  57. package/dist/slash.scss +4 -2
  58. package/package.json +1 -1
  59. package/dist/Form/Choice/Choice.css +0 -1
  60. package/dist/Form/Choice/Choice.css.map +0 -1
  61. package/dist/Form/Choice/Choice.scss +0 -186
@@ -1,4 +1,3 @@
1
- @use "../../common/common" as common;
2
1
  @use "../core/FormCore";
3
2
  @use "../../common/grid";
4
3
 
@@ -6,106 +5,118 @@
6
5
  .af-form {
7
6
  &__radio {
8
7
  position: relative;
9
- display: block;
10
- border-bottom: 1px solid common.$color-silver;
8
+ display: flex;
9
+ border-bottom: 1px solid var(--gray40);
10
+ }
11
+
12
+ &__radio,
13
+ &__radio-inline {
11
14
  align-items: center;
12
15
 
16
+ --radio-color: var(--disabled-color);
17
+ --label-color: var(--text-color);
18
+
19
+ color: var(--label-color);
20
+
13
21
  &:nth-last-child(1) {
14
22
  border-bottom: 0;
15
23
  }
16
- }
17
24
 
18
- &__radio-inline {
19
- position: relative;
20
- display: inline-flex;
21
- margin-right: 1rem;
22
- align-items: center;
23
-
24
- .af-form__label {
25
- padding: 0;
25
+ &:hover,
26
+ &:focus-within {
27
+ --radio-color: var(--brand-primary);
28
+ --label-color: var(--brand-primary);
26
29
  }
27
- }
28
30
 
29
- &__radio,
30
- &__radio-inline {
31
- &--error {
32
- .af-form__label {
33
- color: common.$color-red-axa;
31
+ &:has(.af-form__input-radio:checked) {
32
+ --radio-color: var(--brand-primary);
33
+ --label-color: var(--brand-primary);
34
+ }
34
35
 
35
- &::before {
36
- border-color: common.$color-red-axa;
37
- }
38
- }
36
+ &:has(.af-form__input-radio[aria-invalid="true"]) {
37
+ --radio-color: var(--error-color);
38
+ --label-color: var(--error-color);
39
39
  }
40
40
 
41
- &--warning {
42
- .af-form__label {
43
- color: common.$color-orange-dark;
41
+ &:has(.af-form__input-radio:disabled) {
42
+ --radio-color: var(--disabled-color);
43
+ --label-color: var(--disabled-color);
44
44
 
45
- &::before {
46
- border-color: common.$color-orange-dark;
47
- }
48
- }
45
+ cursor: not-allowed;
49
46
  }
50
47
 
51
- &--disabled {
52
- .af-form__label {
53
- opacity: 0.4;
54
- cursor: not-allowed;
55
- }
48
+ .af-form__input-radio[aria-invalid="true"]:checked {
49
+ background-color: var(--radio-color);
56
50
  }
57
51
 
58
- .af-form__label {
59
- &::before {
60
- position: absolute;
61
- top: 50%;
62
- left: 0;
52
+ .af-form__input-radio {
53
+ display: grid;
54
+ width: 20px;
55
+ height: 20px;
56
+ border: 1px solid var(--radio-color);
57
+ border-radius: 50%;
58
+ place-content: center;
59
+ cursor: pointer;
60
+ appearance: none;
61
+
62
+ &:checked::before {
63
63
  display: block;
64
- width: 1.25rem;
65
- height: 1.25rem;
66
- margin-right: 0.5em;
67
- border: 1px solid common.$color-silver;
68
- border-radius: 100%;
69
- background: common.$white;
70
- transform: translate(0, -50%);
64
+ width: 12px;
65
+ height: 12px;
66
+ border-radius: 50%;
67
+ background-color: var(--radio-color);
68
+ transition: 120ms transform ease-in-out;
71
69
  content: "";
72
70
  }
73
71
 
74
- &::after {
75
- position: absolute;
76
- top: 50%;
77
- left: 3px;
78
- display: none;
79
- width: 0.9rem;
80
- height: 0.9rem;
81
- margin-right: 0.5em;
82
- border-radius: 100%;
83
- background: common.$color-azur;
84
- transform: translate(0, -50%);
85
- content: "";
72
+ &:disabled {
73
+ cursor: not-allowed;
74
+
75
+ & + .af-form__label {
76
+ cursor: not-allowed;
77
+ }
86
78
  }
87
79
  }
80
+ }
88
81
 
89
- .af-form__input-radio {
90
- position: absolute;
91
- opacity: 0;
82
+ &__radio-inline {
83
+ position: relative;
84
+ display: flex;
85
+ margin-right: 1rem;
86
+ align-items: center;
92
87
 
93
- &:checked + .af-form__label {
94
- &::after {
95
- display: block;
96
- }
97
- }
88
+ .af-form__label {
89
+ padding: 0;
90
+ }
98
91
 
99
- &:focus + .af-form__label {
100
- color: common.$color-axa;
92
+ .af-form__description {
93
+ padding-left: 0.5rem;
94
+ }
95
+ }
101
96
 
102
- &::before {
103
- border-color: common.$color-axa;
97
+ .af-form__text:has(.af-form__input-radio-inline) {
98
+ display: flex;
99
+ }
100
+
101
+ &__text {
102
+ &--warning {
103
+ .af-form__radio,
104
+ .af-form__radio-inline,
105
+ .af-form__radio:has(.af-form__input-radio:checked),
106
+ .af-form__radio-inline:has(.af-form__input-radio:checked) {
107
+ --radio-color: var(--warning-color);
108
+ --label-color: var(--warning-color);
109
+
110
+ .af-form__input-radio:checked {
111
+ background-color: var(--warning-color);
104
112
  }
105
113
  }
106
114
  }
107
115
  }
108
116
 
117
+ /**
118
+ * This is the "button" variant of the radio inputs.
119
+ */
109
120
  &__radio-custom {
110
121
  position: relative;
111
122
  display: inline-flex;
@@ -114,12 +125,16 @@
114
125
  text-align: center;
115
126
 
116
127
  .af-form__label {
128
+ --background-color: var(--inactive-button-background);
129
+ --border-color: var(--inactive-button-border-color);
130
+ --label-color: var(--text-color);
131
+
117
132
  margin: 0;
118
133
  padding: 0.6rem 2rem;
119
- border: common.$color-gray;
120
134
  font-weight: normal;
121
- background: common.$color-mercury;
122
- box-shadow: inset 0 -2px 0 0 common.$color-scorpion;
135
+ color: var(--label-color);
136
+ background: var(--background-color);
137
+ box-shadow: inset 0 -2px 0 0 var(--border-color);
123
138
  cursor: pointer;
124
139
  }
125
140
 
@@ -128,26 +143,26 @@
128
143
  }
129
144
 
130
145
  .af-form__input-radio {
131
- position: absolute;
132
- opacity: 0;
133
-
134
- &:checked + .af-form__label {
135
- color: common.$white;
136
- background-color: common.$color-azur;
137
- box-shadow: inset 0 -2px 0 0 common.$color-axa;
138
- }
146
+ appearance: none;
139
147
 
148
+ &:checked + .af-form__label,
140
149
  &:focus + .af-form__label {
141
- color: common.$white;
142
- background-color: common.$color-azur;
143
- box-shadow: 0 0 5px common.$color-axa;
150
+ --background-color: var(--brand-primary);
151
+ --border-color: var(--active-button-border-color);
152
+ --label-color: var(--white);
144
153
  }
145
154
  }
146
155
 
156
+ .af-form__label:hover:hover {
157
+ --background-color: var(--brand-primary);
158
+ --border-color: var(--active-button-border-color);
159
+ --label-color: var(--white);
160
+ }
161
+
147
162
  &--disabled {
148
163
  .af-form__label {
149
164
  opacity: 0.6;
150
- box-shadow: inset 0 -2px 0 0 common.$color-silver;
165
+ box-shadow: inset 0 -2px 0 0 var(--gray40);
151
166
  cursor: not-allowed;
152
167
  }
153
168
 
@@ -158,28 +173,17 @@
158
173
 
159
174
  &--error {
160
175
  .af-form__label {
161
- border: 1px solid common.$error-custom-border;
162
- color: common.$color-red-axa;
163
- background: common.$error-custom-bg;
164
- box-shadow: inset 0 -2px 0 0 common.$color-red-axa;
176
+ --label-color: var(--error-color);
177
+ --background-color: var(--error-button-background);
178
+ --border-color: var(--error-color);
165
179
  }
166
180
  }
167
181
 
168
182
  &--warning {
169
183
  .af-form__label {
170
- border: 1px solid common.$color-alertDanger-colorBorder;
171
- color: common.$color-orange-dark;
172
- background: common.$color-alertDanger-bgColor;
173
- box-shadow: inset 0 -2px 0 0 common.$color-orange-dark;
174
- }
175
- }
176
-
177
- &:hover {
178
- .af-form__label {
179
- border-color: common.$color-axa;
180
- color: common.$white;
181
- background-color: common.$color-azur;
182
- box-shadow: inset 0 -2px 0 0 common.$color-axa;
184
+ --label-color: var(--warning-color);
185
+ --background-color: var(--orange10);
186
+ --border-color: var(--warning-color);
183
187
  }
184
188
  }
185
189
  }
@@ -0,0 +1,86 @@
1
+ .af-form__radio-card-group {
2
+ display: inline-flex;
3
+ grid-gap: 25px;
4
+ flex-flow: row wrap;
5
+
6
+ .af-card {
7
+ --color-radio-input-border: var(--gray50);
8
+
9
+ width: var(--width-radio-card, initial);
10
+ min-width: 11.25rem;
11
+ height: var(--height-radio-card, initial);
12
+ text-align: center;
13
+ cursor: pointer;
14
+
15
+ input[type="radio"] {
16
+ display: grid;
17
+ width: 1.1875rem;
18
+ height: 1.1875rem;
19
+ margin-bottom: 1.5rem;
20
+ border: 1px solid var(--color-radio-input-border);
21
+ border-radius: 50%;
22
+ place-content: center;
23
+ transform: translateY(-0.075em);
24
+ cursor: pointer;
25
+ appearance: none;
26
+
27
+ &::before {
28
+ width: 0.6875rem;
29
+ height: 0.6875rem;
30
+ border-radius: 50%;
31
+ box-shadow: inset 1em 1em var(--color-radio-input-border);
32
+ transform: scale(0);
33
+ transition: 120ms transform ease-in-out;
34
+ content: "";
35
+ }
36
+
37
+ &:checked {
38
+ --color-radio-input-border: var(--color-border-hover);
39
+ }
40
+
41
+ &:disabled {
42
+ --color-radio-input-border: var(--gray40);
43
+
44
+ cursor: not-allowed;
45
+ }
46
+
47
+ &:checked::before {
48
+ transform: scale(1);
49
+ }
50
+ }
51
+
52
+ &:hover {
53
+ --color-radio-input-border: var(--axablue80);
54
+ }
55
+
56
+ &:has(input[type="radio"]:checked) {
57
+ border: 2px solid var(--color-border-selected);
58
+
59
+ --card-text-color: var(--gray80);
60
+ --card-icon-color: var(--axablue80);
61
+ }
62
+
63
+ &:has(input[type="radio"]:disabled) {
64
+ --card-border-color: transparent;
65
+ --card-text-color: var(--gray40);
66
+ --card-icon-color: var(--gray40);
67
+
68
+ cursor: not-allowed;
69
+ }
70
+ }
71
+
72
+ .af-card--error {
73
+ --color-radio-input-border: var(--red30);
74
+ }
75
+ }
76
+
77
+ .af-form__radio-card-group--horizontal {
78
+ display: flex;
79
+ flex-flow: column nowrap;
80
+
81
+ /* stylelint-disable-next-line no-descending-specificity */
82
+ .af-card input[type="radio"] {
83
+ margin-right: 1.5rem;
84
+ margin-bottom: 0;
85
+ }
86
+ }
@@ -1 +1 @@
1
- .af-form{background:#f5f5f5;padding:1rem}.af-form__group{align-items:center;display:flex;flex-wrap:wrap;margin-bottom:3rem}.af-form__group--label-top{align-items:flex-start}.af-form__group-label{font-weight:400;margin:0}.af-form__group-label--required:after{color:#c7102e;content:" *"}.af-form__message{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start;margin:.2rem 0;min-height:1.6em;position:absolute}.af-form__message .glyphicon{margin-right:.4rem;width:17px}.af-form__message--error{color:#ff1721}.af-form__message--warning{color:#c5901b}.af-form__help{bottom:-20px;color:#7f7f7f;display:block;font-size:.8125em;position:absolute}.af-form__input-cmplt{display:inline-flex;margin-left:1rem}.af-form__fields-inline{align-items:flex-start;display:flex;justify-content:flex-start}.af-form__fields-inline .af-form__text{padding:0}.af-form__input-inline{margin-right:1rem}.af-form__label{align-items:center;cursor:pointer;display:flex;font-weight:400;margin:0;padding:1rem 0}.af-form__indicator{background:#fff;border:1px solid #ccc;height:1rem;left:0;position:absolute;top:50%;transform:translateY(-50%);width:1rem}.af-form__indicator .glyphicon-ok{display:none;font-size:.625rem;font-weight:100;left:2px;position:absolute;top:2px;width:10px}.af-form__description{padding-left:1.8rem}.container{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px;width:100%}@media (width >= 576px){.container{max-width:540px}}@media (width >= 768px){.container{max-width:720px}}@media (width >= 992px){.container{max-width:960px}}@media (width >= 1200px){.container{max-width:1440px}}.container-fluid{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px;width:100%}.row{display:flex;flex-wrap:wrap;margin-left:-15px;margin-right:-15px}.no-gutters{margin-left:0;margin-right:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{padding-left:15px;padding-right:15px;position:relative;width:100%}.col{flex-basis:0;flex-grow:1;max-width:100%}.col-auto{flex:0 0 auto;max-width:100%;width:auto}.col-1{flex:0 0 8.3333%;max-width:8.3333%}.col-2{flex:0 0 16.6667%;max-width:16.6667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.3333%;max-width:33.3333%}.col-5{flex:0 0 41.6667%;max-width:41.6667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.3333%;max-width:58.3333%}.col-8{flex:0 0 66.6667%;max-width:66.6667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.3333%;max-width:83.3333%}.col-11{flex:0 0 91.6667%;max-width:91.6667%}.col-12{flex:0 0 100%;max-width:100%}.no-gutters>.col,.no-gutters>[class*=col-]{padding-left:0;padding-right:0}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.3333%}.offset-2{margin-left:16.6667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.3333%}.offset-5{margin-left:41.6667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.3333%}.offset-8{margin-left:66.6667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.3333%}.offset-11{margin-left:91.6667%}@media (width >= 576px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.col-sm-auto{flex:0 0 auto;max-width:100%;width:auto}.col-sm-1{flex:0 0 8.3333%;max-width:8.3333%}.col-sm-2{flex:0 0 16.6667%;max-width:16.6667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.3333%;max-width:33.3333%}.col-sm-5{flex:0 0 41.6667%;max-width:41.6667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.3333%;max-width:58.3333%}.col-sm-8{flex:0 0 66.6667%;max-width:66.6667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.3333%;max-width:83.3333%}.col-sm-11{flex:0 0 91.6667%;max-width:91.6667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.3333%}.offset-sm-2{margin-left:16.6667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.3333%}.offset-sm-5{margin-left:41.6667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.3333%}.offset-sm-8{margin-left:66.6667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.3333%}.offset-sm-11{margin-left:91.6667%}}@media (width >= 768px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.col-md-auto{flex:0 0 auto;max-width:100%;width:auto}.col-md-1{flex:0 0 8.3333%;max-width:8.3333%}.col-md-2{flex:0 0 16.6667%;max-width:16.6667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.3333%;max-width:33.3333%}.col-md-5{flex:0 0 41.6667%;max-width:41.6667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.3333%;max-width:58.3333%}.col-md-8{flex:0 0 66.6667%;max-width:66.6667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.3333%;max-width:83.3333%}.col-md-11{flex:0 0 91.6667%;max-width:91.6667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.3333%}.offset-md-2{margin-left:16.6667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333%}.offset-md-5{margin-left:41.6667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.3333%}.offset-md-8{margin-left:66.6667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.3333%}.offset-md-11{margin-left:91.6667%}}@media (width >= 992px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.col-lg-auto{flex:0 0 auto;max-width:100%;width:auto}.col-lg-1{flex:0 0 8.3333%;max-width:8.3333%}.col-lg-2{flex:0 0 16.6667%;max-width:16.6667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.3333%;max-width:33.3333%}.col-lg-5{flex:0 0 41.6667%;max-width:41.6667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.3333%;max-width:58.3333%}.col-lg-8{flex:0 0 66.6667%;max-width:66.6667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.3333%;max-width:83.3333%}.col-lg-11{flex:0 0 91.6667%;max-width:91.6667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.3333%}.offset-lg-2{margin-left:16.6667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.3333%}.offset-lg-5{margin-left:41.6667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.3333%}.offset-lg-8{margin-left:66.6667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.3333%}.offset-lg-11{margin-left:91.6667%}}@media (width >= 1200px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.col-xl-auto{flex:0 0 auto;max-width:100%;width:auto}.col-xl-1{flex:0 0 8.3333%;max-width:8.3333%}.col-xl-2{flex:0 0 16.6667%;max-width:16.6667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.3333%;max-width:33.3333%}.col-xl-5{flex:0 0 41.6667%;max-width:41.6667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.3333%;max-width:58.3333%}.col-xl-8{flex:0 0 66.6667%;max-width:66.6667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.3333%;max-width:83.3333%}.col-xl-11{flex:0 0 91.6667%;max-width:91.6667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.3333%}.offset-xl-2{margin-left:16.6667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.3333%}.offset-xl-5{margin-left:41.6667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.3333%}.offset-xl-8{margin-left:66.6667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.3333%}.offset-xl-11{margin-left:91.6667%}}.af-form__select{position:relative}.af-form__select-container{background:#fff;border:1px solid #ccc;display:inline-block;position:relative}.af-form__select-container .glyphicon-menu-down{font-size:.7em;height:.7em;position:absolute;right:1em;top:50%;transform:translateY(-50%)}.af-form__select--success .af-form__select-container,.af-form__select--valid .af-form__select-container{margin-right:1rem}.af-form__select--success:after,.af-form__select--valid:after{color:#1cc54e;content:"\eaba";font-family:icons}.af-form__select--success>.af-btn--circle,.af-form__select--success>.af-form__message,.af-form__select--valid:after,.af-form__select--valid>.af-btn--circle,.af-form__select--valid>.af-form__message{display:none}.af-form__select--valid .glyphicon-ok{margin-left:2px;position:absolute;right:-25px;top:50%;transform:translateY(-50%);width:17px;fill:#1cc578}.af-form__select--disabled .af-form__select-container{background:#e5e5e5;cursor:not-allowed}.af-form__select--error .af-form__input-text,.af-form__select--error .af-form__select-container{border:1px solid #ff1721;color:#ff1721}.af-form__select--error select{color:#ff1721}.af-form__select--warning .af-form__input-text,.af-form__select--warning .af-form__select-container{border:1px solid #c5901b;color:#c5901b}.af-form__input-select{-webkit-appearance:none;appearance:none;background:#0000;border:0;font-size:1em;padding:.5em 2.7em .5em 1em;position:relative;z-index:1}.af-form__input-select::-ms-expand{display:none}.af-form__input-select:focus{outline:1px solid #00008f}.af-form__input-select--hasinfobulle{margin-right:1rem}
1
+ .af-form{background:#f5f5f5;padding:1rem}.af-form__group{align-items:center;display:flex;flex-wrap:wrap;margin-bottom:3rem}.af-form__group--label-top{align-items:flex-start}.af-form__group-label{font-size:1rem;font-weight:400;margin:0}.af-form__group-label--required:after{color:var(--error-color);content:" *"}.af-form__message{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start;margin:.2rem 0;min-height:1.6em;position:absolute}.af-form__message .glyphicon{margin-right:.4rem;width:17px}.af-form__message--error{color:var(--error-color)}.af-form__message--warning{color:var(--warning-color)}.af-form__help{bottom:-20px;color:var(--help-color);display:block;font-size:.8125em;position:absolute}.af-form__input-cmplt{display:inline-flex;margin-left:1rem}.af-form__fields-inline{align-items:flex-start;display:flex;justify-content:flex-start}.af-form__fields-inline .af-form__text{padding:0}.af-form__input-inline{margin-right:1rem}.af-form__label{align-items:center;cursor:pointer;display:flex;font-weight:400;margin:0;padding:1rem 0}.af-form__description{padding-left:1.8rem}.container{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px;width:100%}@media (width >= 576px){.container{max-width:540px}}@media (width >= 768px){.container{max-width:720px}}@media (width >= 992px){.container{max-width:960px}}@media (width >= 1200px){.container{max-width:1440px}}.container-fluid{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px;width:100%}.row{display:flex;flex-wrap:wrap;margin-left:-15px;margin-right:-15px}.no-gutters{margin-left:0;margin-right:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{padding-left:15px;padding-right:15px;position:relative;width:100%}.col{flex-basis:0;flex-grow:1;max-width:100%}.col-auto{flex:0 0 auto;max-width:100%;width:auto}.col-1{flex:0 0 8.3333%;max-width:8.3333%}.col-2{flex:0 0 16.6667%;max-width:16.6667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.3333%;max-width:33.3333%}.col-5{flex:0 0 41.6667%;max-width:41.6667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.3333%;max-width:58.3333%}.col-8{flex:0 0 66.6667%;max-width:66.6667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.3333%;max-width:83.3333%}.col-11{flex:0 0 91.6667%;max-width:91.6667%}.col-12{flex:0 0 100%;max-width:100%}.no-gutters>.col,.no-gutters>[class*=col-]{padding-left:0;padding-right:0}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.3333%}.offset-2{margin-left:16.6667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.3333%}.offset-5{margin-left:41.6667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.3333%}.offset-8{margin-left:66.6667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.3333%}.offset-11{margin-left:91.6667%}@media (width >= 576px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.col-sm-auto{flex:0 0 auto;max-width:100%;width:auto}.col-sm-1{flex:0 0 8.3333%;max-width:8.3333%}.col-sm-2{flex:0 0 16.6667%;max-width:16.6667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.3333%;max-width:33.3333%}.col-sm-5{flex:0 0 41.6667%;max-width:41.6667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.3333%;max-width:58.3333%}.col-sm-8{flex:0 0 66.6667%;max-width:66.6667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.3333%;max-width:83.3333%}.col-sm-11{flex:0 0 91.6667%;max-width:91.6667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.3333%}.offset-sm-2{margin-left:16.6667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.3333%}.offset-sm-5{margin-left:41.6667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.3333%}.offset-sm-8{margin-left:66.6667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.3333%}.offset-sm-11{margin-left:91.6667%}}@media (width >= 768px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.col-md-auto{flex:0 0 auto;max-width:100%;width:auto}.col-md-1{flex:0 0 8.3333%;max-width:8.3333%}.col-md-2{flex:0 0 16.6667%;max-width:16.6667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.3333%;max-width:33.3333%}.col-md-5{flex:0 0 41.6667%;max-width:41.6667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.3333%;max-width:58.3333%}.col-md-8{flex:0 0 66.6667%;max-width:66.6667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.3333%;max-width:83.3333%}.col-md-11{flex:0 0 91.6667%;max-width:91.6667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.3333%}.offset-md-2{margin-left:16.6667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333%}.offset-md-5{margin-left:41.6667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.3333%}.offset-md-8{margin-left:66.6667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.3333%}.offset-md-11{margin-left:91.6667%}}@media (width >= 992px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.col-lg-auto{flex:0 0 auto;max-width:100%;width:auto}.col-lg-1{flex:0 0 8.3333%;max-width:8.3333%}.col-lg-2{flex:0 0 16.6667%;max-width:16.6667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.3333%;max-width:33.3333%}.col-lg-5{flex:0 0 41.6667%;max-width:41.6667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.3333%;max-width:58.3333%}.col-lg-8{flex:0 0 66.6667%;max-width:66.6667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.3333%;max-width:83.3333%}.col-lg-11{flex:0 0 91.6667%;max-width:91.6667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.3333%}.offset-lg-2{margin-left:16.6667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.3333%}.offset-lg-5{margin-left:41.6667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.3333%}.offset-lg-8{margin-left:66.6667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.3333%}.offset-lg-11{margin-left:91.6667%}}@media (width >= 1200px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.col-xl-auto{flex:0 0 auto;max-width:100%;width:auto}.col-xl-1{flex:0 0 8.3333%;max-width:8.3333%}.col-xl-2{flex:0 0 16.6667%;max-width:16.6667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.3333%;max-width:33.3333%}.col-xl-5{flex:0 0 41.6667%;max-width:41.6667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.3333%;max-width:58.3333%}.col-xl-8{flex:0 0 66.6667%;max-width:66.6667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.3333%;max-width:83.3333%}.col-xl-11{flex:0 0 91.6667%;max-width:91.6667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.3333%}.offset-xl-2{margin-left:16.6667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.3333%}.offset-xl-5{margin-left:41.6667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.3333%}.offset-xl-8{margin-left:66.6667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.3333%}.offset-xl-11{margin-left:91.6667%}}.af-form__select{position:relative}.af-form__select-container{background:var(--white);border:1px solid var(--input-border-color);display:inline-block;position:relative}.af-form__select-container .glyphicon-menu-down{font-size:.7em;height:.7em;position:absolute;right:1em;top:50%;transform:translateY(-50%)}.af-form__select--success .af-form__select-container,.af-form__select--valid .af-form__select-container{margin-right:1rem}.af-form__select--success:after,.af-form__select--valid:after{color:var(--valid-element-color);content:"\eaba";font-family:icons}.af-form__select--success>.af-btn--circle,.af-form__select--success>.af-form__message,.af-form__select--valid:after,.af-form__select--valid>.af-btn--circle,.af-form__select--valid>.af-form__message{display:none}.af-form__select--valid .glyphicon-ok{margin-left:2px;position:absolute;right:-25px;top:50%;transform:translateY(-50%);width:17px;fill:#1cc578}.af-form__select--disabled .af-form__select-container{background:#e5e5e5;cursor:not-allowed}.af-form__select--error .af-form__input-text,.af-form__select--error .af-form__select-container{border:1px solid var(--error-color);color:var(--error-color)}.af-form__select--error select{color:var(--error-color)}.af-form__select--warning .af-form__input-text,.af-form__select--warning .af-form__select-container{border:1px solid var(--warning-color);color:var(--warning-color)}.af-form__input-select{-webkit-appearance:none;appearance:none;background:#0000;border:0;font-size:1em;padding:.5em 2.7em .5em 1em;position:relative;z-index:1}.af-form__input-select::-ms-expand{display:none}.af-form__input-select:focus{outline:solid 1px var(--brand-primary)}.af-form__input-select--hasinfobulle{margin-right:1rem}