@telia/teddy 0.4.19 → 0.5.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/components/channel-button/channel-button-root.d.ts +3 -3
- package/dist/components/channel-button/index.d.ts +3 -3
- package/dist/components/checkbox/checkbox-group-list.d.ts +1 -1
- package/dist/components/checkbox/index.d.ts +1 -1
- package/dist/components/chip/chip-indicator.d.ts +2 -2
- package/dist/components/chip/index.d.ts +2 -2
- package/dist/components/color-dot/index.d.ts +1 -1
- package/dist/components/expandable-card/expandable-card-button.d.ts +2 -2
- package/dist/components/expandable-card/index.d.ts +3 -3
- package/dist/components/flip-card/flip-card-trigger.d.ts +2 -2
- package/dist/components/icon/utils.d.ts +1 -1
- package/dist/components/index.cjs +2 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +2 -0
- package/dist/components/modal/modal-close.cjs +1 -0
- package/dist/components/modal/modal-close.js +1 -0
- package/dist/components/modal/modal-title.d.ts +1 -1
- package/dist/components/navigation-menu/navigation-menu.cjs +1 -0
- package/dist/components/navigation-menu/navigation-menu.js +1 -0
- package/dist/components/notabene/notabene-icon.d.ts +2 -2
- package/dist/components/notification/index.d.ts +1 -1
- package/dist/components/notification/notification-icon.d.ts +2 -2
- package/dist/components/notification/notification-root.d.ts +1 -1
- package/dist/components/radio-card-group/radio-card-group-content.cjs +1 -0
- package/dist/components/radio-card-group/radio-card-group-content.js +1 -0
- package/dist/components/radio-card-group/radio-card-group-item-title.cjs +1 -0
- package/dist/components/radio-card-group/radio-card-group-item-title.js +1 -0
- package/dist/components/radio-card-group/radio-card-group-item.cjs +1 -0
- package/dist/components/radio-card-group/radio-card-group-item.js +1 -0
- package/dist/components/ribbon/ribbon-root.cjs +7 -6
- package/dist/components/ribbon/ribbon-root.d.ts +2 -2
- package/dist/components/ribbon/ribbon-root.js +7 -6
- package/dist/components/scroll-area/index.d.ts +2 -2
- package/dist/components/scroll-area/scroll-area-button.d.ts +2 -2
- package/dist/components/table/index.cjs +24 -0
- package/dist/components/table/index.d.ts +121 -0
- package/dist/components/table/index.js +24 -0
- package/dist/components/table/table-body.cjs +26 -0
- package/dist/components/table/table-body.d.ts +3 -0
- package/dist/components/table/table-body.js +9 -0
- package/dist/components/table/table-cell.cjs +44 -0
- package/dist/components/table/table-cell.d.ts +21 -0
- package/dist/components/table/table-cell.js +27 -0
- package/dist/components/table/table-footer.cjs +26 -0
- package/dist/components/table/table-footer.d.ts +3 -0
- package/dist/components/table/table-footer.js +9 -0
- package/dist/components/table/table-head.cjs +47 -0
- package/dist/components/table/table-head.d.ts +18 -0
- package/dist/components/table/table-head.js +30 -0
- package/dist/components/table/table-header.cjs +36 -0
- package/dist/components/table/table-header.d.ts +3 -0
- package/dist/components/table/table-header.js +19 -0
- package/dist/components/table/table-root.cjs +51 -0
- package/dist/components/table/table-root.d.ts +10 -0
- package/dist/components/table/table-root.js +34 -0
- package/dist/components/table/table-row.cjs +26 -0
- package/dist/components/table/table-row.d.ts +3 -0
- package/dist/components/table/table-row.js +9 -0
- package/dist/components/tabs/tabs-scroll-button.d.ts +2 -2
- package/dist/components/text-field/index.d.ts +2 -2
- package/dist/components/text-field/text-field-button.d.ts +2 -2
- package/dist/components/toggle/toggle.d.ts +2 -2
- package/dist/main.cjs +2 -0
- package/dist/main.js +2 -0
- package/dist/style.css +960 -871
- package/dist/utils/generate-styling/grid.d.ts +24 -24
- package/dist/utils/generate-styling/index.d.ts +16 -16
- package/dist/utils/generate-styling/util.d.ts +2 -2
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -1,945 +1,1178 @@
|
|
|
1
|
-
@charset 'UTF-8';._teddy-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
transform-style: preserve-3d;
|
|
5
|
-
z-index: 0;
|
|
6
|
-
}
|
|
7
|
-
@media (prefers-reduced-motion: no-preference) {
|
|
8
|
-
._teddy-flip-card_onxd6_1 {
|
|
9
|
-
transition: transform var(--teddy-motion-duration-500) var(--teddy-motion-easing-ease-in-out);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
._teddy-flip-card--flipped_onxd6_12 {
|
|
13
|
-
transform: rotateY(180deg);
|
|
14
|
-
}
|
|
15
|
-
._teddy-flip-card__front_onxd6_15 {
|
|
16
|
-
backface-visibility: hidden;
|
|
17
|
-
z-index: 2;
|
|
1
|
+
@charset 'UTF-8';._teddy-spinner--xxs_ywden_1 {
|
|
2
|
+
height: var(--teddy-spacing-250);
|
|
3
|
+
width: var(--teddy-spacing-250);
|
|
18
4
|
}
|
|
19
|
-
._teddy-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
left: 0;
|
|
23
|
-
width: 100%;
|
|
24
|
-
height: 100%;
|
|
25
|
-
backface-visibility: hidden;
|
|
26
|
-
transform: rotateY(180deg);
|
|
27
|
-
display: grid;
|
|
28
|
-
justify-content: normal;
|
|
29
|
-
align-content: stretch;
|
|
30
|
-
padding: 0;
|
|
5
|
+
._teddy-spinner--xs_ywden_5 {
|
|
6
|
+
height: var(--teddy-spacing-300);
|
|
7
|
+
width: var(--teddy-spacing-300);
|
|
31
8
|
}
|
|
32
|
-
._teddy-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
width: 100%;
|
|
36
|
-
height: 100%;
|
|
37
|
-
justify-content: stretch;
|
|
38
|
-
position: initial;
|
|
9
|
+
._teddy-spinner--sm_ywden_9 {
|
|
10
|
+
height: var(--teddy-spacing-400);
|
|
11
|
+
width: var(--teddy-spacing-400);
|
|
39
12
|
}
|
|
40
|
-
._teddy-
|
|
41
|
-
|
|
42
|
-
|
|
13
|
+
._teddy-spinner--md_ywden_13 {
|
|
14
|
+
height: var(--teddy-spacing-600);
|
|
15
|
+
width: var(--teddy-spacing-600);
|
|
16
|
+
stroke-width: 3.5;
|
|
43
17
|
}
|
|
44
|
-
._teddy-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
border-top: var(--teddy-border-width-xs) solid var(--teddy-color-border-weak);
|
|
49
|
-
border-radius: 0 0 var(--teddy-border-radius-md) var(--teddy-border-radius-md);
|
|
18
|
+
._teddy-spinner--lg_ywden_18 {
|
|
19
|
+
height: var(--teddy-spacing-800);
|
|
20
|
+
width: var(--teddy-spacing-800);
|
|
21
|
+
stroke-width: 3;
|
|
50
22
|
}
|
|
51
|
-
._teddy-
|
|
52
|
-
|
|
23
|
+
._teddy-spinner__circle_ywden_23 {
|
|
24
|
+
--stroke-color: var(--teddy-color-border-interactive-primary);
|
|
25
|
+
stroke-dasharray: 150;
|
|
26
|
+
animation: _dash_ywden_1 2s ease-in-out infinite, _rotate_ywden_1 1s linear infinite;
|
|
27
|
+
transform-origin: center;
|
|
28
|
+
stroke-width: 4;
|
|
29
|
+
stroke-linecap: round;
|
|
30
|
+
fill: transparent;
|
|
31
|
+
stroke: var(--stroke-color);
|
|
53
32
|
}
|
|
54
|
-
._teddy-
|
|
55
|
-
|
|
33
|
+
._teddy-spinner__circle--disabled_ywden_33 {
|
|
34
|
+
--stroke-color: var(--teddy-color-border-weak);
|
|
56
35
|
}
|
|
57
|
-
._teddy-
|
|
58
|
-
|
|
36
|
+
._teddy-spinner__circle--negative_ywden_36 {
|
|
37
|
+
--stroke-color: var(--teddy-color-border-interactive-primary-negative);
|
|
59
38
|
}
|
|
60
|
-
._teddy-
|
|
61
|
-
|
|
39
|
+
._teddy-spinner__circle--negative-disabled_ywden_39 {
|
|
40
|
+
--stroke-color: var(--teddy-color-border-weak-negative);
|
|
62
41
|
}
|
|
63
|
-
|
|
64
|
-
|
|
42
|
+
|
|
43
|
+
@keyframes _rotate_ywden_1 {
|
|
44
|
+
from {
|
|
45
|
+
transform: rotate(0deg);
|
|
46
|
+
}
|
|
47
|
+
to {
|
|
48
|
+
transform: rotate(360deg);
|
|
49
|
+
}
|
|
65
50
|
}
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
._teddy-grid_1dv1t_2 {
|
|
70
|
-
box-sizing: border-box;
|
|
71
|
-
display: grid;
|
|
72
|
-
align-items: stretch;
|
|
73
|
-
justify-content: start;
|
|
74
|
-
grid-template-rows: none;
|
|
51
|
+
@keyframes _dash_ywden_1 {
|
|
52
|
+
0% {
|
|
53
|
+
stroke-dashoffset: 125;
|
|
75
54
|
}
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
._teddy-card_6pylp_3 {
|
|
79
|
-
border-radius: var(--teddy-border-radius-md);
|
|
80
|
-
padding: var(--teddy-spacing-250);
|
|
81
|
-
position: relative;
|
|
55
|
+
50% {
|
|
56
|
+
stroke-dashoffset: 62.5;
|
|
82
57
|
}
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
transition: background-color var(--teddy-motion-duration-100) ease;
|
|
86
|
-
}
|
|
58
|
+
100% {
|
|
59
|
+
stroke-dashoffset: 125;
|
|
87
60
|
}
|
|
88
|
-
|
|
89
|
-
|
|
61
|
+
}@keyframes _fadeInAnimation_1k5uy_1 {
|
|
62
|
+
0% {
|
|
63
|
+
opacity: 0;
|
|
90
64
|
}
|
|
91
|
-
|
|
92
|
-
|
|
65
|
+
100% {
|
|
66
|
+
opacity: 1;
|
|
93
67
|
}
|
|
94
|
-
|
|
95
|
-
|
|
68
|
+
}
|
|
69
|
+
@keyframes _scaleInAnimation_1k5uy_1 {
|
|
70
|
+
0% {
|
|
71
|
+
scale: 0;
|
|
96
72
|
}
|
|
97
|
-
|
|
98
|
-
|
|
73
|
+
100% {
|
|
74
|
+
scale: 100%;
|
|
99
75
|
}
|
|
100
|
-
|
|
101
|
-
|
|
76
|
+
}
|
|
77
|
+
@layer button {
|
|
78
|
+
._teddy-button_1k5uy_18 {
|
|
79
|
+
align-items: center;
|
|
80
|
+
border-radius: var(--teddy-border-radius-full);
|
|
81
|
+
border-width: 0;
|
|
82
|
+
cursor: pointer;
|
|
83
|
+
display: inline-flex;
|
|
84
|
+
font-size: var(--teddy-typography-scale-100);
|
|
85
|
+
font-family: var(--teddy-typography-family-default);
|
|
86
|
+
font-weight: var(--teddy-typography-weight-medium);
|
|
87
|
+
gap: var(--teddy-spacing-100);
|
|
88
|
+
justify-content: center;
|
|
89
|
+
line-height: var(--teddy-spacing-200);
|
|
90
|
+
outline: 0;
|
|
91
|
+
position: relative;
|
|
92
|
+
text-decoration: none;
|
|
93
|
+
transition-duration: var(--teddy-motion-duration-100);
|
|
94
|
+
transition-timing-function: var(--teddy-motion-easing-ease-in-out);
|
|
95
|
+
transition-property: background-color, color;
|
|
96
|
+
width: auto;
|
|
102
97
|
}
|
|
103
|
-
._teddy-
|
|
98
|
+
._teddy-button_1k5uy_18:focus::before {
|
|
99
|
+
border-radius: inherit;
|
|
100
|
+
box-shadow: 0 0 0 var(--teddy-border-width-sm) var(--teddy-color-border-interactive-focus);
|
|
104
101
|
content: "";
|
|
102
|
+
opacity: 1;
|
|
105
103
|
display: block;
|
|
104
|
+
inset: calc(var(--teddy-spacing-25) * -1);
|
|
106
105
|
position: absolute;
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
border-radius: inherit;
|
|
106
|
+
}
|
|
107
|
+
._teddy-button_1k5uy_18:focus:not(:focus-visible)::before {
|
|
110
108
|
opacity: 0;
|
|
111
|
-
box-shadow: var(--teddy-shadow-sm);
|
|
112
109
|
}
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
transition: var(--teddy-motion-duration-300) ease;
|
|
116
|
-
transition-property: opacity, box-shadow;
|
|
117
|
-
}
|
|
110
|
+
._teddy-button_1k5uy_18 svg {
|
|
111
|
+
display: block;
|
|
118
112
|
}
|
|
119
|
-
._teddy-
|
|
120
|
-
|
|
113
|
+
._teddy-button--sm_1k5uy_53 {
|
|
114
|
+
padding: var(--teddy-spacing-150) var(--teddy-spacing-250);
|
|
121
115
|
}
|
|
122
|
-
._teddy-
|
|
123
|
-
|
|
116
|
+
._teddy-button--sm_1k5uy_53._teddy-button--icon-only_1k5uy_56 {
|
|
117
|
+
padding: var(--teddy-spacing-150);
|
|
124
118
|
}
|
|
125
|
-
._teddy-
|
|
126
|
-
|
|
127
|
-
box-shadow: var(--teddy-shadow-md);
|
|
119
|
+
._teddy-button--md_1k5uy_59 {
|
|
120
|
+
padding: var(--teddy-spacing-200) var(--teddy-spacing-300);
|
|
128
121
|
}
|
|
129
|
-
._teddy-
|
|
130
|
-
|
|
122
|
+
._teddy-button--md_1k5uy_59._teddy-button--icon-only_1k5uy_56 {
|
|
123
|
+
padding: var(--teddy-spacing-200);
|
|
131
124
|
}
|
|
132
|
-
._teddy-
|
|
133
|
-
|
|
125
|
+
._teddy-button--lg_1k5uy_65 {
|
|
126
|
+
padding: var(--teddy-spacing-250) var(--teddy-spacing-400);
|
|
134
127
|
}
|
|
135
|
-
._teddy-
|
|
136
|
-
|
|
128
|
+
._teddy-button--lg_1k5uy_65._teddy-button--icon-only_1k5uy_56 {
|
|
129
|
+
padding: var(--teddy-spacing-250);
|
|
137
130
|
}
|
|
138
|
-
._teddy-
|
|
139
|
-
|
|
131
|
+
._teddy-button--full-width_1k5uy_71 {
|
|
132
|
+
width: 100%;
|
|
140
133
|
}
|
|
141
|
-
._teddy-
|
|
142
|
-
|
|
134
|
+
._teddy-button--primary_1k5uy_74 {
|
|
135
|
+
background-color: var(--teddy-color-background-interactive-primary);
|
|
136
|
+
color: var(--teddy-color-text-interactive-on-primary);
|
|
143
137
|
}
|
|
144
|
-
._teddy-
|
|
145
|
-
|
|
138
|
+
._teddy-button--primary_1k5uy_74:hover:not(._teddy-button--disabled_1k5uy_78) {
|
|
139
|
+
background-color: var(--teddy-color-background-interactive-primary-hover);
|
|
146
140
|
}
|
|
147
|
-
._teddy-
|
|
148
|
-
|
|
141
|
+
._teddy-button--primary_1k5uy_74:active:not(._teddy-button--disabled_1k5uy_78) {
|
|
142
|
+
background-color: var(--teddy-color-background-interactive-primary-active);
|
|
149
143
|
}
|
|
150
|
-
._teddy-
|
|
151
|
-
|
|
144
|
+
._teddy-button--primary-negative_1k5uy_84 {
|
|
145
|
+
background-color: var(--teddy-color-background-interactive-primary-negative);
|
|
146
|
+
color: var(--teddy-color-text-interactive-on-primary-negative);
|
|
152
147
|
}
|
|
153
|
-
._teddy-
|
|
154
|
-
|
|
148
|
+
._teddy-button--primary-negative_1k5uy_84:hover:not(._teddy-button--disabled_1k5uy_78) {
|
|
149
|
+
background-color: var(--teddy-color-background-interactive-primary-negative-hover);
|
|
150
|
+
border-color: var(--teddy-color-background-interactive-primary-negative-hover);
|
|
155
151
|
}
|
|
156
|
-
._teddy-
|
|
157
|
-
|
|
152
|
+
._teddy-button--primary-negative_1k5uy_84:active:not(._teddy-button--disabled_1k5uy_78) {
|
|
153
|
+
background-color: var(--teddy-color-background-interactive-primary-negative-active);
|
|
154
|
+
border-color: var(--teddy-color-background-interactive-primary-negative-active);
|
|
158
155
|
}
|
|
159
|
-
._teddy-
|
|
160
|
-
|
|
156
|
+
._teddy-button--secondary_1k5uy_96 {
|
|
157
|
+
background-color: var(--teddy-color-background-interactive-transparent);
|
|
158
|
+
box-shadow: inset 0 0 0 var(--teddy-border-width-xs) var(--teddy-color-border-interactive-primary);
|
|
159
|
+
color: var(--teddy-color-text-interactive-primary);
|
|
161
160
|
}
|
|
162
|
-
._teddy-
|
|
163
|
-
|
|
161
|
+
._teddy-button--secondary_1k5uy_96:hover:not(._teddy-button--disabled_1k5uy_78) {
|
|
162
|
+
background-color: var(--teddy-color-background-interactive-transparent-hover);
|
|
164
163
|
}
|
|
165
|
-
._teddy-
|
|
166
|
-
|
|
167
|
-
flex-direction: column;
|
|
168
|
-
gap: var(--teddy-spacing-200);
|
|
164
|
+
._teddy-button--secondary_1k5uy_96:active:not(._teddy-button--disabled_1k5uy_78) {
|
|
165
|
+
background-color: var(--teddy-color-background-interactive-transparent-active);
|
|
169
166
|
}
|
|
170
|
-
._teddy-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
align-items: baseline;
|
|
175
|
-
grid-template-areas: "illustration" "heading" "content" "action";
|
|
176
|
-
}
|
|
177
|
-
._teddy-card--navigation-vertical_6pylp_95 ._teddy-card__illustration_6pylp_57 {
|
|
178
|
-
margin-bottom: var(--teddy-spacing-200);
|
|
179
|
-
}
|
|
180
|
-
._teddy-card--navigation-vertical_6pylp_95 ._teddy-card__content_6pylp_63 {
|
|
181
|
-
margin-bottom: var(--teddy-spacing-200);
|
|
167
|
+
._teddy-button--secondary-negative_1k5uy_107 {
|
|
168
|
+
background-color: var(--teddy-color-background-interactive-transparent);
|
|
169
|
+
box-shadow: inset 0 0 0 var(--teddy-border-width-xs) var(--teddy-color-border-interactive-primary-negative);
|
|
170
|
+
color: var(--teddy-color-text-interactive-primary-negative);
|
|
182
171
|
}
|
|
183
|
-
._teddy-
|
|
184
|
-
|
|
172
|
+
._teddy-button--secondary-negative_1k5uy_107:hover:not(._teddy-button--disabled_1k5uy_78) {
|
|
173
|
+
background-color: var(--teddy-color-background-interactive-transparent-negative-hover);
|
|
185
174
|
}
|
|
186
|
-
._teddy-
|
|
187
|
-
|
|
188
|
-
justify-self: end;
|
|
175
|
+
._teddy-button--secondary-negative_1k5uy_107:active:not(._teddy-button--disabled_1k5uy_78) {
|
|
176
|
+
background-color: var(--teddy-color-background-interactive-transparent-negative-active);
|
|
189
177
|
}
|
|
190
|
-
._teddy-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
grid-template-areas: "illustration heading action" "illustration content action";
|
|
194
|
-
column-gap: var(--teddy-spacing-200);
|
|
178
|
+
._teddy-button--expressive_1k5uy_118 {
|
|
179
|
+
background-color: var(--teddy-color-background-interactive-expressive);
|
|
180
|
+
color: var(--teddy-color-text-interactive-on-expressive);
|
|
195
181
|
}
|
|
196
|
-
._teddy-
|
|
197
|
-
|
|
182
|
+
._teddy-button--expressive_1k5uy_118:hover:not(._teddy-button--disabled_1k5uy_78) {
|
|
183
|
+
background-color: var(--teddy-color-background-interactive-expressive-hover);
|
|
198
184
|
}
|
|
199
|
-
._teddy-
|
|
200
|
-
|
|
185
|
+
._teddy-button--expressive_1k5uy_118:active:not(._teddy-button--disabled_1k5uy_78) {
|
|
186
|
+
background-color: var(--teddy-color-background-interactive-expressive-active);
|
|
201
187
|
}
|
|
202
|
-
._teddy-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
grid-template-columns: auto 1fr auto;
|
|
206
|
-
grid-template-rows: 1fr auto;
|
|
207
|
-
grid-template-areas: "illustration heading action" "illustration content action";
|
|
208
|
-
align-items: center;
|
|
209
|
-
column-gap: var(--teddy-spacing-200);
|
|
188
|
+
._teddy-button--expressive-negative_1k5uy_128 {
|
|
189
|
+
background-color: var(--teddy-color-background-interactive-expressive-negative);
|
|
190
|
+
color: var(--teddy-color-text-interactive-on-expressive-negative);
|
|
210
191
|
}
|
|
211
|
-
._teddy-
|
|
212
|
-
|
|
192
|
+
._teddy-button--expressive-negative_1k5uy_128:hover:not(._teddy-button--disabled_1k5uy_78) {
|
|
193
|
+
background-color: var(--teddy-color-background-interactive-expressive-negative-hover);
|
|
194
|
+
color: var(--teddy-color-text-interactive-on-expressive-negative-hover);
|
|
213
195
|
}
|
|
214
|
-
._teddy-
|
|
215
|
-
|
|
196
|
+
._teddy-button--expressive-negative_1k5uy_128:active:not(._teddy-button--disabled_1k5uy_78) {
|
|
197
|
+
background-color: var(--teddy-color-background-interactive-expressive-negative-active);
|
|
198
|
+
color: var(--teddy-color-text-interactive-on-expressive-negative-active);
|
|
216
199
|
}
|
|
217
|
-
._teddy-
|
|
218
|
-
|
|
219
|
-
|
|
200
|
+
._teddy-button--negative_1k5uy_140._teddy-button--disabled_1k5uy_78 {
|
|
201
|
+
background-color: var(--teddy-color-background-interactive-disabled-negative);
|
|
202
|
+
color: var(--teddy-color-text-weak-negative);
|
|
220
203
|
}
|
|
221
|
-
._teddy-
|
|
222
|
-
|
|
204
|
+
._teddy-button--secondary_1k5uy_96._teddy-button--disabled_1k5uy_78, ._teddy-button--secondary-negative_1k5uy_107._teddy-button--disabled_1k5uy_78 {
|
|
205
|
+
box-shadow: none;
|
|
223
206
|
}
|
|
224
|
-
._teddy-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
grid-template-areas: "illustration action" "heading action" "content action";
|
|
228
|
-
column-gap: var(--teddy-spacing-200);
|
|
207
|
+
._teddy-button--destructive_1k5uy_147 {
|
|
208
|
+
background-color: var(--teddy-color-background-interactive-destructive);
|
|
209
|
+
color: var(--teddy-color-text-interactive-on-destructive);
|
|
229
210
|
}
|
|
230
|
-
._teddy-
|
|
231
|
-
|
|
211
|
+
._teddy-button--destructive_1k5uy_147:hover:not(._teddy-button--disabled_1k5uy_78) {
|
|
212
|
+
background-color: var(--teddy-color-background-interactive-destructive-hover);
|
|
232
213
|
}
|
|
233
|
-
._teddy-
|
|
234
|
-
|
|
214
|
+
._teddy-button--destructive_1k5uy_147:active:not(._teddy-button--disabled_1k5uy_78) {
|
|
215
|
+
background-color: var(--teddy-color-background-interactive-destructive-active);
|
|
235
216
|
}
|
|
236
|
-
._teddy-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
grid-template-rows: auto auto 1fr auto;
|
|
240
|
-
grid-template-areas: "illustration" "heading" "content" "action";
|
|
217
|
+
._teddy-button--destructive-negative_1k5uy_157 {
|
|
218
|
+
background-color: var(--teddy-color-background-interactive-destructive);
|
|
219
|
+
color: var(--teddy-color-text-interactive-on-destructive);
|
|
241
220
|
}
|
|
242
|
-
._teddy-
|
|
243
|
-
|
|
221
|
+
._teddy-button--destructive-negative_1k5uy_157:hover:not(._teddy-button--disabled_1k5uy_78) {
|
|
222
|
+
background-color: var(--teddy-color-background-interactive-destructive-hover);
|
|
244
223
|
}
|
|
245
|
-
._teddy-
|
|
246
|
-
|
|
224
|
+
._teddy-button--destructive-negative_1k5uy_157:active:not(._teddy-button--disabled_1k5uy_78) {
|
|
225
|
+
background-color: var(--teddy-color-background-interactive-destructive-active);
|
|
247
226
|
}
|
|
248
|
-
._teddy-
|
|
249
|
-
|
|
227
|
+
._teddy-button--tertiary-purple_1k5uy_167 {
|
|
228
|
+
background-color: var(--teddy-color-background-interactive-transparent);
|
|
229
|
+
color: var(--teddy-color-text-interactive-primary);
|
|
250
230
|
}
|
|
251
|
-
._teddy-
|
|
252
|
-
|
|
231
|
+
._teddy-button--tertiary-purple_1k5uy_167._teddy-button--disabled_1k5uy_78 {
|
|
232
|
+
background-color: var(--teddy-color-background-interactive-transparent);
|
|
253
233
|
}
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
align-items: baseline;
|
|
257
|
-
grid-template-rows: auto auto 1fr auto;
|
|
258
|
-
grid-template-areas: "illustration" "heading" "content" "action";
|
|
259
|
-
}
|
|
234
|
+
._teddy-button--tertiary-purple_1k5uy_167:hover:not(._teddy-button--disabled_1k5uy_78) {
|
|
235
|
+
background-color: var(--teddy-color-background-interactive-transparent-hover);
|
|
260
236
|
}
|
|
261
|
-
._teddy-
|
|
262
|
-
|
|
237
|
+
._teddy-button--tertiary-purple_1k5uy_167:active:not(._teddy-button--disabled_1k5uy_78) {
|
|
238
|
+
background-color: var(--teddy-color-background-interactive-transparent-active);
|
|
263
239
|
}
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
margin-right: var(--teddy-spacing-600);
|
|
268
|
-
}
|
|
240
|
+
._teddy-button--tertiary-purple-negative_1k5uy_180 {
|
|
241
|
+
background-color: var(--teddy-color-background-interactive-transparent);
|
|
242
|
+
color: var(--teddy-color-text-interactive-primary-negative);
|
|
269
243
|
}
|
|
270
|
-
._teddy-
|
|
271
|
-
|
|
244
|
+
._teddy-button--tertiary-purple-negative_1k5uy_180._teddy-button--disabled_1k5uy_78 {
|
|
245
|
+
background-color: var(--teddy-color-background-interactive-transparent);
|
|
272
246
|
}
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
margin-top: 0;
|
|
277
|
-
align-content: center;
|
|
278
|
-
}
|
|
247
|
+
._teddy-button--tertiary-purple-negative_1k5uy_180:hover:not(._teddy-button--disabled_1k5uy_78) {
|
|
248
|
+
background-color: var(--teddy-color-background-interactive-transparent-negative-hover);
|
|
249
|
+
color: var(--teddy-color-text-interactive-primary-negative-hover);
|
|
279
250
|
}
|
|
280
|
-
._teddy-
|
|
281
|
-
|
|
251
|
+
._teddy-button--tertiary-purple-negative_1k5uy_180:active:not(._teddy-button--disabled_1k5uy_78) {
|
|
252
|
+
background-color: var(--teddy-color-background-interactive-transparent-negative-active);
|
|
253
|
+
color: var(--teddy-color-text-interactive-primary-negative-active);
|
|
282
254
|
}
|
|
283
|
-
._teddy-
|
|
284
|
-
|
|
285
|
-
|
|
255
|
+
._teddy-button--list-item_1k5uy_195 {
|
|
256
|
+
border-radius: var(--teddy-border-radius-md);
|
|
257
|
+
padding: var(--teddy-spacing-250) var(--teddy-spacing-150);
|
|
258
|
+
background-color: var(--teddy-color-background-interactive-transparent);
|
|
259
|
+
color: var(--teddy-color-text-default);
|
|
260
|
+
font-weight: 400;
|
|
261
|
+
line-height: var(--teddy-typography-line-height-tight);
|
|
262
|
+
justify-content: flex-start;
|
|
286
263
|
}
|
|
287
|
-
._teddy-
|
|
288
|
-
|
|
289
|
-
|
|
264
|
+
._teddy-button--list-item_1k5uy_195._teddy-button--disabled_1k5uy_78 {
|
|
265
|
+
background-color: var(--teddy-color-background-interactive-transparent);
|
|
266
|
+
color: var(--teddy-color-text-weak);
|
|
290
267
|
}
|
|
291
|
-
._teddy-
|
|
292
|
-
background-color: var(--teddy-color-background-
|
|
293
|
-
color: var(--teddy-color-text-default);
|
|
294
|
-
border-color: var(--teddy-color-background-interactive-primary-negative);
|
|
268
|
+
._teddy-button--list-item_1k5uy_195:hover:not(._teddy-button--disabled_1k5uy_78) {
|
|
269
|
+
background-color: var(--teddy-color-background-secondary);
|
|
295
270
|
}
|
|
296
|
-
._teddy-
|
|
297
|
-
background-color: var(--teddy-color-background-interactive-
|
|
271
|
+
._teddy-button--list-item_1k5uy_195:active:not(._teddy-button--disabled_1k5uy_78) {
|
|
272
|
+
background-color: var(--teddy-color-background-interactive-transparent-active);
|
|
298
273
|
}
|
|
299
|
-
._teddy-
|
|
300
|
-
|
|
274
|
+
._teddy-button--text-negative_1k5uy_214 {
|
|
275
|
+
border-radius: 0;
|
|
276
|
+
padding-left: 0;
|
|
277
|
+
padding-right: 0;
|
|
278
|
+
background-color: var(--teddy-color-background-interactive-transparent);
|
|
279
|
+
color: var(--teddy-color-text-interactive-primary-negative);
|
|
301
280
|
}
|
|
302
|
-
._teddy-
|
|
303
|
-
|
|
281
|
+
._teddy-button--text-negative_1k5uy_214:focus-visible::before {
|
|
282
|
+
border-radius: 0;
|
|
304
283
|
}
|
|
305
|
-
._teddy-
|
|
306
|
-
background-color: var(--teddy-color-
|
|
307
|
-
color: var(--teddy-color-text-default-negative);
|
|
308
|
-
border-color: var(--teddy-color-brand-deep-purple);
|
|
284
|
+
._teddy-button--text-negative_1k5uy_214._teddy-button--disabled_1k5uy_78 {
|
|
285
|
+
background-color: var(--teddy-color-background-interactive-transparent);
|
|
309
286
|
}
|
|
310
|
-
._teddy-
|
|
287
|
+
._teddy-button--text-negative_1k5uy_214:hover:not(._teddy-button--disabled_1k5uy_78) {
|
|
311
288
|
background-color: var(--teddy-color-background-interactive-transparent-negative-hover);
|
|
289
|
+
color: var(--teddy-color-text-interactive-primary-negative-hover);
|
|
312
290
|
}
|
|
313
|
-
._teddy-
|
|
291
|
+
._teddy-button--text-negative_1k5uy_214:active:not(._teddy-button--disabled_1k5uy_78) {
|
|
314
292
|
background-color: var(--teddy-color-background-interactive-transparent-negative-active);
|
|
293
|
+
color: var(--teddy-color-text-interactive-primary-negative-active);
|
|
315
294
|
}
|
|
316
|
-
._teddy-
|
|
317
|
-
|
|
318
|
-
|
|
295
|
+
._teddy-button--text_1k5uy_214 {
|
|
296
|
+
border-radius: 0;
|
|
297
|
+
padding-left: 0;
|
|
298
|
+
padding-right: 0;
|
|
299
|
+
background-color: var(--teddy-color-background-interactive-transparent);
|
|
300
|
+
color: var(--teddy-color-text-interactive-primary);
|
|
319
301
|
}
|
|
320
|
-
._teddy-
|
|
321
|
-
|
|
322
|
-
background-color: var(--teddy-color-background-interactive-disabled);
|
|
302
|
+
._teddy-button--text_1k5uy_214:focus-visible::before {
|
|
303
|
+
border-radius: 0;
|
|
323
304
|
}
|
|
324
|
-
._teddy-
|
|
325
|
-
background-color: var(--teddy-color-
|
|
326
|
-
color: var(--teddy-color-text-
|
|
327
|
-
border-color: var(--teddy-color-border-weak);
|
|
305
|
+
._teddy-button--text_1k5uy_214._teddy-button--disabled_1k5uy_78 {
|
|
306
|
+
background-color: var(--teddy-color-background-interactive-transparent);
|
|
307
|
+
color: var(--teddy-color-text-weak);
|
|
328
308
|
}
|
|
329
|
-
._teddy-
|
|
309
|
+
._teddy-button--text_1k5uy_214:hover:not(._teddy-button--disabled_1k5uy_78) {
|
|
330
310
|
background-color: var(--teddy-color-background-interactive-transparent-hover);
|
|
331
311
|
}
|
|
332
|
-
._teddy-
|
|
312
|
+
._teddy-button--text_1k5uy_214:active:not(._teddy-button--disabled_1k5uy_78) {
|
|
333
313
|
background-color: var(--teddy-color-background-interactive-transparent-active);
|
|
334
314
|
}
|
|
335
|
-
._teddy-
|
|
315
|
+
._teddy-button--disabled_1k5uy_78 {
|
|
336
316
|
background-color: var(--teddy-color-background-interactive-disabled);
|
|
317
|
+
color: var(--teddy-color-text-weak);
|
|
318
|
+
cursor: not-allowed;
|
|
319
|
+
transition-duration: var(--teddy-motion-duration-400);
|
|
337
320
|
}
|
|
338
|
-
._teddy-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
border-color: var(--teddy-color-border-interactive-subtle);
|
|
321
|
+
._teddy-button--dashed-border_1k5uy_261 {
|
|
322
|
+
border: 1px dashed;
|
|
323
|
+
box-shadow: none;
|
|
342
324
|
}
|
|
343
|
-
._teddy-
|
|
344
|
-
|
|
325
|
+
._teddy-button__loading_1k5uy_265 {
|
|
326
|
+
position: absolute;
|
|
327
|
+
inset: 0;
|
|
328
|
+
display: grid;
|
|
329
|
+
place-items: center;
|
|
330
|
+
border-radius: inherit;
|
|
331
|
+
background-color: var(--teddy-color-transparent-white-500);
|
|
332
|
+
animation: _fadeInAnimation_1k5uy_1 ease var(--teddy-motion-duration-500);
|
|
333
|
+
animation-iteration-count: 1;
|
|
334
|
+
animation-fill-mode: forwards;
|
|
345
335
|
}
|
|
346
|
-
._teddy-
|
|
347
|
-
|
|
336
|
+
._teddy-button__loading_1k5uy_265 ._teddy-button__spinner_1k5uy_276 circle {
|
|
337
|
+
stroke: var(--teddy-color-transparent-black-700);
|
|
348
338
|
}
|
|
349
|
-
._teddy-
|
|
350
|
-
background-color: var(--teddy-color-
|
|
339
|
+
._teddy-button--icon-only_1k5uy_56 ._teddy-button__loading_1k5uy_265 {
|
|
340
|
+
background-color: var(--teddy-color-gray-100);
|
|
351
341
|
}
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
342
|
+
}@layer icon {
|
|
343
|
+
._teddy-icon_1ur3a_2 {
|
|
344
|
+
display: inline;
|
|
345
|
+
align-self: center;
|
|
346
|
+
fill: currentColor;
|
|
347
|
+
flex-shrink: 0;
|
|
356
348
|
}
|
|
357
|
-
._teddy-
|
|
358
|
-
|
|
349
|
+
._teddy-icon--font_1ur3a_8 {
|
|
350
|
+
width: 1em;
|
|
351
|
+
height: 1em;
|
|
359
352
|
}
|
|
360
|
-
._teddy-
|
|
361
|
-
|
|
353
|
+
._teddy-icon--xxs_1ur3a_12 {
|
|
354
|
+
width: var(--teddy-spacing-150);
|
|
355
|
+
height: var(--teddy-spacing-150);
|
|
362
356
|
}
|
|
363
|
-
._teddy-
|
|
364
|
-
|
|
357
|
+
._teddy-icon--xs_1ur3a_16 {
|
|
358
|
+
width: var(--teddy-spacing-200);
|
|
359
|
+
height: var(--teddy-spacing-200);
|
|
365
360
|
}
|
|
366
|
-
._teddy-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
border-color: var(--teddy-color-beige-200);
|
|
361
|
+
._teddy-icon--sm_1ur3a_20 {
|
|
362
|
+
width: var(--teddy-spacing-250);
|
|
363
|
+
height: var(--teddy-spacing-250);
|
|
370
364
|
}
|
|
371
|
-
._teddy-
|
|
372
|
-
|
|
365
|
+
._teddy-icon--md_1ur3a_24 {
|
|
366
|
+
width: var(--teddy-spacing-300);
|
|
367
|
+
height: var(--teddy-spacing-300);
|
|
373
368
|
}
|
|
374
|
-
._teddy-
|
|
375
|
-
|
|
369
|
+
._teddy-icon--lg_1ur3a_28 {
|
|
370
|
+
width: var(--teddy-spacing-400);
|
|
371
|
+
height: var(--teddy-spacing-400);
|
|
376
372
|
}
|
|
377
|
-
._teddy-
|
|
378
|
-
|
|
373
|
+
._teddy-icon--xl_1ur3a_32 {
|
|
374
|
+
width: var(--teddy-spacing-600);
|
|
375
|
+
height: var(--teddy-spacing-600);
|
|
379
376
|
}
|
|
380
|
-
._teddy-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
377
|
+
._teddy-icon-with-children_1ur3a_36 {
|
|
378
|
+
display: inline-flex;
|
|
379
|
+
align-items: center;
|
|
380
|
+
font-family: var(--teddy-typography-family-default);
|
|
381
|
+
gap: var(--teddy-spacing-100);
|
|
382
|
+
}
|
|
383
|
+
}._teddy-scroll-area_1r6mf_1 {
|
|
384
|
+
position: relative;
|
|
385
|
+
overflow: hidden;
|
|
386
|
+
}
|
|
387
|
+
._teddy-scroll-area__viewport_1r6mf_5 {
|
|
388
|
+
height: 100%;
|
|
389
|
+
width: 100%;
|
|
390
|
+
border-radius: inherit;
|
|
391
|
+
display: grid;
|
|
392
|
+
}
|
|
393
|
+
._teddy-scroll-area__scrollbar_1r6mf_11 {
|
|
394
|
+
display: flex;
|
|
395
|
+
/* ensures no selection */
|
|
396
|
+
user-select: none;
|
|
397
|
+
/* disable browser handling of all panning and zooming gestures on touch devices */
|
|
398
|
+
touch-action: none;
|
|
399
|
+
padding: 1px;
|
|
400
|
+
background: var(--teddy-color-border-weak);
|
|
401
|
+
transition: background-color var(--teddy-motion-duration-200) ease-out;
|
|
402
|
+
border-radius: var(--teddy-border-radius-full);
|
|
403
|
+
}
|
|
404
|
+
._teddy-scroll-area__scrollbar_1r6mf_11[data-orientation=vertical] {
|
|
405
|
+
width: var(--teddy-border-width-lg);
|
|
406
|
+
}
|
|
407
|
+
._teddy-scroll-area__scrollbar_1r6mf_11[data-orientation=horizontal] {
|
|
408
|
+
flex-direction: column;
|
|
409
|
+
height: var(--teddy-border-width-lg);
|
|
410
|
+
}
|
|
411
|
+
._teddy-scroll-area__scrollbar_1r6mf_11:hover {
|
|
412
|
+
background-color: var(--teddy-color-transparent-black-200);
|
|
413
|
+
}
|
|
414
|
+
._teddy-scroll-area__scrollbar--hidden_1r6mf_32 {
|
|
415
|
+
width: 1px;
|
|
416
|
+
height: 1px;
|
|
417
|
+
padding: 0;
|
|
418
|
+
margin: -1px;
|
|
419
|
+
overflow: hidden;
|
|
420
|
+
clip: rect(0, 0, 0, 0);
|
|
421
|
+
white-space: nowrap;
|
|
422
|
+
border: 0;
|
|
423
|
+
}
|
|
424
|
+
._teddy-scroll-area__scrollbar--hidden_1r6mf_32:not(caption) {
|
|
425
|
+
position: absolute;
|
|
426
|
+
}
|
|
427
|
+
._teddy-scroll-area__thumb_1r6mf_45 {
|
|
428
|
+
flex: 1;
|
|
429
|
+
background: var(--teddy-color-border-strong);
|
|
430
|
+
border-radius: var(--teddy-border-radius-full);
|
|
431
|
+
position: relative;
|
|
432
|
+
}
|
|
433
|
+
._teddy-scroll-area__thumb_1r6mf_45::before {
|
|
434
|
+
content: "";
|
|
435
|
+
position: absolute;
|
|
436
|
+
top: 50%;
|
|
437
|
+
left: 50%;
|
|
438
|
+
transform: translate(-50%, -50%);
|
|
439
|
+
width: 100%;
|
|
440
|
+
height: 100%;
|
|
441
|
+
min-width: 44px;
|
|
442
|
+
min-height: 44px;
|
|
443
|
+
}
|
|
444
|
+
._teddy-scroll-area__corner_1r6mf_62 {
|
|
445
|
+
background: var(--teddy-color-border-medium);
|
|
446
|
+
}
|
|
447
|
+
._teddy-scroll-area__button_1r6mf_65 {
|
|
448
|
+
position: absolute;
|
|
449
|
+
}
|
|
450
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
451
|
+
._teddy-scroll-area__button_1r6mf_65 {
|
|
452
|
+
transition: opacity var(--teddy-motion-duration-300), transform var(--teddy-motion-duration-300);
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
._teddy-scroll-area__button_1r6mf_65[data-direction=left] {
|
|
456
|
+
left: 0;
|
|
457
|
+
top: 50%;
|
|
458
|
+
transform: translate(0, -50%);
|
|
459
|
+
}
|
|
460
|
+
._teddy-scroll-area__button_1r6mf_65[data-direction=right] {
|
|
461
|
+
right: 0;
|
|
462
|
+
top: 50%;
|
|
463
|
+
transform: translate(0, -50%);
|
|
464
|
+
}
|
|
465
|
+
._teddy-scroll-area__button_1r6mf_65[data-direction=up] {
|
|
466
|
+
top: 0;
|
|
467
|
+
left: 50%;
|
|
468
|
+
transform: translate(-50%, 0);
|
|
469
|
+
}
|
|
470
|
+
._teddy-scroll-area__button_1r6mf_65[data-direction=down] {
|
|
471
|
+
bottom: 0;
|
|
472
|
+
left: 50%;
|
|
473
|
+
transform: translate(-50%, 0);
|
|
474
|
+
}
|
|
475
|
+
._teddy-scroll-area__button--hidden_1r6mf_93 {
|
|
476
|
+
opacity: 0;
|
|
477
|
+
}
|
|
478
|
+
._teddy-scroll-area__button--hidden_1r6mf_93[data-direction=left] {
|
|
479
|
+
transform: translate(-100%, -50%);
|
|
480
|
+
}
|
|
481
|
+
._teddy-scroll-area__button--hidden_1r6mf_93[data-direction=right] {
|
|
482
|
+
transform: translate(100%, -50%);
|
|
483
|
+
}
|
|
484
|
+
._teddy-scroll-area__button--hidden_1r6mf_93[data-direction=up] {
|
|
485
|
+
transform: translate(-50%, -100%);
|
|
486
|
+
}
|
|
487
|
+
._teddy-scroll-area__button--hidden_1r6mf_93[data-direction=down] {
|
|
488
|
+
transform: translate(-50%, 100%);
|
|
489
|
+
}._teddy-table_uodq1_1 {
|
|
490
|
+
width: 100%;
|
|
491
|
+
font-size: var(--teddy-typography-scale-100);
|
|
492
|
+
border-collapse: collapse;
|
|
493
|
+
background-color: var(--teddy-color-background-primary);
|
|
494
|
+
}
|
|
495
|
+
._teddy-table-wrapper_uodq1_7 {
|
|
496
|
+
position: relative;
|
|
497
|
+
width: 100%;
|
|
498
|
+
overflow: auto;
|
|
499
|
+
border: var(--teddy-border-width-xs) solid var(--teddy-color-border-medium);
|
|
500
|
+
border-radius: var(--teddy-border-radius-md);
|
|
501
|
+
z-index: 0;
|
|
502
|
+
}
|
|
503
|
+
._teddy-table__header_uodq1_15 {
|
|
504
|
+
position: sticky;
|
|
505
|
+
top: 0;
|
|
506
|
+
z-index: 1;
|
|
507
|
+
background-color: inherit;
|
|
508
|
+
border-bottom: var(--teddy-border-width-xs) solid var(--teddy-color-border-medium);
|
|
509
|
+
}
|
|
510
|
+
._teddy-table__body_uodq1_22 tr:last-child {
|
|
511
|
+
border-bottom: none;
|
|
512
|
+
}
|
|
513
|
+
._teddy-table__footer_uodq1_25 {
|
|
514
|
+
border-top: var(--teddy-border-width-xs) solid var(--teddy-color-border-medium);
|
|
515
|
+
}
|
|
516
|
+
._teddy-table__row_uodq1_28 {
|
|
517
|
+
border-bottom: var(--teddy-border-width-xs) solid var(--teddy-color-border-medium);
|
|
518
|
+
transition: background-color 0.2s;
|
|
519
|
+
}
|
|
520
|
+
._teddy-table__row_uodq1_28:hover {
|
|
521
|
+
background-color: var(--teddy-color-background-interactive-inactive);
|
|
522
|
+
}
|
|
523
|
+
._teddy-table__row_uodq1_28:last-child {
|
|
524
|
+
border-bottom: none;
|
|
525
|
+
}
|
|
526
|
+
._teddy-table__head_uodq1_15 {
|
|
527
|
+
padding: var(--teddy-spacing-250) var(--teddy-spacing-300);
|
|
528
|
+
text-align: left;
|
|
529
|
+
vertical-align: middle;
|
|
530
|
+
color: var(--teddy-color-text-default);
|
|
531
|
+
display: table-cell;
|
|
532
|
+
font-size: var(--teddy-typography-scale-100);
|
|
533
|
+
}
|
|
534
|
+
._teddy-table__head--numeric_uodq1_46 {
|
|
535
|
+
text-align: right;
|
|
536
|
+
}
|
|
537
|
+
._teddy-table__head--sticky_uodq1_49 {
|
|
538
|
+
position: sticky;
|
|
539
|
+
background-color: var(--teddy-color-background-primary);
|
|
540
|
+
}
|
|
541
|
+
._teddy-table__head--sticky-left_uodq1_53 {
|
|
542
|
+
left: 0;
|
|
543
|
+
}
|
|
544
|
+
._teddy-table__head--sticky-right_uodq1_56 {
|
|
545
|
+
right: 0;
|
|
546
|
+
}
|
|
547
|
+
._teddy-table__head--sticky-top_uodq1_59 {
|
|
548
|
+
top: 0;
|
|
549
|
+
}
|
|
550
|
+
._teddy-table__head--sticky-bottom_uodq1_62 {
|
|
551
|
+
bottom: 0;
|
|
552
|
+
}
|
|
553
|
+
._teddy-table__cell_uodq1_65 {
|
|
554
|
+
padding: var(--teddy-spacing-250) var(--teddy-spacing-300);
|
|
555
|
+
vertical-align: middle;
|
|
556
|
+
}
|
|
557
|
+
._teddy-table__cell--numeric_uodq1_69 {
|
|
558
|
+
text-align: right;
|
|
559
|
+
}
|
|
560
|
+
._teddy-table__cell--sticky_uodq1_72 {
|
|
561
|
+
position: sticky;
|
|
562
|
+
background-color: var(--teddy-color-background-primary);
|
|
563
|
+
}
|
|
564
|
+
._teddy-table__cell--sticky-left_uodq1_76 {
|
|
565
|
+
left: 0;
|
|
566
|
+
}
|
|
567
|
+
._teddy-table__cell--sticky-right_uodq1_79 {
|
|
568
|
+
right: 0;
|
|
569
|
+
}
|
|
570
|
+
._teddy-table__cell--sticky-top_uodq1_82 {
|
|
571
|
+
top: 0;
|
|
572
|
+
}
|
|
573
|
+
._teddy-table__cell--sticky-bottom_uodq1_85 {
|
|
574
|
+
bottom: 0;
|
|
575
|
+
}@layer heading {
|
|
576
|
+
._teddy-heading_r8os0_2 {
|
|
384
577
|
color: var(--teddy-color-text-default);
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
width:
|
|
578
|
+
display: block;
|
|
579
|
+
hyphens: none;
|
|
580
|
+
margin: 0;
|
|
581
|
+
max-width: 60ch;
|
|
389
582
|
}
|
|
390
|
-
._teddy-
|
|
391
|
-
|
|
392
|
-
outline: var(--teddy-border-width-sm) solid var(--teddy-color-border-interactive-primary);
|
|
393
|
-
outline-offset: calc(var(--teddy-border-width-sm) * -1);
|
|
583
|
+
._teddy-heading--hyphens_r8os0_9 {
|
|
584
|
+
hyphens: auto;
|
|
394
585
|
}
|
|
395
|
-
._teddy-
|
|
396
|
-
|
|
586
|
+
._teddy-heading--subsection-100_r8os0_12 {
|
|
587
|
+
font-family: var(--teddy-typography-family-default);
|
|
588
|
+
font-weight: var(--teddy-typography-weight-medium);
|
|
589
|
+
font-size: var(--teddy-typography-scale-100);
|
|
590
|
+
line-height: var(--teddy-typography-line-height-default);
|
|
397
591
|
}
|
|
398
|
-
._teddy-
|
|
399
|
-
-
|
|
592
|
+
._teddy-heading--title-100_r8os0_18 {
|
|
593
|
+
font-family: var(--teddy-typography-family-default);
|
|
594
|
+
font-weight: var(--teddy-typography-weight-bold);
|
|
595
|
+
font-size: clamp(var(--teddy-typography-scale-100), 3cqw, var(--teddy-typography-scale-200));
|
|
596
|
+
line-height: var(--teddy-typography-line-height-default);
|
|
400
597
|
}
|
|
401
|
-
._teddy-
|
|
402
|
-
|
|
598
|
+
._teddy-heading--title-200_r8os0_24 {
|
|
599
|
+
font-family: var(--teddy-typography-family-default);
|
|
600
|
+
font-weight: var(--teddy-typography-weight-bold);
|
|
601
|
+
font-size: clamp(var(--teddy-typography-scale-200), 3cqw, var(--teddy-typography-scale-400));
|
|
602
|
+
line-height: var(--teddy-typography-line-height-default);
|
|
403
603
|
}
|
|
404
|
-
._teddy-
|
|
405
|
-
|
|
604
|
+
._teddy-heading--title-300_r8os0_30 {
|
|
605
|
+
font-family: var(--teddy-typography-family-default);
|
|
606
|
+
font-weight: var(--teddy-typography-weight-bold);
|
|
607
|
+
font-size: clamp(var(--teddy-typography-scale-400), 3cqw, var(--teddy-typography-scale-600));
|
|
608
|
+
line-height: var(--teddy-typography-line-height-default);
|
|
406
609
|
}
|
|
407
|
-
._teddy-
|
|
408
|
-
|
|
610
|
+
._teddy-heading--title-400_r8os0_36 {
|
|
611
|
+
font-family: var(--teddy-typography-family-default);
|
|
612
|
+
font-weight: var(--teddy-typography-weight-bold);
|
|
613
|
+
font-size: clamp(var(--teddy-typography-scale-500), 3cqw, var(--teddy-typography-scale-700));
|
|
614
|
+
line-height: var(--teddy-typography-line-height-default);
|
|
409
615
|
}
|
|
410
|
-
._teddy-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
margin-bottom: var(--teddy-spacing-400);
|
|
616
|
+
._teddy-heading--title-500_r8os0_42 {
|
|
617
|
+
font-family: var(--teddy-typography-family-default);
|
|
618
|
+
font-weight: var(--teddy-typography-weight-bold);
|
|
619
|
+
font-size: clamp(var(--teddy-typography-scale-500), 3cqw, var(--teddy-typography-scale-800));
|
|
620
|
+
line-height: var(--teddy-typography-line-height-tight);
|
|
416
621
|
}
|
|
417
|
-
._teddy-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
622
|
+
._teddy-heading--title-600_r8os0_48 {
|
|
623
|
+
font-family: var(--teddy-typography-family-default);
|
|
624
|
+
font-weight: var(--teddy-typography-weight-bold);
|
|
625
|
+
font-size: clamp(var(--teddy-typography-scale-650), 3cqw, var(--teddy-typography-scale-850));
|
|
626
|
+
line-height: var(--teddy-typography-line-height-tight);
|
|
421
627
|
}
|
|
422
|
-
._teddy-
|
|
423
|
-
|
|
628
|
+
._teddy-heading--title-700_r8os0_54 {
|
|
629
|
+
font-family: var(--teddy-typography-family-default);
|
|
630
|
+
font-weight: var(--teddy-typography-weight-bold);
|
|
631
|
+
font-size: clamp(var(--teddy-typography-scale-700), 3cqw, var(--teddy-typography-scale-900));
|
|
632
|
+
line-height: var(--teddy-typography-line-height-tight);
|
|
424
633
|
}
|
|
425
|
-
._teddy-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
634
|
+
._teddy-heading--display-25_r8os0_60 {
|
|
635
|
+
font-family: var(--teddy-typography-family-display);
|
|
636
|
+
font-weight: var(--teddy-typography-weight-medium);
|
|
637
|
+
font-size: clamp(var(--teddy-typography-scale-600), 3cqw, var(--teddy-typography-scale-800));
|
|
638
|
+
line-height: var(--teddy-typography-line-height-tight);
|
|
429
639
|
}
|
|
430
|
-
._teddy-
|
|
431
|
-
|
|
432
|
-
|
|
640
|
+
._teddy-heading--display-50_r8os0_66 {
|
|
641
|
+
font-family: var(--teddy-typography-family-display);
|
|
642
|
+
font-weight: var(--teddy-typography-weight-medium);
|
|
643
|
+
font-size: clamp(var(--teddy-typography-scale-650), 3cqw, var(--teddy-typography-scale-850));
|
|
644
|
+
line-height: var(--teddy-typography-line-height-tight);
|
|
433
645
|
}
|
|
434
|
-
._teddy-
|
|
435
|
-
|
|
646
|
+
._teddy-heading--display-100_r8os0_72 {
|
|
647
|
+
font-family: var(--teddy-typography-family-display);
|
|
648
|
+
font-weight: var(--teddy-typography-weight-medium);
|
|
649
|
+
font-size: clamp(var(--teddy-typography-scale-700), 3cqw, var(--teddy-typography-scale-900));
|
|
650
|
+
line-height: var(--teddy-typography-line-height-tight);
|
|
436
651
|
}
|
|
437
|
-
._teddy-
|
|
438
|
-
|
|
652
|
+
._teddy-heading--display-200_r8os0_78 {
|
|
653
|
+
font-family: var(--teddy-typography-family-display);
|
|
654
|
+
font-weight: var(--teddy-typography-weight-medium);
|
|
655
|
+
font-size: clamp(var(--teddy-typography-scale-800), 3cqw, var(--teddy-typography-scale-1000));
|
|
656
|
+
line-height: var(--teddy-typography-line-height-tight);
|
|
439
657
|
}
|
|
440
|
-
|
|
441
|
-
|
|
658
|
+
}._teddy-flip-card_onxd6_1 {
|
|
659
|
+
position: relative;
|
|
660
|
+
perspective: 1000px;
|
|
661
|
+
transform-style: preserve-3d;
|
|
662
|
+
z-index: 0;
|
|
663
|
+
}
|
|
664
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
665
|
+
._teddy-flip-card_onxd6_1 {
|
|
666
|
+
transition: transform var(--teddy-motion-duration-500) var(--teddy-motion-easing-ease-in-out);
|
|
442
667
|
}
|
|
443
|
-
|
|
444
|
-
|
|
668
|
+
}
|
|
669
|
+
._teddy-flip-card--flipped_onxd6_12 {
|
|
670
|
+
transform: rotateY(180deg);
|
|
671
|
+
}
|
|
672
|
+
._teddy-flip-card__front_onxd6_15 {
|
|
673
|
+
backface-visibility: hidden;
|
|
674
|
+
z-index: 2;
|
|
675
|
+
}
|
|
676
|
+
._teddy-flip-card__back_onxd6_19 {
|
|
677
|
+
position: absolute;
|
|
678
|
+
top: 0;
|
|
679
|
+
left: 0;
|
|
680
|
+
width: 100%;
|
|
681
|
+
height: 100%;
|
|
682
|
+
backface-visibility: hidden;
|
|
683
|
+
transform: rotateY(180deg);
|
|
684
|
+
display: grid;
|
|
685
|
+
justify-content: normal;
|
|
686
|
+
align-content: stretch;
|
|
687
|
+
padding: 0;
|
|
688
|
+
}
|
|
689
|
+
._teddy-flip-card__back-inner_onxd6_32 {
|
|
690
|
+
padding: 0;
|
|
691
|
+
margin: 0;
|
|
692
|
+
width: 100%;
|
|
693
|
+
height: 100%;
|
|
694
|
+
justify-content: stretch;
|
|
695
|
+
position: initial;
|
|
696
|
+
}
|
|
697
|
+
._teddy-flip-card__scroll-area-view-port_onxd6_40 {
|
|
698
|
+
padding: var(--teddy-spacing-250) var(--teddy-spacing-250) 0 var(--teddy-spacing-250);
|
|
699
|
+
margin-bottom: var(--teddy-spacing-250);
|
|
700
|
+
}
|
|
701
|
+
._teddy-flip-card__footer_onxd6_44 {
|
|
702
|
+
position: absolute;
|
|
703
|
+
inset: auto 0 0 0;
|
|
704
|
+
padding: var(--teddy-spacing-50);
|
|
705
|
+
border-top: var(--teddy-border-width-xs) solid var(--teddy-color-border-weak);
|
|
706
|
+
border-radius: 0 0 var(--teddy-border-radius-md) var(--teddy-border-radius-md);
|
|
707
|
+
}
|
|
708
|
+
._teddy-flip-card__footer--purple-light_onxd6_51 {
|
|
709
|
+
background-color: var(--teddy-color-background-interactive-primary-negative);
|
|
710
|
+
}
|
|
711
|
+
._teddy-flip-card__footer--purple-dark_onxd6_54 {
|
|
712
|
+
background-color: var(--teddy-color-brand-deep-purple);
|
|
713
|
+
}
|
|
714
|
+
._teddy-flip-card__footer--beige_onxd6_57 {
|
|
715
|
+
background-color: var(--teddy-color-background-interactive-primary);
|
|
716
|
+
}
|
|
717
|
+
._teddy-flip-card__footer--beige-light_onxd6_60 {
|
|
718
|
+
background-color: var(--teddy-color-background-interactive-primary-negative);
|
|
719
|
+
}
|
|
720
|
+
._teddy-flip-card__footer--gray_onxd6_63 {
|
|
721
|
+
background-color: var(--teddy-color-background-secondary);
|
|
722
|
+
}
|
|
723
|
+
._teddy-flip-card__footer--white_onxd6_66 {
|
|
724
|
+
background-color: var(--teddy-color-brand-white);
|
|
725
|
+
}@layer grid {
|
|
726
|
+
._teddy-grid_1dv1t_2 {
|
|
727
|
+
box-sizing: border-box;
|
|
728
|
+
display: grid;
|
|
729
|
+
align-items: stretch;
|
|
730
|
+
justify-content: start;
|
|
731
|
+
grid-template-rows: none;
|
|
445
732
|
}
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
733
|
+
}@layer heading, flex, grid, button, card;
|
|
734
|
+
@layer card {
|
|
735
|
+
._teddy-card_6pylp_3 {
|
|
736
|
+
border-radius: var(--teddy-border-radius-md);
|
|
737
|
+
padding: var(--teddy-spacing-250);
|
|
738
|
+
position: relative;
|
|
450
739
|
}
|
|
451
|
-
|
|
452
|
-
|
|
740
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
741
|
+
._teddy-card_6pylp_3 {
|
|
742
|
+
transition: background-color var(--teddy-motion-duration-100) ease;
|
|
743
|
+
}
|
|
453
744
|
}
|
|
454
|
-
._teddy-
|
|
455
|
-
|
|
745
|
+
._teddy-card__slot_6pylp_13 {
|
|
746
|
+
transform: translateY(-50%);
|
|
456
747
|
}
|
|
457
|
-
._teddy-
|
|
458
|
-
|
|
748
|
+
._teddy-card__slot--bottom_6pylp_16 {
|
|
749
|
+
transform: translateY(50%);
|
|
459
750
|
}
|
|
460
|
-
._teddy-
|
|
461
|
-
|
|
751
|
+
._teddy-card__slot--center_6pylp_19 {
|
|
752
|
+
transform: translate(-50%, -50%);
|
|
462
753
|
}
|
|
463
|
-
._teddy-
|
|
464
|
-
|
|
465
|
-
background-size: cover;
|
|
466
|
-
background-position: center;
|
|
754
|
+
._teddy-card__slot--bottom_6pylp_16._teddy-card__slot--center_6pylp_19 {
|
|
755
|
+
transform: translate(-50%, 50%);
|
|
467
756
|
}
|
|
468
|
-
._teddy-
|
|
469
|
-
|
|
470
|
-
overflow: hidden;
|
|
757
|
+
._teddy-card__slot--no-translate_6pylp_25 {
|
|
758
|
+
transform: initial;
|
|
471
759
|
}
|
|
472
|
-
._teddy-
|
|
473
|
-
|
|
760
|
+
._teddy-card_6pylp_3::before {
|
|
761
|
+
content: "";
|
|
762
|
+
display: block;
|
|
763
|
+
position: absolute;
|
|
764
|
+
inset: 0;
|
|
765
|
+
pointer-events: none;
|
|
766
|
+
border-radius: inherit;
|
|
767
|
+
opacity: 0;
|
|
768
|
+
box-shadow: var(--teddy-shadow-sm);
|
|
474
769
|
}
|
|
475
|
-
|
|
476
|
-
|
|
770
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
771
|
+
._teddy-card_6pylp_3::before {
|
|
772
|
+
transition: var(--teddy-motion-duration-300) ease;
|
|
773
|
+
transition-property: opacity, box-shadow;
|
|
774
|
+
}
|
|
477
775
|
}
|
|
478
|
-
._teddy-
|
|
479
|
-
|
|
776
|
+
._teddy-card--shadow_6pylp_44::before {
|
|
777
|
+
opacity: 1;
|
|
480
778
|
}
|
|
481
|
-
._teddy-
|
|
482
|
-
|
|
779
|
+
._teddy-card_6pylp_3:has(._teddy-card__action_6pylp_47:not(._teddy-card__action--disabled_6pylp_47)) {
|
|
780
|
+
cursor: pointer;
|
|
483
781
|
}
|
|
484
|
-
._teddy-
|
|
485
|
-
|
|
782
|
+
._teddy-card_6pylp_3:has(._teddy-card__action_6pylp_47:not(._teddy-card__action--disabled_6pylp_47)):hover:has(._teddy-card__action_6pylp_47:not(._teddy-card__action--disabled_6pylp_47))::before {
|
|
783
|
+
opacity: 1;
|
|
784
|
+
box-shadow: var(--teddy-shadow-md);
|
|
486
785
|
}
|
|
487
|
-
._teddy-
|
|
488
|
-
border-
|
|
786
|
+
._teddy-card--border_6pylp_54 {
|
|
787
|
+
border: var(--teddy-border-width-xs) solid transparent;
|
|
489
788
|
}
|
|
490
|
-
._teddy-
|
|
491
|
-
|
|
789
|
+
._teddy-card--layout_6pylp_57 ._teddy-card__illustration_6pylp_57 {
|
|
790
|
+
grid-area: illustration;
|
|
492
791
|
}
|
|
493
|
-
._teddy-
|
|
494
|
-
|
|
792
|
+
._teddy-card--layout_6pylp_57 ._teddy-card__carousel_6pylp_60 {
|
|
793
|
+
grid-area: carousel;
|
|
495
794
|
}
|
|
496
|
-
._teddy-
|
|
497
|
-
|
|
795
|
+
._teddy-card--layout_6pylp_57 ._teddy-card__content_6pylp_63 {
|
|
796
|
+
grid-area: content;
|
|
498
797
|
}
|
|
499
|
-
._teddy-
|
|
500
|
-
|
|
798
|
+
._teddy-card--layout_6pylp_57 ._teddy-card__heading_6pylp_66 {
|
|
799
|
+
grid-area: heading;
|
|
501
800
|
}
|
|
502
|
-
._teddy-
|
|
503
|
-
|
|
801
|
+
._teddy-card--layout_6pylp_57 ._teddy-card__action-wrapper_6pylp_69 {
|
|
802
|
+
grid-area: action;
|
|
504
803
|
}
|
|
505
|
-
._teddy-
|
|
506
|
-
|
|
804
|
+
._teddy-card--layout_6pylp_57 ._teddy-card__footer_6pylp_72 {
|
|
805
|
+
grid-area: footer;
|
|
507
806
|
}
|
|
508
|
-
._teddy-
|
|
509
|
-
|
|
807
|
+
._teddy-card--layout_6pylp_57 ._teddy-card__overline_6pylp_75 {
|
|
808
|
+
grid-area: overline;
|
|
510
809
|
}
|
|
511
|
-
._teddy-
|
|
512
|
-
|
|
810
|
+
._teddy-card--layout_6pylp_57 ._teddy-card__description_6pylp_78 {
|
|
811
|
+
grid-area: description;
|
|
513
812
|
}
|
|
514
|
-
._teddy-
|
|
515
|
-
|
|
813
|
+
._teddy-card--layout_6pylp_57 ._teddy-card__color-dots_6pylp_81 {
|
|
814
|
+
grid-area: colors;
|
|
516
815
|
}
|
|
517
|
-
._teddy-
|
|
518
|
-
|
|
816
|
+
._teddy-card--layout_6pylp_57 ._teddy-card__availability_6pylp_84 {
|
|
817
|
+
grid-area: availability;
|
|
519
818
|
}
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
color: var(--teddy-color-text-default);
|
|
523
|
-
display: block;
|
|
524
|
-
hyphens: none;
|
|
525
|
-
margin: 0;
|
|
526
|
-
max-width: 60ch;
|
|
819
|
+
._teddy-card--layout_6pylp_57 ._teddy-card__price_6pylp_87 {
|
|
820
|
+
grid-area: price;
|
|
527
821
|
}
|
|
528
|
-
._teddy-
|
|
529
|
-
|
|
822
|
+
._teddy-card--default_6pylp_90 {
|
|
823
|
+
display: flex;
|
|
824
|
+
flex-direction: column;
|
|
825
|
+
gap: var(--teddy-spacing-200);
|
|
530
826
|
}
|
|
531
|
-
._teddy-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
827
|
+
._teddy-card--navigation-vertical_6pylp_95 {
|
|
828
|
+
grid-template-rows: auto auto 1fr auto;
|
|
829
|
+
justify-items: start;
|
|
830
|
+
justify-content: stretch;
|
|
831
|
+
align-items: baseline;
|
|
832
|
+
grid-template-areas: "illustration" "heading" "content" "action";
|
|
536
833
|
}
|
|
537
|
-
._teddy-
|
|
538
|
-
|
|
539
|
-
font-weight: var(--teddy-typography-weight-bold);
|
|
540
|
-
font-size: clamp(var(--teddy-typography-scale-100), 3cqw, var(--teddy-typography-scale-200));
|
|
541
|
-
line-height: var(--teddy-typography-line-height-default);
|
|
834
|
+
._teddy-card--navigation-vertical_6pylp_95 ._teddy-card__illustration_6pylp_57 {
|
|
835
|
+
margin-bottom: var(--teddy-spacing-200);
|
|
542
836
|
}
|
|
543
|
-
._teddy-
|
|
544
|
-
|
|
545
|
-
font-weight: var(--teddy-typography-weight-bold);
|
|
546
|
-
font-size: clamp(var(--teddy-typography-scale-200), 3cqw, var(--teddy-typography-scale-400));
|
|
547
|
-
line-height: var(--teddy-typography-line-height-default);
|
|
837
|
+
._teddy-card--navigation-vertical_6pylp_95 ._teddy-card__content_6pylp_63 {
|
|
838
|
+
margin-bottom: var(--teddy-spacing-200);
|
|
548
839
|
}
|
|
549
|
-
._teddy-
|
|
550
|
-
|
|
551
|
-
font-weight: var(--teddy-typography-weight-bold);
|
|
552
|
-
font-size: clamp(var(--teddy-typography-scale-400), 3cqw, var(--teddy-typography-scale-600));
|
|
553
|
-
line-height: var(--teddy-typography-line-height-default);
|
|
840
|
+
._teddy-card--navigation-vertical_6pylp_95 ._teddy-card__heading_6pylp_66 {
|
|
841
|
+
margin-bottom: var(--teddy-spacing-100);
|
|
554
842
|
}
|
|
555
|
-
._teddy-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
font-size: clamp(var(--teddy-typography-scale-500), 3cqw, var(--teddy-typography-scale-700));
|
|
559
|
-
line-height: var(--teddy-typography-line-height-default);
|
|
843
|
+
._teddy-card--navigation-vertical_6pylp_95 ._teddy-card__action-wrapper_6pylp_69 {
|
|
844
|
+
margin-top: auto;
|
|
845
|
+
justify-self: end;
|
|
560
846
|
}
|
|
561
|
-
._teddy-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
847
|
+
._teddy-card--navigation-horizontal-small_6pylp_115 {
|
|
848
|
+
grid-template-columns: auto 1fr auto;
|
|
849
|
+
grid-template-rows: auto 1fr;
|
|
850
|
+
grid-template-areas: "illustration heading action" "illustration content action";
|
|
851
|
+
column-gap: var(--teddy-spacing-200);
|
|
566
852
|
}
|
|
567
|
-
._teddy-
|
|
568
|
-
|
|
569
|
-
font-weight: var(--teddy-typography-weight-bold);
|
|
570
|
-
font-size: clamp(var(--teddy-typography-scale-650), 3cqw, var(--teddy-typography-scale-850));
|
|
571
|
-
line-height: var(--teddy-typography-line-height-tight);
|
|
853
|
+
._teddy-card--navigation-horizontal-small_6pylp_115 ._teddy-card__heading_6pylp_66 {
|
|
854
|
+
margin-bottom: var(--teddy-spacing-100);
|
|
572
855
|
}
|
|
573
|
-
._teddy-
|
|
574
|
-
|
|
575
|
-
font-weight: var(--teddy-typography-weight-bold);
|
|
576
|
-
font-size: clamp(var(--teddy-typography-scale-700), 3cqw, var(--teddy-typography-scale-900));
|
|
577
|
-
line-height: var(--teddy-typography-line-height-tight);
|
|
856
|
+
._teddy-card--navigation-horizontal-small_6pylp_115 ._teddy-card__action-wrapper_6pylp_69 {
|
|
857
|
+
margin-top: auto;
|
|
578
858
|
}
|
|
579
|
-
._teddy-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
859
|
+
._teddy-card--navigation-horizontal-small-centered_6pylp_127 {
|
|
860
|
+
width: 100%;
|
|
861
|
+
max-width: 26rem;
|
|
862
|
+
grid-template-columns: auto 1fr auto;
|
|
863
|
+
grid-template-rows: 1fr auto;
|
|
864
|
+
grid-template-areas: "illustration heading action" "illustration content action";
|
|
865
|
+
align-items: center;
|
|
866
|
+
column-gap: var(--teddy-spacing-200);
|
|
584
867
|
}
|
|
585
|
-
._teddy-
|
|
586
|
-
|
|
587
|
-
font-weight: var(--teddy-typography-weight-medium);
|
|
588
|
-
font-size: clamp(var(--teddy-typography-scale-650), 3cqw, var(--teddy-typography-scale-850));
|
|
589
|
-
line-height: var(--teddy-typography-line-height-tight);
|
|
868
|
+
._teddy-card--navigation-horizontal-small-centered_6pylp_127 ._teddy-card__content_6pylp_63 {
|
|
869
|
+
margin-top: var(--teddy-spacing-200);
|
|
590
870
|
}
|
|
591
|
-
._teddy-
|
|
592
|
-
|
|
593
|
-
font-weight: var(--teddy-typography-weight-medium);
|
|
594
|
-
font-size: clamp(var(--teddy-typography-scale-700), 3cqw, var(--teddy-typography-scale-900));
|
|
595
|
-
line-height: var(--teddy-typography-line-height-tight);
|
|
871
|
+
._teddy-card--navigation-horizontal-small-centered_6pylp_127 ._teddy-card__action-wrapper_6pylp_69 {
|
|
872
|
+
margin: 0;
|
|
596
873
|
}
|
|
597
|
-
._teddy-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
font-size: clamp(var(--teddy-typography-scale-800), 3cqw, var(--teddy-typography-scale-1000));
|
|
601
|
-
line-height: var(--teddy-typography-line-height-tight);
|
|
874
|
+
._teddy-card--navigation-horizontal-small-centered_6pylp_127 ._teddy-card__illustration_6pylp_57 {
|
|
875
|
+
max-height: 80px;
|
|
876
|
+
max-width: 100px;
|
|
602
877
|
}
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
width: var(--teddy-spacing-250);
|
|
606
|
-
}
|
|
607
|
-
._teddy-spinner--xs_ywden_5 {
|
|
608
|
-
height: var(--teddy-spacing-300);
|
|
609
|
-
width: var(--teddy-spacing-300);
|
|
610
|
-
}
|
|
611
|
-
._teddy-spinner--sm_ywden_9 {
|
|
612
|
-
height: var(--teddy-spacing-400);
|
|
613
|
-
width: var(--teddy-spacing-400);
|
|
614
|
-
}
|
|
615
|
-
._teddy-spinner--md_ywden_13 {
|
|
616
|
-
height: var(--teddy-spacing-600);
|
|
617
|
-
width: var(--teddy-spacing-600);
|
|
618
|
-
stroke-width: 3.5;
|
|
619
|
-
}
|
|
620
|
-
._teddy-spinner--lg_ywden_18 {
|
|
621
|
-
height: var(--teddy-spacing-800);
|
|
622
|
-
width: var(--teddy-spacing-800);
|
|
623
|
-
stroke-width: 3;
|
|
624
|
-
}
|
|
625
|
-
._teddy-spinner__circle_ywden_23 {
|
|
626
|
-
--stroke-color: var(--teddy-color-border-interactive-primary);
|
|
627
|
-
stroke-dasharray: 150;
|
|
628
|
-
animation: _dash_ywden_1 2s ease-in-out infinite, _rotate_ywden_1 1s linear infinite;
|
|
629
|
-
transform-origin: center;
|
|
630
|
-
stroke-width: 4;
|
|
631
|
-
stroke-linecap: round;
|
|
632
|
-
fill: transparent;
|
|
633
|
-
stroke: var(--stroke-color);
|
|
634
|
-
}
|
|
635
|
-
._teddy-spinner__circle--disabled_ywden_33 {
|
|
636
|
-
--stroke-color: var(--teddy-color-border-weak);
|
|
637
|
-
}
|
|
638
|
-
._teddy-spinner__circle--negative_ywden_36 {
|
|
639
|
-
--stroke-color: var(--teddy-color-border-interactive-primary-negative);
|
|
640
|
-
}
|
|
641
|
-
._teddy-spinner__circle--negative-disabled_ywden_39 {
|
|
642
|
-
--stroke-color: var(--teddy-color-border-weak-negative);
|
|
643
|
-
}
|
|
644
|
-
|
|
645
|
-
@keyframes _rotate_ywden_1 {
|
|
646
|
-
from {
|
|
647
|
-
transform: rotate(0deg);
|
|
878
|
+
._teddy-card--navigation-horizontal-small-centered_6pylp_127 ._teddy-card__illustration_6pylp_57 img {
|
|
879
|
+
object-fit: contain;
|
|
648
880
|
}
|
|
649
|
-
|
|
650
|
-
|
|
881
|
+
._teddy-card--navigation-horizontal-large_6pylp_149 {
|
|
882
|
+
grid-template-columns: 1fr auto;
|
|
883
|
+
grid-template-rows: auto auto 1fr;
|
|
884
|
+
grid-template-areas: "illustration action" "heading action" "content action";
|
|
885
|
+
column-gap: var(--teddy-spacing-200);
|
|
651
886
|
}
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
0% {
|
|
655
|
-
stroke-dashoffset: 125;
|
|
887
|
+
._teddy-card--navigation-horizontal-large_6pylp_149 ._teddy-card__heading_6pylp_66 {
|
|
888
|
+
margin-bottom: var(--teddy-spacing-100);
|
|
656
889
|
}
|
|
657
|
-
|
|
658
|
-
|
|
890
|
+
._teddy-card--navigation-horizontal-large_6pylp_149 ._teddy-card__action-wrapper_6pylp_69 {
|
|
891
|
+
margin-top: auto;
|
|
659
892
|
}
|
|
660
|
-
|
|
661
|
-
|
|
893
|
+
._teddy-card--rich-card_6pylp_161 {
|
|
894
|
+
justify-items: start;
|
|
895
|
+
align-items: baseline;
|
|
896
|
+
grid-template-rows: auto auto 1fr auto;
|
|
897
|
+
grid-template-areas: "illustration" "heading" "content" "action";
|
|
662
898
|
}
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
opacity: 0;
|
|
899
|
+
._teddy-card--rich-card_6pylp_161 ._teddy-card__illustration_6pylp_57 {
|
|
900
|
+
margin-bottom: var(--teddy-spacing-200);
|
|
666
901
|
}
|
|
667
|
-
|
|
668
|
-
|
|
902
|
+
._teddy-card--rich-card_6pylp_161 ._teddy-card__content_6pylp_63 {
|
|
903
|
+
margin-bottom: var(--teddy-spacing-200);
|
|
669
904
|
}
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
0% {
|
|
673
|
-
scale: 0;
|
|
905
|
+
._teddy-card--rich-card_6pylp_161 ._teddy-card__heading_6pylp_66 {
|
|
906
|
+
margin-bottom: var(--teddy-spacing-100);
|
|
674
907
|
}
|
|
675
|
-
|
|
676
|
-
|
|
908
|
+
._teddy-card--rich-card_6pylp_161 ._teddy-card__action-wrapper_6pylp_69 {
|
|
909
|
+
margin-top: auto;
|
|
677
910
|
}
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
cursor: pointer;
|
|
685
|
-
display: inline-flex;
|
|
686
|
-
font-size: var(--teddy-typography-scale-100);
|
|
687
|
-
font-family: var(--teddy-typography-family-default);
|
|
688
|
-
font-weight: var(--teddy-typography-weight-medium);
|
|
689
|
-
gap: var(--teddy-spacing-100);
|
|
690
|
-
justify-content: center;
|
|
691
|
-
line-height: var(--teddy-spacing-200);
|
|
692
|
-
outline: 0;
|
|
693
|
-
position: relative;
|
|
694
|
-
text-decoration: none;
|
|
695
|
-
transition-duration: var(--teddy-motion-duration-100);
|
|
696
|
-
transition-timing-function: var(--teddy-motion-easing-ease-in-out);
|
|
697
|
-
transition-property: background-color, color;
|
|
698
|
-
width: auto;
|
|
911
|
+
@media (max-width: 800px) {
|
|
912
|
+
._teddy-card--rich-card-large_6pylp_180 {
|
|
913
|
+
align-items: baseline;
|
|
914
|
+
grid-template-rows: auto auto 1fr auto;
|
|
915
|
+
grid-template-areas: "illustration" "heading" "content" "action";
|
|
916
|
+
}
|
|
699
917
|
}
|
|
700
|
-
._teddy-
|
|
701
|
-
|
|
702
|
-
box-shadow: 0 0 0 var(--teddy-border-width-sm) var(--teddy-color-border-interactive-focus);
|
|
703
|
-
content: "";
|
|
704
|
-
opacity: 1;
|
|
705
|
-
display: block;
|
|
706
|
-
inset: calc(var(--teddy-spacing-25) * -1);
|
|
707
|
-
position: absolute;
|
|
918
|
+
._teddy-card--rich-card-large_6pylp_180 ._teddy-card__illustration_6pylp_57 img {
|
|
919
|
+
object-fit: cover;
|
|
708
920
|
}
|
|
709
|
-
|
|
710
|
-
|
|
921
|
+
@media (min-width: 801px) {
|
|
922
|
+
._teddy-card--rich-card-large_6pylp_180 ._teddy-card__illustration_6pylp_57 {
|
|
923
|
+
grid-column-start: 1;
|
|
924
|
+
margin-right: var(--teddy-spacing-600);
|
|
925
|
+
}
|
|
711
926
|
}
|
|
712
|
-
._teddy-
|
|
713
|
-
|
|
927
|
+
._teddy-card--rich-card-large_6pylp_180 ._teddy-card__content_6pylp_63 {
|
|
928
|
+
margin-top: 2rem;
|
|
714
929
|
}
|
|
715
|
-
|
|
716
|
-
|
|
930
|
+
@media (min-width: 801px) {
|
|
931
|
+
._teddy-card--rich-card-large_6pylp_180 ._teddy-card__content_6pylp_63 {
|
|
932
|
+
grid-column-start: 2;
|
|
933
|
+
margin-top: 0;
|
|
934
|
+
align-content: center;
|
|
935
|
+
}
|
|
717
936
|
}
|
|
718
|
-
._teddy-
|
|
719
|
-
|
|
937
|
+
._teddy-card--rich-card-large_6pylp_180 ._teddy-card__action_6pylp_47 {
|
|
938
|
+
margin-top: var(--teddy-spacing-200);
|
|
720
939
|
}
|
|
721
|
-
._teddy-
|
|
722
|
-
|
|
940
|
+
._teddy-card--rich-card-large_6pylp_180 ._teddy-card__heading_6pylp_66 {
|
|
941
|
+
margin-top: var(--teddy-spacing-100);
|
|
942
|
+
margin-bottom: var(--teddy-spacing-100);
|
|
723
943
|
}
|
|
724
|
-
._teddy-
|
|
725
|
-
|
|
944
|
+
._teddy-card__line_6pylp_212 {
|
|
945
|
+
border: 0;
|
|
946
|
+
border-top: var(--teddy-border-width-xs) solid var(--teddy-color-border-weak);
|
|
726
947
|
}
|
|
727
|
-
._teddy-
|
|
728
|
-
|
|
948
|
+
._teddy-card--purple-light_6pylp_216 {
|
|
949
|
+
background-color: var(--teddy-color-background-interactive-primary-negative);
|
|
950
|
+
color: var(--teddy-color-text-default);
|
|
951
|
+
border-color: var(--teddy-color-background-interactive-primary-negative);
|
|
729
952
|
}
|
|
730
|
-
._teddy-
|
|
731
|
-
|
|
953
|
+
._teddy-card--purple-light_6pylp_216:hover:has(._teddy-card__action_6pylp_47:not(._teddy-card__action--disabled_6pylp_47)) {
|
|
954
|
+
background-color: var(--teddy-color-background-interactive-primary-negative-hover);
|
|
732
955
|
}
|
|
733
|
-
._teddy-
|
|
734
|
-
|
|
956
|
+
._teddy-card--purple-light_6pylp_216:active:has(._teddy-card__action_6pylp_47:not(._teddy-card__action--disabled_6pylp_47)) {
|
|
957
|
+
background-color: var(--teddy-color-background-interactive-primary-negative-active);
|
|
735
958
|
}
|
|
736
|
-
._teddy-
|
|
737
|
-
background-color: var(--teddy-color-background-interactive-
|
|
738
|
-
color: var(--teddy-color-text-interactive-on-primary);
|
|
959
|
+
._teddy-card--purple-light_6pylp_216:has(._teddy-card__action--disabled_6pylp_47) {
|
|
960
|
+
background-color: var(--teddy-color-background-interactive-disabled);
|
|
739
961
|
}
|
|
740
|
-
._teddy-
|
|
741
|
-
background-color: var(--teddy-color-
|
|
962
|
+
._teddy-card--purple-dark_6pylp_230 {
|
|
963
|
+
background-color: var(--teddy-color-brand-deep-purple);
|
|
964
|
+
color: var(--teddy-color-text-default-negative);
|
|
965
|
+
border-color: var(--teddy-color-brand-deep-purple);
|
|
742
966
|
}
|
|
743
|
-
._teddy-
|
|
744
|
-
background-color: var(--teddy-color-background-interactive-
|
|
967
|
+
._teddy-card--purple-dark_6pylp_230:hover:has(._teddy-card__action_6pylp_47:not(._teddy-card__action--disabled_6pylp_47)) {
|
|
968
|
+
background-color: var(--teddy-color-background-interactive-transparent-negative-hover);
|
|
745
969
|
}
|
|
746
|
-
._teddy-
|
|
747
|
-
background-color: var(--teddy-color-background-interactive-
|
|
748
|
-
color: var(--teddy-color-text-interactive-on-primary-negative);
|
|
970
|
+
._teddy-card--purple-dark_6pylp_230:active:has(._teddy-card__action_6pylp_47:not(._teddy-card__action--disabled_6pylp_47)) {
|
|
971
|
+
background-color: var(--teddy-color-background-interactive-transparent-negative-active);
|
|
749
972
|
}
|
|
750
|
-
._teddy-
|
|
751
|
-
|
|
752
|
-
|
|
973
|
+
._teddy-card--purple-dark_6pylp_230:has(._teddy-card__action--disabled_6pylp_47) {
|
|
974
|
+
color: var(--teddy-color-text-default);
|
|
975
|
+
background-color: var(--teddy-color-background-interactive-disabled);
|
|
753
976
|
}
|
|
754
|
-
._teddy-
|
|
755
|
-
|
|
756
|
-
|
|
977
|
+
._teddy-card--purple-dark_6pylp_230:has(._teddy-card__action--disabled_6pylp_47) ._teddy-card__action_6pylp_47 {
|
|
978
|
+
color: var(--teddy-color-text-weak);
|
|
979
|
+
background-color: var(--teddy-color-background-interactive-disabled);
|
|
757
980
|
}
|
|
758
|
-
._teddy-
|
|
759
|
-
background-color: var(--teddy-color-
|
|
760
|
-
|
|
761
|
-
color: var(--teddy-color-
|
|
981
|
+
._teddy-card--white_6pylp_249 {
|
|
982
|
+
background-color: var(--teddy-color-brand-white);
|
|
983
|
+
color: var(--teddy-color-text-default);
|
|
984
|
+
border-color: var(--teddy-color-border-weak);
|
|
762
985
|
}
|
|
763
|
-
._teddy-
|
|
986
|
+
._teddy-card--white_6pylp_249:hover:has(._teddy-card__action_6pylp_47:not(._teddy-card__action--disabled_6pylp_47)) {
|
|
764
987
|
background-color: var(--teddy-color-background-interactive-transparent-hover);
|
|
765
988
|
}
|
|
766
|
-
._teddy-
|
|
989
|
+
._teddy-card--white_6pylp_249:active:has(._teddy-card__action_6pylp_47:not(._teddy-card__action--disabled_6pylp_47)) {
|
|
767
990
|
background-color: var(--teddy-color-background-interactive-transparent-active);
|
|
768
991
|
}
|
|
769
|
-
._teddy-
|
|
770
|
-
background-color: var(--teddy-color-background-interactive-
|
|
771
|
-
box-shadow: inset 0 0 0 var(--teddy-border-width-xs) var(--teddy-color-border-interactive-primary-negative);
|
|
772
|
-
color: var(--teddy-color-text-interactive-primary-negative);
|
|
992
|
+
._teddy-card--white_6pylp_249:has(._teddy-card__action--disabled_6pylp_47) {
|
|
993
|
+
background-color: var(--teddy-color-background-interactive-disabled);
|
|
773
994
|
}
|
|
774
|
-
._teddy-
|
|
775
|
-
background-color: var(--teddy-color-background-
|
|
995
|
+
._teddy-card--gray_6pylp_263 {
|
|
996
|
+
background-color: var(--teddy-color-background-secondary);
|
|
997
|
+
color: var(--teddy-color-text-default);
|
|
998
|
+
border-color: var(--teddy-color-border-interactive-subtle);
|
|
776
999
|
}
|
|
777
|
-
._teddy-
|
|
778
|
-
background-color: var(--teddy-color-
|
|
1000
|
+
._teddy-card--gray_6pylp_263:hover:has(._teddy-card__action_6pylp_47:not(._teddy-card__action--disabled_6pylp_47)) {
|
|
1001
|
+
background-color: var(--teddy-color-gray-100);
|
|
779
1002
|
}
|
|
780
|
-
._teddy-
|
|
781
|
-
background-color: var(--teddy-color-
|
|
782
|
-
color: var(--teddy-color-text-interactive-on-expressive);
|
|
1003
|
+
._teddy-card--gray_6pylp_263:active:has(._teddy-card__action_6pylp_47:not(._teddy-card__action--disabled_6pylp_47)) {
|
|
1004
|
+
background-color: var(--teddy-color-gray-200);
|
|
783
1005
|
}
|
|
784
|
-
._teddy-
|
|
785
|
-
background-color: var(--teddy-color-background-interactive-
|
|
1006
|
+
._teddy-card--gray_6pylp_263:has(._teddy-card__action--disabled_6pylp_47) {
|
|
1007
|
+
background-color: var(--teddy-color-background-interactive-disabled);
|
|
786
1008
|
}
|
|
787
|
-
._teddy-
|
|
788
|
-
background-color: var(--teddy-color-
|
|
1009
|
+
._teddy-card--beige_6pylp_277 {
|
|
1010
|
+
background-color: var(--teddy-color-beige-100);
|
|
1011
|
+
color: var(--teddy-color-text-default);
|
|
1012
|
+
border-color: var(--teddy-color-beige-300);
|
|
789
1013
|
}
|
|
790
|
-
._teddy-
|
|
791
|
-
background-color: var(--teddy-color-
|
|
792
|
-
color: var(--teddy-color-text-interactive-on-expressive-negative);
|
|
1014
|
+
._teddy-card--beige_6pylp_277:hover:has(._teddy-card__action_6pylp_47:not(._teddy-card__action--disabled_6pylp_47)) {
|
|
1015
|
+
background-color: var(--teddy-color-beige-200);
|
|
793
1016
|
}
|
|
794
|
-
._teddy-
|
|
795
|
-
background-color: var(--teddy-color-
|
|
796
|
-
color: var(--teddy-color-text-interactive-on-expressive-negative-hover);
|
|
1017
|
+
._teddy-card--beige_6pylp_277:active:has(._teddy-card__action_6pylp_47:not(._teddy-card__action--disabled_6pylp_47)) {
|
|
1018
|
+
background-color: var(--teddy-color-beige-300);
|
|
797
1019
|
}
|
|
798
|
-
._teddy-
|
|
799
|
-
background-color: var(--teddy-color-background-interactive-
|
|
800
|
-
color: var(--teddy-color-text-interactive-on-expressive-negative-active);
|
|
1020
|
+
._teddy-card--beige_6pylp_277:has(._teddy-card__action--disabled_6pylp_47) {
|
|
1021
|
+
background-color: var(--teddy-color-background-interactive-disabled);
|
|
801
1022
|
}
|
|
802
|
-
._teddy-
|
|
803
|
-
background-color: var(--teddy-color-
|
|
804
|
-
color: var(--teddy-color-text-
|
|
1023
|
+
._teddy-card--beige-light_6pylp_291 {
|
|
1024
|
+
background-color: var(--teddy-color-beige-50);
|
|
1025
|
+
color: var(--teddy-color-text-default);
|
|
1026
|
+
border-color: var(--teddy-color-beige-200);
|
|
805
1027
|
}
|
|
806
|
-
._teddy-
|
|
807
|
-
|
|
1028
|
+
._teddy-card--beige-light_6pylp_291:hover:has(._teddy-card__action_6pylp_47:not(._teddy-card__action--disabled_6pylp_47)) {
|
|
1029
|
+
background-color: var(--teddy-color-beige-100);
|
|
808
1030
|
}
|
|
809
|
-
._teddy-
|
|
810
|
-
background-color: var(--teddy-color-
|
|
811
|
-
color: var(--teddy-color-text-interactive-on-destructive);
|
|
1031
|
+
._teddy-card--beige-light_6pylp_291:active:has(._teddy-card__action_6pylp_47:not(._teddy-card__action--disabled_6pylp_47)) {
|
|
1032
|
+
background-color: var(--teddy-color-beige-100);
|
|
812
1033
|
}
|
|
813
|
-
._teddy-
|
|
814
|
-
background-color: var(--teddy-color-background-interactive-
|
|
1034
|
+
._teddy-card--beige-light_6pylp_291:has(._teddy-card__action--disabled_6pylp_47) {
|
|
1035
|
+
background-color: var(--teddy-color-background-interactive-disabled);
|
|
815
1036
|
}
|
|
816
|
-
._teddy-
|
|
817
|
-
|
|
1037
|
+
._teddy-card--product_6pylp_305 {
|
|
1038
|
+
grid-template-columns: minmax(0, 100%);
|
|
1039
|
+
grid-template-rows: auto auto auto auto auto auto auto 1fr auto auto;
|
|
1040
|
+
grid-template-areas: "illustration" "carousel" "overline" "heading" "colors" "description" "content" "price" "action" "availability";
|
|
1041
|
+
color: var(--teddy-color-text-default);
|
|
1042
|
+
border-color: var(--teddy-color-border-interactive-subtle);
|
|
1043
|
+
padding-top: var(--teddy-spacing-400);
|
|
1044
|
+
padding-bottom: var(--teddy-spacing-100);
|
|
1045
|
+
width: 100%;
|
|
818
1046
|
}
|
|
819
|
-
._teddy-
|
|
820
|
-
background-color: var(--teddy-color-
|
|
821
|
-
|
|
1047
|
+
._teddy-card--product_6pylp_305:hover:has(._teddy-card__action_6pylp_47:not(._teddy-card__action--disabled_6pylp_47)) {
|
|
1048
|
+
background-color: var(--teddy-color-brand-white);
|
|
1049
|
+
outline: var(--teddy-border-width-sm) solid var(--teddy-color-border-interactive-primary);
|
|
1050
|
+
outline-offset: calc(var(--teddy-border-width-sm) * -1);
|
|
822
1051
|
}
|
|
823
|
-
._teddy-
|
|
824
|
-
|
|
1052
|
+
._teddy-card--product_6pylp_305:hover:has(._teddy-card__action_6pylp_47:not(._teddy-card__action--disabled_6pylp_47)) ._teddy-card__carousel_6pylp_60 .slick-slider .slick-arrow {
|
|
1053
|
+
display: block !important;
|
|
825
1054
|
}
|
|
826
|
-
._teddy-
|
|
827
|
-
|
|
1055
|
+
._teddy-card--product_6pylp_305:active:has(._teddy-card__action_6pylp_47:not(._teddy-card__action--disabled_6pylp_47)) {
|
|
1056
|
+
-webkit-tap-highlight-color: transparent;
|
|
828
1057
|
}
|
|
829
|
-
._teddy-
|
|
830
|
-
background-color: var(--teddy-color-background-interactive-transparent);
|
|
831
|
-
color: var(--teddy-color-text-interactive-primary);
|
|
1058
|
+
._teddy-card--product_6pylp_305:active:has(._teddy-card__action_6pylp_47:not(._teddy-card__action--disabled_6pylp_47)):not(:has(._teddy-card__carousel_6pylp_60:active)) {
|
|
1059
|
+
background-color: var(--teddy-color-background-interactive-transparent-active);
|
|
832
1060
|
}
|
|
833
|
-
._teddy-
|
|
834
|
-
background-color: var(--teddy-color-background-interactive-
|
|
1061
|
+
._teddy-card--product_6pylp_305:has(._teddy-card__action--disabled_6pylp_47) {
|
|
1062
|
+
background-color: var(--teddy-color-background-interactive-disabled);
|
|
835
1063
|
}
|
|
836
|
-
._teddy-
|
|
837
|
-
|
|
1064
|
+
._teddy-card--product_6pylp_305 ._teddy-card__action-wrapper_6pylp_69 {
|
|
1065
|
+
margin-bottom: var(--teddy-spacing-200);
|
|
838
1066
|
}
|
|
839
|
-
._teddy-
|
|
840
|
-
|
|
1067
|
+
._teddy-card--product_6pylp_305 ._teddy-card__illustration_6pylp_57 {
|
|
1068
|
+
height: 180px;
|
|
1069
|
+
display: grid;
|
|
1070
|
+
place-items: center;
|
|
1071
|
+
place-self: center;
|
|
1072
|
+
margin-bottom: var(--teddy-spacing-400);
|
|
841
1073
|
}
|
|
842
|
-
._teddy-
|
|
843
|
-
|
|
844
|
-
|
|
1074
|
+
._teddy-card--product_6pylp_305 ._teddy-card__illustration_6pylp_57 img {
|
|
1075
|
+
max-width: 200px;
|
|
1076
|
+
max-height: 180px;
|
|
1077
|
+
object-fit: contain;
|
|
845
1078
|
}
|
|
846
|
-
._teddy-
|
|
847
|
-
|
|
1079
|
+
._teddy-card--product_6pylp_305 ._teddy-card__carousel_6pylp_60 .slick-slider .slick-arrow {
|
|
1080
|
+
display: none !important;
|
|
848
1081
|
}
|
|
849
|
-
._teddy-
|
|
850
|
-
|
|
851
|
-
|
|
1082
|
+
._teddy-card--product_6pylp_305 ._teddy-card__carousel_6pylp_60 .slick-dots li {
|
|
1083
|
+
min-width: 12px;
|
|
1084
|
+
width: initial !important;
|
|
1085
|
+
margin: 0 0.25rem !important;
|
|
852
1086
|
}
|
|
853
|
-
._teddy-
|
|
854
|
-
|
|
855
|
-
|
|
1087
|
+
._teddy-card--product_6pylp_305 ._teddy-card__carousel_6pylp_60 .slick-dots .slick-active {
|
|
1088
|
+
min-width: 24px;
|
|
1089
|
+
width: initial !important;
|
|
856
1090
|
}
|
|
857
|
-
._teddy-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
1091
|
+
._teddy-card--product_6pylp_305 ._teddy-card__overline_6pylp_75 {
|
|
1092
|
+
margin-bottom: var(--teddy-spacing-50);
|
|
1093
|
+
}
|
|
1094
|
+
._teddy-card--product_6pylp_305 ._teddy-card__heading_6pylp_66 {
|
|
1095
|
+
margin-bottom: var(--teddy-spacing-200);
|
|
1096
|
+
}
|
|
1097
|
+
._teddy-card--product_6pylp_305 ._teddy-card__description_6pylp_78 {
|
|
1098
|
+
margin-bottom: var(--teddy-spacing-200);
|
|
1099
|
+
}
|
|
1100
|
+
._teddy-card--product_6pylp_305 ._teddy-card__content_6pylp_63 {
|
|
1101
|
+
margin-bottom: var(--teddy-spacing-200);
|
|
1102
|
+
}
|
|
1103
|
+
._teddy-card--product_6pylp_305 ._teddy-card__action_6pylp_47 {
|
|
1104
|
+
margin-top: auto;
|
|
1105
|
+
margin-left: auto;
|
|
1106
|
+
justify-self: end;
|
|
1107
|
+
}
|
|
1108
|
+
._teddy-card--product_6pylp_305 ._teddy-card__price_6pylp_87 {
|
|
1109
|
+
display: flex;
|
|
865
1110
|
}
|
|
866
|
-
._teddy-
|
|
867
|
-
|
|
868
|
-
color: var(--teddy-color-text-weak);
|
|
1111
|
+
._teddy-card--product_6pylp_305 ._teddy-card__price--big_6pylp_379 {
|
|
1112
|
+
font-size: var(--teddy-typography-scale-200);
|
|
869
1113
|
}
|
|
870
|
-
._teddy-
|
|
871
|
-
background-color:
|
|
1114
|
+
._teddy-card_6pylp_3:has(._teddy-card__image--as-background_6pylp_382) {
|
|
1115
|
+
background-color: transparent;
|
|
872
1116
|
}
|
|
873
|
-
._teddy-
|
|
874
|
-
|
|
1117
|
+
._teddy-card__heading_6pylp_66 {
|
|
1118
|
+
color: inherit;
|
|
875
1119
|
}
|
|
876
|
-
._teddy-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
background-color: var(--teddy-color-background-interactive-transparent);
|
|
881
|
-
color: var(--teddy-color-text-interactive-primary-negative);
|
|
1120
|
+
._teddy-card--background-image_6pylp_388 {
|
|
1121
|
+
background-repeat: no-repeat;
|
|
1122
|
+
background-size: cover;
|
|
1123
|
+
background-position: center;
|
|
882
1124
|
}
|
|
883
|
-
._teddy-
|
|
884
|
-
border-radius:
|
|
1125
|
+
._teddy-card__illustration--rounded_6pylp_393 {
|
|
1126
|
+
border-radius: inherit;
|
|
1127
|
+
overflow: hidden;
|
|
885
1128
|
}
|
|
886
|
-
._teddy-
|
|
887
|
-
|
|
1129
|
+
._teddy-card__inset_6pylp_397 {
|
|
1130
|
+
overflow: hidden;
|
|
888
1131
|
}
|
|
889
|
-
._teddy-
|
|
890
|
-
|
|
891
|
-
color: var(--teddy-color-text-interactive-primary-negative-hover);
|
|
1132
|
+
._teddy-card__inset--top_6pylp_400 {
|
|
1133
|
+
margin-top: calc(var(--teddy-spacing-250) * -1);
|
|
892
1134
|
}
|
|
893
|
-
._teddy-
|
|
894
|
-
|
|
895
|
-
color: var(--teddy-color-text-interactive-primary-negative-active);
|
|
1135
|
+
._teddy-card__inset--top_6pylp_400._teddy-card__inset--left_6pylp_403 {
|
|
1136
|
+
border-top-left-radius: inherit;
|
|
896
1137
|
}
|
|
897
|
-
._teddy-
|
|
898
|
-
border-radius:
|
|
899
|
-
padding-left: 0;
|
|
900
|
-
padding-right: 0;
|
|
901
|
-
background-color: var(--teddy-color-background-interactive-transparent);
|
|
902
|
-
color: var(--teddy-color-text-interactive-primary);
|
|
1138
|
+
._teddy-card__inset--top_6pylp_400._teddy-card__inset--right_6pylp_406 {
|
|
1139
|
+
border-top-right-radius: inherit;
|
|
903
1140
|
}
|
|
904
|
-
._teddy-
|
|
905
|
-
|
|
1141
|
+
._teddy-card__inset--bottom_6pylp_409 {
|
|
1142
|
+
margin-bottom: calc(var(--teddy-spacing-250) * -1);
|
|
906
1143
|
}
|
|
907
|
-
._teddy-
|
|
908
|
-
|
|
909
|
-
color: var(--teddy-color-text-weak);
|
|
1144
|
+
._teddy-card__inset--bottom_6pylp_409._teddy-card__inset--left_6pylp_403 {
|
|
1145
|
+
border-bottom-left-radius: inherit;
|
|
910
1146
|
}
|
|
911
|
-
._teddy-
|
|
912
|
-
|
|
1147
|
+
._teddy-card__inset--bottom_6pylp_409._teddy-card__inset--right_6pylp_406 {
|
|
1148
|
+
border-bottom-right-radius: inherit;
|
|
913
1149
|
}
|
|
914
|
-
._teddy-
|
|
915
|
-
|
|
1150
|
+
._teddy-card__inset--left_6pylp_403 {
|
|
1151
|
+
margin-left: calc(var(--teddy-spacing-250) * -1);
|
|
916
1152
|
}
|
|
917
|
-
._teddy-
|
|
918
|
-
|
|
919
|
-
color: var(--teddy-color-text-weak);
|
|
920
|
-
cursor: not-allowed;
|
|
921
|
-
transition-duration: var(--teddy-motion-duration-400);
|
|
1153
|
+
._teddy-card__inset--right_6pylp_406 {
|
|
1154
|
+
margin-right: calc(var(--teddy-spacing-250) * -1);
|
|
922
1155
|
}
|
|
923
|
-
._teddy-
|
|
924
|
-
|
|
925
|
-
box-shadow: none;
|
|
1156
|
+
._teddy-card__availability--badge_6pylp_424 {
|
|
1157
|
+
margin-right: var(--teddy-spacing-150);
|
|
926
1158
|
}
|
|
927
|
-
._teddy-
|
|
928
|
-
|
|
929
|
-
inset: 0;
|
|
930
|
-
display: grid;
|
|
931
|
-
place-items: center;
|
|
932
|
-
border-radius: inherit;
|
|
933
|
-
background-color: var(--teddy-color-transparent-white-500);
|
|
934
|
-
animation: _fadeInAnimation_1k5uy_1 ease var(--teddy-motion-duration-500);
|
|
935
|
-
animation-iteration-count: 1;
|
|
936
|
-
animation-fill-mode: forwards;
|
|
1159
|
+
._teddy-card__availability--success_6pylp_427 {
|
|
1160
|
+
color: var(--teddy-color-text-status-success-strong);
|
|
937
1161
|
}
|
|
938
|
-
._teddy-
|
|
939
|
-
|
|
1162
|
+
._teddy-card__availability--warning_6pylp_430 {
|
|
1163
|
+
color: var(--teddy-color-text-status-warning-strong);
|
|
940
1164
|
}
|
|
941
|
-
._teddy-
|
|
942
|
-
|
|
1165
|
+
._teddy-card__availability--error_6pylp_433 {
|
|
1166
|
+
color: var(--teddy-color-text-status-error-strong);
|
|
1167
|
+
}
|
|
1168
|
+
._teddy-card__availability--special_6pylp_436 {
|
|
1169
|
+
color: var(--teddy-color-text-status-special);
|
|
1170
|
+
}
|
|
1171
|
+
._teddy-card__availability--neutral_6pylp_439 {
|
|
1172
|
+
color: var(--teddy-color-text-status-neutral);
|
|
1173
|
+
}
|
|
1174
|
+
._teddy-card__availability--information_6pylp_442 {
|
|
1175
|
+
color: var(--teddy-color-text-status-info-strong);
|
|
943
1176
|
}
|
|
944
1177
|
}._teddy-flex_1ncy4_1 {
|
|
945
1178
|
box-sizing: border-box;
|
|
@@ -1105,47 +1338,6 @@
|
|
|
1105
1338
|
._teddy-link--silent_1vpvx_63:is(._teddy-link--disable-visited_1vpvx_27):visited {
|
|
1106
1339
|
color: inherit;
|
|
1107
1340
|
}
|
|
1108
|
-
}@layer icon {
|
|
1109
|
-
._teddy-icon_1ur3a_2 {
|
|
1110
|
-
display: inline;
|
|
1111
|
-
align-self: center;
|
|
1112
|
-
fill: currentColor;
|
|
1113
|
-
flex-shrink: 0;
|
|
1114
|
-
}
|
|
1115
|
-
._teddy-icon--font_1ur3a_8 {
|
|
1116
|
-
width: 1em;
|
|
1117
|
-
height: 1em;
|
|
1118
|
-
}
|
|
1119
|
-
._teddy-icon--xxs_1ur3a_12 {
|
|
1120
|
-
width: var(--teddy-spacing-150);
|
|
1121
|
-
height: var(--teddy-spacing-150);
|
|
1122
|
-
}
|
|
1123
|
-
._teddy-icon--xs_1ur3a_16 {
|
|
1124
|
-
width: var(--teddy-spacing-200);
|
|
1125
|
-
height: var(--teddy-spacing-200);
|
|
1126
|
-
}
|
|
1127
|
-
._teddy-icon--sm_1ur3a_20 {
|
|
1128
|
-
width: var(--teddy-spacing-250);
|
|
1129
|
-
height: var(--teddy-spacing-250);
|
|
1130
|
-
}
|
|
1131
|
-
._teddy-icon--md_1ur3a_24 {
|
|
1132
|
-
width: var(--teddy-spacing-300);
|
|
1133
|
-
height: var(--teddy-spacing-300);
|
|
1134
|
-
}
|
|
1135
|
-
._teddy-icon--lg_1ur3a_28 {
|
|
1136
|
-
width: var(--teddy-spacing-400);
|
|
1137
|
-
height: var(--teddy-spacing-400);
|
|
1138
|
-
}
|
|
1139
|
-
._teddy-icon--xl_1ur3a_32 {
|
|
1140
|
-
width: var(--teddy-spacing-600);
|
|
1141
|
-
height: var(--teddy-spacing-600);
|
|
1142
|
-
}
|
|
1143
|
-
._teddy-icon-with-children_1ur3a_36 {
|
|
1144
|
-
display: inline-flex;
|
|
1145
|
-
align-items: center;
|
|
1146
|
-
font-family: var(--teddy-typography-family-default);
|
|
1147
|
-
gap: var(--teddy-spacing-100);
|
|
1148
|
-
}
|
|
1149
1341
|
}._teddy-badge_wlyo5_1 {
|
|
1150
1342
|
font-family: var(--teddy-typography-family-default);
|
|
1151
1343
|
font-weight: var(--teddy-typography-weight-medium);
|
|
@@ -1926,112 +2118,6 @@
|
|
|
1926
2118
|
._teddy-carousel--sm_8pf7z_99 .slick-prev {
|
|
1927
2119
|
left: 0rem;
|
|
1928
2120
|
}
|
|
1929
|
-
}._teddy-scroll-area_1r6mf_1 {
|
|
1930
|
-
position: relative;
|
|
1931
|
-
overflow: hidden;
|
|
1932
|
-
}
|
|
1933
|
-
._teddy-scroll-area__viewport_1r6mf_5 {
|
|
1934
|
-
height: 100%;
|
|
1935
|
-
width: 100%;
|
|
1936
|
-
border-radius: inherit;
|
|
1937
|
-
display: grid;
|
|
1938
|
-
}
|
|
1939
|
-
._teddy-scroll-area__scrollbar_1r6mf_11 {
|
|
1940
|
-
display: flex;
|
|
1941
|
-
/* ensures no selection */
|
|
1942
|
-
user-select: none;
|
|
1943
|
-
/* disable browser handling of all panning and zooming gestures on touch devices */
|
|
1944
|
-
touch-action: none;
|
|
1945
|
-
padding: 1px;
|
|
1946
|
-
background: var(--teddy-color-border-weak);
|
|
1947
|
-
transition: background-color var(--teddy-motion-duration-200) ease-out;
|
|
1948
|
-
border-radius: var(--teddy-border-radius-full);
|
|
1949
|
-
}
|
|
1950
|
-
._teddy-scroll-area__scrollbar_1r6mf_11[data-orientation=vertical] {
|
|
1951
|
-
width: var(--teddy-border-width-lg);
|
|
1952
|
-
}
|
|
1953
|
-
._teddy-scroll-area__scrollbar_1r6mf_11[data-orientation=horizontal] {
|
|
1954
|
-
flex-direction: column;
|
|
1955
|
-
height: var(--teddy-border-width-lg);
|
|
1956
|
-
}
|
|
1957
|
-
._teddy-scroll-area__scrollbar_1r6mf_11:hover {
|
|
1958
|
-
background-color: var(--teddy-color-transparent-black-200);
|
|
1959
|
-
}
|
|
1960
|
-
._teddy-scroll-area__scrollbar--hidden_1r6mf_32 {
|
|
1961
|
-
width: 1px;
|
|
1962
|
-
height: 1px;
|
|
1963
|
-
padding: 0;
|
|
1964
|
-
margin: -1px;
|
|
1965
|
-
overflow: hidden;
|
|
1966
|
-
clip: rect(0, 0, 0, 0);
|
|
1967
|
-
white-space: nowrap;
|
|
1968
|
-
border: 0;
|
|
1969
|
-
}
|
|
1970
|
-
._teddy-scroll-area__scrollbar--hidden_1r6mf_32:not(caption) {
|
|
1971
|
-
position: absolute;
|
|
1972
|
-
}
|
|
1973
|
-
._teddy-scroll-area__thumb_1r6mf_45 {
|
|
1974
|
-
flex: 1;
|
|
1975
|
-
background: var(--teddy-color-border-strong);
|
|
1976
|
-
border-radius: var(--teddy-border-radius-full);
|
|
1977
|
-
position: relative;
|
|
1978
|
-
}
|
|
1979
|
-
._teddy-scroll-area__thumb_1r6mf_45::before {
|
|
1980
|
-
content: "";
|
|
1981
|
-
position: absolute;
|
|
1982
|
-
top: 50%;
|
|
1983
|
-
left: 50%;
|
|
1984
|
-
transform: translate(-50%, -50%);
|
|
1985
|
-
width: 100%;
|
|
1986
|
-
height: 100%;
|
|
1987
|
-
min-width: 44px;
|
|
1988
|
-
min-height: 44px;
|
|
1989
|
-
}
|
|
1990
|
-
._teddy-scroll-area__corner_1r6mf_62 {
|
|
1991
|
-
background: var(--teddy-color-border-medium);
|
|
1992
|
-
}
|
|
1993
|
-
._teddy-scroll-area__button_1r6mf_65 {
|
|
1994
|
-
position: absolute;
|
|
1995
|
-
}
|
|
1996
|
-
@media (prefers-reduced-motion: no-preference) {
|
|
1997
|
-
._teddy-scroll-area__button_1r6mf_65 {
|
|
1998
|
-
transition: opacity var(--teddy-motion-duration-300), transform var(--teddy-motion-duration-300);
|
|
1999
|
-
}
|
|
2000
|
-
}
|
|
2001
|
-
._teddy-scroll-area__button_1r6mf_65[data-direction=left] {
|
|
2002
|
-
left: 0;
|
|
2003
|
-
top: 50%;
|
|
2004
|
-
transform: translate(0, -50%);
|
|
2005
|
-
}
|
|
2006
|
-
._teddy-scroll-area__button_1r6mf_65[data-direction=right] {
|
|
2007
|
-
right: 0;
|
|
2008
|
-
top: 50%;
|
|
2009
|
-
transform: translate(0, -50%);
|
|
2010
|
-
}
|
|
2011
|
-
._teddy-scroll-area__button_1r6mf_65[data-direction=up] {
|
|
2012
|
-
top: 0;
|
|
2013
|
-
left: 50%;
|
|
2014
|
-
transform: translate(-50%, 0);
|
|
2015
|
-
}
|
|
2016
|
-
._teddy-scroll-area__button_1r6mf_65[data-direction=down] {
|
|
2017
|
-
bottom: 0;
|
|
2018
|
-
left: 50%;
|
|
2019
|
-
transform: translate(-50%, 0);
|
|
2020
|
-
}
|
|
2021
|
-
._teddy-scroll-area__button--hidden_1r6mf_93 {
|
|
2022
|
-
opacity: 0;
|
|
2023
|
-
}
|
|
2024
|
-
._teddy-scroll-area__button--hidden_1r6mf_93[data-direction=left] {
|
|
2025
|
-
transform: translate(-100%, -50%);
|
|
2026
|
-
}
|
|
2027
|
-
._teddy-scroll-area__button--hidden_1r6mf_93[data-direction=right] {
|
|
2028
|
-
transform: translate(100%, -50%);
|
|
2029
|
-
}
|
|
2030
|
-
._teddy-scroll-area__button--hidden_1r6mf_93[data-direction=up] {
|
|
2031
|
-
transform: translate(-50%, -100%);
|
|
2032
|
-
}
|
|
2033
|
-
._teddy-scroll-area__button--hidden_1r6mf_93[data-direction=down] {
|
|
2034
|
-
transform: translate(-50%, 100%);
|
|
2035
2121
|
}._teddy-channel-button_1hacf_1 {
|
|
2036
2122
|
--channel-button-fade-color: var(--teddy-color-background-primary);
|
|
2037
2123
|
}
|
|
@@ -3258,27 +3344,30 @@
|
|
|
3258
3344
|
._teddy-radio-card-group__card-group-label--required_upgkn_177::before {
|
|
3259
3345
|
content: "* ";
|
|
3260
3346
|
}@layer ribbon {
|
|
3261
|
-
._teddy-
|
|
3347
|
+
._teddy-ribbon_4vjnf_2 {
|
|
3262
3348
|
padding: var(--teddy-spacing-150);
|
|
3263
3349
|
width: 100%;
|
|
3264
3350
|
}
|
|
3265
|
-
._teddy-ribbon--
|
|
3351
|
+
._teddy-ribbon--rounded_4vjnf_6 {
|
|
3266
3352
|
border-radius: var(--teddy-border-radius-md);
|
|
3267
3353
|
}
|
|
3268
|
-
._teddy-ribbon--backgroundColor-orange-
|
|
3354
|
+
._teddy-ribbon--backgroundColor-orange-50_4vjnf_9 {
|
|
3355
|
+
background-color: var(--teddy-color-orange-50);
|
|
3356
|
+
}
|
|
3357
|
+
._teddy-ribbon--backgroundColor-orange-100_4vjnf_12 {
|
|
3269
3358
|
background-color: var(--teddy-color-orange-100);
|
|
3270
3359
|
}
|
|
3271
|
-
._teddy-ribbon--backgroundColor-green-
|
|
3360
|
+
._teddy-ribbon--backgroundColor-green-50_4vjnf_15 {
|
|
3272
3361
|
background-color: var(--teddy-color-green-50);
|
|
3273
3362
|
}
|
|
3274
|
-
._teddy-
|
|
3363
|
+
._teddy-ribbon_4vjnf_2 svg {
|
|
3275
3364
|
flex-shrink: 0;
|
|
3276
3365
|
margin-right: var(--teddy-spacing-100);
|
|
3277
3366
|
}
|
|
3278
|
-
._teddy-ribbon--iconPlacement-
|
|
3367
|
+
._teddy-ribbon--iconPlacement-top_4vjnf_22 svg {
|
|
3279
3368
|
align-self: flex-start;
|
|
3280
3369
|
}
|
|
3281
|
-
._teddy-ribbon--iconPlacement-
|
|
3370
|
+
._teddy-ribbon--iconPlacement-center_4vjnf_25 svg {
|
|
3282
3371
|
align-self: center;
|
|
3283
3372
|
}
|
|
3284
3373
|
}._teddy-expandable-card_o9m1o_1 {
|