@basemaps/landing 6.35.0 → 6.36.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 (54) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/build/components/copyable.d.ts +2 -2
  3. package/build/components/copyable.d.ts.map +1 -1
  4. package/build/components/copyable.js +8 -3
  5. package/build/components/copyable.js.map +1 -1
  6. package/build/components/debug.d.ts +21 -18
  7. package/build/components/debug.d.ts.map +1 -1
  8. package/build/components/debug.js +48 -18
  9. package/build/components/debug.js.map +1 -1
  10. package/build/components/layer.switcher.dropdown.d.ts +19 -5
  11. package/build/components/layer.switcher.dropdown.d.ts.map +1 -1
  12. package/build/components/layer.switcher.dropdown.js +40 -32
  13. package/build/components/layer.switcher.dropdown.js.map +1 -1
  14. package/build/components/layout.footer.d.ts +3 -3
  15. package/build/components/layout.footer.d.ts.map +1 -1
  16. package/build/components/layout.footer.js +5 -5
  17. package/build/components/layout.footer.js.map +1 -1
  18. package/build/components/layout.header.d.ts +12 -10
  19. package/build/components/layout.header.d.ts.map +1 -1
  20. package/build/components/layout.header.js +15 -16
  21. package/build/components/layout.header.js.map +1 -1
  22. package/build/components/link.d.ts +4 -3
  23. package/build/components/link.d.ts.map +1 -1
  24. package/build/components/link.js +6 -6
  25. package/build/components/link.js.map +1 -1
  26. package/build/components/map.d.ts +2 -2
  27. package/build/components/map.d.ts.map +1 -1
  28. package/build/components/map.js +5 -3
  29. package/build/components/map.js.map +1 -1
  30. package/build/components/map.switcher.d.ts +2 -2
  31. package/build/components/map.switcher.d.ts.map +1 -1
  32. package/build/components/map.switcher.js +4 -4
  33. package/build/components/map.switcher.js.map +1 -1
  34. package/build/config.layer.d.ts.map +1 -1
  35. package/build/config.layer.js +19 -1
  36. package/build/config.layer.js.map +1 -1
  37. package/build/debug.map.d.ts +5 -4
  38. package/build/debug.map.d.ts.map +1 -1
  39. package/build/debug.map.js +6 -5
  40. package/build/debug.map.js.map +1 -1
  41. package/build/index.js +5 -3
  42. package/build/index.js.map +1 -1
  43. package/dist/examples/index.openlayers.attribution.wmts.3857.html +1 -1
  44. package/dist/{index-6.35.0-467e63869a31f2e1.css → index-6.36.0-40fc4132c6bdc9c0.css} +2527 -591
  45. package/dist/index-6.36.0-ab87c9dbcb914a0d.js +59106 -0
  46. package/dist/index-6.36.0-e23052305a76fc56.js +623 -0
  47. package/dist/index.css +2527 -591
  48. package/dist/index.html +2 -2
  49. package/dist/index.js +117 -61
  50. package/dist/lib/{attribution-6.35.0-b4a0b401b1a4cc45.js → attribution-6.36.0-b4a0b401b1a4cc45.js} +0 -0
  51. package/dist/lib/{attribution-6.35.0-fc88f809368e4547.js → attribution-6.36.0-fc88f809368e4547.js} +0 -0
  52. package/package.json +15 -11
  53. package/dist/index-6.35.0-5eab7867ea4ef021.js +0 -29591
  54. package/dist/index-6.35.0-96a7f42b0fdac497.js +0 -567
@@ -141,6 +141,11 @@ button {
141
141
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
142
142
  }
143
143
 
