@bagelink/vue 1.0.50 → 1.0.54

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 (31) hide show
  1. package/dist/components/Modal.vue.d.ts.map +1 -1
  2. package/dist/components/Spreadsheet/Index.vue.d.ts +2 -0
  3. package/dist/components/Spreadsheet/Index.vue.d.ts.map +1 -1
  4. package/dist/components/form/BagelForm.vue.d.ts +3 -1
  5. package/dist/components/form/BagelForm.vue.d.ts.map +1 -1
  6. package/dist/components/form/inputs/NumberInput.vue.d.ts.map +1 -1
  7. package/dist/components/form/inputs/PasswordInput.vue.d.ts +1 -0
  8. package/dist/components/form/inputs/PasswordInput.vue.d.ts.map +1 -1
  9. package/dist/components/form/inputs/PhoneInput.vue.d.ts +2 -0
  10. package/dist/components/form/inputs/PhoneInput.vue.d.ts.map +1 -1
  11. package/dist/components/form/inputs/SelectInput.vue.d.ts +4 -0
  12. package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
  13. package/dist/components/form/inputs/TextInput.vue.d.ts +1 -0
  14. package/dist/components/form/inputs/TextInput.vue.d.ts.map +1 -1
  15. package/dist/composables/useSchemaField.d.ts.map +1 -1
  16. package/dist/index.cjs +74 -22
  17. package/dist/index.mjs +74 -22
  18. package/dist/style.css +765 -484
  19. package/dist/utils/BagelFormUtils.d.ts +2 -0
  20. package/dist/utils/BagelFormUtils.d.ts.map +1 -1
  21. package/package.json +1 -1
  22. package/src/components/Modal.vue +1 -0
  23. package/src/components/form/BagelForm.vue +23 -7
  24. package/src/components/form/FieldArray.vue +2 -2
  25. package/src/components/form/inputs/NumberInput.vue +1 -1
  26. package/src/components/form/inputs/PasswordInput.vue +2 -0
  27. package/src/components/form/inputs/TextInput.vue +4 -1
  28. package/src/composables/useSchemaField.ts +34 -1
  29. package/src/styles/text.css +911 -560
  30. package/src/utils/BagelFormUtils.ts +9 -1
  31. package/src/components/DataTable/tableTypes.d.ts +0 -0
package/dist/style.css CHANGED
@@ -1880,14 +1880,14 @@ pre code.hljs{
1880
1880
  direction: ltr;
1881
1881
  }
1882
1882
 
