@deriv-web-design/ui 0.1.20 → 0.1.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.css CHANGED
@@ -2002,6 +2002,11 @@
2002
2002
  flex-shrink: 0;
2003
2003
  object-fit: contain;
2004
2004
  }
2005
+ .fc-platformLink-icon > svg {
2006
+ display: block;
2007
+ width: 100%;
2008
+ height: 100%;
2009
+ }
2005
2010
  .fc-platformLink-label {
2006
2011
  font-family: var(--typography-body-sm-font-family);
2007
2012
  font-size: var(--typography-body-sm-font-size);
@@ -11305,4 +11310,1152 @@
11305
11310
  grid-template-columns: 2fr 1fr;
11306
11311
  }
11307
11312
  }
11313
+
11314
+ /* templates/OptionsTypes/OptionsTypes.css */
11315
+ :root {
11316
+ --ot-section-bg: var(--color-slate-75);
11317
+ --ot-card-bg: var(--color-slate-75);
11318
+ --ot-text: var(--text-primary);
11319
+ --ot-muted-text: var(--text-secondary);
11320
+ --ot-control-bg: var(--color-slate-50);
11321
+ --ot-control-color: var(--color-slate-1200);
11322
+ --ot-platform-bg: var(--color-coral-700);
11323
+ --ot-platform-color: var(--color-slate-50);
11324
+ --ot-focus: var(--border-focus);
11325
+ --ot-card-radius: var(--radius-2xl);
11326
+ --ot-card-aspect: 1312 / 854;
11327
+ --ot-scrim: rgb(0 0 0 / 10%);
11328
+ }
11329
+ .ot {
11330
+ --ot-stack-gap: var(--spacing-24);
11331
+ width: 100%;
11332
+ background: var(--ot-section-bg);
11333
+ color: var(--ot-text);
11334
+ }
11335
+ .ot__inner {
11336
+ box-sizing: border-box;
11337
+ display: flex;
11338
+ width: 100%;
11339
+ max-width: var(--content-width-1280);
11340
+ flex-direction: column;
11341
+ margin: 0 auto;
11342
+ padding: var(--spacing-56) var(--spacing-16);
11343
+ gap: var(--ot-stack-gap);
11344
+ }
11345
+ .ot__header {
11346
+ display: flex;
11347
+ flex-direction: column;
11348
+ align-items: center;
11349
+ gap: var(--ot-stack-gap);
11350
+ text-align: center;
11351
+ }
11352
+ .ot__heading {
11353
+ max-width: var(--content-width-846);
11354
+ margin: 0;
11355
+ font-family: var(--typography-h2-font-family);
11356
+ font-size: var(--typography-h2-font-size);
11357
+ font-weight: var(--typography-h2-font-weight);
11358
+ line-height: var(--typography-h2-line-height);
11359
+ color: var(--ot-text);
11360
+ }
11361
+ .ot__tabs {
11362
+ justify-content: center;
11363
+ }
11364
+ .ot__panels > [role=tabpanel]:focus-visible {
11365
+ outline: 2px solid var(--ot-focus);
11366
+ outline-offset: var(--spacing-4);
11367
+ }
11368
+ .ot__option {
11369
+ display: flex;
11370
+ min-width: 0;
11371
+ flex-direction: column;
11372
+ gap: var(--ot-stack-gap);
11373
+ }
11374
+ .ot__description {
11375
+ display: flex;
11376
+ flex-direction: column;
11377
+ gap: var(--spacing-16);
11378
+ color: var(--ot-text);
11379
+ }
11380
+ .ot__description h3 {
11381
+ margin: 0;
11382
+ font-family: var(--typography-h4-font-family);
11383
+ font-size: var(--typography-h4-font-size);
11384
+ font-weight: var(--typography-h4-font-weight);
11385
+ line-height: var(--typography-h4-line-height);
11386
+ }
11387
+ .ot__description p {
11388
+ margin: 0;
11389
+ font-family: var(--typography-body-md-font-family);
11390
+ font-size: var(--typography-body-md-font-size);
11391
+ font-weight: var(--typography-body-md-font-weight);
11392
+ line-height: var(--typography-body-md-line-height);
11393
+ }
11394
+ .ot__option--stacked .ot__description {
11395
+ max-width: var(--content-width-846);
11396
+ margin-inline: auto;
11397
+ text-align: center;
11398
+ }
11399
+ .ot__option--split .ot__option-side {
11400
+ display: contents;
11401
+ }
11402
+ .ot__option--split .ot__description {
11403
+ order: 1;
11404
+ }
11405
+ .ot__option--split .ot__animations {
11406
+ order: 2;
11407
+ }
11408
+ .ot__option--split .ot__metadata {
11409
+ order: 3;
11410
+ }
11411
+ .ot__animations {
11412
+ display: grid;
11413
+ grid-template-columns: 1fr;
11414
+ gap: var(--spacing-24);
11415
+ min-width: 0;
11416
+ }
11417
+ .ot__animation-card {
11418
+ position: relative;
11419
+ isolation: isolate;
11420
+ min-width: 0;
11421
+ aspect-ratio: var(--ot-card-aspect);
11422
+ overflow: hidden;
11423
+ border-radius: var(--ot-card-radius);
11424
+ background: var(--ot-card-bg);
11425
+ }
11426
+ .ot__animation-media {
11427
+ position: absolute;
11428
+ z-index: 1;
11429
+ inset: 0;
11430
+ }
11431
+ .ot__animation-media canvas {
11432
+ width: 100%;
11433
+ height: 100%;
11434
+ }
11435
+ .ot__animation-media img,
11436
+ .ot__animation-poster {
11437
+ width: 100%;
11438
+ height: 100%;
11439
+ object-fit: cover;
11440
+ }
11441
+ .ot__animation-poster {
11442
+ position: absolute;
11443
+ z-index: 2;
11444
+ inset: 0;
11445
+ }
11446
+ .ot__playback-toggle {
11447
+ position: absolute;
11448
+ z-index: 3;
11449
+ display: grid;
11450
+ inset: 0;
11451
+ padding: 0;
11452
+ place-items: center;
11453
+ border: 0;
11454
+ background: var(--ot-scrim);
11455
+ cursor: pointer;
11456
+ }
11457
+ .ot__playback-toggle--playing {
11458
+ background: transparent;
11459
+ }
11460
+ .ot__playback-toggle:focus-visible {
11461
+ outline: 2px solid var(--ot-focus);
11462
+ outline-offset: -4px;
11463
+ }
11464
+ .ot__control-icon {
11465
+ width: 64px;
11466
+ height: 64px;
11467
+ transition: opacity 150ms ease;
11468
+ }
11469
+ .ot__playback-toggle--playing .ot__control-icon {
11470
+ opacity: 0;
11471
+ }
11472
+ .ot__playback-toggle--playing:hover .ot__control-icon,
11473
+ .ot__playback-toggle--playing:focus-visible .ot__control-icon {
11474
+ opacity: 1;
11475
+ }
11476
+ .ot__control-disc {
11477
+ fill: var(--ot-control-bg);
11478
+ fill-opacity: 0.88;
11479
+ }
11480
+ .ot__control-glyph {
11481
+ fill: var(--ot-control-color);
11482
+ }
11483
+ .ot__metadata {
11484
+ display: grid;
11485
+ grid-template-columns: 1fr;
11486
+ gap: var(--spacing-24);
11487
+ }
11488
+ .ot__meta-group {
11489
+ display: flex;
11490
+ min-width: 0;
11491
+ flex-direction: column;
11492
+ gap: var(--spacing-16);
11493
+ }
11494
+ .ot__meta-group h4 {
11495
+ margin: 0;
11496
+ font-family: var(--typography-h5-font-family);
11497
+ font-size: var(--typography-h5-font-size);
11498
+ font-weight: var(--typography-h5-font-weight);
11499
+ line-height: var(--typography-h5-line-height);
11500
+ }
11501
+ .ot__meta-list {
11502
+ display: flex;
11503
+ flex-wrap: wrap;
11504
+ gap: var(--spacing-16);
11505
+ margin: 0;
11506
+ padding: 0;
11507
+ list-style: none;
11508
+ }
11509
+ .ot__meta-list li > span,
11510
+ .ot__meta-list a {
11511
+ display: inline-flex;
11512
+ align-items: center;
11513
+ gap: var(--spacing-8);
11514
+ color: var(--ot-text);
11515
+ font-family: var(--typography-body-sm-font-family);
11516
+ font-size: var(--typography-body-sm-font-size);
11517
+ font-weight: var(--typography-body-sm-font-weight);
11518
+ line-height: var(--typography-body-sm-line-height);
11519
+ text-decoration: none;
11520
+ }
11521
+ .ot__meta-list a:hover {
11522
+ text-decoration: underline;
11523
+ }
11524
+ .ot__meta-list a:focus-visible {
11525
+ border-radius: var(--radius-sm);
11526
+ outline: 2px solid var(--ot-focus);
11527
+ outline-offset: 2px;
11528
+ }
11529
+ .ot__meta-icon,
11530
+ .ot__meta-image {
11531
+ width: 24px;
11532
+ height: 24px;
11533
+ flex: 0 0 auto;
11534
+ }
11535
+ .ot__platform-icon {
11536
+ display: inline-grid;
11537
+ width: 24px;
11538
+ height: 24px;
11539
+ flex: 0 0 auto;
11540
+ place-items: center;
11541
+ border-radius: var(--radius-sm);
11542
+ background: var(--ot-platform-bg);
11543
+ color: var(--ot-platform-color);
11544
+ font-size: 9px;
11545
+ font-weight: var(--font-weight-bold);
11546
+ line-height: 1;
11547
+ }
11548
+ .ot__disclaimer {
11549
+ display: flex;
11550
+ align-items: center;
11551
+ justify-content: center;
11552
+ gap: var(--spacing-8);
11553
+ margin: 0;
11554
+ color: var(--ot-muted-text);
11555
+ font-family: var(--typography-body-xs-font-family);
11556
+ font-size: var(--typography-body-xs-font-size);
11557
+ font-weight: var(--typography-body-xs-font-weight);
11558
+ line-height: var(--typography-body-xs-line-height);
11559
+ text-align: center;
11560
+ }
11561
+ .ot__disclaimer-icon {
11562
+ width: 16px;
11563
+ height: 16px;
11564
+ flex: 0 0 auto;
11565
+ }
11566
+ @media (min-width: 480px) {
11567
+ .ot {
11568
+ --ot-stack-gap: var(--spacing-32);
11569
+ }
11570
+ .ot__metadata {
11571
+ grid-template-columns: repeat(2, minmax(0, 1fr));
11572
+ gap: var(--spacing-24) var(--spacing-48);
11573
+ }
11574
+ }
11575
+ @media (min-width: 768px) {
11576
+ .ot__inner {
11577
+ padding: var(--spacing-56) var(--spacing-24);
11578
+ }
11579
+ .ot__animations--2 {
11580
+ grid-template-columns: repeat(2, minmax(0, 1fr));
11581
+ gap: var(--spacing-16);
11582
+ }
11583
+ }
11584
+ @media (min-width: 992px) {
11585
+ .ot {
11586
+ --ot-stack-gap: var(--spacing-48);
11587
+ }
11588
+ .ot__inner {
11589
+ padding: var(--spacing-112) var(--spacing-24);
11590
+ }
11591
+ .ot__option--split {
11592
+ flex-direction: row;
11593
+ justify-content: space-between;
11594
+ align-items: center;
11595
+ gap: var(--spacing-72);
11596
+ }
11597
+ .ot__option--split .ot__description,
11598
+ .ot__option--split .ot__animations,
11599
+ .ot__option--split .ot__metadata {
11600
+ order: 0;
11601
+ }
11602
+ .ot__option--split .ot__animations {
11603
+ width: 100%;
11604
+ max-width: 504px;
11605
+ }
11606
+ .ot__option--split .ot__option-side {
11607
+ display: flex;
11608
+ flex: 1;
11609
+ min-width: 0;
11610
+ flex-direction: column;
11611
+ align-items: flex-start;
11612
+ justify-content: center;
11613
+ gap: var(--spacing-24);
11614
+ }
11615
+ .ot__option--split .ot__metadata {
11616
+ width: 100%;
11617
+ grid-template-columns: 1fr;
11618
+ gap: var(--spacing-48);
11619
+ }
11620
+ }
11621
+ @media (prefers-reduced-motion: reduce) {
11622
+ .ot__control-icon {
11623
+ transition: none;
11624
+ }
11625
+ }
11626
+
11627
+ /* templates/EntityInfoSection/EntityInfoSection.css */
11628
+ :root {
11629
+ --eis-text-color: var(--text-primary);
11630
+ --eis-link-color: var(--color-coral-700);
11631
+ --eis-max-width: 1280px;
11632
+ --eis-padding-block-end: var(--spacing-56);
11633
+ --eis-padding-inline: var(--spacing-16);
11634
+ --eis-content-gap: var(--spacing-24);
11635
+ --eis-links-gap: var(--spacing-16);
11636
+ --eis-name-tracking: -0.02rem;
11637
+ }
11638
+ .eis {
11639
+ display: block;
11640
+ width: 100%;
11641
+ }
11642
+ .eis__inner {
11643
+ max-width: var(--eis-max-width);
11644
+ margin: 0 auto;
11645
+ padding: 0 var(--eis-padding-inline) var(--eis-padding-block-end);
11646
+ box-sizing: border-box;
11647
+ }
11648
+ .eis__content {
11649
+ display: flex;
11650
+ flex-direction: column;
11651
+ align-items: flex-start;
11652
+ gap: var(--eis-content-gap);
11653
+ }
11654
+ .eis__name {
11655
+ margin: 0;
11656
+ font-family: var(--typography-h4-font-family);
11657
+ font-size: var(--typography-h4-font-size);
11658
+ font-weight: var(--typography-h4-font-weight);
11659
+ line-height: var(--typography-h4-line-height);
11660
+ letter-spacing: var(--eis-name-tracking);
11661
+ color: var(--eis-text-color);
11662
+ }
11663
+ .eis__description {
11664
+ margin: 0;
11665
+ font-family: var(--typography-body-md-font-family);
11666
+ font-size: var(--typography-body-md-font-size);
11667
+ font-weight: var(--typography-body-md-font-weight);
11668
+ line-height: var(--typography-body-md-line-height);
11669
+ color: var(--eis-text-color);
11670
+ }
11671
+ .eis__bullets {
11672
+ margin: 0;
11673
+ padding-inline-start: var(--spacing-24);
11674
+ display: flex;
11675
+ flex-direction: column;
11676
+ gap: var(--spacing-8);
11677
+ }
11678
+ .eis__bullets-item {
11679
+ font-family: var(--typography-body-md-font-family);
11680
+ font-size: var(--typography-body-md-font-size);
11681
+ font-weight: var(--typography-body-md-font-weight);
11682
+ line-height: var(--typography-body-md-line-height);
11683
+ color: var(--eis-text-color);
11684
+ }
11685
+ .eis__links {
11686
+ list-style: none;
11687
+ margin: 0;
11688
+ padding: 0;
11689
+ display: flex;
11690
+ flex-direction: row;
11691
+ flex-wrap: wrap;
11692
+ align-items: center;
11693
+ gap: var(--eis-links-gap);
11694
+ }
11695
+ .eis__links-item {
11696
+ display: flex;
11697
+ max-width: 100%;
11698
+ }
11699
+ .eis__link {
11700
+ white-space: normal;
11701
+ align-items: flex-start;
11702
+ text-align: left;
11703
+ }
11704
+ @media (min-width: 768px) {
11705
+ :root {
11706
+ --eis-padding-inline: var(--spacing-24);
11707
+ --eis-links-gap: var(--spacing-24);
11708
+ }
11709
+ }
11710
+ @media (min-width: 992px) {
11711
+ :root {
11712
+ --eis-padding-block-end: var(--spacing-112);
11713
+ }
11714
+ }
11715
+
11716
+ /* templates/CountryLinkGrid/CountryLinkGrid.css */
11717
+ :root {
11718
+ --clg-text-color: var(--text-primary);
11719
+ --clg-max-width: 1280px;
11720
+ --clg-padding-block: var(--spacing-56);
11721
+ --clg-padding-inline: var(--spacing-16);
11722
+ --clg-layout-gap: var(--spacing-48);
11723
+ --clg-layout-columns: 1fr;
11724
+ --clg-header-gap: var(--spacing-16);
11725
+ --clg-grid-columns: 2;
11726
+ --clg-grid-gap: var(--spacing-24);
11727
+ --clg-item-gap: var(--spacing-8);
11728
+ --clg-flag-width: 36px;
11729
+ --clg-flag-height: 24px;
11730
+ --clg-item-hover-opacity: 0.72;
11731
+ --clg-focus-ring-color: var(--color-coral-700);
11732
+ --clg-focus-ring-radius: var(--radius-xs);
11733
+ --clg-title-tracking: -0.02rem;
11734
+ }
11735
+ .clg {
11736
+ display: block;
11737
+ width: 100%;
11738
+ }
11739
+ .clg__inner {
11740
+ max-width: var(--clg-max-width);
11741
+ margin: 0 auto;
11742
+ padding: var(--clg-padding-block) var(--clg-padding-inline);
11743
+ box-sizing: border-box;
11744
+ }
11745
+ .clg__layout {
11746
+ display: grid;
11747
+ grid-template-columns: var(--clg-layout-columns);
11748
+ align-items: start;
11749
+ gap: var(--clg-layout-gap);
11750
+ }
11751
+ .clg__header {
11752
+ display: flex;
11753
+ flex-direction: column;
11754
+ align-items: flex-start;
11755
+ text-align: left;
11756
+ gap: var(--clg-header-gap);
11757
+ }
11758
+ .clg__title {
11759
+ margin: 0;
11760
+ font-family: var(--typography-h4-font-family);
11761
+ font-size: var(--typography-h4-font-size);
11762
+ font-weight: var(--typography-h4-font-weight);
11763
+ line-height: var(--typography-h4-line-height);
11764
+ letter-spacing: var(--clg-title-tracking);
11765
+ color: var(--clg-text-color);
11766
+ }
11767
+ .clg__description {
11768
+ margin: 0;
11769
+ font-family: var(--typography-body-md-font-family);
11770
+ font-size: var(--typography-body-md-font-size);
11771
+ font-weight: var(--typography-body-md-font-weight);
11772
+ line-height: var(--typography-body-md-line-height);
11773
+ color: var(--clg-text-color);
11774
+ }
11775
+ .clg__list {
11776
+ list-style: none;
11777
+ margin: 0;
11778
+ padding: 0;
11779
+ display: grid;
11780
+ grid-template-columns: repeat(var(--clg-grid-columns), minmax(0, 1fr));
11781
+ gap: var(--clg-grid-gap);
11782
+ }
11783
+ .clg__item {
11784
+ display: flex;
11785
+ min-width: 0;
11786
+ }
11787
+ .clg__link {
11788
+ display: flex;
11789
+ flex-direction: row;
11790
+ align-items: center;
11791
+ gap: var(--clg-item-gap);
11792
+ width: 100%;
11793
+ min-width: 0;
11794
+ text-decoration: none;
11795
+ color: var(--clg-text-color);
11796
+ font-family: var(--typography-body-sm-font-family);
11797
+ font-size: var(--typography-body-sm-font-size);
11798
+ font-weight: var(--typography-body-sm-font-weight);
11799
+ line-height: var(--typography-body-sm-line-height);
11800
+ transition: opacity 0.2s ease;
11801
+ }
11802
+ .clg__link:hover {
11803
+ opacity: var(--clg-item-hover-opacity);
11804
+ }
11805
+ .clg__link:focus-visible {
11806
+ outline: 2px solid var(--clg-focus-ring-color);
11807
+ outline-offset: 2px;
11808
+ border-radius: var(--clg-focus-ring-radius);
11809
+ }
11810
+ .clg__flag {
11811
+ flex-shrink: 0;
11812
+ width: var(--clg-flag-width);
11813
+ height: var(--clg-flag-height);
11814
+ object-fit: contain;
11815
+ display: block;
11816
+ }
11817
+ .clg__text {
11818
+ min-width: 0;
11819
+ overflow-wrap: anywhere;
11820
+ }
11821
+ @media (min-width: 560px) {
11822
+ :root {
11823
+ --clg-grid-columns: 3;
11824
+ }
11825
+ }
11826
+ @media (min-width: 768px) {
11827
+ :root {
11828
+ --clg-padding-inline: var(--spacing-24);
11829
+ --clg-grid-columns: 4;
11830
+ }
11831
+ }
11832
+ @media (min-width: 992px) {
11833
+ :root {
11834
+ --clg-padding-block: var(--spacing-112);
11835
+ --clg-layout-gap: var(--spacing-80);
11836
+ --clg-layout-columns: 1fr 1fr;
11837
+ --clg-grid-columns: 2;
11838
+ }
11839
+ }
11840
+ @media (min-width: 1200px) {
11841
+ :root {
11842
+ --clg-grid-columns: 3;
11843
+ }
11844
+ }
11845
+
11846
+ /* templates/DocumentChips/DocumentChips.css */
11847
+ :root {
11848
+ --dch-background: var(--background-surface-secondary);
11849
+ --dch-text-color: var(--text-primary);
11850
+ --dch-max-width: 1280px;
11851
+ --dch-padding-block: var(--spacing-56);
11852
+ --dch-padding-inline: var(--spacing-16);
11853
+ --dch-header-gap: var(--spacing-32);
11854
+ --dch-header-content-gap: var(--spacing-16);
11855
+ --dch-docs-columns: 1;
11856
+ --dch-docs-column-gap: var(--spacing-8);
11857
+ --dch-docs-row-gap: var(--spacing-16);
11858
+ --dch-doc-background: var(--background-surface);
11859
+ --dch-doc-radius: var(--radius-2xl);
11860
+ --dch-doc-padding-block: var(--spacing-16);
11861
+ --dch-doc-padding-inline: var(--spacing-16);
11862
+ --dch-doc-gap: var(--spacing-8);
11863
+ --dch-doc-icon-gap: var(--spacing-8);
11864
+ --dch-doc-icon-size: var(--spacing-24);
11865
+ --dch-doc-action-indent: var(--spacing-56);
11866
+ --dch-focus-ring-color: var(--border-focus);
11867
+ --dch-title-tracking: -0.02rem;
11868
+ }
11869
+ .dch {
11870
+ display: block;
11871
+ width: 100%;
11872
+ background-color: var(--dch-background);
11873
+ }
11874
+ .dch__inner {
11875
+ max-width: var(--dch-max-width);
11876
+ margin: 0 auto;
11877
+ padding: var(--dch-padding-block) var(--dch-padding-inline);
11878
+ box-sizing: border-box;
11879
+ display: flex;
11880
+ flex-direction: column;
11881
+ gap: var(--dch-header-gap);
11882
+ }
11883
+ .dch__header {
11884
+ display: flex;
11885
+ flex-direction: column;
11886
+ align-items: flex-start;
11887
+ gap: var(--dch-header-content-gap);
11888
+ }
11889
+ .dch__title {
11890
+ margin: 0;
11891
+ font-family: var(--typography-h4-font-family);
11892
+ font-size: var(--typography-h4-font-size);
11893
+ font-weight: var(--typography-h4-font-weight);
11894
+ line-height: var(--typography-h4-line-height);
11895
+ letter-spacing: var(--dch-title-tracking);
11896
+ color: var(--dch-text-color);
11897
+ }
11898
+ .dch__description {
11899
+ margin: 0;
11900
+ font-family: var(--typography-body-md-font-family);
11901
+ font-size: var(--typography-body-md-font-size);
11902
+ font-weight: var(--typography-body-md-font-weight);
11903
+ line-height: var(--typography-body-md-line-height);
11904
+ color: var(--dch-text-color);
11905
+ }
11906
+ .dch__groups {
11907
+ display: flex;
11908
+ flex-direction: column;
11909
+ width: 100%;
11910
+ }
11911
+ .dch .dch__group {
11912
+ max-width: none;
11913
+ }
11914
+ .dch__docs {
11915
+ list-style: none;
11916
+ margin: 0;
11917
+ padding: 0;
11918
+ display: grid;
11919
+ grid-template-columns: repeat(var(--dch-docs-columns), minmax(0, 1fr));
11920
+ column-gap: var(--dch-docs-column-gap);
11921
+ row-gap: var(--dch-docs-row-gap);
11922
+ }
11923
+ .dch__doc-item {
11924
+ display: flex;
11925
+ min-width: 0;
11926
+ }
11927
+ .dch__doc {
11928
+ display: flex;
11929
+ flex-direction: column;
11930
+ align-items: flex-start;
11931
+ justify-content: flex-start;
11932
+ gap: var(--dch-doc-gap);
11933
+ width: 100%;
11934
+ min-width: 0;
11935
+ box-sizing: border-box;
11936
+ padding: var(--dch-doc-padding-block) var(--dch-doc-padding-inline);
11937
+ border-radius: var(--dch-doc-radius);
11938
+ background-color: var(--dch-doc-background);
11939
+ color: var(--dch-text-color);
11940
+ }
11941
+ .dch__doc-link {
11942
+ display: flex;
11943
+ flex-direction: row;
11944
+ align-items: center;
11945
+ gap: var(--dch-doc-icon-gap);
11946
+ min-width: 0;
11947
+ color: inherit;
11948
+ text-decoration: none;
11949
+ }
11950
+ .dch__doc-link:focus-visible {
11951
+ outline: 2px solid var(--dch-focus-ring-color);
11952
+ outline-offset: 2px;
11953
+ border-radius: var(--radius-xs);
11954
+ }
11955
+ .dch__doc-link:hover .dch__doc-title {
11956
+ text-decoration: underline;
11957
+ }
11958
+ .dch__doc-icon {
11959
+ display: block;
11960
+ flex-shrink: 0;
11961
+ width: var(--dch-doc-icon-size);
11962
+ height: var(--dch-doc-icon-size);
11963
+ object-fit: contain;
11964
+ }
11965
+ .dch__doc-title {
11966
+ min-width: 0;
11967
+ font-family: var(--typography-body-md-font-family);
11968
+ font-size: var(--typography-body-md-font-size);
11969
+ font-weight: var(--font-weight-semi-bold);
11970
+ line-height: var(--typography-body-md-line-height);
11971
+ overflow-wrap: anywhere;
11972
+ }
11973
+ .dch__doc-action {
11974
+ display: flex;
11975
+ flex-shrink: 0;
11976
+ padding-inline-start: var(--dch-doc-action-indent);
11977
+ }
11978
+ @media (min-width: 768px) {
11979
+ :root {
11980
+ --dch-padding-inline: var(--spacing-24);
11981
+ --dch-doc-padding-inline: var(--spacing-24);
11982
+ --dch-doc-radius: var(--radius-full);
11983
+ --dch-doc-action-indent: var(--spacing-0);
11984
+ }
11985
+ .dch__doc {
11986
+ flex-direction: row;
11987
+ align-items: center;
11988
+ justify-content: space-between;
11989
+ }
11990
+ }
11991
+ @media (min-width: 992px) {
11992
+ :root {
11993
+ --dch-padding-block: var(--spacing-112);
11994
+ --dch-header-gap: var(--spacing-48);
11995
+ --dch-docs-columns: 2;
11996
+ }
11997
+ }
11998
+
11999
+ /* components/LinkModal/LinkModal.css */
12000
+ :root {
12001
+ --lm-scrim-color: var(--overlay-strong);
12002
+ --lm-scrim-blur: 4px;
12003
+ --lm-z-index: 9999;
12004
+ --lm-panel-background: var(--background-surface);
12005
+ --lm-panel-radius: var(--radius-xl);
12006
+ --lm-panel-shadow: var(--elevation-modal);
12007
+ --lm-panel-max-width: var(--content-width-846);
12008
+ --lm-panel-padding-block: var(--spacing-40);
12009
+ --lm-panel-padding-inline: var(--spacing-24);
12010
+ --lm-panel-gap: var(--spacing-24);
12011
+ --lm-panel-margin: var(--spacing-16);
12012
+ --lm-title-color: var(--text-primary);
12013
+ --lm-close-inset: var(--spacing-8);
12014
+ --lm-close-size: var(--spacing-48);
12015
+ --lm-close-glyph-size: var(--spacing-24);
12016
+ --lm-close-icon-color: var(--icon-primary);
12017
+ --lm-close-hover-background: var(--color-opacity-slate-8);
12018
+ --lm-close-active-background: var(--color-opacity-slate-16);
12019
+ --lm-focus-ring-color: var(--border-focus);
12020
+ }
12021
+ .lm {
12022
+ position: fixed;
12023
+ inset: 0;
12024
+ z-index: var(--lm-z-index);
12025
+ display: flex;
12026
+ align-items: center;
12027
+ justify-content: center;
12028
+ padding: var(--lm-panel-margin);
12029
+ box-sizing: border-box;
12030
+ overflow-y: auto;
12031
+ }
12032
+ .lm__scrim {
12033
+ position: fixed;
12034
+ inset: 0;
12035
+ background-color: var(--lm-scrim-color);
12036
+ -webkit-backdrop-filter: blur(var(--lm-scrim-blur));
12037
+ backdrop-filter: blur(var(--lm-scrim-blur));
12038
+ }
12039
+ .lm__panel {
12040
+ position: relative;
12041
+ z-index: 1;
12042
+ box-sizing: border-box;
12043
+ width: 100%;
12044
+ max-width: var(--lm-panel-max-width);
12045
+ max-height: calc(100dvh - (var(--lm-panel-margin) * 2));
12046
+ display: flex;
12047
+ flex-direction: column;
12048
+ align-items: center;
12049
+ gap: var(--lm-panel-gap);
12050
+ padding: var(--lm-panel-padding-block) var(--lm-panel-padding-inline);
12051
+ border-radius: var(--lm-panel-radius);
12052
+ background-color: var(--lm-panel-background);
12053
+ box-shadow: var(--lm-panel-shadow);
12054
+ outline: none;
12055
+ }
12056
+ .lm__panel:focus-visible {
12057
+ outline: 2px solid var(--lm-focus-ring-color);
12058
+ outline-offset: 2px;
12059
+ }
12060
+ .lm__close {
12061
+ position: absolute;
12062
+ top: var(--lm-close-inset);
12063
+ right: var(--lm-close-inset);
12064
+ display: flex;
12065
+ align-items: center;
12066
+ justify-content: center;
12067
+ width: var(--lm-close-size);
12068
+ height: var(--lm-close-size);
12069
+ box-sizing: border-box;
12070
+ padding: 0;
12071
+ border: none;
12072
+ border-radius: var(--radius-full);
12073
+ background: none;
12074
+ color: var(--lm-close-icon-color);
12075
+ cursor: pointer;
12076
+ outline: none;
12077
+ transition: background-color 100ms ease;
12078
+ }
12079
+ .lm__close:hover {
12080
+ background-color: var(--lm-close-hover-background);
12081
+ }
12082
+ .lm__close:active {
12083
+ background-color: var(--lm-close-active-background);
12084
+ }
12085
+ .lm__close:focus-visible {
12086
+ outline: 2px solid var(--lm-focus-ring-color);
12087
+ outline-offset: 2px;
12088
+ }
12089
+ .lm__close svg {
12090
+ width: var(--lm-close-glyph-size);
12091
+ height: var(--lm-close-glyph-size);
12092
+ }
12093
+ .lm__title {
12094
+ margin: 0;
12095
+ padding-inline: var(--lm-close-size);
12096
+ font-family: var(--typography-h5-font-family);
12097
+ font-size: var(--typography-h5-font-size);
12098
+ font-weight: var(--typography-h5-font-weight);
12099
+ line-height: var(--typography-h5-line-height);
12100
+ letter-spacing: var(--typography-h5-letter-spacing);
12101
+ color: var(--lm-title-color);
12102
+ text-align: center;
12103
+ }
12104
+ .lm__body {
12105
+ width: 100%;
12106
+ min-height: 0;
12107
+ overflow-y: auto;
12108
+ }
12109
+ @media (min-width: 768px) {
12110
+ :root {
12111
+ --lm-panel-padding-inline: var(--spacing-32);
12112
+ }
12113
+ }
12114
+ @media (min-width: 992px) {
12115
+ :root {
12116
+ --lm-panel-padding-block: var(--spacing-80);
12117
+ --lm-panel-padding-inline: var(--spacing-96);
12118
+ --lm-panel-gap: var(--spacing-40);
12119
+ }
12120
+ }
12121
+ @media (prefers-reduced-motion: reduce) {
12122
+ .lm__close {
12123
+ transition: none;
12124
+ }
12125
+ }
12126
+
12127
+ /* templates/LanguageSelectModal/LanguageSelectModal.css */
12128
+ :root {
12129
+ --lsm-grid-columns: 2;
12130
+ --lsm-grid-column-gap: var(--spacing-32);
12131
+ --lsm-grid-row-gap: var(--spacing-16);
12132
+ --lsm-option-gap: var(--spacing-8);
12133
+ --lsm-option-color: var(--text-primary);
12134
+ --lsm-flag-width: var(--spacing-24);
12135
+ --lsm-focus-ring-color: var(--border-focus);
12136
+ }
12137
+ .lsm__grid {
12138
+ list-style: none;
12139
+ margin: 0;
12140
+ padding: 0;
12141
+ width: 100%;
12142
+ min-height: 0;
12143
+ overflow-y: auto;
12144
+ display: grid;
12145
+ grid-template-columns: repeat(var(--lsm-grid-columns), minmax(0, 1fr));
12146
+ column-gap: var(--lsm-grid-column-gap);
12147
+ row-gap: var(--lsm-grid-row-gap);
12148
+ justify-content: center;
12149
+ }
12150
+ .lsm__grid-item {
12151
+ display: flex;
12152
+ min-width: 0;
12153
+ }
12154
+ .lsm__option {
12155
+ display: flex;
12156
+ flex-direction: row;
12157
+ align-items: center;
12158
+ gap: var(--lsm-option-gap);
12159
+ min-width: 0;
12160
+ color: var(--lsm-option-color);
12161
+ text-decoration: none;
12162
+ }
12163
+ .lsm__option:hover .lsm__option-label,
12164
+ .lsm__option:active .lsm__option-label {
12165
+ text-decoration: underline;
12166
+ }
12167
+ .lsm__option:focus-visible {
12168
+ outline: 2px solid var(--lsm-focus-ring-color);
12169
+ outline-offset: 2px;
12170
+ border-radius: var(--radius-xs);
12171
+ }
12172
+ .lsm__flag {
12173
+ display: block;
12174
+ flex-shrink: 0;
12175
+ width: var(--lsm-flag-width);
12176
+ height: auto;
12177
+ }
12178
+ .lsm__option-label {
12179
+ min-width: 0;
12180
+ font-family: var(--typography-body-sm-font-family);
12181
+ font-size: var(--typography-body-sm-font-size);
12182
+ font-weight: var(--typography-body-sm-font-weight);
12183
+ line-height: var(--typography-body-sm-line-height);
12184
+ overflow-wrap: anywhere;
12185
+ }
12186
+ @media (min-width: 768px) {
12187
+ :root {
12188
+ --lsm-grid-columns: 3;
12189
+ }
12190
+ }
12191
+ @media (min-width: 992px) {
12192
+ :root {
12193
+ --lsm-grid-column-gap: var(--spacing-80);
12194
+ }
12195
+ }
12196
+
12197
+ /* templates/AffiliatesSlider/AffiliatesSlider.css */
12198
+ :root {
12199
+ --afs-background: var(--background-surface);
12200
+ --afs-text-color: var(--text-primary);
12201
+ --afs-max-width: 1280px;
12202
+ --afs-padding-block: var(--spacing-56);
12203
+ --afs-padding-inline: var(--spacing-16);
12204
+ --afs-header-gap: var(--spacing-16);
12205
+ --afs-header-max-width: 40rem;
12206
+ --afs-controls-gap: var(--spacing-24);
12207
+ --afs-side-width: 12.5rem;
12208
+ --afs-side-padding: var(--spacing-24);
12209
+ --afs-slider-max-width: 25.5rem;
12210
+ --afs-track-height: var(--spacing-4);
12211
+ --afs-track-background: var(--color-slate-300);
12212
+ --afs-fill-background: var(--button-primary-background);
12213
+ --afs-handle-size: var(--spacing-24);
12214
+ --afs-handle-background: var(--button-primary-background);
12215
+ --afs-handle-shadow: 1px 1px 12px rgb(0 0 0 / 0.2);
12216
+ --afs-track-gradient-start: var(--color-slate-300);
12217
+ --afs-track-gradient-end: var(--color-slate-100);
12218
+ --afs-tick-padding-top: var(--spacing-20);
12219
+ --afs-disclaimer-background: color-mix(in srgb, var(--color-blue-600) 8%, transparent);
12220
+ --afs-disclaimer-radius: var(--radius-xl);
12221
+ --afs-disclaimer-padding: var(--spacing-16);
12222
+ --afs-disclaimer-gap: var(--spacing-8);
12223
+ --afs-disclaimer-icon-size: var(--spacing-24);
12224
+ --afs-disclaimer-max-width: 40rem;
12225
+ --afs-focus-ring-color: var(--border-focus);
12226
+ }
12227
+ .afs {
12228
+ display: block;
12229
+ width: 100%;
12230
+ background-color: var(--afs-background);
12231
+ }
12232
+ .afs__inner {
12233
+ max-width: var(--afs-max-width);
12234
+ margin: 0 auto;
12235
+ padding: var(--afs-padding-block) var(--afs-padding-inline);
12236
+ box-sizing: border-box;
12237
+ display: flex;
12238
+ flex-direction: column;
12239
+ align-items: center;
12240
+ gap: var(--afs-controls-gap);
12241
+ }
12242
+ .afs__header {
12243
+ display: flex;
12244
+ flex-direction: column;
12245
+ align-items: center;
12246
+ gap: var(--afs-header-gap);
12247
+ max-width: var(--afs-header-max-width);
12248
+ text-align: center;
12249
+ }
12250
+ .afs__title {
12251
+ margin: 0;
12252
+ font-family: var(--typography-h4-font-family);
12253
+ font-size: var(--typography-h4-font-size);
12254
+ font-weight: var(--typography-h4-font-weight);
12255
+ line-height: var(--typography-h4-line-height);
12256
+ color: var(--afs-text-color);
12257
+ }
12258
+ .afs__description {
12259
+ margin: 0;
12260
+ font-family: var(--typography-body-md-font-family);
12261
+ font-size: var(--typography-body-md-font-size);
12262
+ font-weight: var(--typography-body-md-font-weight);
12263
+ line-height: var(--typography-body-md-line-height);
12264
+ color: var(--afs-text-color);
12265
+ }
12266
+ .afs__form {
12267
+ width: 100%;
12268
+ display: flex;
12269
+ justify-content: center;
12270
+ }
12271
+ .afs__controls {
12272
+ width: 100%;
12273
+ display: grid;
12274
+ grid-template-columns: 1fr auto 1fr;
12275
+ grid-template-rows: auto auto;
12276
+ column-gap: var(--spacing-16);
12277
+ row-gap: var(--spacing-16);
12278
+ align-items: center;
12279
+ }
12280
+ .afs__referrals,
12281
+ .afs__income {
12282
+ display: flex;
12283
+ flex-direction: column;
12284
+ gap: var(--spacing-8);
12285
+ min-width: 0;
12286
+ }
12287
+ .afs__referrals {
12288
+ grid-column: 1;
12289
+ grid-row: 1;
12290
+ align-items: flex-start;
12291
+ }
12292
+ .afs__arrow {
12293
+ grid-column: 2;
12294
+ grid-row: 1;
12295
+ display: flex;
12296
+ align-items: center;
12297
+ justify-content: center;
12298
+ color: var(--afs-text-color);
12299
+ }
12300
+ .afs__income {
12301
+ grid-column: 3;
12302
+ grid-row: 1;
12303
+ align-items: flex-end;
12304
+ }
12305
+ .afs__metric {
12306
+ font-family: var(--typography-h2-font-family);
12307
+ font-size: var(--typography-h2-font-size);
12308
+ font-weight: var(--typography-h2-font-weight);
12309
+ line-height: var(--typography-h2-line-height);
12310
+ color: var(--afs-text-color);
12311
+ }
12312
+ .afs__income-value {
12313
+ display: flex;
12314
+ align-items: baseline;
12315
+ gap: var(--spacing-4);
12316
+ }
12317
+ .afs__metric-label {
12318
+ margin: 0;
12319
+ font-family: var(--typography-body-sm-font-family);
12320
+ font-size: var(--typography-body-sm-font-size);
12321
+ font-weight: var(--typography-body-sm-font-weight);
12322
+ line-height: var(--typography-body-sm-line-height);
12323
+ color: var(--afs-text-color);
12324
+ text-align: left;
12325
+ }
12326
+ .afs__metric-label--right {
12327
+ text-align: right;
12328
+ }
12329
+ .afs__slider-block {
12330
+ grid-column: 1 / -1;
12331
+ grid-row: 2;
12332
+ width: 100%;
12333
+ max-width: none;
12334
+ }
12335
+ .afs__track-gradient {
12336
+ display: block;
12337
+ width: 100%;
12338
+ height: 3rem;
12339
+ }
12340
+ .afs__track-wrap {
12341
+ margin-top: calc(var(--spacing-8) * -1);
12342
+ }
12343
+ .afs__track {
12344
+ position: relative;
12345
+ height: var(--afs-track-height);
12346
+ border-radius: var(--radius-full);
12347
+ background-color: var(--afs-track-background);
12348
+ }
12349
+ .afs__fill {
12350
+ position: absolute;
12351
+ inset-block: 0;
12352
+ inset-inline-start: 0;
12353
+ border-radius: var(--radius-full);
12354
+ background-color: var(--afs-fill-background);
12355
+ pointer-events: none;
12356
+ }
12357
+ .afs__handle {
12358
+ position: absolute;
12359
+ top: 50%;
12360
+ z-index: 1;
12361
+ width: var(--afs-handle-size);
12362
+ height: var(--afs-handle-size);
12363
+ border-radius: var(--radius-full);
12364
+ background-color: var(--afs-handle-background);
12365
+ box-shadow: var(--afs-handle-shadow);
12366
+ transform: translate(-50%, -50%);
12367
+ pointer-events: none;
12368
+ }
12369
+ .afs__input {
12370
+ position: absolute;
12371
+ inset: 0;
12372
+ z-index: 2;
12373
+ width: 100%;
12374
+ height: calc(var(--afs-handle-size) + var(--spacing-16));
12375
+ margin: calc(var(--spacing-8) * -1) 0;
12376
+ opacity: 0;
12377
+ cursor: grab;
12378
+ }
12379
+ .afs__track:focus-within {
12380
+ outline: 2px solid var(--afs-focus-ring-color);
12381
+ outline-offset: 4px;
12382
+ }
12383
+ .afs__ticks {
12384
+ display: flex;
12385
+ justify-content: space-between;
12386
+ padding-top: var(--afs-tick-padding-top);
12387
+ }
12388
+ .afs__tick {
12389
+ font-family: var(--typography-body-sm-font-family);
12390
+ font-size: var(--typography-body-sm-font-size);
12391
+ font-weight: var(--typography-body-sm-font-weight);
12392
+ line-height: var(--typography-body-sm-line-height);
12393
+ color: var(--afs-text-color);
12394
+ }
12395
+ .afs__disclaimer {
12396
+ display: flex;
12397
+ align-items: flex-start;
12398
+ gap: var(--afs-disclaimer-gap);
12399
+ box-sizing: border-box;
12400
+ width: 100%;
12401
+ max-width: var(--afs-disclaimer-max-width);
12402
+ padding: var(--afs-disclaimer-padding);
12403
+ border-radius: var(--afs-disclaimer-radius);
12404
+ background-color: var(--afs-disclaimer-background);
12405
+ }
12406
+ .afs__disclaimer-icon {
12407
+ flex-shrink: 0;
12408
+ width: var(--afs-disclaimer-icon-size);
12409
+ height: var(--afs-disclaimer-icon-size);
12410
+ margin-block-start: -0.125rem;
12411
+ }
12412
+ .afs__disclaimer-text {
12413
+ margin: 0;
12414
+ font-family: var(--typography-body-sm-font-family);
12415
+ font-size: var(--typography-body-sm-font-size);
12416
+ font-weight: var(--typography-body-sm-font-weight);
12417
+ line-height: var(--typography-body-sm-line-height);
12418
+ color: var(--afs-text-color);
12419
+ }
12420
+ @media (min-width: 768px) {
12421
+ :root {
12422
+ --afs-padding-inline: var(--spacing-24);
12423
+ }
12424
+ }
12425
+ @media (min-width: 992px) {
12426
+ :root {
12427
+ --afs-padding-block: var(--spacing-112);
12428
+ }
12429
+ .afs__controls {
12430
+ display: flex;
12431
+ flex-direction: row;
12432
+ align-items: center;
12433
+ justify-content: center;
12434
+ gap: 0;
12435
+ }
12436
+ .afs__referrals,
12437
+ .afs__arrow,
12438
+ .afs__income,
12439
+ .afs__slider-block {
12440
+ grid-column: unset;
12441
+ grid-row: unset;
12442
+ }
12443
+ .afs__referrals {
12444
+ width: var(--afs-side-width);
12445
+ padding-inline-end: var(--afs-side-padding);
12446
+ }
12447
+ .afs__income {
12448
+ width: var(--afs-side-width);
12449
+ padding-inline-start: var(--afs-side-padding);
12450
+ }
12451
+ .afs__slider-block {
12452
+ flex: 0 1 var(--afs-slider-max-width);
12453
+ max-width: var(--afs-slider-max-width);
12454
+ }
12455
+ }
12456
+ @media (prefers-reduced-motion: reduce) {
12457
+ .afs__input {
12458
+ cursor: pointer;
12459
+ }
12460
+ }
11308
12461
  /*# sourceMappingURL=index.css.map */