@sonic-equipment/ui 184.0.0 → 186.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/address-info-display/address-info-display.d.ts +2 -2
- package/dist/address-info-display/address-info-display.js +1 -1
- package/dist/algolia/algolia-multi-select-filter-section.js +1 -1
- package/dist/algolia/algolia-sort-by.js +1 -1
- package/dist/buttons/add-to-cart-button/add-to-cart-button.js +1 -1
- package/dist/cards/data-card/data-card.js +37 -20
- package/dist/cards/data-card/data-card.module.css.js +1 -1
- package/dist/country-select/country-select.js +1 -1
- package/dist/country-select/hooks/use-countries.js +1 -0
- package/dist/country-selector/country-selector-dialog/country-selector-dialog.js +2 -6
- package/dist/exports.d.ts +43 -23
- package/dist/filters/pagination/pagination.js +1 -1
- package/dist/forms/elements/checkbox/checkbox.module.css.js +3 -0
- package/dist/forms/{field-error → elements/field-error}/field-error.js +1 -1
- package/dist/forms/elements/field-error/field-error.module.css.js +3 -0
- package/dist/forms/elements/input/input.module.css.js +3 -0
- package/dist/forms/elements/label/label.module.css.js +3 -0
- package/dist/forms/{select → elements/select}/select.d.ts +2 -1
- package/dist/forms/{select → elements/select}/select.js +5 -5
- package/dist/forms/elements/select/select.module.css.js +3 -0
- package/dist/forms/elements/switch/switch.module.css.js +3 -0
- package/dist/forms/elements/textarea/textarea.module.css.js +3 -0
- package/dist/forms/{checkbox-field → fields/checkbox-field}/checkbox-field.d.ts +2 -2
- package/dist/forms/{checkbox-field → fields/checkbox-field}/checkbox-field.js +4 -4
- package/dist/forms/fields/checkbox-field/checkbox-field.module.css.js +3 -0
- package/dist/forms/{number-field → fields/number-field}/number-field.d.ts +1 -1
- package/dist/forms/{number-field → fields/number-field}/number-field.js +8 -8
- package/dist/forms/fields/number-field/number-field.module.css.js +3 -0
- package/dist/forms/{search-field → fields/search-field}/search-field.js +3 -3
- package/dist/forms/{select-field → fields/select-field}/select-field.d.ts +1 -1
- package/dist/forms/{select-field → fields/select-field}/select-field.js +7 -7
- package/dist/forms/fields/select-field/select-field.module.css.js +3 -0
- package/dist/forms/{switch-field → fields/switch-field}/switch-field.d.ts +2 -2
- package/dist/forms/{switch-field → fields/switch-field}/switch-field.js +4 -4
- package/dist/forms/fields/switch-field/switch-field.module.css.js +3 -0
- package/dist/forms/{text-field → fields/text-field}/password-reveal-toggle/password-reveal-toggle.js +3 -3
- package/dist/forms/{text-field → fields/text-field}/password-reveal-toggle/password-reveal-toggle.module.css.js +1 -1
- package/dist/forms/{text-field → fields/text-field}/text-field.d.ts +1 -1
- package/dist/forms/{text-field → fields/text-field}/text-field.js +6 -6
- package/dist/forms/fields/text-field/text-field.module.css.js +3 -0
- package/dist/forms/layout/form/form-field-layout.module.css.js +3 -0
- package/dist/forms/layout/form/form-segment-group.module.css.js +3 -0
- package/dist/forms/layout/form/form-segment.module.css.js +3 -0
- package/dist/forms/layout/form/form.d.ts +20 -0
- package/dist/forms/{form → layout/form}/form.js +4 -4
- package/dist/forms/layout/form/form.module.css.js +3 -0
- package/dist/forms/partials/edit-address-form/edit-address-form.d.ts +8 -0
- package/dist/forms/partials/edit-address-form/edit-address-form.js +35 -0
- package/dist/forms/partials/edit-address-form/edit-address-form.module.css.js +3 -0
- package/dist/forms/partials/password-validation/password-validation.d.ts +4 -0
- package/dist/forms/partials/password-validation/password-validation.js +32 -0
- package/dist/index.js +44 -24
- package/dist/intl/formatted-message.js +5 -1
- package/dist/intl/translation-id.d.ts +1 -1
- package/dist/intl/types.d.ts +6 -1
- package/dist/intl/use-formatted-message.js +2 -1
- package/dist/lists/menu-list/menu-list.d.ts +2 -1
- package/dist/lists/menu-list/menu-list.js +2 -2
- package/dist/lists/widget-grid/widget-grid.d.ts +5 -0
- package/dist/lists/widget-grid/widget-grid.js +9 -0
- package/dist/lists/widget-grid/widget-grid.module.css.js +3 -0
- package/dist/lists/widget-grid/widget.d.ts +6 -0
- package/dist/lists/widget-grid/widget.js +10 -0
- package/dist/modals/dialog/dialog.d.ts +5 -5
- package/dist/modals/dialog/dialog.js +18 -18
- package/dist/modals/dialog/dialog.module.css.js +1 -1
- package/dist/modals/favorite/add-to-favorite-dialog.js +2 -2
- package/dist/modals/recover-password/recover-password-dialog.js +2 -4
- package/dist/pages/account/components/create-account-form/create-account-form.js +8 -23
- package/dist/pages/account/components/sign-in-form/sign-in-form.js +6 -6
- package/dist/pages/account/create-account-page/create-account-page.js +4 -5
- package/dist/pages/account/layouts/sign-in-page-layout/sign-in-page-layout.js +1 -1
- package/dist/pages/account/sign-in-page/sign-in-page.js +2 -3
- package/dist/pages/checkout/components/billing-and-invoice-information.d.ts +3 -3
- package/dist/pages/checkout/components/billing-and-invoice-information.js +1 -1
- package/dist/pages/checkout/order-confirmation-page/order-confirmation-page-content.js +26 -20
- package/dist/pages/checkout/payment-page/components/payment.js +29 -23
- package/dist/pages/checkout/shipping-page/components/{edit-address-form.d.ts → edit-checkout-bill-to-address-form.d.ts} +3 -17
- package/dist/pages/checkout/shipping-page/components/edit-checkout-bill-to-address-form.js +49 -0
- package/dist/pages/checkout/shipping-page/components/edit-checkout-bill-to-address-form.module.css.js +3 -0
- package/dist/pages/checkout/shipping-page/components/readonly-address.js +7 -5
- package/dist/pages/checkout/shipping-page/hooks/use-patch-shipping-details.d.ts +1 -0
- package/dist/pages/checkout/shipping-page/shipping-page-content.js +2 -2
- package/dist/pages/checkout/shipping-page/shipping-page.js +2 -2
- package/dist/pages/components/page-container/page-container.js +1 -1
- package/dist/pages/my-sonic/actions/change-customer/change-customer-dialog.d.ts +4 -3
- package/dist/pages/my-sonic/actions/change-customer/change-customer-dialog.js +10 -4
- package/dist/pages/my-sonic/actions/change-customer/change-customer.d.ts +5 -2
- package/dist/pages/my-sonic/actions/change-customer/change-customer.js +17 -8
- package/dist/pages/my-sonic/actions/change-customer/change-customer.module.css.js +1 -1
- package/dist/pages/my-sonic/actions/change-customer/connected-change-customer-dialog.d.ts +7 -2
- package/dist/pages/my-sonic/actions/change-customer/connected-change-customer-dialog.js +9 -6
- package/dist/pages/my-sonic/actions/change-password/change-password-dialog.d.ts +10 -0
- package/dist/pages/my-sonic/actions/change-password/change-password-dialog.js +24 -0
- package/dist/pages/my-sonic/actions/change-password/change-password.d.ts +7 -0
- package/dist/pages/my-sonic/actions/change-password/change-password.js +35 -0
- package/dist/pages/my-sonic/actions/change-password/change-password.module.css.js +3 -0
- package/dist/pages/my-sonic/actions/change-password/connected-change-password-dialog.d.ts +5 -0
- package/dist/pages/my-sonic/actions/change-password/connected-change-password-dialog.js +39 -0
- package/dist/pages/my-sonic/actions/edit-bill-to-address/edit-bill-to-address.d.ts +1 -0
- package/dist/pages/my-sonic/actions/edit-bill-to-address/edit-bill-to-address.js +8 -0
- package/dist/pages/my-sonic/actions/edit-user-info/connected-edit-user-info-dialog.d.ts +5 -0
- package/dist/pages/my-sonic/actions/edit-user-info/connected-edit-user-info-dialog.js +56 -0
- package/dist/pages/my-sonic/actions/edit-user-info/edit-user-info-dialog.d.ts +10 -0
- package/dist/pages/my-sonic/actions/edit-user-info/edit-user-info-dialog.js +15 -0
- package/dist/pages/my-sonic/actions/edit-user-info/edit-user-info.d.ts +11 -0
- package/dist/pages/my-sonic/actions/edit-user-info/edit-user-info.js +29 -0
- package/dist/pages/my-sonic/actions/edit-user-info/edit-user-info.module.css.js +3 -0
- package/dist/pages/my-sonic/layouts/my-sonic-layout/my-sonic-layout-aside.d.ts +4 -0
- package/dist/pages/my-sonic/layouts/my-sonic-layout/my-sonic-layout-aside.js +9 -0
- package/dist/pages/my-sonic/layouts/my-sonic-layout/my-sonic-layout-main.d.ts +4 -0
- package/dist/pages/my-sonic/layouts/my-sonic-layout/my-sonic-layout-main.js +9 -0
- package/dist/pages/my-sonic/layouts/my-sonic-layout/my-sonic-layout-page.d.ts +5 -0
- package/dist/pages/my-sonic/layouts/my-sonic-layout/my-sonic-layout-page.js +10 -0
- package/dist/pages/my-sonic/layouts/my-sonic-layout/my-sonic-layout-pre-aside.d.ts +4 -0
- package/dist/pages/my-sonic/layouts/my-sonic-layout/my-sonic-layout-pre-aside.js +9 -0
- package/dist/pages/my-sonic/layouts/my-sonic-layout/my-sonic-layout-title.d.ts +4 -0
- package/dist/pages/my-sonic/layouts/my-sonic-layout/my-sonic-layout-title.js +10 -0
- package/dist/pages/my-sonic/layouts/my-sonic-layout/my-sonic-layout.d.ts +5 -0
- package/dist/pages/my-sonic/layouts/my-sonic-layout/my-sonic-layout.js +10 -0
- package/dist/pages/my-sonic/layouts/my-sonic-layout/my-sonic-layout.module.css.js +3 -0
- package/dist/pages/my-sonic/navigation/connected-my-sonic-navigation.js +3 -4
- package/dist/pages/my-sonic/navigation/connected-my-sonic-navigation.module.css.js +3 -0
- package/dist/pages/my-sonic/navigation/my-sonic-desktop-navigation.d.ts +2 -1
- package/dist/pages/my-sonic/navigation/my-sonic-desktop-navigation.js +2 -2
- package/dist/pages/my-sonic/navigation/my-sonic-mobile-navigation.d.ts +2 -1
- package/dist/pages/my-sonic/navigation/my-sonic-mobile-navigation.js +3 -3
- package/dist/pages/my-sonic/widgets/connected-customer-information-widget.js +3 -3
- package/dist/pages/my-sonic/widgets/connected-user-account-widget.js +16 -5
- package/dist/shared/api/shared/hooks/use-awaitable-mutation.d.ts +1 -0
- package/dist/shared/api/shared/hooks/use-awaitable-mutation.js +6 -0
- package/dist/shared/api/storefront/hooks/{authentication → account}/use-create-account.d.ts +1 -1
- package/dist/shared/api/storefront/hooks/{authentication → account}/use-create-account.js +3 -1
- package/dist/shared/api/storefront/hooks/{authentication → account}/use-create-guest-account.js +3 -1
- package/dist/shared/api/storefront/hooks/account/use-fetch-current-account.d.ts +3 -0
- package/dist/shared/api/storefront/hooks/account/use-fetch-current-account.js +13 -0
- package/dist/shared/api/storefront/hooks/account/use-patch-current-account.d.ts +11 -0
- package/dist/shared/api/storefront/hooks/account/use-patch-current-account.js +20 -0
- package/dist/shared/api/storefront/hooks/authentication/use-patch-session.d.ts +1 -0
- package/dist/shared/api/storefront/hooks/authentication/use-patch-session.js +1 -1
- package/dist/shared/api/storefront/hooks/cart/use-patch-cart.d.ts +1 -0
- package/dist/shared/api/storefront/hooks/cart/use-place-order.d.ts +1 -0
- package/dist/shared/api/storefront/hooks/customer/use-patch-bill-to-address.d.ts +1 -0
- package/dist/shared/api/storefront/services/account-service.d.ts +31 -0
- package/dist/shared/api/storefront/services/account-service.js +84 -0
- package/dist/shared/api/storefront/services/authentication-service.d.ts +7 -26
- package/dist/shared/api/storefront/services/authentication-service.js +38 -65
- package/dist/shared/data/countries-languages.data.js +4 -0
- package/dist/shared/model/address.d.ts +27 -12
- package/dist/shared/model/countries-languages.d.ts +1 -0
- package/dist/shared/utils/price.d.ts +1 -1
- package/dist/styles.css +751 -627
- package/package.json +1 -1
- package/dist/forms/checkbox/checkbox.module.css.js +0 -3
- package/dist/forms/checkbox-field/checkbox-field.module.css.js +0 -3
- package/dist/forms/field-error/field-error.module.css.js +0 -3
- package/dist/forms/form/form-field-layout.module.css.js +0 -3
- package/dist/forms/form/form-segment-group.module.css.js +0 -3
- package/dist/forms/form/form-segment.module.css.js +0 -3
- package/dist/forms/form/form.d.ts +0 -16
- package/dist/forms/form/form.module.css.js +0 -3
- package/dist/forms/input/input.module.css.js +0 -3
- package/dist/forms/label/label.module.css.js +0 -3
- package/dist/forms/number-field/number-field.module.css.js +0 -3
- package/dist/forms/select/select.module.css.js +0 -3
- package/dist/forms/select-field/select-field.module.css.js +0 -3
- package/dist/forms/switch/switch.module.css.js +0 -3
- package/dist/forms/switch-field/switch-field.module.css.js +0 -3
- package/dist/forms/text-field/text-field.module.css.js +0 -3
- package/dist/forms/textarea/textarea.module.css.js +0 -3
- package/dist/pages/checkout/shipping-page/components/edit-address-form.js +0 -68
- package/dist/pages/checkout/shipping-page/components/edit-address-form.module.css.js +0 -3
- /package/dist/forms/{checkbox → elements/checkbox}/checkbox.d.ts +0 -0
- /package/dist/forms/{checkbox → elements/checkbox}/checkbox.js +0 -0
- /package/dist/forms/{color-checkbox → elements/color-checkbox}/color-checkbox.d.ts +0 -0
- /package/dist/forms/{color-checkbox → elements/color-checkbox}/color-checkbox.js +0 -0
- /package/dist/forms/{field-error → elements/field-error}/field-error.d.ts +0 -0
- /package/dist/forms/{input → elements/input}/input.d.ts +0 -0
- /package/dist/forms/{input → elements/input}/input.js +0 -0
- /package/dist/forms/{label → elements/label}/label.d.ts +0 -0
- /package/dist/forms/{label → elements/label}/label.js +0 -0
- /package/dist/forms/{switch → elements/switch}/switch.d.ts +0 -0
- /package/dist/forms/{switch → elements/switch}/switch.js +0 -0
- /package/dist/forms/{textarea → elements/textarea}/textarea.d.ts +0 -0
- /package/dist/forms/{textarea → elements/textarea}/textarea.js +0 -0
- /package/dist/forms/{password-field → fields/password-field}/password-field.d.ts +0 -0
- /package/dist/forms/{password-field → fields/password-field}/password-field.js +0 -0
- /package/dist/forms/{search-field → fields/search-field}/search-field.d.ts +0 -0
- /package/dist/forms/{text-field → fields/text-field}/password-reveal-toggle/password-reveal-toggle.d.ts +0 -0
- /package/dist/forms/{form → layout/form}/form-field-layout.d.ts +0 -0
- /package/dist/forms/{form → layout/form}/form-field-layout.js +0 -0
- /package/dist/forms/{form → layout/form}/form-segment-group.d.ts +0 -0
- /package/dist/forms/{form → layout/form}/form-segment-group.js +0 -0
- /package/dist/forms/{form → layout/form}/form-segment.d.ts +0 -0
- /package/dist/forms/{form → layout/form}/form-segment.js +0 -0
- /package/dist/shared/api/storefront/hooks/{authentication → account}/use-create-guest-account.d.ts +0 -0
package/dist/styles.css
CHANGED
|
@@ -883,10 +883,17 @@ html {
|
|
|
883
883
|
min-height: 36px;
|
|
884
884
|
padding: 0 var(--space-16);
|
|
885
885
|
border-radius: var(--border-radius-20);
|
|
886
|
-
font-
|
|
887
|
-
|
|
886
|
+
font-size: var(--font-size-12);
|
|
887
|
+
font-style: italic;
|
|
888
|
+
text-transform: uppercase;
|
|
888
889
|
}
|
|
889
890
|
|
|
891
|
+
.button-module-Pbwz7:where(.button-module-fepAr) {
|
|
892
|
+
font-size: var(--font-size-16);
|
|
893
|
+
font-style: normal;
|
|
894
|
+
text-transform: none;
|
|
895
|
+
}
|
|
896
|
+
|
|
890
897
|
.button-module-GVTEW {
|
|
891
898
|
min-width: 52px;
|
|
892
899
|
min-height: 40px;
|
|
@@ -1054,22 +1061,22 @@ html {
|
|
|
1054
1061
|
gap: var(--space-4);
|
|
1055
1062
|
}
|
|
1056
1063
|
|
|
1057
|
-
.label-module-
|
|
1064
|
+
.label-module-iLPRx {
|
|
1058
1065
|
all: unset;
|
|
1059
1066
|
cursor: pointer;
|
|
1060
1067
|
font-weight: var(--font-weight-bold);
|
|
1061
1068
|
}
|
|
1062
1069
|
|
|
1063
|
-
.label-module-
|
|
1070
|
+
.label-module-iLPRx:has(+ div [data-disabled]) {
|
|
1064
1071
|
cursor: default;
|
|
1065
1072
|
}
|
|
1066
1073
|
|
|
1067
|
-
.label-module-
|
|
1074
|
+
.label-module-iLPRx :where(.label-module-8uUN-) {
|
|
1068
1075
|
color: var(--color-brand-red);
|
|
1069
1076
|
margin-inline-start: var(--space-4);
|
|
1070
1077
|
}
|
|
1071
1078
|
|
|
1072
|
-
.checkbox-module-
|
|
1079
|
+
.checkbox-module-QzsaZ {
|
|
1073
1080
|
--selected-color: var(--color-brand-red);
|
|
1074
1081
|
--selected-color-pressed: var(--color-brand-dark-red);
|
|
1075
1082
|
--disabled-color: var(--color-brand-dark-gray);
|
|
@@ -1086,7 +1093,7 @@ html {
|
|
|
1086
1093
|
forced-color-adjust: none;
|
|
1087
1094
|
}
|
|
1088
1095
|
|
|
1089
|
-
.checkbox-module-
|
|
1096
|
+
.checkbox-module-QzsaZ .checkbox-module-spG9E {
|
|
1090
1097
|
display: flex;
|
|
1091
1098
|
width: 16px;
|
|
1092
1099
|
height: 16px;
|
|
@@ -1100,7 +1107,7 @@ html {
|
|
|
1100
1107
|
transition: all 200ms;
|
|
1101
1108
|
}
|
|
1102
1109
|
|
|
1103
|
-
.checkbox-module-
|
|
1110
|
+
.checkbox-module-QzsaZ .checkbox-module-CQcmb {
|
|
1104
1111
|
aspect-ratio: 11/8;
|
|
1105
1112
|
fill: none;
|
|
1106
1113
|
inline-size: 10px;
|
|
@@ -1116,54 +1123,54 @@ html {
|
|
|
1116
1123
|
stroke-dashoffset 600ms;
|
|
1117
1124
|
}
|
|
1118
1125
|
|
|
1119
|
-
.checkbox-module-
|
|
1126
|
+
.checkbox-module-QzsaZ[data-disabled] {
|
|
1120
1127
|
cursor: default;
|
|
1121
1128
|
opacity: 0.4;
|
|
1122
1129
|
}
|
|
1123
1130
|
|
|
1124
|
-
.checkbox-module-
|
|
1131
|
+
.checkbox-module-QzsaZ[data-pressed] .checkbox-module-spG9E {
|
|
1125
1132
|
border-color: var(--color-brand-dark-gray);
|
|
1126
1133
|
}
|
|
1127
1134
|
|
|
1128
|
-
.checkbox-module-
|
|
1135
|
+
.checkbox-module-QzsaZ[data-focus-visible] .checkbox-module-spG9E {
|
|
1129
1136
|
box-shadow: var(--shadow-focus-outline-padded);
|
|
1130
1137
|
outline: 2px solid var(--color-brand-white);
|
|
1131
1138
|
outline-offset: 0;
|
|
1132
1139
|
}
|
|
1133
1140
|
|
|
1134
|
-
.checkbox-module-
|
|
1141
|
+
.checkbox-module-QzsaZ[data-selected] .checkbox-module-spG9E, .checkbox-module-QzsaZ[data-indeterminate] .checkbox-module-spG9E {
|
|
1135
1142
|
border-color: var(--selected-color);
|
|
1136
1143
|
background: var(--selected-color);
|
|
1137
1144
|
}
|
|
1138
1145
|
|
|
1139
|
-
.checkbox-module-
|
|
1146
|
+
.checkbox-module-QzsaZ[data-selected][data-pressed] .checkbox-module-spG9E, .checkbox-module-QzsaZ[data-indeterminate][data-pressed] .checkbox-module-spG9E {
|
|
1140
1147
|
border-color: var(--selected-color-pressed);
|
|
1141
1148
|
background: var(--selected-color-pressed);
|
|
1142
1149
|
}
|
|
1143
1150
|
|
|
1144
|
-
.checkbox-module-
|
|
1151
|
+
.checkbox-module-QzsaZ[data-selected] .checkbox-module-CQcmb, .checkbox-module-QzsaZ[data-indeterminate] .checkbox-module-CQcmb {
|
|
1145
1152
|
stroke-dashoffset: 44;
|
|
1146
1153
|
}
|
|
1147
1154
|
|
|
1148
|
-
.checkbox-module-
|
|
1155
|
+
.checkbox-module-QzsaZ[data-selected][data-disabled] .checkbox-module-spG9E, .checkbox-module-QzsaZ[data-indeterminate][data-disabled] .checkbox-module-spG9E {
|
|
1149
1156
|
border-color: transparent;
|
|
1150
1157
|
background: var(--disabled-color);
|
|
1151
1158
|
}
|
|
1152
1159
|
|
|
1153
|
-
.checkbox-module-
|
|
1160
|
+
.checkbox-module-QzsaZ[data-indeterminate] .checkbox-module-CQcmb {
|
|
1154
1161
|
fill: var(--checkmark-color);
|
|
1155
1162
|
stroke: none;
|
|
1156
1163
|
}
|
|
1157
1164
|
|
|
1158
1165
|
/* stylelint-disable-next-line no-descending-specificity */
|
|
1159
1166
|
|
|
1160
|
-
.checkbox-module-
|
|
1167
|
+
.checkbox-module-QzsaZ.checkbox-module-CRPMG .checkbox-module-spG9E {
|
|
1161
1168
|
border: none;
|
|
1162
1169
|
background: var(--selected-color);
|
|
1163
1170
|
transition: none;
|
|
1164
1171
|
}
|
|
1165
1172
|
|
|
1166
|
-
.checkbox-module-
|
|
1173
|
+
.checkbox-module-QzsaZ.checkbox-module-CRPMG[data-selected] .checkbox-module-spG9E, .checkbox-module-QzsaZ.checkbox-module-CRPMG[data-indeterminate] .checkbox-module-spG9E {
|
|
1167
1174
|
border: 1px solid var(--color-brand-red);
|
|
1168
1175
|
background: unset;
|
|
1169
1176
|
background-image:
|
|
@@ -1176,12 +1183,12 @@ html {
|
|
|
1176
1183
|
background-size: 10px 10px;
|
|
1177
1184
|
}
|
|
1178
1185
|
|
|
1179
|
-
.checkbox-module-
|
|
1186
|
+
.checkbox-module-QzsaZ.checkbox-module-CRPMG[data-disabled] {
|
|
1180
1187
|
cursor: default;
|
|
1181
1188
|
opacity: 0.4;
|
|
1182
1189
|
}
|
|
1183
1190
|
|
|
1184
|
-
.checkbox-module-
|
|
1191
|
+
.checkbox-module-QzsaZ .checkbox-module-bO3ou:not(:empty) {
|
|
1185
1192
|
font-weight: unset;
|
|
1186
1193
|
margin-inline-start: var(--space-8);
|
|
1187
1194
|
}
|
|
@@ -1315,55 +1322,14 @@ html {
|
|
|
1315
1322
|
color: var(--color-trigger-active);
|
|
1316
1323
|
}
|
|
1317
1324
|
|
|
1318
|
-
.field-error-module-
|
|
1325
|
+
.field-error-module-1wmEy {
|
|
1319
1326
|
color: var(--color-brand-red);
|
|
1320
1327
|
}
|
|
1321
1328
|
|
|
1322
|
-
.form-field-layout-module-ATB1W {
|
|
1323
|
-
display: grid;
|
|
1324
|
-
gap: 0;
|
|
1325
|
-
grid-template: repeat(3, min-content) / 1fr auto;
|
|
1326
|
-
grid-template-areas:
|
|
1327
|
-
'label .'
|
|
1328
|
-
'field info'
|
|
1329
|
-
'error .';
|
|
1330
|
-
}
|
|
1331
|
-
|
|
1332
|
-
.form-field-layout-module-ATB1W .form-field-layout-module-3tbc7 {
|
|
1333
|
-
display: grid;
|
|
1334
|
-
grid-area: label;
|
|
1335
|
-
}
|
|
1336
|
-
|
|
1337
|
-
.form-field-layout-module-ATB1W .form-field-layout-module-3tbc7:not(:empty) {
|
|
1338
|
-
margin-block-end: var(--space-4);
|
|
1339
|
-
}
|
|
1340
|
-
|
|
1341
|
-
.form-field-layout-module-ATB1W .form-field-layout-module-vT6Gy {
|
|
1342
|
-
display: grid;
|
|
1343
|
-
align-self: center;
|
|
1344
|
-
grid-area: field;
|
|
1345
|
-
}
|
|
1346
|
-
|
|
1347
|
-
.form-field-layout-module-ATB1W .form-field-layout-module-UcHO- {
|
|
1348
|
-
display: grid;
|
|
1349
|
-
align-self: center;
|
|
1350
|
-
grid-area: info;
|
|
1351
|
-
margin-inline-start: var(--space-4);
|
|
1352
|
-
}
|
|
1353
|
-
|
|
1354
|
-
.form-field-layout-module-ATB1W .form-field-layout-module-Pfatk {
|
|
1355
|
-
display: grid;
|
|
1356
|
-
grid-area: error;
|
|
1357
|
-
}
|
|
1358
|
-
|
|
1359
|
-
.form-field-layout-module-ATB1W .form-field-layout-module-Pfatk:not(:empty) {
|
|
1360
|
-
margin-block-start: var(--space-4);
|
|
1361
|
-
}
|
|
1362
|
-
|
|
1363
1329
|
/*************************************************************************
|
|
1364
1330
|
* Shared Text Field Styles
|
|
1365
1331
|
*************************************************************************/
|
|
1366
|
-
.input-module-
|
|
1332
|
+
.input-module-uAOUY {
|
|
1367
1333
|
position: relative;
|
|
1368
1334
|
display: inline-block;
|
|
1369
1335
|
overflow: hidden;
|
|
@@ -1371,21 +1337,21 @@ html {
|
|
|
1371
1337
|
border-radius: var(--border-radius-8);
|
|
1372
1338
|
background-color: var(--color-brand-light-gray);
|
|
1373
1339
|
}
|
|
1374
|
-
.input-module-
|
|
1340
|
+
.input-module-uAOUY.input-module-7IaPE {
|
|
1375
1341
|
background-color: var(--color-brand-light-gray);
|
|
1376
1342
|
}
|
|
1377
|
-
.input-module-
|
|
1343
|
+
.input-module-uAOUY.input-module-axHOD {
|
|
1378
1344
|
border: solid 1.5px var(--color-brand-medium-gray);
|
|
1379
1345
|
background-color: var(--color-brand-white);
|
|
1380
1346
|
}
|
|
1381
|
-
.input-module-
|
|
1347
|
+
.input-module-uAOUY::-moz-placeholder {
|
|
1382
1348
|
font-style: italic;
|
|
1383
1349
|
}
|
|
1384
|
-
.input-module-
|
|
1350
|
+
.input-module-uAOUY::placeholder {
|
|
1385
1351
|
font-style: italic;
|
|
1386
1352
|
}
|
|
1387
|
-
.input-module-
|
|
1388
|
-
.input-module-
|
|
1353
|
+
.input-module-uAOUY .input-module-2u4Pp,
|
|
1354
|
+
.input-module-uAOUY input {
|
|
1389
1355
|
all: unset;
|
|
1390
1356
|
width: 100%;
|
|
1391
1357
|
min-width: 180px;
|
|
@@ -1396,44 +1362,44 @@ html {
|
|
|
1396
1362
|
font: inherit;
|
|
1397
1363
|
font-size: inherit;
|
|
1398
1364
|
}
|
|
1399
|
-
.input-module-
|
|
1365
|
+
.input-module-uAOUY input[type='search']::-webkit-search-cancel-button {
|
|
1400
1366
|
display: none;
|
|
1401
1367
|
-webkit-appearance: none;
|
|
1402
1368
|
appearance: none;
|
|
1403
1369
|
}
|
|
1404
|
-
.input-module-
|
|
1370
|
+
.input-module-uAOUY .input-module-2u4Pp {
|
|
1405
1371
|
display: none;
|
|
1406
1372
|
pointer-events: none;
|
|
1407
1373
|
}
|
|
1408
|
-
.input-module-
|
|
1374
|
+
.input-module-uAOUY:where(.input-module-HFhUu) {
|
|
1409
1375
|
height: var(--space-44);
|
|
1410
1376
|
}
|
|
1411
|
-
.input-module-
|
|
1412
|
-
.input-module-
|
|
1377
|
+
.input-module-uAOUY:where(.input-module-HFhUu) .input-module-2u4Pp,
|
|
1378
|
+
.input-module-uAOUY:where(.input-module-HFhUu) input {
|
|
1413
1379
|
height: var(--space-44);
|
|
1414
1380
|
padding: 0 var(--space-16);
|
|
1415
1381
|
}
|
|
1416
|
-
.input-module-
|
|
1382
|
+
.input-module-uAOUY:where(.input-module-DRosR) {
|
|
1417
1383
|
height: var(--space-40);
|
|
1418
1384
|
}
|
|
1419
|
-
.input-module-
|
|
1420
|
-
.input-module-
|
|
1385
|
+
.input-module-uAOUY:where(.input-module-DRosR) .input-module-2u4Pp,
|
|
1386
|
+
.input-module-uAOUY:where(.input-module-DRosR) input {
|
|
1421
1387
|
height: var(--space-40);
|
|
1422
1388
|
padding: 0 var(--space-8);
|
|
1423
1389
|
}
|
|
1424
|
-
.input-module-
|
|
1390
|
+
.input-module-uAOUY:has([data-disabled]) {
|
|
1425
1391
|
/* TODO: Properly standarize disabled state of "fields" */
|
|
1426
1392
|
opacity: 0.4;
|
|
1427
1393
|
}
|
|
1428
|
-
.input-module-
|
|
1429
|
-
.input-module-
|
|
1394
|
+
.input-module-uAOUY.input-module-7iPV5,
|
|
1395
|
+
.input-module-uAOUY:has([data-focused]) {
|
|
1430
1396
|
box-shadow: var(--shadow-focus-outline);
|
|
1431
1397
|
outline: 0;
|
|
1432
1398
|
}
|
|
1433
|
-
.input-module-
|
|
1399
|
+
.input-module-uAOUY:has([data-invalid]) {
|
|
1434
1400
|
border-bottom-color: var(--color-brand-red);
|
|
1435
1401
|
}
|
|
1436
|
-
.input-module-
|
|
1402
|
+
.input-module-uAOUY:has([data-invalid])::after {
|
|
1437
1403
|
position: absolute;
|
|
1438
1404
|
right: 0;
|
|
1439
1405
|
bottom: 0;
|
|
@@ -1444,77 +1410,118 @@ html {
|
|
|
1444
1410
|
content: '';
|
|
1445
1411
|
}
|
|
1446
1412
|
/* growing input field */
|
|
1447
|
-
.input-module-
|
|
1413
|
+
.input-module-uAOUY:has(.input-module-peOqs) {
|
|
1448
1414
|
justify-self: flex-start;
|
|
1449
1415
|
}
|
|
1450
|
-
.input-module-
|
|
1416
|
+
.input-module-uAOUY .input-module-peOqs {
|
|
1451
1417
|
display: inline-grid;
|
|
1452
1418
|
}
|
|
1453
|
-
.input-module-
|
|
1454
|
-
.input-module-
|
|
1419
|
+
.input-module-uAOUY .input-module-peOqs .input-module-2u4Pp,
|
|
1420
|
+
.input-module-uAOUY .input-module-peOqs input {
|
|
1455
1421
|
min-width: 2.35em;
|
|
1456
1422
|
grid-area: 1 / 1;
|
|
1457
1423
|
}
|
|
1458
|
-
.input-module-
|
|
1424
|
+
.input-module-uAOUY .input-module-peOqs input {
|
|
1459
1425
|
text-align: center;
|
|
1460
1426
|
}
|
|
1461
|
-
.input-module-
|
|
1427
|
+
.input-module-uAOUY .input-module-peOqs .input-module-2u4Pp {
|
|
1462
1428
|
display: block;
|
|
1463
1429
|
visibility: hidden;
|
|
1464
1430
|
white-space: nowrap;
|
|
1465
1431
|
}
|
|
1466
1432
|
/* account for inline element when growing */
|
|
1467
|
-
.input-module-
|
|
1433
|
+
.input-module-uAOUY .input-module-peOqs .input-module-Ai2f7 ~ .input-module-2u4Pp {
|
|
1468
1434
|
margin-right: var(--space-24);
|
|
1469
1435
|
}
|
|
1470
|
-
.input-module-
|
|
1436
|
+
.input-module-uAOUY .input-module-JdwaH {
|
|
1471
1437
|
display: inline-grid;
|
|
1472
1438
|
width: 100%;
|
|
1473
1439
|
align-items: center;
|
|
1474
1440
|
grid-template-columns: 1fr 0;
|
|
1475
1441
|
}
|
|
1476
|
-
.input-module-
|
|
1442
|
+
.input-module-uAOUY .input-module-JdwaH input:has(~ .input-module-Ai2f7) {
|
|
1477
1443
|
padding-right: var(--space-36);
|
|
1478
1444
|
margin-right: -20px;
|
|
1479
1445
|
}
|
|
1480
|
-
.input-module-
|
|
1446
|
+
.input-module-uAOUY .input-module-JdwaH .input-module-Ai2f7 {
|
|
1481
1447
|
display: inline-flex;
|
|
1482
1448
|
margin-left: calc(0px - var(--space-32));
|
|
1483
1449
|
color: var(--color-brand-dark-gray);
|
|
1484
1450
|
}
|
|
1485
1451
|
/* Don't show value-reveal button on empty password fields */
|
|
1486
|
-
.input-module-
|
|
1452
|
+
.input-module-uAOUY .input-module-JdwaH input[type='password'] {
|
|
1487
1453
|
/* TODO: overwriting forced Spire style, remove !important in the future */
|
|
1488
1454
|
font-family: 'Verdana', sans-serif !important;
|
|
1489
1455
|
font-size: inherit !important;
|
|
1490
1456
|
}
|
|
1491
|
-
.input-module-
|
|
1457
|
+
.input-module-uAOUY .input-module-JdwaH input[type='password'] ~ .input-module-Ai2f7 {
|
|
1492
1458
|
transition: all 0.2s ease;
|
|
1493
1459
|
}
|
|
1494
|
-
.input-module-
|
|
1460
|
+
.input-module-uAOUY .input-module-JdwaH input[type='password'][value=''] ~ .input-module-Ai2f7 {
|
|
1495
1461
|
opacity: 0;
|
|
1496
1462
|
visibility: hidden;
|
|
1497
1463
|
}
|
|
1498
|
-
.input-module-
|
|
1464
|
+
.input-module-uAOUY .input-module-JdwaH input[type='password']:not([value='']) ~ .input-module-Ai2f7 {
|
|
1499
1465
|
opacity: 1;
|
|
1500
1466
|
visibility: visible;
|
|
1501
1467
|
}
|
|
1502
|
-
.input-module-
|
|
1468
|
+
.input-module-uAOUY .input-module-JdwaH input[type='password']::-ms-reveal {
|
|
1503
1469
|
display: none;
|
|
1504
1470
|
}
|
|
1505
|
-
.input-module-
|
|
1471
|
+
.input-module-uAOUY .input-module-JdwaH input[type='password'] ~ .input-module-2u4Pp {
|
|
1506
1472
|
font-family: 'Verdana', sans-serif !important;
|
|
1507
1473
|
}
|
|
1508
1474
|
|
|
1509
|
-
.
|
|
1475
|
+
.form-field-layout-module-6lieX {
|
|
1476
|
+
display: grid;
|
|
1477
|
+
gap: 0;
|
|
1478
|
+
grid-template: repeat(3, min-content) / 1fr auto;
|
|
1479
|
+
grid-template-areas:
|
|
1480
|
+
'label .'
|
|
1481
|
+
'field info'
|
|
1482
|
+
'error .';
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1485
|
+
.form-field-layout-module-6lieX .form-field-layout-module-3CQx4 {
|
|
1486
|
+
display: grid;
|
|
1487
|
+
grid-area: label;
|
|
1488
|
+
}
|
|
1489
|
+
|
|
1490
|
+
.form-field-layout-module-6lieX .form-field-layout-module-3CQx4:not(:empty) {
|
|
1491
|
+
margin-block-end: var(--space-4);
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1494
|
+
.form-field-layout-module-6lieX .form-field-layout-module-0CMW- {
|
|
1495
|
+
display: grid;
|
|
1496
|
+
align-self: center;
|
|
1497
|
+
grid-area: field;
|
|
1498
|
+
}
|
|
1499
|
+
|
|
1500
|
+
.form-field-layout-module-6lieX .form-field-layout-module-RCuwU {
|
|
1501
|
+
display: grid;
|
|
1502
|
+
align-self: center;
|
|
1503
|
+
grid-area: info;
|
|
1504
|
+
margin-inline-start: var(--space-4);
|
|
1505
|
+
}
|
|
1506
|
+
|
|
1507
|
+
.form-field-layout-module-6lieX .form-field-layout-module-VHcQ- {
|
|
1508
|
+
display: grid;
|
|
1509
|
+
grid-area: error;
|
|
1510
|
+
}
|
|
1511
|
+
|
|
1512
|
+
.form-field-layout-module-6lieX .form-field-layout-module-VHcQ-:not(:empty) {
|
|
1513
|
+
margin-block-start: var(--space-4);
|
|
1514
|
+
}
|
|
1515
|
+
|
|
1516
|
+
.number-field-module-eFnKr .number-field-module-MAY-9 {
|
|
1510
1517
|
display: flex;
|
|
1511
1518
|
justify-content: space-between;
|
|
1512
1519
|
}
|
|
1513
1520
|
|
|
1514
|
-
.number-field-module-
|
|
1515
|
-
animation: number-field-module-
|
|
1521
|
+
.number-field-module-eFnKr .number-field-module-MAY-9:has(button[data-pressed]) [class*='growing-input'] input {
|
|
1522
|
+
animation: number-field-module-QbNfS 100ms;
|
|
1516
1523
|
}
|
|
1517
|
-
.number-field-module-
|
|
1524
|
+
.number-field-module-eFnKr .number-field-module-v1sB2 {
|
|
1518
1525
|
--btn-bgcolor: transparent;
|
|
1519
1526
|
|
|
1520
1527
|
all: unset;
|
|
@@ -1529,17 +1536,17 @@ html {
|
|
|
1529
1536
|
-moz-user-select: none;
|
|
1530
1537
|
user-select: none;
|
|
1531
1538
|
}
|
|
1532
|
-
.number-field-module-
|
|
1539
|
+
.number-field-module-eFnKr .number-field-module-v1sB2[data-hovered] {
|
|
1533
1540
|
--btn-bgcolor: var(--color-brand-light-gray);
|
|
1534
1541
|
}
|
|
1535
|
-
.number-field-module-
|
|
1542
|
+
.number-field-module-eFnKr .number-field-module-v1sB2[data-hovered][data-pressed] {
|
|
1536
1543
|
--btn-bgcolor: var(--color-brand-medium-gray);
|
|
1537
1544
|
}
|
|
1538
|
-
.number-field-module-
|
|
1545
|
+
.number-field-module-eFnKr .number-field-module-v1sB2[data-disabled] {
|
|
1539
1546
|
cursor: default;
|
|
1540
1547
|
opacity: 0.4;
|
|
1541
1548
|
}
|
|
1542
|
-
.number-field-module-
|
|
1549
|
+
.number-field-module-eFnKr .number-field-module-v1sB2:not([data-disabled])::before {
|
|
1543
1550
|
border-radius: 50%;
|
|
1544
1551
|
aspect-ratio: 1;
|
|
1545
1552
|
background-color: var(--btn-bgcolor);
|
|
@@ -1547,13 +1554,13 @@ html {
|
|
|
1547
1554
|
grid-area: button;
|
|
1548
1555
|
inline-size: 75%;
|
|
1549
1556
|
}
|
|
1550
|
-
.number-field-module-
|
|
1557
|
+
.number-field-module-eFnKr .number-field-module-v1sB2 svg {
|
|
1551
1558
|
width: 16px;
|
|
1552
1559
|
height: 16px;
|
|
1553
1560
|
grid-area: button;
|
|
1554
1561
|
}
|
|
1555
1562
|
|
|
1556
|
-
@keyframes number-field-module-
|
|
1563
|
+
@keyframes number-field-module-QbNfS {
|
|
1557
1564
|
0%,
|
|
1558
1565
|
100% {
|
|
1559
1566
|
transform: scale(1);
|
|
@@ -1585,7 +1592,7 @@ html {
|
|
|
1585
1592
|
height: 12px;
|
|
1586
1593
|
}
|
|
1587
1594
|
|
|
1588
|
-
.select-module-
|
|
1595
|
+
.select-module-IPU-m {
|
|
1589
1596
|
--trigger-width: initial;
|
|
1590
1597
|
--height: var(--space-44);
|
|
1591
1598
|
|
|
@@ -1598,15 +1605,15 @@ html {
|
|
|
1598
1605
|
gap: var(--space-4);
|
|
1599
1606
|
}
|
|
1600
1607
|
|
|
1601
|
-
.select-module-
|
|
1608
|
+
.select-module-IPU-m.select-module-ysEmc {
|
|
1602
1609
|
--height: var(--space-36);
|
|
1603
1610
|
}
|
|
1604
1611
|
|
|
1605
|
-
.select-module-
|
|
1612
|
+
.select-module-IPU-m.select-module-E62kG {
|
|
1606
1613
|
--height: var(--space-44);
|
|
1607
1614
|
}
|
|
1608
1615
|
|
|
1609
|
-
.select-module-
|
|
1616
|
+
.select-module-IPU-m .select-module-0kwVJ {
|
|
1610
1617
|
all: unset;
|
|
1611
1618
|
position: relative;
|
|
1612
1619
|
display: flex;
|
|
@@ -1623,7 +1630,7 @@ html {
|
|
|
1623
1630
|
outline: none;
|
|
1624
1631
|
}
|
|
1625
1632
|
|
|
1626
|
-
.select-module-
|
|
1633
|
+
.select-module-IPU-m .select-module-0kwVJ .select-module-ptK6Z > :first-child {
|
|
1627
1634
|
position: absolute;
|
|
1628
1635
|
display: block;
|
|
1629
1636
|
width: var(--space-12);
|
|
@@ -1634,27 +1641,27 @@ html {
|
|
|
1634
1641
|
margin-block: auto;
|
|
1635
1642
|
}
|
|
1636
1643
|
|
|
1637
|
-
.select-module-
|
|
1644
|
+
.select-module-IPU-m .select-module-0kwVJ [slot='description'] {
|
|
1638
1645
|
display: none;
|
|
1639
1646
|
}
|
|
1640
1647
|
|
|
1641
|
-
.select-module-
|
|
1642
|
-
.select-module-
|
|
1643
|
-
.select-module-
|
|
1648
|
+
.select-module-IPU-m .select-module-0kwVJ.select-module-cnFLz,
|
|
1649
|
+
.select-module-IPU-m .select-module-0kwVJ:focus,
|
|
1650
|
+
.select-module-IPU-m .select-module-0kwVJ:has([data-focused]) {
|
|
1644
1651
|
border-color: transparent;
|
|
1645
1652
|
box-shadow: var(--shadow-focus-outline);
|
|
1646
1653
|
outline: none;
|
|
1647
1654
|
}
|
|
1648
1655
|
|
|
1649
|
-
.select-module-
|
|
1656
|
+
.select-module-IPU-m .select-module-0kwVJ[disabled] {
|
|
1650
1657
|
opacity: 0.4;
|
|
1651
1658
|
}
|
|
1652
1659
|
|
|
1653
|
-
.select-module-
|
|
1660
|
+
.select-module-IPU-m[data-invalid] .select-module-0kwVJ {
|
|
1654
1661
|
border-bottom-color: var(--color-brand-red);
|
|
1655
1662
|
}
|
|
1656
1663
|
|
|
1657
|
-
.select-module-
|
|
1664
|
+
.select-module-IPU-m[data-invalid] .select-module-0kwVJ::after {
|
|
1658
1665
|
position: absolute;
|
|
1659
1666
|
right: 0;
|
|
1660
1667
|
bottom: 0;
|
|
@@ -1667,17 +1674,17 @@ html {
|
|
|
1667
1674
|
|
|
1668
1675
|
/* stylelint-disable-next-line no-descending-specificity */
|
|
1669
1676
|
|
|
1670
|
-
.select-module-
|
|
1677
|
+
.select-module-IPU-m:where(.select-module-Qq411) .select-module-0kwVJ {
|
|
1671
1678
|
border-color: var(--color-brand-light-gray);
|
|
1672
1679
|
background-color: var(--color-brand-light-gray);
|
|
1673
1680
|
}
|
|
1674
1681
|
|
|
1675
|
-
.select-module-
|
|
1682
|
+
.select-module-IPU-m:where(.select-module-KuyIv) {
|
|
1676
1683
|
cursor: default;
|
|
1677
1684
|
pointer-events: none;
|
|
1678
1685
|
}
|
|
1679
1686
|
|
|
1680
|
-
.select-module-
|
|
1687
|
+
.select-module-XFHrL {
|
|
1681
1688
|
overflow: auto;
|
|
1682
1689
|
width: var(--trigger-width);
|
|
1683
1690
|
min-width: -moz-fit-content;
|
|
@@ -1687,11 +1694,11 @@ html {
|
|
|
1687
1694
|
padding-block: var(--space-8);
|
|
1688
1695
|
}
|
|
1689
1696
|
|
|
1690
|
-
.select-module-
|
|
1697
|
+
.select-module-K6TjK {
|
|
1691
1698
|
outline: none;
|
|
1692
1699
|
}
|
|
1693
1700
|
|
|
1694
|
-
.select-module-
|
|
1701
|
+
.select-module-AUXLg {
|
|
1695
1702
|
padding: var(--space-8) var(--space-24);
|
|
1696
1703
|
color: var(--color-brand-dark-gray);
|
|
1697
1704
|
cursor: default;
|
|
@@ -1700,7 +1707,7 @@ html {
|
|
|
1700
1707
|
overflow-wrap: break-word;
|
|
1701
1708
|
}
|
|
1702
1709
|
|
|
1703
|
-
.select-module-
|
|
1710
|
+
.select-module-MkKKi {
|
|
1704
1711
|
position: relative;
|
|
1705
1712
|
padding: var(--space-8) var(--space-24);
|
|
1706
1713
|
cursor: pointer;
|
|
@@ -1709,7 +1716,7 @@ html {
|
|
|
1709
1716
|
overflow-wrap: break-word;
|
|
1710
1717
|
}
|
|
1711
1718
|
|
|
1712
|
-
.select-module-
|
|
1719
|
+
.select-module-MkKKi .select-module-N7nUk {
|
|
1713
1720
|
position: absolute;
|
|
1714
1721
|
width: var(--space-24);
|
|
1715
1722
|
height: var(--space-24);
|
|
@@ -1717,8 +1724,8 @@ html {
|
|
|
1717
1724
|
margin-block: auto;
|
|
1718
1725
|
}
|
|
1719
1726
|
|
|
1720
|
-
.select-module-
|
|
1721
|
-
.select-module-
|
|
1727
|
+
.select-module-MkKKi:hover,
|
|
1728
|
+
.select-module-MkKKi:focus {
|
|
1722
1729
|
background-color: var(--color-brand-red);
|
|
1723
1730
|
color: var(--color-white);
|
|
1724
1731
|
}
|
|
@@ -2019,6 +2026,71 @@ html {
|
|
|
2019
2026
|
line-height: 1;
|
|
2020
2027
|
}
|
|
2021
2028
|
|
|
2029
|
+
.message-module-N1e1t {
|
|
2030
|
+
--color: var(--color-brand-black);
|
|
2031
|
+
|
|
2032
|
+
display: grid;
|
|
2033
|
+
align-items: center;
|
|
2034
|
+
padding: var(--space-8);
|
|
2035
|
+
background: color-mix(in hsl, var(--color), transparent 88%);
|
|
2036
|
+
font-size: var(--font-size-base);
|
|
2037
|
+
grid-template-areas: 'icon body';
|
|
2038
|
+
grid-template-columns: minmax(0, min-content) 1fr;
|
|
2039
|
+
line-height: 1.25;
|
|
2040
|
+
}
|
|
2041
|
+
|
|
2042
|
+
.message-module-w2hsL {
|
|
2043
|
+
color: var(--color);
|
|
2044
|
+
grid-area: icon;
|
|
2045
|
+
margin-block: -3px;
|
|
2046
|
+
margin-inline-end: var(--space-8);
|
|
2047
|
+
}
|
|
2048
|
+
|
|
2049
|
+
.message-module-w2hsL svg {
|
|
2050
|
+
display: block;
|
|
2051
|
+
}
|
|
2052
|
+
|
|
2053
|
+
.message-module-Gi4uR {
|
|
2054
|
+
grid-area: body;
|
|
2055
|
+
text-wrap: pretty;
|
|
2056
|
+
}
|
|
2057
|
+
|
|
2058
|
+
/* variants */
|
|
2059
|
+
|
|
2060
|
+
.message-module-pp9U4 {
|
|
2061
|
+
background: var(--color-brand-light-gray);
|
|
2062
|
+
}
|
|
2063
|
+
|
|
2064
|
+
.message-module-srkp1 {
|
|
2065
|
+
--color: var(--color-semantic-information);
|
|
2066
|
+
}
|
|
2067
|
+
|
|
2068
|
+
.message-module-oeSdr {
|
|
2069
|
+
--color: var(--color-semantic-stop);
|
|
2070
|
+
}
|
|
2071
|
+
|
|
2072
|
+
.message-module-Vp0pA {
|
|
2073
|
+
--color: var(--color-semantic-okay);
|
|
2074
|
+
}
|
|
2075
|
+
|
|
2076
|
+
.message-module-kvANQ {
|
|
2077
|
+
--color: var(--color-semantic-notify);
|
|
2078
|
+
}
|
|
2079
|
+
|
|
2080
|
+
.form-module-j-sK- {
|
|
2081
|
+
display: grid;
|
|
2082
|
+
container-type: inline-size;
|
|
2083
|
+
gap: var(--space-16);
|
|
2084
|
+
min-inline-size: 270px;
|
|
2085
|
+
}
|
|
2086
|
+
|
|
2087
|
+
.form-module-j-sK- .form-module-FJZtR,
|
|
2088
|
+
.form-module-j-sK- .form-module-KjHjn,
|
|
2089
|
+
.form-module-j-sK- .form-module-2IhUq {
|
|
2090
|
+
display: grid;
|
|
2091
|
+
gap: var(--space-16);
|
|
2092
|
+
}
|
|
2093
|
+
|
|
2022
2094
|
.heading-module-pMC65 {
|
|
2023
2095
|
padding: 0;
|
|
2024
2096
|
margin: 0;
|
|
@@ -2476,42 +2548,35 @@ html {
|
|
|
2476
2548
|
}
|
|
2477
2549
|
}
|
|
2478
2550
|
|
|
2551
|
+
.dialog-module-uKVDu {
|
|
2552
|
+
max-width: min(403px, 90%);
|
|
2553
|
+
}
|
|
2554
|
+
|
|
2479
2555
|
.dialog-module-qKzgy {
|
|
2480
2556
|
position: relative;
|
|
2481
|
-
|
|
2557
|
+
min-width: 300px;
|
|
2482
2558
|
padding: var(--space-24);
|
|
2483
2559
|
padding-right: var(--space-32);
|
|
2484
2560
|
}
|
|
2485
2561
|
|
|
2486
|
-
|
|
2562
|
+
.dialog-module-qKzgy .dialog-module-5sZYV {
|
|
2563
|
+
container-type: unset;
|
|
2564
|
+
}
|
|
2565
|
+
|
|
2566
|
+
.dialog-module-qKzgy,
|
|
2487
2567
|
.dialog-module-qKzgy * {
|
|
2488
2568
|
box-sizing: border-box;
|
|
2489
2569
|
}
|
|
2490
2570
|
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
font-weight: var(--font-weight-bold);
|
|
2496
|
-
gap: 8px;
|
|
2497
|
-
line-height: 1;
|
|
2571
|
+
.dialog-module-qKzgy .dialog-module-Y7Tqg {
|
|
2572
|
+
position: absolute;
|
|
2573
|
+
top: -8px;
|
|
2574
|
+
right: -8px;
|
|
2498
2575
|
}
|
|
2499
2576
|
|
|
2500
|
-
|
|
2501
|
-
margin-bottom: var(--space-16);
|
|
2502
|
-
}
|
|
2503
|
-
|
|
2504
|
-
.dialog-module-qKzgy .dialog-module-ZnsAe .dialog-module-Y7Tqg {
|
|
2505
|
-
position: absolute;
|
|
2506
|
-
top: -8px;
|
|
2507
|
-
right: -8px;
|
|
2508
|
-
}
|
|
2509
|
-
|
|
2510
|
-
.dialog-module-qKzgy .dialog-module-y7Axm:not(:empty) {
|
|
2577
|
+
.dialog-module-qKzgy .dialog-module-y7Axm:not(:empty) {
|
|
2511
2578
|
display: flex;
|
|
2512
2579
|
flex-direction: column;
|
|
2513
|
-
margin-top: var(--space-32);
|
|
2514
|
-
margin-right: calc(-1 * var(--space-8));
|
|
2515
2580
|
gap: 8px;
|
|
2516
2581
|
}
|
|
2517
2582
|
|
|
@@ -2672,19 +2737,26 @@ html {
|
|
|
2672
2737
|
}
|
|
2673
2738
|
|
|
2674
2739
|
.data-card-module-OMXIh {
|
|
2740
|
+
display: grid;
|
|
2675
2741
|
container-type: inline-size;
|
|
2742
|
+
grid-template-areas:
|
|
2743
|
+
'title'
|
|
2744
|
+
'card';
|
|
2745
|
+
grid-template-rows: minmax(0, min-content) auto;
|
|
2676
2746
|
}
|
|
2677
2747
|
|
|
2678
2748
|
.data-card-module-DMbBO {
|
|
2679
|
-
|
|
2749
|
+
grid-area: title;
|
|
2750
|
+
margin-block-end: var(--space-12);
|
|
2680
2751
|
}
|
|
2681
2752
|
|
|
2682
2753
|
.data-card-module-24uin {
|
|
2683
2754
|
position: relative;
|
|
2755
|
+
display: grid;
|
|
2684
2756
|
border: 1px solid var(--color-brand-medium-gray);
|
|
2685
2757
|
border-radius: var(--border-radius-32);
|
|
2686
|
-
|
|
2687
|
-
min-block-size:
|
|
2758
|
+
grid-area: card;
|
|
2759
|
+
min-block-size: 85px;
|
|
2688
2760
|
min-inline-size: 250px;
|
|
2689
2761
|
}
|
|
2690
2762
|
|
|
@@ -2694,38 +2766,29 @@ html {
|
|
|
2694
2766
|
}
|
|
2695
2767
|
|
|
2696
2768
|
.data-card-module-24uin .data-card-module-j-RFT {
|
|
2697
|
-
position: absolute;
|
|
2698
2769
|
display: grid;
|
|
2770
|
+
padding: var(--space-16);
|
|
2699
2771
|
color: var(--color-brand-red);
|
|
2700
|
-
inset: 0;
|
|
2701
2772
|
place-content: center;
|
|
2702
2773
|
}
|
|
2703
2774
|
|
|
2704
2775
|
.data-card-module-24uin .data-card-module-d9zvu {
|
|
2705
|
-
position: absolute;
|
|
2706
2776
|
display: grid;
|
|
2707
|
-
inset: 0;
|
|
2708
2777
|
place-content: center;
|
|
2709
2778
|
}
|
|
2710
2779
|
|
|
2711
2780
|
.data-card-module-24uin .data-card-module-FVD44 {
|
|
2712
|
-
position: absolute;
|
|
2713
2781
|
display: grid;
|
|
2714
|
-
padding:
|
|
2715
|
-
inset: 0;
|
|
2782
|
+
padding: var(--space-16);
|
|
2716
2783
|
place-content: center;
|
|
2717
2784
|
}
|
|
2718
2785
|
|
|
2719
2786
|
.data-card-module-24uin .data-card-module-ZefqY {
|
|
2720
|
-
|
|
2721
|
-
|
|
2722
|
-
|
|
2723
|
-
|
|
2724
|
-
|
|
2725
|
-
.data-card-module-24uin .data-card-module-ZefqY {
|
|
2726
|
-
padding: var(--space-20) var(--space-16) var(--space-16)
|
|
2787
|
+
display: grid;
|
|
2788
|
+
align-items: start;
|
|
2789
|
+
padding: var(--space-16);
|
|
2790
|
+
grid-template-rows: 1fr min-content;
|
|
2727
2791
|
}
|
|
2728
|
-
}
|
|
2729
2792
|
|
|
2730
2793
|
.data-card-module-24uin .data-card-module-ZefqY.data-card-module-Fb4Cx {
|
|
2731
2794
|
visibility: hidden;
|
|
@@ -2733,6 +2796,7 @@ html {
|
|
|
2733
2796
|
|
|
2734
2797
|
.data-card-module-24uin .data-card-module-EDbE- {
|
|
2735
2798
|
display: grid;
|
|
2799
|
+
padding: var(--space-16);
|
|
2736
2800
|
margin: 0;
|
|
2737
2801
|
gap: var(--space-16);
|
|
2738
2802
|
grid-template-columns:
|
|
@@ -2744,21 +2808,20 @@ html {
|
|
|
2744
2808
|
@container (max-width: 314px) {
|
|
2745
2809
|
|
|
2746
2810
|
.data-card-module-24uin .data-card-module-EDbE- {
|
|
2811
|
+
padding: var(--space-8) 0 var(--space-16);
|
|
2747
2812
|
gap: 0;
|
|
2748
|
-
grid-template-areas: unset;
|
|
2749
2813
|
grid-template-columns: 1fr;
|
|
2750
2814
|
line-height: 1.5
|
|
2751
2815
|
}
|
|
2752
2816
|
}
|
|
2753
2817
|
|
|
2754
2818
|
.data-card-module-24uin .data-card-module-EDbE- .data-card-module-CjTal {
|
|
2755
|
-
display: block;
|
|
2756
2819
|
grid-column: span 2;
|
|
2757
2820
|
text-align: center;
|
|
2758
2821
|
}
|
|
2759
2822
|
|
|
2760
|
-
.data-card-module-24uin .data-card-module-EDbE- .data-card-module-QixKJ:not(:last-child) {
|
|
2761
|
-
margin-
|
|
2823
|
+
.data-card-module-24uin .data-card-module-EDbE- .data-card-module-QixKJ:not(:has(+ .data-card-module-fcSbu:last-child)) {
|
|
2824
|
+
margin-block-end: var(--space-8);
|
|
2762
2825
|
}
|
|
2763
2826
|
|
|
2764
2827
|
.data-card-module-24uin .data-card-module-EDbE- .data-card-module-FAgmN {
|
|
@@ -2777,25 +2840,17 @@ html {
|
|
|
2777
2840
|
.data-card-module-24uin .data-card-module-EDbE- .data-card-module-fcSbu {
|
|
2778
2841
|
margin: 0;
|
|
2779
2842
|
font-weight: var(--font-weight-normal);
|
|
2780
|
-
|
|
2781
|
-
/* grid-area: value; */
|
|
2782
2843
|
}
|
|
2783
2844
|
|
|
2784
2845
|
@container (max-width: 314px) {
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
margin-bottom: var(--space-8)
|
|
2788
|
-
}
|
|
2789
|
-
|
|
2790
|
-
.data-card-module-24uin .data-card-module-EDbE- .data-card-module-fcSbu:last-child {
|
|
2791
|
-
margin-bottom: 0;
|
|
2846
|
+
.data-card-module-24uin .data-card-module-EDbE- .data-card-module-fcSbu:not(:last-child) {
|
|
2847
|
+
margin-block-end: var(--space-8);
|
|
2792
2848
|
}
|
|
2793
2849
|
}
|
|
2794
2850
|
|
|
2795
2851
|
.data-card-module-24uin .data-card-module-Qv5iI {
|
|
2796
2852
|
display: flex;
|
|
2797
2853
|
justify-content: flex-end;
|
|
2798
|
-
margin-top: var(--space-16);
|
|
2799
2854
|
gap: var(--space-8);
|
|
2800
2855
|
}
|
|
2801
2856
|
|
|
@@ -3219,7 +3274,7 @@ html {
|
|
|
3219
3274
|
box-shadow ease 0.2s;
|
|
3220
3275
|
}
|
|
3221
3276
|
|
|
3222
|
-
@media (hover: hover) {
|
|
3277
|
+
@media (hover: hover) and (pointer: fine) {
|
|
3223
3278
|
.product-card-module-pLaiB:has(.product-card-module-CStNi[href]):hover {
|
|
3224
3279
|
box-shadow: var(--box-shadow);
|
|
3225
3280
|
scale: 1.04;
|
|
@@ -3477,9 +3532,11 @@ html {
|
|
|
3477
3532
|
.product-overview-grid-module-MlUVA:nth-child(2n)::after {
|
|
3478
3533
|
display: none;
|
|
3479
3534
|
}
|
|
3535
|
+
@media (pointer: fine) {
|
|
3480
3536
|
.product-overview-grid-module-MlUVA:has(> :hover)::after, .product-overview-grid-module-MlUVA:has(+ .product-overview-grid-module-MlUVA:hover)::after {
|
|
3481
|
-
|
|
3537
|
+
display: none
|
|
3482
3538
|
}
|
|
3539
|
+
}
|
|
3483
3540
|
}
|
|
3484
3541
|
|
|
3485
3542
|
@media (width >= 1440px) {
|
|
@@ -3492,9 +3549,11 @@ html {
|
|
|
3492
3549
|
.product-overview-grid-module-MlUVA:nth-child(3n)::after {
|
|
3493
3550
|
display: none;
|
|
3494
3551
|
}
|
|
3552
|
+
@media (pointer: fine) {
|
|
3495
3553
|
.product-overview-grid-module-MlUVA:has(> :hover)::after, .product-overview-grid-module-MlUVA:has(+ .product-overview-grid-module-MlUVA:hover)::after {
|
|
3496
|
-
|
|
3554
|
+
display: none
|
|
3497
3555
|
}
|
|
3556
|
+
}
|
|
3498
3557
|
}
|
|
3499
3558
|
|
|
3500
3559
|
/**
|
|
@@ -4508,7 +4567,7 @@ button.swiper-pagination-bullet {
|
|
|
4508
4567
|
margin: 0;
|
|
4509
4568
|
}
|
|
4510
4569
|
|
|
4511
|
-
.select-field-module-
|
|
4570
|
+
.select-field-module-T07fb {
|
|
4512
4571
|
--button-height: var(--space-44);
|
|
4513
4572
|
--button-gap: var(--space-8);
|
|
4514
4573
|
--button-border-color: var(--color-brand-medium-gray);
|
|
@@ -4518,22 +4577,22 @@ button.swiper-pagination-bullet {
|
|
|
4518
4577
|
position: relative;
|
|
4519
4578
|
}
|
|
4520
4579
|
|
|
4521
|
-
.select-field-module-
|
|
4580
|
+
.select-field-module-T07fb:where(.select-field-module-x-dtL) {
|
|
4522
4581
|
--button-height: var(--space-36);
|
|
4523
4582
|
--button-gap: var(--space-4);
|
|
4524
4583
|
}
|
|
4525
4584
|
|
|
4526
|
-
.select-field-module-
|
|
4585
|
+
.select-field-module-T07fb:where(.select-field-module-jfk-G) {
|
|
4527
4586
|
--button-border-color: var(--color-brand-light-gray);
|
|
4528
4587
|
--button-bg-color: var(--color-brand-light-gray);
|
|
4529
4588
|
}
|
|
4530
4589
|
|
|
4531
|
-
.select-field-module-
|
|
4590
|
+
.select-field-module-T07fb:where(.select-field-module-NyDa0) {
|
|
4532
4591
|
cursor: default;
|
|
4533
4592
|
pointer-events: none;
|
|
4534
4593
|
}
|
|
4535
4594
|
|
|
4536
|
-
.select-field-module-
|
|
4595
|
+
.select-field-module-T07fb .select-field-module-uGX30 {
|
|
4537
4596
|
all: unset;
|
|
4538
4597
|
position: relative;
|
|
4539
4598
|
display: grid;
|
|
@@ -4551,40 +4610,40 @@ button.swiper-pagination-bullet {
|
|
|
4551
4610
|
padding-inline: 16px 8px;
|
|
4552
4611
|
}
|
|
4553
4612
|
|
|
4554
|
-
.select-field-module-
|
|
4613
|
+
.select-field-module-T07fb .select-field-module-uGX30 [slot='description'] {
|
|
4555
4614
|
display: none;
|
|
4556
4615
|
}
|
|
4557
4616
|
|
|
4558
|
-
.select-field-module-
|
|
4559
|
-
.select-field-module-
|
|
4617
|
+
.select-field-module-T07fb .select-field-module-uGX30[data-focused],
|
|
4618
|
+
.select-field-module-T07fb .select-field-module-uGX30[data-pressed] {
|
|
4560
4619
|
border-color: transparent;
|
|
4561
4620
|
box-shadow: var(--shadow-focus-outline);
|
|
4562
4621
|
outline: none;
|
|
4563
4622
|
}
|
|
4564
4623
|
|
|
4565
|
-
.select-field-module-
|
|
4624
|
+
.select-field-module-T07fb .select-field-module-uGX30[disabled] {
|
|
4566
4625
|
opacity: 0.4;
|
|
4567
4626
|
}
|
|
4568
4627
|
|
|
4569
|
-
.select-field-module-
|
|
4628
|
+
.select-field-module-T07fb .select-field-module-uGX30 .select-field-module-z-6Ym {
|
|
4570
4629
|
overflow: hidden;
|
|
4571
4630
|
grid-area: value;
|
|
4572
4631
|
text-overflow: ellipsis;
|
|
4573
4632
|
white-space: nowrap;
|
|
4574
4633
|
}
|
|
4575
4634
|
|
|
4576
|
-
.select-field-module-
|
|
4635
|
+
.select-field-module-T07fb .select-field-module-uGX30 .select-field-module-Njvvb {
|
|
4577
4636
|
block-size: 12px;
|
|
4578
4637
|
grid-area: icon;
|
|
4579
4638
|
inline-size: 12px;
|
|
4580
4639
|
justify-self: center;
|
|
4581
4640
|
}
|
|
4582
4641
|
|
|
4583
|
-
.select-field-module-
|
|
4642
|
+
.select-field-module-T07fb[data-invalid] .select-field-module-uGX30 {
|
|
4584
4643
|
border-bottom-color: var(--color-brand-red);
|
|
4585
4644
|
}
|
|
4586
4645
|
|
|
4587
|
-
.select-field-module-
|
|
4646
|
+
.select-field-module-T07fb[data-invalid] .select-field-module-uGX30::after {
|
|
4588
4647
|
position: absolute;
|
|
4589
4648
|
background-color: var(--color-brand-red);
|
|
4590
4649
|
block-size: 1px;
|
|
@@ -4592,7 +4651,7 @@ button.swiper-pagination-bullet {
|
|
|
4592
4651
|
inset: auto 0 0;
|
|
4593
4652
|
}
|
|
4594
4653
|
|
|
4595
|
-
.select-field-module
|
|
4654
|
+
.select-field-module-tbhPg {
|
|
4596
4655
|
overflow: auto;
|
|
4597
4656
|
background-color: var(--color-white);
|
|
4598
4657
|
box-shadow: var(--box-shadow-light);
|
|
@@ -4603,16 +4662,16 @@ button.swiper-pagination-bullet {
|
|
|
4603
4662
|
transition: opacity 0.2s;
|
|
4604
4663
|
}
|
|
4605
4664
|
|
|
4606
|
-
.select-field-module
|
|
4607
|
-
.select-field-module
|
|
4665
|
+
.select-field-module-tbhPg[data-entering],
|
|
4666
|
+
.select-field-module-tbhPg[data-exiting] {
|
|
4608
4667
|
opacity: 0;
|
|
4609
4668
|
}
|
|
4610
4669
|
|
|
4611
|
-
.select-field-module
|
|
4670
|
+
.select-field-module-tbhPg .select-field-module-Rwf0R {
|
|
4612
4671
|
outline: none;
|
|
4613
4672
|
}
|
|
4614
4673
|
|
|
4615
|
-
.select-field-module
|
|
4674
|
+
.select-field-module-tbhPg .select-field-module-KDZmc {
|
|
4616
4675
|
display: grid;
|
|
4617
4676
|
align-items: center;
|
|
4618
4677
|
color: var(--color-brand-dark-gray);
|
|
@@ -4625,7 +4684,7 @@ button.swiper-pagination-bullet {
|
|
|
4625
4684
|
padding-inline: calc(var(--space-24) + var(--space-2) + var(--space-4));
|
|
4626
4685
|
}
|
|
4627
4686
|
|
|
4628
|
-
.select-field-module
|
|
4687
|
+
.select-field-module-tbhPg .select-field-module-u3hoe {
|
|
4629
4688
|
display: grid;
|
|
4630
4689
|
align-items: center;
|
|
4631
4690
|
padding: var(--space-4);
|
|
@@ -4640,18 +4699,18 @@ button.swiper-pagination-bullet {
|
|
|
4640
4699
|
overflow-wrap: break-word;
|
|
4641
4700
|
}
|
|
4642
4701
|
|
|
4643
|
-
.select-field-module
|
|
4702
|
+
.select-field-module-tbhPg .select-field-module-u3hoe [slot='description'] {
|
|
4644
4703
|
display: grid;
|
|
4645
4704
|
grid-area: icon;
|
|
4646
4705
|
justify-self: center;
|
|
4647
4706
|
}
|
|
4648
4707
|
|
|
4649
|
-
.select-field-module
|
|
4708
|
+
.select-field-module-tbhPg .select-field-module-u3hoe [slot='label'] {
|
|
4650
4709
|
grid-area: label;
|
|
4651
4710
|
}
|
|
4652
4711
|
|
|
4653
|
-
.select-field-module
|
|
4654
|
-
.select-field-module
|
|
4712
|
+
.select-field-module-tbhPg .select-field-module-u3hoe[data-hovered],
|
|
4713
|
+
.select-field-module-tbhPg .select-field-module-u3hoe[data-focused] {
|
|
4655
4714
|
background-color: var(--color-brand-red);
|
|
4656
4715
|
color: var(--color-white);
|
|
4657
4716
|
}
|
|
@@ -4917,76 +4976,195 @@ button.swiper-pagination-bullet {
|
|
|
4917
4976
|
}
|
|
4918
4977
|
}
|
|
4919
4978
|
|
|
4920
|
-
.
|
|
4921
|
-
|
|
4979
|
+
.switch-module-C7eqt {
|
|
4980
|
+
--pin-color: var(--color-white);
|
|
4981
|
+
--box-color: var(--color-brand-light-gray);
|
|
4982
|
+
--box-color-pressed: var(--color-brand-medium-gray);
|
|
4983
|
+
--selected-box-color: var(--color-brand-red);
|
|
4984
|
+
--selected-box-color-pressed: var(--color-brand-dark-red);
|
|
4985
|
+
--disabled-box-color: var(--color-brand-medium-gray);
|
|
4986
|
+
--disabled-selected-box-color: var(--color-brand-dark-gray);
|
|
4987
|
+
|
|
4988
|
+
display: flex;
|
|
4989
|
+
align-items: baseline;
|
|
4990
|
+
color: var(--color-brand-black);
|
|
4991
|
+
cursor: pointer;
|
|
4992
|
+
font-size: var(--font-size-14);
|
|
4993
|
+
forced-color-adjust: none;
|
|
4922
4994
|
}
|
|
4923
4995
|
|
|
4924
|
-
.
|
|
4925
|
-
|
|
4996
|
+
.switch-module-C7eqt .switch-module-UZop9 {
|
|
4997
|
+
width: 44px;
|
|
4998
|
+
height: 24px;
|
|
4999
|
+
box-sizing: border-box;
|
|
5000
|
+
flex-shrink: 0;
|
|
5001
|
+
border-radius: 12px;
|
|
5002
|
+
background: var(--box-color);
|
|
5003
|
+
margin-block: -0.5em 0.5em;
|
|
5004
|
+
transition-duration: 200ms;
|
|
5005
|
+
transition-property: background;
|
|
5006
|
+
translate: 0 0.5em;
|
|
5007
|
+
}
|
|
4926
5008
|
|
|
4927
|
-
|
|
4928
|
-
|
|
4929
|
-
|
|
4930
|
-
|
|
4931
|
-
|
|
4932
|
-
|
|
4933
|
-
|
|
4934
|
-
|
|
4935
|
-
|
|
5009
|
+
.switch-module-C7eqt .switch-module-UZop9::before {
|
|
5010
|
+
display: block;
|
|
5011
|
+
width: 20px;
|
|
5012
|
+
height: 20px;
|
|
5013
|
+
box-sizing: border-box;
|
|
5014
|
+
border: solid 0.5px rgb(0 0 0 / 4%);
|
|
5015
|
+
border-radius: 50%;
|
|
5016
|
+
margin: var(--space-2);
|
|
5017
|
+
background: var(--pin-color);
|
|
5018
|
+
box-shadow:
|
|
5019
|
+
0 3px 1px 0 rgb(0 0 0 / 6%),
|
|
5020
|
+
0 3px 8px 0 rgb(0 0 0 / 15%);
|
|
5021
|
+
content: '';
|
|
5022
|
+
transition: all 200ms;
|
|
5023
|
+
}
|
|
4936
5024
|
|
|
4937
|
-
.
|
|
4938
|
-
|
|
4939
|
-
|
|
4940
|
-
margin-block: -3px;
|
|
4941
|
-
margin-inline-end: var(--space-8);
|
|
4942
|
-
}
|
|
5025
|
+
.switch-module-C7eqt[data-pressed] .switch-module-UZop9 {
|
|
5026
|
+
background: var(--box-color-pressed);
|
|
5027
|
+
}
|
|
4943
5028
|
|
|
4944
|
-
.
|
|
4945
|
-
|
|
5029
|
+
.switch-module-C7eqt[data-disabled] {
|
|
5030
|
+
cursor: default;
|
|
5031
|
+
opacity: 0.4;
|
|
4946
5032
|
}
|
|
4947
5033
|
|
|
4948
|
-
.
|
|
4949
|
-
|
|
4950
|
-
|
|
4951
|
-
}
|
|
5034
|
+
.switch-module-C7eqt[data-disabled] .switch-module-UZop9 {
|
|
5035
|
+
background: var(--disabled-box-color);
|
|
5036
|
+
}
|
|
4952
5037
|
|
|
4953
|
-
|
|
5038
|
+
.switch-module-C7eqt[data-disabled] .switch-module-UZop9::before {
|
|
5039
|
+
box-shadow: none;
|
|
5040
|
+
opacity: 0.4;
|
|
5041
|
+
}
|
|
4954
5042
|
|
|
4955
|
-
.
|
|
4956
|
-
|
|
4957
|
-
|
|
5043
|
+
.switch-module-C7eqt[data-focus-visible] .switch-module-UZop9 {
|
|
5044
|
+
box-shadow: var(--shadow-focus-outline-padded);
|
|
5045
|
+
outline: 2px solid var(--color-brand-white);
|
|
5046
|
+
outline-offset: 0;
|
|
5047
|
+
}
|
|
4958
5048
|
|
|
4959
|
-
.
|
|
4960
|
-
|
|
4961
|
-
}
|
|
5049
|
+
.switch-module-C7eqt[data-selected] .switch-module-UZop9 {
|
|
5050
|
+
background: var(--selected-box-color);
|
|
5051
|
+
}
|
|
4962
5052
|
|
|
4963
|
-
.
|
|
4964
|
-
|
|
4965
|
-
}
|
|
5053
|
+
.switch-module-C7eqt[data-selected] .switch-module-UZop9::before {
|
|
5054
|
+
transform: translateX(100%);
|
|
5055
|
+
}
|
|
4966
5056
|
|
|
4967
|
-
.
|
|
4968
|
-
|
|
5057
|
+
.switch-module-C7eqt[data-selected][data-pressed] .switch-module-UZop9 {
|
|
5058
|
+
background: var(--selected-box-color-pressed);
|
|
5059
|
+
}
|
|
5060
|
+
|
|
5061
|
+
.switch-module-C7eqt[data-selected][data-disabled] .switch-module-UZop9 {
|
|
5062
|
+
background: var(--disabled-selected-box-color);
|
|
5063
|
+
}
|
|
5064
|
+
|
|
5065
|
+
.switch-module-C7eqt .switch-module-rX09b:not(:empty) {
|
|
5066
|
+
font-weight: unset;
|
|
5067
|
+
margin-inline-start: var(--space-8);
|
|
5068
|
+
}
|
|
5069
|
+
|
|
5070
|
+
.textarea-module-FEAEz {
|
|
5071
|
+
position: relative;
|
|
5072
|
+
display: inline-block;
|
|
5073
|
+
overflow: hidden;
|
|
5074
|
+
border: none;
|
|
5075
|
+
border-radius: var(--border-radius-8);
|
|
4969
5076
|
}
|
|
4970
5077
|
|
|
4971
|
-
.
|
|
4972
|
-
|
|
5078
|
+
.textarea-module-FEAEz.textarea-module-hHg5e {
|
|
5079
|
+
background-color: var(--color-brand-light-gray);
|
|
5080
|
+
}
|
|
5081
|
+
|
|
5082
|
+
.textarea-module-FEAEz.textarea-module-CEbPl {
|
|
5083
|
+
border: solid 1.5px var(--color-brand-medium-gray);
|
|
5084
|
+
background-color: var(--color-brand-white);
|
|
5085
|
+
}
|
|
5086
|
+
|
|
5087
|
+
.textarea-module-FEAEz:has([data-disabled]) {
|
|
5088
|
+
opacity: 0.4;
|
|
5089
|
+
}
|
|
5090
|
+
|
|
5091
|
+
.textarea-module-FEAEz:has([data-focused]) {
|
|
5092
|
+
box-shadow: 0 0 8px 2px var(--color-brand-red);
|
|
5093
|
+
outline: 0;
|
|
5094
|
+
}
|
|
5095
|
+
|
|
5096
|
+
.textarea-module-FEAEz:has([data-invalid])::after {
|
|
5097
|
+
position: absolute;
|
|
5098
|
+
right: 0;
|
|
5099
|
+
bottom: 0;
|
|
5100
|
+
left: 0;
|
|
5101
|
+
display: block;
|
|
5102
|
+
height: 2px;
|
|
5103
|
+
background-color: var(--color-brand-red);
|
|
5104
|
+
content: '';
|
|
5105
|
+
}
|
|
5106
|
+
|
|
5107
|
+
.textarea-module-FEAEz textarea {
|
|
5108
|
+
all: unset;
|
|
5109
|
+
width: 100%;
|
|
5110
|
+
box-sizing: border-box;
|
|
5111
|
+
padding: 13px var(--space-16);
|
|
5112
|
+
font: inherit;
|
|
5113
|
+
overflow-y: hidden;
|
|
5114
|
+
}
|
|
5115
|
+
|
|
5116
|
+
.textarea-module-FEAEz.textarea-module-PKIWL textarea,
|
|
5117
|
+
.textarea-module-FEAEz.textarea-module-PKIWL .textarea-module-FEAEz {
|
|
5118
|
+
min-height: var(--space-44);
|
|
5119
|
+
}
|
|
5120
|
+
|
|
5121
|
+
.textarea-module-FEAEz.textarea-module-PKIWL textarea {
|
|
5122
|
+
padding: var(--space-16);
|
|
5123
|
+
}
|
|
5124
|
+
|
|
5125
|
+
.textarea-module-FEAEz.textarea-module-27RUM textarea,
|
|
5126
|
+
.textarea-module-FEAEz.textarea-module-27RUM .textarea-module-FEAEz {
|
|
5127
|
+
min-height: var(--space-40);
|
|
5128
|
+
}
|
|
5129
|
+
|
|
5130
|
+
.textarea-module-FEAEz.textarea-module-27RUM textarea {
|
|
5131
|
+
padding: 11px var(--space-8);
|
|
5132
|
+
}
|
|
5133
|
+
|
|
5134
|
+
.checkbox-field-module-cjj4V {
|
|
5135
|
+
justify-self: flex-start;
|
|
4973
5136
|
}
|
|
4974
5137
|
|
|
4975
|
-
.
|
|
4976
|
-
display:
|
|
4977
|
-
|
|
4978
|
-
|
|
4979
|
-
min-inline-size: 270px;
|
|
5138
|
+
.password-reveal-toggle-module-cW16B {
|
|
5139
|
+
display: inline-flex;
|
|
5140
|
+
color: var(--color-brand-medium-gray);
|
|
5141
|
+
cursor: pointer;
|
|
4980
5142
|
}
|
|
4981
5143
|
|
|
4982
|
-
.
|
|
4983
|
-
.
|
|
4984
|
-
|
|
4985
|
-
display: grid;
|
|
4986
|
-
gap: var(--space-16);
|
|
5144
|
+
.password-reveal-toggle-module-cW16B[data-hovered],
|
|
5145
|
+
.password-reveal-toggle-module-cW16B[data-focused] {
|
|
5146
|
+
color: var(--color-brand-dark-gray);
|
|
4987
5147
|
}
|
|
4988
5148
|
|
|
4989
|
-
.
|
|
5149
|
+
.password-reveal-toggle-module-cW16B input {
|
|
5150
|
+
block-size: 0;
|
|
5151
|
+
inline-size: 0;
|
|
5152
|
+
}
|
|
5153
|
+
|
|
5154
|
+
.password-reveal-toggle-module-cW16B span {
|
|
5155
|
+
block-size: var(--space-24);
|
|
5156
|
+
inline-size: var(--space-24);
|
|
5157
|
+
}
|
|
5158
|
+
|
|
5159
|
+
.text-field-module-TYL3X {
|
|
5160
|
+
/* styles */
|
|
5161
|
+
}
|
|
5162
|
+
|
|
5163
|
+
.switch-field-module-sVrKL {
|
|
5164
|
+
justify-self: flex-start;
|
|
5165
|
+
}
|
|
5166
|
+
|
|
5167
|
+
.form-segment-module-GbJZZ {
|
|
4990
5168
|
--tooltip-size: 24px;
|
|
4991
5169
|
--info-icon-offset: calc((var(--tooltip-size) + var(--space-4)) * -1);
|
|
4992
5170
|
--form-segment-toggle-columns: var(--form-segment-no-columns);
|
|
@@ -5012,13 +5190,13 @@ button.swiper-pagination-bullet {
|
|
|
5012
5190
|
grid-template-rows: subgrid;
|
|
5013
5191
|
} */
|
|
5014
5192
|
|
|
5015
|
-
.form-segment-module-
|
|
5193
|
+
.form-segment-module-GbJZZ.form-segment-module-60hj6 {
|
|
5016
5194
|
justify-self: flex-start;
|
|
5017
5195
|
}
|
|
5018
5196
|
|
|
5019
5197
|
/* when info icon is present inside TODO: use class name partial value instead of data */
|
|
5020
5198
|
|
|
5021
|
-
.form-segment-module-
|
|
5199
|
+
.form-segment-module-GbJZZ:has([class*='info-icon-tooltip']) {
|
|
5022
5200
|
margin-inline-end: var(--info-icon-offset);
|
|
5023
5201
|
|
|
5024
5202
|
/* TODO: for when we continue developing forms */
|
|
@@ -5054,222 +5232,59 @@ button.swiper-pagination-bullet {
|
|
|
5054
5232
|
} */
|
|
5055
5233
|
}
|
|
5056
5234
|
|
|
5057
|
-
.form-segment-group-module-
|
|
5235
|
+
.form-segment-group-module-810IM {
|
|
5058
5236
|
display: grid;
|
|
5059
5237
|
padding: 0;
|
|
5060
5238
|
border: 0;
|
|
5061
5239
|
margin: 0;
|
|
5062
5240
|
gap: var(--space-16);
|
|
5063
|
-
grid-template-rows: repeat(3, min-content);
|
|
5064
|
-
|
|
5065
|
-
/* TODO: when we continue developing forms, then start doing columns */
|
|
5066
5241
|
|
|
5067
|
-
/*
|
|
5068
|
-
|
|
5069
|
-
|
|
5070
|
-
}
|
|
5242
|
+
/* TODO: Unclear what the purpose of this is,
|
|
5243
|
+
* but it seems to be a placeholder for future development
|
|
5244
|
+
* Tested create account and sign-in with and without this, and it seems to work fine
|
|
5071
5245
|
|
|
5072
|
-
|
|
5073
|
-
grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
|
|
5246
|
+
grid-template-rows: repeat(3, min-content);
|
|
5074
5247
|
|
|
5075
|
-
|
|
5076
|
-
@container (min-inline-size: 1314px) {
|
|
5077
|
-
--minimum-width: calc((100% - 3 * var(--space-16)) / 4);
|
|
5248
|
+
*/
|
|
5078
5249
|
|
|
5079
|
-
|
|
5080
|
-
auto-fit,
|
|
5081
|
-
minmax(var(--minimum-width), 1fr)
|
|
5082
|
-
);
|
|
5083
|
-
}
|
|
5250
|
+
/* TODO: when we continue developing forms, then start doing columns
|
|
5084
5251
|
|
|
5085
5252
|
> [class*='form-segment'] {
|
|
5086
|
-
|
|
5087
|
-
|
|
5088
|
-
} */
|
|
5089
|
-
}
|
|
5090
|
-
|
|
5091
|
-
.password-reveal-toggle-module-bGH6I {
|
|
5092
|
-
display: inline-flex;
|
|
5093
|
-
color: var(--color-brand-medium-gray);
|
|
5094
|
-
cursor: pointer;
|
|
5095
|
-
}
|
|
5096
|
-
|
|
5097
|
-
.password-reveal-toggle-module-bGH6I[data-hovered],
|
|
5098
|
-
.password-reveal-toggle-module-bGH6I[data-focused] {
|
|
5099
|
-
color: var(--color-brand-dark-gray);
|
|
5100
|
-
}
|
|
5101
|
-
|
|
5102
|
-
.password-reveal-toggle-module-bGH6I input {
|
|
5103
|
-
block-size: 0;
|
|
5104
|
-
inline-size: 0;
|
|
5105
|
-
}
|
|
5106
|
-
|
|
5107
|
-
.password-reveal-toggle-module-bGH6I span {
|
|
5108
|
-
block-size: var(--space-24);
|
|
5109
|
-
inline-size: var(--space-24);
|
|
5110
|
-
}
|
|
5111
|
-
|
|
5112
|
-
.textarea-module-C6Xr1 {
|
|
5113
|
-
position: relative;
|
|
5114
|
-
display: inline-block;
|
|
5115
|
-
overflow: hidden;
|
|
5116
|
-
border: none;
|
|
5117
|
-
border-radius: var(--border-radius-8);
|
|
5118
|
-
}
|
|
5119
|
-
|
|
5120
|
-
.textarea-module-C6Xr1.textarea-module-NgOND {
|
|
5121
|
-
background-color: var(--color-brand-light-gray);
|
|
5122
|
-
}
|
|
5123
|
-
|
|
5124
|
-
.textarea-module-C6Xr1.textarea-module-Z-ytQ {
|
|
5125
|
-
border: solid 1.5px var(--color-brand-medium-gray);
|
|
5126
|
-
background-color: var(--color-brand-white);
|
|
5127
|
-
}
|
|
5128
|
-
|
|
5129
|
-
.textarea-module-C6Xr1:has([data-disabled]) {
|
|
5130
|
-
opacity: 0.4;
|
|
5131
|
-
}
|
|
5132
|
-
|
|
5133
|
-
.textarea-module-C6Xr1:has([data-focused]) {
|
|
5134
|
-
box-shadow: 0 0 8px 2px var(--color-brand-red);
|
|
5135
|
-
outline: 0;
|
|
5136
|
-
}
|
|
5137
|
-
|
|
5138
|
-
.textarea-module-C6Xr1:has([data-invalid])::after {
|
|
5139
|
-
position: absolute;
|
|
5140
|
-
right: 0;
|
|
5141
|
-
bottom: 0;
|
|
5142
|
-
left: 0;
|
|
5143
|
-
display: block;
|
|
5144
|
-
height: 2px;
|
|
5145
|
-
background-color: var(--color-brand-red);
|
|
5146
|
-
content: '';
|
|
5147
|
-
}
|
|
5148
|
-
|
|
5149
|
-
.textarea-module-C6Xr1 textarea {
|
|
5150
|
-
all: unset;
|
|
5151
|
-
width: 100%;
|
|
5152
|
-
box-sizing: border-box;
|
|
5153
|
-
padding: 13px var(--space-16);
|
|
5154
|
-
font: inherit;
|
|
5155
|
-
overflow-y: hidden;
|
|
5156
|
-
}
|
|
5157
|
-
|
|
5158
|
-
.textarea-module-C6Xr1.textarea-module-vksG- textarea,
|
|
5159
|
-
.textarea-module-C6Xr1.textarea-module-vksG- .textarea-module-C6Xr1 {
|
|
5160
|
-
min-height: var(--space-44);
|
|
5161
|
-
}
|
|
5162
|
-
|
|
5163
|
-
.textarea-module-C6Xr1.textarea-module-vksG- textarea {
|
|
5164
|
-
padding: var(--space-16);
|
|
5165
|
-
}
|
|
5166
|
-
|
|
5167
|
-
.textarea-module-C6Xr1.textarea-module-6JrQJ textarea,
|
|
5168
|
-
.textarea-module-C6Xr1.textarea-module-6JrQJ .textarea-module-C6Xr1 {
|
|
5169
|
-
min-height: var(--space-40);
|
|
5170
|
-
}
|
|
5171
|
-
|
|
5172
|
-
.textarea-module-C6Xr1.textarea-module-6JrQJ textarea {
|
|
5173
|
-
padding: 11px var(--space-8);
|
|
5174
|
-
}
|
|
5175
|
-
|
|
5176
|
-
.text-field-module-PBkCx {
|
|
5177
|
-
/* styles */
|
|
5178
|
-
}
|
|
5179
|
-
|
|
5180
|
-
.switch-module-ywpXc {
|
|
5181
|
-
--pin-color: var(--color-white);
|
|
5182
|
-
--box-color: var(--color-brand-light-gray);
|
|
5183
|
-
--box-color-pressed: var(--color-brand-medium-gray);
|
|
5184
|
-
--selected-box-color: var(--color-brand-red);
|
|
5185
|
-
--selected-box-color-pressed: var(--color-brand-dark-red);
|
|
5186
|
-
--disabled-box-color: var(--color-brand-medium-gray);
|
|
5187
|
-
--disabled-selected-box-color: var(--color-brand-dark-gray);
|
|
5188
|
-
|
|
5189
|
-
display: flex;
|
|
5190
|
-
align-items: baseline;
|
|
5191
|
-
color: var(--color-brand-black);
|
|
5192
|
-
cursor: pointer;
|
|
5193
|
-
font-size: var(--font-size-14);
|
|
5194
|
-
forced-color-adjust: none;
|
|
5195
|
-
}
|
|
5196
|
-
|
|
5197
|
-
.switch-module-ywpXc .switch-module-2e1rG {
|
|
5198
|
-
width: 44px;
|
|
5199
|
-
height: 24px;
|
|
5200
|
-
box-sizing: border-box;
|
|
5201
|
-
flex-shrink: 0;
|
|
5202
|
-
border-radius: 12px;
|
|
5203
|
-
background: var(--box-color);
|
|
5204
|
-
margin-block: -0.5em 0.5em;
|
|
5205
|
-
transition-duration: 200ms;
|
|
5206
|
-
transition-property: background;
|
|
5207
|
-
translate: 0 0.5em;
|
|
5208
|
-
}
|
|
5209
|
-
|
|
5210
|
-
.switch-module-ywpXc .switch-module-2e1rG::before {
|
|
5211
|
-
display: block;
|
|
5212
|
-
width: 20px;
|
|
5213
|
-
height: 20px;
|
|
5214
|
-
box-sizing: border-box;
|
|
5215
|
-
border: solid 0.5px rgb(0 0 0 / 4%);
|
|
5216
|
-
border-radius: 50%;
|
|
5217
|
-
margin: var(--space-2);
|
|
5218
|
-
background: var(--pin-color);
|
|
5219
|
-
box-shadow:
|
|
5220
|
-
0 3px 1px 0 rgb(0 0 0 / 6%),
|
|
5221
|
-
0 3px 8px 0 rgb(0 0 0 / 15%);
|
|
5222
|
-
content: '';
|
|
5223
|
-
transition: all 200ms;
|
|
5253
|
+
grid-row: span 3;
|
|
5254
|
+
grid-template-rows: subgrid;
|
|
5224
5255
|
}
|
|
5225
5256
|
|
|
5226
|
-
|
|
5227
|
-
|
|
5228
|
-
}
|
|
5257
|
+
&.columns {
|
|
5258
|
+
grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
|
|
5229
5259
|
|
|
5230
|
-
|
|
5231
|
-
|
|
5232
|
-
|
|
5233
|
-
}
|
|
5260
|
+
above 1314, where - with a minimum width of 250px and 16px gap - 5 columns would appear, we restrict it to max 4 columns
|
|
5261
|
+
@container (min-inline-size: 1314px) {
|
|
5262
|
+
--minimum-width: calc((100% - 3 * var(--space-16)) / 4);
|
|
5234
5263
|
|
|
5235
|
-
|
|
5236
|
-
|
|
5237
|
-
|
|
5238
|
-
|
|
5239
|
-
.switch-module-ywpXc[data-disabled] .switch-module-2e1rG::before {
|
|
5240
|
-
box-shadow: none;
|
|
5241
|
-
opacity: 0.4;
|
|
5264
|
+
grid-template-columns: repeat(
|
|
5265
|
+
auto-fit,
|
|
5266
|
+
minmax(var(--minimum-width), 1fr)
|
|
5267
|
+
);
|
|
5242
5268
|
}
|
|
5243
5269
|
|
|
5244
|
-
|
|
5245
|
-
|
|
5246
|
-
outline: 2px solid var(--color-brand-white);
|
|
5247
|
-
outline-offset: 0;
|
|
5248
|
-
}
|
|
5249
|
-
|
|
5250
|
-
.switch-module-ywpXc[data-selected] .switch-module-2e1rG {
|
|
5251
|
-
background: var(--selected-box-color);
|
|
5252
|
-
}
|
|
5253
|
-
|
|
5254
|
-
.switch-module-ywpXc[data-selected] .switch-module-2e1rG::before {
|
|
5255
|
-
transform: translateX(100%);
|
|
5270
|
+
> [class*='form-segment'] {
|
|
5271
|
+
--form-segment-toggle-columns: var(--form-segment-columns);
|
|
5256
5272
|
}
|
|
5257
|
-
|
|
5258
|
-
.switch-module-ywpXc[data-selected][data-pressed] .switch-module-2e1rG {
|
|
5259
|
-
background: var(--selected-box-color-pressed);
|
|
5260
5273
|
}
|
|
5274
|
+
*/
|
|
5275
|
+
}
|
|
5261
5276
|
|
|
5262
|
-
|
|
5263
|
-
|
|
5264
|
-
|
|
5277
|
+
.edit-address-form-module-HF64G {
|
|
5278
|
+
display: grid;
|
|
5279
|
+
}
|
|
5265
5280
|
|
|
5266
|
-
.
|
|
5267
|
-
|
|
5268
|
-
|
|
5281
|
+
@media (width >= 576px) {.edit-address-form-module-HF64G {
|
|
5282
|
+
grid-column: span 2
|
|
5283
|
+
}
|
|
5269
5284
|
}
|
|
5270
5285
|
|
|
5271
|
-
.
|
|
5272
|
-
|
|
5286
|
+
.edit-address-form-module-V-LOB {
|
|
5287
|
+
margin-block-start: var(--space-8);
|
|
5273
5288
|
}
|
|
5274
5289
|
|
|
5275
5290
|
.categories-grid-module-C751R {
|
|
@@ -6463,6 +6478,7 @@ button.swiper-pagination-bullet {
|
|
|
6463
6478
|
font-family: inherit;
|
|
6464
6479
|
font-size: var(--font-size-18);
|
|
6465
6480
|
font-weight: var(--font-weight-bold);
|
|
6481
|
+
gap: 0;
|
|
6466
6482
|
max-inline-size: var(--max-width);
|
|
6467
6483
|
text-decoration: none;
|
|
6468
6484
|
}
|
|
@@ -6609,6 +6625,21 @@ button.swiper-pagination-bullet {
|
|
|
6609
6625
|
border-top: 1px solid var(--color-brand-light-gray);
|
|
6610
6626
|
}
|
|
6611
6627
|
|
|
6628
|
+
.widget-grid-module-GdtqD {
|
|
6629
|
+
display: grid;
|
|
6630
|
+
container-type: inline-size;
|
|
6631
|
+
gap: 24px 18px;
|
|
6632
|
+
grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
|
|
6633
|
+
}
|
|
6634
|
+
|
|
6635
|
+
.widget-grid-module-GdtqD .widget-grid-module-y2wM2 {
|
|
6636
|
+
display: grid;
|
|
6637
|
+
}
|
|
6638
|
+
|
|
6639
|
+
.widget-grid-module-GdtqD .widget-grid-module-y2wM2.widget-grid-module-Pladu {
|
|
6640
|
+
grid-column: 1 / -1;
|
|
6641
|
+
}
|
|
6642
|
+
|
|
6612
6643
|
.blank-page-spacer-module-lXxle {
|
|
6613
6644
|
display: grid;
|
|
6614
6645
|
width: 100%;
|
|
@@ -6948,192 +6979,91 @@ button.swiper-pagination-bullet {
|
|
|
6948
6979
|
.announcement-module-Xi0L5 .announcement-module-4XVjD .announcement-module-1Jn7y .announcement-module--Bhqj::after {
|
|
6949
6980
|
position: absolute;
|
|
6950
6981
|
background: transparent;
|
|
6951
|
-
content: '';
|
|
6952
|
-
inset: 0;
|
|
6953
|
-
}
|
|
6954
|
-
|
|
6955
|
-
.announcement-module-Xi0L5 .announcement-module-4XVjD .announcement-module-gZ9ae {
|
|
6956
|
-
z-index: 1;
|
|
6957
|
-
grid-area: close;
|
|
6958
|
-
justify-self: center;
|
|
6959
|
-
}
|
|
6960
|
-
|
|
6961
|
-
.announcement-module-Xi0L5:where(.announcement-module-0LTWL) {
|
|
6962
|
-
--icon-color: var(--color-semantic-information);
|
|
6963
|
-
}
|
|
6964
|
-
|
|
6965
|
-
.announcement-module-Xi0L5:where(.announcement-module-Ga3lN) {
|
|
6966
|
-
--icon-color: var(--color-semantic-notify);
|
|
6967
|
-
}
|
|
6968
|
-
|
|
6969
|
-
.announcement-module-Xi0L5:where(.announcement-module-S3nSW) {
|
|
6970
|
-
--icon-color: var(--color-semantic-stop);
|
|
6971
|
-
}
|
|
6972
|
-
|
|
6973
|
-
.announcement-module-Xi0L5:where(.announcement-module-E6DqW) {
|
|
6974
|
-
--z: 2;
|
|
6975
|
-
--background-color: var(--color-brand-red);
|
|
6976
|
-
--text-color: var(--color-white);
|
|
6977
|
-
--icon-color: var(--color-white);
|
|
6978
|
-
--border-color: var(--color-white);
|
|
6979
|
-
}
|
|
6980
|
-
|
|
6981
|
-
.announcement-module-Xi0L5:where(.announcement-module-E6DqW):has([href]):hover {
|
|
6982
|
-
--background-color: var(--color-brand-dark-red);
|
|
6983
|
-
}
|
|
6984
|
-
|
|
6985
|
-
:root {
|
|
6986
|
-
--announcements-bottom: var(--announcements-height);
|
|
6987
|
-
}
|
|
6988
|
-
|
|
6989
|
-
.announcement-list-module-Nn6HC {
|
|
6990
|
-
position: relative;
|
|
6991
|
-
z-index: var(--announcements-layer);
|
|
6992
|
-
}
|
|
6993
|
-
|
|
6994
|
-
.announcement-list-module-Nn6HC.announcement-list-module-icXq8 {
|
|
6995
|
-
position: sticky;
|
|
6996
|
-
top: 0;
|
|
6997
|
-
}
|
|
6998
|
-
|
|
6999
|
-
.announcement-list-module-Nn6HC .announcement-list-module-cgFNU {
|
|
7000
|
-
display: flex;
|
|
7001
|
-
flex-direction: column;
|
|
7002
|
-
}
|
|
7003
|
-
|
|
7004
|
-
.announcement-list-module-Nn6HC .announcement-list-module-fUupi {
|
|
7005
|
-
margin-block: -1px;
|
|
7006
|
-
}
|
|
7007
|
-
|
|
7008
|
-
.announcement-list-module-Nn6HC .announcement-list-module-fUupi.announcement-list-module-W10mi,
|
|
7009
|
-
.announcement-list-module-Nn6HC .announcement-list-module-fUupi.announcement-list-module-tyqE0 {
|
|
7010
|
-
transition: all var(--transition-duration-short) linear;
|
|
7011
|
-
}
|
|
7012
|
-
|
|
7013
|
-
.announcement-list-module-Nn6HC .announcement-list-module-fUupi.announcement-list-module-W10mi,
|
|
7014
|
-
.announcement-list-module-Nn6HC .announcement-list-module-fUupi.announcement-list-module-tyqE0.announcement-list-module-dUOEB {
|
|
7015
|
-
z-index: -1;
|
|
7016
|
-
height: 0;
|
|
7017
|
-
}
|
|
7018
|
-
|
|
7019
|
-
.announcement-list-module-Nn6HC .announcement-list-module-fUupi.announcement-list-module-W10mi.announcement-list-module-1Rfn0,
|
|
7020
|
-
.announcement-list-module-Nn6HC .announcement-list-module-fUupi.announcement-list-module-tyqE0 {
|
|
7021
|
-
height: auto;
|
|
7022
|
-
}
|
|
7023
|
-
|
|
7024
|
-
.create-account-form-module-TMU8F {
|
|
7025
|
-
min-inline-size: 270px;
|
|
7026
|
-
}
|
|
7027
|
-
|
|
7028
|
-
.sign-in-form-module-BoJwR {
|
|
7029
|
-
min-inline-size: 270px;
|
|
7030
|
-
}
|
|
7031
|
-
|
|
7032
|
-
.sign-in-form-module-BoJwR .sign-in-form-module-PQ4Ik {
|
|
7033
|
-
margin-block: 0 var(--space-4);
|
|
7034
|
-
}
|
|
7035
|
-
|
|
7036
|
-
.page-container-module-eFYSe {
|
|
7037
|
-
--page-container-padding-inline: 10px;
|
|
7038
|
-
--page-container-padding-block: 10px;
|
|
7039
|
-
--page-container-max-layout-width: auto;
|
|
7040
|
-
--page-container-max-width: calc(
|
|
7041
|
-
var(--page-container-max-layout-width) + 2 *
|
|
7042
|
-
var(--page-container-padding-inline)
|
|
7043
|
-
);
|
|
7044
|
-
}
|
|
7045
|
-
|
|
7046
|
-
@media (width >= 768px) {.page-container-module-eFYSe {
|
|
7047
|
-
--page-container-padding-inline: 20px
|
|
7048
|
-
}
|
|
7049
|
-
}
|
|
7050
|
-
|
|
7051
|
-
.page-container-module-eFYSe {
|
|
7052
|
-
|
|
7053
|
-
display: grid;
|
|
7054
|
-
overflow: clip;
|
|
7055
|
-
grid-template: minmax(0, min-content) 1fr minmax(0, min-content) / 100%;
|
|
7056
|
-
grid-template-areas:
|
|
7057
|
-
'page-header'
|
|
7058
|
-
'page-main'
|
|
7059
|
-
'page-footer';
|
|
7060
|
-
}
|
|
7061
|
-
|
|
7062
|
-
/* main area, between page header and footer */
|
|
7063
|
-
|
|
7064
|
-
.page-container-module-eFYSe .page-container-module-JkoQY {
|
|
7065
|
-
display: grid;
|
|
7066
|
-
box-sizing: border-box;
|
|
7067
|
-
margin: 0 auto;
|
|
7068
|
-
grid-area: page-main;
|
|
7069
|
-
grid-template: minmax(0, max-content) minmax(0, max-content) 1fr / 100%;
|
|
7070
|
-
grid-template-areas:
|
|
7071
|
-
'breadcrumbs'
|
|
7072
|
-
'title'
|
|
7073
|
-
'content';
|
|
7074
|
-
inline-size: 100%;
|
|
7075
|
-
max-inline-size: var(--page-container-max-width);
|
|
7076
|
-
padding-inline: var(--page-container-padding-inline);
|
|
7077
|
-
}
|
|
6982
|
+
content: '';
|
|
6983
|
+
inset: 0;
|
|
6984
|
+
}
|
|
7078
6985
|
|
|
7079
|
-
.
|
|
7080
|
-
|
|
6986
|
+
.announcement-module-Xi0L5 .announcement-module-4XVjD .announcement-module-gZ9ae {
|
|
6987
|
+
z-index: 1;
|
|
6988
|
+
grid-area: close;
|
|
6989
|
+
justify-self: center;
|
|
7081
6990
|
}
|
|
7082
6991
|
|
|
7083
|
-
|
|
7084
|
-
|
|
7085
|
-
|
|
6992
|
+
.announcement-module-Xi0L5:where(.announcement-module-0LTWL) {
|
|
6993
|
+
--icon-color: var(--color-semantic-information);
|
|
6994
|
+
}
|
|
7086
6995
|
|
|
7087
|
-
.
|
|
7088
|
-
|
|
6996
|
+
.announcement-module-Xi0L5:where(.announcement-module-Ga3lN) {
|
|
6997
|
+
--icon-color: var(--color-semantic-notify);
|
|
7089
6998
|
}
|
|
7090
|
-
}
|
|
7091
6999
|
|
|
7092
|
-
|
|
7000
|
+
.announcement-module-Xi0L5:where(.announcement-module-S3nSW) {
|
|
7001
|
+
--icon-color: var(--color-semantic-stop);
|
|
7002
|
+
}
|
|
7093
7003
|
|
|
7094
|
-
.
|
|
7095
|
-
|
|
7004
|
+
.announcement-module-Xi0L5:where(.announcement-module-E6DqW) {
|
|
7005
|
+
--z: 2;
|
|
7006
|
+
--background-color: var(--color-brand-red);
|
|
7007
|
+
--text-color: var(--color-white);
|
|
7008
|
+
--icon-color: var(--color-white);
|
|
7009
|
+
--border-color: var(--color-white);
|
|
7096
7010
|
}
|
|
7097
|
-
}
|
|
7098
7011
|
|
|
7099
|
-
|
|
7012
|
+
.announcement-module-Xi0L5:where(.announcement-module-E6DqW):has([href]):hover {
|
|
7013
|
+
--background-color: var(--color-brand-dark-red);
|
|
7014
|
+
}
|
|
7100
7015
|
|
|
7101
|
-
|
|
7102
|
-
|
|
7103
|
-
|
|
7016
|
+
:root {
|
|
7017
|
+
--announcements-bottom: var(--announcements-height);
|
|
7018
|
+
}
|
|
7104
7019
|
|
|
7105
|
-
|
|
7020
|
+
.announcement-list-module-Nn6HC {
|
|
7021
|
+
position: relative;
|
|
7022
|
+
z-index: var(--announcements-layer);
|
|
7023
|
+
}
|
|
7106
7024
|
|
|
7107
|
-
|
|
7108
|
-
|
|
7109
|
-
|
|
7025
|
+
.announcement-list-module-Nn6HC.announcement-list-module-icXq8 {
|
|
7026
|
+
position: sticky;
|
|
7027
|
+
top: 0;
|
|
7110
7028
|
}
|
|
7111
7029
|
|
|
7112
|
-
|
|
7113
|
-
|
|
7114
|
-
|
|
7030
|
+
.announcement-list-module-Nn6HC .announcement-list-module-cgFNU {
|
|
7031
|
+
display: flex;
|
|
7032
|
+
flex-direction: column;
|
|
7115
7033
|
}
|
|
7116
7034
|
|
|
7117
|
-
|
|
7118
|
-
|
|
7119
|
-
padding-block-end: var(--space-64);
|
|
7035
|
+
.announcement-list-module-Nn6HC .announcement-list-module-fUupi {
|
|
7036
|
+
margin-block: -1px;
|
|
7120
7037
|
}
|
|
7121
7038
|
|
|
7122
|
-
|
|
7123
|
-
|
|
7124
|
-
|
|
7125
|
-
padding-block-end: var(--space-96)
|
|
7126
|
-
}
|
|
7039
|
+
.announcement-list-module-Nn6HC .announcement-list-module-fUupi.announcement-list-module-W10mi,
|
|
7040
|
+
.announcement-list-module-Nn6HC .announcement-list-module-fUupi.announcement-list-module-tyqE0 {
|
|
7041
|
+
transition: all var(--transition-duration-short) linear;
|
|
7127
7042
|
}
|
|
7128
7043
|
|
|
7129
|
-
|
|
7130
|
-
|
|
7131
|
-
|
|
7044
|
+
.announcement-list-module-Nn6HC .announcement-list-module-fUupi.announcement-list-module-W10mi,
|
|
7045
|
+
.announcement-list-module-Nn6HC .announcement-list-module-fUupi.announcement-list-module-tyqE0.announcement-list-module-dUOEB {
|
|
7046
|
+
z-index: -1;
|
|
7047
|
+
height: 0;
|
|
7048
|
+
}
|
|
7132
7049
|
|
|
7133
|
-
|
|
7134
|
-
|
|
7050
|
+
.announcement-list-module-Nn6HC .announcement-list-module-fUupi.announcement-list-module-W10mi.announcement-list-module-1Rfn0,
|
|
7051
|
+
.announcement-list-module-Nn6HC .announcement-list-module-fUupi.announcement-list-module-tyqE0 {
|
|
7052
|
+
height: auto;
|
|
7135
7053
|
}
|
|
7136
7054
|
|
|
7055
|
+
.create-account-form-module-TMU8F {
|
|
7056
|
+
min-inline-size: 270px;
|
|
7057
|
+
}
|
|
7058
|
+
|
|
7059
|
+
.sign-in-form-module-BoJwR {
|
|
7060
|
+
min-inline-size: 270px;
|
|
7061
|
+
}
|
|
7062
|
+
|
|
7063
|
+
.sign-in-form-module-BoJwR .sign-in-form-module-PQ4Ik {
|
|
7064
|
+
margin-block: 0 var(--space-4);
|
|
7065
|
+
}
|
|
7066
|
+
|
|
7137
7067
|
.sign-in-page-layout-module-Z1oE2 {
|
|
7138
7068
|
--layout-width: var(--page-container-max-layout-width, 100vw);
|
|
7139
7069
|
--padding-inline: var(--page-container-padding-inline, 10px);
|
|
@@ -7296,6 +7226,107 @@ button.swiper-pagination-bullet {
|
|
|
7296
7226
|
}
|
|
7297
7227
|
}
|
|
7298
7228
|
|
|
7229
|
+
.page-container-module-eFYSe {
|
|
7230
|
+
--page-container-padding-inline: 10px;
|
|
7231
|
+
--page-container-padding-block: 10px;
|
|
7232
|
+
--page-container-max-layout-width: auto;
|
|
7233
|
+
--page-container-max-width: calc(
|
|
7234
|
+
var(--page-container-max-layout-width) + 2 *
|
|
7235
|
+
var(--page-container-padding-inline)
|
|
7236
|
+
);
|
|
7237
|
+
}
|
|
7238
|
+
|
|
7239
|
+
@media (width >= 768px) {.page-container-module-eFYSe {
|
|
7240
|
+
--page-container-padding-inline: 20px
|
|
7241
|
+
}
|
|
7242
|
+
}
|
|
7243
|
+
|
|
7244
|
+
.page-container-module-eFYSe {
|
|
7245
|
+
|
|
7246
|
+
display: grid;
|
|
7247
|
+
overflow: clip;
|
|
7248
|
+
grid-template: minmax(0, min-content) 1fr minmax(0, min-content) / 100%;
|
|
7249
|
+
grid-template-areas:
|
|
7250
|
+
'page-header'
|
|
7251
|
+
'page-main'
|
|
7252
|
+
'page-footer';
|
|
7253
|
+
}
|
|
7254
|
+
|
|
7255
|
+
/* main area, between page header and footer */
|
|
7256
|
+
|
|
7257
|
+
.page-container-module-eFYSe .page-container-module-JkoQY {
|
|
7258
|
+
display: grid;
|
|
7259
|
+
box-sizing: border-box;
|
|
7260
|
+
margin: 0 auto;
|
|
7261
|
+
grid-area: page-main;
|
|
7262
|
+
grid-template: minmax(0, max-content) minmax(0, max-content) 1fr / 100%;
|
|
7263
|
+
grid-template-areas:
|
|
7264
|
+
'breadcrumbs'
|
|
7265
|
+
'title'
|
|
7266
|
+
'content';
|
|
7267
|
+
inline-size: 100%;
|
|
7268
|
+
max-inline-size: var(--page-container-max-width);
|
|
7269
|
+
padding-inline: var(--page-container-padding-inline);
|
|
7270
|
+
}
|
|
7271
|
+
|
|
7272
|
+
.page-container-module-eFYSe:not(.page-container-module-iCrH5) .page-container-module-JkoQY {
|
|
7273
|
+
padding-block: var(--page-container-padding-block);
|
|
7274
|
+
}
|
|
7275
|
+
|
|
7276
|
+
/* default layout behavior, in width brackets */
|
|
7277
|
+
|
|
7278
|
+
@media (width >= 768px) {
|
|
7279
|
+
|
|
7280
|
+
.page-container-module-eFYSe:not(.page-container-module-glxAS) {
|
|
7281
|
+
--page-container-max-layout-width: 806px
|
|
7282
|
+
}
|
|
7283
|
+
}
|
|
7284
|
+
|
|
7285
|
+
@media (width >= 1440px) {
|
|
7286
|
+
|
|
7287
|
+
.page-container-module-eFYSe:not(.page-container-module-glxAS) {
|
|
7288
|
+
--page-container-max-layout-width: 1222px
|
|
7289
|
+
}
|
|
7290
|
+
}
|
|
7291
|
+
|
|
7292
|
+
/* when fluid with a maximum layout width */
|
|
7293
|
+
|
|
7294
|
+
.page-container-module-eFYSe.page-container-module-glxAS {
|
|
7295
|
+
--page-container-max-layout-width: 1440px;
|
|
7296
|
+
}
|
|
7297
|
+
|
|
7298
|
+
/* key segments inside page-main */
|
|
7299
|
+
|
|
7300
|
+
.page-container-module-eFYSe .page-container-module-WfQXa {
|
|
7301
|
+
grid-area: breadcrumbs;
|
|
7302
|
+
padding-block: var(--space-24);
|
|
7303
|
+
}
|
|
7304
|
+
|
|
7305
|
+
.page-container-module-eFYSe .page-container-module-GKN5s {
|
|
7306
|
+
grid-area: title;
|
|
7307
|
+
padding-block-end: var(--space-44);
|
|
7308
|
+
}
|
|
7309
|
+
|
|
7310
|
+
.page-container-module-eFYSe .page-container-module-r0SOZ {
|
|
7311
|
+
grid-area: content;
|
|
7312
|
+
padding-block-end: var(--space-64);
|
|
7313
|
+
}
|
|
7314
|
+
|
|
7315
|
+
@media (width >= 1440px) {
|
|
7316
|
+
|
|
7317
|
+
.page-container-module-eFYSe .page-container-module-r0SOZ {
|
|
7318
|
+
padding-block-end: var(--space-96)
|
|
7319
|
+
}
|
|
7320
|
+
}
|
|
7321
|
+
|
|
7322
|
+
.page-container-module-eFYSe.page-container-module-iCrH5 {
|
|
7323
|
+
flex-grow: 1; /* TODO: required for Spire, remove later */
|
|
7324
|
+
}
|
|
7325
|
+
|
|
7326
|
+
.page-container-module-eFYSe.page-container-module-iCrH5 .page-container-module-r0SOZ {
|
|
7327
|
+
padding-block-end: 0;
|
|
7328
|
+
}
|
|
7329
|
+
|
|
7299
7330
|
.no-results-module-HGe-Y {
|
|
7300
7331
|
margin-top: var(--space-24);
|
|
7301
7332
|
text-align: center;
|
|
@@ -7445,32 +7476,28 @@ button.swiper-pagination-bullet {
|
|
|
7445
7476
|
white-space: pre;
|
|
7446
7477
|
}
|
|
7447
7478
|
|
|
7448
|
-
.edit-address-form-module-
|
|
7479
|
+
.edit-checkout-bill-to-address-form-module-UWk3T {
|
|
7449
7480
|
display: grid;
|
|
7450
7481
|
gap: var(--space-16);
|
|
7451
|
-
grid-template-columns:
|
|
7482
|
+
grid-template-columns: auto;
|
|
7452
7483
|
}
|
|
7453
7484
|
|
|
7454
|
-
.edit-address-form-module-
|
|
7485
|
+
.edit-checkout-bill-to-address-form-module-UWk3T .edit-checkout-bill-to-address-form-module-ajfl4 {
|
|
7455
7486
|
display: grid;
|
|
7456
7487
|
}
|
|
7457
7488
|
|
|
7458
|
-
@media (width >=
|
|
7489
|
+
@media (width >= 576px) {.edit-checkout-bill-to-address-form-module-UWk3T {
|
|
7459
7490
|
align-items: flex-start;
|
|
7460
7491
|
grid-template-columns: 1fr 1fr
|
|
7461
7492
|
}
|
|
7462
7493
|
|
|
7463
|
-
.edit-address-form-module-
|
|
7494
|
+
.edit-checkout-bill-to-address-form-module-UWk3T .edit-checkout-bill-to-address-form-module-ajfl4 {
|
|
7464
7495
|
display: grid;
|
|
7465
7496
|
grid-column: span 2;
|
|
7466
7497
|
}
|
|
7467
7498
|
}
|
|
7468
7499
|
|
|
7469
|
-
.edit-address-form-module-
|
|
7470
|
-
margin-block-start: var(--space-8);
|
|
7471
|
-
}
|
|
7472
|
-
|
|
7473
|
-
.edit-address-form-module-2bfdq {
|
|
7500
|
+
.edit-checkout-bill-to-address-form-module-jumWh {
|
|
7474
7501
|
display: flex;
|
|
7475
7502
|
flex-wrap: wrap;
|
|
7476
7503
|
align-items: center;
|
|
@@ -7535,6 +7562,11 @@ button.swiper-pagination-bullet {
|
|
|
7535
7562
|
inset: auto 12px 0;
|
|
7536
7563
|
}
|
|
7537
7564
|
|
|
7565
|
+
.change-customer-module-P7ouY .change-customer-module-lxmBJ {
|
|
7566
|
+
width: 16px;
|
|
7567
|
+
height: 16px;
|
|
7568
|
+
}
|
|
7569
|
+
|
|
7538
7570
|
.change-customer-module-P7ouY [slot='label'] {
|
|
7539
7571
|
display: flex;
|
|
7540
7572
|
width: 100%;
|
|
@@ -7588,10 +7620,102 @@ button.swiper-pagination-bullet {
|
|
|
7588
7620
|
height: 400px;
|
|
7589
7621
|
}
|
|
7590
7622
|
|
|
7623
|
+
.change-password-module-hSjXo {
|
|
7624
|
+
display: grid;
|
|
7625
|
+
inset: 0;
|
|
7626
|
+
min-block-size: 150px;
|
|
7627
|
+
min-inline-size: 250px;
|
|
7628
|
+
place-content: center;
|
|
7629
|
+
}
|
|
7630
|
+
|
|
7631
|
+
.change-password-module-HyPjt {
|
|
7632
|
+
margin-block-start: var(--space-16);
|
|
7633
|
+
}
|
|
7634
|
+
|
|
7635
|
+
.edit-user-info-module-yQOre {
|
|
7636
|
+
display: grid;
|
|
7637
|
+
inset: 0;
|
|
7638
|
+
min-block-size: 150px;
|
|
7639
|
+
min-inline-size: 250px;
|
|
7640
|
+
place-content: center;
|
|
7641
|
+
}
|
|
7642
|
+
|
|
7643
|
+
.edit-user-info-module-2CzVn {
|
|
7644
|
+
margin-top: var(--space-16);
|
|
7645
|
+
}
|
|
7646
|
+
|
|
7647
|
+
.my-sonic-layout-module-ep0n3 {
|
|
7648
|
+
--gap: 0;
|
|
7649
|
+
--padding: var(--space-24);
|
|
7650
|
+
--margin: var(--space-24);
|
|
7651
|
+
|
|
7652
|
+
display: grid;
|
|
7653
|
+
gap: var(--gap) 0;
|
|
7654
|
+
grid-template-areas:
|
|
7655
|
+
'pre-aside'
|
|
7656
|
+
'aside'
|
|
7657
|
+
'title'
|
|
7658
|
+
'main';
|
|
7659
|
+
grid-template-columns: 1fr;
|
|
7660
|
+
padding-block: var(--padding);
|
|
7661
|
+
}
|
|
7662
|
+
|
|
7663
|
+
@media (width >= 768px) {.my-sonic-layout-module-ep0n3 {
|
|
7664
|
+
--aside-size: clamp(236px, 22%, 308px);
|
|
7665
|
+
--gap: var(--space-20);
|
|
7666
|
+
--margin: 0;
|
|
7667
|
+
|
|
7668
|
+
grid-template-areas:
|
|
7669
|
+
'pre-aside . title'
|
|
7670
|
+
'aside . main';
|
|
7671
|
+
grid-template-columns: var(--aside-size) var(--gap) 1fr
|
|
7672
|
+
}
|
|
7673
|
+
}
|
|
7674
|
+
|
|
7675
|
+
@media (width >= 1440px) {.my-sonic-layout-module-ep0n3 {
|
|
7676
|
+
--gap: var(--space-40);
|
|
7677
|
+
--padding: var(--space-48)
|
|
7678
|
+
}
|
|
7679
|
+
}
|
|
7680
|
+
|
|
7681
|
+
.my-sonic-layout-module-ep0n3 .my-sonic-layout-module-yMdPQ {
|
|
7682
|
+
align-self: last baseline;
|
|
7683
|
+
grid-area: title;
|
|
7684
|
+
margin-block-end: var(--margin);
|
|
7685
|
+
}
|
|
7686
|
+
|
|
7687
|
+
.my-sonic-layout-module-ep0n3 .my-sonic-layout-module-f0Bhf {
|
|
7688
|
+
container-type: inline-size;
|
|
7689
|
+
grid-area: main;
|
|
7690
|
+
}
|
|
7691
|
+
|
|
7692
|
+
.my-sonic-layout-module-ep0n3 .my-sonic-layout-module-6pWHC {
|
|
7693
|
+
align-self: last baseline;
|
|
7694
|
+
grid-area: pre-aside;
|
|
7695
|
+
margin-block-end: var(--margin);
|
|
7696
|
+
}
|
|
7697
|
+
|
|
7698
|
+
.my-sonic-layout-module-ep0n3 .my-sonic-layout-module--OEV- {
|
|
7699
|
+
grid-area: aside;
|
|
7700
|
+
margin-block-end: var(--margin);
|
|
7701
|
+
}
|
|
7702
|
+
|
|
7591
7703
|
.my-sonic-desktop-navigation-module-f8Y3F {
|
|
7592
7704
|
font-weight: bold;
|
|
7593
7705
|
}
|
|
7594
7706
|
|
|
7707
|
+
@media (width >= 768px) {.connected-my-sonic-navigation-module-2iY0- {
|
|
7708
|
+
display: none
|
|
7709
|
+
}
|
|
7710
|
+
}
|
|
7711
|
+
|
|
7712
|
+
@media (width < 768px) {
|
|
7713
|
+
|
|
7714
|
+
.connected-my-sonic-navigation-module-MgsX2 {
|
|
7715
|
+
display: none
|
|
7716
|
+
}
|
|
7717
|
+
}
|
|
7718
|
+
|
|
7595
7719
|
.product-details-page-layout-module-pPtZX {
|
|
7596
7720
|
display: flex;
|
|
7597
7721
|
flex-direction: column;
|