holygrail2 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. package/.editorconfig +13 -0
  2. package/.prettierrc +6 -0
  3. package/.stylelintrc +27 -0
  4. package/.vscode/settings.json +3 -0
  5. package/assets/images/minilogo.png +0 -0
  6. package/cssconfig.json +373 -0
  7. package/dist/style.css +10376 -0
  8. package/dist/style.css.map +1 -0
  9. package/doc/docs.css +1764 -0
  10. package/doc/docs.css.map +1 -0
  11. package/guide/index.html +3202 -0
  12. package/package.json +59 -0
  13. package/readme.md +123 -0
  14. package/scss/_partials.scss +44 -0
  15. package/scss/abstract/_0debug.scss +192 -0
  16. package/scss/abstract/_all.scss +4 -0
  17. package/scss/abstract/_breakpoints.scss +27 -0
  18. package/scss/abstract/_fonts.scss +22 -0
  19. package/scss/abstract/_mixins.scss +691 -0
  20. package/scss/abstract/_reset.scss +124 -0
  21. package/scss/abstract/_setup.scss +385 -0
  22. package/scss/base/_alignment.scss +294 -0
  23. package/scss/base/_animations.scss +64 -0
  24. package/scss/base/_extras.scss +21 -0
  25. package/scss/base/_grid.scss +361 -0
  26. package/scss/base/_height.scss +19 -0
  27. package/scss/base/_helpers.scss +814 -0
  28. package/scss/base/_icons.scss +162 -0
  29. package/scss/base/_ratios.scss +262 -0
  30. package/scss/base/_rtl.scss +480 -0
  31. package/scss/base/_spacing.scss +60 -0
  32. package/scss/base/_types.scss +117 -0
  33. package/scss/docs.scss +680 -0
  34. package/scss/elements/_animated.scss +73 -0
  35. package/scss/elements/_banners.scss +68 -0
  36. package/scss/elements/_buttons.scss +1324 -0
  37. package/scss/elements/_checkbox.scss +722 -0
  38. package/scss/elements/_color_selector.scss +112 -0
  39. package/scss/elements/_datalist.scss +55 -0
  40. package/scss/elements/_form.scss +708 -0
  41. package/scss/elements/_links.scss +268 -0
  42. package/scss/elements/_list.scss +271 -0
  43. package/scss/elements/_modal.scss +141 -0
  44. package/scss/elements/_progressbar.scss +20 -0
  45. package/scss/elements/_tabs.scss +216 -0
  46. package/scss/elements/_tabs_specials.scss +216 -0
  47. package/scss/elements/_tag.scss +58 -0
  48. package/scss/elements/_tooltip.scss +176 -0
  49. package/scss/layouts/_box3.scss +64 -0
  50. package/scss/layouts/_box4.scss +19 -0
  51. package/scss/layouts/_card.scss +24 -0
  52. package/scss/layouts/_card9.scss +348 -0
  53. package/scss/layouts/_feel.scss +2 -0
  54. package/scss/layouts/_header_account.scss +144 -0
  55. package/scss/layouts/_hgbread.scss +51 -0
  56. package/scss/layouts/_row1.scss +108 -0
  57. package/scss/style.scss +1 -0
