@sonic-equipment/ui 156.0.0 → 158.0.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/dist/algolia/algolia-sort-by.js +1 -1
- package/dist/buttons/add-to-cart-button/add-to-cart-button.js +8 -11
- package/dist/buttons/add-to-cart-button/add-to-cart-button.module.css.js +1 -1
- package/dist/cards/orderline-card/orderline-card.js +1 -2
- package/dist/cards/product-card/connected-product-card.d.ts +2 -2
- package/dist/cards/product-card/product-card.js +1 -2
- package/dist/cards/product-card/product-card.module.css.js +1 -1
- package/dist/cart-totals/cart-totals.js +1 -1
- package/dist/country-select/country-select.d.ts +1 -0
- package/dist/country-select/country-select.js +3 -3
- package/dist/exports.d.ts +13 -1
- package/dist/filters/pagination/pagination.js +3 -1
- package/dist/forms/checkbox/checkbox.d.ts +13 -4
- package/dist/forms/checkbox/checkbox.js +6 -2
- package/dist/forms/checkbox/checkbox.module.css.js +1 -1
- package/dist/forms/checkbox-field/checkbox-field.d.ts +10 -0
- package/dist/forms/checkbox-field/checkbox-field.js +16 -0
- package/dist/forms/checkbox-field/checkbox-field.module.css.js +3 -0
- package/dist/forms/color-checkbox/color-checkbox.d.ts +5 -3
- package/dist/forms/color-checkbox/color-checkbox.js +7 -3
- package/dist/forms/form/form-field-layout.d.ts +10 -0
- package/dist/forms/form/form-field-layout.js +10 -0
- package/dist/forms/form/form-field-layout.module.css.js +3 -0
- package/dist/forms/form/form-segment-group.d.ts +6 -0
- package/dist/forms/form/form-segment-group.js +13 -0
- package/dist/forms/form/form-segment-group.module.css.js +3 -0
- package/dist/forms/form/form-segment.d.ts +6 -0
- package/dist/forms/form/form-segment.js +9 -0
- package/dist/forms/form/form-segment.module.css.js +3 -0
- package/dist/forms/form/form.d.ts +16 -0
- package/dist/forms/form/form.js +27 -0
- package/dist/forms/form/form.module.css.js +3 -0
- package/dist/forms/input/input.d.ts +2 -0
- package/dist/forms/input/input.js +2 -2
- package/dist/forms/label/label.js +1 -1
- package/dist/forms/number-field/number-field.d.ts +9 -9
- package/dist/forms/number-field/number-field.js +18 -14
- package/dist/forms/number-field/number-field.module.css.js +1 -1
- package/dist/forms/select/select.js +3 -3
- package/dist/forms/select-field/select-field.d.ts +27 -0
- package/dist/forms/select-field/select-field.js +31 -0
- package/dist/forms/select-field/select-field.module.css.js +3 -0
- package/dist/forms/switch/switch.d.ts +12 -4
- package/dist/forms/switch/switch.js +6 -2
- package/dist/forms/switch/switch.module.css.js +1 -1
- package/dist/forms/switch-field/switch-field.d.ts +10 -0
- package/dist/forms/switch-field/switch-field.js +18 -0
- package/dist/forms/switch-field/switch-field.module.css.js +3 -0
- package/dist/forms/text-field/password-reveal-toggle/password-reveal-toggle.js +1 -1
- package/dist/forms/text-field/password-reveal-toggle/password-reveal-toggle.module.css.js +1 -1
- package/dist/forms/text-field/text-field.d.ts +32 -20
- package/dist/forms/text-field/text-field.js +13 -10
- package/dist/forms/text-field/text-field.module.css.js +1 -1
- package/dist/forms/textarea/textarea.d.ts +1 -0
- package/dist/index.js +14 -2
- package/dist/intl/translation-id.d.ts +1 -1
- package/dist/pages/account/components/create-account-form/create-account-form.d.ts +11 -0
- package/dist/pages/account/components/create-account-form/create-account-form.js +89 -0
- package/dist/pages/account/components/create-account-form/create-account-form.module.css.js +3 -0
- package/dist/{sign-in-form → pages/account/components/sign-in-form}/sign-in-form.d.ts +3 -3
- package/dist/pages/account/components/sign-in-form/sign-in-form.js +71 -0
- package/dist/pages/account/components/sign-in-form/sign-in-form.module.css.js +3 -0
- package/dist/pages/account/create-account-page/create-account-page.d.ts +3 -0
- package/dist/pages/account/create-account-page/create-account-page.js +45 -0
- package/dist/pages/account/layouts/sign-in-page-layout/sign-in-page-background-image.d.ts +6 -0
- package/dist/pages/account/layouts/sign-in-page-layout/sign-in-page-background-image.js +9 -0
- package/dist/pages/account/layouts/sign-in-page-layout/sign-in-page-layout.d.ts +1 -1
- package/dist/pages/account/layouts/sign-in-page-layout/sign-in-page-layout.js +2 -1
- package/dist/pages/account/sign-in-page/sign-in-page.js +3 -10
- package/dist/pages/checkout/order-confirmation-page/order-confirmation-page-content.js +1 -1
- package/dist/pages/checkout/payment-page/components/payment.js +6 -5
- package/dist/pages/checkout/shipping-page/shipping-page-content.js +1 -1
- package/dist/pages/checkout/shipping-page/shipping-page.js +1 -1
- package/dist/shared/api/storefront/hooks/authentication/use-create-account.d.ts +3 -0
- package/dist/shared/api/storefront/hooks/authentication/use-create-account.js +28 -0
- package/dist/shared/api/storefront/services/authentication-service.d.ts +23 -0
- package/dist/shared/api/storefront/services/authentication-service.js +40 -2
- package/dist/shared/hooks/use-script.d.ts +3 -3
- package/dist/shared/model/account.d.ts +19 -0
- package/dist/shared/model/account.js +4 -0
- package/dist/styles.css +844 -613
- package/dist/tooltip/tooltip.js +1 -1
- package/package.json +1 -1
- package/dist/sign-in-form/sign-in-form.js +0 -59
- package/dist/sign-in-form/sign-in-form.module.css.js +0 -3
package/dist/styles.css
CHANGED
|
@@ -640,13 +640,13 @@
|
|
|
640
640
|
.icon-button-module-4PDK- {
|
|
641
641
|
all: unset;
|
|
642
642
|
display: flex;
|
|
643
|
-
min-width: 48px;
|
|
644
|
-
min-height: 48px;
|
|
645
643
|
align-items: center;
|
|
646
644
|
justify-content: center;
|
|
647
645
|
border: none;
|
|
648
646
|
background-color: transparent;
|
|
649
647
|
cursor: pointer;
|
|
648
|
+
min-block-size: 48px;
|
|
649
|
+
min-inline-size: 48px;
|
|
650
650
|
-webkit-tap-highlight-color: transparent;
|
|
651
651
|
}
|
|
652
652
|
|
|
@@ -662,13 +662,13 @@
|
|
|
662
662
|
*********************************************************/
|
|
663
663
|
|
|
664
664
|
.icon-button-module-k3s9J svg {
|
|
665
|
-
|
|
666
|
-
|
|
665
|
+
block-size: 24px;
|
|
666
|
+
inline-size: 24px;
|
|
667
667
|
}
|
|
668
668
|
|
|
669
669
|
.icon-button-module-agk6Y svg {
|
|
670
|
-
|
|
671
|
-
|
|
670
|
+
block-size: 32px;
|
|
671
|
+
inline-size: 32px;
|
|
672
672
|
}
|
|
673
673
|
|
|
674
674
|
/*********************************************************
|
|
@@ -689,6 +689,10 @@
|
|
|
689
689
|
color: currentcolor;
|
|
690
690
|
}
|
|
691
691
|
|
|
692
|
+
.icon-button-module-fTeP4:focus-visible, .icon-button-module-dM0eo:focus-visible {
|
|
693
|
+
color: var(--color-brand-red);
|
|
694
|
+
}
|
|
695
|
+
|
|
692
696
|
@media (hover: hover) {
|
|
693
697
|
.icon-button-module-fTeP4:hover, .icon-button-module-dM0eo:hover {
|
|
694
698
|
color: var(--color-brand-red);
|
|
@@ -1031,6 +1035,21 @@
|
|
|
1031
1035
|
gap: var(--space-4);
|
|
1032
1036
|
}
|
|
1033
1037
|
|
|
1038
|
+
.label-module-LGfJt {
|
|
1039
|
+
all: unset;
|
|
1040
|
+
cursor: pointer;
|
|
1041
|
+
font-weight: var(--font-weight-bold);
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1044
|
+
.label-module-LGfJt:has(+ div [data-disabled]) {
|
|
1045
|
+
cursor: default;
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
.label-module-LGfJt :where(.label-module-oTWaS) {
|
|
1049
|
+
color: var(--color-brand-red);
|
|
1050
|
+
margin-inline-start: var(--space-4);
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1034
1053
|
.checkbox-module-YNVdd {
|
|
1035
1054
|
--selected-color: var(--color-brand-red);
|
|
1036
1055
|
--selected-color-pressed: var(--color-brand-dark-red);
|
|
@@ -1041,12 +1060,11 @@
|
|
|
1041
1060
|
all: unset;
|
|
1042
1061
|
display: flex;
|
|
1043
1062
|
box-sizing: border-box;
|
|
1044
|
-
align-items:
|
|
1063
|
+
align-items: baseline;
|
|
1045
1064
|
color: var(--color-brand-black);
|
|
1046
1065
|
cursor: pointer;
|
|
1047
1066
|
font-size: var(--font-size-14);
|
|
1048
1067
|
forced-color-adjust: none;
|
|
1049
|
-
gap: 6px;
|
|
1050
1068
|
}
|
|
1051
1069
|
|
|
1052
1070
|
.checkbox-module-YNVdd .checkbox-module-UKoyf {
|
|
@@ -1054,6 +1072,7 @@
|
|
|
1054
1072
|
width: 16px;
|
|
1055
1073
|
height: 16px;
|
|
1056
1074
|
box-sizing: border-box;
|
|
1075
|
+
flex-shrink: 0;
|
|
1057
1076
|
align-items: center;
|
|
1058
1077
|
justify-content: center;
|
|
1059
1078
|
border: 2px solid var(--color-brand-medium-gray);
|
|
@@ -1073,7 +1092,9 @@
|
|
|
1073
1092
|
stroke-linecap: round;
|
|
1074
1093
|
stroke-linejoin: round;
|
|
1075
1094
|
stroke-width: 1.45;
|
|
1076
|
-
transition:
|
|
1095
|
+
transition:
|
|
1096
|
+
all 200ms,
|
|
1097
|
+
stroke-dashoffset 600ms;
|
|
1077
1098
|
}
|
|
1078
1099
|
|
|
1079
1100
|
.checkbox-module-YNVdd[data-disabled] {
|
|
@@ -1085,7 +1106,7 @@
|
|
|
1085
1106
|
border-color: var(--color-brand-dark-gray);
|
|
1086
1107
|
}
|
|
1087
1108
|
|
|
1088
|
-
.checkbox-module-YNVdd
|
|
1109
|
+
.checkbox-module-YNVdd[data-focus-visible] .checkbox-module-UKoyf {
|
|
1089
1110
|
box-shadow: var(--shadow-focus-outline-padded);
|
|
1090
1111
|
outline: 2px solid var(--color-brand-white);
|
|
1091
1112
|
outline-offset: 0;
|
|
@@ -1126,12 +1147,12 @@
|
|
|
1126
1147
|
.checkbox-module-YNVdd.checkbox-module-nEhvW[data-selected] .checkbox-module-UKoyf, .checkbox-module-YNVdd.checkbox-module-nEhvW[data-indeterminate] .checkbox-module-UKoyf {
|
|
1127
1148
|
border: 1px solid var(--color-brand-red);
|
|
1128
1149
|
background: unset;
|
|
1129
|
-
background-image:
|
|
1130
|
-
|
|
1131
|
-
var(--selected-color)
|
|
1132
|
-
),
|
|
1150
|
+
background-image:
|
|
1151
|
+
linear-gradient(var(--selected-color), var(--selected-color)),
|
|
1133
1152
|
linear-gradient(var(--selected-color), var(--selected-color));
|
|
1134
|
-
background-position:
|
|
1153
|
+
background-position:
|
|
1154
|
+
2px 2px,
|
|
1155
|
+
14px 14px;
|
|
1135
1156
|
background-repeat: no-repeat;
|
|
1136
1157
|
background-size: 10px 10px;
|
|
1137
1158
|
}
|
|
@@ -1141,10 +1162,185 @@
|
|
|
1141
1162
|
opacity: 0.4;
|
|
1142
1163
|
}
|
|
1143
1164
|
|
|
1165
|
+
.checkbox-module-YNVdd .checkbox-module-ITd8W:not(:empty) {
|
|
1166
|
+
font-weight: unset;
|
|
1167
|
+
margin-inline-start: var(--space-8);
|
|
1168
|
+
}
|
|
1169
|
+
|
|
1170
|
+
.tooltip-module-T-DtX {
|
|
1171
|
+
--tooltip-bg-color: var(--color-gray-800);
|
|
1172
|
+
|
|
1173
|
+
display: inline-block;
|
|
1174
|
+
padding: var(--space-12) var(--space-16);
|
|
1175
|
+
border-radius: var(--border-radius-8);
|
|
1176
|
+
background: var(--tooltip-bg-color);
|
|
1177
|
+
color: var(--color-white);
|
|
1178
|
+
font-size: var(--font-size-14);
|
|
1179
|
+
line-height: 1.14;
|
|
1180
|
+
max-inline-size: 40ch;
|
|
1181
|
+
overflow-wrap: break-word;
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
.tooltip-module-T-DtX .tooltip-module-CBW5f svg {
|
|
1185
|
+
display: block;
|
|
1186
|
+
margin: -6px 1px 0;
|
|
1187
|
+
fill: var(--tooltip-bg-color);
|
|
1188
|
+
stroke: var(--tooltip-bg-color);
|
|
1189
|
+
stroke-width: 1px;
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
.tooltip-module-T-DtX[data-placement='top']:has(.tooltip-module-CBW5f) {
|
|
1193
|
+
margin-block-end: 6px;
|
|
1194
|
+
}
|
|
1195
|
+
|
|
1196
|
+
.tooltip-module-T-DtX[data-placement='bottom']:has(.tooltip-module-CBW5f) {
|
|
1197
|
+
margin-block-start: 6px;
|
|
1198
|
+
}
|
|
1199
|
+
|
|
1200
|
+
.tooltip-module-T-DtX[data-placement='bottom'] .tooltip-module-CBW5f svg {
|
|
1201
|
+
margin: 0 1px -6px;
|
|
1202
|
+
transform: rotate(180deg);
|
|
1203
|
+
}
|
|
1204
|
+
|
|
1205
|
+
.tooltip-module-T-DtX[data-placement='right']:has(.tooltip-module-CBW5f) {
|
|
1206
|
+
margin-inline-start: 6px;
|
|
1207
|
+
}
|
|
1208
|
+
|
|
1209
|
+
.tooltip-module-T-DtX[data-placement='right'] .tooltip-module-CBW5f svg {
|
|
1210
|
+
margin: 1px -6px 1px 0;
|
|
1211
|
+
transform: rotate(90deg);
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1214
|
+
.tooltip-module-T-DtX[data-placement='left']:has(.tooltip-module-CBW5f) {
|
|
1215
|
+
margin-inline-end: 6px;
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
.tooltip-module-T-DtX[data-placement='left'] .tooltip-module-CBW5f svg {
|
|
1219
|
+
margin: 1px 0 1px -6px;
|
|
1220
|
+
transform: rotate(-90deg);
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
.tooltip-module-T-DtX[data-entering] {
|
|
1224
|
+
animation: tooltip-module-zl1q9 200ms;
|
|
1225
|
+
}
|
|
1226
|
+
|
|
1227
|
+
.tooltip-module-T-DtX[data-exiting] {
|
|
1228
|
+
animation: tooltip-module-zl1q9 200ms reverse ease-in;
|
|
1229
|
+
}
|
|
1230
|
+
|
|
1231
|
+
.tooltip-module-T-DtX ul {
|
|
1232
|
+
padding: 0 0 0 1.2em;
|
|
1233
|
+
margin: var(--space-8) 0 0;
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1236
|
+
.tooltip-module-DRHoc {
|
|
1237
|
+
display: inline-flex;
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
.tooltip-module-DRHoc .tooltip-module-3q6nr {
|
|
1241
|
+
color: currentcolor;
|
|
1242
|
+
min-block-size: unset;
|
|
1243
|
+
min-inline-size: unset;
|
|
1244
|
+
}
|
|
1245
|
+
|
|
1246
|
+
.tooltip-module-DRHoc .tooltip-module-3q6nr:hover {
|
|
1247
|
+
color: var(--color-primary);
|
|
1248
|
+
}
|
|
1249
|
+
|
|
1250
|
+
/* stylelint-disable-next-line selector-class-pattern */
|
|
1251
|
+
|
|
1252
|
+
.react-aria-Dialog {
|
|
1253
|
+
outline: 0;
|
|
1254
|
+
}
|
|
1255
|
+
|
|
1256
|
+
@keyframes tooltip-module-zl1q9 {
|
|
1257
|
+
from {
|
|
1258
|
+
opacity: 0;
|
|
1259
|
+
}
|
|
1260
|
+
|
|
1261
|
+
to {
|
|
1262
|
+
opacity: 1;
|
|
1263
|
+
}
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1266
|
+
.info-icon-tooltip-module-oR4nD {
|
|
1267
|
+
--color-trigger: var(--color-brand-medium-gray);
|
|
1268
|
+
--color-trigger-hover: var(--color-brand-dark-gray);
|
|
1269
|
+
--color-trigger-active: var(--color-brand-dark-gray);
|
|
1270
|
+
|
|
1271
|
+
display: inline-flex;
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1274
|
+
.info-icon-tooltip-module-oR4nD.info-icon-tooltip-module-5zfDr {
|
|
1275
|
+
--color-trigger: currentcolor;
|
|
1276
|
+
--color-trigger-hover: color-mix(in srgb, currentcolor, #000 20%);
|
|
1277
|
+
--color-trigger-active: color-mix(in srgb, currentcolor, #000 20%);
|
|
1278
|
+
}
|
|
1279
|
+
|
|
1280
|
+
.info-icon-tooltip-module-oR4nD .info-icon-tooltip-module-0lY-K {
|
|
1281
|
+
border-radius: 50%;
|
|
1282
|
+
color: var(--color-trigger);
|
|
1283
|
+
min-block-size: unset;
|
|
1284
|
+
min-inline-size: unset;
|
|
1285
|
+
}
|
|
1286
|
+
|
|
1287
|
+
.info-icon-tooltip-module-oR4nD .info-icon-tooltip-module-0lY-K:hover {
|
|
1288
|
+
color: var(--color-trigger-hover);
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
.info-icon-tooltip-module-oR4nD .info-icon-tooltip-module-0lY-K:focus-visible {
|
|
1292
|
+
box-shadow: var(--shadow-focus-outline);
|
|
1293
|
+
}
|
|
1294
|
+
|
|
1295
|
+
.info-icon-tooltip-module-oR4nD .info-icon-tooltip-module-0lY-K[aria-expanded='true'] {
|
|
1296
|
+
color: var(--color-trigger-active);
|
|
1297
|
+
}
|
|
1298
|
+
|
|
1144
1299
|
.field-error-module-FXnIg {
|
|
1145
1300
|
color: var(--color-brand-red);
|
|
1146
1301
|
}
|
|
1147
1302
|
|
|
1303
|
+
.form-field-layout-module-ATB1W {
|
|
1304
|
+
display: grid;
|
|
1305
|
+
gap: 0;
|
|
1306
|
+
grid-template: repeat(3, min-content) / 1fr auto;
|
|
1307
|
+
grid-template-areas:
|
|
1308
|
+
'label .'
|
|
1309
|
+
'field info'
|
|
1310
|
+
'error .';
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
|
+
.form-field-layout-module-ATB1W .form-field-layout-module-3tbc7 {
|
|
1314
|
+
display: grid;
|
|
1315
|
+
grid-area: label;
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
.form-field-layout-module-ATB1W .form-field-layout-module-3tbc7:not(:empty) {
|
|
1319
|
+
margin-block-end: var(--space-4);
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1322
|
+
.form-field-layout-module-ATB1W .form-field-layout-module-vT6Gy {
|
|
1323
|
+
display: grid;
|
|
1324
|
+
align-self: center;
|
|
1325
|
+
grid-area: field;
|
|
1326
|
+
}
|
|
1327
|
+
|
|
1328
|
+
.form-field-layout-module-ATB1W .form-field-layout-module-UcHO- {
|
|
1329
|
+
display: grid;
|
|
1330
|
+
align-self: center;
|
|
1331
|
+
grid-area: info;
|
|
1332
|
+
margin-inline-start: var(--space-4);
|
|
1333
|
+
}
|
|
1334
|
+
|
|
1335
|
+
.form-field-layout-module-ATB1W .form-field-layout-module-Pfatk {
|
|
1336
|
+
display: grid;
|
|
1337
|
+
grid-area: error;
|
|
1338
|
+
}
|
|
1339
|
+
|
|
1340
|
+
.form-field-layout-module-ATB1W .form-field-layout-module-Pfatk:not(:empty) {
|
|
1341
|
+
margin-block-start: var(--space-4);
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1148
1344
|
/*************************************************************************
|
|
1149
1345
|
* Shared Text Field Styles
|
|
1150
1346
|
*************************************************************************/
|
|
@@ -1212,143 +1408,110 @@
|
|
|
1212
1408
|
background-color: var(--color-brand-red);
|
|
1213
1409
|
content: '';
|
|
1214
1410
|
}
|
|
1411
|
+
/* growing input field */
|
|
1412
|
+
.input-module-2woJR:has(.input-module-6HwY4) {
|
|
1413
|
+
justify-self: flex-start;
|
|
1414
|
+
}
|
|
1215
1415
|
.input-module-2woJR .input-module-6HwY4 {
|
|
1216
|
-
|
|
1217
|
-
}
|
|
1218
|
-
.input-module-2woJR .input-module-6HwY4 .input-module-pNKEt,
|
|
1219
|
-
.input-module-2woJR .input-module-6HwY4 input {
|
|
1220
|
-
min-width: auto;
|
|
1221
|
-
grid-area: 1 / 1;
|
|
1416
|
+
display: inline-grid;
|
|
1222
1417
|
}
|
|
1418
|
+
.input-module-2woJR .input-module-6HwY4 .input-module-pNKEt,
|
|
1419
|
+
.input-module-2woJR .input-module-6HwY4 input {
|
|
1420
|
+
min-width: 2.35em;
|
|
1421
|
+
grid-area: 1 / 1;
|
|
1422
|
+
}
|
|
1223
1423
|
.input-module-2woJR .input-module-6HwY4 input {
|
|
1224
|
-
|
|
1225
|
-
|
|
1424
|
+
text-align: center;
|
|
1425
|
+
}
|
|
1226
1426
|
.input-module-2woJR .input-module-6HwY4 .input-module-pNKEt {
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1427
|
+
display: block;
|
|
1428
|
+
visibility: hidden;
|
|
1429
|
+
white-space: nowrap;
|
|
1430
|
+
}
|
|
1231
1431
|
/* account for inline element when growing */
|
|
1232
1432
|
.input-module-2woJR .input-module-6HwY4 .input-module-oeAz2 + .input-module-pNKEt {
|
|
1233
|
-
|
|
1234
|
-
|
|
1433
|
+
margin-right: var(--space-24);
|
|
1434
|
+
}
|
|
1235
1435
|
.input-module-2woJR .input-module-zjVxG {
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
}
|
|
1241
|
-
.input-module-2woJR .input-module-zjVxG input:has(+ .input-module-oeAz2) {
|
|
1242
|
-
padding-right: var(--space-36);
|
|
1243
|
-
margin-right: -20px;
|
|
1436
|
+
display: inline-grid;
|
|
1437
|
+
width: 100%;
|
|
1438
|
+
align-items: center;
|
|
1439
|
+
grid-template-columns: 1fr 0;
|
|
1244
1440
|
}
|
|
1441
|
+
.input-module-2woJR .input-module-zjVxG input:has(+ .input-module-oeAz2) {
|
|
1442
|
+
padding-right: var(--space-36);
|
|
1443
|
+
margin-right: -20px;
|
|
1444
|
+
}
|
|
1245
1445
|
.input-module-2woJR .input-module-zjVxG .input-module-oeAz2 {
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1446
|
+
display: inline-flex;
|
|
1447
|
+
margin-left: calc(0px - var(--space-32));
|
|
1448
|
+
color: var(--color-brand-dark-gray);
|
|
1449
|
+
}
|
|
1250
1450
|
/* Don't show value-reveal button on empty password fields */
|
|
1251
1451
|
.input-module-2woJR .input-module-zjVxG input[type='password'] {
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
}
|
|
1256
|
-
.input-module-2woJR .input-module-zjVxG input[type='password'] + .input-module-oeAz2 {
|
|
1257
|
-
transition: all 0.2s ease;
|
|
1452
|
+
/* TODO: overwriting forced Spire style, remove !important in the future */
|
|
1453
|
+
font-family: 'Verdana', sans-serif !important;
|
|
1454
|
+
font-size: inherit !important;
|
|
1258
1455
|
}
|
|
1456
|
+
.input-module-2woJR .input-module-zjVxG input[type='password'] + .input-module-oeAz2 {
|
|
1457
|
+
transition: all 0.2s ease;
|
|
1458
|
+
}
|
|
1259
1459
|
.input-module-2woJR .input-module-zjVxG input[type='password'][value=''] + .input-module-oeAz2 {
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1460
|
+
opacity: 0;
|
|
1461
|
+
visibility: hidden;
|
|
1462
|
+
}
|
|
1263
1463
|
.input-module-2woJR .input-module-zjVxG input[type='password']:not([value='']) + .input-module-oeAz2 {
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
.label-module-LGfJt {
|
|
1269
|
-
all: unset;
|
|
1270
|
-
cursor: pointer;
|
|
1271
|
-
font-weight: var(--font-weight-bold);
|
|
1272
|
-
}
|
|
1273
|
-
|
|
1274
|
-
.label-module-LGfJt:has(+ div [data-disabled]) {
|
|
1275
|
-
cursor: default;
|
|
1276
|
-
}
|
|
1277
|
-
|
|
1278
|
-
.label-module-LGfJt :where(.label-module-oTWaS) {
|
|
1279
|
-
color: var(--color-brand-red);
|
|
1280
|
-
margin-inline-start: var(--space-4);
|
|
1281
|
-
}
|
|
1282
|
-
|
|
1283
|
-
.number-field-module-gmnog {
|
|
1284
|
-
all: unset;
|
|
1285
|
-
display: inline-flex;
|
|
1286
|
-
flex-direction: column;
|
|
1287
|
-
align-items: flex-start;
|
|
1288
|
-
gap: var(--space-4);
|
|
1289
|
-
}
|
|
1464
|
+
opacity: 1;
|
|
1465
|
+
visibility: visible;
|
|
1466
|
+
}
|
|
1290
1467
|
|
|
1291
|
-
|
|
1468
|
+
.number-field-module-xawWc .number-field-module-A1nvE {
|
|
1292
1469
|
display: flex;
|
|
1293
|
-
width: 100%;
|
|
1294
|
-
align-items: stretch;
|
|
1295
1470
|
justify-content: space-between;
|
|
1296
1471
|
}
|
|
1297
1472
|
|
|
1298
|
-
|
|
1299
|
-
min-width: var(--space-36);
|
|
1300
|
-
transition: font-size 0.5s ease;
|
|
1301
|
-
}
|
|
1302
|
-
|
|
1303
|
-
.number-field-module-gmnog .number-field-module-8Lvgh:has(button[data-pressed]) input {
|
|
1473
|
+
.number-field-module-xawWc .number-field-module-A1nvE:has(button[data-pressed]) [class*='growing-input'] input {
|
|
1304
1474
|
animation: number-field-module-OlEoa 100ms;
|
|
1305
1475
|
}
|
|
1476
|
+
.number-field-module-xawWc .number-field-module-lkZYQ {
|
|
1477
|
+
--btn-bgcolor: transparent;
|
|
1306
1478
|
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
}
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
position: absolute;
|
|
1325
|
-
z-index: -1;
|
|
1326
|
-
top: 50%;
|
|
1327
|
-
left: 50%;
|
|
1328
|
-
display: block;
|
|
1329
|
-
width: 24px;
|
|
1330
|
-
height: 24px;
|
|
1331
|
-
border-radius: 50%;
|
|
1332
|
-
margin-top: -12px;
|
|
1333
|
-
margin-left: -12px;
|
|
1334
|
-
background-color: var(--color-brand-light-gray);
|
|
1335
|
-
content: '';
|
|
1336
|
-
}
|
|
1337
|
-
|
|
1338
|
-
.number-field-module-gmnog .number-field-module-8Lvgh button[data-disabled] {
|
|
1339
|
-
cursor: default;
|
|
1340
|
-
opacity: 0.4;
|
|
1479
|
+
all: unset;
|
|
1480
|
+
display: grid;
|
|
1481
|
+
cursor: pointer;
|
|
1482
|
+
font-size: var(--font-size-32);
|
|
1483
|
+
grid-template-areas: 'button';
|
|
1484
|
+
inline-size: var(--space-32);
|
|
1485
|
+
place-items: center;
|
|
1486
|
+
-webkit-tap-highlight-color: transparent;
|
|
1487
|
+
-webkit-user-select: none;
|
|
1488
|
+
-moz-user-select: none;
|
|
1489
|
+
user-select: none;
|
|
1490
|
+
}
|
|
1491
|
+
.number-field-module-xawWc .number-field-module-lkZYQ[data-hovered] {
|
|
1492
|
+
--btn-bgcolor: var(--color-brand-light-gray);
|
|
1493
|
+
}
|
|
1494
|
+
.number-field-module-xawWc .number-field-module-lkZYQ[data-hovered][data-pressed] {
|
|
1495
|
+
--btn-bgcolor: var(--color-brand-medium-gray);
|
|
1341
1496
|
}
|
|
1342
|
-
|
|
1343
|
-
|
|
1497
|
+
.number-field-module-xawWc .number-field-module-lkZYQ[data-disabled] {
|
|
1498
|
+
cursor: default;
|
|
1499
|
+
opacity: 0.4;
|
|
1500
|
+
}
|
|
1501
|
+
.number-field-module-xawWc .number-field-module-lkZYQ:not([data-disabled])::before {
|
|
1502
|
+
border-radius: 50%;
|
|
1503
|
+
aspect-ratio: 1;
|
|
1504
|
+
background-color: var(--btn-bgcolor);
|
|
1505
|
+
content: '';
|
|
1506
|
+
grid-area: button;
|
|
1507
|
+
inline-size: 75%;
|
|
1508
|
+
}
|
|
1509
|
+
.number-field-module-xawWc .number-field-module-lkZYQ svg {
|
|
1344
1510
|
width: 16px;
|
|
1345
1511
|
height: 16px;
|
|
1512
|
+
grid-area: button;
|
|
1346
1513
|
}
|
|
1347
1514
|
|
|
1348
|
-
.number-field-module-gmnog span:empty {
|
|
1349
|
-
display: none;
|
|
1350
|
-
}
|
|
1351
|
-
|
|
1352
1515
|
@keyframes number-field-module-OlEoa {
|
|
1353
1516
|
0%,
|
|
1354
1517
|
100% {
|
|
@@ -1624,6 +1787,7 @@
|
|
|
1624
1787
|
--tag-bg-color: var(--color-brand-red);
|
|
1625
1788
|
--tag-fg-color: var(--color-brand-white);
|
|
1626
1789
|
|
|
1790
|
+
z-index: 0;
|
|
1627
1791
|
display: inline-flex;
|
|
1628
1792
|
height: var(--tag-height);
|
|
1629
1793
|
}
|
|
@@ -1716,17 +1880,16 @@
|
|
|
1716
1880
|
}
|
|
1717
1881
|
|
|
1718
1882
|
.add-to-cart-button-module-AWFvQ {
|
|
1719
|
-
display:
|
|
1883
|
+
display: flex;
|
|
1720
1884
|
flex-direction: row;
|
|
1721
|
-
align-items: center;
|
|
1722
|
-
justify-content: center;
|
|
1723
1885
|
gap: var(--space-4);
|
|
1886
|
+
margin-inline-start: 32px;
|
|
1887
|
+
place-items: center;
|
|
1724
1888
|
}
|
|
1725
1889
|
|
|
1726
|
-
.add-to-cart-button-module-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
}
|
|
1890
|
+
.add-to-cart-button-module-AWFvQ > * {
|
|
1891
|
+
flex-shrink: 0;
|
|
1892
|
+
}
|
|
1730
1893
|
|
|
1731
1894
|
.toast-module-VzLw4 {
|
|
1732
1895
|
--inline-padding: var(--space-16);
|
|
@@ -2298,7 +2461,7 @@
|
|
|
2298
2461
|
right: -8px;
|
|
2299
2462
|
}
|
|
2300
2463
|
|
|
2301
|
-
.dialog-module-qKzgy .dialog-module-y7Axm {
|
|
2464
|
+
.dialog-module-qKzgy .dialog-module-y7Axm:not(:empty) {
|
|
2302
2465
|
display: flex;
|
|
2303
2466
|
flex-direction: column;
|
|
2304
2467
|
margin-top: var(--space-32);
|
|
@@ -2488,126 +2651,6 @@
|
|
|
2488
2651
|
max-width: 425px;
|
|
2489
2652
|
}
|
|
2490
2653
|
|
|
2491
|
-
.tooltip-module-T-DtX {
|
|
2492
|
-
--tooltip-bg-color: var(--color-gray-800);
|
|
2493
|
-
|
|
2494
|
-
display: inline-block;
|
|
2495
|
-
padding: var(--space-12) var(--space-16);
|
|
2496
|
-
border-radius: var(--border-radius-8);
|
|
2497
|
-
background: var(--tooltip-bg-color);
|
|
2498
|
-
color: var(--color-white);
|
|
2499
|
-
font-size: var(--font-size-14);
|
|
2500
|
-
line-height: 1.14;
|
|
2501
|
-
max-inline-size: 250px;
|
|
2502
|
-
overflow-wrap: break-word;
|
|
2503
|
-
}
|
|
2504
|
-
|
|
2505
|
-
.tooltip-module-T-DtX .tooltip-module-CBW5f svg {
|
|
2506
|
-
display: block;
|
|
2507
|
-
fill: var(--tooltip-bg-color);
|
|
2508
|
-
stroke: var(--tooltip-bg-color);
|
|
2509
|
-
stroke-width: 1px;
|
|
2510
|
-
}
|
|
2511
|
-
|
|
2512
|
-
.tooltip-module-T-DtX[data-placement='top']:has(.tooltip-module-CBW5f) {
|
|
2513
|
-
margin-block-end: 6px;
|
|
2514
|
-
}
|
|
2515
|
-
|
|
2516
|
-
.tooltip-module-T-DtX[data-placement='bottom']:has(.tooltip-module-CBW5f) {
|
|
2517
|
-
margin-block-start: 6px;
|
|
2518
|
-
}
|
|
2519
|
-
|
|
2520
|
-
.tooltip-module-T-DtX[data-placement='bottom'] .tooltip-module-CBW5f svg {
|
|
2521
|
-
transform: rotate(180deg);
|
|
2522
|
-
}
|
|
2523
|
-
|
|
2524
|
-
.tooltip-module-T-DtX[data-placement='right']:has(.tooltip-module-CBW5f) {
|
|
2525
|
-
margin-inline-start: 6px;
|
|
2526
|
-
}
|
|
2527
|
-
|
|
2528
|
-
.tooltip-module-T-DtX[data-placement='right'] .tooltip-module-CBW5f svg {
|
|
2529
|
-
transform: rotate(90deg);
|
|
2530
|
-
}
|
|
2531
|
-
|
|
2532
|
-
.tooltip-module-T-DtX[data-placement='left']:has(.tooltip-module-CBW5f) {
|
|
2533
|
-
margin-inline-end: 6px;
|
|
2534
|
-
}
|
|
2535
|
-
|
|
2536
|
-
.tooltip-module-T-DtX[data-placement='left'] .tooltip-module-CBW5f svg {
|
|
2537
|
-
transform: rotate(-90deg);
|
|
2538
|
-
}
|
|
2539
|
-
|
|
2540
|
-
.tooltip-module-T-DtX[data-entering] {
|
|
2541
|
-
animation: tooltip-module-zl1q9 200ms;
|
|
2542
|
-
}
|
|
2543
|
-
|
|
2544
|
-
.tooltip-module-T-DtX[data-exiting] {
|
|
2545
|
-
animation: tooltip-module-zl1q9 200ms reverse ease-in;
|
|
2546
|
-
}
|
|
2547
|
-
|
|
2548
|
-
.tooltip-module-DRHoc {
|
|
2549
|
-
display: inline-flex;
|
|
2550
|
-
}
|
|
2551
|
-
|
|
2552
|
-
.tooltip-module-DRHoc .tooltip-module-3q6nr {
|
|
2553
|
-
color: currentcolor;
|
|
2554
|
-
min-block-size: unset;
|
|
2555
|
-
min-inline-size: unset;
|
|
2556
|
-
}
|
|
2557
|
-
|
|
2558
|
-
.tooltip-module-DRHoc .tooltip-module-3q6nr:hover {
|
|
2559
|
-
color: var(--color-primary);
|
|
2560
|
-
}
|
|
2561
|
-
|
|
2562
|
-
/* stylelint-disable-next-line selector-class-pattern */
|
|
2563
|
-
|
|
2564
|
-
.react-aria-Dialog {
|
|
2565
|
-
outline: 0;
|
|
2566
|
-
}
|
|
2567
|
-
|
|
2568
|
-
@keyframes tooltip-module-zl1q9 {
|
|
2569
|
-
from {
|
|
2570
|
-
opacity: 0;
|
|
2571
|
-
}
|
|
2572
|
-
|
|
2573
|
-
to {
|
|
2574
|
-
opacity: 1;
|
|
2575
|
-
}
|
|
2576
|
-
}
|
|
2577
|
-
|
|
2578
|
-
.info-icon-tooltip-module-oR4nD {
|
|
2579
|
-
--color-trigger: var(--color-brand-medium-gray);
|
|
2580
|
-
--color-trigger-hover: var(--color-brand-dark-gray);
|
|
2581
|
-
--color-trigger-active: var(--color-brand-dark-gray);
|
|
2582
|
-
|
|
2583
|
-
display: inline-flex;
|
|
2584
|
-
}
|
|
2585
|
-
|
|
2586
|
-
.info-icon-tooltip-module-oR4nD.info-icon-tooltip-module-5zfDr {
|
|
2587
|
-
--color-trigger: currentcolor;
|
|
2588
|
-
--color-trigger-hover: color-mix(in srgb, currentcolor, #000 20%);
|
|
2589
|
-
--color-trigger-active: color-mix(in srgb, currentcolor, #000 20%);
|
|
2590
|
-
}
|
|
2591
|
-
|
|
2592
|
-
.info-icon-tooltip-module-oR4nD .info-icon-tooltip-module-0lY-K {
|
|
2593
|
-
border-radius: 50%;
|
|
2594
|
-
color: var(--color-trigger);
|
|
2595
|
-
min-block-size: unset;
|
|
2596
|
-
min-inline-size: unset;
|
|
2597
|
-
}
|
|
2598
|
-
|
|
2599
|
-
.info-icon-tooltip-module-oR4nD .info-icon-tooltip-module-0lY-K:hover {
|
|
2600
|
-
color: var(--color-trigger-hover);
|
|
2601
|
-
}
|
|
2602
|
-
|
|
2603
|
-
.info-icon-tooltip-module-oR4nD .info-icon-tooltip-module-0lY-K:focus-visible {
|
|
2604
|
-
box-shadow: var(--shadow-focus-outline);
|
|
2605
|
-
}
|
|
2606
|
-
|
|
2607
|
-
.info-icon-tooltip-module-oR4nD .info-icon-tooltip-module-0lY-K[aria-expanded='true'] {
|
|
2608
|
-
color: var(--color-trigger-active);
|
|
2609
|
-
}
|
|
2610
|
-
|
|
2611
2654
|
.delivery-time-module-fEWEl {
|
|
2612
2655
|
display: flex;
|
|
2613
2656
|
align-items: center;
|
|
@@ -2621,18 +2664,7 @@
|
|
|
2621
2664
|
margin: 0;
|
|
2622
2665
|
}
|
|
2623
2666
|
|
|
2624
|
-
/* @property --price-larger {
|
|
2625
|
-
initial-value: false;
|
|
2626
|
-
syntax: '<boolean>';
|
|
2627
|
-
}
|
|
2628
|
-
|
|
2629
|
-
@property --price-baseline {
|
|
2630
|
-
initial-value: false;
|
|
2631
|
-
syntax: '<boolean>';
|
|
2632
|
-
} */
|
|
2633
|
-
|
|
2634
2667
|
/* Singular prices */
|
|
2635
|
-
|
|
2636
2668
|
.price-module-Qyyas {
|
|
2637
2669
|
display: inline-grid;
|
|
2638
2670
|
color: var(--color, inherit);
|
|
@@ -2646,13 +2678,11 @@
|
|
|
2646
2678
|
vertical-align: baseline;
|
|
2647
2679
|
white-space: nowrap;
|
|
2648
2680
|
}
|
|
2649
|
-
|
|
2650
2681
|
.price-module-Qyyas > * {
|
|
2651
2682
|
display: inline-block;
|
|
2652
2683
|
-webkit-text-decoration: var(--text-decoration);
|
|
2653
2684
|
text-decoration: var(--text-decoration);
|
|
2654
2685
|
}
|
|
2655
|
-
|
|
2656
2686
|
.price-module-Qyyas .price-module--Oil0 {
|
|
2657
2687
|
font-size: var(--font-size-symbol);
|
|
2658
2688
|
font-weight: var(--font-weight-symbol);
|
|
@@ -2661,18 +2691,15 @@
|
|
|
2661
2691
|
margin-block-start: var(--margin-block-symbol);
|
|
2662
2692
|
margin-inline-end: var(--margin-inline-symbol);
|
|
2663
2693
|
}
|
|
2664
|
-
|
|
2665
2694
|
.price-module-Qyyas .price-module-QnS4t {
|
|
2666
2695
|
display: inline-flex;
|
|
2667
2696
|
grid-area: number;
|
|
2668
2697
|
}
|
|
2669
|
-
|
|
2670
2698
|
.price-module-Qyyas .price-module-p8hAn {
|
|
2671
2699
|
font-size: var(--font-size-fraction);
|
|
2672
2700
|
margin-block-start: var(--margin-block-fraction);
|
|
2673
2701
|
margin-inline-start: var(--margin-inline-fraction);
|
|
2674
2702
|
}
|
|
2675
|
-
|
|
2676
2703
|
.price-module-Qyyas.price-module-vUbWV {
|
|
2677
2704
|
--color: var(--color-brand-black);
|
|
2678
2705
|
--font-family: var(--font-family-sonic);
|
|
@@ -2687,17 +2714,14 @@
|
|
|
2687
2714
|
--margin-inline-fraction: -0.35em;
|
|
2688
2715
|
--margin-inline-symbol: 0.05em;
|
|
2689
2716
|
}
|
|
2690
|
-
|
|
2691
2717
|
.price-module-Qyyas.price-module-vUbWV .price-module-9HAVF {
|
|
2692
2718
|
inline-size: 0;
|
|
2693
2719
|
}
|
|
2694
|
-
|
|
2695
2720
|
.price-module-Qyyas.price-module-vUbWV.price-module-bpZpP {
|
|
2696
2721
|
--color: var(--color-brand-red);
|
|
2697
2722
|
--font-style: italic;
|
|
2698
2723
|
--margin-inline-fraction: -0.25em;
|
|
2699
2724
|
}
|
|
2700
|
-
|
|
2701
2725
|
.price-module-Qyyas.price-module-vUbWV.price-module-TEd4d {
|
|
2702
2726
|
--font-size: calc(var(--base-font-size) * 0.5);
|
|
2703
2727
|
--font-size-fraction: var(--font-size);
|
|
@@ -2705,18 +2729,14 @@
|
|
|
2705
2729
|
--margin-inline-fraction: unset;
|
|
2706
2730
|
--margin-inline-symbol: 0.25em;
|
|
2707
2731
|
}
|
|
2708
|
-
|
|
2709
2732
|
.price-module-Qyyas.price-module-vUbWV .price-module--Oil0 {
|
|
2710
2733
|
text-decoration: none;
|
|
2711
2734
|
}
|
|
2712
|
-
|
|
2713
2735
|
.price-module-Qyyas.price-module-fydQn {
|
|
2714
2736
|
--color: var(--color-brand-dark-gray);
|
|
2715
2737
|
--text-decoration: line-through;
|
|
2716
2738
|
}
|
|
2717
|
-
|
|
2718
2739
|
/* Price composite component */
|
|
2719
|
-
|
|
2720
2740
|
.price-module-tbuNk {
|
|
2721
2741
|
/* https://kizu.dev/cyclic-toggles/#limitations */
|
|
2722
2742
|
|
|
@@ -2742,35 +2762,28 @@
|
|
|
2742
2762
|
inline-size: max-content;
|
|
2743
2763
|
vertical-align: baseline;
|
|
2744
2764
|
}
|
|
2745
|
-
|
|
2746
2765
|
.price-module-tbuNk .price-module-ZURYg {
|
|
2747
2766
|
color: var(--color-ppu, inherit);
|
|
2748
2767
|
font-size: var(--font-size-ppu, inherit);
|
|
2749
2768
|
white-space: nowrap;
|
|
2750
2769
|
}
|
|
2751
|
-
|
|
2752
2770
|
.price-module-tbuNk .price-module-ZURYg::before {
|
|
2753
2771
|
content: '(';
|
|
2754
2772
|
}
|
|
2755
|
-
|
|
2756
2773
|
.price-module-tbuNk .price-module-ZURYg::after {
|
|
2757
2774
|
content: ')';
|
|
2758
2775
|
}
|
|
2759
|
-
|
|
2760
2776
|
.price-module-tbuNk .price-module-uVTD7 {
|
|
2761
2777
|
color: var(--color-vat, inherit);
|
|
2762
2778
|
font-size: var(--font-size-vat, inherit);
|
|
2763
2779
|
white-space: nowrap;
|
|
2764
2780
|
}
|
|
2765
|
-
|
|
2766
2781
|
.price-module-tbuNk .price-module-uVTD7::before {
|
|
2767
2782
|
content: '(';
|
|
2768
2783
|
}
|
|
2769
|
-
|
|
2770
2784
|
.price-module-tbuNk .price-module-uVTD7::after {
|
|
2771
2785
|
content: ')';
|
|
2772
2786
|
}
|
|
2773
|
-
|
|
2774
2787
|
.price-module-tbuNk:where(.price-module-vUbWV) {
|
|
2775
2788
|
--base-font-size: var(--price-size-normal, var(--font-size-32))
|
|
2776
2789
|
var(--price-size-larger, var(--font-size-36));
|
|
@@ -2793,14 +2806,12 @@
|
|
|
2793
2806
|
margin-block-end: var(--vertical-offset);
|
|
2794
2807
|
translate: 0 var(--vertical-offset);
|
|
2795
2808
|
}
|
|
2796
|
-
|
|
2797
2809
|
.price-module-tbuNk:where(.price-module-vUbWV):has(.price-module-x77Vd) {
|
|
2798
2810
|
--vertical-offset: var(
|
|
2799
2811
|
--price-baseline-shifted,
|
|
2800
2812
|
calc(var(--base-font-size) * -0.9375 - 1px)
|
|
2801
2813
|
);
|
|
2802
2814
|
}
|
|
2803
|
-
|
|
2804
2815
|
.price-module-tbuNk:where(.price-module-vUbWV) .price-module-x77Vd {
|
|
2805
2816
|
position: relative;
|
|
2806
2817
|
grid-column: 1 / -1;
|
|
@@ -2809,26 +2820,21 @@
|
|
|
2809
2820
|
justify-self: flex-start;
|
|
2810
2821
|
margin-block-end: -2px;
|
|
2811
2822
|
}
|
|
2812
|
-
|
|
2813
2823
|
.price-module-tbuNk:where(.price-module-vUbWV) .price-module-9XVqt {
|
|
2814
2824
|
grid-column: 1 / -1;
|
|
2815
2825
|
grid-template-columns: subgrid;
|
|
2816
2826
|
justify-self: flex-start;
|
|
2817
2827
|
}
|
|
2818
|
-
|
|
2819
2828
|
.price-module-tbuNk:where(.price-module-vUbWV) .price-module-ZURYg {
|
|
2820
2829
|
grid-column: 1 / -1;
|
|
2821
2830
|
}
|
|
2822
|
-
|
|
2823
2831
|
.price-module-tbuNk:where(.price-module-vUbWV) .price-module-ZURYg::before,
|
|
2824
2832
|
.price-module-tbuNk:where(.price-module-vUbWV) .price-module-ZURYg::after {
|
|
2825
2833
|
content: none;
|
|
2826
2834
|
}
|
|
2827
|
-
|
|
2828
2835
|
.price-module-tbuNk:where(.price-module-vUbWV) .price-module-uVTD7 {
|
|
2829
2836
|
grid-column: 1 / -1;
|
|
2830
2837
|
}
|
|
2831
|
-
|
|
2832
2838
|
.price-module-tbuNk:where(.price-module-vUbWV) .price-module-uVTD7::before,
|
|
2833
2839
|
.price-module-tbuNk:where(.price-module-vUbWV) .price-module-uVTD7::after {
|
|
2834
2840
|
content: none;
|
|
@@ -2841,12 +2847,15 @@
|
|
|
2841
2847
|
}
|
|
2842
2848
|
|
|
2843
2849
|
.orderline-card-module-AMTMm {
|
|
2850
|
+
--z-link: 1;
|
|
2851
|
+
--z-top: 2;
|
|
2852
|
+
|
|
2844
2853
|
all: unset;
|
|
2845
2854
|
position: relative;
|
|
2855
|
+
z-index: 0;
|
|
2846
2856
|
display: grid;
|
|
2847
2857
|
padding: var(--space-16);
|
|
2848
2858
|
background-color: var(--color-white);
|
|
2849
|
-
cursor: pointer;
|
|
2850
2859
|
gap: 0 var(--space-16);
|
|
2851
2860
|
grid-template:
|
|
2852
2861
|
143px var(--space-12) repeat(3, minmax(0, min-content)) minmax(
|
|
@@ -2878,15 +2887,29 @@
|
|
|
2878
2887
|
|
|
2879
2888
|
.orderline-card-module-AMTMm .orderline-card-module-0CunP {
|
|
2880
2889
|
position: absolute;
|
|
2890
|
+
z-index: var(--z-top);
|
|
2881
2891
|
inset-block-start: 0;
|
|
2882
2892
|
inset-inline-end: 0;
|
|
2883
2893
|
}
|
|
2884
2894
|
|
|
2885
2895
|
.orderline-card-module-AMTMm .orderline-card-module-C8xE6 {
|
|
2896
|
+
position: static;
|
|
2897
|
+
color: var(--color-brand-black);
|
|
2898
|
+
font-size: var(--font-size-20);
|
|
2899
|
+
font-weight: var(--font-weight-bold);
|
|
2886
2900
|
grid-area: title;
|
|
2901
|
+
line-height: 1;
|
|
2887
2902
|
margin-block-end: var(--space-8);
|
|
2888
2903
|
}
|
|
2889
2904
|
|
|
2905
|
+
.orderline-card-module-AMTMm .orderline-card-module-C8xE6[href]::after {
|
|
2906
|
+
position: absolute;
|
|
2907
|
+
z-index: var(--z-link);
|
|
2908
|
+
background: transparent;
|
|
2909
|
+
content: '';
|
|
2910
|
+
inset: 0;
|
|
2911
|
+
}
|
|
2912
|
+
|
|
2890
2913
|
.orderline-card-module-AMTMm .orderline-card-module-gXavY {
|
|
2891
2914
|
display: flex;
|
|
2892
2915
|
flex-wrap: wrap;
|
|
@@ -2910,8 +2933,9 @@
|
|
|
2910
2933
|
}
|
|
2911
2934
|
|
|
2912
2935
|
.orderline-card-module-AMTMm .orderline-card-module-ZjAaX {
|
|
2913
|
-
|
|
2936
|
+
z-index: var(--z-top);
|
|
2914
2937
|
grid-area: amount;
|
|
2938
|
+
place-self: center flex-start;
|
|
2915
2939
|
}
|
|
2916
2940
|
|
|
2917
2941
|
.orderline-card-module-AMTMm .orderline-card-module-q3yjo {
|
|
@@ -2932,16 +2956,19 @@
|
|
|
2932
2956
|
}
|
|
2933
2957
|
|
|
2934
2958
|
.orderline-card-module-AMTMm .orderline-card-module-N-Oe- {
|
|
2959
|
+
z-index: var(--z-top);
|
|
2935
2960
|
grid-area: info;
|
|
2936
2961
|
margin-block-start: var(--space-8);
|
|
2937
2962
|
}
|
|
2938
2963
|
|
|
2939
2964
|
@container (inline-size >= 576px) {.orderline-card-module-AMTMm {
|
|
2940
2965
|
padding: 32px 64px 32px 0;
|
|
2941
|
-
grid-template:
|
|
2966
|
+
grid-template:
|
|
2967
|
+
repeat(3, minmax(0, min-content)) minmax(8px, 1fr) repeat(
|
|
2942
2968
|
2,
|
|
2943
2969
|
minmax(0, min-content)
|
|
2944
|
-
)
|
|
2970
|
+
)
|
|
2971
|
+
/ 143px 1fr auto;
|
|
2945
2972
|
grid-template-areas:
|
|
2946
2973
|
'image tags tags'
|
|
2947
2974
|
'image title title'
|
|
@@ -2988,14 +3015,18 @@
|
|
|
2988
3015
|
.product-card-module-pLaiB {
|
|
2989
3016
|
--title-font-size: var(--font-size-16);
|
|
2990
3017
|
--box-shadow: var(--box-shadow-medium);
|
|
3018
|
+
--z-link: 1;
|
|
3019
|
+
--z-top: 2;
|
|
2991
3020
|
|
|
2992
3021
|
position: relative;
|
|
3022
|
+
z-index: 0;
|
|
2993
3023
|
display: grid;
|
|
2994
3024
|
padding: var(--space-12);
|
|
2995
3025
|
background-color: var(--color-white);
|
|
2996
3026
|
block-size: 100%;
|
|
2997
3027
|
color: var(--color-black);
|
|
2998
|
-
|
|
3028
|
+
|
|
3029
|
+
/* cursor: pointer; */
|
|
2999
3030
|
gap: 0 var(--space-8);
|
|
3000
3031
|
grid-template:
|
|
3001
3032
|
122px var(--space-8) repeat(3, minmax(0, min-content)) minmax(
|
|
@@ -3019,6 +3050,13 @@
|
|
|
3019
3050
|
box-shadow ease 0.2s;
|
|
3020
3051
|
}
|
|
3021
3052
|
|
|
3053
|
+
@media (hover: hover) {
|
|
3054
|
+
.product-card-module-pLaiB:has(.product-card-module-CStNi[href]):hover {
|
|
3055
|
+
box-shadow: var(--box-shadow);
|
|
3056
|
+
scale: 1.04;
|
|
3057
|
+
}
|
|
3058
|
+
}
|
|
3059
|
+
|
|
3022
3060
|
.product-card-module-pLaiB,
|
|
3023
3061
|
.product-card-module-pLaiB * {
|
|
3024
3062
|
box-sizing: border-box;
|
|
@@ -3026,15 +3064,21 @@
|
|
|
3026
3064
|
|
|
3027
3065
|
.product-card-module-pLaiB .product-card-module-tvEdz {
|
|
3028
3066
|
position: absolute;
|
|
3067
|
+
z-index: var(--z-top);
|
|
3029
3068
|
inset-block-start: 0;
|
|
3030
3069
|
inset-inline-end: 0;
|
|
3031
3070
|
}
|
|
3032
3071
|
|
|
3033
3072
|
.product-card-module-pLaiB .product-card-module-CStNi {
|
|
3073
|
+
position: static;
|
|
3074
|
+
display: block;
|
|
3034
3075
|
display: -webkit-box;
|
|
3035
3076
|
overflow: hidden;
|
|
3036
3077
|
-webkit-box-orient: vertical;
|
|
3078
|
+
box-shadow: none;
|
|
3079
|
+
color: var(--color-brand-black);
|
|
3037
3080
|
font-size: var(--title-font-size);
|
|
3081
|
+
font-weight: var(--font-weight-bold);
|
|
3038
3082
|
grid-area: title;
|
|
3039
3083
|
-webkit-line-clamp: 4;
|
|
3040
3084
|
line-height: 1;
|
|
@@ -3043,9 +3087,22 @@
|
|
|
3043
3087
|
text-wrap: balance;
|
|
3044
3088
|
}
|
|
3045
3089
|
|
|
3090
|
+
.product-card-module-pLaiB .product-card-module-CStNi[href]::after {
|
|
3091
|
+
position: absolute;
|
|
3092
|
+
z-index: var(--z-link);
|
|
3093
|
+
background: transparent;
|
|
3094
|
+
content: '';
|
|
3095
|
+
inset: 0;
|
|
3096
|
+
}
|
|
3097
|
+
|
|
3098
|
+
.product-card-module-pLaiB .product-card-module-CStNi:focus-visible::after {
|
|
3099
|
+
box-shadow: var(--shadow-focus-outline);
|
|
3100
|
+
}
|
|
3101
|
+
|
|
3046
3102
|
.product-card-module-pLaiB .product-card-module-CStNi mark {
|
|
3047
3103
|
background-color: rgb(109 170 200 / 40%);
|
|
3048
3104
|
color: currentcolor;
|
|
3105
|
+
font: inherit;
|
|
3049
3106
|
}
|
|
3050
3107
|
|
|
3051
3108
|
.product-card-module-pLaiB .product-card-module-nL-hY {
|
|
@@ -3077,15 +3134,10 @@
|
|
|
3077
3134
|
}
|
|
3078
3135
|
|
|
3079
3136
|
.product-card-module-pLaiB .product-card-module-SnCvX {
|
|
3137
|
+
z-index: var(--z-top);
|
|
3138
|
+
cursor: default;
|
|
3080
3139
|
grid-area: amount;
|
|
3081
|
-
place-self: flex-end flex-
|
|
3082
|
-
}
|
|
3083
|
-
|
|
3084
|
-
@media (hover: hover) {
|
|
3085
|
-
.product-card-module-pLaiB:hover {
|
|
3086
|
-
box-shadow: var(--box-shadow);
|
|
3087
|
-
scale: 1.04;
|
|
3088
|
-
}
|
|
3140
|
+
place-self: flex-end flex-start;
|
|
3089
3141
|
}
|
|
3090
3142
|
|
|
3091
3143
|
@container (min-width: 273px) {
|
|
@@ -3098,7 +3150,7 @@
|
|
|
3098
3150
|
var(--space-16),
|
|
3099
3151
|
1fr
|
|
3100
3152
|
)
|
|
3101
|
-
minmax(0, min-content) / 1fr minmax(0,
|
|
3153
|
+
minmax(0, min-content) / 1fr minmax(0, max-content);
|
|
3102
3154
|
grid-template-areas:
|
|
3103
3155
|
'image image'
|
|
3104
3156
|
'. .'
|
|
@@ -4289,19 +4341,167 @@ button.swiper-pagination-bullet {
|
|
|
4289
4341
|
margin: 0;
|
|
4290
4342
|
}
|
|
4291
4343
|
|
|
4292
|
-
.
|
|
4293
|
-
|
|
4294
|
-
|
|
4344
|
+
.select-field-module-6Mz-Y {
|
|
4345
|
+
--button-height: var(--space-44);
|
|
4346
|
+
--button-gap: var(--space-8);
|
|
4347
|
+
--button-border-color: var(--color-brand-medium-gray);
|
|
4348
|
+
--button-bg-color: var(--color-white);
|
|
4349
|
+
--trigger-width: initial;
|
|
4350
|
+
|
|
4351
|
+
position: relative;
|
|
4295
4352
|
}
|
|
4296
4353
|
|
|
4297
|
-
.
|
|
4354
|
+
.select-field-module-6Mz-Y:where(.select-field-module-CSbmU) {
|
|
4355
|
+
--button-height: var(--space-36);
|
|
4356
|
+
--button-gap: var(--space-4);
|
|
4357
|
+
}
|
|
4358
|
+
|
|
4359
|
+
.select-field-module-6Mz-Y:where(.select-field-module--Ocnn) {
|
|
4360
|
+
--button-border-color: var(--color-brand-light-gray);
|
|
4361
|
+
--button-bg-color: var(--color-brand-light-gray);
|
|
4362
|
+
}
|
|
4363
|
+
|
|
4364
|
+
.select-field-module-6Mz-Y:where(.select-field-module-nT7fi) {
|
|
4365
|
+
cursor: default;
|
|
4366
|
+
pointer-events: none;
|
|
4367
|
+
}
|
|
4368
|
+
|
|
4369
|
+
.select-field-module-6Mz-Y .select-field-module-GkFBV {
|
|
4370
|
+
all: unset;
|
|
4371
|
+
position: relative;
|
|
4298
4372
|
display: grid;
|
|
4373
|
+
overflow: hidden;
|
|
4374
|
+
align-items: center;
|
|
4375
|
+
border: 1px solid var(--button-border-color);
|
|
4376
|
+
border-radius: var(--border-radius-8);
|
|
4377
|
+
background: var(--button-bg-color);
|
|
4378
|
+
block-size: var(--button-height);
|
|
4379
|
+
font: inherit;
|
|
4380
|
+
gap: var(--button-gap);
|
|
4381
|
+
grid-template-areas: 'value icon';
|
|
4382
|
+
grid-template-columns: 1fr 24px;
|
|
4383
|
+
outline: none;
|
|
4384
|
+
padding-inline: 16px 8px;
|
|
4299
4385
|
}
|
|
4300
4386
|
|
|
4301
|
-
.
|
|
4302
|
-
display:
|
|
4303
|
-
|
|
4304
|
-
|
|
4387
|
+
.select-field-module-6Mz-Y .select-field-module-GkFBV [slot='description'] {
|
|
4388
|
+
display: none;
|
|
4389
|
+
}
|
|
4390
|
+
|
|
4391
|
+
.select-field-module-6Mz-Y .select-field-module-GkFBV[data-focused],
|
|
4392
|
+
.select-field-module-6Mz-Y .select-field-module-GkFBV[data-pressed] {
|
|
4393
|
+
border-color: transparent;
|
|
4394
|
+
box-shadow: var(--shadow-focus-outline);
|
|
4395
|
+
outline: none;
|
|
4396
|
+
}
|
|
4397
|
+
|
|
4398
|
+
.select-field-module-6Mz-Y .select-field-module-GkFBV[disabled] {
|
|
4399
|
+
opacity: 0.4;
|
|
4400
|
+
}
|
|
4401
|
+
|
|
4402
|
+
.select-field-module-6Mz-Y .select-field-module-GkFBV .select-field-module-qQmvX {
|
|
4403
|
+
overflow: hidden;
|
|
4404
|
+
grid-area: value;
|
|
4405
|
+
text-overflow: ellipsis;
|
|
4406
|
+
white-space: nowrap;
|
|
4407
|
+
}
|
|
4408
|
+
|
|
4409
|
+
.select-field-module-6Mz-Y .select-field-module-GkFBV .select-field-module-yhZMK {
|
|
4410
|
+
block-size: 12px;
|
|
4411
|
+
grid-area: icon;
|
|
4412
|
+
inline-size: 12px;
|
|
4413
|
+
justify-self: center;
|
|
4414
|
+
}
|
|
4415
|
+
|
|
4416
|
+
.select-field-module-6Mz-Y[data-invalid] .select-field-module-GkFBV {
|
|
4417
|
+
border-bottom-color: var(--color-brand-red);
|
|
4418
|
+
}
|
|
4419
|
+
|
|
4420
|
+
.select-field-module-6Mz-Y[data-invalid] .select-field-module-GkFBV::after {
|
|
4421
|
+
position: absolute;
|
|
4422
|
+
background-color: var(--color-brand-red);
|
|
4423
|
+
block-size: 1px;
|
|
4424
|
+
content: '';
|
|
4425
|
+
inset: auto 0 0;
|
|
4426
|
+
}
|
|
4427
|
+
|
|
4428
|
+
.select-field-module--7nQi {
|
|
4429
|
+
overflow: auto;
|
|
4430
|
+
background-color: var(--color-white);
|
|
4431
|
+
box-shadow: var(--box-shadow-light);
|
|
4432
|
+
inline-size: var(--trigger-width);
|
|
4433
|
+
min-inline-size: -moz-fit-content;
|
|
4434
|
+
min-inline-size: fit-content;
|
|
4435
|
+
padding-block: var(--space-8);
|
|
4436
|
+
transition: opacity 0.2s;
|
|
4437
|
+
}
|
|
4438
|
+
|
|
4439
|
+
.select-field-module--7nQi[data-entering],
|
|
4440
|
+
.select-field-module--7nQi[data-exiting] {
|
|
4441
|
+
opacity: 0;
|
|
4442
|
+
}
|
|
4443
|
+
|
|
4444
|
+
.select-field-module--7nQi .select-field-module-O2abK {
|
|
4445
|
+
outline: none;
|
|
4446
|
+
}
|
|
4447
|
+
|
|
4448
|
+
.select-field-module--7nQi .select-field-module-O7Ce- {
|
|
4449
|
+
display: grid;
|
|
4450
|
+
align-items: center;
|
|
4451
|
+
color: var(--color-brand-dark-gray);
|
|
4452
|
+
cursor: default;
|
|
4453
|
+
grid-template-rows: minmax(24px, min-content);
|
|
4454
|
+
line-height: 1;
|
|
4455
|
+
outline: none;
|
|
4456
|
+
overflow-wrap: break-word;
|
|
4457
|
+
padding-block: var(--space-4);
|
|
4458
|
+
padding-inline: calc(var(--space-24) + var(--space-2) + var(--space-4));
|
|
4459
|
+
}
|
|
4460
|
+
|
|
4461
|
+
.select-field-module--7nQi .select-field-module-KFavE {
|
|
4462
|
+
display: grid;
|
|
4463
|
+
align-items: center;
|
|
4464
|
+
padding: var(--space-4);
|
|
4465
|
+
cursor: pointer;
|
|
4466
|
+
gap: var(--space-2);
|
|
4467
|
+
grid-template: minmax(24px, min-content) / var(--space-24) 1fr var(
|
|
4468
|
+
--space-24
|
|
4469
|
+
);
|
|
4470
|
+
grid-template-areas: 'icon label .';
|
|
4471
|
+
line-height: 1;
|
|
4472
|
+
outline: none;
|
|
4473
|
+
overflow-wrap: break-word;
|
|
4474
|
+
}
|
|
4475
|
+
|
|
4476
|
+
.select-field-module--7nQi .select-field-module-KFavE [slot='description'] {
|
|
4477
|
+
display: grid;
|
|
4478
|
+
grid-area: icon;
|
|
4479
|
+
justify-self: center;
|
|
4480
|
+
}
|
|
4481
|
+
|
|
4482
|
+
.select-field-module--7nQi .select-field-module-KFavE [slot='label'] {
|
|
4483
|
+
grid-area: label;
|
|
4484
|
+
}
|
|
4485
|
+
|
|
4486
|
+
.select-field-module--7nQi .select-field-module-KFavE[data-hovered],
|
|
4487
|
+
.select-field-module--7nQi .select-field-module-KFavE[data-focused] {
|
|
4488
|
+
background-color: var(--color-brand-red);
|
|
4489
|
+
color: var(--color-white);
|
|
4490
|
+
}
|
|
4491
|
+
|
|
4492
|
+
.country-selector-dialog-module-mMJS0 {
|
|
4493
|
+
max-width: 342px;
|
|
4494
|
+
padding: var(--space-36) var(--space-24);
|
|
4495
|
+
}
|
|
4496
|
+
|
|
4497
|
+
.country-selector-dialog-module-mMJS0 .country-selector-dialog-module-z-ZqY {
|
|
4498
|
+
display: grid;
|
|
4499
|
+
}
|
|
4500
|
+
|
|
4501
|
+
.country-selector-dialog-module-mMJS0 .country-selector-dialog-module-z-ZqY .country-selector-dialog-module-7VjsF {
|
|
4502
|
+
display: block;
|
|
4503
|
+
margin-bottom: var(--space-16);
|
|
4504
|
+
margin-inline: auto;
|
|
4305
4505
|
}
|
|
4306
4506
|
|
|
4307
4507
|
.country-selector-dialog-module-mMJS0 .country-selector-dialog-module-z-ZqY .country-selector-dialog-module-IdVDt {
|
|
@@ -4454,6 +4654,176 @@ button.swiper-pagination-bullet {
|
|
|
4454
4654
|
}
|
|
4455
4655
|
}
|
|
4456
4656
|
|
|
4657
|
+
.checkbox-field-module-fdQEa {
|
|
4658
|
+
justify-self: flex-start;
|
|
4659
|
+
}
|
|
4660
|
+
|
|
4661
|
+
.message-module-N1e1t {
|
|
4662
|
+
--color: var(--color-brand-black);
|
|
4663
|
+
|
|
4664
|
+
display: grid;
|
|
4665
|
+
align-items: center;
|
|
4666
|
+
padding: var(--space-8);
|
|
4667
|
+
background: color-mix(in hsl, var(--color), transparent 88%);
|
|
4668
|
+
font-size: var(--font-size-base);
|
|
4669
|
+
grid-template-areas: 'icon body';
|
|
4670
|
+
grid-template-columns: minmax(0, min-content) 1fr;
|
|
4671
|
+
}
|
|
4672
|
+
|
|
4673
|
+
.message-module-w2hsL {
|
|
4674
|
+
color: var(--color);
|
|
4675
|
+
grid-area: icon;
|
|
4676
|
+
margin-block: -3px;
|
|
4677
|
+
margin-inline-end: var(--space-8);
|
|
4678
|
+
}
|
|
4679
|
+
|
|
4680
|
+
.message-module-w2hsL svg {
|
|
4681
|
+
display: block;
|
|
4682
|
+
}
|
|
4683
|
+
|
|
4684
|
+
.message-module-Gi4uR {
|
|
4685
|
+
grid-area: body;
|
|
4686
|
+
text-wrap: pretty;
|
|
4687
|
+
}
|
|
4688
|
+
|
|
4689
|
+
/* variants */
|
|
4690
|
+
|
|
4691
|
+
.message-module-pp9U4 {
|
|
4692
|
+
background: var(--color-brand-light-gray);
|
|
4693
|
+
}
|
|
4694
|
+
|
|
4695
|
+
.message-module-srkp1 {
|
|
4696
|
+
--color: var(--color-semantic-information);
|
|
4697
|
+
}
|
|
4698
|
+
|
|
4699
|
+
.message-module-oeSdr {
|
|
4700
|
+
--color: var(--color-semantic-stop);
|
|
4701
|
+
}
|
|
4702
|
+
|
|
4703
|
+
.message-module-Vp0pA {
|
|
4704
|
+
--color: var(--color-semantic-okay);
|
|
4705
|
+
}
|
|
4706
|
+
|
|
4707
|
+
.message-module-kvANQ {
|
|
4708
|
+
--color: var(--color-semantic-notify);
|
|
4709
|
+
}
|
|
4710
|
+
|
|
4711
|
+
.form-module-xD1fv {
|
|
4712
|
+
display: grid;
|
|
4713
|
+
container-type: inline-size;
|
|
4714
|
+
gap: var(--space-16);
|
|
4715
|
+
min-inline-size: 270px;
|
|
4716
|
+
}
|
|
4717
|
+
|
|
4718
|
+
.form-module-xD1fv .form-module-Hy5TM,
|
|
4719
|
+
.form-module-xD1fv .form-module-jDAR6,
|
|
4720
|
+
.form-module-xD1fv .form-module-wcAbi {
|
|
4721
|
+
display: grid;
|
|
4722
|
+
gap: var(--space-16);
|
|
4723
|
+
}
|
|
4724
|
+
|
|
4725
|
+
.form-segment-module-JLPcG {
|
|
4726
|
+
--tooltip-size: 24px;
|
|
4727
|
+
--info-icon-offset: calc((var(--tooltip-size) + var(--space-4)) * -1);
|
|
4728
|
+
--form-segment-toggle-columns: var(--form-segment-no-columns);
|
|
4729
|
+
--form-segment-columns: var(--form-segment-toggle-columns,);
|
|
4730
|
+
--form-segment-no-columns: var(--form-segment-toggle-columns,);
|
|
4731
|
+
|
|
4732
|
+
display: grid;
|
|
4733
|
+
gap: 0;
|
|
4734
|
+
grid-template-rows: minmax(0, min-content);
|
|
4735
|
+
|
|
4736
|
+
/* TODO: for when we continue developing forms */
|
|
4737
|
+
}
|
|
4738
|
+
|
|
4739
|
+
/* set all field components and their internal FormFieldLayout to the subgrid
|
|
4740
|
+
[class*='text-field'],
|
|
4741
|
+
[class*='number-field'],
|
|
4742
|
+
[class*='select-field'],
|
|
4743
|
+
[class*='checkbox-field'],
|
|
4744
|
+
[class*='switch-field'],
|
|
4745
|
+
[class*='form-field-layout'] {
|
|
4746
|
+
display: grid;
|
|
4747
|
+
grid-row: span 3;
|
|
4748
|
+
grid-template-rows: subgrid;
|
|
4749
|
+
} */
|
|
4750
|
+
|
|
4751
|
+
.form-segment-module-JLPcG.form-segment-module-98g3i {
|
|
4752
|
+
justify-self: flex-start;
|
|
4753
|
+
}
|
|
4754
|
+
|
|
4755
|
+
/* when info icon is present inside TODO: use class name partial value instead of data */
|
|
4756
|
+
|
|
4757
|
+
.form-segment-module-JLPcG:has([class*='info-icon-tooltip']) {
|
|
4758
|
+
margin-inline-end: var(--info-icon-offset);
|
|
4759
|
+
|
|
4760
|
+
/* TODO: for when we continue developing forms */
|
|
4761
|
+
|
|
4762
|
+
/* space for 2 columns
|
|
4763
|
+
@container (min-inline-size: 556px) {
|
|
4764
|
+
&:not(:only-child) {
|
|
4765
|
+
margin-inline-end: var(--form-segment-columns, 0);
|
|
4766
|
+
}
|
|
4767
|
+
}
|
|
4768
|
+
|
|
4769
|
+
@container (min-inline-size: 556px) and (max-inline-size: 841px) {
|
|
4770
|
+
&:nth-child(2n) {
|
|
4771
|
+
margin-inline-end: var(--form-segment-columns, var(--info-icon-offset));
|
|
4772
|
+
}
|
|
4773
|
+
}
|
|
4774
|
+
|
|
4775
|
+
space for 3 columns
|
|
4776
|
+
@container (min-inline-size: 842px) and (max-inline-size: 1047px) {
|
|
4777
|
+
&:nth-child(3n),
|
|
4778
|
+
&:nth-child(2):last-child {
|
|
4779
|
+
margin-inline-end: var(--form-segment-columns, var(--info-icon-offset));
|
|
4780
|
+
}
|
|
4781
|
+
}
|
|
4782
|
+
|
|
4783
|
+
space for 4 columns
|
|
4784
|
+
@container (min-inline-size: 1048px) {
|
|
4785
|
+
&:nth-child(4n),
|
|
4786
|
+
&:nth-child(3):last-child,
|
|
4787
|
+
&:nth-child(2):last-child {
|
|
4788
|
+
margin-inline-end: var(--form-segment-columns, var(--info-icon-offset));
|
|
4789
|
+
}
|
|
4790
|
+
} */
|
|
4791
|
+
}
|
|
4792
|
+
|
|
4793
|
+
.form-segment-group-module-P3YjC {
|
|
4794
|
+
display: grid;
|
|
4795
|
+
padding: 0;
|
|
4796
|
+
border: 0;
|
|
4797
|
+
margin: 0;
|
|
4798
|
+
gap: var(--space-16);
|
|
4799
|
+
grid-template-rows: repeat(3, min-content);
|
|
4800
|
+
|
|
4801
|
+
/* TODO: when we continue developing forms, then start doing columns */
|
|
4802
|
+
|
|
4803
|
+
/* > [class*='form-segment'] {
|
|
4804
|
+
grid-row: span 3;
|
|
4805
|
+
grid-template-rows: subgrid;
|
|
4806
|
+
}
|
|
4807
|
+
|
|
4808
|
+
&.columns {
|
|
4809
|
+
grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
|
|
4810
|
+
|
|
4811
|
+
above 1314, where - with a minimum width of 250px and 16px gap - 5 columns would appear, we restrict it to max 4 columns
|
|
4812
|
+
@container (min-inline-size: 1314px) {
|
|
4813
|
+
--minimum-width: calc((100% - 3 * var(--space-16)) / 4);
|
|
4814
|
+
|
|
4815
|
+
grid-template-columns: repeat(
|
|
4816
|
+
auto-fit,
|
|
4817
|
+
minmax(var(--minimum-width), 1fr)
|
|
4818
|
+
);
|
|
4819
|
+
}
|
|
4820
|
+
|
|
4821
|
+
> [class*='form-segment'] {
|
|
4822
|
+
--form-segment-toggle-columns: var(--form-segment-columns);
|
|
4823
|
+
}
|
|
4824
|
+
} */
|
|
4825
|
+
}
|
|
4826
|
+
|
|
4457
4827
|
.switch-module-ywpXc {
|
|
4458
4828
|
--pin-color: var(--color-white);
|
|
4459
4829
|
--box-color: var(--color-brand-light-gray);
|
|
@@ -4464,22 +4834,24 @@ button.swiper-pagination-bullet {
|
|
|
4464
4834
|
--disabled-selected-box-color: var(--color-brand-dark-gray);
|
|
4465
4835
|
|
|
4466
4836
|
display: flex;
|
|
4467
|
-
align-items:
|
|
4837
|
+
align-items: baseline;
|
|
4468
4838
|
color: var(--color-brand-black);
|
|
4469
4839
|
cursor: pointer;
|
|
4470
4840
|
font-size: var(--font-size-14);
|
|
4471
4841
|
forced-color-adjust: none;
|
|
4472
|
-
gap: 6px;
|
|
4473
4842
|
}
|
|
4474
4843
|
|
|
4475
4844
|
.switch-module-ywpXc .switch-module-2e1rG {
|
|
4476
4845
|
width: 44px;
|
|
4477
4846
|
height: 24px;
|
|
4478
4847
|
box-sizing: border-box;
|
|
4848
|
+
flex-shrink: 0;
|
|
4479
4849
|
border-radius: 12px;
|
|
4480
4850
|
background: var(--box-color);
|
|
4851
|
+
margin-block: -0.5em 0.5em;
|
|
4481
4852
|
transition-duration: 200ms;
|
|
4482
4853
|
transition-property: background;
|
|
4854
|
+
translate: 0 0.5em;
|
|
4483
4855
|
}
|
|
4484
4856
|
|
|
4485
4857
|
.switch-module-ywpXc .switch-module-2e1rG::before {
|
|
@@ -4491,7 +4863,9 @@ button.swiper-pagination-bullet {
|
|
|
4491
4863
|
border-radius: 50%;
|
|
4492
4864
|
margin: var(--space-2);
|
|
4493
4865
|
background: var(--pin-color);
|
|
4494
|
-
box-shadow:
|
|
4866
|
+
box-shadow:
|
|
4867
|
+
0 3px 1px 0 rgb(0 0 0 / 6%),
|
|
4868
|
+
0 3px 8px 0 rgb(0 0 0 / 15%);
|
|
4495
4869
|
content: '';
|
|
4496
4870
|
transition: all 200ms;
|
|
4497
4871
|
}
|
|
@@ -4514,7 +4888,7 @@ button.swiper-pagination-bullet {
|
|
|
4514
4888
|
opacity: 0.4;
|
|
4515
4889
|
}
|
|
4516
4890
|
|
|
4517
|
-
.switch-module-ywpXc
|
|
4891
|
+
.switch-module-ywpXc[data-focus-visible] .switch-module-2e1rG {
|
|
4518
4892
|
box-shadow: var(--shadow-focus-outline-padded);
|
|
4519
4893
|
outline: 2px solid var(--color-brand-white);
|
|
4520
4894
|
outline-offset: 0;
|
|
@@ -4536,14 +4910,36 @@ button.swiper-pagination-bullet {
|
|
|
4536
4910
|
background: var(--disabled-selected-box-color);
|
|
4537
4911
|
}
|
|
4538
4912
|
|
|
4539
|
-
.
|
|
4913
|
+
.switch-module-ywpXc .switch-module-rZxF4:not(:empty) {
|
|
4914
|
+
font-weight: unset;
|
|
4915
|
+
margin-inline-start: var(--space-8);
|
|
4916
|
+
}
|
|
4917
|
+
|
|
4918
|
+
.switch-field-module-lBYuh {
|
|
4919
|
+
justify-self: flex-start;
|
|
4920
|
+
}
|
|
4921
|
+
|
|
4922
|
+
.password-reveal-toggle-module-bGH6I {
|
|
4540
4923
|
display: inline-flex;
|
|
4924
|
+
color: var(--color-brand-medium-gray);
|
|
4541
4925
|
cursor: pointer;
|
|
4542
4926
|
}
|
|
4543
4927
|
|
|
4544
|
-
.password-reveal-toggle-module-
|
|
4545
|
-
|
|
4928
|
+
.password-reveal-toggle-module-bGH6I[data-hovered],
|
|
4929
|
+
.password-reveal-toggle-module-bGH6I[data-focused] {
|
|
4930
|
+
color: var(--color-brand-dark-gray);
|
|
4546
4931
|
}
|
|
4932
|
+
|
|
4933
|
+
.password-reveal-toggle-module-bGH6I input {
|
|
4934
|
+
block-size: 0;
|
|
4935
|
+
inline-size: 0;
|
|
4936
|
+
}
|
|
4937
|
+
|
|
4938
|
+
.password-reveal-toggle-module-bGH6I span {
|
|
4939
|
+
block-size: var(--space-24);
|
|
4940
|
+
inline-size: var(--space-24);
|
|
4941
|
+
}
|
|
4942
|
+
|
|
4547
4943
|
.textarea-module-C6Xr1 {
|
|
4548
4944
|
position: relative;
|
|
4549
4945
|
display: inline-block;
|
|
@@ -4600,38 +4996,8 @@ button.swiper-pagination-bullet {
|
|
|
4600
4996
|
padding: 11px var(--space-8);
|
|
4601
4997
|
}
|
|
4602
4998
|
|
|
4603
|
-
.text-field-module-
|
|
4604
|
-
|
|
4605
|
-
display: grid;
|
|
4606
|
-
grid-template-areas:
|
|
4607
|
-
'label .'
|
|
4608
|
-
'field info'
|
|
4609
|
-
'error .';
|
|
4610
|
-
grid-template-columns: 1fr auto;
|
|
4611
|
-
}
|
|
4612
|
-
|
|
4613
|
-
.text-field-module-JeaK0 span:empty {
|
|
4614
|
-
display: none;
|
|
4615
|
-
}
|
|
4616
|
-
|
|
4617
|
-
.text-field-module-hFl0f {
|
|
4618
|
-
grid-area: label;
|
|
4619
|
-
margin-block-end: var(--space-4);
|
|
4620
|
-
}
|
|
4621
|
-
|
|
4622
|
-
.text-field-module-nHYDe {
|
|
4623
|
-
grid-area: field;
|
|
4624
|
-
}
|
|
4625
|
-
|
|
4626
|
-
.text-field-module-kHn5y {
|
|
4627
|
-
align-self: center;
|
|
4628
|
-
grid-area: info;
|
|
4629
|
-
margin-inline-start: var(--space-4);
|
|
4630
|
-
}
|
|
4631
|
-
|
|
4632
|
-
.text-field-module-8XbgH {
|
|
4633
|
-
grid-area: error;
|
|
4634
|
-
margin-block-start: var(--space-4);
|
|
4999
|
+
.text-field-module-PBkCx {
|
|
5000
|
+
/* styles */
|
|
4635
5001
|
}
|
|
4636
5002
|
|
|
4637
5003
|
.categories-grid-module-C751R {
|
|
@@ -4837,6 +5203,7 @@ button.swiper-pagination-bullet {
|
|
|
4837
5203
|
--box-shadow: var(--box-shadow-medium);
|
|
4838
5204
|
|
|
4839
5205
|
position: relative;
|
|
5206
|
+
z-index: 0;
|
|
4840
5207
|
overflow: hidden;
|
|
4841
5208
|
width: 100%;
|
|
4842
5209
|
height: 100%;
|
|
@@ -4849,6 +5216,13 @@ button.swiper-pagination-bullet {
|
|
|
4849
5216
|
box-shadow ease 0.2s;
|
|
4850
5217
|
}
|
|
4851
5218
|
|
|
5219
|
+
@media (hover: hover) {
|
|
5220
|
+
.promo-card-module-e2oii:hover {
|
|
5221
|
+
box-shadow: var(--box-shadow);
|
|
5222
|
+
scale: 1.04;
|
|
5223
|
+
}
|
|
5224
|
+
}
|
|
5225
|
+
|
|
4852
5226
|
.promo-card-module-e2oii .promo-card-module-jr9sn img {
|
|
4853
5227
|
-o-object-fit: cover;
|
|
4854
5228
|
object-fit: cover;
|
|
@@ -4856,14 +5230,6 @@ button.swiper-pagination-bullet {
|
|
|
4856
5230
|
object-position: bottom left;
|
|
4857
5231
|
}
|
|
4858
5232
|
|
|
4859
|
-
@media (hover: hover) {
|
|
4860
|
-
.promo-card-module-e2oii:hover {
|
|
4861
|
-
box-shadow: var(--box-shadow);
|
|
4862
|
-
color: var(--color-black);
|
|
4863
|
-
scale: 1.04;
|
|
4864
|
-
}
|
|
4865
|
-
}
|
|
4866
|
-
|
|
4867
5233
|
@container (min-width: 273px) {
|
|
4868
5234
|
.promo-card-module-e2oii {
|
|
4869
5235
|
--box-shadow: var(--box-shadow-heavy);
|
|
@@ -5594,67 +5960,17 @@ button.swiper-pagination-bullet {
|
|
|
5594
5960
|
object-fit: contain;
|
|
5595
5961
|
}
|
|
5596
5962
|
|
|
5597
|
-
.
|
|
5598
|
-
|
|
5963
|
+
.add-to-favorite-dialog-module-WJYMb {
|
|
5964
|
+
display: flex;
|
|
5965
|
+
flex-direction: column;
|
|
5966
|
+
gap: 1rem;
|
|
5967
|
+
}
|
|
5599
5968
|
|
|
5600
|
-
|
|
5601
|
-
|
|
5602
|
-
|
|
5603
|
-
|
|
5604
|
-
|
|
5605
|
-
grid-template-areas: 'icon body';
|
|
5606
|
-
grid-template-columns: minmax(0, min-content) 1fr;
|
|
5607
|
-
}
|
|
5608
|
-
|
|
5609
|
-
.message-module-w2hsL {
|
|
5610
|
-
color: var(--color);
|
|
5611
|
-
grid-area: icon;
|
|
5612
|
-
margin-block: -3px;
|
|
5613
|
-
margin-inline-end: var(--space-8);
|
|
5614
|
-
}
|
|
5615
|
-
|
|
5616
|
-
.message-module-w2hsL svg {
|
|
5617
|
-
display: block;
|
|
5618
|
-
}
|
|
5619
|
-
|
|
5620
|
-
.message-module-Gi4uR {
|
|
5621
|
-
grid-area: body;
|
|
5622
|
-
text-wrap: pretty;
|
|
5623
|
-
}
|
|
5624
|
-
|
|
5625
|
-
/* variants */
|
|
5626
|
-
|
|
5627
|
-
.message-module-pp9U4 {
|
|
5628
|
-
background: var(--color-brand-light-gray);
|
|
5629
|
-
}
|
|
5630
|
-
|
|
5631
|
-
.message-module-srkp1 {
|
|
5632
|
-
--color: var(--color-semantic-information);
|
|
5633
|
-
}
|
|
5634
|
-
|
|
5635
|
-
.message-module-oeSdr {
|
|
5636
|
-
--color: var(--color-semantic-stop);
|
|
5637
|
-
}
|
|
5638
|
-
|
|
5639
|
-
.message-module-Vp0pA {
|
|
5640
|
-
--color: var(--color-semantic-okay);
|
|
5641
|
-
}
|
|
5642
|
-
|
|
5643
|
-
.message-module-kvANQ {
|
|
5644
|
-
--color: var(--color-semantic-notify);
|
|
5645
|
-
}
|
|
5646
|
-
|
|
5647
|
-
.add-to-favorite-dialog-module-WJYMb {
|
|
5648
|
-
display: flex;
|
|
5649
|
-
flex-direction: column;
|
|
5650
|
-
gap: 1rem;
|
|
5651
|
-
}
|
|
5652
|
-
|
|
5653
|
-
.add-to-favorite-dialog-module--0-Ln {
|
|
5654
|
-
display: flex;
|
|
5655
|
-
flex-direction: row-reverse;
|
|
5656
|
-
justify-content: flex-end;
|
|
5657
|
-
gap: 1rem;
|
|
5969
|
+
.add-to-favorite-dialog-module--0-Ln {
|
|
5970
|
+
display: flex;
|
|
5971
|
+
flex-direction: row-reverse;
|
|
5972
|
+
justify-content: flex-end;
|
|
5973
|
+
gap: 1rem;
|
|
5658
5974
|
}
|
|
5659
5975
|
|
|
5660
5976
|
.add-to-favorite-dialog-module-ZAuzE {
|
|
@@ -5806,207 +6122,18 @@ button.swiper-pagination-bullet {
|
|
|
5806
6122
|
transition: margin-top 300ms linear;
|
|
5807
6123
|
}
|
|
5808
6124
|
|
|
5809
|
-
.
|
|
5810
|
-
--layout-width: var(--page-container-max-layout-width, 100vw);
|
|
5811
|
-
--padding-inline: var(--page-container-padding-inline, 10px);
|
|
5812
|
-
--content-width-min: 270px;
|
|
5813
|
-
--gutter-width: minmax(22px, 1fr);
|
|
5814
|
-
--content-width: minmax(var(--content-width-min), 350px);
|
|
5815
|
-
--main-padding-block: var(--space-24);
|
|
5816
|
-
--side-width: auto; /* when shown at lg+, will adapt to 50%; above xl will grow from 4 of 8, until 7 of 12 */
|
|
5817
|
-
--side-height: 100%;
|
|
5818
|
-
--side-height-max: calc(100svb);
|
|
5819
|
-
--side-breakout: min(
|
|
5820
|
-
var(--breakout-minimum),
|
|
5821
|
-
calc((100vw - var(--layout-width)) * -0.5)
|
|
5822
|
-
);
|
|
5823
|
-
--breakout-minimum: calc(var(--padding-inline) * -1);
|
|
5824
|
-
|
|
5825
|
-
display: grid;
|
|
5826
|
-
align-items: center;
|
|
5827
|
-
grid-template-areas: '. main .';
|
|
5828
|
-
grid-template-columns:
|
|
5829
|
-
var(--gutter-width)
|
|
5830
|
-
var(--content-width)
|
|
5831
|
-
var(--gutter-width);
|
|
5832
|
-
}
|
|
5833
|
-
|
|
5834
|
-
@media (width >= 768px) {.sign-in-page-layout-module-Z1oE2 {
|
|
5835
|
-
--content-width: minmax(var(--content-width-min), 37.5%); /* 3 of 8 */
|
|
5836
|
-
--gutter-width: 6.25%; /* 0.5 of 8 */
|
|
5837
|
-
--main-padding-block: var(--space-48);
|
|
5838
|
-
|
|
5839
|
-
grid-template-areas: 'side . main .';
|
|
5840
|
-
grid-template-columns:
|
|
5841
|
-
var(--side-width)
|
|
5842
|
-
var(--gutter-width)
|
|
5843
|
-
var(--content-width)
|
|
5844
|
-
var(--gutter-width)
|
|
5845
|
-
}
|
|
5846
|
-
}
|
|
5847
|
-
|
|
5848
|
-
@media (width >= 1024px) {.sign-in-page-layout-module-Z1oE2 {
|
|
5849
|
-
--gutter-width: 8.33%; /* 1 of 12 */
|
|
5850
|
-
--content-width: minmax(350px, 25%) /* 350px to 3 of 12 */
|
|
5851
|
-
}
|
|
5852
|
-
}
|
|
5853
|
-
|
|
5854
|
-
.sign-in-page-layout-module-Z1oE2.sign-in-page-layout-module-D5yqX {
|
|
5855
|
-
min-block-size: 100%;
|
|
5856
|
-
}
|
|
5857
|
-
|
|
5858
|
-
.sign-in-page-layout-module-s6x7v {
|
|
5859
|
-
grid-area: main;
|
|
5860
|
-
padding-block: var(--main-padding-block);
|
|
5861
|
-
}
|
|
5862
|
-
|
|
5863
|
-
.sign-in-page-layout-module-W-FMF {
|
|
5864
|
-
position: sticky;
|
|
5865
|
-
display: none;
|
|
5866
|
-
overflow: hidden;
|
|
5867
|
-
align-self: stretch;
|
|
5868
|
-
block-size: var(--side-height);
|
|
5869
|
-
grid-area: side;
|
|
5870
|
-
inset-block-start: 0;
|
|
5871
|
-
|
|
5872
|
-
/* negative margin breaking out of the layout, stretching to the view port edge */
|
|
5873
|
-
margin-inline-start: var(--side-breakout);
|
|
5874
|
-
max-block-size: var(--side-height-max);
|
|
5875
|
-
}
|
|
5876
|
-
|
|
5877
|
-
@media (width >= 768px) {
|
|
5878
|
-
|
|
5879
|
-
.sign-in-page-layout-module-W-FMF {
|
|
5880
|
-
display: block
|
|
5881
|
-
}
|
|
5882
|
-
}
|
|
5883
|
-
|
|
5884
|
-
.sign-in-page-layout-module-W-FMF .sign-in-page-layout-module-cbE8y {
|
|
5885
|
-
position: absolute;
|
|
5886
|
-
background: var(--color-brand-light-gray);
|
|
5887
|
-
inset: 0 0 -1px;
|
|
5888
|
-
|
|
5889
|
-
/* mask, the brand 'hook' */
|
|
5890
|
-
-webkit-mask: var(--mask-brand-hook);
|
|
5891
|
-
mask: var(--mask-brand-hook);
|
|
5892
|
-
}
|
|
5893
|
-
|
|
5894
|
-
/* subtle drop shadow at the top (also masked) */
|
|
5895
|
-
|
|
5896
|
-
.sign-in-page-layout-module-W-FMF .sign-in-page-layout-module-cbE8y::after {
|
|
5897
|
-
position: absolute;
|
|
5898
|
-
background: linear-gradient(
|
|
5899
|
-
to bottom,
|
|
5900
|
-
hsl(0deg 0% 0% / 20%),
|
|
5901
|
-
hsl(0deg 0% 0% / 0%)
|
|
5902
|
-
);
|
|
5903
|
-
block-size: 40px;
|
|
5904
|
-
content: '';
|
|
5905
|
-
inset: 0 0 auto;
|
|
5906
|
-
}
|
|
5907
|
-
|
|
5908
|
-
.sign-in-page-layout-module-W-FMF .sign-in-page-layout-module-cbE8y img {
|
|
5909
|
-
-o-object-position: right;
|
|
5910
|
-
object-position: right;
|
|
5911
|
-
}
|
|
5912
|
-
|
|
5913
|
-
.sign-in-form-module-4DkkP {
|
|
6125
|
+
.create-account-form-module-TMU8F {
|
|
5914
6126
|
min-inline-size: 270px;
|
|
5915
6127
|
}
|
|
5916
6128
|
|
|
5917
|
-
|
|
5918
|
-
|
|
5919
|
-
.sign-in-form-module-bGXUd {
|
|
5920
|
-
--tooltip-size: 24px;
|
|
5921
|
-
--info-icon-offset: calc((var(--tooltip-size) + var(--space-4)) * -1);
|
|
5922
|
-
|
|
5923
|
-
display: grid;
|
|
5924
|
-
container-type: inline-size;
|
|
5925
|
-
gap: var(--space-16);
|
|
5926
|
-
}
|
|
5927
|
-
|
|
5928
|
-
.sign-in-form-module-bGXUd p {
|
|
5929
|
-
margin: 0 0 var(--space-4);
|
|
5930
|
-
}
|
|
5931
|
-
|
|
5932
|
-
.sign-in-form-module-TumIz {
|
|
5933
|
-
display: grid;
|
|
5934
|
-
}
|
|
5935
|
-
|
|
5936
|
-
.sign-in-form-module-TumIz .sign-in-form-module-bIzyz {
|
|
5937
|
-
justify-self: flex-start;
|
|
5938
|
-
}
|
|
5939
|
-
|
|
5940
|
-
.sign-in-form-module-EoTYu {
|
|
5941
|
-
display: grid;
|
|
5942
|
-
padding: 0;
|
|
5943
|
-
border: 0;
|
|
5944
|
-
margin: 0;
|
|
5945
|
-
gap: var(--space-16);
|
|
6129
|
+
.sign-in-form-module-BoJwR {
|
|
6130
|
+
min-inline-size: 270px;
|
|
5946
6131
|
}
|
|
5947
6132
|
|
|
5948
|
-
.sign-in-form-module-
|
|
5949
|
-
|
|
5950
|
-
}
|
|
5951
|
-
|
|
5952
|
-
/* above 1314, where - with a minimum width of 250px and 16px gap - 5 columns would appear, we restrict it to max 4 columns */
|
|
5953
|
-
|
|
5954
|
-
@container (min-inline-size: 1314px) {
|
|
5955
|
-
|
|
5956
|
-
.sign-in-form-module-EoTYu.sign-in-form-module-9eIx- {
|
|
5957
|
-
--minimum-width: calc((100% - 3 * var(--space-16)) / 4);
|
|
5958
|
-
|
|
5959
|
-
grid-template-columns: repeat(
|
|
5960
|
-
auto-fit,
|
|
5961
|
-
minmax(var(--minimum-width), 1fr)
|
|
5962
|
-
)
|
|
5963
|
-
}
|
|
5964
|
-
}
|
|
5965
|
-
|
|
5966
|
-
/* info icon rules: when (visually) the last segment on a row with an icon, needs to have a negative margin */
|
|
5967
|
-
|
|
5968
|
-
.sign-in-form-module-EoTYu .sign-in-form-module-TumIz:has([data-info]) {
|
|
5969
|
-
margin-inline-end: var(--info-icon-offset);
|
|
6133
|
+
.sign-in-form-module-BoJwR .sign-in-form-module-PQ4Ik {
|
|
6134
|
+
margin-block: 0 var(--space-4);
|
|
5970
6135
|
}
|
|
5971
6136
|
|
|
5972
|
-
/* 2 * 250px + 16px = 516px; space for 2 columns */
|
|
5973
|
-
|
|
5974
|
-
@container (min-inline-size: 516px) {
|
|
5975
|
-
.sign-in-form-module-EoTYu.sign-in-form-module-9eIx- .sign-in-form-module-TumIz:has([data-info]):not(:only-child) {
|
|
5976
|
-
margin-inline-end: 0;
|
|
5977
|
-
}
|
|
5978
|
-
}
|
|
5979
|
-
|
|
5980
|
-
@container (min-inline-size: 516px) and (max-inline-size: 781px) {
|
|
5981
|
-
.sign-in-form-module-EoTYu.sign-in-form-module-9eIx- .sign-in-form-module-TumIz:has([data-info]):nth-child(2n) {
|
|
5982
|
-
margin-inline-end: var(--info-icon-offset);
|
|
5983
|
-
}
|
|
5984
|
-
}
|
|
5985
|
-
|
|
5986
|
-
/* 3 * 250px + 2 * 16px = 782px; space for 3 columns */
|
|
5987
|
-
|
|
5988
|
-
@container (min-inline-size: 782px) and (max-inline-size: 1047px) {
|
|
5989
|
-
.sign-in-form-module-EoTYu.sign-in-form-module-9eIx- .sign-in-form-module-TumIz:has([data-info]):nth-child(3n),
|
|
5990
|
-
.sign-in-form-module-EoTYu.sign-in-form-module-9eIx- .sign-in-form-module-TumIz:has([data-info]):nth-child(2):last-child {
|
|
5991
|
-
margin-inline-end: var(--info-icon-offset);
|
|
5992
|
-
}
|
|
5993
|
-
}
|
|
5994
|
-
|
|
5995
|
-
/* 4 * 250px + 3 * 16px = 1048px; space for 4 columns */
|
|
5996
|
-
|
|
5997
|
-
@container (min-inline-size: 1048px) {
|
|
5998
|
-
.sign-in-form-module-EoTYu.sign-in-form-module-9eIx- .sign-in-form-module-TumIz:has([data-info]):nth-child(4n),
|
|
5999
|
-
.sign-in-form-module-EoTYu.sign-in-form-module-9eIx- .sign-in-form-module-TumIz:has([data-info]):nth-child(3):last-child,
|
|
6000
|
-
.sign-in-form-module-EoTYu.sign-in-form-module-9eIx- .sign-in-form-module-TumIz:has([data-info]):nth-child(2):last-child {
|
|
6001
|
-
margin-inline-end: var(--info-icon-offset);
|
|
6002
|
-
}
|
|
6003
|
-
}
|
|
6004
|
-
|
|
6005
|
-
.sign-in-form-module-aYBAy {
|
|
6006
|
-
display: grid;
|
|
6007
|
-
gap: var(--space-16);
|
|
6008
|
-
}
|
|
6009
|
-
|
|
6010
6137
|
.page-container-module-eFYSe {
|
|
6011
6138
|
--page-container-padding-inline: 10px;
|
|
6012
6139
|
--page-container-padding-block: 10px;
|
|
@@ -6108,6 +6235,110 @@ button.swiper-pagination-bullet {
|
|
|
6108
6235
|
padding-block-end: 0;
|
|
6109
6236
|
}
|
|
6110
6237
|
|
|
6238
|
+
.sign-in-page-layout-module-Z1oE2 {
|
|
6239
|
+
--layout-width: var(--page-container-max-layout-width, 100vw);
|
|
6240
|
+
--padding-inline: var(--page-container-padding-inline, 10px);
|
|
6241
|
+
--content-width-min: 270px;
|
|
6242
|
+
--gutter-width: minmax(22px, 1fr);
|
|
6243
|
+
--content-width: minmax(var(--content-width-min), 350px);
|
|
6244
|
+
--main-padding-block: var(--space-24);
|
|
6245
|
+
--side-width: auto; /* when shown at lg+, will adapt to 50%; above xl will grow from 4 of 8, until 7 of 12 */
|
|
6246
|
+
--side-height: 100%;
|
|
6247
|
+
--side-height-max: calc(100svb);
|
|
6248
|
+
--side-breakout: min(
|
|
6249
|
+
var(--breakout-minimum),
|
|
6250
|
+
calc((100vw - var(--layout-width)) * -0.5)
|
|
6251
|
+
);
|
|
6252
|
+
--breakout-minimum: calc(var(--padding-inline) * -1);
|
|
6253
|
+
|
|
6254
|
+
display: grid;
|
|
6255
|
+
align-items: center;
|
|
6256
|
+
grid-template-areas: '. main .';
|
|
6257
|
+
grid-template-columns:
|
|
6258
|
+
var(--gutter-width)
|
|
6259
|
+
var(--content-width)
|
|
6260
|
+
var(--gutter-width);
|
|
6261
|
+
}
|
|
6262
|
+
|
|
6263
|
+
@media (width >= 768px) {.sign-in-page-layout-module-Z1oE2 {
|
|
6264
|
+
--content-width: minmax(var(--content-width-min), 37.5%); /* 3 of 8 */
|
|
6265
|
+
--gutter-width: 6.25%; /* 0.5 of 8 */
|
|
6266
|
+
--main-padding-block: var(--space-48);
|
|
6267
|
+
|
|
6268
|
+
grid-template-areas: 'side . main .';
|
|
6269
|
+
grid-template-columns:
|
|
6270
|
+
var(--side-width)
|
|
6271
|
+
var(--gutter-width)
|
|
6272
|
+
var(--content-width)
|
|
6273
|
+
var(--gutter-width)
|
|
6274
|
+
}
|
|
6275
|
+
}
|
|
6276
|
+
|
|
6277
|
+
@media (width >= 1024px) {.sign-in-page-layout-module-Z1oE2 {
|
|
6278
|
+
--gutter-width: 8.33%; /* 1 of 12 */
|
|
6279
|
+
--content-width: minmax(350px, 25%) /* 350px to 3 of 12 */
|
|
6280
|
+
}
|
|
6281
|
+
}
|
|
6282
|
+
|
|
6283
|
+
.sign-in-page-layout-module-Z1oE2.sign-in-page-layout-module-D5yqX {
|
|
6284
|
+
min-block-size: 100%;
|
|
6285
|
+
}
|
|
6286
|
+
|
|
6287
|
+
.sign-in-page-layout-module-s6x7v {
|
|
6288
|
+
grid-area: main;
|
|
6289
|
+
padding-block: var(--main-padding-block);
|
|
6290
|
+
}
|
|
6291
|
+
|
|
6292
|
+
.sign-in-page-layout-module-W-FMF {
|
|
6293
|
+
position: sticky;
|
|
6294
|
+
display: none;
|
|
6295
|
+
overflow: hidden;
|
|
6296
|
+
align-self: stretch;
|
|
6297
|
+
block-size: var(--side-height);
|
|
6298
|
+
grid-area: side;
|
|
6299
|
+
inset-block-start: 0;
|
|
6300
|
+
|
|
6301
|
+
/* negative margin breaking out of the layout, stretching to the view port edge */
|
|
6302
|
+
margin-inline-start: var(--side-breakout);
|
|
6303
|
+
max-block-size: var(--side-height-max);
|
|
6304
|
+
}
|
|
6305
|
+
|
|
6306
|
+
@media (width >= 768px) {
|
|
6307
|
+
|
|
6308
|
+
.sign-in-page-layout-module-W-FMF {
|
|
6309
|
+
display: block
|
|
6310
|
+
}
|
|
6311
|
+
}
|
|
6312
|
+
|
|
6313
|
+
.sign-in-page-layout-module-W-FMF .sign-in-page-layout-module-cbE8y {
|
|
6314
|
+
position: absolute;
|
|
6315
|
+
background: var(--color-brand-light-gray);
|
|
6316
|
+
inset: 0 0 -1px;
|
|
6317
|
+
|
|
6318
|
+
/* mask, the brand 'hook' */
|
|
6319
|
+
-webkit-mask: var(--mask-brand-hook);
|
|
6320
|
+
mask: var(--mask-brand-hook);
|
|
6321
|
+
}
|
|
6322
|
+
|
|
6323
|
+
/* subtle drop shadow at the top (also masked) */
|
|
6324
|
+
|
|
6325
|
+
.sign-in-page-layout-module-W-FMF .sign-in-page-layout-module-cbE8y::after {
|
|
6326
|
+
position: absolute;
|
|
6327
|
+
background: linear-gradient(
|
|
6328
|
+
to bottom,
|
|
6329
|
+
hsl(0deg 0% 0% / 20%),
|
|
6330
|
+
hsl(0deg 0% 0% / 0%)
|
|
6331
|
+
);
|
|
6332
|
+
block-size: 40px;
|
|
6333
|
+
content: '';
|
|
6334
|
+
inset: 0 0 auto;
|
|
6335
|
+
}
|
|
6336
|
+
|
|
6337
|
+
.sign-in-page-layout-module-W-FMF .sign-in-page-layout-module-cbE8y img {
|
|
6338
|
+
-o-object-position: right;
|
|
6339
|
+
object-position: right;
|
|
6340
|
+
}
|
|
6341
|
+
|
|
6111
6342
|
.checkout-page-layout-module-lULV3 {
|
|
6112
6343
|
--layout-width: var(--page-container-max-width, 100svw);
|
|
6113
6344
|
--padding-inline: var(--page-container-padding-inline, 10px);
|