@7shifts/sous-chef 3.41.1 → 3.42.1
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/index.css +367 -208
- package/dist/index.d.ts +1 -0
- package/dist/index.js +167 -88
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +167 -89
- package/dist/index.modern.js.map +1 -1
- package/dist/lists/Accordion/Accordion.d.ts +7 -0
- package/dist/lists/Accordion/AccordionItem/AccordionItem.d.ts +11 -0
- package/dist/lists/Accordion/AccordionItem/index.d.ts +1 -0
- package/dist/lists/Accordion/index.d.ts +1 -0
- package/dist/lists/Accordion/types.d.ts +6 -0
- package/dist/lists/index.d.ts +3 -1
- package/package.json +10 -4
package/dist/index.css
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--font-family-brand: "Proxima Nova", sans-serif;
|
|
3
|
+
--font-family-body: "Proxima Nova", sans-serif;
|
|
4
|
+
--font-size-100: 0.75rem;
|
|
5
|
+
--font-size-200: 0.875rem;
|
|
6
|
+
--font-size-300: 1rem;
|
|
7
|
+
--font-size-400: 1.25rem;
|
|
8
|
+
--font-size-500: 1.5rem;
|
|
9
|
+
--font-size-600: 1.75rem;
|
|
10
|
+
--font-size-700: 2.5rem;
|
|
11
|
+
--font-line-height-100: 1rem;
|
|
12
|
+
--font-line-height-200: 1.125rem;
|
|
13
|
+
--font-line-height-300: 1.25rem;
|
|
14
|
+
--font-line-height-400: 1.5rem;
|
|
15
|
+
--font-line-height-500: 1.75rem;
|
|
16
|
+
--font-line-height-600: 2rem;
|
|
17
|
+
--font-line-height-700: 2.75rem;
|
|
18
|
+
--p-font-weight-light: 300;
|
|
19
|
+
--p-font-weight-normal: 400;
|
|
20
|
+
--p-font-weight-bold: 600;
|
|
21
|
+
}
|
|
1
22
|
:root {
|
|
2
23
|
--color-white: #fff;
|
|
3
24
|
--color-white-rgb: 255, 255, 255;
|
|
@@ -144,22 +165,23 @@
|
|
|
144
165
|
display: inline-flex;
|
|
145
166
|
}
|
|
146
167
|
._3s_-x {
|
|
168
|
+
font-family: var(--font-family-brand);
|
|
169
|
+
font-size: var(--font-size-100);
|
|
170
|
+
line-height: var(--font-line-height-100);
|
|
171
|
+
font-weight: var(--p-font-weight-normal);
|
|
147
172
|
color: var(--color-grey-500);
|
|
148
|
-
font-family: "Proxima Nova", sans-serif;
|
|
149
|
-
font-weight: 400;
|
|
150
|
-
font-size: 12px;
|
|
151
|
-
line-height: 16px;
|
|
152
173
|
}
|
|
153
174
|
|
|
154
175
|
._29W-o {
|
|
155
|
-
|
|
176
|
+
font-family: var(--font-family-brand);
|
|
177
|
+
font-size: var(--font-size-200);
|
|
178
|
+
line-height: var(--font-line-height-200);
|
|
179
|
+
font-weight: var(--p-font-weight-normal);
|
|
180
|
+
font-weight: var(--p-font-weight-bold);
|
|
156
181
|
padding: 0;
|
|
157
182
|
width: auto;
|
|
158
183
|
float: none;
|
|
159
184
|
color: var(--color-grey-500);
|
|
160
|
-
font-family: "Proxima Nova", sans-serif;
|
|
161
|
-
font-weight: 600;
|
|
162
|
-
font-size: 14px;
|
|
163
185
|
min-height: 16px;
|
|
164
186
|
}
|
|
165
187
|
|
|
@@ -188,24 +210,25 @@ Just for future references:
|
|
|
188
210
|
}
|
|
189
211
|
|
|
190
212
|
._LbMlH {
|
|
191
|
-
|
|
213
|
+
font-family: var(--font-family-brand);
|
|
214
|
+
font-size: var(--font-size-200);
|
|
215
|
+
line-height: var(--font-line-height-200);
|
|
216
|
+
font-weight: var(--p-font-weight-normal);
|
|
217
|
+
font-weight: var(--p-font-weight-bold);
|
|
192
218
|
padding: 0;
|
|
193
219
|
width: auto;
|
|
194
220
|
float: none;
|
|
195
221
|
color: var(--color-grey-500);
|
|
196
|
-
font-family: "Proxima Nova", sans-serif;
|
|
197
|
-
font-weight: 600;
|
|
198
|
-
font-size: 14px;
|
|
199
222
|
min-height: 16px;
|
|
200
223
|
margin-left: 8px;
|
|
201
224
|
}
|
|
202
225
|
|
|
203
226
|
._15FwS {
|
|
227
|
+
font-family: var(--font-family-brand);
|
|
228
|
+
font-size: var(--font-size-100);
|
|
229
|
+
line-height: var(--font-line-height-100);
|
|
230
|
+
font-weight: var(--p-font-weight-normal);
|
|
204
231
|
color: var(--color-grey-500);
|
|
205
|
-
font-family: "Proxima Nova", sans-serif;
|
|
206
|
-
font-weight: 400;
|
|
207
|
-
font-size: 12px;
|
|
208
|
-
line-height: 16px;
|
|
209
232
|
margin-left: 48px;
|
|
210
233
|
display: block;
|
|
211
234
|
}
|
|
@@ -334,8 +357,10 @@ Just for future references:
|
|
|
334
357
|
text-align: left;
|
|
335
358
|
}
|
|
336
359
|
._1lo14 {
|
|
337
|
-
font-family:
|
|
338
|
-
font-size:
|
|
360
|
+
font-family: var(--font-family-brand);
|
|
361
|
+
font-size: var(--font-size-200);
|
|
362
|
+
line-height: var(--font-line-height-200);
|
|
363
|
+
font-weight: var(--p-font-weight-normal);
|
|
339
364
|
position: fixed;
|
|
340
365
|
padding: 12px;
|
|
341
366
|
box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
|
|
@@ -358,7 +383,11 @@ Just for future references:
|
|
|
358
383
|
color: var(--color-grey-500);
|
|
359
384
|
}
|
|
360
385
|
._2rZ80 {
|
|
361
|
-
font-
|
|
386
|
+
font-family: var(--font-family-brand);
|
|
387
|
+
font-size: var(--font-size-200);
|
|
388
|
+
line-height: var(--font-line-height-200);
|
|
389
|
+
font-weight: var(--p-font-weight-normal);
|
|
390
|
+
font-weight: var(--p-font-weight-bold);
|
|
362
391
|
}
|
|
363
392
|
|
|
364
393
|
._2ZZTv {
|
|
@@ -390,12 +419,13 @@ Just for future references:
|
|
|
390
419
|
color: var(--color-grey-500);
|
|
391
420
|
}
|
|
392
421
|
._YjZTi {
|
|
393
|
-
font-family:
|
|
394
|
-
font-
|
|
395
|
-
|
|
422
|
+
font-family: var(--font-family-brand);
|
|
423
|
+
font-size: var(--font-size-200);
|
|
424
|
+
line-height: var(--font-line-height-200);
|
|
425
|
+
font-weight: var(--p-font-weight-normal);
|
|
426
|
+
font-weight: var(--p-font-weight-bold);
|
|
396
427
|
text-align: center;
|
|
397
|
-
|
|
398
|
-
padding: 8px 12px;
|
|
428
|
+
padding: 9px 12px;
|
|
399
429
|
border-radius: 4px;
|
|
400
430
|
border-width: 1px;
|
|
401
431
|
min-width: 38px;
|
|
@@ -770,9 +800,11 @@ Just for future references:
|
|
|
770
800
|
border: 1px solid var(--color-grey-200);
|
|
771
801
|
}
|
|
772
802
|
._31UYJ {
|
|
803
|
+
font-family: var(--font-family-brand);
|
|
804
|
+
font-size: var(--font-size-100);
|
|
805
|
+
line-height: var(--font-line-height-100);
|
|
806
|
+
font-weight: var(--p-font-weight-normal);
|
|
773
807
|
display: flex;
|
|
774
|
-
line-height: 14px;
|
|
775
|
-
font-size: 12px;
|
|
776
808
|
flex-direction: column;
|
|
777
809
|
flex-grow: 1;
|
|
778
810
|
align-self: center;
|
|
@@ -792,12 +824,14 @@ Just for future references:
|
|
|
792
824
|
color: var(--color-grey-500);
|
|
793
825
|
}
|
|
794
826
|
._38KEH._38KEH {
|
|
795
|
-
font-family:
|
|
827
|
+
font-family: var(--font-family-brand);
|
|
828
|
+
font-size: var(--font-size-200);
|
|
829
|
+
line-height: var(--font-line-height-200);
|
|
830
|
+
font-weight: var(--p-font-weight-normal);
|
|
796
831
|
background: var(--color-grey-500);
|
|
797
832
|
color: var(--color-white);
|
|
798
833
|
border-radius: 4px;
|
|
799
834
|
min-height: auto;
|
|
800
|
-
font-size: 14px;
|
|
801
835
|
}
|
|
802
836
|
._38KEH._1qUTA {
|
|
803
837
|
background-color: var(--color-radish-400);
|
|
@@ -816,13 +850,14 @@ Just for future references:
|
|
|
816
850
|
text-align: left;
|
|
817
851
|
}
|
|
818
852
|
._dJWps {
|
|
819
|
-
|
|
853
|
+
font-family: var(--font-family-brand);
|
|
854
|
+
font-size: var(--font-size-100);
|
|
855
|
+
line-height: var(--font-line-height-100);
|
|
856
|
+
font-weight: var(--p-font-weight-normal);
|
|
857
|
+
font-weight: var(--p-font-weight-bold);
|
|
820
858
|
padding: 0 16px 8px 16px;
|
|
821
859
|
background-color: unset;
|
|
822
860
|
color: var(--color-grey-500);
|
|
823
|
-
font-size: 12px;
|
|
824
|
-
font-weight: 600;
|
|
825
|
-
font-family: "Proxima Nova", sans-serif;
|
|
826
861
|
border: 0;
|
|
827
862
|
}
|
|
828
863
|
._14AEw {
|
|
@@ -887,10 +922,12 @@ Just for future references:
|
|
|
887
922
|
table-layout: fixed;
|
|
888
923
|
}
|
|
889
924
|
._1YYyL {
|
|
925
|
+
font-family: var(--font-family-brand);
|
|
926
|
+
font-size: var(--font-size-200);
|
|
927
|
+
line-height: var(--font-line-height-200);
|
|
928
|
+
font-weight: var(--p-font-weight-normal);
|
|
890
929
|
border: 1px solid var(--color-grey-200);
|
|
891
930
|
border-radius: 8px;
|
|
892
|
-
font-family: "Proxima Nova", sans-serif;
|
|
893
|
-
font-size: 14px;
|
|
894
931
|
}
|
|
895
932
|
._1YYyL tr:first-of-type > td:first-of-type {
|
|
896
933
|
border-top-left-radius: 8px;
|
|
@@ -911,8 +948,11 @@ Just for future references:
|
|
|
911
948
|
border-bottom-right-radius: 0;
|
|
912
949
|
}
|
|
913
950
|
._ASPHe {
|
|
914
|
-
font-
|
|
915
|
-
font-size:
|
|
951
|
+
font-family: var(--font-family-brand);
|
|
952
|
+
font-size: var(--font-size-200);
|
|
953
|
+
line-height: var(--font-line-height-200);
|
|
954
|
+
font-weight: var(--p-font-weight-normal);
|
|
955
|
+
font-weight: var(--p-font-weight-bold);
|
|
916
956
|
}
|
|
917
957
|
._ASPHe tr td {
|
|
918
958
|
background: var(--color-grey-100);
|
|
@@ -934,7 +974,6 @@ Just for future references:
|
|
|
934
974
|
}
|
|
935
975
|
._1ahC- {
|
|
936
976
|
margin-top: 20px;
|
|
937
|
-
font-family: "Proxima Nova", sans-serif;
|
|
938
977
|
}
|
|
939
978
|
._OLWH6 {
|
|
940
979
|
width: 100%;
|
|
@@ -1027,15 +1066,19 @@ Just for future references:
|
|
|
1027
1066
|
}
|
|
1028
1067
|
|
|
1029
1068
|
._iZe2g {
|
|
1030
|
-
font-
|
|
1031
|
-
font-size:
|
|
1032
|
-
line-height:
|
|
1069
|
+
font-family: var(--font-family-brand);
|
|
1070
|
+
font-size: var(--font-size-200);
|
|
1071
|
+
line-height: var(--font-line-height-200);
|
|
1072
|
+
font-weight: var(--p-font-weight-normal);
|
|
1073
|
+
font-weight: var(--p-font-weight-bold);
|
|
1033
1074
|
color: var(--color-grey-500);
|
|
1034
1075
|
}
|
|
1035
1076
|
|
|
1036
1077
|
._2KsRB {
|
|
1037
|
-
font-
|
|
1038
|
-
|
|
1078
|
+
font-family: var(--font-family-brand);
|
|
1079
|
+
font-size: var(--font-size-200);
|
|
1080
|
+
line-height: var(--font-line-height-200);
|
|
1081
|
+
font-weight: var(--p-font-weight-normal);
|
|
1039
1082
|
flex-grow: 1;
|
|
1040
1083
|
color: var(--color-grey-500);
|
|
1041
1084
|
}
|
|
@@ -1113,12 +1156,13 @@ Just for future references:
|
|
|
1113
1156
|
min-height: 38px;
|
|
1114
1157
|
}
|
|
1115
1158
|
._1eCfd {
|
|
1116
|
-
font-
|
|
1117
|
-
|
|
1159
|
+
font-family: var(--font-family-brand);
|
|
1160
|
+
font-size: var(--font-size-100);
|
|
1161
|
+
line-height: var(--font-line-height-100);
|
|
1162
|
+
font-weight: var(--p-font-weight-normal);
|
|
1118
1163
|
color: var(--color-grey-500);
|
|
1119
1164
|
}
|
|
1120
1165
|
._XcD7g {
|
|
1121
|
-
font-family: "Proxima Nova", sans-serif;
|
|
1122
1166
|
position: absolute;
|
|
1123
1167
|
list-style: none;
|
|
1124
1168
|
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
@@ -1143,14 +1187,15 @@ Just for future references:
|
|
|
1143
1187
|
box-shadow: 0 0 8px var(--color-eggplant-300);
|
|
1144
1188
|
}
|
|
1145
1189
|
._3gsXT {
|
|
1146
|
-
|
|
1190
|
+
font-family: var(--font-family-brand);
|
|
1191
|
+
font-size: var(--font-size-200);
|
|
1192
|
+
line-height: var(--font-line-height-200);
|
|
1193
|
+
font-weight: var(--p-font-weight-normal);
|
|
1194
|
+
font-weight: var(--p-font-weight-bold);
|
|
1147
1195
|
padding: 0;
|
|
1148
1196
|
width: auto;
|
|
1149
1197
|
float: none;
|
|
1150
1198
|
color: var(--color-grey-500);
|
|
1151
|
-
font-family: "Proxima Nova", sans-serif;
|
|
1152
|
-
font-weight: 600;
|
|
1153
|
-
font-size: 14px;
|
|
1154
1199
|
min-height: 16px;
|
|
1155
1200
|
}
|
|
1156
1201
|
|
|
@@ -1160,24 +1205,27 @@ Just for future references:
|
|
|
1160
1205
|
text-overflow: ellipsis;
|
|
1161
1206
|
}
|
|
1162
1207
|
._1sq2y {
|
|
1208
|
+
font-family: var(--font-family-brand);
|
|
1209
|
+
font-size: var(--font-size-100);
|
|
1210
|
+
line-height: var(--font-line-height-100);
|
|
1211
|
+
font-weight: var(--p-font-weight-normal);
|
|
1163
1212
|
color: var(--color-grey-500);
|
|
1164
|
-
font-family: "Proxima Nova", sans-serif;
|
|
1165
|
-
font-weight: 400;
|
|
1166
|
-
font-size: 12px;
|
|
1167
|
-
line-height: 16px;
|
|
1168
1213
|
}
|
|
1169
1214
|
._2EaHy {
|
|
1215
|
+
font-family: var(--font-family-brand);
|
|
1216
|
+
font-size: var(--font-size-100);
|
|
1217
|
+
line-height: var(--font-line-height-100);
|
|
1218
|
+
font-weight: var(--p-font-weight-normal);
|
|
1170
1219
|
color: var(--color-radish-400);
|
|
1171
|
-
font-family: "Proxima Nova", sans-serif;
|
|
1172
|
-
font-weight: 400;
|
|
1173
|
-
font-size: 12px;
|
|
1174
1220
|
}
|
|
1175
1221
|
._3BVGA {
|
|
1176
|
-
|
|
1222
|
+
font-family: var(--font-family-brand);
|
|
1223
|
+
font-size: var(--font-size-200);
|
|
1224
|
+
line-height: var(--font-line-height-200);
|
|
1225
|
+
font-weight: var(--p-font-weight-normal);
|
|
1177
1226
|
line-height: 22px;
|
|
1227
|
+
padding: 7px;
|
|
1178
1228
|
border-radius: 4px;
|
|
1179
|
-
font-size: 14px;
|
|
1180
|
-
font-family: "Proxima Nova", sans-serif;
|
|
1181
1229
|
color: var(--color-grey-500);
|
|
1182
1230
|
box-shadow: none;
|
|
1183
1231
|
border: 1px solid var(--color-grey-200);
|
|
@@ -1226,18 +1274,18 @@ Just for future references:
|
|
|
1226
1274
|
}
|
|
1227
1275
|
|
|
1228
1276
|
._KE6FS {
|
|
1277
|
+
font-family: var(--font-family-brand);
|
|
1278
|
+
font-size: var(--font-size-200);
|
|
1279
|
+
line-height: var(--font-line-height-200);
|
|
1280
|
+
font-weight: var(--p-font-weight-normal);
|
|
1229
1281
|
position: absolute;
|
|
1230
|
-
line-height: 22px;
|
|
1231
1282
|
padding: 8px;
|
|
1232
1283
|
color: var(--color-grey-500);
|
|
1233
1284
|
min-width: 8px;
|
|
1234
1285
|
pointer-events: none;
|
|
1235
|
-
font-size: 14px;
|
|
1236
|
-
font-family: "Proxima Nova", sans-serif;
|
|
1237
1286
|
box-sizing: content-box;
|
|
1238
1287
|
display: flex;
|
|
1239
1288
|
align-items: center;
|
|
1240
|
-
height: 22px;
|
|
1241
1289
|
top: 0;
|
|
1242
1290
|
bottom: 0;
|
|
1243
1291
|
margin-top: auto;
|
|
@@ -1251,18 +1299,18 @@ Just for future references:
|
|
|
1251
1299
|
}
|
|
1252
1300
|
|
|
1253
1301
|
._1Zl92 {
|
|
1302
|
+
font-family: var(--font-family-brand);
|
|
1303
|
+
font-size: var(--font-size-200);
|
|
1304
|
+
line-height: var(--font-line-height-200);
|
|
1305
|
+
font-weight: var(--p-font-weight-normal);
|
|
1254
1306
|
position: absolute;
|
|
1255
|
-
line-height: 22px;
|
|
1256
1307
|
padding: 8px;
|
|
1257
1308
|
color: var(--color-grey-500);
|
|
1258
1309
|
min-width: 8px;
|
|
1259
1310
|
pointer-events: none;
|
|
1260
|
-
font-size: 14px;
|
|
1261
|
-
font-family: "Proxima Nova", sans-serif;
|
|
1262
1311
|
box-sizing: content-box;
|
|
1263
1312
|
display: flex;
|
|
1264
1313
|
align-items: center;
|
|
1265
|
-
height: 22px;
|
|
1266
1314
|
top: 0;
|
|
1267
1315
|
bottom: 0;
|
|
1268
1316
|
margin-top: auto;
|
|
@@ -1275,7 +1323,6 @@ Just for future references:
|
|
|
1275
1323
|
color: var(--color-grey-400);
|
|
1276
1324
|
}
|
|
1277
1325
|
._2aZGZ {
|
|
1278
|
-
font-family: "Proxima Nova", sans-serif;
|
|
1279
1326
|
list-style: none;
|
|
1280
1327
|
margin: -20px;
|
|
1281
1328
|
padding: 0;
|
|
@@ -1306,10 +1353,12 @@ Just for future references:
|
|
|
1306
1353
|
color: var(--color-grey-400);
|
|
1307
1354
|
}
|
|
1308
1355
|
._3zhrP {
|
|
1356
|
+
font-family: var(--font-family-brand);
|
|
1357
|
+
font-size: var(--font-size-200);
|
|
1358
|
+
line-height: var(--font-line-height-200);
|
|
1359
|
+
font-weight: var(--p-font-weight-normal);
|
|
1309
1360
|
color: var(--color-grey-400);
|
|
1310
1361
|
padding: 12px;
|
|
1311
|
-
font-size: 14px;
|
|
1312
|
-
line-height: 20px;
|
|
1313
1362
|
display: flex;
|
|
1314
1363
|
white-space: nowrap;
|
|
1315
1364
|
gap: 8px;
|
|
@@ -1333,59 +1382,66 @@ Just for future references:
|
|
|
1333
1382
|
outline: none;
|
|
1334
1383
|
}
|
|
1335
1384
|
h1._32amZ {
|
|
1336
|
-
font-
|
|
1337
|
-
|
|
1338
|
-
|
|
1385
|
+
font-family: var(--font-family-brand);
|
|
1386
|
+
font-size: var(--font-size-600);
|
|
1387
|
+
line-height: var(--font-line-height-600);
|
|
1388
|
+
font-weight: var(--p-font-weight-bold);
|
|
1339
1389
|
}
|
|
1340
1390
|
|
|
1341
1391
|
h2._32amZ {
|
|
1342
|
-
font-
|
|
1343
|
-
|
|
1344
|
-
|
|
1392
|
+
font-family: var(--font-family-brand);
|
|
1393
|
+
font-size: var(--font-size-500);
|
|
1394
|
+
line-height: var(--font-line-height-500);
|
|
1395
|
+
font-weight: var(--p-font-weight-bold);
|
|
1345
1396
|
}
|
|
1346
1397
|
|
|
1347
1398
|
h3._32amZ {
|
|
1348
|
-
font-
|
|
1349
|
-
|
|
1350
|
-
|
|
1399
|
+
font-family: var(--font-family-brand);
|
|
1400
|
+
font-size: var(--font-size-400);
|
|
1401
|
+
line-height: var(--font-line-height-400);
|
|
1402
|
+
font-weight: var(--p-font-weight-bold);
|
|
1351
1403
|
}
|
|
1352
1404
|
|
|
1353
1405
|
h4._32amZ {
|
|
1354
|
-
font-
|
|
1355
|
-
|
|
1356
|
-
|
|
1406
|
+
font-family: var(--font-family-brand);
|
|
1407
|
+
font-size: var(--font-size-400);
|
|
1408
|
+
line-height: var(--font-line-height-400);
|
|
1409
|
+
font-weight: var(--p-font-weight-normal);
|
|
1357
1410
|
color: var(--color-grey-400);
|
|
1358
1411
|
}
|
|
1359
1412
|
|
|
1360
1413
|
h5._32amZ {
|
|
1361
|
-
font-
|
|
1362
|
-
|
|
1363
|
-
|
|
1414
|
+
font-family: var(--font-family-brand);
|
|
1415
|
+
font-size: var(--font-size-300);
|
|
1416
|
+
line-height: var(--font-line-height-300);
|
|
1417
|
+
font-weight: var(--p-font-weight-normal);
|
|
1364
1418
|
color: var(--color-grey-400);
|
|
1365
1419
|
}
|
|
1366
1420
|
|
|
1367
1421
|
._32amZ {
|
|
1368
|
-
font-family: "Proxima Nova", sans-serif;
|
|
1369
1422
|
color: var(--color-grey-500);
|
|
1370
1423
|
margin: 0;
|
|
1371
1424
|
}
|
|
1372
1425
|
._ayJRy {
|
|
1373
|
-
font-
|
|
1374
|
-
|
|
1375
|
-
|
|
1426
|
+
font-family: var(--font-family-brand);
|
|
1427
|
+
font-size: var(--font-size-200);
|
|
1428
|
+
line-height: var(--font-line-height-200);
|
|
1429
|
+
font-weight: var(--p-font-weight-normal);
|
|
1376
1430
|
}
|
|
1377
1431
|
._3g1gi {
|
|
1378
|
-
font-
|
|
1379
|
-
|
|
1380
|
-
|
|
1432
|
+
font-family: var(--font-family-brand);
|
|
1433
|
+
font-size: var(--font-size-100);
|
|
1434
|
+
line-height: var(--font-line-height-100);
|
|
1435
|
+
font-weight: var(--p-font-weight-normal);
|
|
1381
1436
|
}
|
|
1382
1437
|
._20Phg {
|
|
1383
|
-
font-
|
|
1384
|
-
|
|
1385
|
-
|
|
1438
|
+
font-family: var(--font-family-brand);
|
|
1439
|
+
font-size: var(--font-size-700);
|
|
1440
|
+
line-height: var(--font-line-height-700);
|
|
1441
|
+
font-weight: var(--p-font-weight-bold);
|
|
1386
1442
|
}
|
|
1387
1443
|
._A0AyZ {
|
|
1388
|
-
font-weight:
|
|
1444
|
+
font-weight: var(--p-font-weight-bold);
|
|
1389
1445
|
}
|
|
1390
1446
|
._3jayQ {
|
|
1391
1447
|
font-style: italic;
|
|
@@ -1481,15 +1537,16 @@ h5._32amZ {
|
|
|
1481
1537
|
text-transform: uppercase;
|
|
1482
1538
|
}
|
|
1483
1539
|
._12zfd {
|
|
1540
|
+
font-family: var(--font-family-brand);
|
|
1541
|
+
font-size: var(--font-size-200);
|
|
1542
|
+
line-height: var(--font-line-height-200);
|
|
1543
|
+
font-weight: var(--p-font-weight-normal);
|
|
1484
1544
|
display: flex;
|
|
1485
1545
|
gap: 8px;
|
|
1486
1546
|
border-radius: 4px;
|
|
1487
1547
|
text-decoration: none;
|
|
1488
1548
|
color: var(--color-grey-500);
|
|
1489
1549
|
padding: 8px;
|
|
1490
|
-
font-family: "Proxima Nova", sans-serif;
|
|
1491
|
-
font-size: 14px;
|
|
1492
|
-
line-height: 16px;
|
|
1493
1550
|
align-items: center;
|
|
1494
1551
|
border: 1px solid transparent;
|
|
1495
1552
|
}
|
|
@@ -1513,8 +1570,11 @@ h5._32amZ {
|
|
|
1513
1570
|
max-width: 1000px;
|
|
1514
1571
|
}
|
|
1515
1572
|
._EtQ8V {
|
|
1573
|
+
font-family: var(--font-family-brand);
|
|
1574
|
+
font-size: var(--font-size-200);
|
|
1575
|
+
line-height: var(--font-line-height-200);
|
|
1576
|
+
font-weight: var(--p-font-weight-normal);
|
|
1516
1577
|
color: var(--color-white);
|
|
1517
|
-
font-size: 14px;
|
|
1518
1578
|
padding: 16px;
|
|
1519
1579
|
text-align: center;
|
|
1520
1580
|
}
|
|
@@ -1533,14 +1593,16 @@ h5._32amZ {
|
|
|
1533
1593
|
height: 48px;
|
|
1534
1594
|
}
|
|
1535
1595
|
._2u-Hw {
|
|
1596
|
+
font-family: var(--font-family-brand);
|
|
1597
|
+
font-size: var(--font-size-100);
|
|
1598
|
+
line-height: var(--font-line-height-100);
|
|
1599
|
+
font-weight: var(--p-font-weight-normal);
|
|
1536
1600
|
top: 50%;
|
|
1537
1601
|
left: 50%;
|
|
1538
1602
|
width: 100%;
|
|
1539
1603
|
text-align: center;
|
|
1540
1604
|
position: absolute;
|
|
1541
1605
|
transform: translate(-50%, -50%);
|
|
1542
|
-
font-size: 12px;
|
|
1543
|
-
font-weight: 400;
|
|
1544
1606
|
color: var(--color-grey-500);
|
|
1545
1607
|
}
|
|
1546
1608
|
._ORvUI {
|
|
@@ -1566,7 +1628,7 @@ h5._32amZ {
|
|
|
1566
1628
|
display: flex;
|
|
1567
1629
|
justify-content: space-around;
|
|
1568
1630
|
color: var(--color-grey-500);
|
|
1569
|
-
font-family:
|
|
1631
|
+
font-family: var(--font-family-brand);
|
|
1570
1632
|
}
|
|
1571
1633
|
._WwXRR {
|
|
1572
1634
|
background: var(--color-grey-100);
|
|
@@ -1765,11 +1827,11 @@ h5._32amZ {
|
|
|
1765
1827
|
opacity: 0;
|
|
1766
1828
|
}
|
|
1767
1829
|
._2iRIU {
|
|
1768
|
-
font-
|
|
1769
|
-
|
|
1830
|
+
font-family: var(--font-family-brand);
|
|
1831
|
+
font-size: var(--font-size-500);
|
|
1832
|
+
line-height: var(--font-line-height-500);
|
|
1833
|
+
font-weight: var(--p-font-weight-bold);
|
|
1770
1834
|
color: var(--color-grey-500);
|
|
1771
|
-
font-weight: 600;
|
|
1772
|
-
font-family: "Proxima Nova", sans-serif;
|
|
1773
1835
|
padding: 0;
|
|
1774
1836
|
}
|
|
1775
1837
|
._1rw24 {
|
|
@@ -1781,10 +1843,11 @@ h5._32amZ {
|
|
|
1781
1843
|
}
|
|
1782
1844
|
|
|
1783
1845
|
._3UWdF {
|
|
1784
|
-
font-
|
|
1785
|
-
|
|
1846
|
+
font-family: var(--font-family-brand);
|
|
1847
|
+
font-size: var(--font-size-400);
|
|
1848
|
+
line-height: var(--font-line-height-400);
|
|
1849
|
+
font-weight: var(--p-font-weight-normal);
|
|
1786
1850
|
color: var(--color-grey-400);
|
|
1787
|
-
font-family: "Proxima Nova", sans-serif;
|
|
1788
1851
|
}
|
|
1789
1852
|
/**
|
|
1790
1853
|
* This is for adding a shadow when the body is scrollable.
|
|
@@ -1792,10 +1855,11 @@ h5._32amZ {
|
|
|
1792
1855
|
* There is a cleaner solution using background-attachment (https://lea.verou.me/2012/04/background-attachment-local/) but I had some issues in Chrome using that approach
|
|
1793
1856
|
*/
|
|
1794
1857
|
._vu6lH {
|
|
1858
|
+
font-family: var(--font-family-brand);
|
|
1859
|
+
font-size: var(--font-size-200);
|
|
1860
|
+
line-height: var(--font-line-height-200);
|
|
1861
|
+
font-weight: var(--p-font-weight-normal);
|
|
1795
1862
|
overflow: auto;
|
|
1796
|
-
font-family: "Proxima Nova", sans-serif;
|
|
1797
|
-
font-size: 14px;
|
|
1798
|
-
line-height: 16px;
|
|
1799
1863
|
position: relative;
|
|
1800
1864
|
padding: 0 8px 0 8px;
|
|
1801
1865
|
}
|
|
@@ -1835,7 +1899,7 @@ h5._32amZ {
|
|
|
1835
1899
|
}
|
|
1836
1900
|
._31ArE {
|
|
1837
1901
|
--rdp-cell-size: 37px;
|
|
1838
|
-
--rdp-caption-font-size:
|
|
1902
|
+
--rdp-caption-font-size: var(--font-size-300);
|
|
1839
1903
|
--rdp-accent-color: var(--color-tangerine-200);
|
|
1840
1904
|
--rdp-background-color: var(--color-grey-100);
|
|
1841
1905
|
--rdp-accent-color-dark: var(--color-tangerine-400);
|
|
@@ -1863,14 +1927,16 @@ h5._32amZ {
|
|
|
1863
1927
|
}
|
|
1864
1928
|
|
|
1865
1929
|
._3YRyk {
|
|
1930
|
+
font-family: var(--font-family-brand);
|
|
1931
|
+
font-size: var(--font-size-200);
|
|
1932
|
+
line-height: var(--font-line-height-200);
|
|
1933
|
+
font-weight: var(--p-font-weight-normal);
|
|
1866
1934
|
vertical-align: middle;
|
|
1867
1935
|
text-align: center;
|
|
1868
1936
|
height: 100%;
|
|
1869
1937
|
height: var(--rdp-cell-size);
|
|
1870
1938
|
padding: 0;
|
|
1871
1939
|
color: var(--color-grey-400);
|
|
1872
|
-
font-size: 14px;
|
|
1873
|
-
font-weight: 400;
|
|
1874
1940
|
background: none;
|
|
1875
1941
|
border: none;
|
|
1876
1942
|
}
|
|
@@ -1912,7 +1978,7 @@ h5._32amZ {
|
|
|
1912
1978
|
}
|
|
1913
1979
|
._14V7C {
|
|
1914
1980
|
--rdp-cell-size: 37px;
|
|
1915
|
-
--rdp-caption-font-size:
|
|
1981
|
+
--rdp-caption-font-size: var(--font-size-300);
|
|
1916
1982
|
--rdp-accent-color: var(--color-tangerine-200);
|
|
1917
1983
|
--rdp-background-color: var(--color-grey-100);
|
|
1918
1984
|
--rdp-accent-color-dark: var(--color-tangerine-400);
|
|
@@ -1940,14 +2006,16 @@ h5._32amZ {
|
|
|
1940
2006
|
}
|
|
1941
2007
|
|
|
1942
2008
|
._2AdsD {
|
|
2009
|
+
font-family: var(--font-family-brand);
|
|
2010
|
+
font-size: var(--font-size-200);
|
|
2011
|
+
line-height: var(--font-line-height-200);
|
|
2012
|
+
font-weight: var(--p-font-weight-normal);
|
|
1943
2013
|
vertical-align: middle;
|
|
1944
2014
|
text-align: center;
|
|
1945
2015
|
height: 100%;
|
|
1946
2016
|
height: var(--rdp-cell-size);
|
|
1947
2017
|
padding: 0;
|
|
1948
2018
|
color: var(--color-grey-400);
|
|
1949
|
-
font-size: 14px;
|
|
1950
|
-
font-weight: 400;
|
|
1951
2019
|
background: none;
|
|
1952
2020
|
border: none;
|
|
1953
2021
|
}
|
|
@@ -2148,14 +2216,16 @@ input:disabled + ._2W10t::after {
|
|
|
2148
2216
|
height: 100%;
|
|
2149
2217
|
}
|
|
2150
2218
|
._1-1WW input {
|
|
2219
|
+
font-family: var(--font-family-brand);
|
|
2220
|
+
font-size: var(--font-size-200);
|
|
2221
|
+
line-height: var(--font-line-height-200);
|
|
2222
|
+
font-weight: var(--p-font-weight-normal);
|
|
2151
2223
|
border: 1px solid transparent;
|
|
2152
2224
|
display: flex;
|
|
2153
2225
|
justify-content: flex-end;
|
|
2154
2226
|
background: transparent;
|
|
2155
2227
|
padding: 16px;
|
|
2156
2228
|
width: 100%;
|
|
2157
|
-
font-size: 14px;
|
|
2158
|
-
font-family: "Proxima Nova", sans-serif;
|
|
2159
2229
|
border-radius: 0;
|
|
2160
2230
|
}
|
|
2161
2231
|
._1-1WW input:focus {
|
|
@@ -2462,8 +2532,11 @@ input:disabled + ._2W10t::after {
|
|
|
2462
2532
|
max-width: 667px;
|
|
2463
2533
|
}
|
|
2464
2534
|
._1b3C0 {
|
|
2535
|
+
font-family: var(--font-family-brand);
|
|
2536
|
+
font-size: var(--font-size-200);
|
|
2537
|
+
line-height: var(--font-line-height-200);
|
|
2538
|
+
font-weight: var(--p-font-weight-normal);
|
|
2465
2539
|
color: var(--color-grey-500);
|
|
2466
|
-
font-size: 12px;
|
|
2467
2540
|
text-align: center;
|
|
2468
2541
|
}
|
|
2469
2542
|
._3q5OJ {
|
|
@@ -2476,6 +2549,48 @@ input:disabled + ._2W10t::after {
|
|
|
2476
2549
|
justify-content: center;
|
|
2477
2550
|
}
|
|
2478
2551
|
}
|
|
2552
|
+
._3uthQ {
|
|
2553
|
+
border-bottom: 1px solid var(--color-grey-200);
|
|
2554
|
+
margin-top: 24px;
|
|
2555
|
+
padding-left: 20px;
|
|
2556
|
+
padding-right: 20px;
|
|
2557
|
+
}
|
|
2558
|
+
._23CMa {
|
|
2559
|
+
all: unset;
|
|
2560
|
+
}
|
|
2561
|
+
._3LzWR {
|
|
2562
|
+
all: unset;
|
|
2563
|
+
cursor: pointer;
|
|
2564
|
+
width: 100%;
|
|
2565
|
+
}
|
|
2566
|
+
._34Ht7 {
|
|
2567
|
+
transition: 0.2s ease-in-out;
|
|
2568
|
+
}
|
|
2569
|
+
._1D8Hh {
|
|
2570
|
+
rotate: 180deg;
|
|
2571
|
+
transition: 0.2s ease-in-out;
|
|
2572
|
+
}
|
|
2573
|
+
._1Ocs0 {
|
|
2574
|
+
visibility: hidden;
|
|
2575
|
+
transition: 0.2s ease-in-out;
|
|
2576
|
+
transition-property: margin-top;
|
|
2577
|
+
height: 24px;
|
|
2578
|
+
}
|
|
2579
|
+
._fCEkR {
|
|
2580
|
+
font-weight: 400;
|
|
2581
|
+
margin-top: 24px;
|
|
2582
|
+
margin-bottom: 24px;
|
|
2583
|
+
transition: 0.2s ease-in-out;
|
|
2584
|
+
transition-property: margin-top;
|
|
2585
|
+
}
|
|
2586
|
+
|
|
2587
|
+
._3uthQ:last-child {
|
|
2588
|
+
border-bottom: none;
|
|
2589
|
+
}
|
|
2590
|
+
._31JZJ {
|
|
2591
|
+
border: 1px solid var(--color-grey-200);
|
|
2592
|
+
border-radius: 20px;
|
|
2593
|
+
}
|
|
2479
2594
|
._1JTKu {
|
|
2480
2595
|
flex: 1;
|
|
2481
2596
|
display: "flex";
|
|
@@ -2501,10 +2616,12 @@ input:disabled + ._2W10t::after {
|
|
|
2501
2616
|
width: 336px;
|
|
2502
2617
|
}
|
|
2503
2618
|
._2UNAw {
|
|
2619
|
+
font-family: var(--font-family-brand);
|
|
2620
|
+
font-size: var(--font-size-200);
|
|
2621
|
+
line-height: var(--font-line-height-200);
|
|
2622
|
+
font-weight: var(--p-font-weight-normal);
|
|
2504
2623
|
width: 200px;
|
|
2505
2624
|
border-radius: 0px;
|
|
2506
|
-
font-family: "Proxima Nova", sans-serif;
|
|
2507
|
-
font-size: 14px;
|
|
2508
2625
|
color: var(--color-grey-500);
|
|
2509
2626
|
padding-left: 13px;
|
|
2510
2627
|
height: 38px;
|
|
@@ -2556,16 +2673,17 @@ input:disabled + ._2W10t::after {
|
|
|
2556
2673
|
display: flex;
|
|
2557
2674
|
}
|
|
2558
2675
|
._9hSoW {
|
|
2559
|
-
font-family:
|
|
2560
|
-
font-
|
|
2561
|
-
|
|
2676
|
+
font-family: var(--font-family-brand);
|
|
2677
|
+
font-size: var(--font-size-200);
|
|
2678
|
+
line-height: var(--font-line-height-200);
|
|
2679
|
+
font-weight: var(--p-font-weight-normal);
|
|
2680
|
+
font-weight: var(--p-font-weight-bold);
|
|
2562
2681
|
position: relative;
|
|
2563
2682
|
background-color: var(--color-grey-100);
|
|
2564
2683
|
color: var(--color-grey-500);
|
|
2565
2684
|
border-style: solid;
|
|
2566
2685
|
border-color: var(--color-grey-200);
|
|
2567
|
-
|
|
2568
|
-
padding: 8px 12px;
|
|
2686
|
+
padding: 9px 12px;
|
|
2569
2687
|
min-width: 38px;
|
|
2570
2688
|
height: 38px;
|
|
2571
2689
|
cursor: pointer;
|
|
@@ -2649,18 +2767,19 @@ input:disabled + ._2W10t::after {
|
|
|
2649
2767
|
._3Sc6g {
|
|
2650
2768
|
margin-bottom: 12px;
|
|
2651
2769
|
color: var(--color-grey-500);
|
|
2652
|
-
font-family: "Proxima Nova", sans-serif;
|
|
2653
2770
|
}
|
|
2654
2771
|
._39X-5 {
|
|
2655
|
-
|
|
2656
|
-
font-size:
|
|
2657
|
-
|
|
2772
|
+
font-family: var(--font-family-brand);
|
|
2773
|
+
font-size: var(--font-size-400);
|
|
2774
|
+
line-height: var(--font-line-height-400);
|
|
2775
|
+
font-weight: var(--p-font-weight-bold);
|
|
2658
2776
|
margin: 0;
|
|
2659
2777
|
}
|
|
2660
2778
|
._pwBR_ {
|
|
2661
|
-
|
|
2662
|
-
font-size:
|
|
2663
|
-
|
|
2779
|
+
font-family: var(--font-family-brand);
|
|
2780
|
+
font-size: var(--font-size-200);
|
|
2781
|
+
line-height: var(--font-line-height-200);
|
|
2782
|
+
font-weight: var(--p-font-weight-normal);
|
|
2664
2783
|
margin: 0;
|
|
2665
2784
|
}
|
|
2666
2785
|
._PFp2d {
|
|
@@ -2684,9 +2803,10 @@ input:disabled + ._2W10t::after {
|
|
|
2684
2803
|
background-color: var(--color-white);
|
|
2685
2804
|
}
|
|
2686
2805
|
._eyfGn textarea {
|
|
2687
|
-
|
|
2688
|
-
font-size:
|
|
2689
|
-
|
|
2806
|
+
font-family: var(--font-family-brand);
|
|
2807
|
+
font-size: var(--font-size-200);
|
|
2808
|
+
line-height: var(--font-line-height-200);
|
|
2809
|
+
font-weight: var(--p-font-weight-normal);
|
|
2690
2810
|
color: var(--color-grey-500);
|
|
2691
2811
|
margin: 0;
|
|
2692
2812
|
border: none;
|
|
@@ -2731,12 +2851,16 @@ input:disabled + ._2W10t::after {
|
|
|
2731
2851
|
cursor: pointer;
|
|
2732
2852
|
}
|
|
2733
2853
|
._W4HpY {
|
|
2854
|
+
font-family: var(--font-family-brand);
|
|
2855
|
+
font-size: var(--font-size-200);
|
|
2856
|
+
line-height: var(--font-line-height-200);
|
|
2857
|
+
font-weight: var(--p-font-weight-normal);
|
|
2858
|
+
font-weight: var(--p-font-weight-bold);
|
|
2859
|
+
color: var(--color-grey-500);
|
|
2734
2860
|
display: flex;
|
|
2735
2861
|
align-items: center;
|
|
2736
2862
|
justify-content: center;
|
|
2737
2863
|
background-color: var(--color-white);
|
|
2738
|
-
font-size: 14px;
|
|
2739
|
-
font-weight: 600;
|
|
2740
2864
|
padding: 8px;
|
|
2741
2865
|
border: 1px solid var(--color-grey-200);
|
|
2742
2866
|
border-radius: 25px;
|
|
@@ -2744,7 +2868,6 @@ input:disabled + ._2W10t::after {
|
|
|
2744
2868
|
min-width: 60px;
|
|
2745
2869
|
text-align: center;
|
|
2746
2870
|
vertical-align: middle;
|
|
2747
|
-
color: var(--color-grey-500);
|
|
2748
2871
|
-webkit-user-select: none;
|
|
2749
2872
|
-moz-user-select: none;
|
|
2750
2873
|
user-select: none;
|
|
@@ -2781,14 +2904,15 @@ input:focus-visible + ._W4HpY {
|
|
|
2781
2904
|
outline: none;
|
|
2782
2905
|
}
|
|
2783
2906
|
._3QyeH {
|
|
2784
|
-
|
|
2907
|
+
font-family: var(--font-family-brand);
|
|
2908
|
+
font-size: var(--font-size-200);
|
|
2909
|
+
line-height: var(--font-line-height-200);
|
|
2910
|
+
font-weight: var(--p-font-weight-normal);
|
|
2911
|
+
font-weight: var(--p-font-weight-bold);
|
|
2785
2912
|
padding: 0;
|
|
2786
2913
|
width: auto;
|
|
2787
2914
|
float: none;
|
|
2788
2915
|
color: var(--color-grey-500);
|
|
2789
|
-
font-family: "Proxima Nova", sans-serif;
|
|
2790
|
-
font-weight: 600;
|
|
2791
|
-
font-size: 14px;
|
|
2792
2916
|
min-height: 16px;
|
|
2793
2917
|
}
|
|
2794
2918
|
|
|
@@ -2799,25 +2923,27 @@ input:focus-visible + ._W4HpY {
|
|
|
2799
2923
|
}
|
|
2800
2924
|
|
|
2801
2925
|
._thT22 {
|
|
2802
|
-
|
|
2926
|
+
font-family: var(--font-family-brand);
|
|
2927
|
+
font-size: var(--font-size-200);
|
|
2928
|
+
line-height: var(--font-line-height-200);
|
|
2929
|
+
font-weight: var(--p-font-weight-normal);
|
|
2930
|
+
font-weight: var(--p-font-weight-bold);
|
|
2803
2931
|
padding: 0;
|
|
2804
2932
|
width: auto;
|
|
2805
2933
|
float: none;
|
|
2806
2934
|
color: var(--color-grey-500);
|
|
2807
|
-
font-family: "Proxima Nova", sans-serif;
|
|
2808
|
-
font-weight: 600;
|
|
2809
|
-
font-size: 14px;
|
|
2810
2935
|
min-height: 16px;
|
|
2811
2936
|
}
|
|
2812
2937
|
._3hIRY {
|
|
2813
|
-
|
|
2938
|
+
font-family: var(--font-family-brand);
|
|
2939
|
+
font-size: var(--font-size-200);
|
|
2940
|
+
line-height: var(--font-line-height-200);
|
|
2941
|
+
font-weight: var(--p-font-weight-normal);
|
|
2942
|
+
font-weight: var(--p-font-weight-bold);
|
|
2814
2943
|
padding: 0;
|
|
2815
2944
|
width: auto;
|
|
2816
2945
|
float: none;
|
|
2817
2946
|
color: var(--color-grey-500);
|
|
2818
|
-
font-family: "Proxima Nova", sans-serif;
|
|
2819
|
-
font-weight: 600;
|
|
2820
|
-
font-size: 14px;
|
|
2821
2947
|
min-height: 16px;
|
|
2822
2948
|
}
|
|
2823
2949
|
|
|
@@ -2828,11 +2954,11 @@ input:focus-visible + ._W4HpY {
|
|
|
2828
2954
|
}
|
|
2829
2955
|
|
|
2830
2956
|
._2RJol {
|
|
2957
|
+
font-family: var(--font-family-brand);
|
|
2958
|
+
font-size: var(--font-size-100);
|
|
2959
|
+
line-height: var(--font-line-height-100);
|
|
2960
|
+
font-weight: var(--p-font-weight-normal);
|
|
2831
2961
|
color: var(--color-grey-500);
|
|
2832
|
-
font-family: "Proxima Nova", sans-serif;
|
|
2833
|
-
font-weight: 400;
|
|
2834
|
-
font-size: 12px;
|
|
2835
|
-
line-height: 16px;
|
|
2836
2962
|
}
|
|
2837
2963
|
|
|
2838
2964
|
._1md_9 {
|
|
@@ -2880,25 +3006,26 @@ input:checked ~ ._3mCob {
|
|
|
2880
3006
|
pointer-events: none;
|
|
2881
3007
|
}
|
|
2882
3008
|
._kl23S {
|
|
2883
|
-
|
|
3009
|
+
font-family: var(--font-family-brand);
|
|
3010
|
+
font-size: var(--font-size-200);
|
|
3011
|
+
line-height: var(--font-line-height-200);
|
|
3012
|
+
font-weight: var(--p-font-weight-normal);
|
|
3013
|
+
font-weight: var(--p-font-weight-bold);
|
|
2884
3014
|
padding: 0;
|
|
2885
3015
|
width: auto;
|
|
2886
3016
|
float: none;
|
|
2887
3017
|
color: var(--color-grey-500);
|
|
2888
|
-
font-family: "Proxima Nova", sans-serif;
|
|
2889
|
-
font-weight: 600;
|
|
2890
|
-
font-size: 14px;
|
|
2891
3018
|
min-height: 16px;
|
|
2892
3019
|
}
|
|
2893
3020
|
._2-e0g {
|
|
2894
3021
|
color: var(--color-grey-300);
|
|
2895
3022
|
}
|
|
2896
3023
|
._2CvoH {
|
|
3024
|
+
font-family: var(--font-family-brand);
|
|
3025
|
+
font-size: var(--font-size-100);
|
|
3026
|
+
line-height: var(--font-line-height-100);
|
|
3027
|
+
font-weight: var(--p-font-weight-normal);
|
|
2897
3028
|
color: var(--color-grey-500);
|
|
2898
|
-
font-family: "Proxima Nova", sans-serif;
|
|
2899
|
-
font-weight: 400;
|
|
2900
|
-
font-size: 12px;
|
|
2901
|
-
line-height: 16px;
|
|
2902
3029
|
}
|
|
2903
3030
|
._2l2PZ {
|
|
2904
3031
|
color: var(--color-grey-300);
|
|
@@ -2967,11 +3094,13 @@ input:disabled + ._1aaPx::after {
|
|
|
2967
3094
|
top: 4px;
|
|
2968
3095
|
}
|
|
2969
3096
|
._2XkkE {
|
|
2970
|
-
|
|
3097
|
+
font-family: var(--font-family-brand);
|
|
3098
|
+
font-size: var(--font-size-200);
|
|
3099
|
+
line-height: var(--font-line-height-200);
|
|
3100
|
+
font-weight: var(--p-font-weight-normal);
|
|
2971
3101
|
line-height: 22px;
|
|
3102
|
+
padding: 7px;
|
|
2972
3103
|
border-radius: 4px;
|
|
2973
|
-
font-size: 14px;
|
|
2974
|
-
font-family: "Proxima Nova", sans-serif;
|
|
2975
3104
|
color: var(--color-grey-500);
|
|
2976
3105
|
box-shadow: none;
|
|
2977
3106
|
border: 1px solid var(--color-grey-200);
|
|
@@ -3020,17 +3149,18 @@ input:disabled + ._1aaPx::after {
|
|
|
3020
3149
|
}
|
|
3021
3150
|
._1XvvK {
|
|
3022
3151
|
color: var(--color-grey-200);
|
|
3023
|
-
font-family:
|
|
3152
|
+
font-family: var(--font-family-brand);
|
|
3024
3153
|
}
|
|
3025
3154
|
|
|
3026
3155
|
._1cNVk {
|
|
3027
3156
|
color: var(--color-grey-400);
|
|
3028
|
-
font-family:
|
|
3157
|
+
font-family: var(--font-family-brand);
|
|
3029
3158
|
}
|
|
3030
3159
|
._12jq3 {
|
|
3031
|
-
font-family:
|
|
3032
|
-
font-
|
|
3033
|
-
|
|
3160
|
+
font-family: var(--font-family-brand);
|
|
3161
|
+
font-size: var(--font-size-200);
|
|
3162
|
+
line-height: var(--font-line-height-200);
|
|
3163
|
+
font-weight: var(--p-font-weight-normal);
|
|
3034
3164
|
color: var(--color-grey-400);
|
|
3035
3165
|
display: flex;
|
|
3036
3166
|
flex-direction: column;
|
|
@@ -3038,11 +3168,13 @@ input:disabled + ._1aaPx::after {
|
|
|
3038
3168
|
padding: 8px 12px;
|
|
3039
3169
|
}
|
|
3040
3170
|
._10EFd, ._33Mhr {
|
|
3041
|
-
|
|
3171
|
+
font-family: var(--font-family-brand);
|
|
3172
|
+
font-size: var(--font-size-200);
|
|
3173
|
+
line-height: var(--font-line-height-200);
|
|
3174
|
+
font-weight: var(--p-font-weight-normal);
|
|
3042
3175
|
line-height: 22px;
|
|
3176
|
+
padding: 7px;
|
|
3043
3177
|
border-radius: 4px;
|
|
3044
|
-
font-size: 14px;
|
|
3045
|
-
font-family: "Proxima Nova", sans-serif;
|
|
3046
3178
|
color: var(--color-grey-500);
|
|
3047
3179
|
box-shadow: none;
|
|
3048
3180
|
border: 1px solid var(--color-grey-200);
|
|
@@ -3083,11 +3215,13 @@ input:disabled + ._1aaPx::after {
|
|
|
3083
3215
|
width: 100%;
|
|
3084
3216
|
}
|
|
3085
3217
|
._vgwnU, ._LZvMX input, ._LZvMX {
|
|
3086
|
-
|
|
3218
|
+
font-family: var(--font-family-brand);
|
|
3219
|
+
font-size: var(--font-size-200);
|
|
3220
|
+
line-height: var(--font-line-height-200);
|
|
3221
|
+
font-weight: var(--p-font-weight-normal);
|
|
3087
3222
|
line-height: 22px;
|
|
3223
|
+
padding: 7px;
|
|
3088
3224
|
border-radius: 4px;
|
|
3089
|
-
font-size: 14px;
|
|
3090
|
-
font-family: "Proxima Nova", sans-serif;
|
|
3091
3225
|
color: var(--color-grey-500);
|
|
3092
3226
|
box-shadow: none;
|
|
3093
3227
|
border: 1px solid var(--color-grey-200);
|
|
@@ -3151,7 +3285,7 @@ input:disabled + ._1aaPx::after {
|
|
|
3151
3285
|
}
|
|
3152
3286
|
._9qjsN {
|
|
3153
3287
|
--rdp-cell-size: 37px;
|
|
3154
|
-
--rdp-caption-font-size:
|
|
3288
|
+
--rdp-caption-font-size: var(--font-size-300);
|
|
3155
3289
|
--rdp-accent-color: var(--color-tangerine-200);
|
|
3156
3290
|
--rdp-background-color: var(--color-grey-100);
|
|
3157
3291
|
--rdp-accent-color-dark: var(--color-tangerine-400);
|
|
@@ -3179,14 +3313,16 @@ input:disabled + ._1aaPx::after {
|
|
|
3179
3313
|
}
|
|
3180
3314
|
|
|
3181
3315
|
._2x1hd {
|
|
3316
|
+
font-family: var(--font-family-brand);
|
|
3317
|
+
font-size: var(--font-size-200);
|
|
3318
|
+
line-height: var(--font-line-height-200);
|
|
3319
|
+
font-weight: var(--p-font-weight-normal);
|
|
3182
3320
|
vertical-align: middle;
|
|
3183
3321
|
text-align: center;
|
|
3184
3322
|
height: 100%;
|
|
3185
3323
|
height: var(--rdp-cell-size);
|
|
3186
3324
|
padding: 0;
|
|
3187
3325
|
color: var(--color-grey-400);
|
|
3188
|
-
font-size: 14px;
|
|
3189
|
-
font-weight: 400;
|
|
3190
3326
|
background: none;
|
|
3191
3327
|
border: none;
|
|
3192
3328
|
}
|
|
@@ -3245,11 +3381,13 @@ input:disabled + ._1aaPx::after {
|
|
|
3245
3381
|
color: var(--color-grey-200);
|
|
3246
3382
|
}
|
|
3247
3383
|
._pPDKc, ._rSyiE input, ._rSyiE {
|
|
3248
|
-
|
|
3384
|
+
font-family: var(--font-family-brand);
|
|
3385
|
+
font-size: var(--font-size-200);
|
|
3386
|
+
line-height: var(--font-line-height-200);
|
|
3387
|
+
font-weight: var(--p-font-weight-normal);
|
|
3249
3388
|
line-height: 22px;
|
|
3389
|
+
padding: 7px;
|
|
3250
3390
|
border-radius: 4px;
|
|
3251
|
-
font-size: 14px;
|
|
3252
|
-
font-family: "Proxima Nova", sans-serif;
|
|
3253
3391
|
color: var(--color-grey-500);
|
|
3254
3392
|
box-shadow: none;
|
|
3255
3393
|
border: 1px solid var(--color-grey-200);
|
|
@@ -3312,15 +3450,17 @@ input:disabled + ._1aaPx::after {
|
|
|
3312
3450
|
border-top-right-radius: 4px;
|
|
3313
3451
|
}
|
|
3314
3452
|
._2K8Ob {
|
|
3315
|
-
|
|
3453
|
+
font-family: var(--font-family-brand);
|
|
3454
|
+
font-size: var(--font-size-200);
|
|
3455
|
+
line-height: var(--font-line-height-200);
|
|
3456
|
+
font-weight: var(--p-font-weight-normal);
|
|
3457
|
+
background-color: var(--color-white);
|
|
3316
3458
|
position: absolute;
|
|
3317
3459
|
height: 36px;
|
|
3318
3460
|
margin-top: 1px;
|
|
3319
3461
|
align-items: center;
|
|
3320
3462
|
display: flex;
|
|
3321
3463
|
pointer-events: none;
|
|
3322
|
-
font-size: 14px;
|
|
3323
|
-
font-family: "Proxima Nova", sans-serif;
|
|
3324
3464
|
color: var(--color-grey-500);
|
|
3325
3465
|
}
|
|
3326
3466
|
._1uJbR {
|
|
@@ -3328,7 +3468,7 @@ input:disabled + ._1aaPx::after {
|
|
|
3328
3468
|
display: flex;
|
|
3329
3469
|
}
|
|
3330
3470
|
._Fc99X {
|
|
3331
|
-
font-size:
|
|
3471
|
+
font-size: var(--font-size-200);
|
|
3332
3472
|
}
|
|
3333
3473
|
|
|
3334
3474
|
input._1zowl {
|
|
@@ -3371,11 +3511,11 @@ input._1zowl {
|
|
|
3371
3511
|
background-color: var(--color-grey-100);
|
|
3372
3512
|
}
|
|
3373
3513
|
._IHf11 {
|
|
3374
|
-
font-size:
|
|
3514
|
+
font-size: var(--font-size-200);
|
|
3375
3515
|
height: 33px;
|
|
3376
3516
|
}
|
|
3377
3517
|
._1KMRs {
|
|
3378
|
-
font-size:
|
|
3518
|
+
font-size: var(--font-size-200);
|
|
3379
3519
|
}
|
|
3380
3520
|
@charset "UTF-8";
|
|
3381
3521
|
._M2doN {
|
|
@@ -4374,17 +4514,18 @@ input._1zowl {
|
|
|
4374
4514
|
background-image: url(./flags/zw.svg);
|
|
4375
4515
|
}
|
|
4376
4516
|
._1QLaK {
|
|
4517
|
+
font-family: var(--font-family-brand);
|
|
4518
|
+
font-size: var(--font-size-100);
|
|
4519
|
+
line-height: var(--font-line-height-100);
|
|
4520
|
+
font-weight: var(--p-font-weight-normal);
|
|
4377
4521
|
display: inline-flex;
|
|
4378
4522
|
background-color: var(--color-tangerine-400);
|
|
4379
4523
|
height: 20px;
|
|
4380
4524
|
min-width: 20px;
|
|
4381
4525
|
color: var(--color-white);
|
|
4382
4526
|
text-align: center;
|
|
4383
|
-
line-height: 20px;
|
|
4384
4527
|
border-radius: 20px;
|
|
4385
|
-
font-size: 12px;
|
|
4386
4528
|
box-sizing: border-box;
|
|
4387
|
-
font-weight: normal;
|
|
4388
4529
|
padding: 0 6px;
|
|
4389
4530
|
align-items: center;
|
|
4390
4531
|
border: 1px solid var(--color-white);
|
|
@@ -4409,7 +4550,6 @@ input._1zowl {
|
|
|
4409
4550
|
justify-content: center;
|
|
4410
4551
|
align-items: center;
|
|
4411
4552
|
text-align: center;
|
|
4412
|
-
font-family: "Proxima Nova", sans-serif;
|
|
4413
4553
|
color: var(--color-white);
|
|
4414
4554
|
border-radius: 50%;
|
|
4415
4555
|
width: 20px;
|
|
@@ -4430,36 +4570,48 @@ input._1zowl {
|
|
|
4430
4570
|
object-fit: cover;
|
|
4431
4571
|
}
|
|
4432
4572
|
._o5x6S {
|
|
4573
|
+
font-family: var(--font-family-brand);
|
|
4574
|
+
font-size: var(--font-size-200);
|
|
4575
|
+
line-height: var(--font-line-height-200);
|
|
4576
|
+
font-weight: var(--p-font-weight-normal);
|
|
4433
4577
|
width: 20px;
|
|
4434
4578
|
height: 20px;
|
|
4435
|
-
font-size: 14px;
|
|
4436
4579
|
}
|
|
4437
4580
|
._o5x6S ._NN8-D {
|
|
4438
4581
|
margin-left: 18px;
|
|
4439
4582
|
margin-top: 10px;
|
|
4440
4583
|
}
|
|
4441
4584
|
._VxW5y {
|
|
4585
|
+
font-family: var(--font-family-brand);
|
|
4586
|
+
font-size: var(--font-size-400);
|
|
4587
|
+
line-height: var(--font-line-height-400);
|
|
4588
|
+
font-weight: var(--p-font-weight-normal);
|
|
4442
4589
|
width: 30px;
|
|
4443
4590
|
height: 30px;
|
|
4444
|
-
font-size: 20px;
|
|
4445
4591
|
}
|
|
4446
4592
|
._VxW5y ._NN8-D {
|
|
4447
4593
|
margin-left: 20px;
|
|
4448
4594
|
margin-top: 15px;
|
|
4449
4595
|
}
|
|
4450
4596
|
._ec7jQ {
|
|
4597
|
+
font-family: var(--font-family-brand);
|
|
4598
|
+
font-size: var(--font-size-500);
|
|
4599
|
+
line-height: var(--font-line-height-500);
|
|
4600
|
+
font-weight: var(--p-font-weight-bold);
|
|
4451
4601
|
width: 40px;
|
|
4452
4602
|
height: 40px;
|
|
4453
|
-
font-size: 24px;
|
|
4454
4603
|
}
|
|
4455
4604
|
._ec7jQ ._NN8-D {
|
|
4456
4605
|
margin-left: 23px;
|
|
4457
4606
|
margin-top: 18px;
|
|
4458
4607
|
}
|
|
4459
4608
|
._3VS00 {
|
|
4609
|
+
font-family: var(--font-family-brand);
|
|
4610
|
+
font-size: var(--font-size-600);
|
|
4611
|
+
line-height: var(--font-line-height-600);
|
|
4612
|
+
font-weight: var(--p-font-weight-bold);
|
|
4460
4613
|
width: 80px;
|
|
4461
4614
|
height: 80px;
|
|
4462
|
-
font-size: 24px;
|
|
4463
4615
|
}
|
|
4464
4616
|
._3VS00 ._NN8-D {
|
|
4465
4617
|
margin-left: 55px;
|
|
@@ -4475,11 +4627,13 @@ input._1zowl {
|
|
|
4475
4627
|
padding-top: 25%;
|
|
4476
4628
|
}
|
|
4477
4629
|
._3e7Of {
|
|
4478
|
-
font-
|
|
4479
|
-
font-
|
|
4630
|
+
font-family: var(--font-family-brand);
|
|
4631
|
+
font-size: var(--font-size-100);
|
|
4632
|
+
line-height: var(--font-line-height-100);
|
|
4633
|
+
font-weight: var(--p-font-weight-normal);
|
|
4634
|
+
font-weight: var(--p-font-weight-bold);
|
|
4480
4635
|
border-radius: 2px;
|
|
4481
4636
|
padding: 2px 8px;
|
|
4482
|
-
line-height: 16px;
|
|
4483
4637
|
display: inline-block;
|
|
4484
4638
|
text-align: center;
|
|
4485
4639
|
text-transform: uppercase;
|
|
@@ -4509,11 +4663,13 @@ input._1zowl {
|
|
|
4509
4663
|
color: var(--color-radish-600);
|
|
4510
4664
|
}
|
|
4511
4665
|
._1vA9B {
|
|
4512
|
-
font-
|
|
4513
|
-
font-
|
|
4666
|
+
font-family: var(--font-family-brand);
|
|
4667
|
+
font-size: var(--font-size-200);
|
|
4668
|
+
line-height: var(--font-line-height-200);
|
|
4669
|
+
font-weight: var(--p-font-weight-normal);
|
|
4670
|
+
font-weight: var(--p-font-weight-bold);
|
|
4514
4671
|
border-radius: 25px;
|
|
4515
|
-
padding:
|
|
4516
|
-
line-height: 28px;
|
|
4672
|
+
padding: 5px 12px;
|
|
4517
4673
|
min-width: 40px;
|
|
4518
4674
|
max-width: -moz-fit-content;
|
|
4519
4675
|
max-width: fit-content;
|
|
@@ -4567,8 +4723,11 @@ input._1zowl {
|
|
|
4567
4723
|
max-width: 667px;
|
|
4568
4724
|
}
|
|
4569
4725
|
._1o2PF {
|
|
4726
|
+
font-family: var(--font-family-brand);
|
|
4727
|
+
font-size: var(--font-size-200);
|
|
4728
|
+
line-height: var(--font-line-height-200);
|
|
4729
|
+
font-weight: var(--p-font-weight-normal);
|
|
4570
4730
|
color: var(--color-grey-500);
|
|
4571
|
-
font-size: 14px;
|
|
4572
4731
|
}
|
|
4573
4732
|
._mfMlg {
|
|
4574
4733
|
display: flex;
|