144
+ .lui-checkbox-container label{
145
+ margin-left: 10px;
146
+ margin-top: 0px;
147
+ }
148
+
144
149
  .debug {
145
150
  font-size: 12px;
146
151
  position: absolute;
@@ -173,7 +178,23 @@ button {
173
178
  padding: 0 !important;
174
179
  min-height: 0 !important;
175
180
  }
176
- html {
181
+
182
+
183
+ .toast-message {
184
+ position: absolute;
185
+ background-color: #eaeaea;
186
+ border-radius: 4px;
187
+ border: 1px solid #00425d;
188
+ margin: 4px;
189
+ text-overflow: ellipsis;
190
+ overflow: hidden;
191
+ white-space: nowrap;
192
+ top: 0;
193
+ padding: 8px;
194
+ left: 48px;
195
+ width: 600px;
196
+ height: 40px;
197
+ }html {
177
198
  box-sizing: border-box;
178
199
  }
179
200
 
@@ -314,118 +335,8 @@ textarea {
314
335
  display: none;
315
336
  }
316
337
 
317
- :root {
318
- --color-grey-80: #414042;
319
- --color-grey-60: #55504b;
320
- --color-grey-30: #989189;
321
- --color-grey-20: #beb9b4;
322
- --color-grey-10: #eaeaea;
323
- --color-grey-05: #f9f9f9;
324
- --color-blue-100: #00425d;
325
- --color-blue-75: #007198;
326
- --color-blue-50: #0096cc;
327
- --color-blue-25: #73c8e1;
328
- --color-blue-05: #e2f3f7;
329
- --color-teal-100: #004b50;
330
- --color-teal-75: #017a76;
331
- --color-teal-50: #00a599;
332
- --color-teal-25: #73cdc8;
333
- --color-teal-05: #dcf5f0;
334
- --color-green-100: #004e32;
335
- --color-green-75: #08814d;
336
- --color-green-50: #0aa245;
337
- --color-green-25: #9bd79b;
338
- --color-green-05: #e9fae7;
339
- --brand-primary: #00425d;
340
- --brand-secondary: #017a76;
341
- --color-success: #0aa245;
342
- --color-success-bg: #e9fae7;
343
- --color-info: #3a7cdf;
344
- --color-info-bg: #d8e5f9;
345
- --color-warning: #ea6a2e;
346
- --color-warning-bg: #fbdfd2;
347
- --color-error: #cc0000;
348
- --color-error-focus: #5a0000;
349
- --color-error-bg: #f5cccc;
350
- --color-visited: #4c2c92;
351
- --color-green-hover: #205f12;
352
- --color-green-active: #16430c;
353
- --color-green-btn: #2e881a;
354
- --color-txt-link: #1f69c3;
355
- --color-primary-hover-btn: #004e6a;
356
- --color-selection: #c7e9f3;
357
- --heading-color: #017a76;
358
- --heading-color--secondary: #414042;
359
- --base-type-color: #414042;
360
- --base-icon-color: #007198;
361
- --disabled-color: #989189;
362
- --disabled-color-dark: #55504b;
363
- --linz-color-primary: #023d48;
364
- --linz-color-primary-hover: #01818a;
365
- --linz-color-tertiary: #e1e44a;
366
- --linz-color-tertiary-hover: #cdcf59;
367
- --color-test-pink: #f09;
368
- --linz-linear-gradient-blue: linear-gradient(70deg, #00425d 12%, #007198 100%);
369
- --linz-linear-gradient-teal: linear-gradient(270deg, #00a599 1%, #73cdc8 100%);
370
- }
371
-
372
- :export {
373
- color-grey-80: #414042;
374
- color-grey-60: #55504b;
375
- color-grey-30: #989189;
376
- color-grey-20: #beb9b4;
377
- color-grey-10: #eaeaea;
378
- color-grey-05: #f9f9f9;
379
- color-blue-100: #00425d;
380
- color-blue-75: #007198;
381
- color-blue-50: #0096cc;
382
- color-blue-25: #73c8e1;
383
- color-blue-05: #e2f3f7;
384
- color-teal-100: #004b50;
385
- color-teal-75: #017a76;
386
- color-teal-50: #00a599;
387
- color-teal-25: #73cdc8;
388
- color-teal-05: #dcf5f0;
389
- color-green-100: #004e32;
390
- color-green-75: #08814d;
391
- color-green-50: #0aa245;
392
- color-green-25: #9bd79b;
393
- color-green-05: #e9fae7;
394
- brand-primary: #00425d;
395
- brand-secondary: #017a76;
396
- color-success: #0aa245;
397
- color-success-bg: #e9fae7;
398
- color-info: #3a7cdf;
399
- color-info-bg: #d8e5f9;
400
- color-warning: #ea6a2e;
401
- color-warning-bg: #fbdfd2;
402
- color-error: #cc0000;
403
- color-error-focus: #5a0000;
404
- color-error-bg: #f5cccc;
405
- color-visited: #4c2c92;
406
- color-green-hover: #205f12;
407
- color-green-active: #16430c;
408
- color-green-btn: #2e881a;
409
- color-txt-link: #1f69c3;
410
- color-primary-hover-btn: #004e6a;
411
- color-selection: #c7e9f3;
412
- heading-color: #017a76;
413
- heading-color--secondary: #414042;
414
- base-type-color: #414042;
415
- base-icon-color: #007198;
416
- disabled-color: #989189;
417
- disabled-color-dark: #55504b;
418
- linz-color-primary: #023d48;
419
- linz-color-primary-hover: #01818a;
420
- linz-color-tertiary: #e1e44a;
421
- linz-color-tertiary-hover: #cdcf59;
422
- color-test-pink: #f09;
423
- linz-linear-gradient-blue: linear-gradient(70deg, #00425d 12%, #007198 100%);
424
- linz-linear-gradient-teal: linear-gradient(270deg, #00a599 1%, #73cdc8 100%);
425
- }
426
-
427
338
  a {
428
- color: #1f69c3;
339
+ color: #0096cc;
429
340
  font-family: "Open Sans", system-ui, sans-serif;
430
341
  font-style: normal;
431
342
  font-weight: normal;
@@ -436,13 +347,13 @@ a {
436
347
  text-underline-position: under;
437
348
  }
438
349
  a:visited {
439
- color: #4c2c92;
350
+ color: #00425d;
440
351
  }
441
352
  a:hover {
442
- color: #00425d;
353
+ color: #004b50;
443
354
  }
444
355
  a:hover:before {
445
- background-color: #00425d;
356
+ background-color: #004b50;
446
357
  }
447
358
  a:disabled {
448
359
  color: #989189;
@@ -466,23 +377,23 @@ a.lui-button:before {
466
377
  }
467
378
 
468
379
  .Link {
469
- color: #cf0059;
380
+ color: #0096cc;
470
381
  }
471
382
  .Link:focus, .Link:hover, .Link:active {
472
- color: #cf0059;
383
+ color: #0096cc;
473
384
  }
474
385
  .Link.is-active {
475
- color: #cf0059;
386
+ color: #0096cc;
476
387
  }
477
388
 
478
389
  .Link--reversed {
479
- color: #fff;
390
+ color: #ffffff;
480
391
  }
481
392
  .Link--reversed:focus, .Link--reversed:hover, .Link--reversed:active {
482
- color: #002030;
393
+ color: #2a292c;
483
394
  }
484
395
  .Link--reversed.is-active {
485
- color: #002030;
396
+ color: #2a292c;
486
397
  }
487
398
 
488
399
  .lui-external-link {
@@ -526,7 +437,7 @@ ul li {
526
437
 
527
438
  @keyframes border-throb {
528
439
  100% {
529
- box-shadow: 0 0 4px 3px rgba(255, 255, 255, 0.3);
440
+ box-shadow: 0 0 4px 3px rgba(255, 0, 153, 0.3);
530
441
  }
531
442
  }
532
443
  @keyframes throb-fade {
@@ -536,7 +447,7 @@ ul li {
536
447
  }
537
448
  .u-todo {
538
449
  position: relative;
539
- box-shadow: 0 0 4px 3px #fff;
450
+ box-shadow: 0 0 4px 3px #f09;
540
451
  border-collapse: separate;
541
452
  border-radius: 5px;
542
453
  opacity: 0.8;
@@ -548,8 +459,8 @@ ul li {
548
459
  padding: 4px 8px;
549
460
  border-radius: 4px;
550
461
  white-space: nowrap;
551
- background-color: #fff;
552
- color: #fff;
462
+ background-color: #f09;
463
+ color: #ffffff;
553
464
  opacity: 0.8;
554
465
  left: 0;
555
466
  top: 0;
@@ -566,7 +477,7 @@ html {
566
477
  font-weight: 300;
567
478
  font-size: 16px;
568
479
  line-height: 1.5;
569
- color: #414042;
480
+ color: #2a292c;
570
481
  font-feature-settings: "kern" 1;
571
482
  font-kerning: normal;
572
483
  text-rendering: optimizeLegibility;
@@ -577,13 +488,13 @@ html {
577
488
  ::selection {
578
489
  background: #c7e9f3;
579
490
  /* WebKit/Blink Browsers */
580
- color: #00425d;
491
+ color: #004b50;
581
492
  }
582
493
 
583
494
  ::-moz-selection {
584
495
  background: #c7e9f3;
585
496
  /* Gecko Browsers */
586
- color: #00425d;
497
+ color: #004b50;
587
498
  }
588
499
 
589
500
  em,
@@ -608,7 +519,7 @@ sup {
608
519
  hr {
609
520
  border: none;
610
521
  margin: 0;
611
- background-color: #414042;
522
+ background-color: #2a292c;
612
523
  height: 1px;
613
524
  }
614
525
 
@@ -727,27 +638,377 @@ p.lui-small {
727
638
  margin-top: 2rem;
728
639
  }
729
640
 
730
- .Container--noPadding, .Container {
641
+ .LuiBeta-fonts220222 h1,
642
+ .LuiBeta-fonts220222 .h1 {
643
+ font-family: "Open Sans", system-ui, sans-serif;
644
+ font-style: normal;
645
+ font-weight: 300;
646
+ }
647
+ .LuiBeta-fonts220222 h1,
648
+ .LuiBeta-fonts220222 .h1 {
649
+ font-size: 34px;
650
+ }
651
+ @media screen and (min-width: 480px) {
652
+ .LuiBeta-fonts220222 h1,
653
+ .LuiBeta-fonts220222 .h1 {
654
+ font-size: calc(
655
+ 34px + 10 *
656
+ (
657
+ (100vw - 480px) / 800
658
+ )
659
+ );
660
+ }
661
+ }
662
+ @media screen and (min-width: 1280px) {
663
+ .LuiBeta-fonts220222 h1,
664
+ .LuiBeta-fonts220222 .h1 {
665
+ font-size: 44px;
666
+ }
667
+ }
668
+ .LuiBeta-fonts220222 h1,
669
+ .LuiBeta-fonts220222 .h1 {
670
+ line-height: 44px;
671
+ }
672
+ @media screen and (min-width: 480px) {
673
+ .LuiBeta-fonts220222 h1,
674
+ .LuiBeta-fonts220222 .h1 {
675
+ line-height: calc(
676
+ 44px + 8 *
677
+ (
678
+ (100vw - 480px) / 800
679
+ )
680
+ );
681
+ }
682
+ }
683
+ @media screen and (min-width: 1280px) {
684
+ .LuiBeta-fonts220222 h1,
685
+ .LuiBeta-fonts220222 .h1 {
686
+ line-height: 52px;
687
+ }
688
+ }
689
+ .LuiBeta-fonts220222 h1 + p,
690
+ .LuiBeta-fonts220222 .h1 + p {
691
+ margin-top: 0.75rem;
692
+ }
693
+ .LuiBeta-fonts220222 h2,
694
+ .LuiBeta-fonts220222 .h2 {
695
+ font-family: "Open Sans", system-ui, sans-serif;
696
+ font-style: normal;
697
+ font-weight: 300;
698
+ margin-top: 3rem;
699
+ }
700
+ .LuiBeta-fonts220222 h2,
701
+ .LuiBeta-fonts220222 .h2 {
702
+ font-size: 28px;
703
+ }
704
+ @media screen and (min-width: 480px) {
705
+ .LuiBeta-fonts220222 h2,
706
+ .LuiBeta-fonts220222 .h2 {
707
+ font-size: calc(
708
+ 28px + 4 *
709
+ (
710
+ (100vw - 480px) / 800
711
+ )
712
+ );
713
+ }
714
+ }
715
+ @media screen and (min-width: 1280px) {
716
+ .LuiBeta-fonts220222 h2,
717
+ .LuiBeta-fonts220222 .h2 {
718
+ font-size: 32px;
719
+ }
720
+ }
721
+ .LuiBeta-fonts220222 h2,
722
+ .LuiBeta-fonts220222 .h2 {
723
+ line-height: 36px;
724
+ }
725
+ @media screen and (min-width: 480px) {
726
+ .LuiBeta-fonts220222 h2,
727
+ .LuiBeta-fonts220222 .h2 {
728
+ line-height: calc(
729
+ 36px + 4 *
730
+ (
731
+ (100vw - 480px) / 800
732
+ )
733
+ );
734
+ }
735
+ }
736
+ @media screen and (min-width: 1280px) {
737
+ .LuiBeta-fonts220222 h2,
738
+ .LuiBeta-fonts220222 .h2 {
739
+ line-height: 40px;
740
+ }
741
+ }
742
+ .LuiBeta-fonts220222 h2 + p,
743
+ .LuiBeta-fonts220222 .h2 + p {
744
+ margin-top: 0.75rem;
745
+ }
746
+ .LuiBeta-fonts220222 h3,
747
+ .LuiBeta-fonts220222 .h3 {
748
+ font-family: "Open Sans", system-ui, sans-serif;
749
+ font-style: normal;
750
+ font-weight: normal;
751
+ letter-spacing: 0.2px;
752
+ margin-top: 2rem;
753
+ }
754
+ .LuiBeta-fonts220222 h3,
755
+ .LuiBeta-fonts220222 .h3 {
756
+ font-size: 24px;
757
+ }
758
+ @media screen and (min-width: 480px) {
759
+ .LuiBeta-fonts220222 h3,
760
+ .LuiBeta-fonts220222 .h3 {
761
+ font-size: calc(
762
+ 24px + 0 *
763
+ (
764
+ (100vw - 480px) / 800
765
+ )
766
+ );
767
+ }
768
+ }
769
+ @media screen and (min-width: 1280px) {
770
+ .LuiBeta-fonts220222 h3,
771
+ .LuiBeta-fonts220222 .h3 {
772
+ font-size: 24px;
773
+ }
774
+ }
775
+ .LuiBeta-fonts220222 h3,
776
+ .LuiBeta-fonts220222 .h3 {
777
+ line-height: 32px;
778
+ }
779
+ @media screen and (min-width: 480px) {
780
+ .LuiBeta-fonts220222 h3,
781
+ .LuiBeta-fonts220222 .h3 {
782
+ line-height: calc(
783
+ 32px + 0 *
784
+ (
785
+ (100vw - 480px) / 800
786
+ )
787
+ );
788
+ }
789
+ }
790
+ @media screen and (min-width: 1280px) {
791
+ .LuiBeta-fonts220222 h3,
792
+ .LuiBeta-fonts220222 .h3 {
793
+ line-height: 32px;
794
+ }
795
+ }
796
+ .LuiBeta-fonts220222 h3 + p,
797
+ .LuiBeta-fonts220222 .h3 + p {
798
+ margin-top: 0.75rem;
799
+ }
800
+ .LuiBeta-fonts220222 h4,
801
+ .LuiBeta-fonts220222 .h4 {
802
+ font-family: "Open Sans", system-ui, sans-serif;
803
+ font-style: normal;
804
+ font-weight: normal;
805
+ letter-spacing: 0.2px;
806
+ margin-top: 2rem;
807
+ }
808
+ .LuiBeta-fonts220222 h4,
809
+ .LuiBeta-fonts220222 .h4 {
810
+ font-size: 20px;
811
+ }
812
+ @media screen and (min-width: 480px) {
813
+ .LuiBeta-fonts220222 h4,
814
+ .LuiBeta-fonts220222 .h4 {
815
+ font-size: calc(
816
+ 20px + 0 *
817
+ (
818
+ (100vw - 480px) / 800
819
+ )
820
+ );
821
+ }
822
+ }
823
+ @media screen and (min-width: 1280px) {
824
+ .LuiBeta-fonts220222 h4,
825
+ .LuiBeta-fonts220222 .h4 {
826
+ font-size: 20px;
827
+ }
828
+ }
829
+ .LuiBeta-fonts220222 h4,
830
+ .LuiBeta-fonts220222 .h4 {
831
+ line-height: 24px;
832
+ }
833
+ @media screen and (min-width: 480px) {
834
+ .LuiBeta-fonts220222 h4,
835
+ .LuiBeta-fonts220222 .h4 {
836
+ line-height: calc(
837
+ 24px + 0 *
838
+ (
839
+ (100vw - 480px) / 800
840
+ )
841
+ );
842
+ }
843
+ }
844
+ @media screen and (min-width: 1280px) {
845
+ .LuiBeta-fonts220222 h4,
846
+ .LuiBeta-fonts220222 .h4 {
847
+ line-height: 24px;
848
+ }
849
+ }
850
+ .LuiBeta-fonts220222 h4 + p,
851
+ .LuiBeta-fonts220222 .h4 + p {
852
+ margin-top: 0.75rem;
853
+ }
854
+ .LuiBeta-fonts220222 h5,
855
+ .LuiBeta-fonts220222 .h5 {
856
+ font-family: "Open Sans", system-ui, sans-serif;
857
+ font-style: normal;
858
+ font-weight: 600;
859
+ }
860
+ .LuiBeta-fonts220222 h5,
861
+ .LuiBeta-fonts220222 .h5 {
862
+ font-size: 16px;
863
+ }
864
+ @media screen and (min-width: 480px) {
865
+ .LuiBeta-fonts220222 h5,
866
+ .LuiBeta-fonts220222 .h5 {
867
+ font-size: calc(
868
+ 16px + 0 *
869
+ (
870
+ (100vw - 480px) / 800
871
+ )
872
+ );
873
+ }
874
+ }
875
+ @media screen and (min-width: 1280px) {
876
+ .LuiBeta-fonts220222 h5,
877
+ .LuiBeta-fonts220222 .h5 {
878
+ font-size: 16px;
879
+ }
880
+ }
881
+ .LuiBeta-fonts220222 h5,
882
+ .LuiBeta-fonts220222 .h5 {
883
+ line-height: 24px;
884
+ }
885
+ @media screen and (min-width: 480px) {
886
+ .LuiBeta-fonts220222 h5,
887
+ .LuiBeta-fonts220222 .h5 {
888
+ line-height: calc(
889
+ 24px + -2 *
890
+ (
891
+ (100vw - 480px) / 800
892
+ )
893
+ );
894
+ }
895
+ }
896
+ @media screen and (min-width: 1280px) {
897
+ .LuiBeta-fonts220222 h5,
898
+ .LuiBeta-fonts220222 .h5 {
899
+ line-height: 22px;
900
+ }
901
+ }
902
+ .LuiBeta-fonts220222 h6,
903
+ .LuiBeta-fonts220222 .h6 {
904
+ font-family: "Open Sans", system-ui, sans-serif;
905
+ font-style: normal;
906
+ font-weight: 600;
907
+ letter-spacing: 0.2px;
908
+ }
909
+ .LuiBeta-fonts220222 h6,
910
+ .LuiBeta-fonts220222 .h6 {
911
+ font-size: 14px;
912
+ }
913
+ @media screen and (min-width: 480px) {
914
+ .LuiBeta-fonts220222 h6,
915
+ .LuiBeta-fonts220222 .h6 {
916
+ font-size: calc(
917
+ 14px + 0 *
918
+ (
919
+ (100vw - 480px) / 800
920
+ )
921
+ );
922
+ }
923
+ }
924
+ @media screen and (min-width: 1280px) {
925
+ .LuiBeta-fonts220222 h6,
926
+ .LuiBeta-fonts220222 .h6 {
927
+ font-size: 14px;
928
+ }
929
+ }
930
+ .LuiBeta-fonts220222 h6,
931
+ .LuiBeta-fonts220222 .h6 {
932
+ line-height: 18px;
933
+ }
934
+ @media screen and (min-width: 480px) {
935
+ .LuiBeta-fonts220222 h6,
936
+ .LuiBeta-fonts220222 .h6 {
937
+ line-height: calc(
938
+ 18px + 0 *
939
+ (
940
+ (100vw - 480px) / 800
941
+ )
942
+ );
943
+ }
944
+ }
945
+ @media screen and (min-width: 1280px) {
946
+ .LuiBeta-fonts220222 h6,
947
+ .LuiBeta-fonts220222 .h6 {
948
+ line-height: 18px;
949
+ }
950
+ }
951
+ .LuiBeta-fonts220222 p,
952
+ .LuiBeta-fonts220222 .p {
953
+ font-family: "Open Sans", system-ui, sans-serif;
954
+ font-style: normal;
955
+ font-weight: 300;
956
+ font-size: 1rem;
957
+ margin-top: 2rem;
958
+ }
959
+ .LuiBeta-fonts220222 p.lui-small {
960
+ font-family: "Open Sans", system-ui, sans-serif;
961
+ font-style: normal;
962
+ font-weight: 300;
963
+ font-size: 0.8125rem;
964
+ line-height: 1.25rem;
965
+ margin-top: 2rem;
966
+ }
967
+
968
+ .Container--paddingOnly, .Container--noPadding, .Container {
731
969
  display: block;
732
970
  margin: 0 auto;
733
971
  }
734
972
 
735
- .Container--noPadding, .Container {
973
+ .Container--paddingOnly {
974
+ padding: 0 2.5%;
975
+ }
976
+
977
+ .Container--noPadding {
978
+ max-width: 480px;
979
+ }
980
+ @media screen and (min-width: 480px) {
981
+ .Container--noPadding {
982
+ max-width: 768px;
983
+ }
984
+ }
985
+ @media screen and (min-width: 768px) {
986
+ .Container--noPadding {
987
+ max-width: 1024px;
988
+ }
989
+ }
990
+ @media screen and (min-width: 1024px) {
991
+ .Container--noPadding {
992
+ max-width: 1280px;
993
+ }
994
+ }
995
+
996
+ .Container {
736
997
  padding: 0 2.5%;
737
998
  max-width: calc(480px + (2.5% * 2));
738
999
  }
739
1000
  @media screen and (min-width: 480px) {
740
- .Container--noPadding, .Container {
1001
+ .Container {
741
1002
  max-width: calc(768px + (2.5% * 2));
742
1003
  }
743
1004
  }
744
1005
  @media screen and (min-width: 768px) {
745
- .Container--noPadding, .Container {
1006
+ .Container {
746
1007
  max-width: calc(1024px + (2.5% * 2));
747
1008
  }
748
1009
  }
749
1010
  @media screen and (min-width: 1024px) {
750
- .Container--noPadding, .Container {
1011
+ .Container {
751
1012
  max-width: calc(1280px + (2.5% * 2));
752
1013
  }
753
1014
  }
@@ -782,6 +1043,7 @@ body {
782
1043
  min-height: 100%;
783
1044
  grid-template-areas: "Header" "Content" "Footer";
784
1045
  grid-template-rows: auto 1fr auto;
1046
+ grid-template-columns: minmax(0, 1fr);
785
1047
  }
786
1048
 
787
1049
  .Content {
@@ -1458,9 +1720,9 @@ button {
1458
1720
  font-style: normal;
1459
1721
  font-weight: 700;
1460
1722
  font-size: 1rem;
1461
- line-height: 40px;
1723
+ line-height: 24px;
1462
1724
  margin: 0;
1463
- padding: 0 2rem;
1725
+ padding: 0.4375rem 1rem;
1464
1726
  border: none;
1465
1727
  border-radius: 3px;
1466
1728
  transition: background-color 0.3s, color 0.3s, height 0.3s, border 0.3s, fill 0.3s;
@@ -1478,9 +1740,9 @@ a.lui-button {
1478
1740
  font-style: normal;
1479
1741
  font-weight: 700;
1480
1742
  font-size: 1rem;
1481
- line-height: 40px;
1743
+ line-height: 24px;
1482
1744
  margin: 0;
1483
- padding: 0 2rem;
1745
+ padding: 0.4375rem 1rem;
1484
1746
  border: none;
1485
1747
  border-radius: 3px;
1486
1748
  transition: background-color 0.3s, color 0.3s, height 0.3s, border 0.3s, fill 0.3s;
@@ -1501,24 +1763,28 @@ a.lui-button {
1501
1763
  }
1502
1764
  .lui-button.lui-button-icon-right,
1503
1765
  a.lui-button.lui-button-icon-right {
1504
- padding: 0 14px 0 0.75rem;
1766
+ padding: 0.25rem 0.5rem 0.5rem 0.75rem;
1505
1767
  }
1506
- .lui-button.lui-button-icon-right i,
1507
1768
  .lui-button.lui-button-icon-right .LuiIcon,
1508
- a.lui-button.lui-button-icon-right i,
1509
1769
  a.lui-button.lui-button-icon-right .LuiIcon {
1770
+ margin: 3px 0 -7px 12px;
1771
+ }
1772
+ .lui-button.lui-button-icon-right i,
1773
+ a.lui-button.lui-button-icon-right i {
1510
1774
  position: relative;
1511
1775
  top: 6px;
1512
1776
  margin: 0 0 0 12px;
1513
1777
  }
1514
1778
  .lui-button.lui-button-icon,
1515
1779
  a.lui-button.lui-button-icon {
1516
- padding: 0 0.75rem 0 14px;
1780
+ padding: 0.4375rem 1rem 0.4375rem 0.4375rem;
1517
1781
  }
1518
- .lui-button.lui-button-icon i,
1519
1782
  .lui-button.lui-button-icon .LuiIcon,
1520
- a.lui-button.lui-button-icon i,
1521
1783
  a.lui-button.lui-button-icon .LuiIcon {
1784
+ margin: 0 8px -7px 0;
1785
+ }
1786
+ .lui-button.lui-button-icon i,
1787
+ a.lui-button.lui-button-icon i {
1522
1788
  position: relative;
1523
1789
  top: 6px;
1524
1790
  margin: 0 12px 0 0;
@@ -1526,9 +1792,10 @@ a.lui-button.lui-button-icon .LuiIcon {
1526
1792
  .lui-button-primary,
1527
1793
  a.lui-button-primary {
1528
1794
  background-color: #007198;
1529
- border: 2px solid #007198;
1795
+ border: 1px solid #007198;
1530
1796
  color: #fff;
1531
- line-height: 40px;
1797
+ line-height: 24px;
1798
+ font-weight: 600;
1532
1799
  }
1533
1800
  .lui-button-primary i,
1534
1801
  .lui-button-primary svg *,
@@ -1543,10 +1810,10 @@ a.lui-button-primary:visited {
1543
1810
  }
1544
1811
  .lui-button-primary:hover,
1545
1812
  a.lui-button-primary:hover {
1546
- background-color: #00425d;
1813
+ background-color: #005678;
1547
1814
  cursor: pointer;
1548
1815
  color: #fff;
1549
- border: 2px solid #00425d;
1816
+ border: 1px solid #005678;
1550
1817
  }
1551
1818
  .lui-button-primary:hover i,
1552
1819
  .lui-button-primary:hover svg *,
@@ -1559,14 +1826,14 @@ a.lui-button-primary:hover svg * {
1559
1826
  a.lui-button-primary:disabled {
1560
1827
  color: #989189;
1561
1828
  background: #eaeaea;
1562
- border-color: #eaeaea;
1829
+ border-color: #6b6966;
1563
1830
  }
1564
1831
  .lui-button-primary:disabled i,
1565
1832
  .lui-button-primary:disabled svg *,
1566
1833
  a.lui-button-primary:disabled i,
1567
1834
  a.lui-button-primary:disabled svg * {
1568
- color: #989189;
1569
- fill: #989189;
1835
+ color: #6b6966;
1836
+ fill: #6b6966;
1570
1837
  }
1571
1838
  .lui-button-primary:disabled:hover,
1572
1839
  a.lui-button-primary:disabled:hover {
@@ -1576,11 +1843,8 @@ a.lui-button-primary:disabled:hover {
1576
1843
  a.lui-button-primary:active:enabled {
1577
1844
  background-color: #00425d;
1578
1845
  cursor: pointer;
1579
- color: rgba(255, 255, 255, 0.6);
1580
- border: 2px solid #00425d;
1581
- -moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
1582
- -webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
1583
- box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
1846
+ color: rgba(255, 255, 255, 0.9);
1847
+ border: 1px solid #00425d;
1584
1848
  }
1585
1849
  .lui-button-primary:active:enabled i,
1586
1850
  .lui-button-primary:active:enabled svg *,
@@ -1592,9 +1856,10 @@ a.lui-button-primary:active:enabled svg * {
1592
1856
  .lui-button-secondary,
1593
1857
  a.lui-button-secondary {
1594
1858
  background-color: #fff;
1595
- border: 2px solid #007198;
1859
+ border: 1px solid #007198;
1596
1860
  color: #007198;
1597
- line-height: 40px;
1861
+ line-height: 24px;
1862
+ font-weight: 600;
1598
1863
  }
1599
1864
  .lui-button-secondary i,
1600
1865
  .lui-button-secondary svg *,
@@ -1609,30 +1874,30 @@ a.lui-button-secondary:visited {
1609
1874
  }
1610
1875
  .lui-button-secondary:hover,
1611
1876
  a.lui-button-secondary:hover {
1612
- background-color: #00425d;
1877
+ background-color: #e2f3f7;
1613
1878
  cursor: pointer;
1614
- color: #fff;
1615
- border: 2px solid #00425d;
1879
+ color: #007198;
1880
+ border: 1px solid #007198;
1616
1881
  }
1617
1882
  .lui-button-secondary:hover i,
1618
1883
  .lui-button-secondary:hover svg *,
1619
1884
  a.lui-button-secondary:hover i,
1620
1885
  a.lui-button-secondary:hover svg * {
1621
- color: #fff;
1622
- fill: #fff;
1886
+ color: #007198;
1887
+ fill: #007198;
1623
1888
  }
1624
1889
  .lui-button-secondary:disabled,
1625
1890
  a.lui-button-secondary:disabled {
1626
1891
  color: #989189;
1627
1892
  background: #eaeaea;
1628
- border-color: #eaeaea;
1893
+ border-color: #6b6966;
1629
1894
  }
1630
1895
  .lui-button-secondary:disabled i,
1631
1896
  .lui-button-secondary:disabled svg *,
1632
1897
  a.lui-button-secondary:disabled i,
1633
1898
  a.lui-button-secondary:disabled svg * {
1634
- color: #989189;
1635
- fill: #989189;
1899
+ color: #6b6966;
1900
+ fill: #6b6966;
1636
1901
  }
1637
1902
  .lui-button-secondary:disabled:hover,
1638
1903
  a.lui-button-secondary:disabled:hover {
@@ -1640,13 +1905,10 @@ a.lui-button-secondary:disabled:hover {
1640
1905
  }
1641
1906
  .lui-button-secondary:active:enabled,
1642
1907
  a.lui-button-secondary:active:enabled {
1643
- background-color: #00425d;
1908
+ background-color: #007198;
1644
1909
  cursor: pointer;
1645
- color: rgba(255, 255, 255, 0.6);
1646
- border: 2px solid #00425d;
1647
- -moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
1648
- -webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
1649
- box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
1910
+ color: rgba(255, 255, 255, 0.9);
1911
+ border: 1px solid #007198;
1650
1912
  }
1651
1913
  .lui-button-secondary:active:enabled i,
1652
1914
  .lui-button-secondary:active:enabled svg *,
@@ -1663,52 +1925,58 @@ a.lui-button-secondary svg * {
1663
1925
  }
1664
1926
  .lui-button-secondary:hover i,
1665
1927
  a.lui-button-secondary:hover i {
1666
- color: #fff;
1928
+ color: #007198;
1667
1929
  }
1668
1930
  .lui-button-tertiary,
1669
1931
  a.lui-button-tertiary {
1670
- background-color: #2e881a;
1671
- border: 2px solid #2e881a;
1672
- color: #fff;
1673
- line-height: 40px;
1932
+ background-color: transparent;
1933
+ border: 0px solid transparent;
1934
+ color: #007198;
1935
+ line-height: 22px;
1936
+ font-weight: 600;
1937
+ font-family: "Open Sans", system-ui, sans-serif;
1938
+ font-style: normal;
1939
+ font-weight: normal;
1940
+ border: none;
1941
+ margin: 2px;
1674
1942
  }
1675
1943
  .lui-button-tertiary i,
1676
1944
  .lui-button-tertiary svg *,
1677
1945
  a.lui-button-tertiary i,
1678
1946
  a.lui-button-tertiary svg * {
1679
- color: #fff;
1680
- fill: #fff;
1947
+ color: #007198;
1948
+ fill: #007198;
1681
1949
  }
1682
1950
  .lui-button-tertiary:visited,
1683
1951
  a.lui-button-tertiary:visited {
1684
- color: #fff;
1952
+ color: #007198;
1685
1953
  }
1686
1954
  .lui-button-tertiary:hover,
1687
1955
  a.lui-button-tertiary:hover {
1688
- background-color: #205f12;
1956
+ background-color: #e2f3f7;
1689
1957
  cursor: pointer;
1690
- color: #fff;
1691
- border: 2px solid #205f12;
1958
+ color: #007198;
1959
+ border: 1px solid #fff;
1692
1960
  }
1693
1961
  .lui-button-tertiary:hover i,
1694
1962
  .lui-button-tertiary:hover svg *,
1695
1963
  a.lui-button-tertiary:hover i,
1696
1964
  a.lui-button-tertiary:hover svg * {
1697
- color: #fff;
1698
- fill: #fff;
1965
+ color: #007198;
1966
+ fill: #007198;
1699
1967
  }
1700
1968
  .lui-button-tertiary:disabled,
1701
1969
  a.lui-button-tertiary:disabled {
1702
1970
  color: #989189;
1703
1971
  background: #eaeaea;
1704
- border-color: #eaeaea;
1972
+ border-color: #6b6966;
1705
1973
  }
1706
1974
  .lui-button-tertiary:disabled i,
1707
1975
  .lui-button-tertiary:disabled svg *,
1708
1976
  a.lui-button-tertiary:disabled i,
1709
1977
  a.lui-button-tertiary:disabled svg * {
1710
- color: #989189;
1711
- fill: #989189;
1978
+ color: #6b6966;
1979
+ fill: #6b6966;
1712
1980
  }
1713
1981
  .lui-button-tertiary:disabled:hover,
1714
1982
  a.lui-button-tertiary:disabled:hover {
@@ -1716,13 +1984,10 @@ a.lui-button-tertiary:disabled:hover {
1716
1984
  }
1717
1985
  .lui-button-tertiary:active:enabled,
1718
1986
  a.lui-button-tertiary:active:enabled {
1719
- background-color: #16430c;
1987
+ background-color: #007198;
1720
1988
  cursor: pointer;
1721
- color: rgba(255, 255, 255, 0.6);
1722
- border: 2px solid #16430c;
1723
- -moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
1724
- -webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
1725
- box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
1989
+ color: rgba(255, 255, 255, 0.9);
1990
+ border: 1px solid #fff;
1726
1991
  }
1727
1992
  .lui-button-tertiary:active:enabled i,
1728
1993
  .lui-button-tertiary:active:enabled svg *,
@@ -1731,16 +1996,108 @@ a.lui-button-tertiary:active:enabled svg * {
1731
1996
  color: rgba(255, 255, 255, 0.6);
1732
1997
  fill: rgba(255, 255, 255, 0.6);
1733
1998
  }
1734
- .lui-button-error,
1735
- a.lui-button-error {
1736
- background-color: #cc0000;
1737
- border: 2px solid #cc0000;
1738
- color: #fff;
1739
- line-height: 40px;
1999
+ .lui-button-tertiary:hover,
2000
+ a.lui-button-tertiary:hover {
2001
+ border: none;
1740
2002
  }
1741
- .lui-button-error i,
1742
- .lui-button-error svg *,
1743
- a.lui-button-error i,
2003
+ .lui-button-tertiary:active:enabled,
2004
+ a.lui-button-tertiary:active:enabled {
2005
+ border: none;
2006
+ }
2007
+ .lui-button-tertiary:disabled,
2008
+ a.lui-button-tertiary:disabled {
2009
+ color: #989189;
2010
+ background: none;
2011
+ text-decoration: none;
2012
+ border: none;
2013
+ }
2014
+ .lui-button-tertiary:disabled:hover,
2015
+ a.lui-button-tertiary:disabled:hover {
2016
+ cursor: not-allowed;
2017
+ border: none;
2018
+ }
2019
+ .lui-button-tertiary:disabled i,
2020
+ .lui-button-tertiary:disabled svg *,
2021
+ a.lui-button-tertiary:disabled i,
2022
+ a.lui-button-tertiary:disabled svg * {
2023
+ color: #989189;
2024
+ fill: #989189;
2025
+ }
2026
+ .lui-button-success,
2027
+ a.lui-button-success {
2028
+ background-color: #0aa245;
2029
+ border: 1px solid #0aa245;
2030
+ color: #fff;
2031
+ line-height: 24px;
2032
+ font-weight: 600;
2033
+ }
2034
+ .lui-button-success i,
2035
+ .lui-button-success svg *,
2036
+ a.lui-button-success i,
2037
+ a.lui-button-success svg * {
2038
+ color: #fff;
2039
+ fill: #fff;
2040
+ }
2041
+ .lui-button-success:visited,
2042
+ a.lui-button-success:visited {
2043
+ color: #fff;
2044
+ }
2045
+ .lui-button-success:hover,
2046
+ a.lui-button-success:hover {
2047
+ background-color: #107c3a;
2048
+ cursor: pointer;
2049
+ color: #fff;
2050
+ border: 1px solid #107c3a;
2051
+ }
2052
+ .lui-button-success:hover i,
2053
+ .lui-button-success:hover svg *,
2054
+ a.lui-button-success:hover i,
2055
+ a.lui-button-success:hover svg * {
2056
+ color: #fff;
2057
+ fill: #fff;
2058
+ }
2059
+ .lui-button-success:disabled,
2060
+ a.lui-button-success:disabled {
2061
+ color: #989189;
2062
+ background: #eaeaea;
2063
+ border-color: #6b6966;
2064
+ }
2065
+ .lui-button-success:disabled i,
2066
+ .lui-button-success:disabled svg *,
2067
+ a.lui-button-success:disabled i,
2068
+ a.lui-button-success:disabled svg * {
2069
+ color: #6b6966;
2070
+ fill: #6b6966;
2071
+ }
2072
+ .lui-button-success:disabled:hover,
2073
+ a.lui-button-success:disabled:hover {
2074
+ cursor: not-allowed;
2075
+ }
2076
+ .lui-button-success:active:enabled,
2077
+ a.lui-button-success:active:enabled {
2078
+ background-color: #094a22;
2079
+ cursor: pointer;
2080
+ color: rgba(255, 255, 255, 0.9);
2081
+ border: 1px solid #094a22;
2082
+ }
2083
+ .lui-button-success:active:enabled i,
2084
+ .lui-button-success:active:enabled svg *,
2085
+ a.lui-button-success:active:enabled i,
2086
+ a.lui-button-success:active:enabled svg * {
2087
+ color: rgba(255, 255, 255, 0.6);
2088
+ fill: rgba(255, 255, 255, 0.6);
2089
+ }
2090
+ .lui-button-error,
2091
+ a.lui-button-error {
2092
+ background-color: #cc0000;
2093
+ border: 1px solid #cc0000;
2094
+ color: #fff;
2095
+ line-height: 24px;
2096
+ font-weight: 600;
2097
+ }
2098
+ .lui-button-error i,
2099
+ .lui-button-error svg *,
2100
+ a.lui-button-error i,
1744
2101
  a.lui-button-error svg * {
1745
2102
  color: #fff;
1746
2103
  fill: #fff;
@@ -1751,10 +2108,10 @@ a.lui-button-error:visited {
1751
2108
  }
1752
2109
  .lui-button-error:hover,
1753
2110
  a.lui-button-error:hover {
1754
- background-color: #5a0000;
2111
+ background-color: #8f0000;
1755
2112
  cursor: pointer;
1756
2113
  color: #fff;
1757
- border: 2px solid #5a0000;
2114
+ border: 1px solid #8f0000;
1758
2115
  }
1759
2116
  .lui-button-error:hover i,
1760
2117
  .lui-button-error:hover svg *,
@@ -1767,14 +2124,14 @@ a.lui-button-error:hover svg * {
1767
2124
  a.lui-button-error:disabled {
1768
2125
  color: #989189;
1769
2126
  background: #eaeaea;
1770
- border-color: #eaeaea;
2127
+ border-color: #6b6966;
1771
2128
  }
1772
2129
  .lui-button-error:disabled i,
1773
2130
  .lui-button-error:disabled svg *,
1774
2131
  a.lui-button-error:disabled i,
1775
2132
  a.lui-button-error:disabled svg * {
1776
- color: #989189;
1777
- fill: #989189;
2133
+ color: #6b6966;
2134
+ fill: #6b6966;
1778
2135
  }
1779
2136
  .lui-button-error:disabled:hover,
1780
2137
  a.lui-button-error:disabled:hover {
@@ -1784,11 +2141,8 @@ a.lui-button-error:disabled:hover {
1784
2141
  a.lui-button-error:active:enabled {
1785
2142
  background-color: #5a0000;
1786
2143
  cursor: pointer;
1787
- color: rgba(255, 255, 255, 0.6);
1788
- border: 2px solid #5a0000;
1789
- -moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
1790
- -webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
1791
- box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
2144
+ color: rgba(255, 255, 255, 0.9);
2145
+ border: 1px solid #5a0000;
1792
2146
  }
1793
2147
  .lui-button-error:active:enabled i,
1794
2148
  .lui-button-error:active:enabled svg *,
@@ -1800,9 +2154,10 @@ a.lui-button-error:active:enabled svg * {
1800
2154
  .lui-button-reversed-no-bg,
1801
2155
  a.lui-button-reversed-no-bg {
1802
2156
  background-color: transparent;
1803
- border: 2px solid transparent;
2157
+ border: 1px solid transparent;
1804
2158
  color: #fff;
1805
- line-height: 40px;
2159
+ line-height: 24px;
2160
+ font-weight: 600;
1806
2161
  }
1807
2162
  .lui-button-reversed-no-bg i,
1808
2163
  .lui-button-reversed-no-bg svg *,
@@ -1820,7 +2175,7 @@ a.lui-button-reversed-no-bg:hover {
1820
2175
  background-color: transparent;
1821
2176
  cursor: pointer;
1822
2177
  color: rgba(255, 255, 255, 0.8);
1823
- border: 2px solid transparent;
2178
+ border: 1px solid transparent;
1824
2179
  }
1825
2180
  .lui-button-reversed-no-bg:hover i,
1826
2181
  .lui-button-reversed-no-bg:hover svg *,
@@ -1833,14 +2188,14 @@ a.lui-button-reversed-no-bg:hover svg * {
1833
2188
  a.lui-button-reversed-no-bg:disabled {
1834
2189
  color: #989189;
1835
2190
  background: #eaeaea;
1836
- border-color: #eaeaea;
2191
+ border-color: #6b6966;
1837
2192
  }
1838
2193
  .lui-button-reversed-no-bg:disabled i,
1839
2194
  .lui-button-reversed-no-bg:disabled svg *,
1840
2195
  a.lui-button-reversed-no-bg:disabled i,
1841
2196
  a.lui-button-reversed-no-bg:disabled svg * {
1842
- color: #989189;
1843
- fill: #989189;
2197
+ color: #6b6966;
2198
+ fill: #6b6966;
1844
2199
  }
1845
2200
  .lui-button-reversed-no-bg:disabled:hover,
1846
2201
  a.lui-button-reversed-no-bg:disabled:hover {
@@ -1850,11 +2205,8 @@ a.lui-button-reversed-no-bg:disabled:hover {
1850
2205
  a.lui-button-reversed-no-bg:active:enabled {
1851
2206
  background-color: transparent;
1852
2207
  cursor: pointer;
1853
- color: rgba(255, 255, 255, 0.6);
1854
- border: 2px solid transparent;
1855
- -moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
1856
- -webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
1857
- box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
2208
+ color: rgba(255, 255, 255, 0.9);
2209
+ border: 1px solid transparent;
1858
2210
  }
1859
2211
  .lui-button-reversed-no-bg:active:enabled i,
1860
2212
  .lui-button-reversed-no-bg:active:enabled svg *,
@@ -1889,9 +2241,10 @@ a.lui-button-reversed-no-bg:disabled:hover {
1889
2241
  a.lui-button-text {
1890
2242
  background-color: transparent;
1891
2243
  border: 0 solid #fff;
1892
- color: #1f69c3;
2244
+ color: #0096cc;
1893
2245
  line-height: 24px;
1894
- border-bottom: 1px solid;
2246
+ font-weight: 600;
2247
+ text-decoration: underline;
1895
2248
  font-family: "Open Sans", system-ui, sans-serif;
1896
2249
  font-style: normal;
1897
2250
  font-weight: normal;
@@ -1903,19 +2256,19 @@ a.lui-button-text {
1903
2256
  .lui-button-text svg *,
1904
2257
  a.lui-button-text i,
1905
2258
  a.lui-button-text svg * {
1906
- color: #1f69c3;
1907
- fill: #1f69c3;
2259
+ color: #0096cc;
2260
+ fill: #0096cc;
1908
2261
  }
1909
2262
  .lui-button-text:visited,
1910
2263
  a.lui-button-text:visited {
1911
- color: #1f69c3;
2264
+ color: #0096cc;
1912
2265
  }
1913
2266
  .lui-button-text:hover,
1914
2267
  a.lui-button-text:hover {
1915
2268
  background-color: transparent;
1916
2269
  cursor: pointer;
1917
2270
  color: #00425d;
1918
- border: 2px solid none;
2271
+ border: 1px solid none;
1919
2272
  }
1920
2273
  .lui-button-text:hover i,
1921
2274
  .lui-button-text:hover svg *,
@@ -1928,14 +2281,14 @@ a.lui-button-text:hover svg * {
1928
2281
  a.lui-button-text:disabled {
1929
2282
  color: #989189;
1930
2283
  background: #eaeaea;
1931
- border-color: #eaeaea;
2284
+ border-color: #6b6966;
1932
2285
  }
1933
2286
  .lui-button-text:disabled i,
1934
2287
  .lui-button-text:disabled svg *,
1935
2288
  a.lui-button-text:disabled i,
1936
2289
  a.lui-button-text:disabled svg * {
1937
- color: #989189;
1938
- fill: #989189;
2290
+ color: #6b6966;
2291
+ fill: #6b6966;
1939
2292
  }
1940
2293
  .lui-button-text:disabled:hover,
1941
2294
  a.lui-button-text:disabled:hover {
@@ -1945,11 +2298,8 @@ a.lui-button-text:disabled:hover {
1945
2298
  a.lui-button-text:active:enabled {
1946
2299
  background-color: none;
1947
2300
  cursor: pointer;
1948
- color: rgba(0, 66, 93, 0.6);
1949
- border: 2px solid none;
1950
- -moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
1951
- -webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
1952
- box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
2301
+ color: rgba(0, 66, 93, 0.9);
2302
+ border: 1px solid none;
1953
2303
  }
1954
2304
  .lui-button-text:active:enabled i,
1955
2305
  .lui-button-text:active:enabled svg *,
@@ -1958,16 +2308,26 @@ a.lui-button-text:active:enabled svg * {
1958
2308
  color: #00425d;
1959
2309
  fill: #00425d;
1960
2310
  }
1961
- .lui-button-text:hover,
1962
- a.lui-button-text:hover {
1963
- border-bottom: 2px solid;
2311
+ .lui-button-text:active:enabled,
2312
+ a.lui-button-text:active:enabled {
2313
+ background-color: #fff;
2314
+ cursor: pointer;
2315
+ -moz-box-shadow: none;
2316
+ -webkit-box-shadow: none;
2317
+ box-shadow: none;
2318
+ }
2319
+ .lui-button-text:active:enabled i,
2320
+ .lui-button-text:active:enabled svg *,
2321
+ a.lui-button-text:active:enabled i,
2322
+ a.lui-button-text:active:enabled svg * {
2323
+ color: #fff;
2324
+ fill: #fff;
1964
2325
  }
1965
2326
  .lui-button-text:disabled,
1966
2327
  a.lui-button-text:disabled {
1967
2328
  color: #989189;
1968
2329
  background: none;
1969
- border: 0;
1970
- text-decoration: none;
2330
+ text-decoration: underline;
1971
2331
  }
1972
2332
  .lui-button-text:disabled:hover,
1973
2333
  a.lui-button-text:disabled:hover {
@@ -1983,9 +2343,10 @@ a.lui-button-text:disabled svg * {
1983
2343
  .lui-button-plain-text,
1984
2344
  a.lui-button-plain-text {
1985
2345
  background-color: transparent;
1986
- border: 2px solid #fff;
2346
+ border: 0 solid #fff;
1987
2347
  color: inherit;
1988
- line-height: 40px;
2348
+ line-height: 24px;
2349
+ font-weight: 600;
1989
2350
  padding: 0;
1990
2351
  margin: 0;
1991
2352
  font-family: inherit;
@@ -2005,6 +2366,13 @@ a.lui-button-plain-text svg * {
2005
2366
  a.lui-button-plain-text:visited {
2006
2367
  color: inherit;
2007
2368
  }
2369
+ .lui-button-plain-text i,
2370
+ .lui-button-plain-text svg *,
2371
+ a.lui-button-plain-text i,
2372
+ a.lui-button-plain-text svg * {
2373
+ color: #989189;
2374
+ fill: #989189;
2375
+ }
2008
2376
  .lui-button-plain-text:disabled,
2009
2377
  a.lui-button-plain-text:disabled {
2010
2378
  color: #989189;
@@ -2012,6 +2380,10 @@ a.lui-button-plain-text:disabled {
2012
2380
  border: 0;
2013
2381
  text-decoration: none;
2014
2382
  }
2383
+ .lui-button-plain-text:disabled:hover,
2384
+ a.lui-button-plain-text:disabled:hover {
2385
+ cursor: not-allowed;
2386
+ }
2015
2387
  .lui-button-plain-text:disabled i,
2016
2388
  .lui-button-plain-text:disabled svg *,
2017
2389
  a.lui-button-plain-text:disabled i,
@@ -2019,25 +2391,38 @@ a.lui-button-plain-text:disabled svg * {
2019
2391
  color: #989189;
2020
2392
  fill: #989189;
2021
2393
  }
2022
- .lui-button-icon-only, .lui-button-icon-only-rev, .lui-button-icon-only-link,
2023
- a.lui-button-icon-only,
2394
+ .lui-button-icon-only,
2395
+ a.lui-button-icon-only {
2396
+ width: 40px;
2397
+ height: 40px;
2398
+ padding: 0;
2399
+ }
2400
+ .lui-button-icon-only .LuiIcon,
2401
+ a.lui-button-icon-only .LuiIcon {
2402
+ vertical-align: top;
2403
+ }
2404
+ .lui-button-icon-only i,
2405
+ a.lui-button-icon-only i {
2406
+ position: relative;
2407
+ top: 6px;
2408
+ margin: 0 12px 0 0;
2409
+ }
2410
+ .lui-button-icon-only-rev, .lui-button-icon-only-link,
2024
2411
  a.lui-button-icon-only-rev,
2025
2412
  a.lui-button-icon-only-link {
2026
2413
  background-color: transparent;
2027
- border: 2px solid transparent;
2414
+ border: 1px solid transparent;
2028
2415
  color: #007198;
2029
- line-height: 40px;
2416
+ line-height: 24px;
2417
+ font-weight: 600;
2030
2418
  line-height: 44px;
2031
2419
  padding: 0;
2032
2420
  width: 36px;
2033
2421
  height: 36px;
2034
2422
  }
2035
- .lui-button-icon-only i,
2036
- .lui-button-icon-only svg *, .lui-button-icon-only-rev i,
2423
+ .lui-button-icon-only-rev i,
2037
2424
  .lui-button-icon-only-rev svg *, .lui-button-icon-only-link i,
2038
2425
  .lui-button-icon-only-link svg *,
2039
- a.lui-button-icon-only i,
2040
- a.lui-button-icon-only svg *,
2041
2426
  a.lui-button-icon-only-rev i,
2042
2427
  a.lui-button-icon-only-rev svg *,
2043
2428
  a.lui-button-icon-only-link i,
@@ -2045,88 +2430,70 @@ a.lui-button-icon-only-link svg * {
2045
2430
  color: #007198;
2046
2431
  fill: #007198;
2047
2432
  }
2048
- .lui-button-icon-only:visited, .lui-button-icon-only-rev:visited, .lui-button-icon-only-link:visited,
2049
- a.lui-button-icon-only:visited,
2433
+ .lui-button-icon-only-rev:visited, .lui-button-icon-only-link:visited,
2050
2434
  a.lui-button-icon-only-rev:visited,
2051
2435
  a.lui-button-icon-only-link:visited {
2052
2436
  color: #007198;
2053
2437
  }
2054
- .lui-button-icon-only:hover, .lui-button-icon-only-rev:hover, .lui-button-icon-only-link:hover,
2055
- a.lui-button-icon-only:hover,
2438
+ .lui-button-icon-only-rev:hover, .lui-button-icon-only-link:hover,
2056
2439
  a.lui-button-icon-only-rev:hover,
2057
2440
  a.lui-button-icon-only-link:hover {
2058
2441
  background-color: transparent;
2059
2442
  cursor: pointer;
2060
- color: #004e6a;
2061
- border: 2px solid transparent;
2443
+ color: #005678;
2444
+ border: 1px solid transparent;
2062
2445
  }
2063
- .lui-button-icon-only:hover i,
2064
- .lui-button-icon-only:hover svg *, .lui-button-icon-only-rev:hover i,
2446
+ .lui-button-icon-only-rev:hover i,
2065
2447
  .lui-button-icon-only-rev:hover svg *, .lui-button-icon-only-link:hover i,
2066
2448
  .lui-button-icon-only-link:hover svg *,
2067
- a.lui-button-icon-only:hover i,
2068
- a.lui-button-icon-only:hover svg *,
2069
2449
  a.lui-button-icon-only-rev:hover i,
2070
2450
  a.lui-button-icon-only-rev:hover svg *,
2071
2451
  a.lui-button-icon-only-link:hover i,
2072
2452
  a.lui-button-icon-only-link:hover svg * {
2073
- color: #004e6a;
2074
- fill: #004e6a;
2453
+ color: #005678;
2454
+ fill: #005678;
2075
2455
  }
2076
- .lui-button-icon-only:disabled, .lui-button-icon-only-rev:disabled, .lui-button-icon-only-link:disabled,
2077
- a.lui-button-icon-only:disabled,
2456
+ .lui-button-icon-only-rev:disabled, .lui-button-icon-only-link:disabled,
2078
2457
  a.lui-button-icon-only-rev:disabled,
2079
2458
  a.lui-button-icon-only-link:disabled {
2080
2459
  color: #989189;
2081
2460
  background: #eaeaea;
2082
- border-color: #eaeaea;
2461
+ border-color: #6b6966;
2083
2462
  }
2084
- .lui-button-icon-only:disabled i,
2085
- .lui-button-icon-only:disabled svg *, .lui-button-icon-only-rev:disabled i,
2463
+ .lui-button-icon-only-rev:disabled i,
2086
2464
  .lui-button-icon-only-rev:disabled svg *, .lui-button-icon-only-link:disabled i,
2087
2465
  .lui-button-icon-only-link:disabled svg *,
2088
- a.lui-button-icon-only:disabled i,
2089
- a.lui-button-icon-only:disabled svg *,
2090
2466
  a.lui-button-icon-only-rev:disabled i,
2091
2467
  a.lui-button-icon-only-rev:disabled svg *,
2092
2468
  a.lui-button-icon-only-link:disabled i,
2093
2469
  a.lui-button-icon-only-link:disabled svg * {
2094
- color: #989189;
2095
- fill: #989189;
2470
+ color: #6b6966;
2471
+ fill: #6b6966;
2096
2472
  }
2097
- .lui-button-icon-only:disabled:hover, .lui-button-icon-only-rev:disabled:hover, .lui-button-icon-only-link:disabled:hover,
2098
- a.lui-button-icon-only:disabled:hover,
2473
+ .lui-button-icon-only-rev:disabled:hover, .lui-button-icon-only-link:disabled:hover,
2099
2474
  a.lui-button-icon-only-rev:disabled:hover,
2100
2475
  a.lui-button-icon-only-link:disabled:hover {
2101
2476
  cursor: not-allowed;
2102
2477
  }
2103
- .lui-button-icon-only:active:enabled, .lui-button-icon-only-rev:active:enabled, .lui-button-icon-only-link:active:enabled,
2104
- a.lui-button-icon-only:active:enabled,
2478
+ .lui-button-icon-only-rev:active:enabled, .lui-button-icon-only-link:active:enabled,
2105
2479
  a.lui-button-icon-only-rev:active:enabled,
2106
2480
  a.lui-button-icon-only-link:active:enabled {
2107
2481
  background-color: transparent;
2108
2482
  cursor: pointer;
2109
- color: rgba(31, 105, 195, 0.6);
2110
- border: 2px solid transparent;
2111
- -moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
2112
- -webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
2113
- box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
2114
- }
2115
- .lui-button-icon-only:active:enabled i,
2116
- .lui-button-icon-only:active:enabled svg *, .lui-button-icon-only-rev:active:enabled i,
2483
+ color: rgba(0, 150, 204, 0.9);
2484
+ border: 1px solid transparent;
2485
+ }
2486
+ .lui-button-icon-only-rev:active:enabled i,
2117
2487
  .lui-button-icon-only-rev:active:enabled svg *, .lui-button-icon-only-link:active:enabled i,
2118
2488
  .lui-button-icon-only-link:active:enabled svg *,
2119
- a.lui-button-icon-only:active:enabled i,
2120
- a.lui-button-icon-only:active:enabled svg *,
2121
2489
  a.lui-button-icon-only-rev:active:enabled i,
2122
2490
  a.lui-button-icon-only-rev:active:enabled svg *,
2123
2491
  a.lui-button-icon-only-link:active:enabled i,
2124
2492
  a.lui-button-icon-only-link:active:enabled svg * {
2125
- color: #1f69c3;
2126
- fill: #1f69c3;
2493
+ color: #0096cc;
2494
+ fill: #0096cc;
2127
2495
  }
2128
- .lui-button-icon-only:disabled, .lui-button-icon-only-rev:disabled, .lui-button-icon-only-link:disabled,
2129
- a.lui-button-icon-only:disabled,
2496
+ .lui-button-icon-only-rev:disabled, .lui-button-icon-only-link:disabled,
2130
2497
  a.lui-button-icon-only-rev:disabled,
2131
2498
  a.lui-button-icon-only-link:disabled {
2132
2499
  background-color: transparent;
@@ -2142,77 +2509,141 @@ a.lui-button-icon-only-rev i,
2142
2509
  a.lui-button-icon-only-rev svg * {
2143
2510
  color: #fff;
2144
2511
  }
2145
- .lui-button-icon-only-rev:disabled,
2146
- a.lui-button-icon-only-rev:disabled {
2512
+ .lui-button-icon-only-rev:disabled, .lui-button-icon-only-rev:disabled:hover,
2513
+ a.lui-button-icon-only-rev:disabled,
2514
+ a.lui-button-icon-only-rev:disabled:hover {
2147
2515
  color: rgba(255, 255, 255, 0.4);
2148
2516
  }
2149
2517
  .lui-button-icon-only-rev:disabled i,
2150
- .lui-button-icon-only-rev:disabled svg *,
2518
+ .lui-button-icon-only-rev:disabled svg *, .lui-button-icon-only-rev:disabled:hover i,
2519
+ .lui-button-icon-only-rev:disabled:hover svg *,
2151
2520
  a.lui-button-icon-only-rev:disabled i,
2152
- a.lui-button-icon-only-rev:disabled svg * {
2521
+ a.lui-button-icon-only-rev:disabled svg *,
2522
+ a.lui-button-icon-only-rev:disabled:hover i,
2523
+ a.lui-button-icon-only-rev:disabled:hover svg * {
2153
2524
  color: rgba(255, 255, 255, 0.4);
2154
2525
  fill: rgba(255, 255, 255, 0.4);
2155
2526
  }
2527
+ .lui-button-icon-only-rev:hover i,
2528
+ .lui-button-icon-only-rev:hover svg *,
2529
+ a.lui-button-icon-only-rev:hover i,
2530
+ a.lui-button-icon-only-rev:hover svg * {
2531
+ color: #73c8e1;
2532
+ fill: #73c8e1;
2533
+ }
2156
2534
  .lui-button-icon-only-link,
2157
2535
  a.lui-button-icon-only-link {
2158
- color: #1f69c3;
2536
+ color: #0096cc;
2159
2537
  }
2160
2538
  .lui-button.lui-button-sm,
2161
2539
  a.lui-button.lui-button-sm {
2162
- line-height: 30px;
2163
- padding: 0 0.75rem;
2164
- font-size: 0.875rem;
2540
+ padding: 0.1875rem 0.5rem;
2541
+ }
2542
+ .lui-button.lui-button-sm.lui-button-text,
2543
+ a.lui-button.lui-button-sm.lui-button-text {
2544
+ padding: 0;
2545
+ }
2546
+ .lui-button.lui-button-sm.lui-button-plain-text,
2547
+ a.lui-button.lui-button-sm.lui-button-plain-text {
2548
+ padding: 0;
2165
2549
  }
2166
2550
  .lui-button.lui-button-sm.lui-button-icon,
2167
2551
  a.lui-button.lui-button-sm.lui-button-icon {
2168
- padding: 0 0.75rem 0 12px;
2552
+ padding: 0.125rem 0.5rem 0.125rem 0.25rem;
2169
2553
  }
2170
- .lui-button.lui-button-sm.lui-button-icon i,
2171
2554
  .lui-button.lui-button-sm.lui-button-icon .LuiIcon,
2172
- a.lui-button.lui-button-sm.lui-button-icon i,
2173
2555
  a.lui-button.lui-button-sm.lui-button-icon .LuiIcon {
2174
- margin: 0 0.5rem 0 0;
2175
- font-size: 1.3rem;
2556
+ margin: 1px 4px -5px 0;
2557
+ }
2558
+ .lui-button.lui-button-sm.lui-button-icon i,
2559
+ a.lui-button.lui-button-sm.lui-button-icon i {
2560
+ position: relative;
2561
+ top: 6px;
2562
+ margin: 0 12px 0 0;
2563
+ }
2564
+ .lui-button.lui-button-sm.lui-button-icon-only,
2565
+ a.lui-button.lui-button-sm.lui-button-icon-only {
2566
+ width: 32px;
2567
+ height: 32px;
2568
+ padding: 0;
2569
+ }
2570
+ .lui-button.lui-button-sm.lui-button-icon-only .LuiIcon,
2571
+ a.lui-button.lui-button-sm.lui-button-icon-only .LuiIcon {
2572
+ vertical-align: top;
2573
+ }
2574
+ .lui-button.lui-button-sm.lui-button-icon-only i,
2575
+ a.lui-button.lui-button-sm.lui-button-icon-only i {
2576
+ position: relative;
2577
+ top: 6px;
2578
+ margin: 0 12px 0 0;
2176
2579
  }
2177
2580
  .lui-button.lui-button-sm.lui-button-icon-right,
2178
2581
  a.lui-button.lui-button-sm.lui-button-icon-right {
2179
- padding: 0 12px 0 0.75rem;
2582
+ padding: 0.125rem 0.25rem 0.125rem 0.5rem;
2180
2583
  }
2181
- .lui-button.lui-button-sm.lui-button-icon-right i,
2182
2584
  .lui-button.lui-button-sm.lui-button-icon-right .LuiIcon,
2183
- a.lui-button.lui-button-sm.lui-button-icon-right i,
2184
2585
  a.lui-button.lui-button-sm.lui-button-icon-right .LuiIcon {
2185
- margin: 0 0 0 0.5rem;
2186
- font-size: 1.3rem;
2586
+ margin: 1px 0 -5px 0.25rem;
2587
+ }
2588
+ .lui-button.lui-button-sm.lui-button-icon-right i,
2589
+ a.lui-button.lui-button-sm.lui-button-icon-right i {
2590
+ position: relative;
2591
+ top: 6px;
2592
+ margin: 0 0 0 12px;
2187
2593
  }
2188
2594
  .lui-button.lui-button-sm.lui-button-reversed-no-bg i,
2189
2595
  .lui-button.lui-button-sm.lui-button-reversed-no-bg .LuiIcon,
2190
2596
  a.lui-button.lui-button-sm.lui-button-reversed-no-bg i,
2191
2597
  a.lui-button.lui-button-sm.lui-button-reversed-no-bg .LuiIcon {
2192
- font-size: 1.8rem;
2193
2598
  top: 9px !important;
2194
2599
  }
2195
2600
  .lui-button.lui-button-lg,
2196
2601
  a.lui-button.lui-button-lg {
2197
- line-height: 50px;
2198
- padding: 0 2rem;
2199
- font-size: 1.125rem;
2602
+ padding: 0.6875rem 1.125rem;
2603
+ }
2604
+ .lui-button.lui-button-lg.lui-button-text,
2605
+ a.lui-button.lui-button-lg.lui-button-text {
2606
+ padding: 0;
2607
+ }
2608
+ .lui-button.lui-button-lg.lui-button-plain-text,
2609
+ a.lui-button.lui-button-lg.lui-button-plain-text {
2610
+ padding: 0;
2200
2611
  }
2201
2612
  .lui-button.lui-button-lg.lui-button-icon,
2202
2613
  a.lui-button.lui-button-lg.lui-button-icon {
2203
- padding: 0 2rem 0 28px;
2614
+ padding: 0.6875rem 16px 0.6875rem 0.75rem;
2204
2615
  }
2205
2616
  .lui-button.lui-button-lg.lui-button-icon i,
2206
2617
  a.lui-button.lui-button-lg.lui-button-icon i {
2207
- margin: 0 0.75rem 0 0;
2618
+ position: relative;
2619
+ top: 6px;
2620
+ margin: 0 0.5rem 0 0;
2621
+ }
2622
+ .lui-button.lui-button-lg.lui-button-icon-only,
2623
+ a.lui-button.lui-button-lg.lui-button-icon-only {
2624
+ width: 48px;
2625
+ height: 48px;
2626
+ padding: 0;
2627
+ }
2628
+ .lui-button.lui-button-lg.lui-button-icon-only .LuiIcon,
2629
+ a.lui-button.lui-button-lg.lui-button-icon-only .LuiIcon {
2630
+ vertical-align: top;
2631
+ }
2632
+ .lui-button.lui-button-lg.lui-button-icon-only i,
2633
+ a.lui-button.lui-button-lg.lui-button-icon-only i {
2634
+ position: relative;
2635
+ top: 6px;
2636
+ margin: 0 0.5rem 0 0;
2208
2637
  }
2209
2638
  .lui-button.lui-button-lg.lui-button-icon-right,
2210
2639
  a.lui-button.lui-button-lg.lui-button-icon-right {
2211
- padding: 0 28px 0 2rem;
2640
+ padding: 0.6875rem 0.75rem 0.6875rem 24px;
2212
2641
  }
2213
2642
  .lui-button.lui-button-lg.lui-button-icon-right i,
2214
2643
  a.lui-button.lui-button-lg.lui-button-icon-right i {
2215
- margin: 0 0 0 0.75rem;
2644
+ position: relative;
2645
+ top: 6px;
2646
+ margin: 0 0 0 0.5rem;
2216
2647
  }
2217
2648
  .lui-button + .lui-button,
2218
2649
  a.lui-button + .lui-button {
@@ -2232,7 +2663,7 @@ a.lui-button + a.lui-button {
2232
2663
  flex: 1 1 0;
2233
2664
  }
2234
2665
  .lui-button-group .lui-button-wrapper:first-child button {
2235
- border-left: 1px solid #00425d;
2666
+ border-left: 1px solid #004b50;
2236
2667
  border-top-left-radius: 3px;
2237
2668
  border-bottom-left-radius: 3px;
2238
2669
  }
@@ -2262,11 +2693,10 @@ a.lui-button + a.lui-button {
2262
2693
  }
2263
2694
  }
2264
2695
  .lui-button-group .lui-button {
2265
- padding: 0 0.5rem;
2266
2696
  background-color: #fff;
2267
2697
  border-radius: 0;
2268
- border: 1px solid #00425d;
2269
- color: #00425d;
2698
+ border: 1px solid #004b50;
2699
+ color: #004b50;
2270
2700
  border-left: none;
2271
2701
  width: 100%;
2272
2702
  }
@@ -2275,18 +2705,28 @@ a.lui-button + a.lui-button {
2275
2705
  -moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.4);
2276
2706
  -webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.4);
2277
2707
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.4);
2278
- color: #fff;
2708
+ color: #ffffff;
2279
2709
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
2280
2710
  }
2711
+ .lui-button-group .lui-button.lui-button-active:disabled {
2712
+ background-color: #989189;
2713
+ color: #ffffff;
2714
+ }
2281
2715
  .lui-button-group .lui-button:hover {
2282
2716
  background: #007198;
2283
2717
  cursor: pointer;
2284
- color: #fff;
2718
+ color: #ffffff;
2285
2719
  }
2286
2720
  .lui-button-group .lui-button:focus {
2287
- outline: 2px solid #00425d;
2721
+ outline: 2px solid #004b50;
2288
2722
  position: relative;
2289
2723
  }
2724
+ .lui-button-group .lui-button:disabled {
2725
+ background-color: #eaeaea;
2726
+ border: 1px solid #6b6966;
2727
+ color: #989189;
2728
+ cursor: not-allowed;
2729
+ }
2290
2730
  .lui-button-group--radio {
2291
2731
  margin-top: 1.5rem;
2292
2732
  }
@@ -2318,21 +2758,21 @@ a.lui-button + a.lui-button {
2318
2758
  .lui-button-group--radio input:checked + label {
2319
2759
  background-color: #007198;
2320
2760
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.5);
2321
- color: #fff;
2761
+ color: #ffffff;
2322
2762
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
2323
2763
  }
2324
2764
  .LuiDeprecatedForms .lui-button-group--radio input:checked + label {
2325
- color: #fff;
2765
+ color: #ffffff;
2326
2766
  }
2327
2767
  .lui-button-group--radio input:checked:disabled + label, .lui-button-group--radio input:disabled:checked + label:hover {
2328
2768
  background-color: #989189;
2329
- color: #fff;
2769
+ color: #ffffff;
2330
2770
  }
2331
2771
  .LuiDeprecatedForms .lui-button-group--radio input:checked:disabled + label, .LuiDeprecatedForms .lui-button-group--radio input:disabled:checked + label:hover {
2332
- color: #fff;
2772
+ color: #ffffff;
2333
2773
  }
2334
2774
  .lui-button-group--radio input:focus:not([disabled]) + label {
2335
- color: #fff;
2775
+ color: #ffffff;
2336
2776
  background: #007198;
2337
2777
  cursor: pointer;
2338
2778
  }
@@ -2340,7 +2780,7 @@ a.lui-button + a.lui-button {
2340
2780
  border-color: #989189 !important;
2341
2781
  }
2342
2782
  .lui-button-group--radio input:disabled + label:hover {
2343
- background-color: #fff;
2783
+ background-color: #ffffff;
2344
2784
  cursor: default;
2345
2785
  }
2346
2786
  }
@@ -2363,7 +2803,7 @@ a.lui-button + a.lui-button {
2363
2803
  margin: 0;
2364
2804
  }
2365
2805
  .lui-button-group--radio label:hover {
2366
- color: #fff;
2806
+ color: #ffffff;
2367
2807
  background: #007198;
2368
2808
  cursor: pointer;
2369
2809
  }
@@ -2390,11 +2830,11 @@ a.lui-button + a.lui-button {
2390
2830
  .LuiDeprecatedForms .radio-btn-group-pair input:checked + label {
2391
2831
  background-color: #007198;
2392
2832
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.5);
2393
- color: #fff;
2833
+ color: #ffffff;
2394
2834
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
2395
2835
  }
2396
2836
  .LuiDeprecatedForms .radio-btn-group-pair input:focus + label {
2397
- color: #fff;
2837
+ color: #ffffff;
2398
2838
  background: #007198;
2399
2839
  cursor: pointer;
2400
2840
  }
@@ -2414,7 +2854,7 @@ a.lui-button + a.lui-button {
2414
2854
  margin: 0;
2415
2855
  }
2416
2856
  .LuiDeprecatedForms .radio-btn-group-pair label:hover {
2417
- color: #fff;
2857
+ color: #ffffff;
2418
2858
  background: #007198;
2419
2859
  cursor: pointer;
2420
2860
  }
@@ -2507,7 +2947,7 @@ a.lui-button + a.lui-button {
2507
2947
  }
2508
2948
 
2509
2949
  .linz-button-primary {
2510
- border: 2px solid #023d48;
2950
+ border: 1px solid #023d48;
2511
2951
  background-color: #023d48;
2512
2952
  border-color: #023d48;
2513
2953
  color: #fff;
@@ -2519,7 +2959,7 @@ a.lui-button + a.lui-button {
2519
2959
  }
2520
2960
 
2521
2961
  .linz-button-secondary {
2522
- border: 2px solid #023d48;
2962
+ border: 1px solid #023d48;
2523
2963
  color: #023d48;
2524
2964
  }
2525
2965
  .linz-button-secondary:hover {
@@ -2530,7 +2970,7 @@ a.lui-button + a.lui-button {
2530
2970
  }
2531
2971
 
2532
2972
  .linz-button-tertiary {
2533
- border: 2px solid #e1e44a;
2973
+ border: 1px solid #e1e44a;
2534
2974
  background-color: #e1e44a;
2535
2975
  color: #023d48;
2536
2976
  }
@@ -2559,7 +2999,7 @@ a.lui-button + a.lui-button {
2559
2999
  -moz-appearance: none;
2560
3000
  -o-appearance: none;
2561
3001
  border: 0.13rem solid #007198;
2562
- background-color: #fff;
3002
+ background-color: #ffffff;
2563
3003
  position: relative;
2564
3004
  margin: 0;
2565
3005
  }
@@ -2592,10 +3032,10 @@ a.lui-button + a.lui-button {
2592
3032
  width: 14px;
2593
3033
  height: 14px;
2594
3034
  border-radius: 50%;
2595
- background: #00425d;
3035
+ background: #004b50;
2596
3036
  }
2597
3037
  .LuiDeprecatedForms .lui-radio-container input:checked:disabled:before {
2598
- background: #989189;
3038
+ background: #6b6966;
2599
3039
  }
2600
3040
  .LuiDeprecatedForms .lui-checkbox-container input[type=checkbox] {
2601
3041
  box-sizing: border-box;
@@ -2603,8 +3043,8 @@ a.lui-button + a.lui-button {
2603
3043
  position: relative;
2604
3044
  }
2605
3045
  .LuiDeprecatedForms .lui-checkbox-container input[type=checkbox]:checked {
2606
- border: 0.13rem solid #00425d;
2607
- background-color: #00425d;
3046
+ border: 0.13rem solid #004b50;
3047
+ background-color: #004b50;
2608
3048
  }
2609
3049
  .LuiDeprecatedForms .lui-checkbox-container input[type=checkbox]:checked:before {
2610
3050
  display: block;
@@ -2619,11 +3059,10 @@ a.lui-button + a.lui-button {
2619
3059
  color: #fff;
2620
3060
  font-size: 1.13rem;
2621
3061
  line-height: 1.5rem;
2622
- vertical-align: middle;
2623
3062
  }
2624
3063
  .LuiDeprecatedForms .lui-checkbox-container input[type=checkbox]:checked:disabled {
2625
- background: #989189;
2626
- border-color: #989189;
3064
+ background: #6b6966;
3065
+ border-color: #6b6966;
2627
3066
  }
2628
3067
  .LuiDeprecatedForms .lui-input-error .lui-input-group-wrapper, .LuiDeprecatedForms .lui-input-error.lui-button-group {
2629
3068
  position: relative;
@@ -2651,7 +3090,7 @@ a.lui-button + a.lui-button {
2651
3090
  font-style: normal;
2652
3091
  font-weight: normal;
2653
3092
  font-size: 16px;
2654
- color: #414042;
3093
+ color: #2a292c;
2655
3094
  border: 0.06rem solid #beb9b4;
2656
3095
  border-radius: 3px;
2657
3096
  line-height: 48px;
@@ -2667,7 +3106,7 @@ a.lui-button + a.lui-button {
2667
3106
  font-family: "Open Sans", system-ui, sans-serif;
2668
3107
  font-style: italic;
2669
3108
  font-weight: normal;
2670
- color: #989189;
3109
+ color: #6b6966;
2671
3110
  }
2672
3111
  .LuiDeprecatedForms textarea {
2673
3112
  font-family: "Open Sans", system-ui, sans-serif;
@@ -2769,6 +3208,9 @@ a.lui-button + a.lui-button {
2769
3208
  width: 10px;
2770
3209
  margin: 0 0 0 -10px;
2771
3210
  color: #cc0000;
3211
+ font-family: "Open Sans", system-ui, sans-serif;
3212
+ font-style: normal;
3213
+ font-weight: 600;
2772
3214
  }
2773
3215
  @media screen and (min-width: 768px) {
2774
3216
  .LuiDeprecatedForms .lui-required-input-icon {
@@ -2802,6 +3244,11 @@ a.lui-button + a.lui-button {
2802
3244
  margin-top: 5px;
2803
3245
  }
2804
3246
 
3247
+ fieldset {
3248
+ border: none;
3249
+ padding: 0;
3250
+ }
3251
+
2805
3252
  .lui-icon {
2806
3253
  display: inline-block;
2807
3254
  width: 24px;
@@ -2824,11 +3271,11 @@ a.lui-button + a.lui-button {
2824
3271
  *:not[button] i[class^=material-icons]:hover,
2825
3272
  *:not[button] .lui-link-icon:hover {
2826
3273
  cursor: pointer;
2827
- color: #00425d;
3274
+ color: #004b50;
2828
3275
  }
2829
3276
  *:not[button] i[class^=material-icons]:visited,
2830
3277
  *:not[button] .lui-link-icon:visited {
2831
- color: #4c2c92;
3278
+ color: #00425d;
2832
3279
  }
2833
3280
  *:not[button] .lui-link-icon-disabled i {
2834
3281
  color: #989189;
@@ -2945,102 +3392,198 @@ table .lui-checkbox-container input {
2945
3392
  width: 1.5rem;
2946
3393
  }
2947
3394
 
2948
- .tippy-box[data-theme~=LUI] {
2949
- border: solid 2px #007198;
2950
- border-radius: 5px;
2951
- background: #fff;
2952
- box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
3395
+ .tippy-box {
3396
+ box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25), 0 1px 6px rgba(0, 0, 0, 0.15);
3397
+ padding: 4px 8px;
3398
+ border-radius: 0;
2953
3399
  }
2954
- .tippy-box[data-theme~=LUI] > .tippy-content {
2955
- font-size: 16px;
3400
+ .tippy-box > .tippy-content {
3401
+ font-size: 12px;
2956
3402
  font-family: "Open Sans", system-ui, sans-serif;
2957
3403
  font-style: normal;
2958
3404
  font-weight: normal;
2959
- color: #363636;
2960
- padding: 12px 20px;
2961
- background: #fff;
2962
- }
2963
- .tippy-box[data-theme~=LUI] > .tippy-arrow {
2964
- color: #007198;
2965
- transform-style: preserve-3d;
2966
- }
2967
- .tippy-box[data-theme~=LUI] > .tippy-arrow::before {
2968
- border-left: 12px solid transparent;
2969
- border-right: 12px solid transparent;
2970
- }
2971
- .tippy-box[data-theme~=LUI] > .tippy-arrow::after {
2972
- content: "";
2973
- position: absolute;
2974
- left: 0;
2975
- transform: translateZ(-1px);
2976
- border-left: 12px solid transparent;
2977
- border-right: 12px solid transparent;
2978
- }
2979
- .tippy-box[data-theme~=LUI][data-placement^=top] > .tippy-arrow::before {
2980
- border-top: 21px solid #fff;
2981
- bottom: -19px;
2982
- }
2983
- .tippy-box[data-theme~=LUI][data-placement^=top] > .tippy-arrow::after {
2984
- border-top: 22px solid #007198;
2985
- bottom: -23px;
2986
3405
  }
2987
- .tippy-box[data-theme~=LUI][data-placement^=bottom] > .tippy-arrow::before {
2988
- border-bottom: 21px solid #fff;
2989
- top: -19px;
3406
+
3407
+ .tippy-box[data-theme~=default] {
3408
+ background: #ffffff;
2990
3409
  }
2991
- .tippy-box[data-theme~=LUI][data-placement^=bottom] > .tippy-arrow::after {
2992
- border-bottom: 22px solid #007198;
2993
- top: -23px;
3410
+ .tippy-box[data-theme~=default] > .tippy-content {
3411
+ color: #2a292c;
2994
3412
  }
2995
- .tippy-box[data-theme~=LUI][data-placement^=left] > .tippy-arrow::before {
2996
- border-left: 21px solid #fff;
2997
- left: 12px;
3413
+
3414
+ .tippy-box[data-theme~=info] {
3415
+ background: #00425d;
2998
3416
  }
2999
- .tippy-box[data-theme~=LUI][data-placement^=left] > .tippy-arrow::after {
3000
- border-left: 22px solid #007198;
3001
- left: 16px;
3417
+ .tippy-box[data-theme~=info] > .tippy-content {
3418
+ color: #ffffff;
3002
3419
  }
3003
- .tippy-box[data-theme~=LUI][data-placement^=right] > .tippy-arrow::before {
3004
- border-right: 21px solid #fff;
3005
- left: -30px;
3420
+
3421
+ .tippy-box[data-theme~=error] {
3422
+ background: #cc0000;
3006
3423
  }
3007
- .tippy-box[data-theme~=LUI][data-placement^=right] > .tippy-arrow::after {
3008
- border-right: 22px solid #007198;
3009
- left: -34px;
3424
+ .tippy-box[data-theme~=error] > .tippy-content {
3425
+ color: #ffffff;
3010
3426
  }
3011
3427
 
3012
3428
  /**
3013
3429
  * Here is where we can override the styles of react-menu
3014
3430
  */
3015
- .lui-expand-container {
3016
- display: flex;
3017
- align-items: center;
3018
- }
3019
- .lui-expand-header {
3020
- cursor: pointer;
3021
- user-select: none;
3022
- padding: 0.75rem 0 0.75rem 0;
3023
- display: flex;
3024
- justify-content: space-between;
3025
- }
3026
- .lui-expand-header h2,
3027
- .lui-expand-header h3,
3028
- .lui-expand-header h4,
3029
- .lui-expand-header h5,
3030
- .lui-expand-header h6 {
3431
+ .lui-menu.szh-menu {
3432
+ z-index: 900;
3433
+ color: #2a292c;
3031
3434
  font-family: "Open Sans", system-ui, sans-serif;
3032
3435
  font-style: normal;
3033
- font-weight: 600;
3034
- width: auto;
3035
- font-size: 1.25rem;
3036
- margin: 0;
3436
+ font-weight: 300;
3037
3437
  }
3038
- .lui-expand-header:hover {
3039
- cursor: pointer;
3438
+ .lui-menu.szh-menu div,
3439
+ .lui-menu.szh-menu a[role=menuitem] {
3440
+ text-decoration: none;
3441
+ color: #2a292c;
3442
+ font-family: "Open Sans", system-ui, sans-serif;
3443
+ font-style: normal;
3444
+ font-weight: 300;
3040
3445
  }
3041
- .lui-expand-icon {
3042
- align-self: center;
3043
- color: #007198;
3446
+
3447
+ /**
3448
+ * Here are styles for lui select menu
3449
+ */
3450
+ @media screen and (min-width: 480px) {
3451
+ .lui-select-menu.szh-menu-container {
3452
+ position: absolute;
3453
+ }
3454
+ }
3455
+
3456
+ .lui-select-menu.szh-menu {
3457
+ z-index: 900;
3458
+ width: 92vw;
3459
+ overflow-y: scroll;
3460
+ color: #2a292c;
3461
+ font-family: "Open Sans", system-ui, sans-serif;
3462
+ font-style: normal;
3463
+ font-weight: 300;
3464
+ }
3465
+ @media screen and (min-width: 480px) {
3466
+ .lui-select-menu.szh-menu {
3467
+ overflow: visible;
3468
+ height: auto;
3469
+ width: 240px;
3470
+ }
3471
+ }
3472
+
3473
+ .lui-select-menuItem {
3474
+ padding: 0.5rem 0.75rem 0.5rem 0.5rem;
3475
+ display: flex;
3476
+ line-height: 1;
3477
+ transition: all 0.2s ease-in-out;
3478
+ fill: #6b6966;
3479
+ }
3480
+ .lui-select-menuItem:hover {
3481
+ background-color: #e2f3f7;
3482
+ }
3483
+
3484
+ .lui-select-menuItem--error p {
3485
+ color: #cc0000;
3486
+ }
3487
+ .lui-select-menuItem--error .LuiIcon {
3488
+ fill: #cc0000;
3489
+ }
3490
+
3491
+ .lui-select-menuItemText {
3492
+ font-family: "Open Sans", system-ui, sans-serif;
3493
+ font-style: normal;
3494
+ font-weight: normal;
3495
+ color: #2a292c;
3496
+ margin: 0;
3497
+ padding-left: 2rem;
3498
+ }
3499
+ .lui-select-menuItemText--noPadding {
3500
+ padding-left: 0.25rem;
3501
+ }
3502
+
3503
+ .lui-select-icon + .lui-select-menuItemText {
3504
+ padding-left: 0.5rem;
3505
+ }
3506
+
3507
+ .lui-select-menu-group {
3508
+ height: 32px;
3509
+ color: #6b6966;
3510
+ padding-left: 0.75rem;
3511
+ text-transform: none;
3512
+ font-family: "Open Sans", system-ui, sans-serif;
3513
+ font-style: normal;
3514
+ font-weight: 600;
3515
+ }
3516
+
3517
+ .lui-select-submenu {
3518
+ flex: 1;
3519
+ }
3520
+ .lui-select-submenu div[role=menuitem] {
3521
+ padding: 0.5rem 0.5rem 0.5rem 2.5rem;
3522
+ text-decoration: none;
3523
+ font-family: "Open Sans", system-ui, sans-serif;
3524
+ font-style: normal;
3525
+ font-weight: normal;
3526
+ height: 40px;
3527
+ }
3528
+ .lui-select-submenu .szh-menu__item--hover {
3529
+ background-color: #e2f3f7;
3530
+ }
3531
+
3532
+ .lui-select-submenu-with-icon {
3533
+ flex: 1;
3534
+ }
3535
+ .lui-select-submenu-with-icon div[role=menuitem] {
3536
+ padding-left: 0px;
3537
+ text-decoration: none;
3538
+ font-family: "Open Sans", system-ui, sans-serif;
3539
+ font-style: normal;
3540
+ font-weight: normal;
3541
+ height: 40px;
3542
+ }
3543
+
3544
+ .lui-select-divider {
3545
+ margin: 0.25rem;
3546
+ }
3547
+
3548
+ .lui-menu-sub-header {
3549
+ display: flex;
3550
+ align-items: center;
3551
+ }
3552
+
3553
+ .lui-menu-sub-header-icon {
3554
+ margin: 0.5rem;
3555
+ fill: #6b6966;
3556
+ }
3557
+
3558
+ .lui-expand-container {
3559
+ display: flex;
3560
+ align-items: center;
3561
+ }
3562
+ .lui-expand-header {
3563
+ cursor: pointer;
3564
+ user-select: none;
3565
+ padding: 0.75rem 0 0.75rem 0;
3566
+ display: flex;
3567
+ justify-content: space-between;
3568
+ }
3569
+ .lui-expand-header h2,
3570
+ .lui-expand-header h3,
3571
+ .lui-expand-header h4,
3572
+ .lui-expand-header h5,
3573
+ .lui-expand-header h6 {
3574
+ font-family: "Open Sans", system-ui, sans-serif;
3575
+ font-style: normal;
3576
+ font-weight: 600;
3577
+ width: auto;
3578
+ font-size: 1.25rem;
3579
+ margin: 0;
3580
+ }
3581
+ .lui-expand-header:hover {
3582
+ cursor: pointer;
3583
+ }
3584
+ .lui-expand-icon {
3585
+ align-self: center;
3586
+ color: #007198;
3044
3587
  user-select: none;
3045
3588
  transform: rotate(0deg);
3046
3589
  transition: transform 0.3s cubic-bezier(1, 0, 0, 1);
@@ -3113,7 +3656,7 @@ table .lui-checkbox-container input {
3113
3656
  display: none;
3114
3657
  }
3115
3658
  .lui-footer a:hover {
3116
- color: #fff;
3659
+ color: #ffffff;
3117
3660
  }
3118
3661
  .lui-footer a:visited {
3119
3662
  color: #beb9b4;
@@ -3242,7 +3785,7 @@ table .lui-checkbox-container input {
3242
3785
  white-space: nowrap;
3243
3786
  }
3244
3787
  .lui-header-title h1 {
3245
- color: #fff;
3788
+ color: #ffffff;
3246
3789
  }
3247
3790
  @media only screen {
3248
3791
  .lui-header-title h1 {
@@ -3338,7 +3881,7 @@ table .lui-checkbox-container input {
3338
3881
  position: relative;
3339
3882
  display: flex;
3340
3883
  align-items: center;
3341
- color: #fff;
3884
+ color: #ffffff;
3342
3885
  cursor: default;
3343
3886
  user-select: none;
3344
3887
  }
@@ -3412,21 +3955,6 @@ table .lui-checkbox-container input {
3412
3955
  cursor: pointer;
3413
3956
  }
3414
3957
 
3415
- .lui-menu.rc-menu {
3416
- z-index: 900;
3417
- color: #414042;
3418
- font-family: "Open Sans", system-ui, sans-serif;
3419
- font-style: normal;
3420
- font-weight: 300;
3421
- }
3422
- .lui-menu.rc-menu a[role=menuitem] {
3423
- text-decoration: none;
3424
- color: #414042;
3425
- font-family: "Open Sans", system-ui, sans-serif;
3426
- font-style: normal;
3427
- font-weight: 300;
3428
- }
3429
-
3430
3958
  body.lui-menu-drawer-open {
3431
3959
  overflow-y: hidden;
3432
3960
  }
@@ -3434,7 +3962,7 @@ body.lui-menu-drawer-open {
3434
3962
  .lui-menu-drawer {
3435
3963
  text-align: left;
3436
3964
  background-color: white;
3437
- color: #414042;
3965
+ color: #2a292c;
3438
3966
  height: 100%;
3439
3967
  width: 300px;
3440
3968
  max-width: 100%;
@@ -3495,7 +4023,7 @@ body.lui-menu-drawer-open {
3495
4023
  .lui-menu-dropdown {
3496
4024
  text-align: left;
3497
4025
  background-color: white;
3498
- color: #414042;
4026
+ color: #2a292c;
3499
4027
  position: absolute;
3500
4028
  width: 350px;
3501
4029
  border-radius: 3px;
@@ -3528,7 +4056,7 @@ body.lui-menu-drawer-open {
3528
4056
  font-style: normal;
3529
4057
  font-weight: 600;
3530
4058
  font-size: 16px;
3531
- color: #414042;
4059
+ color: #2a292c;
3532
4060
  margin-top: 0;
3533
4061
  line-height: 32px;
3534
4062
  }
@@ -3539,10 +4067,12 @@ body.lui-menu-drawer-open {
3539
4067
  }
3540
4068
 
3541
4069
  .lui-msg-success {
3542
- border-left: 50px solid #ccc;
3543
- padding: 0.75rem 50px 16px 0.75rem;
4070
+ border-left: 3rem solid #beb9b4;
4071
+ border-radius: 3px;
4072
+ background-clip: padding-box;
4073
+ padding: 0.75rem 3rem 0.75rem 0.75rem;
3544
4074
  margin: 2rem 0;
3545
- color: #55504b;
4075
+ color: #2a292c;
3546
4076
  background: #eaeaea;
3547
4077
  position: relative;
3548
4078
  border-color: #0aa245;
@@ -3559,7 +4089,7 @@ body.lui-menu-drawer-open {
3559
4089
  font-family: "Open Sans", system-ui, sans-serif;
3560
4090
  font-style: normal;
3561
4091
  font-weight: 600;
3562
- color: #55504b;
4092
+ color: #2a292c;
3563
4093
  margin: 0;
3564
4094
  }
3565
4095
  .lui-msg-success h2 + p {
@@ -3567,22 +4097,24 @@ body.lui-menu-drawer-open {
3567
4097
  }
3568
4098
  .lui-msg-success button {
3569
4099
  position: absolute;
3570
- top: 14px;
3571
- right: 13px;
4100
+ top: 0.75rem;
4101
+ right: 0.75rem;
3572
4102
  background: none;
3573
4103
  padding: 0;
3574
4104
  border: none;
3575
- color: #55504b;
4105
+ color: #007198;
3576
4106
  }
3577
4107
  .lui-msg-success button:hover {
3578
4108
  cursor: pointer;
3579
4109
  }
3580
4110
 
3581
4111
  .lui-msg-info {
3582
- border-left: 50px solid #ccc;
3583
- padding: 0.75rem 50px 16px 0.75rem;
4112
+ border-left: 3rem solid #beb9b4;
4113
+ border-radius: 3px;
4114
+ background-clip: padding-box;
4115
+ padding: 0.75rem 3rem 0.75rem 0.75rem;
3584
4116
  margin: 2rem 0;
3585
- color: #55504b;
4117
+ color: #2a292c;
3586
4118
  background: #eaeaea;
3587
4119
  position: relative;
3588
4120
  background: #d8e5f9;
@@ -3599,7 +4131,7 @@ body.lui-menu-drawer-open {
3599
4131
  font-family: "Open Sans", system-ui, sans-serif;
3600
4132
  font-style: normal;
3601
4133
  font-weight: 600;
3602
- color: #55504b;
4134
+ color: #2a292c;
3603
4135
  margin: 0;
3604
4136
  }
3605
4137
  .lui-msg-info h2 + p {
@@ -3607,22 +4139,24 @@ body.lui-menu-drawer-open {
3607
4139
  }
3608
4140
  .lui-msg-info button {
3609
4141
  position: absolute;
3610
- top: 14px;
3611
- right: 13px;
4142
+ top: 0.75rem;
4143
+ right: 0.75rem;
3612
4144
  background: none;
3613
4145
  padding: 0;
3614
4146
  border: none;
3615
- color: #55504b;
4147
+ color: #007198;
3616
4148
  }
3617
4149
  .lui-msg-info button:hover {
3618
4150
  cursor: pointer;
3619
4151
  }
3620
4152
 
3621
4153
  .lui-msg-warning {
3622
- border-left: 50px solid #ccc;
3623
- padding: 0.75rem 50px 16px 0.75rem;
4154
+ border-left: 3rem solid #beb9b4;
4155
+ border-radius: 3px;
4156
+ background-clip: padding-box;
4157
+ padding: 0.75rem 3rem 0.75rem 0.75rem;
3624
4158
  margin: 2rem 0;
3625
- color: #55504b;
4159
+ color: #2a292c;
3626
4160
  background: #eaeaea;
3627
4161
  position: relative;
3628
4162
  background: #fbdfd2;
@@ -3639,7 +4173,7 @@ body.lui-menu-drawer-open {
3639
4173
  font-family: "Open Sans", system-ui, sans-serif;
3640
4174
  font-style: normal;
3641
4175
  font-weight: 600;
3642
- color: #55504b;
4176
+ color: #2a292c;
3643
4177
  margin: 0;
3644
4178
  }
3645
4179
  .lui-msg-warning h2 + p {
@@ -3647,22 +4181,24 @@ body.lui-menu-drawer-open {
3647
4181
  }
3648
4182
  .lui-msg-warning button {
3649
4183
  position: absolute;
3650
- top: 14px;
3651
- right: 13px;
4184
+ top: 0.75rem;
4185
+ right: 0.75rem;
3652
4186
  background: none;
3653
4187
  padding: 0;
3654
4188
  border: none;
3655
- color: #55504b;
4189
+ color: #007198;
3656
4190
  }
3657
4191
  .lui-msg-warning button:hover {
3658
4192
  cursor: pointer;
3659
4193
  }
3660
4194
 
3661
4195
  .lui-msg-error {
3662
- border-left: 50px solid #ccc;
3663
- padding: 0.75rem 50px 16px 0.75rem;
4196
+ border-left: 3rem solid #beb9b4;
4197
+ border-radius: 3px;
4198
+ background-clip: padding-box;
4199
+ padding: 0.75rem 3rem 0.75rem 0.75rem;
3664
4200
  margin: 2rem 0;
3665
- color: #55504b;
4201
+ color: #2a292c;
3666
4202
  background: #eaeaea;
3667
4203
  position: relative;
3668
4204
  border-color: #cc0000;
@@ -3679,7 +4215,7 @@ body.lui-menu-drawer-open {
3679
4215
  font-family: "Open Sans", system-ui, sans-serif;
3680
4216
  font-style: normal;
3681
4217
  font-weight: 600;
3682
- color: #55504b;
4218
+ color: #2a292c;
3683
4219
  margin: 0;
3684
4220
  }
3685
4221
  .lui-msg-error h2 + p {
@@ -3687,12 +4223,12 @@ body.lui-menu-drawer-open {
3687
4223
  }
3688
4224
  .lui-msg-error button {
3689
4225
  position: absolute;
3690
- top: 14px;
3691
- right: 13px;
4226
+ top: 0.75rem;
4227
+ right: 0.75rem;
3692
4228
  background: none;
3693
4229
  padding: 0;
3694
4230
  border: none;
3695
- color: #55504b;
4231
+ color: #007198;
3696
4232
  }
3697
4233
  .lui-msg-error button:hover {
3698
4234
  cursor: pointer;
@@ -3705,7 +4241,7 @@ body.lui-menu-drawer-open {
3705
4241
 
3706
4242
  .lui-msg-toast {
3707
4243
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
3708
- background: #fff;
4244
+ background: #ffffff;
3709
4245
  display: block;
3710
4246
  box-sizing: border-box;
3711
4247
  position: fixed;
@@ -3723,17 +4259,19 @@ body.lui-menu-drawer-open {
3723
4259
 
3724
4260
  .lui-msg-dynamic-banner {
3725
4261
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
3726
- background: #fff;
3727
- min-height: 55px;
4262
+ background: #ffffff;
4263
+ min-height: 3rem;
4264
+ }
4265
+ .lui-msg-dynamic-banner + .lui-msg-dynamic-banner {
4266
+ margin-top: 0;
3728
4267
  }
3729
4268
 
3730
4269
  .lui-msg-status-icon {
3731
- content: "";
4270
+ fill: #ffffff;
3732
4271
  position: absolute;
3733
- top: 12px;
3734
- left: -41.5px;
3735
- font-size: 2rem !important;
3736
- color: white;
4272
+ top: 0.5rem;
4273
+ left: -40px;
4274
+ color: #ffffff;
3737
4275
  }
3738
4276
 
3739
4277
  .lui-msg-banner-container {
@@ -3751,6 +4289,9 @@ body.lui-menu-drawer-open {
3751
4289
  padding: 0.75rem;
3752
4290
  }
3753
4291
  }
4292
+ .lui-msg-banner-container + .lui-msg-banner-container {
4293
+ padding-top: 0 !important;
4294
+ }
3754
4295
 
3755
4296
  .lui-msg-banner-container {
3756
4297
  text-align: center;
@@ -3833,12 +4374,19 @@ body.lui-menu-drawer-open {
3833
4374
  opacity: 0;
3834
4375
  }
3835
4376
  }
4377
+ .LuiStaticMsg-close {
4378
+ fill: #007198;
4379
+ line-height: 1;
4380
+ }
4381
+
3836
4382
  .lui-modal {
3837
4383
  padding: 2rem;
3838
4384
  border-left: 0px solid transparent;
4385
+ border-radius: 3px;
4386
+ background-clip: padding-box;
3839
4387
  margin: 2rem 0;
3840
- color: #55504b;
3841
- background: #fff;
4388
+ color: #2a292c;
4389
+ background: #ffffff;
3842
4390
  position: relative;
3843
4391
  max-width: 600px;
3844
4392
  }
@@ -3847,7 +4395,7 @@ body.lui-menu-drawer-open {
3847
4395
  font-family: "Open Sans", system-ui, sans-serif;
3848
4396
  font-style: normal;
3849
4397
  font-weight: 600;
3850
- color: #55504b;
4398
+ color: #2a292c;
3851
4399
  margin: 0;
3852
4400
  }
3853
4401
  .lui-modal h2 + p {
@@ -3855,22 +4403,23 @@ body.lui-menu-drawer-open {
3855
4403
  }
3856
4404
  .lui-modal-success {
3857
4405
  border-color: #0aa245;
3858
- border-width: 50px;
4406
+ border-width: 3rem;
3859
4407
  }
3860
4408
  .lui-modal-info {
3861
4409
  border-color: #3a7cdf;
3862
- border-width: 50px;
4410
+ border-width: 3rem;
3863
4411
  }
3864
4412
  .lui-modal-warning {
3865
4413
  border-color: #ea6a2e;
3866
- border-width: 50px;
4414
+ border-width: 3rem;
3867
4415
  }
3868
4416
  .lui-modal-error {
3869
4417
  border-color: #cc0000;
3870
- border-width: 50px;
4418
+ border-width: 3rem;
3871
4419
  }
3872
4420
  .lui-modal .modal-btn-row {
3873
4421
  margin-top: 2rem;
4422
+ display: flex;
3874
4423
  }
3875
4424
  .lui-modal-no-padding {
3876
4425
  padding: 0;
@@ -3878,7 +4427,7 @@ body.lui-menu-drawer-open {
3878
4427
  .lui-modal-header {
3879
4428
  background: linear-gradient(70deg, #00425d 12%, #007198 100%);
3880
4429
  color: #fff;
3881
- color: #fff;
4430
+ color: #ffffff;
3882
4431
  }
3883
4432
  .lui-modal-header:after {
3884
4433
  width: 100%;
@@ -3939,7 +4488,7 @@ body.lui-menu-drawer-open {
3939
4488
  float: right;
3940
4489
  }
3941
4490
  .lui-modal-header-btn-size {
3942
- font-size: 32px;
4491
+ font-size: 2rem;
3943
4492
  }
3944
4493
  .lui-modal-container {
3945
4494
  margin: 2rem;
@@ -3952,7 +4501,7 @@ body.lui-menu-drawer-open {
3952
4501
  }
3953
4502
 
3954
4503
  .lui-modal-header-title h1 {
3955
- color: #fff;
4504
+ color: #ffffff;
3956
4505
  }
3957
4506
 
3958
4507
  .MuiDrawer-paper {
@@ -3966,14 +4515,12 @@ body.lui-menu-drawer-open {
3966
4515
 
3967
4516
  .lui-large-feature-notification {
3968
4517
  width: 100%;
3969
- display: block;
3970
- background-color: #fff;
4518
+ background: #00a1a1;
4519
+ background: linear-gradient(62deg, #00a1a1 0%, #bfedf6 100%);
3971
4520
  position: relative;
3972
4521
  }
3973
4522
  @media screen and (min-width: 480px) {
3974
4523
  .lui-large-feature-notification {
3975
- padding-bottom: 2rem;
3976
- min-width: 700px;
3977
4524
  max-width: 800px;
3978
4525
  min-height: 300px;
3979
4526
  }
@@ -3983,36 +4530,52 @@ body.lui-menu-drawer-open {
3983
4530
  max-width: 900px;
3984
4531
  }
3985
4532
  }
3986
- .lui-large-feature-notification button {
3987
- color: #007198;
3988
- }
3989
4533
 
3990
- .lui-feature-img {
3991
- background: #00a1a1;
3992
- background: linear-gradient(62deg, #00a1a1 0%, #bfedf6 100%);
3993
- min-height: 100px;
3994
- padding: 2rem 2rem 0 2rem;
3995
- border-bottom: 1px solid #007198;
4534
+ .lui-feature-header {
4535
+ display: flex;
4536
+ justify-content: space-between;
4537
+ margin: 1rem 1rem 0 1rem;
3996
4538
  }
3997
- .lui-feature-img h1 {
4539
+ .lui-feature-header h1 {
3998
4540
  color: #fff;
3999
- margin: 0 0 2rem 0;
4541
+ margin: 0;
4000
4542
  text-shadow: 1.5px 1.5px 1px #004b50;
4543
+ font-size: 1.5rem;
4544
+ line-height: 1.5rem;
4001
4545
  }
4002
- @media only screen and (max-width: sm) {
4003
- .lui-feature-img h1 {
4546
+ @media screen and (min-width: 768px) {
4547
+ .lui-feature-header h1 {
4004
4548
  text-shadow: 1px 1px 1px #004b50;
4005
- font-size: 2.06rem;
4549
+ font-size: 2rem;
4550
+ line-height: 2rem;
4006
4551
  }
4007
4552
  }
4553
+ .lui-feature-header button {
4554
+ color: #007198;
4555
+ background-color: transparent;
4556
+ padding: 0;
4557
+ }
4558
+
4559
+ .lui-feature-img {
4560
+ min-height: 100px;
4561
+ padding: 1rem 1rem 0 1rem;
4562
+ border-bottom: 1px solid #007198;
4563
+ max-height: 54vh;
4564
+ overflow: auto;
4565
+ }
4008
4566
  .lui-feature-img img {
4009
4567
  width: 100%;
4010
4568
  height: auto;
4011
4569
  display: block;
4012
4570
  }
4013
4571
  .lui-feature-text {
4014
- padding-left: 1.5rem;
4015
- padding-right: 1.5rem;
4572
+ padding: 1rem 1rem 1.5rem 1rem;
4573
+ background-color: #ffffff;
4574
+ max-height: 36vh;
4575
+ overflow: auto;
4576
+ }
4577
+ .lui-feature-text h2:first-of-type {
4578
+ margin-top: 0;
4016
4579
  }
4017
4580
 
4018
4581
  .lui-scrim,
@@ -4036,47 +4599,21 @@ body.lui-menu-drawer-open {
4036
4599
  background: rgba(255, 255, 255, 0.75);
4037
4600
  }
4038
4601
 
4039
- .lui-tabs-style-underline .lui-tab-group .lui-tab {
4602
+ .LuiError {
4040
4603
  font-family: "Open Sans", system-ui, sans-serif;
4041
4604
  font-style: normal;
4042
4605
  font-weight: 600;
4043
- background-color: transparent;
4044
- border: none;
4045
- border-radius: 0;
4046
- font-size: 1.125rem;
4047
- color: #414042;
4048
- }
4049
- .lui-tabs-style-underline .lui-tab-group .lui-tab:focus {
4050
- outline: none;
4051
- background-color: rgba(0, 165, 153, 0.2);
4052
- }
4053
- .lui-tabs-style-underline .lui-tab-group .lui-tab-active, .lui-tabs-style-underline .lui-tab-group .lui-tab-active:focus {
4054
- position: relative;
4055
- background: none;
4056
- outline: none;
4057
- }
4058
- .lui-tabs-style-underline .lui-tab-group .lui-tab-active:after, .lui-tabs-style-underline .lui-tab-group .lui-tab-active:focus:after {
4059
- content: "";
4060
- display: block;
4061
- height: 3px;
4062
- width: 100%;
4063
- padding: 0 32px;
4064
- left: 0;
4065
- right: 0;
4066
- box-sizing: border-box;
4067
- background: linear-gradient(270deg, #73cdc8 1%, #00a599 100%);
4068
- border-radius: 1.5px;
4069
- position: absolute;
4070
- }
4071
- .lui-tabs .lui-tab-group-justified {
4072
- display: flex;
4073
- justify-content: space-between;
4606
+ margin-bottom: 0.5rem;
4607
+ font-size: 0.875rem;
4608
+ line-height: 1.5rem;
4609
+ color: #2a292c;
4074
4610
  }
4075
- .lui-tabs .lui-tab-panel {
4076
- display: none;
4611
+ .LuiError-errorIcon {
4612
+ vertical-align: middle;
4613
+ display: inline-block;
4077
4614
  }
4078
- .lui-tabs .lui-tab-panel.lui-tab-panel-active {
4079
- display: initial;
4615
+ .LuiError-errorText {
4616
+ margin-left: 0.5rem;
4080
4617
  }
4081
4618
 
4082
4619
  .LuiErrorPage {
@@ -4238,79 +4775,1478 @@ body.lui-menu-drawer-open {
4238
4775
  margin-top: 0.5rem;
4239
4776
  }
4240
4777
 
4241
- .LuiFileInputBox-upload {
4242
- outline: 2px dashed #eaeaea;
4243
- color: dimgray;
4778
+ .LuiCheckboxInput {
4779
+ margin-bottom: 24px;
4780
+ box-sizing: border-box;
4781
+ position: relative;
4782
+ }
4783
+
4784
+ .LuiCheckboxInput-group {
4785
+ display: block;
4786
+ user-select: none;
4244
4787
  cursor: pointer;
4788
+ }
4789
+
4790
+ .LuiCheckboxInput-label {
4245
4791
  position: relative;
4246
4792
  display: flex;
4247
- flex-direction: column;
4248
- justify-content: center;
4249
- align-items: center;
4793
+ flex-direction: row;
4794
+ align-items: flex-start;
4795
+ padding: 2px;
4796
+ margin-bottom: 0;
4250
4797
  }
4251
- .LuiFileInputBox-upload:hover {
4252
- background: #eef1f5;
4798
+ .LuiCheckboxInput--isDisabled .LuiCheckboxInput-label {
4799
+ cursor: not-allowed;
4800
+ color: #989189;
4253
4801
  }
4254
4802
 
4255
- .LuiFileInputBox-upload-input {
4803
+ .LuiCheckboxInput-input {
4804
+ width: 0.1px;
4805
+ height: 0.1px;
4256
4806
  opacity: 0;
4257
- cursor: pointer;
4807
+ overflow: hidden;
4258
4808
  position: absolute;
4259
- top: 0;
4260
- left: 0;
4261
- width: 100%;
4262
- height: 100%;
4263
- display: block;
4809
+ z-index: -1;
4264
4810
  }
4265
4811
 
4266
- .LuiFileInputBox-upload-container {
4267
- text-align: center;
4268
- padding: 24px 20px;
4812
+ .LuiCheckboxInput-error {
4813
+ margin-top: 2px;
4814
+ text-align: left;
4269
4815
  }
4270
4816
 
4271
- .LuiFileInputBox-upload-error {
4272
- outline: 2px dashed #cc0000;
4817
+ .LuiCheckboxInput-errorText {
4818
+ color: #cc0000;
4273
4819
  }
4274
4820
 
4275
- .LuiFileInputBox-upload-icon-success {
4276
- width: 120px;
4277
- fill: #0aa245;
4278
- margin-left: auto;
4279
- margin-right: auto;
4821
+ .LuiCheckboxInput-errorIcon {
4822
+ margin-left: 2rem;
4280
4823
  }
4281
4824
 
4282
- .LuiFileInputBox-upload-icon-upload {
4283
- width: 120px;
4284
- fill: #007198;
4285
- margin-left: auto;
4286
- margin-right: auto;
4825
+ .LuiCheckboxInput-mandatory {
4826
+ position: absolute;
4827
+ left: -12px;
4828
+ top: -4px;
4829
+ font-family: "Open Sans", system-ui, sans-serif;
4830
+ font-style: normal;
4831
+ font-weight: 600;
4832
+ font-size: 0.875rem;
4833
+ color: #cc0000;
4287
4834
  }
4288
4835
 
4289
- .LuiFileInputBox-upload-icon-error {
4836
+ .LuiCheckboxInput-labelCheck {
4837
+ fill: rgba(255, 255, 255, 0);
4838
+ background-color: #ffffff;
4839
+ border: 2px solid #007198;
4840
+ border-radius: 3px;
4841
+ transition: background-color 0.3s ease-in-out;
4842
+ order: -1;
4843
+ margin-right: 0.5rem;
4844
+ }
4845
+ .LuiCheckboxInput-labelCheck svg {
4846
+ position: relative;
4847
+ top: -2px;
4848
+ left: -2px;
4849
+ }
4850
+ .LuiCheckboxInput-input:checked .LuiCheckboxInput-labelCheck, .LuiCheckboxInput--isChecked .LuiCheckboxInput-labelCheck {
4851
+ background-color: #007198;
4852
+ fill: white;
4853
+ }
4854
+
4855
+ .LuiCheckboxInput--hasError .LuiCheckboxInput-labelCheck {
4856
+ border-color: #cc0000;
4857
+ }
4858
+
4859
+ .LuiCheckboxInput--isChecked.LuiCheckboxInput--hasError .LuiCheckboxInput-labelCheck {
4860
+ background-color: #cc0000;
4861
+ border-color: #cc0000;
4862
+ }
4863
+
4864
+ .LuiCheckboxInput-input:disabled + .LuiCheckboxInput-label .LuiCheckboxInput-labelCheck,
4865
+ .LuiCheckboxInput--isDisabled .LuiCheckboxInput-labelCheck {
4866
+ border-color: #989189;
4867
+ background-color: #eaeaea;
4868
+ }
4869
+
4870
+ .LuiCheckboxInput-input:checked:disabled + .LuiCheckboxInput-label .LuiCheckboxInput-labelCheck,
4871
+ .LuiCheckboxInput--isChecked.LuiCheckboxInput--isDisabled .LuiCheckboxInput-labelCheck {
4872
+ background-color: #989189;
4873
+ border-color: #989189;
4874
+ }
4875
+
4876
+ .LuiCheckboxInput--inline {
4877
+ display: inline-block;
4878
+ }
4879
+ .LuiCheckboxInput--inline:not(:last-child) {
4880
+ margin-bottom: 0;
4881
+ margin-right: 24px;
4882
+ }
4883
+
4884
+ .LuiRadioInput-fieldset {
4885
+ border: none;
4886
+ padding: 0;
4887
+ }
4888
+
4889
+ .LuiRadioInput-input {
4890
+ position: absolute !important;
4891
+ width: 1px !important;
4892
+ height: 1px !important;
4893
+ margin: 0 !important;
4894
+ padding: 0 !important;
4895
+ overflow: hidden !important;
4896
+ clip: rect(0 0 0 0) !important;
4897
+ -webkit-clip-path: inset(50%) !important;
4898
+ clip-path: inset(50%) !important;
4899
+ border: 0 !important;
4900
+ white-space: nowrap !important;
4901
+ }
4902
+
4903
+ .LuiRadioInput-legend {
4904
+ font-family: "Open Sans", system-ui, sans-serif;
4905
+ font-style: normal;
4906
+ font-weight: 600;
4907
+ }
4908
+
4909
+ .LuiRadioInput-label {
4910
+ position: relative;
4911
+ display: flex;
4912
+ justify-content: flex-start;
4913
+ align-items: flex-start;
4914
+ cursor: pointer;
4915
+ padding: 0.5rem 0 0.5rem 2rem;
4916
+ }
4917
+ .LuiRadioInput-label:before {
4918
+ content: "";
4919
+ height: 1.5rem;
4920
+ min-width: 1.5rem;
4921
+ width: 1.5rem;
4922
+ border: 2px solid #007198;
4923
+ border-radius: 50%;
4924
+ background-color: transparent;
4925
+ position: absolute;
4926
+ left: 0;
4927
+ top: 8px;
4928
+ margin-right: 0.75rem;
4929
+ }
4930
+ .LuiRadioInput-label:after {
4931
+ content: "";
4932
+ position: absolute;
4933
+ left: 5px;
4934
+ top: 13px;
4935
+ background-color: #007198;
4936
+ height: 14px;
4937
+ min-width: 14px;
4938
+ width: 14px;
4939
+ border-radius: 50%;
4940
+ opacity: 0;
4941
+ transition: opacity 0.3s ease-in-out;
4942
+ }
4943
+ .LuiRadioInput-label--isSelected:after {
4944
+ opacity: 1;
4945
+ }
4946
+ .LuiRadioInput-label--isDisabled {
4947
+ color: #989189;
4948
+ cursor: not-allowed;
4949
+ }
4950
+ .LuiRadioInput-label--isDisabled:before {
4951
+ background-color: #eaeaea;
4952
+ border-color: #989189;
4953
+ }
4954
+ .LuiRadioInput-label--isDisabled:after {
4955
+ background-color: #6b6966;
4956
+ }
4957
+
4958
+ .LuiRadioInput--hasError .LuiRadioInput-label:before {
4959
+ border-color: #cc0000;
4960
+ }
4961
+
4962
+ .LuiRadioInput-errorMsg {
4963
+ display: flex;
4964
+ margin: 0.5rem 0 1rem 1.875rem;
4965
+ font-family: "Open Sans", system-ui, sans-serif;
4966
+ font-style: normal;
4967
+ font-weight: 600;
4968
+ }
4969
+ .LuiRadioInput-errorMsg .LuiIcon--error {
4970
+ margin-right: 0.5rem;
4971
+ }
4972
+ .LuiRadioInput-errorMsg p {
4973
+ margin: 0;
4974
+ font-family: "Open Sans", system-ui, sans-serif;
4975
+ font-style: normal;
4976
+ font-weight: 600;
4977
+ color: #cc0000;
4978
+ font-size: 0.875rem;
4979
+ line-height: 1.5rem;
4980
+ }
4981
+
4982
+ .LuiRadioInput-warningMsg {
4983
+ display: flex;
4984
+ margin: 0.5rem 0 1rem 1.875rem;
4985
+ }
4986
+ .LuiRadioInput-warningMsg .LuiIcon--warning {
4987
+ margin-right: 0.5rem;
4988
+ }
4989
+ .LuiRadioInput-warningMsg p {
4990
+ margin: 0;
4991
+ font-family: "Open Sans", system-ui, sans-serif;
4992
+ font-style: normal;
4993
+ font-weight: 600;
4994
+ font-size: 0.875rem;
4995
+ line-height: 1.5rem;
4996
+ }
4997
+
4998
+ .LuiRadioInput-warningOnIndividualMsg {
4999
+ display: flex;
5000
+ margin: 0 0 1rem 1.875rem;
5001
+ }
5002
+ .LuiRadioInput-warningOnIndividualMsg .LuiIcon--warning {
5003
+ margin-right: 0.5rem;
5004
+ }
5005
+ .LuiRadioInput-warningOnIndividualMsg p {
5006
+ font-family: "Open Sans", system-ui, sans-serif;
5007
+ font-style: normal;
5008
+ font-weight: 600;
5009
+ font-size: 0.875rem;
5010
+ line-height: 1.5rem;
5011
+ margin: 0;
5012
+ }
5013
+
5014
+ .LuiRadioInput--hasWarning .LuiRadioInput-label:before {
5015
+ border-color: #ea6a2e;
5016
+ }
5017
+
5018
+ .LuiRadioInput-label--hasWarning:before {
5019
+ border-color: #ea6a2e;
5020
+ }
5021
+ .LuiRadioInput-label--hasWarning:after {
5022
+ background-color: #ea6a2e;
5023
+ }
5024
+
5025
+ .LuiSelect-label {
5026
+ position: relative;
5027
+ }
5028
+
5029
+ .LuiSelect-label-text {
5030
+ font-family: "Open Sans", system-ui, sans-serif;
5031
+ font-style: normal;
5032
+ font-weight: 600;
5033
+ margin-bottom: 0.5rem;
5034
+ font-size: 0.875rem;
5035
+ line-height: 1.5rem;
5036
+ color: #2a292c;
5037
+ }
5038
+
5039
+ .LuiSelect-select {
5040
+ font-family: "Open Sans", system-ui, sans-serif;
5041
+ font-style: normal;
5042
+ font-weight: normal;
5043
+ margin-bottom: 0;
5044
+ border: 1px solid #beb9b4;
5045
+ border-radius: 3px;
5046
+ display: block;
5047
+ height: 3rem;
5048
+ color: #2a292c;
5049
+ caret-color: #2a292c;
5050
+ padding-right: 2rem;
5051
+ padding-left: 1rem;
5052
+ width: 100%;
5053
+ transition: all 0.15 ease-in-out;
5054
+ appearance: none;
5055
+ }
5056
+ .LuiSelect-select:hover, .LuiSelect-select:active {
5057
+ border-color: #00425d;
5058
+ cursor: pointer;
5059
+ }
5060
+ .LuiSelect-select:focus {
5061
+ outline: none;
5062
+ border-color: #00425d;
5063
+ }
5064
+ .hasError .LuiSelect-select {
5065
+ border-color: #cc0000;
5066
+ }
5067
+ .isDisabled .LuiSelect-select {
5068
+ border-color: #beb9b4;
5069
+ background-color: #eaeaea;
5070
+ color: #2a292c;
5071
+ cursor: not-allowed;
5072
+ }
5073
+ .hasPlaceholder .LuiSelect-select {
5074
+ color: #b2b2b2;
5075
+ }
5076
+ .hasValue .LuiSelect-select {
5077
+ color: #2a292c;
5078
+ }
5079
+
5080
+ .LuiSelect-wrapper {
5081
+ position: relative;
5082
+ }
5083
+ .hasError .LuiSelect-wrapper:before {
5084
+ content: "";
5085
+ display: block;
5086
+ position: absolute;
5087
+ width: 0.75rem;
5088
+ top: 0;
5089
+ bottom: 0;
5090
+ left: -6px;
5091
+ background-color: #cc0000;
5092
+ border-radius: 3px 0 0 3px;
5093
+ z-index: -1;
5094
+ }
5095
+
5096
+ .LuiSelect-chevron-icon {
5097
+ position: absolute;
5098
+ right: 7px;
5099
+ top: 50%;
5100
+ transform: translateY(-50%);
5101
+ pointer-events: none;
5102
+ }
5103
+
5104
+ .LuiSelect-error {
5105
+ position: relative;
5106
+ display: flex;
5107
+ font-family: "Open Sans", system-ui, sans-serif;
5108
+ font-style: normal;
5109
+ font-weight: 600;
5110
+ color: #cc0000;
5111
+ text-align: left;
5112
+ padding-left: 1.5rem;
5113
+ font-size: 0.875rem;
5114
+ line-height: 1.25rem;
5115
+ margin-top: 0.25rem;
5116
+ }
5117
+
5118
+ .LuiSelect-error-icon {
5119
+ position: absolute;
5120
+ left: 0;
5121
+ top: 2px;
5122
+ }
5123
+
5124
+ .LuiSelect-mandatory {
5125
+ position: absolute;
5126
+ left: -12px;
5127
+ top: 0;
5128
+ font-family: "Open Sans", system-ui, sans-serif;
5129
+ font-style: normal;
5130
+ font-weight: 600;
5131
+ font-size: 0.875rem;
5132
+ color: #cc0000;
5133
+ }
5134
+
5135
+ .LuiTextAreaInput {
5136
+ width: 100%;
5137
+ position: relative;
5138
+ }
5139
+ .LuiTextAreaInput textarea {
5140
+ font-family: "Open Sans", system-ui, sans-serif;
5141
+ font-style: normal;
5142
+ font-weight: normal;
5143
+ border: solid 1px #beb9b4;
5144
+ border-radius: 3px;
5145
+ background: #ffffff;
5146
+ padding-top: 0.75rem;
5147
+ padding-right: 2rem;
5148
+ padding-bottom: 0.75rem;
5149
+ padding-left: 1rem;
5150
+ box-sizing: border-box;
5151
+ width: 100%;
5152
+ resize: vertical;
5153
+ min-height: 100px;
5154
+ position: relative;
5155
+ }
5156
+ .LuiTextAreaInput textarea {
5157
+ font-size: 14px;
5158
+ }
5159
+ @media screen and (min-width: 1px) {
5160
+ .LuiTextAreaInput textarea {
5161
+ font-size: calc(
5162
+ 14px + 2 *
5163
+ (
5164
+ (100vw - 1px) / 1279
5165
+ )
5166
+ );
5167
+ }
5168
+ }
5169
+ @media screen and (min-width: 1280px) {
5170
+ .LuiTextAreaInput textarea {
5171
+ font-size: 16px;
5172
+ }
5173
+ }
5174
+ .LuiTextAreaInput textarea::placeholder {
5175
+ font-weight: normal;
5176
+ font-style: italic;
5177
+ color: #6b6966;
5178
+ opacity: 1;
5179
+ }
5180
+ .isDisabled .LuiTextAreaInput textarea::placeholder {
5181
+ color: #989189;
5182
+ }
5183
+ .LuiTextAreaInput textarea:focus {
5184
+ outline: none;
5185
+ border-color: #00425d;
5186
+ }
5187
+ .LuiTextAreaInput label,
5188
+ .LuiTextAreaInput textarea {
5189
+ display: block;
5190
+ }
5191
+ .LuiTextAreaInput.hasError textarea {
5192
+ border: 1px solid #cc0000;
5193
+ }
5194
+ .LuiTextAreaInput.hasError .LuiTextAreaInput-wrapper {
5195
+ position: relative;
5196
+ }
5197
+ .LuiTextAreaInput.hasError .LuiTextAreaInput-wrapper:before {
5198
+ content: "";
5199
+ display: block;
5200
+ position: absolute;
5201
+ width: 0.75rem;
5202
+ top: 0;
5203
+ bottom: 0;
5204
+ left: -6px;
5205
+ background-color: #cc0000;
5206
+ border-radius: 3px 0 0 3px;
5207
+ }
5208
+ .LuiTextAreaInput.isDisabled textarea {
5209
+ border-color: #beb9b4;
5210
+ background-color: #eaeaea;
5211
+ cursor: not-allowed;
5212
+ }
5213
+
5214
+ .LuiTextAreaInput-label {
5215
+ font-family: "Open Sans", system-ui, sans-serif;
5216
+ font-style: normal;
5217
+ font-weight: 600;
5218
+ margin-bottom: 0.5rem;
5219
+ font-size: 0.875rem;
5220
+ line-height: 1.5rem;
5221
+ color: #2a292c;
5222
+ position: relative;
5223
+ }
5224
+
5225
+ .LuiTextAreaInput-error {
5226
+ position: relative;
5227
+ display: flex;
5228
+ color: #cc0000;
5229
+ font-family: "Open Sans", system-ui, sans-serif;
5230
+ font-style: normal;
5231
+ font-weight: 600;
5232
+ text-align: left;
5233
+ padding-left: 1.5rem;
5234
+ font-size: 0.875rem;
5235
+ line-height: 1.25rem;
5236
+ margin-top: 0.25rem;
5237
+ }
5238
+
5239
+ .LuiTextAreaInput-error-icon {
5240
+ position: absolute;
5241
+ left: 0;
5242
+ top: 2px;
5243
+ }
5244
+
5245
+ .LuiTextAreaInput-mandatory {
5246
+ position: absolute;
5247
+ left: -12px;
5248
+ top: 0px;
5249
+ font-family: "Open Sans", system-ui, sans-serif;
5250
+ font-style: normal;
5251
+ font-weight: 600;
5252
+ font-size: 0.875rem;
5253
+ color: #cc0000;
5254
+ }
5255
+
5256
+ .LuiTextInput {
5257
+ margin-bottom: 24px;
5258
+ }
5259
+
5260
+ .LuiTextInput-label {
5261
+ margin-bottom: 0.5rem;
5262
+ line-height: 1.5rem;
5263
+ position: relative;
5264
+ }
5265
+
5266
+ .LuiTextInput-label-text {
5267
+ font-family: "Open Sans", system-ui, sans-serif;
5268
+ font-style: normal;
5269
+ font-weight: 600;
5270
+ margin-bottom: 0.5rem;
5271
+ font-size: 0.875rem;
5272
+ line-height: 1.5rem;
5273
+ color: #2a292c;
5274
+ }
5275
+
5276
+ .LuiTextInput-inputWrapper {
5277
+ position: relative;
5278
+ display: block;
5279
+ box-shadow: -1px 0 0 0 transparent;
5280
+ border-radius: 4px;
5281
+ transition: box-shadow 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s, border-color 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s;
5282
+ }
5283
+ .hasError .LuiTextInput-inputWrapper {
5284
+ box-shadow: -8px 0px 0 0 #cc0000;
5285
+ border-radius: 4px;
5286
+ }
5287
+ .hasWarning .LuiTextInput-inputWrapper {
5288
+ box-shadow: -8px 0px 0 0 #ea6a2e;
5289
+ border-radius: 4px;
5290
+ }
5291
+
5292
+ .LuiTextInput-passwordReveal {
5293
+ position: absolute;
5294
+ background: transparent;
5295
+ min-height: 0;
5296
+ min-width: 0;
5297
+ margin: 0;
5298
+ padding: 12px;
5299
+ top: 50%;
5300
+ right: 0;
5301
+ transform: translateY(-50%);
5302
+ }
5303
+ .LuiTextInput-passwordReveal:hover {
5304
+ background: transparent;
5305
+ }
5306
+
5307
+ .LuiTextInput-input {
5308
+ font-family: "Open Sans", system-ui, sans-serif;
5309
+ font-style: normal;
5310
+ font-weight: normal;
5311
+ margin-bottom: 0;
5312
+ border: 1px solid #beb9b4;
5313
+ border-radius: 3px;
5314
+ height: 3rem;
5315
+ color: #2a292c;
5316
+ caret-color: #2a292c;
5317
+ padding-top: 0.75rem;
5318
+ padding-right: 2rem;
5319
+ padding-bottom: 0.75rem;
5320
+ padding-left: 1rem;
5321
+ width: 100%;
5322
+ transition: all 0.15 ease-in-out;
5323
+ transition: border 0.2s ease;
5324
+ }
5325
+ .LuiTextInput-input::placeholder {
5326
+ font-weight: normal;
5327
+ font-style: italic;
5328
+ color: #6b6966;
5329
+ opacity: 1;
5330
+ }
5331
+ .isDisabled .LuiTextInput-input::placeholder {
5332
+ color: #989189;
5333
+ }
5334
+ .LuiTextInput-input:hover, .LuiTextInput-input:active {
5335
+ border-color: #00425d;
5336
+ }
5337
+ .LuiTextInput-input:focus {
5338
+ outline: none;
5339
+ border-color: #00425d;
5340
+ }
5341
+ .hasError .LuiTextInput-input {
5342
+ border-color: #cc0000;
5343
+ }
5344
+ .hasWarning .LuiTextInput-input {
5345
+ border-color: #ea6a2e;
5346
+ }
5347
+ .isDisabled .LuiTextInput-input {
5348
+ border-color: #beb9b4;
5349
+ background-color: #eaeaea;
5350
+ cursor: not-allowed;
5351
+ }
5352
+
5353
+ .LuiTextInput-iconPosition {
5354
+ position: absolute;
5355
+ right: 7px;
5356
+ top: 17%;
5357
+ }
5358
+ .LuiTextInput-iconPosition svg {
5359
+ fill: #6b6966;
5360
+ }
5361
+
5362
+ .LuiTextInput-padlock-icon {
5363
+ background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAyMiI+PHBhdGggZD0iTTE0IDcuNUgxM1Y1LjVDMTMgMi43NCAxMC43NiAwLjUgOCAwLjVDNS4yNCAwLjUgMyAyLjc0IDMgNS41VjcuNUgyQzAuOSA3LjUgMCA4LjQgMCA5LjVWMTkuNUMwIDIwLjYgMC45IDIxLjUgMiAyMS41SDE0QzE1LjEgMjEuNSAxNiAyMC42IDE2IDE5LjVWOS41QzE2IDguNCAxNS4xIDcuNSAxNCA3LjVaTTggMTYuNUM2LjkgMTYuNSA2IDE1LjYgNiAxNC41QzYgMTMuNCA2LjkgMTIuNSA4IDEyLjVDOS4xIDEyLjUgMTAgMTMuNCAxMCAxNC41QzEwIDE1LjYgOS4xIDE2LjUgOCAxNi41Wk0xMS4xIDcuNUg0LjlWNS41QzQuOSAzLjc5IDYuMjkgMi40IDggMi40QzkuNzEgMi40IDExLjEgMy43OSAxMS4xIDUuNVY3LjVaIiBmaWxsPSIjNkI2OTY2IiAvPjwvc3ZnPg==");
5364
+ background-repeat: no-repeat;
5365
+ background-position: right 12px center;
5366
+ background-size: 16px 21px;
5367
+ }
5368
+
5369
+ .LuiTextInput-error, .LuiTextInput-warning {
5370
+ font-family: "Open Sans", system-ui, sans-serif;
5371
+ font-style: normal;
5372
+ font-weight: 600;
5373
+ display: flex;
5374
+ position: relative;
5375
+ text-align: left;
5376
+ padding-left: 22px;
5377
+ font-size: 0.875rem;
5378
+ line-height: 20px;
5379
+ margin-top: 2px;
5380
+ }
5381
+
5382
+ .LuiTextInput-error {
5383
+ color: #cc0000;
5384
+ }
5385
+
5386
+ .LuiTextInput-error-icon, .LuiTextInput-warning-icon {
5387
+ position: absolute;
5388
+ left: 0;
5389
+ top: 2px;
5390
+ }
5391
+
5392
+ .LuiTextInput-mandatory {
5393
+ position: absolute;
5394
+ left: -12px;
5395
+ top: -2px;
5396
+ font-family: "Open Sans", system-ui, sans-serif;
5397
+ font-style: normal;
5398
+ font-weight: 600;
5399
+ font-size: 0.875rem;
5400
+ color: #cc0000;
5401
+ }
5402
+
5403
+ .LuiFieldWrapper {
5404
+ position: relative;
5405
+ box-shadow: -1px 0 0 0 transparent;
5406
+ border-radius: 4px;
5407
+ transition: box-shadow 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s, border-color 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s;
5408
+ }
5409
+ .LuiFieldWrapper input {
5410
+ transition: border 0.2s ease;
5411
+ }
5412
+ .LuiFieldWrapper.LuiFieldWrapper--error {
5413
+ box-shadow: -12px 0px 0 0 #cc0000;
5414
+ border-radius: 4px;
5415
+ }
5416
+ .LuiFieldWrapper.LuiFieldWrapper--error input {
5417
+ border-color: #cc0000;
5418
+ }
5419
+
5420
+ .LuiSearchInput {
5421
+ box-shadow: 0px 2px 3px 0px #00000040, 0px 0px 3px 0px #00000026;
5422
+ background: #ffffff;
5423
+ border-radius: 0 3px 3px 0;
5424
+ margin: 0;
5425
+ max-width: 600px;
5426
+ border: none;
5427
+ transition: box-shadow 0.3s ease-in-out, border-radius 0.3s ease-in-out;
5428
+ }
5429
+ .LuiSearchInput:active, .LuiSearchInput:focus, .LuiSearchInput:focus-within {
5430
+ box-shadow: 0px 1px 6px 0px #00000026, 0px 6px 10px 0px #00000040;
5431
+ border-radius: 3px;
5432
+ }
5433
+
5434
+ .LuiSearchInput-inputWrapper {
5435
+ position: relative;
5436
+ display: block;
5437
+ border: none;
5438
+ width: auto;
5439
+ margin-left: 3px;
5440
+ margin-right: 3px;
5441
+ min-height: 56px;
5442
+ }
5443
+ @media (max-width: 480px) {
5444
+ .LuiSearchInput-inputWrapper {
5445
+ min-height: 40px;
5446
+ }
5447
+ }
5448
+
5449
+ .LuiSearchInput-input {
5450
+ font-family: "Open Sans", system-ui, sans-serif;
5451
+ font-style: normal;
5452
+ font-weight: normal;
5453
+ height: 24px;
5454
+ color: #2a292c;
5455
+ caret-color: #2a292c;
5456
+ border: none;
5457
+ width: 100%;
5458
+ margin-top: 16px;
5459
+ padding-left: 48px;
5460
+ padding-right: 48px;
5461
+ }
5462
+ .LuiSearchInput-input::placeholder {
5463
+ font-weight: normal;
5464
+ font-style: italic;
5465
+ color: #6b6966;
5466
+ opacity: 1;
5467
+ }
5468
+ .isDisabled .LuiSearchInput-input::placeholder {
5469
+ color: #989189;
5470
+ }
5471
+ @media (max-width: 480px) {
5472
+ .LuiSearchInput-input {
5473
+ margin-top: 8px;
5474
+ }
5475
+ }
5476
+ .LuiSearchInput-input:focus-visible {
5477
+ outline-width: 0;
5478
+ }
5479
+
5480
+ .LuiSearchInput-startIconPosition {
5481
+ position: absolute;
5482
+ left: 15px;
5483
+ top: 16px;
5484
+ }
5485
+ @media (max-width: 480px) {
5486
+ .LuiSearchInput-startIconPosition {
5487
+ top: 8px;
5488
+ }
5489
+ }
5490
+ .LuiSearchInput-startIconPosition svg {
5491
+ fill: #6b6966;
5492
+ }
5493
+
5494
+ .LuiSearchInput-iconPosition {
5495
+ position: absolute;
5496
+ right: 15px;
5497
+ top: 16px;
5498
+ }
5499
+ @media (max-width: 480px) {
5500
+ .LuiSearchInput-iconPosition {
5501
+ top: 8px;
5502
+ }
5503
+ }
5504
+ .LuiSearchInput-iconPosition:hover {
5505
+ cursor: pointer;
5506
+ }
5507
+ .LuiSearchInput-iconPosition svg {
5508
+ fill: #6b6966;
5509
+ }
5510
+
5511
+ .LuiSearchInput-results {
5512
+ max-height: 275px;
5513
+ overflow: auto;
5514
+ }
5515
+ @media (max-height: 768px) {
5516
+ .LuiSearchInput-results {
5517
+ max-height: 218px;
5518
+ }
5519
+ }
5520
+
5521
+ .LuiSearchInput-resultEntry {
5522
+ font-family: "Open Sans", system-ui, sans-serif;
5523
+ font-style: normal;
5524
+ font-weight: normal;
5525
+ font-size: 16px;
5526
+ cursor: pointer;
5527
+ padding: 5px 20px;
5528
+ line-height: 24px;
5529
+ color: #2a292c;
5530
+ min-height: 40px;
5531
+ }
5532
+ .LuiSearchInput-resultEntry.selected {
5533
+ background-color: #e2f3f7;
5534
+ }
5535
+
5536
+ .LuiSearchInput-resultHeader {
5537
+ font-family: "Open Sans", system-ui, sans-serif;
5538
+ font-style: normal;
5539
+ font-weight: normal;
5540
+ font-size: 14px;
5541
+ padding: 5px 20px;
5542
+ line-height: 18px;
5543
+ letter-spacing: 0.02em;
5544
+ color: #6b6966;
5545
+ }
5546
+
5547
+ .LuiSearchInput-disclaimer {
5548
+ font-family: "Open Sans", system-ui, sans-serif;
5549
+ font-style: normal;
5550
+ font-weight: normal;
5551
+ font-size: 14px;
5552
+ padding: 5px 20px;
5553
+ line-height: 20px;
5554
+ color: #6b6966;
5555
+ }
5556
+
5557
+ .LuiSearchInput-loader {
5558
+ padding: 5px 20px;
5559
+ }
5560
+
5561
+ .LuiSearchInput-groupSeparator {
5562
+ margin-left: 20px;
5563
+ margin-right: 20px;
5564
+ background-color: #c4c4c4;
5565
+ }
5566
+
5567
+ .LuiSearchInput-resultSeparator {
5568
+ margin-left: 10px;
5569
+ margin-right: 10px;
5570
+ background-color: #eaeaea;
5571
+ }
5572
+
5573
+ .LuiSearchInput-skeletonItem {
5574
+ margin: 9px 0;
5575
+ height: 20px;
5576
+ }
5577
+
5578
+ .LuiSearchBox {
5579
+ display: block;
5580
+ max-width: 800px;
5581
+ }
5582
+ @media screen and (min-width: 480px) {
5583
+ .LuiSearchBox {
5584
+ display: flex;
5585
+ }
5586
+ }
5587
+ .LuiSearchBox-right {
5588
+ margin-top: 8px;
5589
+ width: auto;
5590
+ max-width: 600px;
5591
+ min-height: 40px;
5592
+ z-index: 10;
5593
+ }
5594
+ @media screen and (min-width: 480px) {
5595
+ .LuiSearchBox-right {
5596
+ height: 3rem;
5597
+ margin-top: 0px;
5598
+ width: 75%;
5599
+ min-height: 56px;
5600
+ }
5601
+ }
5602
+
5603
+ .LuiSearchBox-button {
5604
+ width: 220px;
5605
+ height: 2.5rem;
5606
+ display: flex;
5607
+ justify-content: space-between;
5608
+ align-items: center;
5609
+ margin: 0px;
5610
+ border-radius: 3px 0 0 3px;
5611
+ box-shadow: 0px 2px 3px 0px #00000040, 0px 0px 3px 0px #00000026;
5612
+ color: #2a292c;
5613
+ }
5614
+ @media screen and (min-width: 480px) {
5615
+ .LuiSearchBox-button {
5616
+ max-width: 200px;
5617
+ width: 25%;
5618
+ height: 3.5rem;
5619
+ }
5620
+ }
5621
+ .LuiSearchBox-button-icon {
5622
+ fill: #2a292c;
5623
+ }
5624
+ .LuiSearchBox-button-icon svg * {
5625
+ color: #2a292c;
5626
+ fill: #2a292c;
5627
+ }
5628
+
5629
+ .LuiComboSelect-label-text {
5630
+ font-family: "Open Sans", system-ui, sans-serif;
5631
+ font-style: normal;
5632
+ font-weight: 600;
5633
+ margin-bottom: 0.5rem;
5634
+ font-size: 0.875rem;
5635
+ line-height: 1.5rem;
5636
+ color: #2a292c;
5637
+ }
5638
+
5639
+ .hasError .LuiComboSelect__control {
5640
+ border-color: #cc0000;
5641
+ box-shadow: -8px 0px 0 0 #cc0000;
5642
+ border-radius: 4px;
5643
+ }
5644
+
5645
+ .LuiComboSelect-error {
5646
+ position: relative;
5647
+ display: flex;
5648
+ font-family: "Open Sans", system-ui, sans-serif;
5649
+ font-style: normal;
5650
+ font-weight: 600;
5651
+ color: #cc0000;
5652
+ text-align: left;
5653
+ padding-left: 1.5rem;
5654
+ font-size: 0.875rem;
5655
+ line-height: 1.25rem;
5656
+ margin-top: 0.25rem;
5657
+ }
5658
+
5659
+ .LuiComboSelect-error-icon {
5660
+ position: absolute;
5661
+ left: 0;
5662
+ top: 2px;
5663
+ }
5664
+
5665
+ .LuiFileInputBox-upload {
5666
+ outline: 2px dashed #eaeaea;
5667
+ color: dimgray;
5668
+ cursor: pointer;
5669
+ position: relative;
5670
+ display: flex;
5671
+ flex-direction: column;
5672
+ justify-content: center;
5673
+ align-items: center;
5674
+ }
5675
+ .LuiFileInputBox-upload:hover {
5676
+ background: #eef1f5;
5677
+ }
5678
+
5679
+ .LuiFileInputBox-upload-input {
5680
+ opacity: 0;
5681
+ cursor: pointer;
5682
+ position: absolute;
5683
+ top: 0;
5684
+ left: 0;
5685
+ width: 100%;
5686
+ height: 100%;
5687
+ display: block;
5688
+ }
5689
+
5690
+ .LuiFileInputBox-upload-container {
5691
+ text-align: center;
5692
+ padding: 24px 20px;
5693
+ }
5694
+
5695
+ .LuiFileInputBox-upload-error {
5696
+ outline: 2px dashed #cc0000;
5697
+ }
5698
+
5699
+ .LuiFileInputBox-upload-icon-success {
5700
+ width: 120px;
5701
+ fill: #0aa245;
5702
+ margin-left: auto;
5703
+ margin-right: auto;
5704
+ }
5705
+
5706
+ .LuiFileInputBox-upload-icon-upload {
5707
+ width: 120px;
5708
+ fill: #007198;
5709
+ margin-left: auto;
5710
+ margin-right: auto;
5711
+ }
5712
+
5713
+ .LuiFileInputBox-upload-icon-error {
4290
5714
  width: 168px;
4291
5715
  fill: #cc0000;
4292
5716
  margin-left: auto;
4293
5717
  margin-right: auto;
4294
5718
  }
4295
5719
 
4296
- .LuiFileInputBox-upload-text {
4297
- margin-top: 0;
4298
- padding-top: 8px;
5720
+ .LuiFileInputBox-upload-text {
5721
+ margin-top: 0;
5722
+ padding-top: 8px;
5723
+ }
5724
+ .LuiFileInputBox-upload-text span {
5725
+ color: #3a7cdf;
5726
+ font-weight: 600;
5727
+ }
5728
+
5729
+ .LuiFileInputBox-upload-text-no-padding {
5730
+ padding: 0;
5731
+ font-size: 14px;
5732
+ }
5733
+
5734
+ .LuiFileInputBox-upload-file-name {
5735
+ margin-top: 0;
5736
+ padding-bottom: 12px;
5737
+ font-weight: 600;
5738
+ }
5739
+
5740
+ .LuiFormSectionHeader {
5741
+ margin-top: 1.5rem;
5742
+ display: flex;
5743
+ flex-direction: column;
5744
+ padding: 1rem;
5745
+ background-color: #ffffff;
5746
+ }
5747
+ @media screen and (min-width: 768px) {
5748
+ .LuiFormSectionHeader {
5749
+ flex-direction: row;
5750
+ background-color: inherit;
5751
+ padding: 0;
5752
+ }
5753
+ }
5754
+
5755
+ .LuiFormSectionHeader-header {
5756
+ width: 100%;
5757
+ padding-right: 0.75rem;
5758
+ }
5759
+ @media screen and (min-width: 768px) {
5760
+ .LuiFormSectionHeader-header {
5761
+ width: 30%;
5762
+ }
5763
+ }
5764
+
5765
+ .LuiFormSectionHeader-heading {
5766
+ margin: 0;
5767
+ }
5768
+
5769
+ .LuiFormSectionHeader-details {
5770
+ padding: 0;
5771
+ width: 100%;
5772
+ background-color: #ffffff;
5773
+ flex-grow: 2;
5774
+ }
5775
+ @media screen and (min-width: 768px) {
5776
+ .LuiFormSectionHeader-details {
5777
+ width: 70%;
5778
+ border-radius: 5px;
5779
+ margin-top: 0.75rem;
5780
+ background-color: #ffffff;
5781
+ }
5782
+ }
5783
+
5784
+ .HelpInfo {
5785
+ margin: 0;
5786
+ display: flex;
5787
+ color: #6b6966;
5788
+ }
5789
+
5790
+ .HelpInfo-icon {
5791
+ transform: rotate(180deg);
5792
+ margin-left: 0.75rem;
5793
+ margin-right: 0.5rem;
5794
+ fill: #6b6966;
4299
5795
  }
4300
- .LuiFileInputBox-upload-text span {
4301
- color: #3a7cdf;
5796
+
5797
+ .LuiShadow {
5798
+ box-shadow: 0 0 1.5rem 1px rgba(0, 113, 152, 0.1);
5799
+ border-radius: 5px;
5800
+ padding: 1.5rem;
5801
+ margin-top: 0.75rem;
5802
+ background-color: #ffffff;
5803
+ }
5804
+
5805
+ .LuiBadge {
5806
+ font-family: "Open Sans", system-ui, sans-serif;
5807
+ font-style: normal;
4302
5808
  font-weight: 600;
5809
+ color: #6b6966;
5810
+ background: transparent;
5811
+ border: 1px solid #6b6966;
5812
+ border-radius: 4px;
5813
+ display: inline-flex;
5814
+ font-size: 0.75rem;
5815
+ line-height: 1rem;
5816
+ margin-top: 0;
5817
+ padding-top: 0.125rem;
5818
+ padding-right: 0.25rem;
5819
+ padding-bottom: 0.125rem;
5820
+ padding-left: 0.25rem;
4303
5821
  }
4304
5822
 
4305
- .LuiFileInputBox-upload-text-no-padding {
5823
+ .LuiBadge--sm {
5824
+ font-size: 0.625rem;
5825
+ line-height: 0.875rem;
5826
+ padding-right: 0.25rem;
5827
+ padding-left: 0.25rem;
5828
+ }
5829
+
5830
+ .LuiBadge--lg {
5831
+ font-size: 0.875rem;
5832
+ line-height: 1.25rem;
5833
+ padding-right: 0.5rem;
5834
+ padding-left: 0.5rem;
5835
+ }
5836
+
5837
+ .LuiBadge--fill {
5838
+ background: #ffffff;
5839
+ }
5840
+
5841
+ .LuiBadge--warning {
5842
+ border-color: #ea6a2e;
5843
+ color: #ea6a2e;
5844
+ }
5845
+
5846
+ .LuiAccordicardStatic {
5847
+ border-radius: 5px;
5848
+ display: flex;
5849
+ flex-direction: column;
5850
+ position: relative;
5851
+ }
5852
+ .LuiAccordicardStatic:not(:first-child) {
5853
+ margin-top: 0.5rem;
5854
+ }
5855
+ .LuiAccordicardStatic:not(.LuiAccordicardStatic--warning) {
5856
+ padding: 0.75rem 1rem;
5857
+ box-shadow: 0px 2px 3px 0px #00000040, 0px 0px 3px 0px #00000026;
5858
+ }
5859
+ .LuiAccordicardStatic--warning {
5860
+ border: 1px solid #ea6a2e;
5861
+ display: grid;
5862
+ grid-template-columns: 32px 1fr;
5863
+ grid-template-areas: "sidebar header" "sidebar content";
5864
+ }
5865
+
5866
+ .LuiAccordicardStatic-header {
5867
+ display: flex;
5868
+ justify-content: space-between;
5869
+ width: 100%;
5870
+ position: relative;
5871
+ padding-right: 2.25rem;
5872
+ grid-area: header;
5873
+ }
5874
+ .LuiAccordicardStatic--warning .LuiAccordicardStatic-header {
5875
+ padding: 0.75rem 3rem 0.75rem 1rem;
5876
+ }
5877
+
5878
+ .LuiAccordicardStatic-sideBar {
5879
+ grid-area: sidebar;
5880
+ background-color: #ea6a2e;
5881
+ position: relative;
5882
+ }
5883
+
5884
+ .LuiAccordicardStatic-warningIcon {
5885
+ position: absolute;
5886
+ left: 50%;
5887
+ transform: translateX(-50%);
5888
+ top: 0.75rem;
5889
+ }
5890
+ .LuiAccordicardStatic-warningIcon svg {
5891
+ fill: #ffffff;
5892
+ }
5893
+
5894
+ .LuiAccordicardStatic-contentWrapper {
5895
+ grid-area: content;
5896
+ overflow: hidden;
5897
+ transition: max-height 0.3s ease;
5898
+ }
5899
+ .LuiAccordicardStatic--warning.LuiAccordicardStatic--isOpen .LuiAccordicardStatic-contentWrapper {
5900
+ padding: 0 1rem 0.75rem 1rem;
5901
+ }
5902
+
5903
+ .LuiAccordicardStatic-content {
5904
+ will-change: opacity;
5905
+ opacity: 0;
5906
+ transition: opacity 0.3s ease-in-out 0.2;
5907
+ }
5908
+ .LuiAccordicardStatic-content--isOpen {
5909
+ opacity: 1;
5910
+ }
5911
+
5912
+ .LuiAccordicardStatic-headerContent {
5913
+ display: flex;
5914
+ align-items: center;
5915
+ flex-wrap: wrap;
5916
+ column-gap: 3rem;
5917
+ row-gap: 1.5rem;
5918
+ word-break: break-word;
5919
+ }
5920
+
5921
+ .LuiAccordicardStatic-trigger {
5922
+ background: none;
5923
+ border: none;
5924
+ line-height: 1;
4306
5925
  padding: 0;
4307
- font-size: 14px;
5926
+ height: 3rem;
5927
+ width: 3rem;
5928
+ position: absolute;
5929
+ top: 3px;
5930
+ right: 0;
4308
5931
  }
4309
5932
 
4310
- .LuiFileInputBox-upload-file-name {
4311
- margin-top: 0;
4312
- padding-bottom: 12px;
5933
+ .LuiAccordicardStatic-chevron {
5934
+ transition: all 0.3s ease-in-out;
5935
+ transform: rotate(0);
5936
+ fill: #007198;
5937
+ }
5938
+ .LuiAccordicardStatic-chevron--isOpen {
5939
+ transform: rotate(180deg);
5940
+ }
5941
+
5942
+ .LuiAccordicard {
5943
+ border-radius: 5px;
5944
+ display: flex;
5945
+ flex-direction: column;
5946
+ position: relative;
5947
+ }
5948
+ .LuiAccordicard:not(:first-child) {
5949
+ margin-top: 0.5rem;
5950
+ }
5951
+ .LuiAccordicard:not(.LuiAccordicard--warning) {
5952
+ padding: 0.75rem 1rem;
5953
+ box-shadow: 0px 2px 3px 0px #00000040, 0px 0px 3px 0px #00000026;
5954
+ }
5955
+ .LuiAccordicard--warning {
5956
+ border: 1px solid #ea6a2e;
5957
+ display: grid;
5958
+ grid-template-columns: 32px 1fr;
5959
+ grid-template-areas: "sidebar header" "sidebar content";
5960
+ }
5961
+
5962
+ .LuiAccordicard-header {
5963
+ display: flex;
5964
+ justify-content: space-between;
5965
+ width: 100%;
5966
+ position: relative;
5967
+ padding-right: 2.25rem;
5968
+ grid-area: header;
5969
+ }
5970
+ .LuiAccordicard--warning .LuiAccordicard-header {
5971
+ padding: 0.75rem 3rem 0.75rem 1rem;
5972
+ }
5973
+
5974
+ .LuiAccordicard-sideBar {
5975
+ grid-area: sidebar;
5976
+ background-color: #ea6a2e;
5977
+ position: relative;
5978
+ }
5979
+
5980
+ .LuiAccordicard-warningIcon {
5981
+ position: absolute;
5982
+ left: 50%;
5983
+ transform: translateX(-50%);
5984
+ top: 0.75rem;
5985
+ }
5986
+ .LuiAccordicard-warningIcon svg {
5987
+ fill: #ffffff;
5988
+ }
5989
+
5990
+ .LuiAccordicard-contentWrapper {
5991
+ grid-area: content;
5992
+ overflow: hidden;
5993
+ transition: max-height 0.3s ease;
5994
+ }
5995
+ .LuiAccordicard--warning.LuiAccordicard--isOpen .LuiAccordicard-contentWrapper {
5996
+ padding: 0 1rem 0.75rem 1rem;
5997
+ }
5998
+
5999
+ .LuiAccordicard-content {
6000
+ will-change: opacity;
6001
+ opacity: 0;
6002
+ transition: opacity 0.3s ease-in-out 0.2;
6003
+ }
6004
+ .LuiAccordicard-content--isOpen {
6005
+ opacity: 1;
6006
+ }
6007
+
6008
+ .LuiAccordicard-headerContent {
6009
+ display: flex;
6010
+ align-items: center;
6011
+ flex-wrap: wrap;
6012
+ column-gap: 3rem;
6013
+ row-gap: 1.5rem;
6014
+ word-break: break-word;
6015
+ }
6016
+
6017
+ .LuiAccordicard-trigger {
6018
+ background: none;
6019
+ border: none;
6020
+ line-height: 1;
6021
+ padding: 0;
6022
+ height: 3rem;
6023
+ width: 3rem;
6024
+ position: absolute;
6025
+ top: 3px;
6026
+ right: 0;
6027
+ }
6028
+
6029
+ .LuiAccordicard-chevron {
6030
+ transition: all 0.3s ease-in-out;
6031
+ transform: rotate(0);
6032
+ fill: #007198;
6033
+ }
6034
+ .LuiAccordicard-chevron--isOpen {
6035
+ transform: rotate(180deg);
6036
+ }
6037
+
6038
+ .LuiTab {
6039
+ background: transparent;
6040
+ border-radius: 0;
6041
+ color: #2a292c;
6042
+ min-width: 10rem;
6043
+ font-family: "Open Sans", system-ui, sans-serif;
6044
+ font-style: normal;
6045
+ font-weight: normal;
6046
+ }
6047
+ .LuiTab:focus {
6048
+ background-color: rgba(0, 165, 153, 0.2);
6049
+ }
6050
+ .LuiTabsGroup--justified .LuiTab {
6051
+ width: 100%;
6052
+ }
6053
+
6054
+ .LuiTab--active,
6055
+ .LuiTab--active:focus {
6056
+ font-family: "Open Sans", system-ui, sans-serif;
6057
+ font-style: normal;
4313
6058
  font-weight: 600;
6059
+ position: relative;
6060
+ outline: none;
6061
+ background: transparent;
6062
+ }
6063
+ .LuiTab--active:after,
6064
+ .LuiTab--active:focus:after {
6065
+ content: "";
6066
+ display: block;
6067
+ height: 4px;
6068
+ width: 100%;
6069
+ padding: 0 32px;
6070
+ left: 0;
6071
+ right: 0;
6072
+ bottom: -1px;
6073
+ box-sizing: border-box;
6074
+ background: linear-gradient(270deg, #73cdc8 1%, #00a599 100%);
6075
+ border-top-left-radius: 3px;
6076
+ border-top-right-radius: 3px;
6077
+ position: absolute;
6078
+ }
6079
+
6080
+ .LuiTabsGroup {
6081
+ border-bottom: 1px solid #beb9b4;
6082
+ }
6083
+
6084
+ .LuiTabsGroup--justified {
6085
+ display: flex;
6086
+ justify-content: space-between;
6087
+ }
6088
+
6089
+ .LuiTabsPanel {
6090
+ display: none;
6091
+ }
6092
+
6093
+ .LuiTabsPanel--active {
6094
+ display: block;
6095
+ overflow: auto;
6096
+ }
6097
+
6098
+ .LuiIcon {
6099
+ display: inline-block;
6100
+ height: 100%;
6101
+ width: 100%;
6102
+ }
6103
+ .LuiIcon > svg {
6104
+ display: block;
6105
+ }
6106
+
6107
+ .LuiIcon--xl {
6108
+ max-height: 48px;
6109
+ max-width: 48px;
6110
+ }
6111
+ .LuiIcon--xl > svg {
6112
+ height: 48px;
6113
+ width: 48px;
6114
+ }
6115
+
6116
+ .LuiIcon--lg {
6117
+ max-height: 32px;
6118
+ max-width: 32px;
6119
+ }
6120
+ .LuiIcon--lg > svg {
6121
+ height: 32px;
6122
+ width: 32px;
6123
+ }
6124
+
6125
+ .LuiIcon--md {
6126
+ height: 24px;
6127
+ max-height: 24px;
6128
+ max-width: 24px;
6129
+ width: 24px;
6130
+ }
6131
+ .LuiIcon--md > svg {
6132
+ height: 24px;
6133
+ width: 24px;
6134
+ }
6135
+
6136
+ .LuiIcon--sm {
6137
+ max-height: 16px;
6138
+ max-width: 16px;
6139
+ }
6140
+ .LuiIcon--sm > svg {
6141
+ height: 16px;
6142
+ width: 16px;
6143
+ }
6144
+
6145
+ .LuiIcon--xs {
6146
+ max-height: 12px;
6147
+ max-width: 12px;
6148
+ }
6149
+ .LuiIcon--xs > svg {
6150
+ height: 12px;
6151
+ width: 12px;
6152
+ }
6153
+
6154
+ .LuiIcon--warning {
6155
+ fill: #ea6a2e;
6156
+ }
6157
+
6158
+ .LuiIcon--error {
6159
+ fill: #cc0000;
6160
+ }
6161
+
6162
+ .LuiIcon--success {
6163
+ fill: #0aa245;
6164
+ }
6165
+
6166
+ .LuiIcon--interactive {
6167
+ fill: #007198;
6168
+ }
6169
+
6170
+ .LuiIcon--disabled {
6171
+ fill: #989189;
6172
+ }
6173
+
6174
+ .LuiMenuTrigger {
6175
+ padding: 16px 16px;
6176
+ display: inline-block;
6177
+ cursor: pointer;
6178
+ transition-property: opacity, filter;
6179
+ transition-duration: 0.15s;
6180
+ transition-timing-function: ease-in-out;
6181
+ font: inherit;
6182
+ color: inherit;
6183
+ text-transform: none;
6184
+ background-color: transparent;
6185
+ border: 0;
6186
+ margin: 0;
6187
+ overflow: visible;
6188
+ }
6189
+ .LuiMenuTrigger:hover {
6190
+ filter: opacity(80%);
6191
+ }
6192
+ .LuiMenuTrigger--active:hover {
6193
+ filter: opacity(80%);
6194
+ }
6195
+
6196
+ .LuiMenuTrigger-wrapper {
6197
+ width: 24px;
6198
+ height: 17px;
6199
+ display: flex;
6200
+ position: relative;
6201
+ }
6202
+
6203
+ .LuiMenuTrigger-inner {
6204
+ display: block;
6205
+ top: 50%;
6206
+ margin-top: -1.5px;
6207
+ transition-duration: 0.075s;
6208
+ transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
6209
+ }
6210
+ .LuiMenuTrigger-inner, .LuiMenuTrigger-inner::before, .LuiMenuTrigger-inner::after {
6211
+ width: 24px;
6212
+ height: 3px;
6213
+ background-color: #ffffff;
6214
+ border-radius: 8px;
6215
+ position: absolute;
6216
+ transition-property: transform;
6217
+ transition-duration: 0.075s;
6218
+ transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
6219
+ }
6220
+ .LuiMenuTrigger-inner::before, .LuiMenuTrigger-inner::after {
6221
+ content: "";
6222
+ display: block;
6223
+ }
6224
+ .LuiMenuTrigger-inner::before {
6225
+ top: -7px;
6226
+ transition: top 0.075s 0.12s ease, opacity 0.075s ease;
6227
+ }
6228
+ .LuiMenuTrigger-inner::after {
6229
+ bottom: -7px;
6230
+ transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
6231
+ }
6232
+ .LuiMenuTrigger--active .LuiMenuTrigger-inner {
6233
+ transform: rotate(45deg);
6234
+ transition-delay: 0.12s;
6235
+ transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
6236
+ background-color: #ffffff;
6237
+ }
6238
+ .LuiMenuTrigger--active .LuiMenuTrigger-inner::before, .LuiMenuTrigger--active .LuiMenuTrigger-inner::after {
6239
+ background-color: #ffffff;
6240
+ }
6241
+ .LuiMenuTrigger--active .LuiMenuTrigger-inner::before {
6242
+ top: 0;
6243
+ opacity: 0;
6244
+ transition: top 0.075s ease, opacity 0.075s 0.12s ease;
6245
+ }
6246
+ .LuiMenuTrigger--active .LuiMenuTrigger-inner::after {
6247
+ bottom: 0;
6248
+ transform: rotate(-90deg);
6249
+ transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
4314
6250
  }
4315
6251
 
4316
6252
  /*# sourceMappingURL=lui.css.map */