@gem-sdk/styles 2.0.0-dev.892 → 2.0.0-staging.117
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/base.css +133 -10
- package/dist/base.min.css +1 -1
- package/dist/builder.css +141 -12
- package/dist/builder.min.css +1 -1
- package/dist/toolbar.css +166 -99
- package/dist/toolbar.min.css +1 -1
- package/dist/utility.css +193 -1
- package/dist/utility.min.css +1 -1
- package/package.json +2 -2
- package/src/css/all.css +3 -0
- package/src/css/builds/base.css +129 -7
- package/src/css/builds/builder.css +128 -12
- package/src/css/builds/toolbar.css +181 -112
- package/src/css/helpers/_layout.css +26 -17
- package/src/css/medias.css +2 -2
- package/src/css/utilities/_whitespace.css +1 -0
- package/src/preset.js +2 -2
- package/src/properties.js +19 -13
- package/types/globals.d.ts +81 -0
- package/types/index.d.ts +1 -1
- package/types/types.d.ts +4 -1
package/dist/base.css
CHANGED
|
@@ -65,7 +65,9 @@ html {
|
|
|
65
65
|
min-height: calc(100vh - (env(safe-area-inset-top) + env(safe-area-inset-bottom)));
|
|
66
66
|
}
|
|
67
67
|
.gp-text ul,
|
|
68
|
-
.gp-text ol
|
|
68
|
+
.gp-text ol,
|
|
69
|
+
.gp-text-instant ul,
|
|
70
|
+
.gp-text-instant ol {
|
|
69
71
|
display: block;
|
|
70
72
|
margin-block-start: 1em;
|
|
71
73
|
margin-block-end: 1em;
|
|
@@ -81,15 +83,25 @@ html {
|
|
|
81
83
|
-webkit-padding-start: 40px;
|
|
82
84
|
padding-left: 40px;
|
|
83
85
|
}
|
|
84
|
-
.gp-text ul
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
86
|
+
.gp-text ul>li,
|
|
87
|
+
.gp-text-instant ul>li {
|
|
88
|
+
list-style: disc inside !important;
|
|
89
|
+
}
|
|
90
|
+
.gp-text ol>li,
|
|
91
|
+
.gp-text-instant ol>li {
|
|
92
|
+
list-style: decimal inside !important;
|
|
93
|
+
}
|
|
94
|
+
[display-init='hide'] > div {
|
|
95
|
+
visibility: hidden !important;
|
|
96
|
+
max-height: 0 !important;
|
|
97
|
+
max-width: 0 !important;
|
|
98
|
+
overflow: hidden !important;
|
|
99
|
+
display: inline !important;
|
|
100
|
+
}
|
|
101
|
+
[display-init='hide'] > div * {
|
|
102
|
+
max-height: 0 !important;
|
|
103
|
+
max-width: 0 !important;
|
|
104
|
+
}
|
|
93
105
|
[data-slot='children'] {
|
|
94
106
|
width: 100%;
|
|
95
107
|
min-height: 60px;
|
|
@@ -102,6 +114,11 @@ html {
|
|
|
102
114
|
visibility: hidden;
|
|
103
115
|
overflow: hidden;
|
|
104
116
|
}
|
|
117
|
+
[data-slot='children'].product-feature-image {
|
|
118
|
+
visibility: visible !important;
|
|
119
|
+
border: unset;
|
|
120
|
+
border-radius: 0px;
|
|
121
|
+
}
|
|
105
122
|
[data-slot='children']:not(.product-feature-image):after {
|
|
106
123
|
content: 'Drop element here';
|
|
107
124
|
visibility: hidden;
|
|
@@ -115,6 +132,18 @@ html {
|
|
|
115
132
|
text-overflow: ellipsis;
|
|
116
133
|
overflow: hidden;
|
|
117
134
|
}
|
|
135
|
+
.gp-instant-page [data-slot='children'].product-feature-image {
|
|
136
|
+
visibility: visible !important;
|
|
137
|
+
border: unset;
|
|
138
|
+
}
|
|
139
|
+
.gp-instant-page [data-slot='children'].product-feature-image:after {
|
|
140
|
+
visibility: visible;
|
|
141
|
+
color: #aaa;
|
|
142
|
+
border: unset;
|
|
143
|
+
}
|
|
144
|
+
.gp-instant-page [data-slot='children'].product-feature-image .drag-placeholder {
|
|
145
|
+
height: 100%;
|
|
146
|
+
}
|
|
118
147
|
.gp-dialog {
|
|
119
148
|
display: none;
|
|
120
149
|
}
|
|
@@ -251,6 +280,100 @@ p {
|
|
|
251
280
|
border-spacing: 2px;
|
|
252
281
|
width: 100%;
|
|
253
282
|
}
|
|
283
|
+
.gp-p-description-text p:last-child {
|
|
284
|
+
margin-bottom: 0 !important;
|
|
285
|
+
}
|
|
254
286
|
.gp-tab-header-list::-webkit-scrollbar {
|
|
255
287
|
display: none;
|
|
256
288
|
}
|
|
289
|
+
.rfm-marquee-container {
|
|
290
|
+
display: flex;
|
|
291
|
+
flex-direction: row;
|
|
292
|
+
position: relative;
|
|
293
|
+
width: var(--width);
|
|
294
|
+
-webkit-transform: var(--transform);
|
|
295
|
+
transform: var(--transform);
|
|
296
|
+
max-width: unset !important;
|
|
297
|
+
}
|
|
298
|
+
.rfm-overlay {
|
|
299
|
+
position: absolute;
|
|
300
|
+
width: 100%;
|
|
301
|
+
height: 100%;
|
|
302
|
+
}
|
|
303
|
+
.rfm-overlay::after {
|
|
304
|
+
right: 0;
|
|
305
|
+
top: 0;
|
|
306
|
+
-webkit-transform: rotateZ(180deg);
|
|
307
|
+
transform: rotateZ(180deg);
|
|
308
|
+
}
|
|
309
|
+
.rfm-overlay::before {
|
|
310
|
+
left: 0;
|
|
311
|
+
top: 0;
|
|
312
|
+
}
|
|
313
|
+
.rfm-marquee {
|
|
314
|
+
flex: 0 0 auto;
|
|
315
|
+
min-width: var(--min-width);
|
|
316
|
+
z-index: 1;
|
|
317
|
+
max-width: unset !important;
|
|
318
|
+
display: flex;
|
|
319
|
+
flex-direction: row;
|
|
320
|
+
align-items: center;
|
|
321
|
+
-webkit-animation: scroll var(--duration) linear var(--delay) var(--iteration-count);
|
|
322
|
+
animation: scroll var(--duration) linear var(--delay) var(--iteration-count);
|
|
323
|
+
-webkit-animation-play-state: var(--play);
|
|
324
|
+
animation-play-state: var(--play);
|
|
325
|
+
-webkit-animation-delay: var(--delay);
|
|
326
|
+
animation-delay: var(--delay);
|
|
327
|
+
-webkit-animation-direction: var(--direction);
|
|
328
|
+
animation-direction: var(--direction);
|
|
329
|
+
}
|
|
330
|
+
@-webkit-keyframes scroll {
|
|
331
|
+
0% {
|
|
332
|
+
-webkit-transform: translateX(0%);
|
|
333
|
+
transform: translateX(0%);
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
100% {
|
|
337
|
+
-webkit-transform: translateX(-100%);
|
|
338
|
+
transform: translateX(-100%);
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
@keyframes scroll {
|
|
342
|
+
0% {
|
|
343
|
+
-webkit-transform: translateX(0%);
|
|
344
|
+
transform: translateX(0%);
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
100% {
|
|
348
|
+
-webkit-transform: translateX(-100%);
|
|
349
|
+
transform: translateX(-100%);
|
|
350
|
+
}
|
|
351
|
+
}
|
|
352
|
+
.rfm-initial-child-container {
|
|
353
|
+
flex: 0 0 auto;
|
|
354
|
+
display: flex;
|
|
355
|
+
min-width: auto;
|
|
356
|
+
flex-direction: row;
|
|
357
|
+
align-items: center;
|
|
358
|
+
}
|
|
359
|
+
.rfm-child {
|
|
360
|
+
-webkit-transform: var(--transform);
|
|
361
|
+
transform: var(--transform);
|
|
362
|
+
}
|
|
363
|
+
[style*="--grchild:"]> :first-child {
|
|
364
|
+
grid-row: var(--grchild);
|
|
365
|
+
}
|
|
366
|
+
[style*="--mbchild:"]> :first-child {
|
|
367
|
+
margin-bottom: var(--mbchild);
|
|
368
|
+
}
|
|
369
|
+
@media (min-width: 1025px){
|
|
370
|
+
.rfm-marquee-container:hover div {
|
|
371
|
+
-webkit-animation-play-state: var(--pause-on-hover);
|
|
372
|
+
animation-play-state: var(--pause-on-hover);
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
.rfm-marquee-container:active div {
|
|
376
|
+
-webkit-animation-play-state: var(--pause-on-click);
|
|
377
|
+
animation-play-state: var(--pause-on-click);
|
|
378
|
+
}
|
|
379
|
+
}
|
package/dist/base.min.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@tailwind base;@tailwind components;@tailwind utilities;html{-webkit-tap-highlight-color:transparent;scroll-behavior:smooth}#__next{height:100%;overflow-x:clip}.wrapper{margin-left:auto;margin-right:auto;max-width:var(--g-ct-w,1200px);padding-left:var(--g-ct-p);padding-right:var(--g-ct-p);width:100%}.gem-slider:not([data-keen-slider-disabled]){align-content:flex-start;display:flex;min-height:100%;overflow:hidden;position:relative;width:100%}.gem-slider:not([data-keen-slider-disabled])[data-keen-slider-reverse]{flex-direction:row-reverse}.gem-slider:not([data-keen-slider-disabled])[data-keen-slider-v]{flex-wrap:wrap}[data-keen-slider-moves] *{pointer-events:none}.pb-safe{padding-bottom:env(safe-area-inset-bottom)}.pt-safe{padding-top:env(safe-area-inset-top)}.pl-safe{padding-left:env(safe-area-inset-left)}.pr-safe{padding-right:env(safe-area-inset-right)}.p-safe{padding:env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left)}.px-safe{padding-left:env(safe-area-inset-left);padding-right:env(safe-area-inset-right)}.py-safe{padding-bottom:env(safe-area-inset-bottom);padding-top:env(safe-area-inset-top)}.h-safe{height:calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom))}.min-h-safe{min-height:calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom))}.gp-text ol,.gp-text ul{-webkit-margin-before:1em;-webkit-margin-after:1em;-webkit-margin-start:0;-webkit-margin-end:0;-webkit-padding-start:40px;display:block;margin-block-end:1em;margin-block-start:1em;margin-inline-end:0;margin-inline-start:0;padding-inline-start:40px;padding-left:40px}.gp-text ul{list-style
|
|
1
|
+
@tailwind base;@tailwind components;@tailwind utilities;html{-webkit-tap-highlight-color:transparent;scroll-behavior:smooth}#__next{height:100%;overflow-x:clip}.wrapper{margin-left:auto;margin-right:auto;max-width:var(--g-ct-w,1200px);padding-left:var(--g-ct-p);padding-right:var(--g-ct-p);width:100%}.gem-slider:not([data-keen-slider-disabled]){align-content:flex-start;display:flex;min-height:100%;overflow:hidden;position:relative;width:100%}.gem-slider:not([data-keen-slider-disabled])[data-keen-slider-reverse]{flex-direction:row-reverse}.gem-slider:not([data-keen-slider-disabled])[data-keen-slider-v]{flex-wrap:wrap}[data-keen-slider-moves] *{pointer-events:none}.pb-safe{padding-bottom:env(safe-area-inset-bottom)}.pt-safe{padding-top:env(safe-area-inset-top)}.pl-safe{padding-left:env(safe-area-inset-left)}.pr-safe{padding-right:env(safe-area-inset-right)}.p-safe{padding:env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left)}.px-safe{padding-left:env(safe-area-inset-left);padding-right:env(safe-area-inset-right)}.py-safe{padding-bottom:env(safe-area-inset-bottom);padding-top:env(safe-area-inset-top)}.h-safe{height:calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom))}.min-h-safe{min-height:calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom))}.gp-text ol,.gp-text ul,.gp-text-instant ol,.gp-text-instant ul{-webkit-margin-before:1em;-webkit-margin-after:1em;-webkit-margin-start:0;-webkit-margin-end:0;-webkit-padding-start:40px;display:block;margin-block-end:1em;margin-block-start:1em;margin-inline-end:0;margin-inline-start:0;padding-inline-start:40px;padding-left:40px}.gp-text ul>li,.gp-text-instant ul>li{list-style:disc inside!important}.gp-text ol>li,.gp-text-instant ol>li{list-style:decimal inside!important}[display-init=hide]>div{display:inline!important;overflow:hidden!important;visibility:hidden!important}[display-init=hide]>div,[display-init=hide]>div *{max-height:0!important;max-width:0!important}[data-slot=children]{align-items:center;border:1px dashed #9e9e9e;border-radius:3px;display:inline-flex;height:100%;justify-content:center;min-height:60px;overflow:hidden;visibility:hidden;width:100%}[data-slot=children].product-feature-image{border:unset;border-radius:0;visibility:visible!important}[data-slot=children]:not(.product-feature-image):after{content:"Drop element here";font-size:14px;font-weight:700;overflow:hidden;text-align:center;text-overflow:ellipsis;visibility:hidden;white-space:nowrap}.gp-instant-page [data-slot=children].product-feature-image{border:unset;visibility:visible!important}.gp-instant-page [data-slot=children].product-feature-image:after{border:unset;color:#aaa;visibility:visible}.gp-instant-page [data-slot=children].product-feature-image .drag-placeholder{height:100%}.gp-dialog{display:none}.gp-dialog[open]{display:block}.gp-dialog:modal{position:fixed}h1,h2,h3,h4,h5,h6{word-break:normal}p{color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;text-align:inherit}.gp-p-description-text ol,.gp-p-description-text ul{-webkit-margin-before:1em;-webkit-margin-after:1em;-webkit-margin-start:0;-webkit-margin-end:0;-webkit-padding-start:40px;display:block;margin-block-end:1em;margin-block-start:1em;margin-inline-end:0;margin-inline-start:0;padding-inline-start:40px;padding-left:40px}.gp-p-description-text ol ol{-webkit-margin-before:0;-webkit-margin-after:0;margin-block-end:0;margin-block-start:0}.gp-p-description-text h1{-webkit-margin-before:.67em;-webkit-margin-after:.67em;-webkit-margin-start:0;-webkit-margin-end:0;font-size:2em;margin-block-end:.67em;margin-block-start:.67em;margin-inline-end:0;margin-inline-start:0}.gp-p-description-text h1,.gp-p-description-text h2,.gp-p-description-text h3,.gp-p-description-text h4,.gp-p-description-text h5,.gp-p-description-text h6{display:block;font-weight:700}.gp-p-description-text h1,.gp-p-description-text h2,.gp-p-description-text h3,.gp-p-description-text h4,.gp-p-description-text h5,.gp-p-description-text h6,.gp-p-description-text p{line-height:1.4;margin:0 0 1em}.gp-p-description-text h2{font-size:1.5em}.gp-p-description-text h3{font-size:1.17em}.gp-p-description-text a{color:-webkit-link;cursor:text;text-decoration:underline}.gp-p-description-text h4{font-size:1em}.gp-p-description-text h5{font-size:.83em}.gp-p-description-text h6{font-size:.67em}.gp-p-description-text ul{list-style-type:disc}.gp-p-description-text ol{list-style-type:decimal}.gp-p-description-text ul li{display:list-item;list-style:disc none outside;text-align:-webkit-match-parent;word-break:break-word}.gp-p-description-text blockquote{-webkit-margin-before:1em;-webkit-margin-after:1em;-webkit-margin-start:40px;-webkit-margin-end:40px;display:block;margin-block-end:1em;margin-block-start:1em;margin-inline-end:40px;margin-inline-start:40px}.gp-p-description-text table,.gp-p-description-text td,.gp-p-description-text th{border:1px dashed #ccc!important;padding:unset!important}.gp-p-description-text table{border-collapse:separate;border-spacing:2px;box-sizing:border-box;display:table;text-indent:0;width:100%}.gp-p-description-text p:last-child{margin-bottom:0!important}.gp-tab-header-list::-webkit-scrollbar{display:none}.rfm-marquee-container{display:flex;flex-direction:row;max-width:unset!important;position:relative;-webkit-transform:var(--transform);transform:var(--transform);width:var(--width)}.rfm-overlay{height:100%;position:absolute;width:100%}.rfm-overlay:after{right:0;top:0;-webkit-transform:rotate(180deg);transform:rotate(180deg)}.rfm-overlay:before{left:0;top:0}.rfm-marquee{align-items:center;-webkit-animation:scroll var(--duration) linear var(--delay) var(--iteration-count);animation:scroll var(--duration) linear var(--delay) var(--iteration-count);-webkit-animation-delay:var(--delay);animation-delay:var(--delay);-webkit-animation-direction:var(--direction);animation-direction:var(--direction);-webkit-animation-play-state:var(--play);animation-play-state:var(--play);display:flex;flex:0 0 auto;flex-direction:row;max-width:unset!important;min-width:var(--min-width);z-index:1}@-webkit-keyframes scroll{0%{-webkit-transform:translateX(0);transform:translateX(0)}to{-webkit-transform:translateX(-100%);transform:translateX(-100%)}}@keyframes scroll{0%{-webkit-transform:translateX(0);transform:translateX(0)}to{-webkit-transform:translateX(-100%);transform:translateX(-100%)}}.rfm-initial-child-container{align-items:center;display:flex;flex:0 0 auto;flex-direction:row;min-width:auto}.rfm-child{-webkit-transform:var(--transform);transform:var(--transform)}[style*="--grchild:"]>:first-child{grid-row:var(--grchild)}[style*="--mbchild:"]>:first-child{margin-bottom:var(--mbchild)}@media (min-width:1025px){.rfm-marquee-container:hover div{-webkit-animation-play-state:var(--pause-on-hover);animation-play-state:var(--pause-on-hover)}.rfm-marquee-container:active div{-webkit-animation-play-state:var(--pause-on-click);animation-play-state:var(--pause-on-click)}}
|
package/dist/builder.css
CHANGED
|
@@ -137,7 +137,10 @@
|
|
|
137
137
|
|
|
138
138
|
#visual-content .fake-placeholder.visual-placeholder-error {
|
|
139
139
|
|
|
140
|
-
font-family: Inter,
|
|
140
|
+
font-family: Inter,
|
|
141
|
+
sans-serif,
|
|
142
|
+
ui-sans-serif,
|
|
143
|
+
system-ui;
|
|
141
144
|
border: 1px dashed #f44336 !important;
|
|
142
145
|
visibility: visible;
|
|
143
146
|
color: #f44336 !important;
|
|
@@ -193,9 +196,7 @@
|
|
|
193
196
|
background-color: #ebddf866;
|
|
194
197
|
}
|
|
195
198
|
|
|
196
|
-
#visual-content .fake-placeholder.visual-placeholder-theme-section.visual-placeholder-error.has-section:not(
|
|
197
|
-
[is-component-dragging='true']
|
|
198
|
-
) {
|
|
199
|
+
#visual-content .fake-placeholder.visual-placeholder-theme-section.visual-placeholder-error.has-section:not([is-component-dragging='true']) {
|
|
199
200
|
background-color: #f44336 !important;
|
|
200
201
|
}
|
|
201
202
|
|
|
@@ -224,7 +225,8 @@
|
|
|
224
225
|
background-color: #d8e1ff !important;
|
|
225
226
|
}
|
|
226
227
|
|
|
227
|
-
#visual-content .fake-placeholder[is-drag-to-theme-section='true'],
|
|
228
|
+
#visual-content .fake-placeholder[is-drag-to-theme-section='true'],
|
|
229
|
+
#visual-content .fake-placeholder[is-drag-to-shopify-section='true'] {
|
|
228
230
|
background-color: rgba(254, 228, 227, 0.24) !important;
|
|
229
231
|
display: block;
|
|
230
232
|
}
|
|
@@ -266,12 +268,6 @@
|
|
|
266
268
|
margin-right: 4px;
|
|
267
269
|
}
|
|
268
270
|
|
|
269
|
-
#visual-content .fake-placeholder[is-drag-to-exceeded-section='true'] {
|
|
270
|
-
background-color: rgba(244,67,54, 0.08) !important;
|
|
271
|
-
border: 1px solid rgba(244,67,54) !important;
|
|
272
|
-
display: block;
|
|
273
|
-
}
|
|
274
|
-
|
|
275
271
|
#visual-content .fake-placeholder[is-component-dragging='true'] {
|
|
276
272
|
background-color: #8aa4ff66 !important;
|
|
277
273
|
}
|
|
@@ -408,7 +404,7 @@
|
|
|
408
404
|
|
|
409
405
|
.post-purchase-page {
|
|
410
406
|
font-size: 14px;
|
|
411
|
-
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
|
|
407
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
412
408
|
line-height: 15px;
|
|
413
409
|
}
|
|
414
410
|
|
|
@@ -473,6 +469,139 @@
|
|
|
473
469
|
font-family: Inter, sans-serif, ui-sans-serif, system-ui !important;
|
|
474
470
|
}
|
|
475
471
|
|
|
472
|
+
.rfm-marquee-container {
|
|
473
|
+
display: flex;
|
|
474
|
+
flex-direction: row;
|
|
475
|
+
position: relative;
|
|
476
|
+
width: var(--width);
|
|
477
|
+
-webkit-transform: var(--transform);
|
|
478
|
+
transform: var(--transform);
|
|
479
|
+
max-width: unset !important;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
.rfm-marquee-container:hover div {
|
|
483
|
+
-webkit-animation-play-state: var(--pause-on-hover);
|
|
484
|
+
animation-play-state: var(--pause-on-hover);
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
.rfm-marquee-container:active div {
|
|
488
|
+
-webkit-animation-play-state: var(--pause-on-click);
|
|
489
|
+
animation-play-state: var(--pause-on-click);
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.rfm-overlay {
|
|
493
|
+
position: absolute;
|
|
494
|
+
width: 100%;
|
|
495
|
+
height: 100%;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
.rfm-overlay::after {
|
|
499
|
+
right: 0;
|
|
500
|
+
top: 0;
|
|
501
|
+
-webkit-transform: rotateZ(180deg);
|
|
502
|
+
transform: rotateZ(180deg);
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
.rfm-overlay::before {
|
|
506
|
+
left: 0;
|
|
507
|
+
top: 0;
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
.rfm-marquee {
|
|
511
|
+
flex: 0 0 auto;
|
|
512
|
+
min-width: var(--min-width);
|
|
513
|
+
z-index: 1;
|
|
514
|
+
max-width: unset !important;
|
|
515
|
+
display: flex;
|
|
516
|
+
flex-direction: row;
|
|
517
|
+
align-items: center;
|
|
518
|
+
-webkit-animation: scroll var(--duration) linear var(--delay) var(--iteration-count);
|
|
519
|
+
animation: scroll var(--duration) linear var(--delay) var(--iteration-count);
|
|
520
|
+
-webkit-animation-play-state: var(--play);
|
|
521
|
+
animation-play-state: var(--play);
|
|
522
|
+
-webkit-animation-delay: var(--delay);
|
|
523
|
+
animation-delay: var(--delay);
|
|
524
|
+
-webkit-animation-direction: var(--direction);
|
|
525
|
+
animation-direction: var(--direction);
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
@-webkit-keyframes scroll {
|
|
531
|
+
0% {
|
|
532
|
+
-webkit-transform: translateX(0%);
|
|
533
|
+
transform: translateX(0%);
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
100% {
|
|
537
|
+
-webkit-transform: translateX(-100%);
|
|
538
|
+
transform: translateX(-100%);
|
|
539
|
+
}
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
@keyframes scroll {
|
|
543
|
+
0% {
|
|
544
|
+
-webkit-transform: translateX(0%);
|
|
545
|
+
transform: translateX(0%);
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
100% {
|
|
549
|
+
-webkit-transform: translateX(-100%);
|
|
550
|
+
transform: translateX(-100%);
|
|
551
|
+
}
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
.rfm-initial-child-container {
|
|
555
|
+
flex: 0 0 auto;
|
|
556
|
+
display: flex;
|
|
557
|
+
min-width: auto;
|
|
558
|
+
flex-direction: row;
|
|
559
|
+
align-items: center;
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
.rfm-child {
|
|
563
|
+
-webkit-transform: var(--transform);
|
|
564
|
+
transform: var(--transform);
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
.product-badge.inside-image [data-outline] {
|
|
568
|
+
visibility: visible;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
.interaction-select-mode-header {
|
|
572
|
+
font-family: Inter, sans-serif, ui-sans-serif, system-ui !important;
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
[display-init='hide'] {
|
|
576
|
+
visibility: hidden !important;
|
|
577
|
+
max-height: 0 !important;
|
|
578
|
+
overflow: hidden !important;
|
|
579
|
+
display: inline !important;
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
[display-init='hide'] * {
|
|
583
|
+
max-height: 0 !important;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
.interaction-select-mode [data-component-tag] * {
|
|
587
|
+
cursor: default !important;
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
.interaction-select-mode [data-component-tag] * [data-toolbar] * {
|
|
591
|
+
cursor: pointer !important;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
.interaction-select-mode [data-component-tag='ProductQuantity'] button[aria-label='increment'],
|
|
595
|
+
.interaction-select-mode [data-component-tag='ProductQuantity'] button[aria-label='decrement'],
|
|
596
|
+
.interaction-select-mode [data-component-tag='ProductQuantity'] input
|
|
597
|
+
{
|
|
598
|
+
pointer-events: none;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
.interaction-select-mode [data-component-tag='ProductVariants'] span.gp-underline {
|
|
602
|
+
pointer-events: none;
|
|
603
|
+
}
|
|
604
|
+
|
|
476
605
|
@media (max-width: 768px) {
|
|
477
606
|
.gps-suggestion-item:hover .item-link {
|
|
478
607
|
width: 196px;
|
package/dist/builder.min.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.builder{-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.builder [disabled]{pointer-events:auto}.builder [data-slot=children]{visibility:visible}.builder [data-slot=children]:after{color:#aaa;visibility:visible}.builder [data-slot=children] .drag-placeholder{height:100%}.builder .generate-image-to-layout-btn{background-image:linear-gradient(270.07deg,#874cfd .03%,#3c38e1 99.92%);position:relative;z-index:1}.builder .generate-image-to-layout-btn:before{background-image:linear-gradient(270.07deg,#3633cc .03%,#6d3dcc 99.92%);border-radius:3px;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:opacity .3s ease-out;z-index:-1}.builder .btn-disable{background-color:#f4f4f4;background-image:none;color:#9e9e9e;cursor:not-allowed}.builder .generate-image-to-layout-btn:hover:before{opacity:1}.builder .image-to-layout-input-border{border:1px solid #3c38e1;border-radius:3px}.builder .image-to-layout-input-wrapper-modal{position:relative}.builder .image-to-layout-input-wrapper,.builder .image-to-layout-input-wrapper-add-section{background:#fff;background-clip:padding-box;box-sizing:border-box;position:relative}.image-to-layout-input-wrapper-add-section{border:1px solid #3c67ff}.gps-image-to-layout-progress-bar{background:linear-gradient(270.07deg,#874cfd .03%,#3c38e1 99.92%)}.drag-placeholder{display:none;width:100%}#storefront{position:relative;z-index:20}#visual-content{display:none;font-family:Inter,sans-serif,ui-sans-serif,system-ui!important;height:100%;left:0;min-height:100vh;position:absolute;top:0;width:100%;z-index:50}#visual-content .fake-placeholder{background:transparent;background-image:url(//d1um8515vdn9kb.cloudfront.net/images/background-pattern.png);left:0;position:absolute;top:0;visibility:hidden;z-index:0}#visual-content .fake-placeholder.fake-placeholder-slot{background:transparent}#visual-content .fake-placeholder.has-section{background-color:#3c67ff!important;background-image:none;border:none!important;height:6px;margin:0!important;visibility:visible}#visual-content .fake-placeholder.visual-placeholder-error{background-color:#fee4e3!important}#visual-content .fake-placeholder.visual-placeholder-error .limitation-error-content{display:none}#visual-content .fake-placeholder.visual-placeholder-error{border:1px dashed #f44336!important;color:#f44336!important;font-family:Inter,sans-serif,ui-sans-serif,system-ui;font-size:14px;font-weight:500;line-height:150%;position:relative;text-align:center;visibility:visible}#visual-content .fake-placeholder.visual-placeholder-error.children-error{background-color:#f44336!important;border:none!important}#visual-content .fake-placeholder.visual-placeholder-error.limitation-error .limitation-error-content{align-items:center;background-color:#fee4e3!important;border-radius:3px;display:flex;height:29px;padding:4px 8px}#visual-content .fake-placeholder.visual-placeholder-error.limitation-error .limitation-error-content span{font-size:14px;font-weight:500;line-height:150%;margin-left:8px}#visual-content .fake-placeholder.visual-placeholder{align-items:center;background-color:#8aa4ff66;color:#3c67ff;display:flex;font-size:14px;font-weight:500;justify-content:center;line-height:150%;visibility:visible;z-index:20}#visual-content .fake-placeholder.visual-placeholder-theme-section[is-component-dragging=true]{background-color:#ebddf866!important}#visual-content .fake-placeholder.visual-placeholder-theme-section{background-color:#ebddf866}#visual-content .fake-placeholder.visual-placeholder-theme-section.visual-placeholder-error.has-section:not([is-component-dragging=true]){background-color:#f44336!important}#visual-content .fake-placeholder.visual-placeholder-theme-section.has-section:not([is-component-dragging=true]){background-color:#9144da!important}#visual-content .fake-placeholder.visual-placeholder-child-on-sections{margin:16px!important}#visual-content .fake-placeholder.visual-placeholder-between-sections{background-color:#3c67ff;background-image:none;border:none;height:6px;margin:0!important;visibility:visible}#visual-content .fake-placeholder.not-show{display:none}#visual-content .fake-placeholder[is-blank-page=true]{background-color:#d8e1ff!important}#visual-content .fake-placeholder[is-drag-to-shopify-section=true],#visual-content .fake-placeholder[is-drag-to-theme-section=true]{background-color:hsla(2,93%,94%,.24)!important;display:block}#visual-content .fake-placeholder[is-drag-to-shopify-section=true] .drag-to-section-message,#visual-content .fake-placeholder[is-drag-to-theme-section=true] .drag-to-section-message{align-items:center;background:#f44336!important;border-radius:3px!important;color:#f9f9f9!important;display:flex;font-size:14px;font-weight:400;left:8px;line-height:24px;margin-left:8px;margin-top:8px;padding:4px;position:-webkit-sticky;position:sticky;top:8px;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}#visual-content .fake-placeholder[is-drag-to-shopify-section=true] .drag-to-section-message.exceed-limit,#visual-content .fake-placeholder[is-drag-to-theme-section=true] .drag-to-section-message.exceed-limit{margin-left:48px}#visual-content .fake-placeholder[is-drag-to-shopify-section=true] .drag-to-section-message-icon,#visual-content .fake-placeholder[is-drag-to-theme-section=true] .drag-to-section-message-icon{align-items:center;display:flex;height:24px;justify-content:center;width:24px}#visual-content .fake-placeholder[is-drag-to-shopify-section=true] .drag-to-section-message svg,#visual-content .fake-placeholder[is-drag-to-theme-section=true] .drag-to-section-message svg{margin-right:4px}#visual-content .fake-placeholder[is-drag-to-exceeded-section=true]{background-color:rgba(244,67,54,.08)!important;border:1px solid #f44336!important;display:block}#visual-content .fake-placeholder[is-component-dragging=true]{background-color:#8aa4ff66!important}[contenteditable=true]:active,[contenteditable=true]:focus,[contenteditable=true]:focus-visible{outline:none;overflow:hidden}[data-component-is-third-party=true]{background-color:#f4f4f4}[data-component-tag=ProductDescription],[data-component-tag=ProductPrice],[data-component-tag=ProductTag],[data-component-tag=ProductTitle]{cursor:default}:root{--selection-bg:#accef7}.builder ::selection{background:var(--selection-bg);color:currentColor}.builder ::-moz-selection{background:var(--selection-bg);color:currentColor}.gps-drag-element-here{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='none' stroke='%233C67FFFF' stroke-dasharray='12,12' stroke-dashoffset='72' stroke-linecap='square' stroke-width='2'/%3E%3C/svg%3E")}.gps-drag-element-here,.gps-page-suggestion{font-family:Inter,sans-serif,ui-sans-serif,system-ui!important}.gps-page-suggestion{background:#fff;border-radius:3px;box-shadow:0 4px 16px rgba(0,0,0,.06),0 4px 16px rgba(0,0,0,.12)}.gps-suggestion-item .gps-suggestion-item-btn{display:flex}.gps-suggestion-item .item-link{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:360px}.gps-suggestion-item:hover .item-link{width:360px}.gps-base-font-family{font-family:Inter,sans-serif,ui-sans-serif,system-ui!important}.btn-disable:before{background:none!important;background-color:#f4f4f4!important;color:#9e9e9e}.gps-image-detection-section:hover .gps-generating-actions{display:flex}.gps-generating-section-text{-webkit-text-fill-color:transparent;background:-webkit-linear-gradient(#874cfd,#3c38e1);-webkit-background-clip:text}.ck-blurred{cursor:pointer}.ck-focused{cursor:text}.button-text{position:relative}.button-text.ck-focused,.child-item-text.ck-focused{border-color:transparent!important;box-shadow:0 0 0 2px hsla(0,0%,100%,0),0 0 0 1px #3c67ff,0 0 0 5px #3c67ff3d}.theme-section-editor .child-item-text:hover{border-color:#9144da!important}.theme-section-editor .button-text:hover:after{border:1px solid #9144da}.theme-section-editor .button-text.ck-focused,.theme-section-editor .child-item-text.ck-focused{border-color:transparent!important;box-shadow:0 0 0 2px hsla(0,0%,100%,0),0 0 0 1px #9144da,0 0 0 5px #9144da3d}.theme-section-editor [data-component-tag=Heading] [data-outline][data-outline-editor-inline-focus],.theme-section-editor [data-component-tag=Text] [data-outline][data-outline-editor-inline-focus]{border-color:#9144da;outline:4px solid #9144da3d!important}.post-purchase-page{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-size:14px;line-height:15px}.post-purchase-page select:focus{border-color:#1879b9;box-shadow:0 0 0 1px #1879b9}.gp-text.ck p{word-break:break-word}.button-text:hover:after{border:1px solid #3c67ff;content:"";height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%}.button-text.ck-focused:hover:after{border:0!important}.sticky-overlay{align-items:center;background-color:#3c67ff26;border:2px solid #3c67ff;color:#3c67ff;display:flex;height:100%;justify-content:center;left:0;position:fixed;top:0;width:100%;z-index:1}.sticky-overlay.highlight-top{border-top-width:6px}.sticky-overlay.highlight-bottom{border-bottom-width:6px}.editor-content{font-family:Inter,sans-serif,ui-sans-serif,system-ui!important}@media (max-width:768px){.gps-suggestion-item .item-link,.gps-suggestion-item:hover .item-link{width:196px}}
|
|
1
|
+
.builder{-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.builder [disabled]{pointer-events:auto}.builder [data-slot=children]{visibility:visible}.builder [data-slot=children]:after{color:#aaa;visibility:visible}.builder [data-slot=children] .drag-placeholder{height:100%}.builder .generate-image-to-layout-btn{background-image:linear-gradient(270.07deg,#874cfd .03%,#3c38e1 99.92%);position:relative;z-index:1}.builder .generate-image-to-layout-btn:before{background-image:linear-gradient(270.07deg,#3633cc .03%,#6d3dcc 99.92%);border-radius:3px;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:opacity .3s ease-out;z-index:-1}.builder .btn-disable{background-color:#f4f4f4;background-image:none;color:#9e9e9e;cursor:not-allowed}.builder .generate-image-to-layout-btn:hover:before{opacity:1}.builder .image-to-layout-input-border{border:1px solid #3c38e1;border-radius:3px}.builder .image-to-layout-input-wrapper-modal{position:relative}.builder .image-to-layout-input-wrapper,.builder .image-to-layout-input-wrapper-add-section{background:#fff;background-clip:padding-box;box-sizing:border-box;position:relative}.image-to-layout-input-wrapper-add-section{border:1px solid #3c67ff}.gps-image-to-layout-progress-bar{background:linear-gradient(270.07deg,#874cfd .03%,#3c38e1 99.92%)}.drag-placeholder{display:none;width:100%}#storefront{position:relative;z-index:20}#visual-content{display:none;font-family:Inter,sans-serif,ui-sans-serif,system-ui!important;height:100%;left:0;min-height:100vh;position:absolute;top:0;width:100%;z-index:50}#visual-content .fake-placeholder{background:transparent;background-image:url(//d1um8515vdn9kb.cloudfront.net/images/background-pattern.png);left:0;position:absolute;top:0;visibility:hidden;z-index:0}#visual-content .fake-placeholder.fake-placeholder-slot{background:transparent}#visual-content .fake-placeholder.has-section{background-color:#3c67ff!important;background-image:none;border:none!important;height:6px;margin:0!important;visibility:visible}#visual-content .fake-placeholder.visual-placeholder-error{background-color:#fee4e3!important}#visual-content .fake-placeholder.visual-placeholder-error .limitation-error-content{display:none}#visual-content .fake-placeholder.visual-placeholder-error{border:1px dashed #f44336!important;color:#f44336!important;font-family:Inter,sans-serif,ui-sans-serif,system-ui;font-size:14px;font-weight:500;line-height:150%;position:relative;text-align:center;visibility:visible}#visual-content .fake-placeholder.visual-placeholder-error.children-error{background-color:#f44336!important;border:none!important}#visual-content .fake-placeholder.visual-placeholder-error.limitation-error .limitation-error-content{align-items:center;background-color:#fee4e3!important;border-radius:3px;display:flex;height:29px;padding:4px 8px}#visual-content .fake-placeholder.visual-placeholder-error.limitation-error .limitation-error-content span{font-size:14px;font-weight:500;line-height:150%;margin-left:8px}#visual-content .fake-placeholder.visual-placeholder{align-items:center;background-color:#8aa4ff66;color:#3c67ff;display:flex;font-size:14px;font-weight:500;justify-content:center;line-height:150%;visibility:visible;z-index:20}#visual-content .fake-placeholder.visual-placeholder-theme-section[is-component-dragging=true]{background-color:#ebddf866!important}#visual-content .fake-placeholder.visual-placeholder-theme-section{background-color:#ebddf866}#visual-content .fake-placeholder.visual-placeholder-theme-section.visual-placeholder-error.has-section:not([is-component-dragging=true]){background-color:#f44336!important}#visual-content .fake-placeholder.visual-placeholder-theme-section.has-section:not([is-component-dragging=true]){background-color:#9144da!important}#visual-content .fake-placeholder.visual-placeholder-child-on-sections{margin:16px!important}#visual-content .fake-placeholder.visual-placeholder-between-sections{background-color:#3c67ff;background-image:none;border:none;height:6px;margin:0!important;visibility:visible}#visual-content .fake-placeholder.not-show{display:none}#visual-content .fake-placeholder[is-blank-page=true]{background-color:#d8e1ff!important}#visual-content .fake-placeholder[is-drag-to-shopify-section=true],#visual-content .fake-placeholder[is-drag-to-theme-section=true]{background-color:hsla(2,93%,94%,.24)!important;display:block}#visual-content .fake-placeholder[is-drag-to-shopify-section=true] .drag-to-section-message,#visual-content .fake-placeholder[is-drag-to-theme-section=true] .drag-to-section-message{align-items:center;background:#f44336!important;border-radius:3px!important;color:#f9f9f9!important;display:flex;font-size:14px;font-weight:400;left:8px;line-height:24px;margin-left:8px;margin-top:8px;padding:4px;position:-webkit-sticky;position:sticky;top:8px;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}#visual-content .fake-placeholder[is-drag-to-shopify-section=true] .drag-to-section-message.exceed-limit,#visual-content .fake-placeholder[is-drag-to-theme-section=true] .drag-to-section-message.exceed-limit{margin-left:48px}#visual-content .fake-placeholder[is-drag-to-shopify-section=true] .drag-to-section-message-icon,#visual-content .fake-placeholder[is-drag-to-theme-section=true] .drag-to-section-message-icon{align-items:center;display:flex;height:24px;justify-content:center;width:24px}#visual-content .fake-placeholder[is-drag-to-shopify-section=true] .drag-to-section-message svg,#visual-content .fake-placeholder[is-drag-to-theme-section=true] .drag-to-section-message svg{margin-right:4px}#visual-content .fake-placeholder[is-component-dragging=true]{background-color:#8aa4ff66!important}[contenteditable=true]:active,[contenteditable=true]:focus,[contenteditable=true]:focus-visible{outline:none;overflow:hidden}[data-component-is-third-party=true]{background-color:#f4f4f4}[data-component-tag=ProductDescription],[data-component-tag=ProductPrice],[data-component-tag=ProductTag],[data-component-tag=ProductTitle]{cursor:default}:root{--selection-bg:#accef7}.builder ::selection{background:var(--selection-bg);color:currentColor}.builder ::-moz-selection{background:var(--selection-bg);color:currentColor}.gps-drag-element-here{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='none' stroke='%233C67FFFF' stroke-dasharray='12,12' stroke-dashoffset='72' stroke-linecap='square' stroke-width='2'/%3E%3C/svg%3E")}.gps-drag-element-here,.gps-page-suggestion{font-family:Inter,sans-serif,ui-sans-serif,system-ui!important}.gps-page-suggestion{background:#fff;border-radius:3px;box-shadow:0 4px 16px rgba(0,0,0,.06),0 4px 16px rgba(0,0,0,.12)}.gps-suggestion-item .gps-suggestion-item-btn{display:flex}.gps-suggestion-item .item-link{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:360px}.gps-suggestion-item:hover .item-link{width:360px}.gps-base-font-family{font-family:Inter,sans-serif,ui-sans-serif,system-ui!important}.btn-disable:before{background:none!important;background-color:#f4f4f4!important;color:#9e9e9e}.gps-image-detection-section:hover .gps-generating-actions{display:flex}.gps-generating-section-text{-webkit-text-fill-color:transparent;background:-webkit-linear-gradient(#874cfd,#3c38e1);-webkit-background-clip:text}.ck-blurred{cursor:pointer}.ck-focused{cursor:text}.button-text{position:relative}.button-text.ck-focused,.child-item-text.ck-focused{border-color:transparent!important;box-shadow:0 0 0 2px hsla(0,0%,100%,0),0 0 0 1px #3c67ff,0 0 0 5px #3c67ff3d}.theme-section-editor .child-item-text:hover{border-color:#9144da!important}.theme-section-editor .button-text:hover:after{border:1px solid #9144da}.theme-section-editor .button-text.ck-focused,.theme-section-editor .child-item-text.ck-focused{border-color:transparent!important;box-shadow:0 0 0 2px hsla(0,0%,100%,0),0 0 0 1px #9144da,0 0 0 5px #9144da3d}.theme-section-editor [data-component-tag=Heading] [data-outline][data-outline-editor-inline-focus],.theme-section-editor [data-component-tag=Text] [data-outline][data-outline-editor-inline-focus]{border-color:#9144da;outline:4px solid #9144da3d!important}.post-purchase-page{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-size:14px;line-height:15px}.post-purchase-page select:focus{border-color:#1879b9;box-shadow:0 0 0 1px #1879b9}.gp-text.ck p{word-break:break-word}.button-text:hover:after{border:1px solid #3c67ff;content:"";height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%}.button-text.ck-focused:hover:after{border:0!important}.sticky-overlay{align-items:center;background-color:#3c67ff26;border:2px solid #3c67ff;color:#3c67ff;display:flex;height:100%;justify-content:center;left:0;position:fixed;top:0;width:100%;z-index:1}.sticky-overlay.highlight-top{border-top-width:6px}.sticky-overlay.highlight-bottom{border-bottom-width:6px}.editor-content{font-family:Inter,sans-serif,ui-sans-serif,system-ui!important}.rfm-marquee-container{display:flex;flex-direction:row;max-width:unset!important;position:relative;-webkit-transform:var(--transform);transform:var(--transform);width:var(--width)}.rfm-marquee-container:hover div{-webkit-animation-play-state:var(--pause-on-hover);animation-play-state:var(--pause-on-hover)}.rfm-marquee-container:active div{-webkit-animation-play-state:var(--pause-on-click);animation-play-state:var(--pause-on-click)}.rfm-overlay{height:100%;position:absolute;width:100%}.rfm-overlay:after{right:0;top:0;-webkit-transform:rotate(180deg);transform:rotate(180deg)}.rfm-overlay:before{left:0;top:0}.rfm-marquee{align-items:center;-webkit-animation:scroll var(--duration) linear var(--delay) var(--iteration-count);animation:scroll var(--duration) linear var(--delay) var(--iteration-count);-webkit-animation-delay:var(--delay);animation-delay:var(--delay);-webkit-animation-direction:var(--direction);animation-direction:var(--direction);-webkit-animation-play-state:var(--play);animation-play-state:var(--play);display:flex;flex:0 0 auto;flex-direction:row;max-width:unset!important;min-width:var(--min-width);z-index:1}@-webkit-keyframes scroll{0%{-webkit-transform:translateX(0);transform:translateX(0)}to{-webkit-transform:translateX(-100%);transform:translateX(-100%)}}@keyframes scroll{0%{-webkit-transform:translateX(0);transform:translateX(0)}to{-webkit-transform:translateX(-100%);transform:translateX(-100%)}}.rfm-initial-child-container{align-items:center;display:flex;flex:0 0 auto;flex-direction:row;min-width:auto}.rfm-child{-webkit-transform:var(--transform);transform:var(--transform)}.product-badge.inside-image [data-outline]{visibility:visible}.interaction-select-mode-header{font-family:Inter,sans-serif,ui-sans-serif,system-ui!important}[display-init=hide]{display:inline!important;overflow:hidden!important;visibility:hidden!important}[display-init=hide],[display-init=hide] *{max-height:0!important}.interaction-select-mode [data-component-tag] *{cursor:default!important}.interaction-select-mode [data-component-tag] * [data-toolbar] *{cursor:pointer!important}.interaction-select-mode [data-component-tag=ProductQuantity] button[aria-label=decrement],.interaction-select-mode [data-component-tag=ProductQuantity] button[aria-label=increment],.interaction-select-mode [data-component-tag=ProductQuantity] input,.interaction-select-mode [data-component-tag=ProductVariants] span.gp-underline{pointer-events:none}@media (max-width:768px){.gps-suggestion-item .item-link,.gps-suggestion-item:hover .item-link{width:196px}}
|