@sc-360-v2/storefront-cms-library 0.5.51 → 0.5.52
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/add-order.scss +62 -13
- package/dist/breadcrumbs.scss +13 -0
- package/dist/builder.js +1 -1
- package/dist/cart-details.scss +214 -0
- package/dist/cart.scss +57 -55
- package/dist/category-groups-product-image.scss +72 -21
- package/dist/hotspot.scss +141 -74
- package/dist/icon-library.scss +78 -74
- package/dist/image-temp.scss +2 -1
- package/dist/language-selector.scss +173 -55
- package/dist/light-box-v2.scss +4 -3
- package/dist/menu-v2.scss +51 -3
- package/dist/modal.scss +251 -28
- package/dist/product-basic-elements.scss +0 -246
- package/dist/product-image-allocation.scss +51 -15
- package/dist/product-image-bundles.scss +72 -15
- package/dist/product-image.scss +178 -19
- package/dist/repeater-embla-controls.scss +9 -1
- package/dist/repeater-grid-toggle.scss +42 -18
- package/dist/repeater.scss +69 -102
- package/dist/scroll.scss +52 -11
- package/dist/search.scss +1 -1
- package/dist/skeleton.scss +24 -35
- package/dist/tab-container.scss +14 -12
- package/dist/tab-v2.scss +178 -68
- package/dist/text-temp-v2.scss +11 -0
- package/dist/types/builder/tools/element-edit/breadcrumbs.d.ts +0 -5
- package/dist/types/builder/tools/element-edit/product-image.d.ts +1 -0
- package/dist/types/builder/tools/element-edit/repeater.d.ts +1 -1
- package/dist/types/builder/tools/element-edit/tabsV2.d.ts +55 -1
- package/dist/types/builder/tools/element-edit/video.d.ts +32 -0
- package/dist/video.scss +548 -476
- package/package.json +1 -1
package/dist/modal.scss
CHANGED
|
@@ -108,8 +108,10 @@ $active_btn_text_color: #fff;
|
|
|
108
108
|
align-items: center;
|
|
109
109
|
justify-content: center;
|
|
110
110
|
border-radius: 4px;
|
|
111
|
+
|
|
111
112
|
span {
|
|
112
113
|
display: flex;
|
|
114
|
+
|
|
113
115
|
svg {
|
|
114
116
|
width: 20px;
|
|
115
117
|
height: 20px;
|
|
@@ -134,6 +136,7 @@ $active_btn_text_color: #fff;
|
|
|
134
136
|
width: 100%;
|
|
135
137
|
margin-top: 24px;
|
|
136
138
|
}
|
|
139
|
+
|
|
137
140
|
.modal-footer-wrapper {
|
|
138
141
|
display: flex;
|
|
139
142
|
width: 100%;
|
|
@@ -142,6 +145,7 @@ $active_btn_text_color: #fff;
|
|
|
142
145
|
.wishlist_button_wrapper {
|
|
143
146
|
position: relative;
|
|
144
147
|
width: 100%;
|
|
148
|
+
|
|
145
149
|
.wishlist_btn {
|
|
146
150
|
width: 100%;
|
|
147
151
|
display: flex;
|
|
@@ -149,11 +153,13 @@ $active_btn_text_color: #fff;
|
|
|
149
153
|
align-items: center;
|
|
150
154
|
color: var(--_thm-py-bs-dt-se-tt-cr);
|
|
151
155
|
height: 100%;
|
|
156
|
+
|
|
152
157
|
&:hover {
|
|
153
158
|
color: var(--_thm-py-bs-hr-se-tt-cr);
|
|
154
159
|
text-decoration: underline;
|
|
155
160
|
}
|
|
156
161
|
}
|
|
162
|
+
|
|
157
163
|
.wishlist_list_overlay {
|
|
158
164
|
position: absolute;
|
|
159
165
|
z-index: 10;
|
|
@@ -177,9 +183,11 @@ $active_btn_text_color: #fff;
|
|
|
177
183
|
font-size: 16px;
|
|
178
184
|
font-weight: 500;
|
|
179
185
|
text-align: center;
|
|
186
|
+
|
|
180
187
|
.dots {
|
|
181
188
|
display: inline-flex;
|
|
182
|
-
width: 20px;
|
|
189
|
+
width: 20px;
|
|
190
|
+
/* fixed space so text doesn’t shift */
|
|
183
191
|
justify-content: space-between;
|
|
184
192
|
align-items: flex-end;
|
|
185
193
|
margin-left: 6px;
|
|
@@ -198,9 +206,11 @@ $active_btn_text_color: #fff;
|
|
|
198
206
|
.dots span:nth-child(1) {
|
|
199
207
|
animation-delay: 0s;
|
|
200
208
|
}
|
|
209
|
+
|
|
201
210
|
.dots span:nth-child(2) {
|
|
202
211
|
animation-delay: 0.3s;
|
|
203
212
|
}
|
|
213
|
+
|
|
204
214
|
.dots span:nth-child(3) {
|
|
205
215
|
animation-delay: 0.6s;
|
|
206
216
|
}
|
|
@@ -209,14 +219,17 @@ $active_btn_text_color: #fff;
|
|
|
209
219
|
0% {
|
|
210
220
|
opacity: 0;
|
|
211
221
|
}
|
|
222
|
+
|
|
212
223
|
50% {
|
|
213
224
|
opacity: 1;
|
|
214
225
|
}
|
|
226
|
+
|
|
215
227
|
100% {
|
|
216
228
|
opacity: 0;
|
|
217
229
|
}
|
|
218
230
|
}
|
|
219
231
|
}
|
|
232
|
+
|
|
220
233
|
.wishlist_overlay_header {
|
|
221
234
|
display: flex;
|
|
222
235
|
justify-content: space-between;
|
|
@@ -225,6 +238,7 @@ $active_btn_text_color: #fff;
|
|
|
225
238
|
font-size: 14px;
|
|
226
239
|
font-weight: 600;
|
|
227
240
|
}
|
|
241
|
+
|
|
228
242
|
.wishlist_list_items {
|
|
229
243
|
display: flex;
|
|
230
244
|
flex-direction: column;
|
|
@@ -239,6 +253,7 @@ $active_btn_text_color: #fff;
|
|
|
239
253
|
cursor: pointer;
|
|
240
254
|
position: relative;
|
|
241
255
|
margin: 4px;
|
|
256
|
+
|
|
242
257
|
&.active {
|
|
243
258
|
color: var(--_thm-py-bs-dt-se-tt-cr);
|
|
244
259
|
}
|
|
@@ -280,7 +295,7 @@ $active_btn_text_color: #fff;
|
|
|
280
295
|
}
|
|
281
296
|
}
|
|
282
297
|
|
|
283
|
-
input:checked
|
|
298
|
+
input:checked+.custom_checkbox {
|
|
284
299
|
background-color: var(--_thm-py-bs-dt-se-bd-cr);
|
|
285
300
|
border-color: var(--_thm-py-bs-dt-se-br-cr);
|
|
286
301
|
|
|
@@ -314,13 +329,16 @@ $active_btn_text_color: #fff;
|
|
|
314
329
|
width: 100%;
|
|
315
330
|
font-weight: 500;
|
|
316
331
|
text-decoration: none !important;
|
|
332
|
+
|
|
317
333
|
&.primary {
|
|
318
334
|
background-color: var(--_thm-py-bs-dt-se-bd-cr);
|
|
319
335
|
color: var(--_thm-py-bs-dt-se-tt-cr);
|
|
320
336
|
font-size: 14px;
|
|
321
337
|
}
|
|
338
|
+
|
|
322
339
|
&.secondary {
|
|
323
340
|
color: var(--_thm-sy-bs-dt-se-bd-cr);
|
|
341
|
+
|
|
324
342
|
&:hover {
|
|
325
343
|
color: var(--_thm-sy-bs-hr-se-bd-cr);
|
|
326
344
|
|
|
@@ -353,6 +371,7 @@ $active_btn_text_color: #fff;
|
|
|
353
371
|
width: 100%;
|
|
354
372
|
display: flex;
|
|
355
373
|
justify-content: center;
|
|
374
|
+
|
|
356
375
|
&:hover {
|
|
357
376
|
background-color: var(--_thm-sy-bs-hr-se-bd-cr);
|
|
358
377
|
color: var(--_thm-sy-bs-hr-se-tt-cr);
|
|
@@ -388,6 +407,7 @@ $active_btn_text_color: #fff;
|
|
|
388
407
|
from {
|
|
389
408
|
opacity: 0;
|
|
390
409
|
}
|
|
410
|
+
|
|
391
411
|
to {
|
|
392
412
|
opacity: 1;
|
|
393
413
|
}
|
|
@@ -426,13 +446,11 @@ $input-height: 32px;
|
|
|
426
446
|
$input-padding: 10px 12px;
|
|
427
447
|
|
|
428
448
|
// Z-Index
|
|
429
|
-
$z-index-modal: calc(
|
|
449
|
+
$z-index-modal: calc(1000 + var(--_cs-et-zIndex, 10) + 10);
|
|
430
450
|
$z-index-backdrop: calc(var(--_higher-zIndex) + var(--_cs-et-zIndex) + 11);
|
|
431
451
|
$z-index-wrapper: calc(var(--_higher-zIndex) + var(--_cs-et-zIndex) + 9);
|
|
432
452
|
$z-index-minimized: calc(var(--_higher-zIndex) + var(--_cs-et-zIndex) + 12);
|
|
433
|
-
$z-index-min-cart: calc(
|
|
434
|
-
var(--_higher-zIndex) + var(--_cs-et-zIndex) + 13
|
|
435
|
-
); // Higher z-index for min cart
|
|
453
|
+
$z-index-min-cart: calc(var(--_higher-zIndex) + var(--_cs-et-zIndex) + 13); // Higher z-index for min cart
|
|
436
454
|
|
|
437
455
|
// Shadows
|
|
438
456
|
$shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
@@ -461,6 +479,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
461
479
|
overflow: scroll;
|
|
462
480
|
display: flex;
|
|
463
481
|
flex-direction: column;
|
|
482
|
+
|
|
464
483
|
.modal-body {
|
|
465
484
|
height: auto;
|
|
466
485
|
display: flex;
|
|
@@ -474,20 +493,24 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
474
493
|
.retry-order-container {
|
|
475
494
|
max-width: 960px;
|
|
476
495
|
margin: 0 auto;
|
|
496
|
+
|
|
477
497
|
.chk_payment-options {
|
|
478
498
|
form {
|
|
479
499
|
display: flex;
|
|
480
500
|
flex-direction: column;
|
|
481
501
|
gap: 24px;
|
|
482
502
|
}
|
|
503
|
+
|
|
483
504
|
display: flex;
|
|
484
505
|
flex-direction: column;
|
|
485
506
|
margin-block: 12px;
|
|
507
|
+
|
|
486
508
|
.chk_payment_options_form {
|
|
487
509
|
display: flex;
|
|
488
510
|
flex-direction: column;
|
|
489
511
|
overflow: hidden;
|
|
490
512
|
}
|
|
513
|
+
|
|
491
514
|
.payment_program {
|
|
492
515
|
// padding: 0 12px;
|
|
493
516
|
|
|
@@ -507,24 +530,29 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
507
530
|
display: flex;
|
|
508
531
|
justify-content: space-between;
|
|
509
532
|
align-items: center;
|
|
533
|
+
|
|
510
534
|
&_title {
|
|
511
535
|
font-size: 14px;
|
|
512
536
|
font-weight: 600;
|
|
513
537
|
color: var(--_gray-600);
|
|
514
538
|
}
|
|
515
539
|
}
|
|
540
|
+
|
|
516
541
|
&_pds {
|
|
517
542
|
font-size: 14px;
|
|
518
543
|
font-weight: 600;
|
|
544
|
+
|
|
519
545
|
&_label {
|
|
520
546
|
font-size: 14px;
|
|
521
547
|
color: var(--_gray-600);
|
|
522
548
|
}
|
|
549
|
+
|
|
523
550
|
&_value {
|
|
524
551
|
font-size: 14px;
|
|
525
552
|
color: var(--_gray-900);
|
|
526
553
|
}
|
|
527
554
|
}
|
|
555
|
+
|
|
528
556
|
.chk_checkbox_wrapper {
|
|
529
557
|
display: flex;
|
|
530
558
|
width: fit-content;
|
|
@@ -535,6 +563,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
535
563
|
padding: 12px 16px;
|
|
536
564
|
border-radius: 4px;
|
|
537
565
|
color: var(--_gray-600);
|
|
566
|
+
|
|
538
567
|
&:hover {
|
|
539
568
|
background-color: var(--_gray-100);
|
|
540
569
|
}
|
|
@@ -543,6 +572,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
543
572
|
input[type="checkbox"] {
|
|
544
573
|
display: none;
|
|
545
574
|
}
|
|
575
|
+
|
|
546
576
|
.payment_program_title {
|
|
547
577
|
font-size: 16px;
|
|
548
578
|
font-weight: 700;
|
|
@@ -583,7 +613,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
583
613
|
}
|
|
584
614
|
}
|
|
585
615
|
|
|
586
|
-
input[type="checkbox"]:checked
|
|
616
|
+
input[type="checkbox"]:checked+label {
|
|
587
617
|
.custom-checkbox {
|
|
588
618
|
background-color: #004dff;
|
|
589
619
|
border-color: #004dff;
|
|
@@ -596,9 +626,11 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
596
626
|
}
|
|
597
627
|
}
|
|
598
628
|
}
|
|
629
|
+
|
|
599
630
|
.gift_crd_chk_payment_option {
|
|
600
631
|
border: 1px solid var(--_gray-300);
|
|
601
632
|
border-radius: 6px;
|
|
633
|
+
|
|
602
634
|
.add_gift_card {
|
|
603
635
|
display: flex;
|
|
604
636
|
gap: 12px;
|
|
@@ -622,23 +654,28 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
622
654
|
}
|
|
623
655
|
}
|
|
624
656
|
}
|
|
657
|
+
|
|
625
658
|
.payment_heading {
|
|
626
659
|
padding: 16px;
|
|
660
|
+
|
|
627
661
|
.chk_payment_options_heading {
|
|
628
662
|
padding: 0;
|
|
629
663
|
font-weight: 600;
|
|
630
664
|
}
|
|
631
665
|
}
|
|
666
|
+
|
|
632
667
|
// gift card styles
|
|
633
668
|
.chk_gft_crd_wrapper {
|
|
634
669
|
display: flex;
|
|
635
670
|
justify-content: space-between;
|
|
636
671
|
align-items: center;
|
|
637
672
|
padding: 16px 16px 0 16px;
|
|
673
|
+
|
|
638
674
|
&_item {
|
|
639
675
|
display: flex;
|
|
640
676
|
align-items: center;
|
|
641
677
|
gap: 16px;
|
|
678
|
+
|
|
642
679
|
&_icon {
|
|
643
680
|
width: 40px;
|
|
644
681
|
height: 40px;
|
|
@@ -648,29 +685,36 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
648
685
|
justify-content: center;
|
|
649
686
|
align-items: center;
|
|
650
687
|
}
|
|
688
|
+
|
|
651
689
|
&_info {
|
|
652
690
|
display: flex;
|
|
653
691
|
flex-direction: column;
|
|
692
|
+
|
|
654
693
|
&_title {
|
|
655
694
|
font-size: 14px;
|
|
656
695
|
margin-bottom: 4px;
|
|
657
696
|
font-weight: 600;
|
|
658
697
|
}
|
|
698
|
+
|
|
659
699
|
&_desc {
|
|
660
700
|
display: flex;
|
|
661
701
|
gap: 4px;
|
|
702
|
+
|
|
662
703
|
&_value {
|
|
663
704
|
font-size: 12px;
|
|
664
705
|
color: var(--_gray-600);
|
|
665
706
|
}
|
|
707
|
+
|
|
666
708
|
&_label {
|
|
667
709
|
font-size: 12px;
|
|
668
710
|
color: var(--_gray-900);
|
|
669
711
|
}
|
|
670
712
|
}
|
|
671
713
|
}
|
|
714
|
+
|
|
672
715
|
&_pin {
|
|
673
716
|
margin-left: 36px;
|
|
717
|
+
|
|
674
718
|
input[type="number"] {
|
|
675
719
|
border: 1px solid var(--_gray-300);
|
|
676
720
|
border-radius: 4px;
|
|
@@ -678,6 +722,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
678
722
|
width: 95px;
|
|
679
723
|
height: 44px;
|
|
680
724
|
padding-inline: 10px;
|
|
725
|
+
|
|
681
726
|
&:focus {
|
|
682
727
|
outline: 2px solid var(--_primary-100);
|
|
683
728
|
border: 1px solid var(--_primary-300);
|
|
@@ -696,21 +741,25 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
696
741
|
align-items: center;
|
|
697
742
|
gap: 8px;
|
|
698
743
|
padding-left: 10px;
|
|
744
|
+
|
|
699
745
|
input[type="number"] {
|
|
700
746
|
background-color: var(--_base-white);
|
|
701
747
|
padding-right: 10px;
|
|
702
748
|
}
|
|
749
|
+
|
|
703
750
|
&:focus-within {
|
|
704
751
|
outline: 2px solid var(--_primary-100);
|
|
705
752
|
border: 1px solid var(--_primary-300);
|
|
706
753
|
}
|
|
707
754
|
}
|
|
708
755
|
}
|
|
756
|
+
|
|
709
757
|
.chk_gft_crd_wrapper {
|
|
710
758
|
&_btn {
|
|
711
759
|
text-align: left;
|
|
712
760
|
margin-bottom: 16px;
|
|
713
761
|
color: var(--_thm-py-bs-dt-se-tt-cr);
|
|
762
|
+
|
|
714
763
|
&:hover {
|
|
715
764
|
text-decoration: underline;
|
|
716
765
|
}
|
|
@@ -730,6 +779,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
730
779
|
border-bottom: 1px solid var(--_gray-200);
|
|
731
780
|
padding-bottom: 16px;
|
|
732
781
|
}
|
|
782
|
+
|
|
733
783
|
.pp_ppm_section {
|
|
734
784
|
background-color: var(--_base-white);
|
|
735
785
|
border-bottom: 1px solid var(--_gray-300);
|
|
@@ -738,44 +788,53 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
738
788
|
display: flex;
|
|
739
789
|
justify-content: space-between;
|
|
740
790
|
gap: 8px;
|
|
791
|
+
|
|
741
792
|
.pp_ppm_section_label {
|
|
742
793
|
font-size: 14px;
|
|
743
794
|
font-weight: 700;
|
|
744
795
|
color: var(--_gray-900);
|
|
745
796
|
}
|
|
797
|
+
|
|
746
798
|
.pp_ppm_section_value {
|
|
747
799
|
font-size: 14px;
|
|
748
800
|
font-weight: 600;
|
|
749
801
|
color: var(--_gray-600);
|
|
802
|
+
|
|
750
803
|
.pp_ppm_section_value_label {
|
|
751
804
|
font-weight: 500;
|
|
752
805
|
color: var(--_gray-500);
|
|
753
806
|
}
|
|
807
|
+
|
|
754
808
|
.pp_ppm_section_value_amount {
|
|
755
809
|
font-weight: 500;
|
|
756
810
|
color: var(--_gray-500);
|
|
757
811
|
}
|
|
758
812
|
}
|
|
759
813
|
}
|
|
814
|
+
|
|
760
815
|
.payment_methods {
|
|
761
816
|
// padding: 12px;
|
|
762
817
|
display: grid;
|
|
763
818
|
gap: 8px;
|
|
819
|
+
|
|
764
820
|
.chk_payment_option {
|
|
765
821
|
.add_new_credit_card {
|
|
766
822
|
padding: 16px 16px 0px 16px;
|
|
767
823
|
display: flex;
|
|
768
824
|
justify-content: space-between;
|
|
769
825
|
font-weight: 600;
|
|
826
|
+
|
|
770
827
|
.cc_tertiary_btn {
|
|
771
828
|
// color: var(--_thm-py-bs-dt-se-tt-cr);
|
|
772
829
|
color: var(--_thm-cs-tt-ls-as);
|
|
773
830
|
font-size: 14px;
|
|
831
|
+
|
|
774
832
|
&:hover {
|
|
775
833
|
text-decoration: underline;
|
|
776
834
|
}
|
|
777
835
|
}
|
|
778
836
|
}
|
|
837
|
+
|
|
779
838
|
.chk_payment_section_wrapper {
|
|
780
839
|
width: 100%;
|
|
781
840
|
display: flex;
|
|
@@ -787,30 +846,37 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
787
846
|
justify-content: space-between;
|
|
788
847
|
align-items: center;
|
|
789
848
|
width: 100%;
|
|
849
|
+
|
|
790
850
|
.chk_payment_section_col_left {
|
|
791
851
|
display: flex;
|
|
792
852
|
gap: 12px;
|
|
853
|
+
|
|
793
854
|
svg {
|
|
794
855
|
width: 24px;
|
|
795
856
|
height: 24px;
|
|
796
857
|
}
|
|
858
|
+
|
|
797
859
|
.chk_payment_section_method {
|
|
798
860
|
display: flex;
|
|
799
861
|
flex-direction: column;
|
|
862
|
+
|
|
800
863
|
.chk_payment_section_method_name {
|
|
801
864
|
font-size: 14px;
|
|
802
865
|
font-weight: 700;
|
|
803
866
|
line-height: 20px;
|
|
804
867
|
color: var(--_gray-700);
|
|
805
868
|
}
|
|
806
|
-
|
|
869
|
+
|
|
870
|
+
&>div {
|
|
807
871
|
display: flex;
|
|
808
872
|
gap: 2px;
|
|
873
|
+
|
|
809
874
|
.label {
|
|
810
875
|
font-size: 12px;
|
|
811
876
|
color: var(--_gray-500);
|
|
812
877
|
font-weight: 400;
|
|
813
878
|
}
|
|
879
|
+
|
|
814
880
|
.price {
|
|
815
881
|
font-size: 12px;
|
|
816
882
|
color: var(--_gray-900);
|
|
@@ -819,6 +885,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
819
885
|
}
|
|
820
886
|
}
|
|
821
887
|
}
|
|
888
|
+
|
|
822
889
|
&_col_right {
|
|
823
890
|
.chk_currency_inp {
|
|
824
891
|
height: 44px;
|
|
@@ -834,13 +901,16 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
834
901
|
padding: 8px 12px;
|
|
835
902
|
border: 1px solid var(--_gray-300);
|
|
836
903
|
border-radius: 4px;
|
|
904
|
+
|
|
837
905
|
&:focus-within {
|
|
838
906
|
border: 1px solid var(--_primary-200);
|
|
839
907
|
outline: 2px solid var(--_primary-50);
|
|
840
908
|
}
|
|
909
|
+
|
|
841
910
|
input {
|
|
842
911
|
height: inherit;
|
|
843
912
|
background-color: var(--_base-white);
|
|
913
|
+
|
|
844
914
|
&:disabled {
|
|
845
915
|
opacity: 0.8;
|
|
846
916
|
cursor: not-allowed;
|
|
@@ -854,8 +924,8 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
854
924
|
color: var(--_gray-900);
|
|
855
925
|
font-size: 16px;
|
|
856
926
|
font-weight: 700;
|
|
857
|
-
|
|
858
|
-
}
|
|
927
|
+
|
|
928
|
+
.chk_primary_btn_link {}
|
|
859
929
|
}
|
|
860
930
|
|
|
861
931
|
// payment other options styles
|
|
@@ -864,24 +934,31 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
864
934
|
justify-content: space-between;
|
|
865
935
|
gap: 80px;
|
|
866
936
|
padding: 16px;
|
|
937
|
+
|
|
867
938
|
.chk_pmnt_other_options_left_container {
|
|
868
939
|
display: flex;
|
|
869
940
|
gap: 12px;
|
|
941
|
+
|
|
870
942
|
.chk_pmnt_option_info_wrapper {
|
|
871
943
|
display: flex;
|
|
872
944
|
gap: 12px;
|
|
945
|
+
|
|
873
946
|
.cards {
|
|
874
947
|
display: flex;
|
|
875
948
|
flex-direction: column;
|
|
876
949
|
gap: 8px;
|
|
950
|
+
|
|
877
951
|
.chk_payment_options_name {
|
|
878
952
|
font-weight: 600;
|
|
879
953
|
}
|
|
954
|
+
|
|
880
955
|
span {
|
|
881
956
|
font-size: 12px;
|
|
957
|
+
|
|
882
958
|
.chk_payment_options_label {
|
|
883
959
|
color: var(--_gray-600);
|
|
884
960
|
}
|
|
961
|
+
|
|
885
962
|
.chk_payment_options_value {
|
|
886
963
|
color: var(--_gray-900);
|
|
887
964
|
}
|
|
@@ -889,6 +966,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
889
966
|
}
|
|
890
967
|
}
|
|
891
968
|
}
|
|
969
|
+
|
|
892
970
|
.chk_pmnt_other_options_container {
|
|
893
971
|
padding: 16px;
|
|
894
972
|
}
|
|
@@ -909,6 +987,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
909
987
|
display: flex;
|
|
910
988
|
gap: 12px;
|
|
911
989
|
align-items: flex-start;
|
|
990
|
+
|
|
912
991
|
.chk_payment_option__info_wrapper {
|
|
913
992
|
display: flex;
|
|
914
993
|
gap: 0px;
|
|
@@ -982,25 +1061,31 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
982
1061
|
}
|
|
983
1062
|
}
|
|
984
1063
|
}
|
|
1064
|
+
|
|
985
1065
|
.chk_cred_form_details {
|
|
986
1066
|
border-top: 1px solid var(--_gray-100);
|
|
987
1067
|
padding: 16px;
|
|
1068
|
+
|
|
988
1069
|
.chk_basic_form_title {
|
|
989
1070
|
font-size: 14px;
|
|
990
1071
|
margin-bottom: 16px;
|
|
991
1072
|
font-weight: 600;
|
|
992
1073
|
}
|
|
1074
|
+
|
|
993
1075
|
.chk_form_fields {
|
|
994
1076
|
h3 {
|
|
995
1077
|
font-size: 14px;
|
|
996
1078
|
margin-bottom: 8px;
|
|
997
1079
|
}
|
|
1080
|
+
|
|
998
1081
|
display: flex;
|
|
999
1082
|
flex-direction: column;
|
|
1000
1083
|
gap: 24px;
|
|
1001
1084
|
width: 500px;
|
|
1085
|
+
|
|
1002
1086
|
.chk_form_field {
|
|
1003
1087
|
width: 100%;
|
|
1088
|
+
|
|
1004
1089
|
&.expiry_details {
|
|
1005
1090
|
width: 80px;
|
|
1006
1091
|
}
|
|
@@ -1016,6 +1101,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1016
1101
|
padding-bottom: 2px;
|
|
1017
1102
|
color: var(--_gray-700);
|
|
1018
1103
|
}
|
|
1104
|
+
|
|
1019
1105
|
.chk_form_field_inp {
|
|
1020
1106
|
width: -webkit-fill-available;
|
|
1021
1107
|
height: 40px;
|
|
@@ -1025,14 +1111,17 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1025
1111
|
border-radius: 6px;
|
|
1026
1112
|
height: 40px;
|
|
1027
1113
|
padding: 8px 12px;
|
|
1114
|
+
|
|
1028
1115
|
&::placeholder {
|
|
1029
1116
|
color: var(--_gray-600);
|
|
1030
1117
|
}
|
|
1118
|
+
|
|
1031
1119
|
input &:focus-within {
|
|
1032
1120
|
border: 1px solid var(--_primary-300);
|
|
1033
1121
|
outline: 2px solid var(--_primary-100);
|
|
1034
1122
|
}
|
|
1035
1123
|
}
|
|
1124
|
+
|
|
1036
1125
|
.error_msg {
|
|
1037
1126
|
display: block;
|
|
1038
1127
|
color: var(--_error-700);
|
|
@@ -1054,7 +1143,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1054
1143
|
input[type="checkbox"] {
|
|
1055
1144
|
display: none;
|
|
1056
1145
|
|
|
1057
|
-
&:checked
|
|
1146
|
+
&:checked+.custom-checkbox::after {
|
|
1058
1147
|
opacity: 1;
|
|
1059
1148
|
}
|
|
1060
1149
|
}
|
|
@@ -1084,27 +1173,33 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1084
1173
|
}
|
|
1085
1174
|
}
|
|
1086
1175
|
}
|
|
1176
|
+
|
|
1087
1177
|
.expiry_details {
|
|
1088
1178
|
display: flex;
|
|
1089
1179
|
gap: 12px;
|
|
1180
|
+
|
|
1090
1181
|
.cvv_inp {
|
|
1091
1182
|
width: 110px;
|
|
1092
1183
|
}
|
|
1093
1184
|
}
|
|
1094
1185
|
}
|
|
1186
|
+
|
|
1095
1187
|
.chk_form_actions {
|
|
1096
1188
|
display: flex;
|
|
1097
1189
|
gap: 12px;
|
|
1190
|
+
|
|
1098
1191
|
.chk_sav_btn {
|
|
1099
1192
|
padding: 12px 16px;
|
|
1100
1193
|
background-color: var(--_thm-py-bs-dt-se-bd-cr);
|
|
1101
1194
|
border-radius: 6px;
|
|
1102
1195
|
color: var(--_base-white);
|
|
1103
1196
|
font-size: 14px;
|
|
1197
|
+
|
|
1104
1198
|
&:hover {
|
|
1105
1199
|
background-color: var(--_primary-500);
|
|
1106
1200
|
}
|
|
1107
1201
|
}
|
|
1202
|
+
|
|
1108
1203
|
.chk_can_btn {
|
|
1109
1204
|
padding: 12px 16px;
|
|
1110
1205
|
background-color: transparent;
|
|
@@ -1121,6 +1216,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1121
1216
|
}
|
|
1122
1217
|
}
|
|
1123
1218
|
}
|
|
1219
|
+
|
|
1124
1220
|
.add_credit_card {
|
|
1125
1221
|
display: flex;
|
|
1126
1222
|
gap: 12px;
|
|
@@ -1144,10 +1240,12 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1144
1240
|
font-weight: 600;
|
|
1145
1241
|
}
|
|
1146
1242
|
}
|
|
1243
|
+
|
|
1147
1244
|
.chk_payment_cred_section_col_right {
|
|
1148
1245
|
.chk_currency_inp_sec {
|
|
1149
1246
|
display: flex;
|
|
1150
1247
|
justify-content: end;
|
|
1248
|
+
|
|
1151
1249
|
.chk_currency_inp {
|
|
1152
1250
|
border: 1px solid var(--_gray-200);
|
|
1153
1251
|
min-width: 100px;
|
|
@@ -1160,17 +1258,20 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1160
1258
|
padding-inline: 12px;
|
|
1161
1259
|
}
|
|
1162
1260
|
}
|
|
1261
|
+
|
|
1163
1262
|
.cur_conversion {
|
|
1164
1263
|
font-size: 14px;
|
|
1165
1264
|
}
|
|
1166
1265
|
}
|
|
1167
1266
|
}
|
|
1267
|
+
|
|
1168
1268
|
.add_new_credit_card {
|
|
1169
1269
|
display: flex;
|
|
1170
1270
|
justify-content: space-between;
|
|
1171
1271
|
align-items: center;
|
|
1172
1272
|
padding-inline: 16px;
|
|
1173
1273
|
}
|
|
1274
|
+
|
|
1174
1275
|
.cc_tertiary_btn {
|
|
1175
1276
|
// color: var(--_thm-py-bs-dt-se-tt-cr);
|
|
1176
1277
|
color: var(--_thm-cs-tt-ls-as);
|
|
@@ -1203,6 +1304,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1203
1304
|
text-decoration: underline;
|
|
1204
1305
|
}
|
|
1205
1306
|
}
|
|
1307
|
+
|
|
1206
1308
|
.chk_payment_options_heading {
|
|
1207
1309
|
color: var(--_gray-900);
|
|
1208
1310
|
font-size: 16px;
|
|
@@ -1215,6 +1317,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1215
1317
|
gap: 8px;
|
|
1216
1318
|
}
|
|
1217
1319
|
}
|
|
1320
|
+
|
|
1218
1321
|
.chk_payment_cred_section {
|
|
1219
1322
|
display: flex;
|
|
1220
1323
|
justify-content: space-between;
|
|
@@ -1232,32 +1335,39 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1232
1335
|
align-items: center;
|
|
1233
1336
|
padding: 8px 12px;
|
|
1234
1337
|
gap: 12px;
|
|
1338
|
+
|
|
1235
1339
|
&:focus-within {
|
|
1236
1340
|
border: 1px solid var(--_primary-200);
|
|
1237
1341
|
outline: 2px solid var(--_primary-50);
|
|
1238
1342
|
}
|
|
1343
|
+
|
|
1239
1344
|
input {
|
|
1240
1345
|
height: inherit;
|
|
1241
1346
|
background-color: var(--_base-white);
|
|
1347
|
+
|
|
1242
1348
|
&:disabled {
|
|
1243
1349
|
opacity: 0.8;
|
|
1244
1350
|
cursor: not-allowed;
|
|
1245
1351
|
}
|
|
1246
1352
|
}
|
|
1247
1353
|
}
|
|
1354
|
+
|
|
1248
1355
|
.chk_payment_cred_section_col_left {
|
|
1249
1356
|
.chk_payment_cred_section_col_left_crd_details {
|
|
1250
1357
|
display: flex;
|
|
1251
1358
|
gap: 80px;
|
|
1252
1359
|
align-items: center;
|
|
1253
|
-
|
|
1360
|
+
|
|
1361
|
+
&>div {
|
|
1254
1362
|
display: flex;
|
|
1255
1363
|
gap: 12px;
|
|
1364
|
+
|
|
1256
1365
|
.card_icon {
|
|
1257
1366
|
width: 60px;
|
|
1258
1367
|
height: 40px;
|
|
1259
1368
|
border-radius: 4px;
|
|
1260
1369
|
}
|
|
1370
|
+
|
|
1261
1371
|
.card_details {
|
|
1262
1372
|
.card_details_num {
|
|
1263
1373
|
font-weight: 600;
|
|
@@ -1265,13 +1375,16 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1265
1375
|
font-size: 14px;
|
|
1266
1376
|
line-height: 20px;
|
|
1267
1377
|
}
|
|
1268
|
-
|
|
1378
|
+
|
|
1379
|
+
&>div {
|
|
1269
1380
|
display: flex;
|
|
1381
|
+
|
|
1270
1382
|
.card_details_label {
|
|
1271
1383
|
color: var(--_gray-500);
|
|
1272
1384
|
font-size: 12px;
|
|
1273
1385
|
font-weight: 400;
|
|
1274
1386
|
}
|
|
1387
|
+
|
|
1275
1388
|
.card_details_value {
|
|
1276
1389
|
color: var(--_gray-900);
|
|
1277
1390
|
font-size: 12px;
|
|
@@ -1288,11 +1401,13 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1288
1401
|
.chk_gift_card_details {
|
|
1289
1402
|
border-top: 1px solid var(--_gray-300);
|
|
1290
1403
|
padding: 16px;
|
|
1404
|
+
|
|
1291
1405
|
.chk_gift_card_form {
|
|
1292
1406
|
display: flex;
|
|
1293
1407
|
flex-direction: column;
|
|
1294
1408
|
gap: 16px;
|
|
1295
1409
|
max-width: 480px;
|
|
1410
|
+
|
|
1296
1411
|
.chk_gift_cart_form_title {
|
|
1297
1412
|
font-size: 14px;
|
|
1298
1413
|
font-weight: 600;
|
|
@@ -1302,37 +1417,45 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1302
1417
|
display: flex;
|
|
1303
1418
|
gap: 12px;
|
|
1304
1419
|
width: 100%;
|
|
1420
|
+
|
|
1305
1421
|
.chk_gift_inp_field {
|
|
1306
1422
|
display: flex;
|
|
1307
1423
|
flex-direction: column;
|
|
1308
1424
|
gap: 6px;
|
|
1309
1425
|
width: 100%;
|
|
1426
|
+
|
|
1310
1427
|
label {
|
|
1311
1428
|
color: var(--_gray-600);
|
|
1312
1429
|
}
|
|
1430
|
+
|
|
1313
1431
|
.chk_gift_inp {
|
|
1314
1432
|
border: 1px solid var(--_gray-300);
|
|
1315
1433
|
border-radius: 6px;
|
|
1316
1434
|
height: 40px;
|
|
1317
1435
|
padding-inline: 10px;
|
|
1436
|
+
|
|
1318
1437
|
&:placeholder-shown {
|
|
1319
1438
|
padding-left: 10px;
|
|
1320
1439
|
color: var(--_gray-400);
|
|
1321
1440
|
}
|
|
1441
|
+
|
|
1322
1442
|
&:focus {
|
|
1323
1443
|
border: 1px solid var(--_primary-300);
|
|
1324
1444
|
outline: 2px solid var(--_primary-100);
|
|
1325
1445
|
}
|
|
1326
1446
|
}
|
|
1447
|
+
|
|
1327
1448
|
&.pin {
|
|
1328
1449
|
width: 110px;
|
|
1329
1450
|
}
|
|
1451
|
+
|
|
1330
1452
|
.error_msg {
|
|
1331
1453
|
display: block;
|
|
1332
1454
|
color: var(--_error-700);
|
|
1333
1455
|
font-size: 12px;
|
|
1334
1456
|
}
|
|
1335
1457
|
}
|
|
1458
|
+
|
|
1336
1459
|
.error_msg {
|
|
1337
1460
|
color: var(--_error-700);
|
|
1338
1461
|
font-size: 14px;
|
|
@@ -1340,19 +1463,23 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1340
1463
|
}
|
|
1341
1464
|
}
|
|
1342
1465
|
}
|
|
1466
|
+
|
|
1343
1467
|
.chk_form_actions {
|
|
1344
1468
|
display: flex;
|
|
1345
1469
|
gap: 12px;
|
|
1470
|
+
|
|
1346
1471
|
.chk_sav_btn {
|
|
1347
1472
|
padding: 12px 16px;
|
|
1348
1473
|
background-color: var(--_thm-py-bs-dt-se-bd-cr);
|
|
1349
1474
|
border-radius: 6px;
|
|
1350
1475
|
color: var(--_base-white);
|
|
1351
1476
|
font-size: 14px;
|
|
1477
|
+
|
|
1352
1478
|
&:hover {
|
|
1353
1479
|
background-color: var(--_thm-py-bs-hr-se-bd-cr);
|
|
1354
1480
|
}
|
|
1355
1481
|
}
|
|
1482
|
+
|
|
1356
1483
|
.chk_can_btn {
|
|
1357
1484
|
padding: 12px 16px;
|
|
1358
1485
|
background-color: transparent;
|
|
@@ -1373,6 +1500,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1373
1500
|
// Payment with checkout end
|
|
1374
1501
|
|
|
1375
1502
|
.dropdown-with-input-section {
|
|
1503
|
+
|
|
1376
1504
|
// border: 0.5px solid var(--_gray-300);
|
|
1377
1505
|
.dropdown-menu {
|
|
1378
1506
|
margin-left: -7px !important;
|
|
@@ -1383,12 +1511,14 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1383
1511
|
display: flex;
|
|
1384
1512
|
flex-direction: column;
|
|
1385
1513
|
width: 100%;
|
|
1514
|
+
|
|
1386
1515
|
.wishlist-modal-section {
|
|
1387
1516
|
padding: 16px 24px 24px 24px;
|
|
1388
1517
|
gap: 16px !important;
|
|
1389
1518
|
overflow-x: hidden;
|
|
1390
1519
|
display: flex;
|
|
1391
1520
|
flex-direction: column;
|
|
1521
|
+
|
|
1392
1522
|
input[type="text"] {
|
|
1393
1523
|
height: 40px;
|
|
1394
1524
|
border: 1px solid var(--_gray-300);
|
|
@@ -1397,6 +1527,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1397
1527
|
}
|
|
1398
1528
|
}
|
|
1399
1529
|
}
|
|
1530
|
+
|
|
1400
1531
|
// .action-buttons {
|
|
1401
1532
|
// display: flex;
|
|
1402
1533
|
// gap: 1rem;
|
|
@@ -1451,6 +1582,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1451
1582
|
height: 100%;
|
|
1452
1583
|
width: 100%;
|
|
1453
1584
|
background-color: var(--_gray-100);
|
|
1585
|
+
|
|
1454
1586
|
.process_load_wrapper {
|
|
1455
1587
|
.process_loader_content {
|
|
1456
1588
|
display: flex;
|
|
@@ -1458,15 +1590,18 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1458
1590
|
/* gap: 8px; */
|
|
1459
1591
|
justify-content: center;
|
|
1460
1592
|
align-items: center;
|
|
1593
|
+
|
|
1461
1594
|
p {
|
|
1462
1595
|
margin-top: 8px;
|
|
1463
1596
|
}
|
|
1597
|
+
|
|
1464
1598
|
.process_loader_box {
|
|
1465
1599
|
.processing_loader {
|
|
1466
1600
|
position: relative;
|
|
1467
1601
|
width: 64px;
|
|
1468
1602
|
height: 64px;
|
|
1469
1603
|
margin-bottom: 24px;
|
|
1604
|
+
|
|
1470
1605
|
&::before,
|
|
1471
1606
|
&::after {
|
|
1472
1607
|
content: "";
|
|
@@ -1490,14 +1625,17 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1490
1625
|
animation: processing_loader_spin 1s linear infinite;
|
|
1491
1626
|
}
|
|
1492
1627
|
}
|
|
1628
|
+
|
|
1493
1629
|
h3 {
|
|
1494
1630
|
margin-block: 10px;
|
|
1495
1631
|
}
|
|
1496
1632
|
}
|
|
1633
|
+
|
|
1497
1634
|
@keyframes processing_loader_spin {
|
|
1498
1635
|
0% {
|
|
1499
1636
|
transform: rotate(0deg);
|
|
1500
1637
|
}
|
|
1638
|
+
|
|
1501
1639
|
100% {
|
|
1502
1640
|
transform: rotate(360deg);
|
|
1503
1641
|
}
|
|
@@ -1506,6 +1644,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1506
1644
|
}
|
|
1507
1645
|
}
|
|
1508
1646
|
}
|
|
1647
|
+
|
|
1509
1648
|
&.fullscreen {
|
|
1510
1649
|
transition:
|
|
1511
1650
|
all 0.5s ease-in-out,
|
|
@@ -1558,6 +1697,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1558
1697
|
z-index: var(--_higher-zIndex);
|
|
1559
1698
|
// padding: 0 16px;
|
|
1560
1699
|
border-bottom: 1px solid #d0d5dd;
|
|
1700
|
+
|
|
1561
1701
|
.title-bar {
|
|
1562
1702
|
display: flex;
|
|
1563
1703
|
justify-content: space-between;
|
|
@@ -1575,8 +1715,10 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1575
1715
|
display: flex;
|
|
1576
1716
|
gap: 8px;
|
|
1577
1717
|
align-items: center;
|
|
1718
|
+
|
|
1578
1719
|
span {
|
|
1579
1720
|
display: flex;
|
|
1721
|
+
|
|
1580
1722
|
svg {
|
|
1581
1723
|
width: 20px;
|
|
1582
1724
|
height: 20px;
|
|
@@ -1609,10 +1751,12 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1609
1751
|
}
|
|
1610
1752
|
}
|
|
1611
1753
|
}
|
|
1754
|
+
|
|
1612
1755
|
.right_col {
|
|
1613
1756
|
display: flex;
|
|
1614
1757
|
align-items: center;
|
|
1615
1758
|
gap: 12px;
|
|
1759
|
+
|
|
1616
1760
|
.bulk-order-pad-header-body {
|
|
1617
1761
|
.checkout_btn {
|
|
1618
1762
|
padding: 8px 16px;
|
|
@@ -1621,6 +1765,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1621
1765
|
color: var(--_base-white);
|
|
1622
1766
|
}
|
|
1623
1767
|
}
|
|
1768
|
+
|
|
1624
1769
|
.employee_bulk_order_header {
|
|
1625
1770
|
display: flex;
|
|
1626
1771
|
justify-self: end;
|
|
@@ -1631,6 +1776,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1631
1776
|
align-items: center;
|
|
1632
1777
|
gap: 6px;
|
|
1633
1778
|
}
|
|
1779
|
+
|
|
1634
1780
|
.svg_icon {
|
|
1635
1781
|
display: flex;
|
|
1636
1782
|
align-items: center;
|
|
@@ -1646,6 +1792,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1646
1792
|
gap: 4px;
|
|
1647
1793
|
position: relative;
|
|
1648
1794
|
line-height: 20px;
|
|
1795
|
+
|
|
1649
1796
|
&:after {
|
|
1650
1797
|
content: "";
|
|
1651
1798
|
width: 1px;
|
|
@@ -1668,6 +1815,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1668
1815
|
.emp_info {
|
|
1669
1816
|
display: flex;
|
|
1670
1817
|
padding-right: 16px;
|
|
1818
|
+
|
|
1671
1819
|
.emp_info_item {
|
|
1672
1820
|
color: var(--_gray-600);
|
|
1673
1821
|
font-size: 14px;
|
|
@@ -1676,12 +1824,14 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1676
1824
|
align-items: center;
|
|
1677
1825
|
position: relative;
|
|
1678
1826
|
line-height: 20px;
|
|
1827
|
+
|
|
1679
1828
|
.emp_count {
|
|
1680
1829
|
font-size: 16px;
|
|
1681
1830
|
color: var(--_gray-900);
|
|
1682
1831
|
font-weight: 600;
|
|
1683
1832
|
margin-left: 4px;
|
|
1684
1833
|
}
|
|
1834
|
+
|
|
1685
1835
|
&:not(:last-child):after {
|
|
1686
1836
|
content: "";
|
|
1687
1837
|
background: var(--_gray-400);
|
|
@@ -1702,10 +1852,12 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1702
1852
|
}
|
|
1703
1853
|
}
|
|
1704
1854
|
}
|
|
1855
|
+
|
|
1705
1856
|
.emp_options_wrapper {
|
|
1706
1857
|
display: flex;
|
|
1707
1858
|
align-items: center;
|
|
1708
1859
|
gap: 8px;
|
|
1860
|
+
|
|
1709
1861
|
&::after {
|
|
1710
1862
|
content: "";
|
|
1711
1863
|
display: inline-block;
|
|
@@ -1714,6 +1866,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1714
1866
|
width: 1px;
|
|
1715
1867
|
margin-inline-start: 18px;
|
|
1716
1868
|
}
|
|
1869
|
+
|
|
1717
1870
|
&::before {
|
|
1718
1871
|
content: "";
|
|
1719
1872
|
display: inline-block;
|
|
@@ -1722,6 +1875,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1722
1875
|
width: 1px;
|
|
1723
1876
|
margin-inline: 8px;
|
|
1724
1877
|
}
|
|
1878
|
+
|
|
1725
1879
|
.user_icon {
|
|
1726
1880
|
width: 30px;
|
|
1727
1881
|
height: 30px;
|
|
@@ -1729,16 +1883,20 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1729
1883
|
justify-content: center;
|
|
1730
1884
|
align-items: center;
|
|
1731
1885
|
cursor: pointer;
|
|
1886
|
+
|
|
1732
1887
|
&.active {
|
|
1733
1888
|
background-color: var(--_gray-50);
|
|
1734
1889
|
}
|
|
1735
|
-
|
|
1890
|
+
|
|
1891
|
+
&>span {
|
|
1736
1892
|
display: flex;
|
|
1737
1893
|
}
|
|
1894
|
+
|
|
1738
1895
|
&:hover {
|
|
1739
1896
|
background-color: var(--_gray-100);
|
|
1740
1897
|
}
|
|
1741
1898
|
}
|
|
1899
|
+
|
|
1742
1900
|
.emp_options {
|
|
1743
1901
|
position: absolute;
|
|
1744
1902
|
top: 44px;
|
|
@@ -1748,6 +1906,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1748
1906
|
border-radius: 4px;
|
|
1749
1907
|
z-index: 10;
|
|
1750
1908
|
box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
|
|
1909
|
+
|
|
1751
1910
|
.emp_options_header {
|
|
1752
1911
|
padding: 12px;
|
|
1753
1912
|
font-size: 14px;
|
|
@@ -1755,13 +1914,16 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1755
1914
|
color: var(--_gray-600);
|
|
1756
1915
|
border-bottom: 1px solid var(--_gray-200);
|
|
1757
1916
|
}
|
|
1917
|
+
|
|
1758
1918
|
.emp_options_list {
|
|
1759
1919
|
padding: 12px;
|
|
1920
|
+
|
|
1760
1921
|
.emp_options_list_item {
|
|
1761
1922
|
display: flex;
|
|
1762
1923
|
justify-content: space-between;
|
|
1763
1924
|
align-items: center;
|
|
1764
1925
|
gap: 8px;
|
|
1926
|
+
|
|
1765
1927
|
.emp_options_list_item_label {
|
|
1766
1928
|
display: flex;
|
|
1767
1929
|
gap: 12px;
|
|
@@ -1772,28 +1934,33 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1772
1934
|
// color: var(--_thm-py-bs-dt-se-tt-cr);
|
|
1773
1935
|
// }
|
|
1774
1936
|
}
|
|
1937
|
+
|
|
1775
1938
|
p {
|
|
1776
1939
|
font-size: 12px;
|
|
1777
1940
|
color: var(--_gray-500);
|
|
1778
1941
|
padding-block: 4px 16px;
|
|
1779
1942
|
}
|
|
1780
1943
|
}
|
|
1944
|
+
|
|
1781
1945
|
.emp_options_footer {
|
|
1782
1946
|
display: flex;
|
|
1783
1947
|
border-top: 1px solid var(--_gray-200);
|
|
1784
1948
|
|
|
1785
|
-
|
|
1949
|
+
&>div {
|
|
1786
1950
|
flex-basis: 50%;
|
|
1787
1951
|
display: flex;
|
|
1788
1952
|
justify-content: center;
|
|
1789
1953
|
align-items: center;
|
|
1790
1954
|
padding: 16px;
|
|
1791
1955
|
cursor: pointer;
|
|
1956
|
+
|
|
1792
1957
|
&:first-child {
|
|
1793
1958
|
border-right: 1px solid var(--_gray-200);
|
|
1794
1959
|
}
|
|
1960
|
+
|
|
1795
1961
|
&:hover {
|
|
1796
1962
|
background-color: var(--_primary-25);
|
|
1963
|
+
|
|
1797
1964
|
svg path {
|
|
1798
1965
|
stroke: var(--_thm-py-bs-dt-se-tt-cr);
|
|
1799
1966
|
}
|
|
@@ -1805,14 +1972,17 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1805
1972
|
|
|
1806
1973
|
.em_or_ss_wp {
|
|
1807
1974
|
position: relative;
|
|
1975
|
+
|
|
1808
1976
|
&:hover {
|
|
1809
1977
|
.em_or_ss_wp_cr {
|
|
1810
1978
|
display: block;
|
|
1811
1979
|
}
|
|
1980
|
+
|
|
1812
1981
|
.em_or_ss_wp_bn {
|
|
1813
1982
|
background-color: var(--_gray-50);
|
|
1814
1983
|
}
|
|
1815
1984
|
}
|
|
1985
|
+
|
|
1816
1986
|
.em_or_ss_wp_bn {
|
|
1817
1987
|
display: flex;
|
|
1818
1988
|
justify-content: center;
|
|
@@ -1823,11 +1993,13 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1823
1993
|
|
|
1824
1994
|
cursor: pointer;
|
|
1825
1995
|
top: 120%;
|
|
1996
|
+
|
|
1826
1997
|
&.disabled {
|
|
1827
1998
|
opacity: 0.5;
|
|
1828
1999
|
pointer-events: none;
|
|
1829
2000
|
}
|
|
1830
2001
|
}
|
|
2002
|
+
|
|
1831
2003
|
.em_or_ss_wp_cr {
|
|
1832
2004
|
position: absolute;
|
|
1833
2005
|
z-index: calc(var(--_higher-zIndex) + var(--_emp-bulk-order-settings-zIndex));
|
|
@@ -1837,6 +2009,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1837
2009
|
background-color: var(--_base-white);
|
|
1838
2010
|
box-shadow: 0px 0px 24px rgb(0, 0, 0, 0.1);
|
|
1839
2011
|
display: none;
|
|
2012
|
+
|
|
1840
2013
|
.em_or_ss_wp_cr_hr {
|
|
1841
2014
|
color: var(--_gray-600);
|
|
1842
2015
|
font-weight: 600;
|
|
@@ -1844,8 +2017,10 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1844
2017
|
padding: 12px;
|
|
1845
2018
|
border-bottom: 1px solid var(--_gray-200);
|
|
1846
2019
|
}
|
|
2020
|
+
|
|
1847
2021
|
ul {
|
|
1848
2022
|
list-style: none;
|
|
2023
|
+
|
|
1849
2024
|
li {
|
|
1850
2025
|
padding: 10px 12px;
|
|
1851
2026
|
font-size: 14px;
|
|
@@ -1857,12 +2032,15 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1857
2032
|
cursor: pointer;
|
|
1858
2033
|
margin: 4px;
|
|
1859
2034
|
border-radius: 4px;
|
|
1860
|
-
|
|
2035
|
+
|
|
2036
|
+
&>span svg path {
|
|
1861
2037
|
stroke: var(--_gray-500);
|
|
1862
2038
|
}
|
|
1863
|
-
|
|
2039
|
+
|
|
2040
|
+
&>span {
|
|
1864
2041
|
display: flex;
|
|
1865
2042
|
}
|
|
2043
|
+
|
|
1866
2044
|
&:hover {
|
|
1867
2045
|
background-color: var(--_primary-25);
|
|
1868
2046
|
color: var(--_thm-py-bs-dt-se-tt-cr);
|
|
@@ -1876,6 +2054,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1876
2054
|
display: flex;
|
|
1877
2055
|
align-items: center;
|
|
1878
2056
|
gap: 12px;
|
|
2057
|
+
|
|
1879
2058
|
&::after {
|
|
1880
2059
|
content: "";
|
|
1881
2060
|
display: inline-block;
|
|
@@ -1883,6 +2062,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1883
2062
|
width: 1px;
|
|
1884
2063
|
background-color: var(--_gray-200);
|
|
1885
2064
|
}
|
|
2065
|
+
|
|
1886
2066
|
&::before {
|
|
1887
2067
|
content: "";
|
|
1888
2068
|
display: inline-block;
|
|
@@ -1890,6 +2070,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1890
2070
|
width: 1px;
|
|
1891
2071
|
background-color: var(--_gray-200);
|
|
1892
2072
|
}
|
|
2073
|
+
|
|
1893
2074
|
.emp_btn {
|
|
1894
2075
|
padding: 8px 12px;
|
|
1895
2076
|
border-radius: 4px;
|
|
@@ -1898,13 +2079,16 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1898
2079
|
&.emp_primary {
|
|
1899
2080
|
color: var(--_base-white);
|
|
1900
2081
|
background-color: var(--_primary-500);
|
|
2082
|
+
|
|
1901
2083
|
&:hover {
|
|
1902
2084
|
background-color: var(--_primary-500);
|
|
1903
2085
|
}
|
|
1904
2086
|
}
|
|
2087
|
+
|
|
1905
2088
|
&.emp_tertiary_secondary {
|
|
1906
2089
|
color: var(--_gray-600);
|
|
1907
2090
|
margin-inline: 4px;
|
|
2091
|
+
|
|
1908
2092
|
&:hover {
|
|
1909
2093
|
background-color: var(--_gray-50);
|
|
1910
2094
|
color: var(--_gray-900);
|
|
@@ -1912,16 +2096,19 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1912
2096
|
}
|
|
1913
2097
|
}
|
|
1914
2098
|
}
|
|
2099
|
+
|
|
1915
2100
|
.emp_review_cart_btn {
|
|
1916
2101
|
padding: 8px 16px;
|
|
1917
2102
|
border: 1px solid var(--_gray-300);
|
|
1918
2103
|
border-radius: 6px;
|
|
1919
2104
|
color: var(--_gray-700);
|
|
1920
2105
|
cursor: pointer;
|
|
2106
|
+
|
|
1921
2107
|
&:hover {
|
|
1922
2108
|
background-color: var(--_gray-50);
|
|
1923
2109
|
}
|
|
1924
2110
|
}
|
|
2111
|
+
|
|
1925
2112
|
.emp_discard_btn {
|
|
1926
2113
|
padding-inline: 16px;
|
|
1927
2114
|
border-radius: 6px;
|
|
@@ -1930,20 +2117,25 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1930
2117
|
height: 32px;
|
|
1931
2118
|
display: flex;
|
|
1932
2119
|
align-items: center;
|
|
2120
|
+
|
|
1933
2121
|
&.disabled {
|
|
1934
2122
|
pointer-events: none;
|
|
1935
2123
|
opacity: 0.8;
|
|
1936
2124
|
}
|
|
2125
|
+
|
|
1937
2126
|
&:hover {
|
|
1938
2127
|
background-color: var(--_gray-50);
|
|
1939
2128
|
}
|
|
1940
2129
|
}
|
|
2130
|
+
|
|
1941
2131
|
.action_item {
|
|
1942
2132
|
cursor: pointer;
|
|
1943
2133
|
}
|
|
2134
|
+
|
|
1944
2135
|
.em_order_settings_act {
|
|
1945
2136
|
width: 40px;
|
|
1946
2137
|
}
|
|
2138
|
+
|
|
1947
2139
|
.em_btn_act {
|
|
1948
2140
|
padding-inline: 16px;
|
|
1949
2141
|
height: 32px;
|
|
@@ -1961,18 +2153,22 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1961
2153
|
}
|
|
1962
2154
|
}
|
|
1963
2155
|
}
|
|
2156
|
+
|
|
1964
2157
|
.actions {
|
|
1965
2158
|
display: flex;
|
|
1966
2159
|
align-items: center;
|
|
1967
2160
|
gap: 12px;
|
|
1968
2161
|
margin-left: 12px;
|
|
2162
|
+
|
|
1969
2163
|
svg {
|
|
1970
2164
|
width: 16px;
|
|
1971
2165
|
height: 16px;
|
|
2166
|
+
|
|
1972
2167
|
path {
|
|
1973
2168
|
stroke: var(--_gray-600);
|
|
1974
2169
|
}
|
|
1975
2170
|
}
|
|
2171
|
+
|
|
1976
2172
|
span {
|
|
1977
2173
|
width: 32px;
|
|
1978
2174
|
height: 32px;
|
|
@@ -1983,10 +2179,12 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1983
2179
|
display: flex;
|
|
1984
2180
|
align-items: center;
|
|
1985
2181
|
justify-content: center;
|
|
2182
|
+
|
|
1986
2183
|
&[title="Enter Fullscreen"] {
|
|
1987
2184
|
svg {
|
|
1988
2185
|
width: 14px;
|
|
1989
2186
|
height: 14px;
|
|
2187
|
+
|
|
1990
2188
|
path {
|
|
1991
2189
|
stroke: var(--_gray-500);
|
|
1992
2190
|
}
|
|
@@ -1997,11 +2195,13 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
1997
2195
|
color: var(--_gray-900);
|
|
1998
2196
|
background-color: var(--_gray-100);
|
|
1999
2197
|
border-radius: 4px;
|
|
2198
|
+
|
|
2000
2199
|
svg path {
|
|
2001
2200
|
stroke: var(--_gray-900);
|
|
2002
2201
|
}
|
|
2003
2202
|
}
|
|
2004
2203
|
}
|
|
2204
|
+
|
|
2005
2205
|
.sc_modal-close svg {
|
|
2006
2206
|
width: 20px !important;
|
|
2007
2207
|
height: 20px !important;
|
|
@@ -2065,11 +2265,13 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
2065
2265
|
.summary {
|
|
2066
2266
|
display: flex;
|
|
2067
2267
|
gap: 24px;
|
|
2268
|
+
|
|
2068
2269
|
span {
|
|
2069
2270
|
font-weight: 700;
|
|
2070
2271
|
line-height: 20px;
|
|
2071
2272
|
font-size: 14px;
|
|
2072
2273
|
color: var(--_gray-900);
|
|
2274
|
+
|
|
2073
2275
|
.footer_label {
|
|
2074
2276
|
font-weight: 400;
|
|
2075
2277
|
color: var(--_gray-500);
|
|
@@ -2117,12 +2319,14 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
2117
2319
|
// &:hover {
|
|
2118
2320
|
// background: $primary-hover;
|
|
2119
2321
|
// }
|
|
2120
|
-
|
|
2322
|
+
&>span {
|
|
2121
2323
|
display: flex;
|
|
2324
|
+
|
|
2122
2325
|
svg path {
|
|
2123
2326
|
stroke: var(--_base-white);
|
|
2124
2327
|
}
|
|
2125
2328
|
}
|
|
2329
|
+
|
|
2126
2330
|
&.disabled {
|
|
2127
2331
|
opacity: 0.4;
|
|
2128
2332
|
pointer-events: none;
|
|
@@ -2146,23 +2350,30 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
2146
2350
|
transform 0.4s ease-in-out;
|
|
2147
2351
|
right: 20px;
|
|
2148
2352
|
bottom: 20px;
|
|
2149
|
-
padding: 0;
|
|
2353
|
+
padding: 0;
|
|
2354
|
+
/* Remove padding from the main min container */
|
|
2150
2355
|
border-radius: $radius;
|
|
2151
2356
|
box-shadow: $shadow-md;
|
|
2152
2357
|
z-index: $z-index-minimized;
|
|
2153
2358
|
display: none;
|
|
2154
|
-
flex-direction: row;
|
|
2359
|
+
flex-direction: row;
|
|
2360
|
+
/* Align items in a row */
|
|
2155
2361
|
align-items: center;
|
|
2156
|
-
gap: 10px;
|
|
2362
|
+
gap: 10px;
|
|
2363
|
+
/* Adjust gap between elements */
|
|
2157
2364
|
font-size: $font-size-base;
|
|
2158
|
-
background-color: transparent;
|
|
2365
|
+
background-color: transparent;
|
|
2366
|
+
/* Make the main container transparent */
|
|
2159
2367
|
|
|
2160
2368
|
.min-toolbar {
|
|
2161
2369
|
background-color: var(--_base-white);
|
|
2162
2370
|
display: flex;
|
|
2163
|
-
align-items: center;
|
|
2164
|
-
|
|
2165
|
-
|
|
2371
|
+
align-items: center;
|
|
2372
|
+
/* Align items vertically in the toolbar */
|
|
2373
|
+
padding-inline-start: 16px;
|
|
2374
|
+
/* Add padding to the toolbar */
|
|
2375
|
+
border-radius: $radius 0 0 $radius;
|
|
2376
|
+
/* Rounded left corners */
|
|
2166
2377
|
gap: 16px;
|
|
2167
2378
|
}
|
|
2168
2379
|
|
|
@@ -2181,8 +2392,10 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
2181
2392
|
.cart-btn {
|
|
2182
2393
|
background: $primary;
|
|
2183
2394
|
color: $white;
|
|
2184
|
-
border: none;
|
|
2185
|
-
|
|
2395
|
+
border: none;
|
|
2396
|
+
/* Remove border */
|
|
2397
|
+
border-radius: 0 $radius $radius 0;
|
|
2398
|
+
/* Rounded right corners */
|
|
2186
2399
|
padding: 12px 16px;
|
|
2187
2400
|
font-weight: 600;
|
|
2188
2401
|
font-size: $font-size-sm;
|
|
@@ -2212,13 +2425,16 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
2212
2425
|
display: flex;
|
|
2213
2426
|
align-items: center;
|
|
2214
2427
|
justify-content: center;
|
|
2428
|
+
|
|
2215
2429
|
&:hover {
|
|
2216
2430
|
background-color: var(--_gray-50);
|
|
2217
2431
|
border-radius: 4px;
|
|
2432
|
+
|
|
2218
2433
|
svg path {
|
|
2219
2434
|
stroke: var(--_gray-900);
|
|
2220
2435
|
}
|
|
2221
2436
|
}
|
|
2437
|
+
|
|
2222
2438
|
&[title="Maximize"] {
|
|
2223
2439
|
svg {
|
|
2224
2440
|
width: 14px;
|
|
@@ -2244,6 +2460,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
2244
2460
|
}
|
|
2245
2461
|
}
|
|
2246
2462
|
}
|
|
2463
|
+
|
|
2247
2464
|
.action-buttons {
|
|
2248
2465
|
display: flex;
|
|
2249
2466
|
gap: 1rem;
|
|
@@ -2253,10 +2470,12 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
2253
2470
|
padding: 16px 24px;
|
|
2254
2471
|
border-top: 1px solid var(--_gray-200);
|
|
2255
2472
|
gap: 12px;
|
|
2473
|
+
|
|
2256
2474
|
button {
|
|
2257
2475
|
padding: 12px 16px;
|
|
2258
2476
|
border-radius: 6px;
|
|
2259
2477
|
}
|
|
2478
|
+
|
|
2260
2479
|
.create-btn {
|
|
2261
2480
|
display: flex;
|
|
2262
2481
|
justify-content: center;
|
|
@@ -2264,10 +2483,12 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
2264
2483
|
gap: 8px;
|
|
2265
2484
|
background-color: var(--_thm-py-bs-dt-se-bd-cr);
|
|
2266
2485
|
color: var(--_base-white);
|
|
2486
|
+
|
|
2267
2487
|
&.disabled {
|
|
2268
2488
|
opacity: 0.5;
|
|
2269
2489
|
pointer-events: none;
|
|
2270
2490
|
}
|
|
2491
|
+
|
|
2271
2492
|
.loader {
|
|
2272
2493
|
animation: rotate-icon 1s linear infinite;
|
|
2273
2494
|
display: inline-block;
|
|
@@ -2282,6 +2503,7 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
2282
2503
|
background-color: var(--_primary-500);
|
|
2283
2504
|
}
|
|
2284
2505
|
}
|
|
2506
|
+
|
|
2285
2507
|
.discard-btn {
|
|
2286
2508
|
&:hover {
|
|
2287
2509
|
background-color: var(--_gray-50);
|
|
@@ -2295,7 +2517,8 @@ $shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
|
|
|
2295
2517
|
0% {
|
|
2296
2518
|
transform: rotate(0deg);
|
|
2297
2519
|
}
|
|
2520
|
+
|
|
2298
2521
|
100% {
|
|
2299
2522
|
transform: rotate(360deg);
|
|
2300
2523
|
}
|
|
2301
|
-
}
|
|
2524
|
+
}
|