@@ -0,0 +1,814 @@
1
+ @import '../abstract/_all';
2
+
3
+ .c-primary {
4
+ color: $c-primary;
5
+ }
6
+ .c-black {
7
+ color: $c-black;
8
+ }
9
+ .c-dark-grey.is-through::after {
10
+ background-color: $c-dark-grey;
11
+ }
12
+
13
+ .c-feel-dark.is-through::after {
14
+ background-color: $c-feel-dark;
15
+ }
16
+ .c-dark-grey {
17
+ color: $c-dark-grey;
18
+ }
19
+ .c-middle-grey {
20
+ color: $c-middle-grey;
21
+ }
22
+ .c-light-grey {
23
+ color: $c-light-grey;
24
+ }
25
+ .c-white {
26
+ color: $c-white;
27
+ }
28
+ .second-color {
29
+ color: $c-dark-grey;
30
+ }
31
+ .is-info {
32
+ color: $c-info;
33
+ }
34
+ .c-error {
35
+ color: $c-error;
36
+ }
37
+ .c-sale {
38
+ color: $c-sale;
39
+ }
40
+ .c-info {
41
+ color: $c-info;
42
+ }
43
+ .c-success {
44
+ color: $c-success;
45
+ }
46
+ .c-valid {
47
+ color: $c-valid;
48
+ }
49
+ .c-warning {
50
+ color: $c-warning;
51
+ }
52
+ .c-feel {
53
+ color: $c-feel;
54
+ }
55
+ .c-feel-dark {
56
+ color: $c-feel-dark;
57
+ }
58
+ .c-feel-light {
59
+ color: $c-feel-light;
60
+ }
61
+
62
+ .c-tier-silver {
63
+ color: $c-tier-silver;
64
+ }
65
+ .c-tier-platinum {
66
+ color: $c-tier-platinum;
67
+ }
68
+ .c-tier-gold {
69
+ color: $c-tier-gold;
70
+ }
71
+
72
+ .c-limited {
73
+ color: $c-limited;
74
+ }
75
+ .bg-clear {
76
+ background-color: $c-white;
77
+ }
78
+ .bg-light {
79
+ background-color: $bg-light;
80
+ color: $c-primary;
81
+ }
82
+ .bg-cream {
83
+ background-color: $c-light-grey;
84
+ }
85
+ .bg-feel-light {
86
+ background-color: $c-feel-light;
87
+ }
88
+ .bg-feel-dark {
89
+ background-color: $c-feel-dark;
90
+ }
91
+
92
+ .bg-dark-grey {
93
+ background-color: $c-dark-grey;
94
+ }
95
+ .bg-middle-grey {
96
+ background-color: $c-middle-grey;
97
+ }
98
+ .bg-light-grey {
99
+ background-color: $c-light-grey;
100
+ }
101
+ .bg-primary {
102
+ background-color: $c-primary;
103
+ }
104
+ .bg-secondary {
105
+ background-color: $c-secondary;
106
+ }
107
+ .bg-accent {
108
+ background-color: $c-accent;
109
+ }
110
+ .bg-white {
111
+ background-color: $c-white;
112
+ }
113
+ .bg-black {
114
+ background-color: $c-black;
115
+ }
116
+ .bg-error {
117
+ background-color: $c-error;
118
+ }
119
+ .bg-info {
120
+ background-color: $c-info;
121
+ color: $c-white;
122
+ }
123
+ .bg-success {
124
+ background-color: $c-success;
125
+ color: $c-white;
126
+ }
127
+ .bg-warning {
128
+ background-color: $c-warning;
129
+ }
130
+ .bg-alert {
131
+ background-color: $c-alert;
132
+ }
133
+ .bg-feel {
134
+ background-color: $c-feel;
135
+ }
136
+ .bg-dark {
137
+ background-color: $bg-black;
138
+ color: $c-bg-dark;
139
+ }
140
+
141
+ .bg-tier-silver {
142
+ background-color: $c-tier-silver;
143
+ }
144
+ .bg-tier-platinum {
145
+ background-color: $c-tier-platinum;
146
+ }
147
+ .bg-tier-gold {
148
+ background-color: $c-tier-gold;
149
+ }
150
+
151
+ .bg-cover {
152
+ background-position: center center;
153
+ background-size: cover;
154
+ }
155
+
156
+ .banner-zone {
157
+ display: flex;
158
+ align-items: center;
159
+ justify-content: center;
160
+ flex-flow: row nowrap;
161
+ padding: 16px;
162
+ }
163
+ .text-lowercase {
164
+ text-transform: lowercase;
165
+ }
166
+ .text-uppercase {
167
+ text-transform: uppercase;
168
+ }
169
+ .text-capitalize {
170
+ text-transform: capitalize;
171
+ }
172
+ .text-transform-none {
173
+ text-transform: none;
174
+ }
175
+ .text-underline {
176
+ text-decoration: underline;
177
+ }
178
+ .has-ellipsis {
179
+ text-overflow: ellipsis;
180
+ overflow: hidden;
181
+ white-space: nowrap;
182
+ vertical-align: top;
183
+ width: 100%;
184
+ }
185
+ .has-ellipsis-3 {
186
+ overflow: hidden;
187
+ text-overflow: ellipsis;
188
+ display: -webkit-box;
189
+ -webkit-line-clamp: 3;
190
+ -webkit-box-orient: vertical;
191
+ }
192
+ .video-cover {
193
+ position: absolute;
194
+ top: 50%;
195
+ left: 50%;
196
+ width: 100%;
197
+ height: 100%;
198
+ object-fit: cover;
199
+ transform: translate(-50%, -50%);
200
+ }
201
+
202
+ .center-absolute {
203
+ position: absolute;
204
+ top: 50%;
205
+ left: 50%;
206
+ object-fit: cover;
207
+ transform: translate(-50%, -50%);
208
+ }
209
+ hr {
210
+ width: 100%;
211
+ margin: 0;
212
+ border-top: 1px solid $c-middle-grey;
213
+ border-bottom: 1px solid transparent;
214
+ border-left: 1px solid transparent;
215
+ border-right: 1px solid transparent;
216
+ }
217
+ .only-mobile {
218
+ display: inline-block;
219
+
220
+ @media (min-width: $break-sm) {
221
+ display: none;
222
+ }
223
+ }
224
+ .only-desktop {
225
+ @media (max-width: #{$break-sm - 1}) {
226
+ display: none !important;
227
+ }
228
+ }
229
+ .ico-r svg {
230
+ position: relative;
231
+ left: 8px;
232
+ display: inline-block;
233
+ vertical-align: text-top;
234
+ }
235
+ .ico {
236
+ &.ico-l {
237
+ display: flex;
238
+ align-items: center;
239
+ svg-icon {
240
+ margin-right: 16px;
241
+ }
242
+ }
243
+ }
244
+ .hg-status {
245
+ position: relative;
246
+ padding-left: 16px;
247
+ &::before {
248
+ position: absolute;
249
+ content: '';
250
+ border-radius: 50%;
251
+ overflow: hidden;
252
+ top: 5px;
253
+ left: 0;
254
+ width: 8px;
255
+ height: 8px;
256
+ }
257
+ }
258
+ .hg-status-a {
259
+ color: $c-error;
260
+ &::before {
261
+ background-color: $c-error;
262
+ }
263
+ }
264
+ .hg-status-b {
265
+ color: $c-info;
266
+ &::before {
267
+ background-color: $c-info;
268
+ }
269
+ }
270
+ .hg-status-c {
271
+ color: $c-error;
272
+ &::before {
273
+ background-color: $c-error;
274
+ }
275
+ }
276
+ .hg-status-d {
277
+ color: $c-dark-grey;
278
+ &::before {
279
+ background-color: $c-dark-grey;
280
+ }
281
+ }
282
+ .sm\:hidden {
283
+ @media (max-width: #{$break-sm - 1}) {
284
+ display: none !important;
285
+ }
286
+ }
287
+ .md\:hidden {
288
+ @media (max-width: #{$break-md - 1}) {
289
+ display: none !important;
290
+ }
291
+ }
292
+ .lg\:hidden {
293
+ @media (max-width: #{$break-lg - 1}) {
294
+ display: none !important;
295
+ }
296
+ }
297
+ .xl\:hidden {
298
+ @media (max-width: #{$break-xl - 1}) {
299
+ display: none !important;
300
+ }
301
+ }
302
+ .sm\:visible {
303
+ @media (min-width: $break-sm) {
304
+ display: none !important;
305
+ }
306
+ }
307
+ .md\:visible {
308
+ @media (min-width: $break-md) {
309
+ display: none !important;
310
+ }
311
+ }
312
+ .lg\:visible {
313
+ @media (min-width: $break-lg) {
314
+ display: none !important;
315
+ }
316
+ }
317
+ .xl\:visible {
318
+ @media (min-width: $break-xl) {
319
+ display: none !important;
320
+ }
321
+ }
322
+ .mdmax\:mb-16 {
323
+ @media (max-width: #{$break-md - 1}) {
324
+ margin-bottom: 16px;
325
+ }
326
+ }
327
+ .mdmax\:mb-20 {
328
+ @media (max-width: #{$break-md - 1}) {
329
+ margin-bottom: 24px;
330
+ }
331
+ }
332
+ .mdmax\:mb-24 {
333
+ @media (max-width: #{$break-md - 1}) {
334
+ margin-bottom: 24px;
335
+ }
336
+ }
337
+ .mdmax\:mb-32 {
338
+ @media (max-width: #{$break-md - 1}) {
339
+ margin-bottom: 32px;
340
+ }
341
+ }
342
+ .mdmax\:mb-40 {
343
+ @media (max-width: #{$break-md - 1}) {
344
+ margin-bottom: 40px;
345
+ }
346
+ }
347
+ .mdmax\:mb-42 {
348
+ @media (max-width: #{$break-md - 1}) {
349
+ margin-bottom: 42px;
350
+ }
351
+ }
352
+ .smmax\:mb-16 {
353
+ @media (max-width: #{$break-sm - 1}) {
354
+ margin-bottom: 16px;
355
+ }
356
+ }
357
+ .smmax\:mb-20 {
358
+ @media (max-width: #{$break-sm - 1}) {
359
+ margin-bottom: 24px;
360
+ }
361
+ }
362
+ .smmax\:mb-24 {
363
+ @media (max-width: #{$break-sm - 1}) {
364
+ margin-bottom: 24px;
365
+ }
366
+ }
367
+ .smmax\:mb-42 {
368
+ @media (max-width: #{$break-sm - 1}) {
369
+ margin-bottom: 42px;
370
+ }
371
+ }
372
+ .sm\:order-last {
373
+ @media (min-width: $break-sm) {
374
+ order: 3;
375
+ }
376
+ }
377
+ .md\:order-last {
378
+ @media (min-width: $break-md) {
379
+ order: 3;
380
+ }
381
+ }
382
+ .lg\:order-last {
383
+ @media (min-width: $break-lg) {
384
+ order: 3;
385
+ }
386
+ }
387
+ .reverse {
388
+ flex-wrap: wrap-reverse;
389
+ }
390
+ .sm\:reverse {
391
+ @media (max-width: #{$break-sm - 1}) {
392
+ flex-wrap: wrap-reverse;
393
+ }
394
+ }
395
+ .md\:reverse {
396
+ @media (max-width: #{$break-md - 1}) {
397
+ flex-wrap: wrap-reverse;
398
+ }
399
+ }
400
+ .lg\:reverse {
401
+ @media (max-width: #{$break-lg - 1}) {
402
+ flex-wrap: wrap-reverse;
403
+ }
404
+ }
405
+ .block-right {
406
+ margin-left: auto;
407
+ }
408
+ .block-left {
409
+ margin-right: auto;
410
+ }
411
+ .md\:px-48 {
412
+ @media (max-width: #{$break-md - 1}) {
413
+ padding-left: 48px;
414
+ padding-right: 48px;
415
+ }
416
+ }
417
+ .text-12-l {
418
+ font-family: $font-family-a-m;
419
+ font-size: 12px;
420
+ }
421
+ strong {
422
+ color: $primary;
423
+ font-family: $font-family-a-b;
424
+ }
425
+
426
+ .bb-line {
427
+ border-bottom: 1px solid $c-middle-grey;
428
+ }
429
+ .border-1 {
430
+ border: 1px solid $c-middle-grey;
431
+ }
432
+ .border-t {
433
+ border-top: 1px solid $c-middle-grey;
434
+ }
435
+ .border-b {
436
+ border-bottom: 1px solid $c-middle-grey;
437
+ }
438
+ .border-l {
439
+ border-left: 1px solid $c-middle-grey;
440
+ }
441
+ .border-r {
442
+ border-right: 1px solid $c-middle-grey;
443
+ }
444
+ .border-b2 {
445
+ border-bottom: 1px solid $c-primary;
446
+ }
447
+ .border-t2 {
448
+ border-top: 1px solid $c-primary;
449
+ }
450
+ .flex-vcenter {
451
+ display: flex;
452
+ align-items: center;
453
+ [type='checkbox']:checked + label .icon,
454
+ [type='checkbox']:not(:checked) + label .icon {
455
+ position: absolute;
456
+ top: 50%;
457
+ margin-top: -9px;
458
+ }
459
+ }
460
+ .only-mobile-flex {
461
+ display: flex;
462
+
463
+ @media (min-width: $break-sm) {
464
+ display: flex;
465
+ }
466
+
467
+ @media (min-width: $break-md) {
468
+ display: none;
469
+ }
470
+
471
+ @media (min-width: $break-lg) {
472
+ display: none;
473
+ }
474
+ }
475
+ .only-desktop-flex {
476
+ display: none;
477
+
478
+ @media (min-width: $break-sm) {
479
+ display: none;
480
+ }
481
+
482
+ @media (min-width: $break-md) {
483
+ display: flex;
484
+ }
485
+
486
+ @media (min-width: $break-lg) {
487
+ display: flex;
488
+ }
489
+ }
490
+ .p-view {
491
+ background-color: $c-white;
492
+ position: absolute;
493
+ width: 100%;
494
+ top: 0;
495
+ right: 0;
496
+ left: 0;
497
+ bottom: 0;
498
+ }
499
+ .p-view\:sm {
500
+ @media (max-width: #{$break-sm - 1}) {
501
+ background-color: $c-white;
502
+ position: absolute;
503
+ width: 100%;
504
+ top: 0;
505
+ right: 0;
506
+ left: 0;
507
+ bottom: 0;
508
+ }
509
+ }
510
+ .text-faded {
511
+ opacity: 0.5;
512
+ }
513
+ .cursor-pointer {
514
+ cursor: pointer;
515
+ }
516
+ .ov-scroll {
517
+ overflow: auto;
518
+ -webkit-overflow-scrolling: touch;
519
+ }
520
+ .scrollbar::-webkit-scrollbar {
521
+ background-color: $c-white;
522
+ width: 16px;
523
+ }
524
+ .ov-custom {
525
+ &::-webkit-scrollbar-track {
526
+ background-color: $c-light-grey;
527
+ }
528
+ &::-webkit-scrollbar-track:hover {
529
+ background-color: $c-light-grey;
530
+ }
531
+ &::-webkit-scrollbar-thumb {
532
+ background-color: $c-dark-grey;
533
+ border-radius: 16px;
534
+ border: 3px solid $c-white;
535
+ }
536
+ &::-webkit-scrollbar-thumb:hover {
537
+ background-color: $c-dark-grey;
538
+ border: 2px solid $c-light-grey;
539
+ }
540
+ &::-webkit-scrollbar-button {
541
+ display: none;
542
+ }
543
+ }
544
+ .svg-iflex {
545
+ display: flex;
546
+ align-content: center;
547
+ align-items: center;
548
+ margin: 4px;
549
+ }
550
+ .svg-inline {
551
+ display: inline-block;
552
+ vertical-align: middle;
553
+ margin: 4px;
554
+ }
555
+ .ttu,
556
+ .btn-primary,
557
+ .btn--full,
558
+ .btn-secondary,
559
+ .form-input-label-2 label {
560
+ text-transform: uppercase;
561
+ }
562
+
563
+ /* Todos los idiomas que no tienen uppercase porque son Capital sensitive, lo dejamos en minúsculas */
564
+ [lang^="de"], //aleman
565
+ [lang^="zh"], //chino
566
+ [lang^="zo"],
567
+ [lang^="eu"],//euskera
568
+ [lang^="el"],//griego
569
+ [lang^="tr"],// turco
570
+ [lang^="ru"], //ruso
571
+ [lang^="sr"], //serbio
572
+ [lang^="uk"], //ukraniano
573
+ [lang^="bg"], //bulgaro
574
+ [lang^="ar"],//arab emirates, egipto ,jordania, israel ,qatar , bahrain ,arabia saudi
575
+ [lang^="nl"] {
576
+ .ttu,
577
+ .btn-primary,
578
+ .btn--full,
579
+ .btn-secondary,
580
+ .form-input-label-2 label {
581
+ text-transform: none;
582
+ }
583
+ }
584
+ .product-fadein {
585
+ animation-delay: 1s;
586
+ animation-duration: 3s;
587
+ animation-name: fadein;
588
+ }
589
+ .vert-end {
590
+ display: flex;
591
+ align-items: center;
592
+ justify-content: flex-end;
593
+ }
594
+ .video-wrap {
595
+ height: 100%;
596
+ display: flex;
597
+ align-items: flex-end;
598
+ }
599
+ .p-wrap {
600
+ position: relative;
601
+ width: 100%;
602
+ }
603
+ .charging {
604
+ position: relative;
605
+ height: 100%;
606
+ }
607
+ .arrow-right {
608
+ float: right;
609
+ }
610
+ .h-50 {
611
+ height: 50px;
612
+ }
613
+ .w-100 {
614
+ width: 100%;
615
+ }
616
+ .mw-sm {
617
+ max-width: $container-4;
618
+ }
619
+ .mw-md {
620
+ max-width: $container-6;
621
+ }
622
+ .col-lg-4 > .mw-md {
623
+ max-width: $container-6;
624
+ }
625
+ .mw-lg {
626
+ max-width: $container-9;
627
+ }
628
+ .w-max {
629
+ width: max-content;
630
+ }
631
+
632
+ .hidden {
633
+ display: none !important;
634
+ }
635
+ .flex-grow-0 {
636
+ flex-grow: 0;
637
+ }
638
+ .d-inline {
639
+ display: inline;
640
+ }
641
+ .d-inline-block {
642
+ display: inline-block;
643
+ }
644
+ .flex-1 {
645
+ flex: 1 1 0%;
646
+ }
647
+ .flex-auto {
648
+ flex: 1 1 auto;
649
+ }
650
+ .flex-initial {
651
+ flex: 0 1 auto;
652
+ }
653
+ .flex-none {
654
+ flex: none;
655
+ }
656
+ .has-light {
657
+ color: $c-white;
658
+
659
+ hr {
660
+ border-top: 1px solid $c-white;
661
+ }
662
+ }
663
+
664
+ .smmax\:flex {
665
+ @media (max-width: #{$break-sm - 1}) {
666
+ display: flex;
667
+ }
668
+ }
669
+ .mdmax\:flex {
670
+ @media (max-width: #{$break-md - 1}) {
671
+ display: flex;
672
+ }
673
+ }
674
+ .lgmax\:flex {
675
+ @media (max-width: #{$break-lg - 1}) {
676
+ display: flex;
677
+ }
678
+ }
679
+
680
+ .sm\:flex {
681
+ @media (min-width: $break-sm) {
682
+ display: flex;
683
+ }
684
+ }
685
+ .md\:flex {
686
+ @media (min-width: $break-md) {
687
+ display: flex;
688
+ }
689
+ }
690
+ .lg\:flex {
691
+ @media (min-width: $break-lg) {
692
+ display: flex;
693
+ }
694
+ }
695
+
696
+ .pe-none {
697
+ pointer-events: none;
698
+ }
699
+
700
+ .font-l {
701
+ font-family: $font-family-a-l;
702
+ }
703
+
704
+ .font-r {
705
+ font-family: $font-family-a-r;
706
+ }
707
+
708
+ .font-m {
709
+ font-family: $font-family-a-m;
710
+ }
711
+
712
+ .font-b {
713
+ font-family: $font-family-a-b;
714
+ }
715
+
716
+ .font-sb {
717
+ font-family: $font-family-a-sb;
718
+ }
719
+
720
+ .absolute-middle {
721
+ position: absolute;
722
+ top: 50%;
723
+ transform: translateY(-50%);
724
+ }
725
+
726
+ .free-product {
727
+ color: $c-warning;
728
+ }
729
+
730
+ .is-invert {
731
+ filter: invert(1);
732
+ }
733
+
734
+ .p-stick {
735
+ position: sticky;
736
+ top: 0;
737
+ z-index: 100;
738
+ }
739
+
740
+ .m-0 {
741
+ margin: 0;
742
+ }
743
+
744
+ .o-hidden {
745
+ overflow: hidden;
746
+ }
747
+
748
+ .reset-body {
749
+ margin-left: -16px;
750
+ margin-right: -16px;
751
+
752
+ @media (min-width: $break-md) {
753
+ margin-left: -40px;
754
+ margin-right: -40px;
755
+ }
756
+ }
757
+
758
+ .sm\:reset-body {
759
+ @media (max-width: #{$break-sm - 1}) {
760
+ margin-left: -16px;
761
+ margin-right: -16px;
762
+ }
763
+ }
764
+
765
+ .md\:reset-body {
766
+ @media (max-width: #{$break-md - 1}) {
767
+ margin-left: -16px;
768
+ margin-right: -16px;
769
+ }
770
+ }
771
+
772
+ .bold {
773
+ @include font-bold;
774
+ }
775
+
776
+ .semibold {
777
+ @include font-semibold;
778
+ }
779
+ b {
780
+ color: $c-secondary;
781
+ }
782
+
783
+ .ttc {
784
+ text-transform: capitalize;
785
+ }
786
+
787
+ .margin-auto {
788
+ margin: 0 auto;
789
+ }
790
+
791
+ .fl-left {
792
+ float: left;
793
+ }
794
+
795
+ .fl-right {
796
+ float: right;
797
+ }
798
+
799
+ .p-relative {
800
+ position: relative;
801
+ }
802
+
803
+ .sm\:reset-body {
804
+ @media (max-width: #{$break-sm - 1}) {
805
+ margin-left: -16px;
806
+ margin-right: -16px;
807
+ }
808
+ }
809
+
810
+ .sm\:grid-4 {
811
+ @media (max-width: #{$break-sm - 1}) {
812
+ grid-template-columns: repeat(2, 1fr);
813
+ }
814
+ }