1883
- .txtInputIconStart .iconStart[data-v-af266bf2] {
1883
+ .txtInputIconStart .iconStart[data-v-01b5487f] {
1884
1884
  color: var(--input-color);
1885
1885
  position: absolute;
1886
1886
  inset-inline-start:calc(var(--input-height) / 3 - 0.25rem);
1887
1887
  margin-top: calc(var(--input-height) / 2 );
1888
1888
  line-height: 0;
1889
1889
  }
1890
- .textInputSpinnerWrap .spinner[data-v-af266bf2] {
1890
+ .textInputSpinnerWrap .spinner[data-v-01b5487f] {
1891
1891
  color: var(--input-color);
1892
1892
  position: absolute;
1893
1893
  inset-inline-end: 0;
@@ -1897,18 +1897,18 @@ pre code.hljs{
1897
1897
  flex-direction: column;
1898
1898
  gap: 0;
1899
1899
  }
1900
- .top-bgl-ctrl-num-btn[data-v-af266bf2]{
1900
+ .top-bgl-ctrl-num-btn[data-v-01b5487f]{
1901
1901
  margin-top: calc(var(--input-height) / 10) !important;
1902
1902
  }
1903
- .bgl-ctrl-num-btn[data-v-af266bf2]{
1903
+ .bgl-ctrl-num-btn[data-v-01b5487f]{
1904
1904
  height: calc(var(--input-height) / 2.5) !important;
1905
1905
  isolation: isolate;
1906
1906
  }
1907
- .bgl-big-ctrl-num-btn[data-v-af266bf2]{
1907
+ .bgl-big-ctrl-num-btn[data-v-01b5487f]{
1908
1908
  width: 100% !important;
1909
1909
  isolation: isolate;
1910
1910
  }
1911
- .bgl-number-input[data-v-af266bf2]{
1911
+ .bgl-number-input[data-v-01b5487f]{
1912
1912
  padding-inline-end: 1.75rem !important;
1913
1913
  }
1914
1914
 
@@ -2475,58 +2475,58 @@ input[type="range"][data-v-46e22f3e]:active::-webkit-slider-thumb {
2475
2475
  font-size: var(--label-font-size);
2476
2476
  }
2477
2477
 
2478
- .bagel-input textarea[data-v-99e3ea36] {
2478
+ .bagel-input textarea[data-v-dbcf2010] {
2479
2479
  min-height: unset;
2480
2480
  font-size: var(--input-font-size);
2481
2481
  }
2482
- .bagel-input.text-input textarea[data-v-99e3ea36] {
2482
+ .bagel-input.text-input textarea[data-v-dbcf2010] {
2483
2483
  resize: none;
2484
2484
  }
2485
- .code textarea[data-v-99e3ea36] {
2485
+ .code textarea[data-v-dbcf2010] {
2486
2486
  font-family: 'Inconsolata', monospace;
2487
2487
  background: var(--bgl-code-bg) !important;
2488
2488
  color: var(--bgl-light-text) !important;
2489
2489
  }
2490
- .code textarea[data-v-99e3ea36]::placeholder {
2490
+ .code textarea[data-v-dbcf2010]::placeholder {
2491
2491
  color: var(--bgl-light-text) !important;
2492
2492
  opacity: 0.3;
2493
2493
  }
2494
- .bagel-input.small[data-v-99e3ea36] {
2494
+ .bagel-input.small[data-v-dbcf2010] {
2495
2495
  margin-bottom: 0;
2496
2496
  height: 30px;
2497
2497
  }
2498
- .bagel-input.dense label[data-v-99e3ea36] {
2498
+ .bagel-input.dense label[data-v-dbcf2010] {
2499
2499
  display: flex;
2500
2500
  align-items: center;
2501
2501
  gap: 0.5rem;
2502
2502
  }
2503
- .bagel-input input[data-v-99e3ea36]:disabled {
2503
+ .bagel-input input[data-v-dbcf2010]:disabled {
2504
2504
  background: #f5f5f5;
2505
2505
  }
2506
- .bagel-input label[data-v-99e3ea36] {
2506
+ .bagel-input label[data-v-dbcf2010] {
2507
2507
  font-size: var(--label-font-size);
2508
2508
  }
2509
- .textInputIconWrap .bgl_icon-font[data-v-99e3ea36] {
2509
+ .textInputIconWrap .bgl_icon-font[data-v-dbcf2010] {
2510
2510
  color: var(--input-color);
2511
2511
  position: absolute;
2512
2512
  inset-inline-end:calc(var(--input-height) / 3 - 0.25rem);
2513
2513
  margin-top: calc(var(--input-height) / 2 + 0.1rem);
2514
2514
  line-height: 0;
2515
2515
  }
2516
- .textInputIconWrap input[data-v-99e3ea36]{
2516
+ .textInputIconWrap input[data-v-dbcf2010]{
2517
2517
  padding-inline-end: calc(var(--input-height) / 3 + 1.5rem);
2518
2518
  }
2519
- .txtInputIconStart .iconStart[data-v-99e3ea36] {
2519
+ .txtInputIconStart .iconStart[data-v-dbcf2010] {
2520
2520
  color: var(--input-color);
2521
2521
  position: absolute;
2522
2522
  inset-inline-start:calc(var(--input-height) / 3 - 0.25rem);
2523
2523
  margin-top: calc(var(--input-height) / 2 );
2524
2524
  line-height: 0;
2525
2525
  }
2526
- .txtInputIconStart input[data-v-99e3ea36], .txtInputIconStart textarea[data-v-99e3ea36]{
2526
+ .txtInputIconStart input[data-v-dbcf2010], .txtInputIconStart textarea[data-v-dbcf2010]{
2527
2527
  padding-inline-start: calc(var(--input-height) / 3 + 1.5rem);
2528
2528
  }
2529
- .bagel-input.small textarea[data-v-99e3ea36] {
2529
+ .bagel-input.small textarea[data-v-dbcf2010] {
2530
2530
  height: 30px;
2531
2531
  }
2532
2532
 
@@ -15398,144 +15398,249 @@ select {
15398
15398
  opacity: 0;
15399
15399
  }
15400
15400
  }.txt-center {
15401
- text-align: center;
15401
+ text-align: center;
15402
15402
  }.txt-start {
15403
- text-align: start;
15403
+ text-align: start;
15404
15404
  }.txt-end {
15405
- text-align: end;
15405
+ text-align: end;
15406
15406
  }.txt-small {
15407
- font-size: 12px;
15407
+ font-size: 12px;
15408
15408
  }.txt20,
15409
15409
  .txt-20 {
15410
- font-size: 20px;
15410
+ font-size: 20px;
15411
15411
  }.txt24,
15412
15412
  .txt-24 {
15413
- font-size: 24px;
15413
+ font-size: 24px;
15414
15414
  }.txt28,
15415
15415
  .txt-28 {
15416
- font-size: 28px;
15416
+ font-size: 28px;
15417
15417
  }.txt30,
15418
15418
  .txt-30 {
15419
- font-size: 30px;
15419
+ font-size: 30px;
15420
15420
  }.txt32,
15421
15421
  .txt-32 {
15422
- font-size: 32px;
15422
+ font-size: 32px;
15423
15423
  }.txt36,
15424
15424
  .txt-36 {
15425
- font-size: 36px;
15425
+ font-size: 36px;
15426
15426
  }.txt40,
15427
15427
  .txt-40 {
15428
- font-size: 40px;
15428
+ font-size: 40px;
15429
15429
  }.txt44,
15430
15430
  .txt-44 {
15431
- font-size: 44px;
15431
+ font-size: 44px;
15432
15432
  }.txt48,
15433
15433
  .txt-48 {
15434
- font-size: 48px;
15434
+ font-size: 48px;
15435
15435
  }.txt50,
15436
15436
  .txt-50 {
15437
- font-size: 50px;
15437
+ font-size: 50px;
15438
15438
  }.txt52,
15439
15439
  .txt-52 {
15440
- font-size: 52px;
15440
+ font-size: 52px;
15441
15441
  }.txt56,
15442
15442
  .txt-56 {
15443
- font-size: 56px;
15443
+ font-size: 56px;
15444
15444
  }.txt60,
15445
15445
  .txt-60 {
15446
- font-size: 60px;
15446
+ font-size: 60px;
15447
15447
  }.txt64,
15448
15448
  .txt-64 {
15449
- font-size: 64px;
15449
+ font-size: 64px;
15450
15450
  }.txt68,
15451
15451
  .txt-68 {
15452
- font-size: 68px;
15452
+ font-size: 68px;
15453
15453
  }.txt70,
15454
15454
  .txt-70 {
15455
- font-size: 70px;
15455
+ font-size: 70px;
15456
15456
  }.txt72,
15457
15457
  .txt-72 {
15458
- font-size: 72px;
15458
+ font-size: 72px;
15459
15459
  }.txt80,
15460
15460
  .txt-80 {
15461
- font-size: 80px;
15461
+ font-size: 80px;
15462
15462
  }.txt90,
15463
15463
  .txt-90 {
15464
- font-size: 90px;
15464
+ font-size: 90px;
15465
15465
  }.txt100,
15466
15466
  .txt-100 {
15467
- font-size: 100px;
15467
+ font-size: 100px;
15468
15468
  }.txt110,
15469
15469
  .txt-110 {
15470
- font-size: 110px;
15470
+ font-size: 110px;
15471
15471
  }.txt120,
15472
15472
  .txt-120 {
15473
- font-size: 120px;
15473
+ font-size: 120px;
15474
15474
  }.txt130,
15475
15475
  .txt-130 {
15476
- font-size: 130px;
15476
+ font-size: 130px;
15477
15477
  }.txt140,
15478
15478
  .txt-140 {
15479
- font-size: 140px;
15479
+ font-size: 140px;
15480
15480
  }.txt150,
15481
15481
  .txt-150 {
15482
- font-size: 150px;
15482
+ font-size: 150px;
15483
15483
  }.txt18,
15484
15484
  .txt-18 {
15485
- font-size: 18px;
15485
+ font-size: 18px;
15486
15486
  }.txt16,
15487
15487
  .txt-16 {
15488
- font-size: 16px;
15488
+ font-size: 16px;
15489
15489
  }.txt14,
15490
15490
  .txt-14 {
15491
- font-size: 14px;
15491
+ font-size: 14px;
15492
15492
  }.txt12,
15493
15493
  .txt-12 {
15494
- font-size: 12px;
15494
+ font-size: 12px;
15495
15495
  }.txt10,
15496
15496
  .txt-10 {
15497
- font-size: 10px;
15497
+ font-size: 10px;
15498
15498
  }.txt9,
15499
15499
  .txt-9 {
15500
- font-size: 9px;
15500
+ font-size: 9px;
15501
+ }.txt025,
15502
+ .txt-025 {
15503
+ font-size: 0.25rem;
15504
+ }.txt05,
15505
+ .txt-05 {
15506
+ font-size: 0.5rem;
15507
+ }.txt075,
15508
+ .txt-075 {
15509
+ font-size: 0.75rem;
15510
+ }.txt1,
15511
+ .txt-1 {
15512
+ font-size: 1rem;
15513
+ }.txt1-25,
15514
+ .txt-1-25 {
15515
+ font-size: 1.25rem;
15516
+ }.txt1-5,
15517
+ .txt-1-5 {
15518
+ font-size: 1.5rem;
15519
+ }.txt1-75,
15520
+ .txt-1-75 {
15521
+ font-size: 1.75rem;
15522
+ }.txt2,
15523
+ .txt-2 {
15524
+ font-size: 2rem;
15525
+ }.txt2-25,
15526
+ .txt-2-25 {
15527
+ font-size: 2.25rem;
15528
+ }.txt2-5,
15529
+ .txt-2-5 {
15530
+ font-size: 2.5rem;
15531
+ }.txt2-75,
15532
+ .txt-2-75 {
15533
+ font-size: 2.75rem;
15534
+ }.txt3,
15535
+ .txt-3 {
15536
+ font-size: 3rem;
15537
+ }.txt3-25,
15538
+ .txt-3-25 {
15539
+ font-size: 3.25rem;
15540
+ }.txt3-5,
15541
+ .txt-3-5 {
15542
+ font-size: 3.5rem;
15543
+ }.txt3-75,
15544
+ .txt-3-75 {
15545
+ font-size: 3.75rem;
15546
+ }.txt4,
15547
+ .txt-4 {
15548
+ font-size: 4rem;
15549
+ }.txt4-25,
15550
+ .txt-4-25 {
15551
+ font-size: 4.25rem;
15552
+ }.txt4-5,
15553
+ .txt-4-5 {
15554
+ font-size: 4.5rem;
15555
+ }.txt4-75,
15556
+ .txt-4-75 {
15557
+ font-size: 4.75rem;
15558
+ }.txt5,
15559
+ .txt-5 {
15560
+ font-size: 5rem;
15561
+ }.txt5-25,
15562
+ .txt-5-25 {
15563
+ font-size: 5.25rem;
15564
+ }.txt5-5,
15565
+ .txt-5-5 {
15566
+ font-size: 5.5rem;
15567
+ }.txt5-75,
15568
+ .txt-5-75 {
15569
+ font-size: 5.75rem;
15570
+ }.txt6,
15571
+ .txt-6 {
15572
+ font-size: 6rem;
15573
+ }.txt6-25,
15574
+ .txt-6-25 {
15575
+ font-size: 6.25rem;
15576
+ }.txt6-5,
15577
+ .txt-6-5 {
15578
+ font-size: 6.5rem;
15579
+ }.txt6-75,
15580
+ .txt-6-75 {
15581
+ font-size: 6.75rem;
15582
+ }.txt7,
15583
+ .txt-7 {
15584
+ font-size: 7rem;
15585
+ }.txt7-25,
15586
+ .txt-7-25 {
15587
+ font-size: 7.25rem;
15588
+ }.txt7-5,
15589
+ .txt-7-5 {
15590
+ font-size: 7.5rem;
15591
+ }.txt7-75,
15592
+ .txt-7-75 {
15593
+ font-size: 7.75rem;
15594
+ }.txt8,
15595
+ .txt-8 {
15596
+ font-size: 8rem;
15597
+ }.txt8-25,
15598
+ .txt-8-25 {
15599
+ font-size: 8.25rem;
15600
+ }.txt8-5,
15601
+ .txt-8-5 {
15602
+ font-size: 8.5rem;
15603
+ }.txt8-75,
15604
+ .txt-8-75 {
15605
+ font-size: 8.75rem;
15501
15606
  }.no-margin {
15502
- margin: 0;
15607
+ margin: 0;
15503
15608
  }.txt-gray,
15504
15609
  .txtgray {
15505
- color: var(--bgl-gray);
15610
+ color: var(--bgl-gray);
15506
15611
  }.txt-blue,
15507
15612
  .txtblue {
15508
- color: var(--bgl-primary);
15613
+ color: var(--bgl-primary);
15509
15614
  }.txt-black,
15510
15615
  .txtblack {
15511
- color: var(--bgl-black);
15616
+ color: var(--bgl-black);
15512
15617
  }.txt-red,
15513
15618
  .txtred {
15514
- color: var(--bgl-red);
15619
+ color: var(--bgl-red);
15515
15620
  }.txt-white,
15516
15621
  .txtwhite {
15517
- color: var(--bgl-white);
15622
+ color: var(--bgl-white);
15518
15623
  }.font-thin,
15519
15624
  .txt-thin {
15520
- font-weight: 100;
15625
+ font-weight: 100;
15521
15626
  }.extra-light,
15522
15627
  .font-extra-light,
15523
15628
  .txt-extra-light,
15524
15629
  .font-ultra-light,
15525
15630
  .txt-ultra-light {
15526
- font-weight: 200;
15631
+ font-weight: 200;
15527
15632
  }.light,
15528
15633
  .txt-light,
15529
15634
  .font-light {
15530
- font-weight: 300;
15635
+ font-weight: 300;
15531
15636
  }.regular,
15532
15637
  .txt-regular,
15533
15638
  .font-regular {
15534
- font-weight: 400;
15639
+ font-weight: 400;
15535
15640
  }.medium,
15536
15641
  .txt-medium,
15537
15642
  .font-medium {
15538
- font-weight: 500;
15643
+ font-weight: 500;
15539
15644
  }.semi,
15540
15645
  .semibold,
15541
15646
  .txt-semi,
@@ -15543,581 +15648,757 @@ select {
15543
15648
  .font-regular,
15544
15649
  .font-semi,
15545
15650
  .font-semibold {
15546
- font-weight: 600;
15651
+ font-weight: 600;
15547
15652
  }.bold,
15548
15653
  .txt-bold,
15549
15654
  .font-bold {
15550
- font-weight: 700;
15655
+ font-weight: 700;
15551
15656
  }.extra-bold,
15552
15657
  .font-extra-bold,
15553
15658
  .txt-extra-bold,
15554
15659
  .font-ultra-bold,
15555
15660
  .txt-ultra-bold {
15556
- font-weight: 800;
15661
+ font-weight: 800;
15557
15662
  }.black,
15558
15663
  .font-black {
15559
- font-weight: 900;
15664
+ font-weight: 900;
15560
15665
  }.line-height-0 {
15561
- line-height: 0;
15666
+ line-height: 0;
15562
15667
  }.line-height-01 {
15563
- line-height: 0.1;
15668
+ line-height: 0.1;
15564
15669
  }.line-height-02 {
15565
- line-height: 0.2;
15670
+ line-height: 0.2;
15566
15671
  }.line-height-03 {
15567
- line-height: 0.3;
15672
+ line-height: 0.3;
15568
15673
  }.line-height-04 {
15569
- line-height: 0.4;
15674
+ line-height: 0.4;
15570
15675
  }.line-height-05 {
15571
- line-height: 0.5;
15676
+ line-height: 0.5;
15572
15677
  }.line-height-06 {
15573
- line-height: 0.6;
15678
+ line-height: 0.6;
15574
15679
  }.line-height-07 {
15575
- line-height: 0.7;
15680
+ line-height: 0.7;
15576
15681
  }.line-height-08 {
15577
- line-height: 0.8;
15682
+ line-height: 0.8;
15578
15683
  }.line-height-09 {
15579
- line-height: 0.9;
15684
+ line-height: 0.9;
15580
15685
  }.line-height-1 {
15581
- line-height: 1;
15686
+ line-height: 1;
15582
15687
  }.line-height-11 {
15583
- line-height: 1.1;
15688
+ line-height: 1.1;
15584
15689
  }.line-height-12 {
15585
- line-height: 1.2;
15690
+ line-height: 1.2;
15586
15691
  }.line-height-13 {
15587
- line-height: 1.3;
15692
+ line-height: 1.3;
15588
15693
  }.line-height-14 {
15589
- line-height: 1.4;
15694
+ line-height: 1.4;
15590
15695
  }.line-height-15 {
15591
- line-height: 1.5;
15696
+ line-height: 1.5;
15592
15697
  }.line-height-16 {
15593
- line-height: 1.6;
15698
+ line-height: 1.6;
15594
15699
  }.line-height-17 {
15595
- line-height: 1.7;
15700
+ line-height: 1.7;
15596
15701
  }.line-height-18 {
15597
- line-height: 1.8;
15702
+ line-height: 1.8;
15598
15703
  }.line-height-19 {
15599
- line-height: 1.9;
15704
+ line-height: 1.9;
15600
15705
  }.line-height-2 {
15601
- line-height: 2;
15706
+ line-height: 2;
15602
15707
  }.line-height-normal {
15603
- line-height: normal;
15708
+ line-height: normal;
15604
15709
  }.ellipsis {
15605
- overflow: hidden;
15606
- display: block;
15607
- width: 100%;
15608
- text-overflow: ellipsis;
15710
+ overflow: hidden;
15711
+ display: block;
15712
+ width: 100%;
15713
+ text-overflow: ellipsis;
15609
15714
  }.ellipsis-1,
15610
15715
  .ellipsis-2,
15611
15716
  .ellipsis-3,
15612
15717
  .ellipsis-4,
15613
15718
  .ellipsis-5,
15614
15719
  .ellipsis-6 {
15615
- display: block;
15616
- display: -webkit-box;
15617
- max-width: 100%;
15618
- -webkit-box-orient: vertical;
15619
- overflow: hidden;
15620
- text-overflow: ellipsis;
15720
+ display: block;
15721
+ display: -webkit-box;
15722
+ max-width: 100%;
15723
+ -webkit-box-orient: vertical;
15724
+ overflow: hidden;
15725
+ text-overflow: ellipsis;
15621
15726
  }.ellipsis-1 {
15622
- -webkit-line-clamp: 1;
15727
+ -webkit-line-clamp: 1;
15623
15728
  }.ellipsis-2 {
15624
- -webkit-line-clamp: 2;
15729
+ -webkit-line-clamp: 2;
15625
15730
  }.ellipsis-3 {
15626
- -webkit-line-clamp: 3;
15731
+ -webkit-line-clamp: 3;
15627
15732
  }.ellipsis-4 {
15628
- -webkit-line-clamp: 4;
15733
+ -webkit-line-clamp: 4;
15629
15734
  }.ellipsis-5 {
15630
- -webkit-line-clamp: 5;
15735
+ -webkit-line-clamp: 5;
15631
15736
  }.ellipsis-6 {
15632
- -webkit-line-clamp: 6;
15737
+ -webkit-line-clamp: 6;
15633
15738
  }.pointer {
15634
- cursor: pointer;
15739
+ cursor: pointer;
15635
15740
  }.grab {
15636
- cursor: grab;
15741
+ cursor: grab;
15637
15742
  }.grab:active {
15638
- cursor: grabbing;
15743
+ cursor: grabbing;
15639
15744
  }.not-allowed {
15640
- cursor: not-allowed;
15745
+ cursor: not-allowed;
15641
15746
  }.decoration-none {
15642
- text-decoration: none;
15747
+ text-decoration: none;
15643
15748
  }.underline,
15644
15749
  .decoration-underline {
15645
- text-decoration: underline !important;
15750
+ text-decoration: underline !important;
15646
15751
  }.word-break {
15647
- word-break: break-word;
15752
+ word-break: break-word;
15648
15753
  }.word-break-all {
15649
- word-break: break-all;
15754
+ word-break: break-all;
15650
15755
  }.uppercase {
15651
- text-transform: uppercase;
15756
+ text-transform: uppercase;
15652
15757
  }.lowercase {
15653
- text-transform: lowercase;
15758
+ text-transform: lowercase;
15654
15759
  }.capitalize {
15655
- text-transform: capitalize;
15760
+ text-transform: capitalize;
15656
15761
  }.nowrap {
15657
- white-space: nowrap;
15762
+ white-space: nowrap;
15658
15763
  }.balance {
15659
- text-wrap: balance;
15764
+ text-wrap: balance;
15660
15765
  }.pretty {
15661
- text-wrap: pretty;
15766
+ text-wrap: pretty;
15662
15767
  }.white-space {
15663
- white-space: nowrap;
15768
+ white-space: nowrap;
15664
15769
  }@media screen and (max-width: 910px) {
15665
- .txt20,
15666
- .txt-20 {
15667
- font-size: 18px;
15668
- }
15669
15770
 
15670
- .txt16,
15671
- .txt-16 {
15672
- font-size: 14px;
15673
- }
15771
+ .txt20,
15772
+ .txt-20 {
15773
+ font-size: 18px;
15774
+ }
15674
15775
 
15675
- .txt14,
15676
- .txt-14 {
15677
- font-size: 12px;
15678
- }
15776
+ .txt16,
15777
+ .txt-16 {
15778
+ font-size: 14px;
15779
+ }
15679
15780
 
15680
- .m_txt-center {
15681
- text-align: center;
15682
- }
15781
+ .txt14,
15782
+ .txt-14 {
15783
+ font-size: 12px;
15784
+ }
15683
15785
 
15684
- .m_txt-start {
15685
- text-align: start;
15686
- }
15786
+ .m_txt-center {
15787
+ text-align: center;
15788
+ }
15687
15789
 
15688
- .m_txt-end {
15689
- text-align: end;
15690
- }
15790
+ .m_txt-start {
15791
+ text-align: start;
15792
+ }
15691
15793
 
15692
- .m_txt-small {
15693
- font-size: 12px;
15694
- }
15794
+ .m_txt-end {
15795
+ text-align: end;
15796
+ }
15695
15797
 
15696
- .m_txt20,
15697
- .m_txt-20 {
15698
- font-size: 20px;
15699
- }
15798
+ .m_txt-small {
15799
+ font-size: 12px;
15800
+ }
15700
15801
 
15701
- .m_txt24,
15702
- .m_txt-24 {
15703
- font-size: 24px;
15704
- }
15802
+ .m_txt20,
15803
+ .m_txt-20 {
15804
+ font-size: 20px;
15805
+ }
15705
15806
 
15706
- .m_txt28,
15707
- .m_txt-28 {
15708
- font-size: 28px;
15709
- }
15807
+ .m_txt24,
15808
+ .m_txt-24 {
15809
+ font-size: 24px;
15810
+ }
15710
15811
 
15711
- .m_txt30,
15712
- .m_txt-30 {
15713
- font-size: 30px;
15714
- }
15812
+ .m_txt28,
15813
+ .m_txt-28 {
15814
+ font-size: 28px;
15815
+ }
15715
15816
 
15716
- .m_txt32,
15717
- .m_txt-32 {
15718
- font-size: 32px;
15719
- }
15817
+ .m_txt30,
15818
+ .m_txt-30 {
15819
+ font-size: 30px;
15820
+ }
15720
15821
 
15721
- .m_txt36,
15722
- .m_txt-36 {
15723
- font-size: 36px;
15724
- }
15822
+ .m_txt32,
15823
+ .m_txt-32 {
15824
+ font-size: 32px;
15825
+ }
15725
15826
 
15726
- .m_txt40,
15727
- .m_txt-40 {
15728
- font-size: 40px;
15729
- }
15827
+ .m_txt36,
15828
+ .m_txt-36 {
15829
+ font-size: 36px;
15830
+ }
15730
15831
 
15731
- .m_txt44,
15732
- .m_txt-44 {
15733
- font-size: 44px;
15734
- }
15832
+ .m_txt40,
15833
+ .m_txt-40 {
15834
+ font-size: 40px;
15835
+ }
15735
15836
 
15736
- .m_txt48,
15737
- .m_txt-48 {
15738
- font-size: 48px;
15739
- }
15837
+ .m_txt44,
15838
+ .m_txt-44 {
15839
+ font-size: 44px;
15840
+ }
15740
15841
 
15741
- .m_txt50,
15742
- .m_txt-50 {
15743
- font-size: 50px;
15744
- }
15842
+ .m_txt48,
15843
+ .m_txt-48 {
15844
+ font-size: 48px;
15845
+ }
15745
15846
 
15746
- .m_txt52,
15747
- .m_txt-52 {
15748
- font-size: 52px;
15749
- }
15847
+ .m_txt50,
15848
+ .m_txt-50 {
15849
+ font-size: 50px;
15850
+ }
15750
15851
 
15751
- .m_txt56,
15752
- .m_txt-56 {
15753
- font-size: 56px;
15754
- }
15852
+ .m_txt52,
15853
+ .m_txt-52 {
15854
+ font-size: 52px;
15855
+ }
15755
15856
 
15756
- .m_txt60,
15757
- .m_txt-60 {
15758
- font-size: 60px;
15759
- }
15857
+ .m_txt56,
15858
+ .m_txt-56 {
15859
+ font-size: 56px;
15860
+ }
15760
15861
 
15761
- .m_txt64,
15762
- .m_txt-64 {
15763
- font-size: 64px;
15764
- }
15862
+ .m_txt60,
15863
+ .m_txt-60 {
15864
+ font-size: 60px;
15865
+ }
15765
15866
 
15766
- .m_txt68,
15767
- .m_txt-68 {
15768
- font-size: 68px;
15769
- }
15867
+ .m_txt64,
15868
+ .m_txt-64 {
15869
+ font-size: 64px;
15870
+ }
15770
15871
 
15771
- .m_txt70,
15772
- .m_txt-70 {
15773
- font-size: 70px;
15774
- }
15872
+ .m_txt68,
15873
+ .m_txt-68 {
15874
+ font-size: 68px;
15875
+ }
15775
15876
 
15776
- .m_txt72,
15777
- .m_txt-72 {
15778
- font-size: 72px;
15779
- }
15877
+ .m_txt70,
15878
+ .m_txt-70 {
15879
+ font-size: 70px;
15880
+ }
15780
15881
 
15781
- .m_txt80,
15782
- .m_txt-80 {
15783
- font-size: 80px;
15784
- }
15882
+ .m_txt72,
15883
+ .m_txt-72 {
15884
+ font-size: 72px;
15885
+ }
15785
15886
 
15786
- .m_txt90,
15787
- .m_txt-90 {
15788
- font-size: 90px;
15789
- }
15887
+ .m_txt80,
15888
+ .m_txt-80 {
15889
+ font-size: 80px;
15890
+ }
15790
15891
 
15791
- .m_txt100,
15792
- .m_txt-100 {
15793
- font-size: 100px;
15794
- }
15892
+ .m_txt90,
15893
+ .m_txt-90 {
15894
+ font-size: 90px;
15895
+ }
15795
15896
 
15796
- .m_txt110,
15797
- .m_txt-110 {
15798
- font-size: 110px;
15799
- }
15897
+ .m_txt100,
15898
+ .m_txt-100 {
15899
+ font-size: 100px;
15900
+ }
15800
15901
 
15801
- .m_txt120,
15802
- .m_txt-120 {
15803
- font-size: 120px;
15804
- }
15902
+ .m_txt110,
15903
+ .m_txt-110 {
15904
+ font-size: 110px;
15905
+ }
15805
15906
 
15806
- .m_txt130,
15807
- .m_txt-130 {
15808
- font-size: 130px;
15809
- }
15907
+ .m_txt120,
15908
+ .m_txt-120 {
15909
+ font-size: 120px;
15910
+ }
15810
15911
 
15811
- .m_txt140,
15812
- .m_txt-140 {
15813
- font-size: 140px;
15814
- }
15912
+ .m_txt130,
15913
+ .m_txt-130 {
15914
+ font-size: 130px;
15915
+ }
15815
15916
 
15816
- .m_txt150,
15817
- .m_txt-150 {
15818
- font-size: 150px;
15819
- }
15917
+ .m_txt140,
15918
+ .m_txt-140 {
15919
+ font-size: 140px;
15920
+ }
15820
15921
 
15821
- .m_txt18,
15822
- .m_txt-18 {
15823
- font-size: 18px;
15824
- }
15922
+ .m_txt150,
15923
+ .m_txt-150 {
15924
+ font-size: 150px;
15925
+ }
15825
15926
 
15826
- .m_txt16,
15827
- .m_txt-16 {
15828
- font-size: 16px;
15829
- }
15927
+ .m_txt18,
15928
+ .m_txt-18 {
15929
+ font-size: 18px;
15930
+ }
15830
15931
 
15831
- .m_txt14,
15832
- .m_txt-14 {
15833
- font-size: 14px;
15834
- }
15932
+ .m_txt16,
15933
+ .m_txt-16 {
15934
+ font-size: 16px;
15935
+ }
15835
15936
 
15836
- .m_txt12,
15837
- .m_txt-12 {
15838
- font-size: 12px;
15839
- }
15937
+ .m_txt14,
15938
+ .m_txt-14 {
15939
+ font-size: 14px;
15940
+ }
15840
15941
 
15841
- .m_txt10,
15842
- .m_txt-10 {
15843
- font-size: 10px;
15844
- }
15942
+ .m_txt12,
15943
+ .m_txt-12 {
15944
+ font-size: 12px;
15945
+ }
15845
15946
 
15846
- .m_txt9,
15847
- .m_txt-9 {
15848
- font-size: 9px;
15849
- }
15947
+ .m_txt10,
15948
+ .m_txt-10 {
15949
+ font-size: 10px;
15950
+ }
15850
15951
 
15851
- .m_no-margin {
15852
- margin: 0;
15853
- }
15952
+ .m_txt9,
15953
+ .m_txt-9 {
15954
+ font-size: 9px;
15955
+ }
15854
15956
 
15855
- .m_txt-gray,
15856
- .m_txtgray {
15857
- color: var(--bgl-gray);
15858
- }
15957
+ .m_txt025,
15958
+ .m_txt-025 {
15959
+ font-size: 0.25rem;
15960
+ }
15859
15961
 
15860
- .m_txt-blue,
15861
- .m_txtblue {
15862
- color: var(--bgl-primary);
15863
- }
15962
+ .m_txt05,
15963
+ .m_txt-05 {
15964
+ font-size: 0.5rem;
15965
+ }
15864
15966
 
15865
- .m_txt-black,
15866
- .m_txtblack {
15867
- color: var(--bgl-black);
15868
- }
15967
+ .m_txt075,
15968
+ .m_txt-075 {
15969
+ font-size: 0.75rem;
15970
+ }
15869
15971
 
15870
- .m_txt-red,
15871
- .m_txtred {
15872
- color: var(--bgl-red);
15873
- }
15972
+ .m_txt1,
15973
+ .m_txt-1 {
15974
+ font-size: 1rem;
15975
+ }
15874
15976
 
15875
- .m_txt-white,
15876
- .m_txtwhite {
15877
- color: var(--bgl-white);
15878
- }
15977
+ .m_txt1-25,
15978
+ .m_txt-1-25 {
15979
+ font-size: 1.25rem;
15980
+ }
15879
15981
 
15880
- .m_font-thin,
15881
- .m_txt-thin {
15882
- font-weight: 100;
15883
- }
15982
+ .m_txt1-5,
15983
+ .m_txt-1-5 {
15984
+ font-size: 1.5rem;
15985
+ }
15884
15986
 
15885
- .m_extra-light,
15886
- .m_font-extra-light,
15887
- .m_txt-extra-light,
15888
- .m_font-ultra-light,
15889
- .m_txt-ultra-light {
15890
- font-weight: 200;
15891
- }
15987
+ .m_txt1-75,
15988
+ .m_txt-1-75 {
15989
+ font-size: 1.75rem;
15990
+ }
15892
15991
 
15893
- .m_light,
15894
- .m_txt-light,
15895
- .m_font-light {
15896
- font-weight: 300;
15897
- }
15992
+ .m_txt2,
15993
+ .m_txt-2 {
15994
+ font-size: 2rem;
15995
+ }
15898
15996
 
15899
- .m_regular,
15900
- .m_txt-regular,
15901
- .m_font-regular {
15902
- font-weight: 400;
15903
- }
15997
+ .m_txt2-25,
15998
+ .m_txt-2-25 {
15999
+ font-size: 2.25rem;
16000
+ }
15904
16001
 
15905
- .m_medium,
15906
- .m_txt-medium,
15907
- .m_font-medium {
15908
- font-weight: 500;
15909
- }
16002
+ .m_txt2-5,
16003
+ .m_txt-2-5 {
16004
+ font-size: 2.5rem;
16005
+ }
15910
16006
 
15911
- .m_semi,
15912
- .m_semibold,
15913
- .m_txt-semi,
15914
- .m_txt-semibold,
15915
- .m_font-regular,
15916
- .m_font-semi,
15917
- .m_font-semibold {
15918
- font-weight: 600;
15919
- }
16007
+ .m_txt2-75,
16008
+ .m_txt-2-75 {
16009
+ font-size: 2.75rem;
16010
+ }
15920
16011
 
15921
- .m_bold,
15922
- .m_txt-bold,
15923
- .m_font-bold {
15924
- font-weight: 700;
15925
- }
16012
+ .m_txt3,
16013
+ .m_txt-3 {
16014
+ font-size: 3rem;
16015
+ }
15926
16016
 
15927
- .m_extra-bold,
15928
- .m_font-extra-bold,
15929
- .m_txt-extra-bold,
15930
- .m_font-ultra-bold,
15931
- .m_txt-ultra-bold {
15932
- font-weight: 800;
15933
- }
16017
+ .m_txt3-25,
16018
+ .m_txt-3-25 {
16019
+ font-size: 3.25rem;
16020
+ }
15934
16021
 
15935
- .m_black,
15936
- .m_font-black {
15937
- font-weight: 900;
15938
- }
16022
+ .m_txt3-5,
16023
+ .m_txt-3-5 {
16024
+ font-size: 3.5rem;
16025
+ }
15939
16026
 
15940
- .m_line-height-0 {
15941
- line-height: 0;
15942
- }
16027
+ .m_txt3-75,
16028
+ .m_txt-3-75 {
16029
+ font-size: 3.75rem;
16030
+ }
15943
16031
 
15944
- .m_line-height-01 {
15945
- line-height: 0.1;
15946
- }
16032
+ .m_txt4,
16033
+ .m_txt-4 {
16034
+ font-size: 4rem;
16035
+ }
15947
16036
 
15948
- .m_line-height-02 {
15949
- line-height: 0.2;
15950
- }
16037
+ .m_txt4-25,
16038
+ .m_txt-4-25 {
16039
+ font-size: 4.25rem;
16040
+ }
15951
16041
 
15952
- .m_line-height-03 {
15953
- line-height: 0.3;
15954
- }
16042
+ .m_txt4-5,
16043
+ .m_txt-4-5 {
16044
+ font-size: 4.5rem;
16045
+ }
15955
16046
 
15956
- .m_line-height-04 {
15957
- line-height: 0.4;
15958
- }
16047
+ .m_txt4-75,
16048
+ .m_txt-4-75 {
16049
+ font-size: 4.75rem;
16050
+ }
15959
16051
 
15960
- .m_line-height-05 {
15961
- line-height: 0.5;
15962
- }
16052
+ .m_txt5,
16053
+ .m_txt-5 {
16054
+ font-size: 5rem;
16055
+ }
15963
16056
 
15964
- .m_line-height-06 {
15965
- line-height: 0.6;
15966
- }
16057
+ .m_txt5-25,
16058
+ .m_txt-5-25 {
16059
+ font-size: 5.25rem;
16060
+ }
15967
16061
 
15968
- .m_line-height-07 {
15969
- line-height: 0.7;
15970
- }
16062
+ .m_txt5-5,
16063
+ .m_txt-5-5 {
16064
+ font-size: 5.5rem;
16065
+ }
15971
16066
 
15972
- .m_line-height-08 {
15973
- line-height: 0.8;
15974
- }
16067
+ .m_txt5-75,
16068
+ .m_txt-5-75 {
16069
+ font-size: 5.75rem;
16070
+ }
15975
16071
 
15976
- .m_line-height-09 {
15977
- line-height: 0.9;
15978
- }
16072
+ .m_txt6,
16073
+ .m_txt-6 {
16074
+ font-size: 6rem;
16075
+ }
15979
16076
 
15980
- .m_line-height-1 {
15981
- line-height: 1;
15982
- }
16077
+ .m_txt6-25,
16078
+ .m_txt-6-25 {
16079
+ font-size: 6.25rem;
16080
+ }
15983
16081
 
15984
- .m_line-height-11 {
15985
- line-height: 1.1;
15986
- }
16082
+ .m_txt6-5,
16083
+ .m_txt-6-5 {
16084
+ font-size: 6.5rem;
16085
+ }
15987
16086
 
15988
- .m_line-height-12 {
15989
- line-height: 1.2;
15990
- }
16087
+ .m_txt6-75,
16088
+ .m_txt-6-75 {
16089
+ font-size: 6.75rem;
16090
+ }
15991
16091
 
15992
- .m_line-height-13 {
15993
- line-height: 1.3;
15994
- }
16092
+ .m_txt7,
16093
+ .m_txt-7 {
16094
+ font-size: 7rem;
16095
+ }
15995
16096
 
15996
- .m_line-height-14 {
15997
- line-height: 1.4;
15998
- }
16097
+ .m_txt7-25,
16098
+ .m_txt-7-25 {
16099
+ font-size: 7.25rem;
16100
+ }
15999
16101
 
16000
- .m_line-height-15 {
16001
- line-height: 1.5;
16002
- }
16102
+ .m_txt7-5,
16103
+ .m_txt-7-5 {
16104
+ font-size: 7.5rem;
16105
+ }
16003
16106
 
16004
- .m_line-height-16 {
16005
- line-height: 1.6;
16006
- }
16107
+ .m_txt7-75,
16108
+ .m_txt-7-75 {
16109
+ font-size: 7.75rem;
16110
+ }
16007
16111
 
16008
- .m_line-height-17 {
16009
- line-height: 1.7;
16010
- }
16112
+ .m_txt8,
16113
+ .m_txt-8 {
16114
+ font-size: 8rem;
16115
+ }
16011
16116
 
16012
- .m_line-height-18 {
16013
- line-height: 1.8;
16014
- }
16117
+ .m_txt8-25,
16118
+ .m_txt-8-25 {
16119
+ font-size: 8.25rem;
16120
+ }
16015
16121
 
16016
- .m_line-height-19 {
16017
- line-height: 1.9;
16018
- }
16122
+ .m_txt8-5,
16123
+ .m_txt-8-5 {
16124
+ font-size: 8.5rem;
16125
+ }
16019
16126
 
16020
- .m_line-height-2 {
16021
- line-height: 2;
16022
- }
16127
+ .m_txt8-75,
16128
+ .m_txt-8-75 {
16129
+ font-size: 8.75rem;
16130
+ }
16023
16131
 
16024
- .m_line-height-normal {
16025
- line-height: normal;
16026
- }
16132
+ .m_no-margin {
16133
+ margin: 0;
16134
+ }
16027
16135
 
16028
- .m_ellipsis {
16029
- overflow: hidden;
16030
- display: block;
16031
- width: 100%;
16032
- text-overflow: ellipsis;
16033
- }
16136
+ .m_txt-gray,
16137
+ .m_txtgray {
16138
+ color: var(--bgl-gray);
16139
+ }
16034
16140
 
16035
- .m_ellipsis-1,
16036
- .m_ellipsis-2,
16037
- .m_ellipsis-3,
16038
- .m_ellipsis-4,
16039
- .m_ellipsis-5,
16040
- .m_ellipsis-6 {
16041
- display: block;
16042
- display: -webkit-box;
16043
- max-width: 100%;
16044
- -webkit-box-orient: vertical;
16045
- overflow: hidden;
16046
- text-overflow: ellipsis;
16047
- }
16141
+ .m_txt-blue,
16142
+ .m_txtblue {
16143
+ color: var(--bgl-primary);
16144
+ }
16048
16145
 
16049
- .m_ellipsis-1 {
16050
- -webkit-line-clamp: 1;
16051
- }
16146
+ .m_txt-black,
16147
+ .m_txtblack {
16148
+ color: var(--bgl-black);
16149
+ }
16052
16150
 
16053
- .m_ellipsis-2 {
16054
- -webkit-line-clamp: 2;
16055
- }
16151
+ .m_txt-red,
16152
+ .m_txtred {
16153
+ color: var(--bgl-red);
16154
+ }
16056
16155
 
16057
- .m_ellipsis-3 {
16058
- -webkit-line-clamp: 3;
16059
- }
16156
+ .m_txt-white,
16157
+ .m_txtwhite {
16158
+ color: var(--bgl-white);
16159
+ }
16060
16160
 
16061
- .m_ellipsis-4 {
16062
- -webkit-line-clamp: 4;
16063
- }
16161
+ .m_font-thin,
16162
+ .m_txt-thin {
16163
+ font-weight: 100;
16164
+ }
16064
16165
 
16065
- .m_ellipsis-5 {
16066
- -webkit-line-clamp: 5;
16067
- }
16166
+ .m_extra-light,
16167
+ .m_font-extra-light,
16168
+ .m_txt-extra-light,
16169
+ .m_font-ultra-light,
16170
+ .m_txt-ultra-light {
16171
+ font-weight: 200;
16172
+ }
16068
16173
 
16069
- .m_ellipsis-6 {
16070
- -webkit-line-clamp: 6;
16071
- }
16174
+ .m_light,
16175
+ .m_txt-light,
16176
+ .m_font-light {
16177
+ font-weight: 300;
16178
+ }
16072
16179
 
16073
- .m_pointer {
16074
- cursor: pointer;
16075
- }
16180
+ .m_regular,
16181
+ .m_txt-regular,
16182
+ .m_font-regular {
16183
+ font-weight: 400;
16184
+ }
16076
16185
 
16077
- .m_decoration-none {
16078
- text-decoration: none;
16079
- }
16186
+ .m_medium,
16187
+ .m_txt-medium,
16188
+ .m_font-medium {
16189
+ font-weight: 500;
16190
+ }
16080
16191
 
16081
- .m_underline,
16082
- .m_decoration-underline {
16083
- text-decoration: underline !important;
16084
- }
16192
+ .m_semi,
16193
+ .m_semibold,
16194
+ .m_txt-semi,
16195
+ .m_txt-semibold,
16196
+ .m_font-regular,
16197
+ .m_font-semi,
16198
+ .m_font-semibold {
16199
+ font-weight: 600;
16200
+ }
16085
16201
 
16086
- .m_bgl_icon-font {
16087
- font-family: 'Material Symbols Outlined', serif;
16088
- }
16202
+ .m_bold,
16203
+ .m_txt-bold,
16204
+ .m_font-bold {
16205
+ font-weight: 700;
16206
+ }
16089
16207
 
16090
- .m_nowrap {
16091
- white-space: nowrap;
16092
- }
16208
+ .m_extra-bold,
16209
+ .m_font-extra-bold,
16210
+ .m_txt-extra-bold,
16211
+ .m_font-ultra-bold,
16212
+ .m_txt-ultra-bold {
16213
+ font-weight: 800;
16214
+ }
16093
16215
 
16094
- .m_balance {
16095
- text-wrap: balance;
16096
- }
16216
+ .m_black,
16217
+ .m_font-black {
16218
+ font-weight: 900;
16219
+ }
16097
16220
 
16098
- .m_pretty {
16099
- text-wrap: pretty;
16100
- }
16221
+ .m_line-height-0 {
16222
+ line-height: 0;
16223
+ }
16101
16224
 
16102
- .m_word-break {
16103
- word-break: break-word;
16104
- }
16225
+ .m_line-height-01 {
16226
+ line-height: 0.1;
16227
+ }
16105
16228
 
16106
- .m_word-break-all {
16107
- word-break: break-all;
16108
- }
16229
+ .m_line-height-02 {
16230
+ line-height: 0.2;
16231
+ }
16109
16232
 
16110
- .m_uppercase {
16111
- text-transform: uppercase;
16112
- }
16233
+ .m_line-height-03 {
16234
+ line-height: 0.3;
16235
+ }
16113
16236
 
16114
- .m_lowercase {
16115
- text-transform: lowercase;
16116
- }
16237
+ .m_line-height-04 {
16238
+ line-height: 0.4;
16239
+ }
16117
16240
 
16118
- .m_capitalize {
16119
- text-transform: capitalize;
16120
- }
16241
+ .m_line-height-05 {
16242
+ line-height: 0.5;
16243
+ }
16244
+
16245
+ .m_line-height-06 {
16246
+ line-height: 0.6;
16247
+ }
16248
+
16249
+ .m_line-height-07 {
16250
+ line-height: 0.7;
16251
+ }
16252
+
16253
+ .m_line-height-08 {
16254
+ line-height: 0.8;
16255
+ }
16256
+
16257
+ .m_line-height-09 {
16258
+ line-height: 0.9;
16259
+ }
16260
+
16261
+ .m_line-height-1 {
16262
+ line-height: 1;
16263
+ }
16264
+
16265
+ .m_line-height-11 {
16266
+ line-height: 1.1;
16267
+ }
16268
+
16269
+ .m_line-height-12 {
16270
+ line-height: 1.2;
16271
+ }
16272
+
16273
+ .m_line-height-13 {
16274
+ line-height: 1.3;
16275
+ }
16276
+
16277
+ .m_line-height-14 {
16278
+ line-height: 1.4;
16279
+ }
16280
+
16281
+ .m_line-height-15 {
16282
+ line-height: 1.5;
16283
+ }
16284
+
16285
+ .m_line-height-16 {
16286
+ line-height: 1.6;
16287
+ }
16288
+
16289
+ .m_line-height-17 {
16290
+ line-height: 1.7;
16291
+ }
16292
+
16293
+ .m_line-height-18 {
16294
+ line-height: 1.8;
16295
+ }
16296
+
16297
+ .m_line-height-19 {
16298
+ line-height: 1.9;
16299
+ }
16300
+
16301
+ .m_line-height-2 {
16302
+ line-height: 2;
16303
+ }
16304
+
16305
+ .m_line-height-normal {
16306
+ line-height: normal;
16307
+ }
16308
+
16309
+ .m_ellipsis {
16310
+ overflow: hidden;
16311
+ display: block;
16312
+ width: 100%;
16313
+ text-overflow: ellipsis;
16314
+ }
16315
+
16316
+ .m_ellipsis-1,
16317
+ .m_ellipsis-2,
16318
+ .m_ellipsis-3,
16319
+ .m_ellipsis-4,
16320
+ .m_ellipsis-5,
16321
+ .m_ellipsis-6 {
16322
+ display: block;
16323
+ display: -webkit-box;
16324
+ max-width: 100%;
16325
+ -webkit-box-orient: vertical;
16326
+ overflow: hidden;
16327
+ text-overflow: ellipsis;
16328
+ }
16329
+
16330
+ .m_ellipsis-1 {
16331
+ -webkit-line-clamp: 1;
16332
+ }
16333
+
16334
+ .m_ellipsis-2 {
16335
+ -webkit-line-clamp: 2;
16336
+ }
16337
+
16338
+ .m_ellipsis-3 {
16339
+ -webkit-line-clamp: 3;
16340
+ }
16341
+
16342
+ .m_ellipsis-4 {
16343
+ -webkit-line-clamp: 4;
16344
+ }
16345
+
16346
+ .m_ellipsis-5 {
16347
+ -webkit-line-clamp: 5;
16348
+ }
16349
+
16350
+ .m_ellipsis-6 {
16351
+ -webkit-line-clamp: 6;
16352
+ }
16353
+
16354
+ .m_pointer {
16355
+ cursor: pointer;
16356
+ }
16357
+
16358
+ .m_decoration-none {
16359
+ text-decoration: none;
16360
+ }
16361
+
16362
+ .m_underline,
16363
+ .m_decoration-underline {
16364
+ text-decoration: underline !important;
16365
+ }
16366
+
16367
+ .m_bgl_icon-font {
16368
+ font-family: 'Material Symbols Outlined', serif;
16369
+ }
16370
+
16371
+ .m_nowrap {
16372
+ white-space: nowrap;
16373
+ }
16374
+
16375
+ .m_balance {
16376
+ text-wrap: balance;
16377
+ }
16378
+
16379
+ .m_pretty {
16380
+ text-wrap: pretty;
16381
+ }
16382
+
16383
+ .m_word-break {
16384
+ word-break: break-word;
16385
+ }
16386
+
16387
+ .m_word-break-all {
16388
+ word-break: break-all;
16389
+ }
16390
+
16391
+ .m_uppercase {
16392
+ text-transform: uppercase;
16393
+ }
16394
+
16395
+ .m_lowercase {
16396
+ text-transform: lowercase;
16397
+ }
16398
+
16399
+ .m_capitalize {
16400
+ text-transform: capitalize;
16401
+ }
16121
16402
  }body>div ::-webkit-scrollbar {
16122
16403
  width: 0.5em;
16123
16404
  height: 0.5rem;