@deriv-web-design/ui 0.0.3 → 0.0.5

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
@@ -676,11 +676,171 @@
676
676
  outline-offset: 2px;
677
677
  }
678
678
 
679
+ /* primitives/BottomSheet/BottomSheet.css */
680
+ .bs-overlay {
681
+ position: fixed;
682
+ inset: 0;
683
+ z-index: 9999;
684
+ background: var(--bottom-sheet-overlay-bg);
685
+ display: flex;
686
+ align-items: flex-end;
687
+ }
688
+ .bs-sheet {
689
+ width: 100%;
690
+ background: var(--bottom-sheet-bg);
691
+ border-radius: var(--radius-xl) var(--radius-xl) 0 0;
692
+ box-shadow: var(--bottom-sheet-shadow);
693
+ overflow: hidden;
694
+ display: flex;
695
+ flex-direction: column;
696
+ max-height: 90dvh;
697
+ animation: bs-slide-up 280ms cubic-bezier(0.32, 0.72, 0, 1) forwards;
698
+ }
699
+ @keyframes bs-slide-up {
700
+ from {
701
+ transform: translateY(100%);
702
+ }
703
+ to {
704
+ transform: translateY(0);
705
+ }
706
+ }
707
+ .bs-handle-container {
708
+ display: flex;
709
+ justify-content: center;
710
+ align-items: center;
711
+ padding: var(--spacing-8) 0;
712
+ flex-shrink: 0;
713
+ }
714
+ .bs-handle-bar {
715
+ width: 48px;
716
+ height: 4px;
717
+ border-radius: var(--radius-full);
718
+ background: var(--bottom-sheet-handle-color);
719
+ }
720
+ .bs-header {
721
+ display: flex;
722
+ align-items: center;
723
+ gap: var(--spacing-8);
724
+ height: 48px;
725
+ padding: 0 var(--spacing-16);
726
+ flex-shrink: 0;
727
+ }
728
+ .bs-header-spacer {
729
+ width: 48px;
730
+ height: 48px;
731
+ flex-shrink: 0;
732
+ }
733
+ .bs-title {
734
+ flex: 1;
735
+ text-align: center;
736
+ font-family: var(--font-family-base);
737
+ font-weight: var(--font-weight-extra-bold);
738
+ font-size: var(--font-size-xl);
739
+ line-height: var(--line-height-xl);
740
+ color: var(--bottom-sheet-title-color);
741
+ margin: 0;
742
+ overflow: hidden;
743
+ text-overflow: ellipsis;
744
+ white-space: nowrap;
745
+ min-width: 0;
746
+ }
747
+ .bs-close-container {
748
+ flex-shrink: 0;
749
+ }
750
+ .bs-close-btn {
751
+ position: relative;
752
+ display: flex;
753
+ align-items: center;
754
+ justify-content: center;
755
+ width: 48px;
756
+ height: 48px;
757
+ border-radius: var(--radius-full);
758
+ border: none;
759
+ background: transparent;
760
+ cursor: pointer;
761
+ color: var(--bottom-sheet-close-icon-color);
762
+ transition: background-color 100ms ease;
763
+ outline: none;
764
+ box-sizing: border-box;
765
+ }
766
+ .bs-close-btn:hover {
767
+ background: var(--bottom-sheet-close-hover-bg);
768
+ }
769
+ .bs-close-btn:active {
770
+ background: var(--bottom-sheet-close-active-bg);
771
+ }
772
+ .bs-close-btn:focus-visible::after {
773
+ content: "";
774
+ position: absolute;
775
+ inset: -3px;
776
+ border-radius: var(--radius-full);
777
+ border: 2px solid var(--bottom-sheet-focus-ring-color);
778
+ pointer-events: none;
779
+ }
780
+ .bs-body {
781
+ flex: 1;
782
+ overflow-y: auto;
783
+ min-height: 0;
784
+ }
785
+ .bs-actions {
786
+ display: flex;
787
+ flex-direction: column;
788
+ gap: var(--spacing-8);
789
+ padding: var(--spacing-16);
790
+ flex-shrink: 0;
791
+ }
792
+ .bs-action-primary {
793
+ width: 100%;
794
+ height: 48px;
795
+ border-radius: var(--radius-full);
796
+ border: none;
797
+ background: var(--bottom-sheet-action-primary-bg);
798
+ color: var(--bottom-sheet-action-primary-text);
799
+ font-family: var(--font-family-base);
800
+ font-weight: var(--font-weight-extra-bold);
801
+ font-size: var(--font-size-md);
802
+ cursor: pointer;
803
+ transition: background-color 100ms ease;
804
+ box-sizing: border-box;
805
+ }
806
+ .bs-action-primary:hover {
807
+ background: var(--bottom-sheet-action-primary-bg-hover);
808
+ }
809
+ .bs-action-primary:active {
810
+ background: var(--bottom-sheet-action-primary-bg-active);
811
+ }
812
+ .bs-action-secondary {
813
+ width: 100%;
814
+ height: 48px;
815
+ border-radius: var(--radius-full);
816
+ border: 1px solid var(--bottom-sheet-action-secondary-border);
817
+ background: transparent;
818
+ color: var(--bottom-sheet-action-secondary-text);
819
+ font-family: var(--font-family-base);
820
+ font-weight: var(--font-weight-extra-bold);
821
+ font-size: var(--font-size-md);
822
+ cursor: pointer;
823
+ transition: background-color 100ms ease;
824
+ box-sizing: border-box;
825
+ }
826
+ .bs-action-secondary:hover {
827
+ background: var(--bottom-sheet-action-secondary-hover-bg);
828
+ }
829
+ .bs-action-secondary:active {
830
+ background: var(--bottom-sheet-action-secondary-active-bg);
831
+ }
832
+ @media (min-width: 768px) {
833
+ .bs-overlay {
834
+ display: none;
835
+ }
836
+ }
837
+
679
838
  /* primitives/Breadcrumb/Breadcrumb.css */
680
839
  .bc-list {
681
840
  display: flex;
682
- flex-wrap: wrap;
841
+ flex-wrap: nowrap;
683
842
  align-items: center;
843
+ overflow: hidden;
684
844
  gap: var(--spacing-8);
685
845
  list-style: none;
686
846
  margin: 0;
@@ -725,6 +885,13 @@
725
885
  .bc-current {
726
886
  color: var(--breadcrumb-text-current-color);
727
887
  white-space: nowrap;
888
+ overflow: hidden;
889
+ text-overflow: ellipsis;
890
+ }
891
+ .bc-item:last-child {
892
+ min-width: 0;
893
+ flex-shrink: 1;
894
+ overflow: hidden;
728
895
  }
729
896
  .bc-separator {
730
897
  display: inline-flex;
@@ -775,12 +942,39 @@
775
942
  .bc-list.collapsible .bc-middleItem {
776
943
  display: none;
777
944
  }
778
- .bc-list.collapsible.expanded .bc-ellipsisItem {
779
- display: none;
780
- }
781
- .bc-list.collapsible.expanded .bc-middleItem {
782
- display: flex;
783
- }
945
+ }
946
+ .bc-sheet-list {
947
+ list-style: none;
948
+ margin: 0;
949
+ padding: 0;
950
+ padding-bottom: var(--spacing-24);
951
+ }
952
+ .bc-sheet-item {
953
+ border-bottom: 1px solid var(--bottom-sheet-list-item-border);
954
+ }
955
+ .bc-sheet-item:last-child {
956
+ border-bottom: none;
957
+ }
958
+ .bc-sheet-link {
959
+ display: flex;
960
+ align-items: center;
961
+ height: 72px;
962
+ padding: 0 var(--spacing-24);
963
+ font-family: var(--font-family-base);
964
+ font-size: var(--font-size-md);
965
+ font-weight: var(--font-weight-regular);
966
+ color: var(--breadcrumb-text-color);
967
+ text-decoration: none;
968
+ white-space: nowrap;
969
+ overflow: hidden;
970
+ text-overflow: ellipsis;
971
+ }
972
+ .bc-sheet-link:hover {
973
+ text-decoration: underline;
974
+ }
975
+ .bc-sheet-link:focus-visible {
976
+ outline: 2px solid var(--breadcrumb-focus-ring-color);
977
+ outline-offset: -2px;
784
978
  }
785
979
 
786
980
  /* primitives/ChipDropdown/ChipDropdown.css */
@@ -932,6 +1126,27 @@
932
1126
  flex-shrink: 0;
933
1127
  color: var(--chip-dropdown-item-selected-check);
934
1128
  }
1129
+ .cd-list--sheet {
1130
+ position: static;
1131
+ border: none;
1132
+ border-radius: 0;
1133
+ box-shadow: none;
1134
+ padding: 0;
1135
+ background: transparent;
1136
+ }
1137
+ .cd-list--sheet .cd-item {
1138
+ height: 72px;
1139
+ padding: 0 var(--spacing-24);
1140
+ border-radius: 0;
1141
+ border-bottom: 1px solid var(--bottom-sheet-list-item-border);
1142
+ font-size: var(--font-size-md);
1143
+ }
1144
+ .cd-list--sheet .cd-item:last-child {
1145
+ border-bottom: none;
1146
+ }
1147
+ .cd-list--sheet .cd-item.itemSelected .cd-itemLabel {
1148
+ font-weight: var(--font-weight-extra-bold);
1149
+ }
935
1150
 
936
1151
  /* components/Card/CardPrimaryVariant.css */
937
1152
  .card-primary {
@@ -1089,6 +1304,10 @@
1089
1304
  border-radius: inherit;
1090
1305
  pointer-events: none;
1091
1306
  display: block;
1307
+ transition: transform 0.25s ease-in-out;
1308
+ }
1309
+ .card-thumbnail:hover .ct-thumbnailImage {
1310
+ transform: scale(1.1);
1092
1311
  }
1093
1312
  .card-thumbnail .ct-playButton {
1094
1313
  position: absolute;
@@ -1325,4 +1544,2031 @@
1325
1544
  min-width: 0;
1326
1545
  }
1327
1546
  }
1547
+
1548
+ /* templates/Footer/Footer.css */
1549
+ .footer {
1550
+ background-color: var(--footer-background);
1551
+ width: 100%;
1552
+ font-family: var(--font-family-base);
1553
+ }
1554
+ .footer__inner {
1555
+ display: flex;
1556
+ flex-direction: column;
1557
+ align-items: center;
1558
+ gap: var(--spacing-32);
1559
+ padding: var(--spacing-32) var(--spacing-16);
1560
+ width: 100%;
1561
+ max-width: 640px;
1562
+ min-width: 320px;
1563
+ margin: 0 auto;
1564
+ box-sizing: border-box;
1565
+ overflow: hidden;
1566
+ }
1567
+ .footer__header {
1568
+ display: flex;
1569
+ align-items: center;
1570
+ justify-content: center;
1571
+ gap: var(--spacing-24);
1572
+ border-bottom: 1px solid var(--footer-header-divider);
1573
+ padding-bottom: var(--spacing-32);
1574
+ width: 100%;
1575
+ }
1576
+ .footer__logo-wrapper {
1577
+ display: flex;
1578
+ align-items: center;
1579
+ flex-shrink: 0;
1580
+ }
1581
+ .footer__logo {
1582
+ height: 20px;
1583
+ width: auto;
1584
+ min-width: 1px;
1585
+ display: block;
1586
+ }
1587
+ .footer__social {
1588
+ display: flex;
1589
+ align-items: center;
1590
+ gap: var(--spacing-8);
1591
+ flex-shrink: 0;
1592
+ }
1593
+ .footer__social--in-header {
1594
+ display: none;
1595
+ }
1596
+ .footer__social--standalone {
1597
+ display: flex;
1598
+ align-items: center;
1599
+ justify-content: center;
1600
+ gap: var(--spacing-8);
1601
+ width: 100%;
1602
+ }
1603
+ .footer__social-icon {
1604
+ display: flex;
1605
+ align-items: center;
1606
+ justify-content: center;
1607
+ width: 32px;
1608
+ height: 32px;
1609
+ color: var(--footer-social-icon-color);
1610
+ text-decoration: none;
1611
+ flex-shrink: 0;
1612
+ overflow: hidden;
1613
+ }
1614
+ .footer__social-icon svg {
1615
+ width: 20px;
1616
+ height: 20px;
1617
+ display: block;
1618
+ }
1619
+ .footer__social-icon:hover {
1620
+ opacity: 0.8;
1621
+ }
1622
+ .footer__ai-bar.footer__ai-bar--inline {
1623
+ display: none;
1624
+ }
1625
+ .footer__ai-section {
1626
+ border-bottom: 1px solid var(--footer-header-divider);
1627
+ padding-bottom: var(--spacing-32);
1628
+ width: 100%;
1629
+ box-sizing: border-box;
1630
+ }
1631
+ .footer__ai-bar {
1632
+ background-color: var(--footer-surface);
1633
+ border-radius: var(--radius-xl);
1634
+ padding: var(--spacing-16);
1635
+ display: flex;
1636
+ align-items: center;
1637
+ gap: var(--spacing-16);
1638
+ }
1639
+ .footer__ai-bar--block {
1640
+ flex-direction: column;
1641
+ }
1642
+ .footer__ai-bar-label {
1643
+ font-size: var(--font-size-xs);
1644
+ font-weight: var(--font-weight-regular);
1645
+ line-height: var(--line-height-xs);
1646
+ color: var(--color-slate-50);
1647
+ text-align: center;
1648
+ white-space: nowrap;
1649
+ }
1650
+ .footer__ai-bar-icons {
1651
+ display: flex;
1652
+ align-items: center;
1653
+ gap: var(--spacing-8);
1654
+ }
1655
+ .footer__ai-icon {
1656
+ display: flex;
1657
+ align-items: center;
1658
+ justify-content: center;
1659
+ width: 32px;
1660
+ height: 32px;
1661
+ flex-shrink: 0;
1662
+ text-decoration: none;
1663
+ }
1664
+ .footer__ai-icon img {
1665
+ width: 24px;
1666
+ height: 24px;
1667
+ border-radius: var(--radius-md);
1668
+ display: block;
1669
+ object-fit: cover;
1670
+ }
1671
+ .footer__nav--columns {
1672
+ display: none;
1673
+ }
1674
+ .footer__column {
1675
+ display: flex;
1676
+ flex-direction: column;
1677
+ gap: var(--spacing-32);
1678
+ flex: 1 0 0;
1679
+ }
1680
+ .footer__nav-section {
1681
+ display: flex;
1682
+ flex-direction: column;
1683
+ gap: var(--spacing-16);
1684
+ }
1685
+ .footer__nav-title {
1686
+ font-family: var(--font-family-base);
1687
+ font-size: var(--font-size-md);
1688
+ font-weight: var(--font-weight-extra-bold);
1689
+ line-height: var(--line-height-md);
1690
+ color: var(--footer-nav-title-color);
1691
+ margin: 0;
1692
+ white-space: nowrap;
1693
+ }
1694
+ .footer__nav-links {
1695
+ list-style: none;
1696
+ padding: 0;
1697
+ margin: 0;
1698
+ display: flex;
1699
+ flex-direction: column;
1700
+ gap: var(--spacing-16);
1701
+ }
1702
+ .footer__nav--accordion {
1703
+ display: flex;
1704
+ flex-direction: column;
1705
+ width: 100%;
1706
+ }
1707
+ .footer__accordion-item {
1708
+ width: 100%;
1709
+ }
1710
+ .footer__accordion-toggle {
1711
+ display: flex;
1712
+ align-items: center;
1713
+ justify-content: space-between;
1714
+ width: 100%;
1715
+ padding: var(--spacing-16) 0;
1716
+ background: none;
1717
+ border: none;
1718
+ cursor: pointer;
1719
+ text-align: left;
1720
+ font-family: var(--font-family-base);
1721
+ }
1722
+ .footer__accordion-label {
1723
+ font-size: var(--font-size-md);
1724
+ font-weight: var(--font-weight-regular);
1725
+ line-height: var(--line-height-md);
1726
+ color: var(--footer-accordion-text-color);
1727
+ }
1728
+ .footer__accordion-chevron {
1729
+ display: flex;
1730
+ align-items: center;
1731
+ justify-content: center;
1732
+ width: 24px;
1733
+ height: 24px;
1734
+ color: var(--footer-accordion-chevron-color);
1735
+ flex-shrink: 0;
1736
+ border-radius: var(--radius-md);
1737
+ transition: transform 150ms ease;
1738
+ }
1739
+ .footer__accordion-item--open .footer__accordion-chevron {
1740
+ transform: rotate(180deg);
1741
+ }
1742
+ .footer__accordion-links {
1743
+ list-style: none;
1744
+ padding: 0 0 var(--spacing-8) 0;
1745
+ margin: 0;
1746
+ display: flex;
1747
+ flex-direction: column;
1748
+ gap: var(--spacing-16);
1749
+ }
1750
+ .footer__nav-link {
1751
+ display: inline-flex;
1752
+ align-items: center;
1753
+ gap: var(--spacing-8);
1754
+ font-family: var(--font-family-base);
1755
+ font-size: var(--font-size-sm);
1756
+ font-weight: var(--font-weight-regular);
1757
+ line-height: var(--line-height-md);
1758
+ color: var(--footer-nav-link-color);
1759
+ text-decoration: none;
1760
+ white-space: nowrap;
1761
+ }
1762
+ .footer__nav-link:hover {
1763
+ opacity: 0.8;
1764
+ }
1765
+ .footer__nav-link svg {
1766
+ width: 12px;
1767
+ height: 12px;
1768
+ flex-shrink: 0;
1769
+ }
1770
+ .footer__sidebar {
1771
+ display: none;
1772
+ }
1773
+ .footer__deriv-go-card,
1774
+ .footer__deriv-go-banner {
1775
+ background-color: var(--footer-surface);
1776
+ border-radius: var(--radius-xl);
1777
+ padding: var(--spacing-24);
1778
+ display: flex;
1779
+ flex-direction: column;
1780
+ gap: var(--spacing-16);
1781
+ box-sizing: border-box;
1782
+ }
1783
+ .footer__deriv-go-banner {
1784
+ width: 100%;
1785
+ }
1786
+ .footer__deriv-go-banner-info {
1787
+ display: flex;
1788
+ flex-direction: column;
1789
+ gap: var(--spacing-8);
1790
+ }
1791
+ .footer__deriv-go-banner-badges {
1792
+ width: 100%;
1793
+ }
1794
+ .footer__deriv-go-header {
1795
+ display: flex;
1796
+ align-items: center;
1797
+ gap: var(--spacing-8);
1798
+ }
1799
+ .footer__deriv-go-logo {
1800
+ width: 24px;
1801
+ height: 24px;
1802
+ display: block;
1803
+ flex-shrink: 0;
1804
+ overflow: hidden;
1805
+ }
1806
+ .footer__deriv-go-title {
1807
+ font-family: var(--font-family-base);
1808
+ font-size: var(--font-size-md);
1809
+ font-weight: var(--font-weight-extra-bold);
1810
+ line-height: var(--line-height-md);
1811
+ color: var(--color-slate-50);
1812
+ white-space: nowrap;
1813
+ }
1814
+ .footer__deriv-go-desc {
1815
+ font-family: var(--font-family-base);
1816
+ font-size: var(--font-size-sm);
1817
+ font-weight: var(--font-weight-regular);
1818
+ line-height: var(--line-height-md);
1819
+ color: var(--color-slate-50);
1820
+ margin: 0;
1821
+ }
1822
+ .footer__deriv-go-qr {
1823
+ display: flex;
1824
+ align-items: center;
1825
+ gap: var(--spacing-8);
1826
+ }
1827
+ .footer__deriv-go-qr-img {
1828
+ width: 64px;
1829
+ height: 64px;
1830
+ display: block;
1831
+ flex-shrink: 0;
1832
+ }
1833
+ .footer__deriv-go-qr-icon {
1834
+ width: 64px;
1835
+ height: 64px;
1836
+ display: block;
1837
+ flex-shrink: 0;
1838
+ }
1839
+ .footer__deriv-go-qr-icon svg {
1840
+ display: block;
1841
+ width: 100%;
1842
+ height: 100%;
1843
+ }
1844
+ .footer__deriv-go-qr-label {
1845
+ font-family: var(--font-family-base);
1846
+ font-size: var(--font-size-sm);
1847
+ font-weight: var(--font-weight-regular);
1848
+ line-height: var(--line-height-md);
1849
+ color: var(--color-slate-50);
1850
+ }
1851
+ .footer__app-badges {
1852
+ display: flex;
1853
+ flex-direction: column;
1854
+ gap: var(--spacing-8);
1855
+ align-items: stretch;
1856
+ }
1857
+ .footer__app-badge {
1858
+ display: flex;
1859
+ align-items: center;
1860
+ justify-content: center;
1861
+ border: 1px solid var(--footer-app-badge-border);
1862
+ border-radius: var(--radius-sm);
1863
+ padding: var(--spacing-4) var(--spacing-8);
1864
+ min-height: 36px;
1865
+ text-decoration: none;
1866
+ box-sizing: border-box;
1867
+ }
1868
+ .footer__app-badge img {
1869
+ display: block;
1870
+ max-height: 24px;
1871
+ width: auto;
1872
+ }
1873
+ .footer__app-badge-svg {
1874
+ display: block;
1875
+ width: 100%;
1876
+ text-decoration: none;
1877
+ }
1878
+ .footer__app-badge-svg svg {
1879
+ display: block;
1880
+ width: 100%;
1881
+ height: auto;
1882
+ }
1883
+ .footer__app-note {
1884
+ font-family: var(--font-family-base);
1885
+ font-size: var(--font-size-xs);
1886
+ font-weight: var(--font-weight-regular);
1887
+ line-height: var(--line-height-normal);
1888
+ color: var(--color-slate-50);
1889
+ margin: 0;
1890
+ }
1891
+ .footer__investors-card {
1892
+ background-color: var(--footer-surface);
1893
+ border-radius: var(--radius-xl);
1894
+ padding: var(--spacing-16);
1895
+ display: flex;
1896
+ align-items: flex-end;
1897
+ justify-content: flex-end;
1898
+ box-sizing: border-box;
1899
+ }
1900
+ .footer__investors-stacked {
1901
+ display: flex;
1902
+ align-items: center;
1903
+ justify-content: center;
1904
+ width: 100%;
1905
+ }
1906
+ .footer__investors-img {
1907
+ height: 32px;
1908
+ width: 160px;
1909
+ display: block;
1910
+ object-fit: contain;
1911
+ }
1912
+ .footer__legal-block {
1913
+ display: flex;
1914
+ flex-direction: column;
1915
+ gap: var(--spacing-16);
1916
+ width: 100%;
1917
+ }
1918
+ .footer__license {
1919
+ font-family: var(--font-family-base);
1920
+ font-size: var(--font-size-sm);
1921
+ font-weight: var(--font-weight-regular);
1922
+ line-height: var(--line-height-md);
1923
+ color: var(--footer-legal-text-color);
1924
+ width: 100%;
1925
+ }
1926
+ .footer__license p {
1927
+ margin: 0 0 var(--spacing-16) 0;
1928
+ }
1929
+ .footer__license p:last-child {
1930
+ margin-bottom: 0;
1931
+ }
1932
+ .footer__license a {
1933
+ color: var(--footer-legal-text-color);
1934
+ text-decoration: underline;
1935
+ }
1936
+ .footer__risk-warning {
1937
+ background-color: var(--footer-surface);
1938
+ border-radius: var(--radius-md);
1939
+ padding: var(--spacing-16);
1940
+ box-sizing: border-box;
1941
+ width: 100%;
1942
+ }
1943
+ .footer__risk-warning-text {
1944
+ font-family: var(--font-family-base);
1945
+ font-size: var(--font-size-sm);
1946
+ font-weight: var(--font-weight-regular);
1947
+ line-height: var(--line-height-md);
1948
+ color: var(--footer-legal-text-color);
1949
+ margin: 0;
1950
+ }
1951
+ @media (min-width: 768px) {
1952
+ .footer__inner {
1953
+ max-width: 1280px;
1954
+ min-width: 641px;
1955
+ padding: var(--spacing-32) var(--spacing-24);
1956
+ }
1957
+ .footer__header {
1958
+ justify-content: space-between;
1959
+ }
1960
+ .footer__social--in-header {
1961
+ display: flex;
1962
+ }
1963
+ .footer__social--standalone {
1964
+ display: none;
1965
+ }
1966
+ .footer__ai-section {
1967
+ display: none;
1968
+ }
1969
+ .footer__deriv-go-banner {
1970
+ flex-direction: row;
1971
+ align-items: flex-start;
1972
+ gap: var(--spacing-24);
1973
+ }
1974
+ .footer__deriv-go-banner-info {
1975
+ flex: 1 1 auto;
1976
+ }
1977
+ .footer__deriv-go-banner-badges {
1978
+ flex: 0 0 280px;
1979
+ width: 280px;
1980
+ }
1981
+ }
1982
+ @media (min-width: 992px) {
1983
+ .footer__inner {
1984
+ max-width: 1280px;
1985
+ padding: var(--spacing-48) var(--spacing-32);
1986
+ gap: var(--spacing-40);
1987
+ }
1988
+ .footer__header {
1989
+ border-bottom-color: var(--footer-divider-desktop);
1990
+ }
1991
+ .footer__ai-bar.footer__ai-bar--inline {
1992
+ display: flex;
1993
+ flex-direction: row;
1994
+ align-items: center;
1995
+ padding-top: var(--spacing-16);
1996
+ padding-bottom: var(--spacing-16);
1997
+ gap: var(--spacing-16);
1998
+ }
1999
+ .footer__ai-section {
2000
+ display: none;
2001
+ }
2002
+ .footer__nav--columns {
2003
+ display: flex;
2004
+ gap: var(--spacing-24);
2005
+ align-items: flex-start;
2006
+ width: 100%;
2007
+ }
2008
+ .footer__nav--accordion {
2009
+ display: none;
2010
+ }
2011
+ .footer__sidebar {
2012
+ display: flex;
2013
+ flex-direction: column;
2014
+ gap: var(--spacing-8);
2015
+ align-items: flex-start;
2016
+ flex-shrink: 0;
2017
+ width: 192px;
2018
+ }
2019
+ .footer__deriv-go-card {
2020
+ width: 192px;
2021
+ }
2022
+ .footer__deriv-go-banner {
2023
+ display: none;
2024
+ }
2025
+ .footer__investors-stacked {
2026
+ display: none;
2027
+ }
2028
+ .footer__legal-block {
2029
+ align-items: flex-start;
2030
+ }
2031
+ }
2032
+
2033
+ /* templates/Hero/Hero.css */
2034
+ :root {
2035
+ --hero-dark-bg: var(--color-slate-1200);
2036
+ --hero-light-bg: var(--color-slate-75);
2037
+ --hero-text-light: var(--color-slate-50);
2038
+ --hero-text-dark: var(--color-slate-1200);
2039
+ --hero-subtitle-size: var(--font-size-md);
2040
+ --hero-subtitle-lh: var(--line-height-md);
2041
+ --hero-title-size-mobile: var(--font-size-4xl);
2042
+ --hero-title-lh-mobile: var(--line-height-4xl);
2043
+ --hero-title-size: var(--font-size-5xl);
2044
+ --hero-title-lh: var(--line-height-5xl);
2045
+ --hero-body-size: var(--font-size-sm);
2046
+ --hero-body-lh: var(--line-height-md);
2047
+ }
2048
+ .hero {
2049
+ position: relative;
2050
+ width: 100%;
2051
+ font-family: var(--font-family-base);
2052
+ box-sizing: border-box;
2053
+ overflow: hidden;
2054
+ }
2055
+ .hero__bg-image {
2056
+ position: absolute;
2057
+ inset: 0;
2058
+ width: 100%;
2059
+ height: 100%;
2060
+ object-fit: cover;
2061
+ object-position: center;
2062
+ pointer-events: none;
2063
+ display: block;
2064
+ z-index: 0;
2065
+ }
2066
+ .hero__overlay {
2067
+ position: absolute;
2068
+ inset: 0;
2069
+ pointer-events: none;
2070
+ z-index: 2;
2071
+ }
2072
+ .hero__inner {
2073
+ position: relative;
2074
+ z-index: 3;
2075
+ width: 100%;
2076
+ max-width: 1280px;
2077
+ margin: 0 auto;
2078
+ box-sizing: border-box;
2079
+ padding: var(--spacing-24) var(--spacing-16);
2080
+ }
2081
+ .hero__text {
2082
+ display: flex;
2083
+ flex-direction: column;
2084
+ gap: var(--spacing-16);
2085
+ }
2086
+ .hero__subtitle {
2087
+ font-size: var(--hero-subtitle-size);
2088
+ font-weight: var(--font-weight-extra-bold);
2089
+ line-height: var(--hero-subtitle-lh);
2090
+ margin: 0;
2091
+ }
2092
+ .hero__title {
2093
+ font-size: var(--hero-title-size-mobile);
2094
+ font-weight: var(--font-weight-extra-bold);
2095
+ line-height: var(--hero-title-lh-mobile);
2096
+ margin: 0;
2097
+ }
2098
+ .hero__description {
2099
+ font-size: var(--hero-body-size);
2100
+ font-weight: var(--font-weight-regular);
2101
+ line-height: var(--hero-body-lh);
2102
+ margin: 0;
2103
+ }
2104
+ .hero__buttons {
2105
+ display: flex;
2106
+ flex-direction: column;
2107
+ gap: var(--spacing-8);
2108
+ width: 100%;
2109
+ }
2110
+ .hero__body {
2111
+ display: flex;
2112
+ flex-direction: column;
2113
+ gap: var(--spacing-24);
2114
+ }
2115
+ .hero--homepage {
2116
+ background-color: var(--hero-dark-bg);
2117
+ height: 100vh;
2118
+ overflow: hidden;
2119
+ display: flex;
2120
+ align-items: stretch;
2121
+ }
2122
+ .hero--homepage .hero__overlay {
2123
+ background:
2124
+ linear-gradient(
2125
+ 180deg,
2126
+ var(--color-opacity-slate-16) 0%,
2127
+ rgba(0, 0, 0, 0) 20%,
2128
+ rgba(0, 0, 0, 0) 42%,
2129
+ var(--color-opacity-slate-48) 60%,
2130
+ var(--color-opacity-slate-72) 75%,
2131
+ var(--color-opacity-slate-88) 100%);
2132
+ }
2133
+ .hero--homepage .hero__inner {
2134
+ display: flex;
2135
+ flex-direction: column;
2136
+ justify-content: flex-end;
2137
+ height: 100vh;
2138
+ padding-top: 0;
2139
+ padding-bottom: var(--spacing-40);
2140
+ }
2141
+ .hero--homepage .hero__content {
2142
+ display: flex;
2143
+ flex-direction: column;
2144
+ gap: var(--spacing-24);
2145
+ width: 100%;
2146
+ }
2147
+ .hero--homepage .hero__image-slot {
2148
+ position: absolute;
2149
+ top: 0;
2150
+ left: 50%;
2151
+ transform: translateX(-50%);
2152
+ z-index: 4;
2153
+ width: 78%;
2154
+ max-width: 380px;
2155
+ height: auto;
2156
+ display: flex;
2157
+ overflow: visible;
2158
+ pointer-events: none;
2159
+ }
2160
+ .hero--homepage .hero__image-slot img {
2161
+ width: 100%;
2162
+ height: auto;
2163
+ object-fit: contain;
2164
+ object-position: top center;
2165
+ display: block;
2166
+ max-width: none;
2167
+ max-height: none;
2168
+ }
2169
+ .hero--homepage .hero__image-slot > *:not(img) {
2170
+ width: 100%;
2171
+ height: auto;
2172
+ display: block;
2173
+ }
2174
+ .hero--homepage .hero__subtitle,
2175
+ .hero--homepage .hero__title,
2176
+ .hero--homepage .hero__description {
2177
+ color: var(--hero-text-light);
2178
+ }
2179
+ .hero--homepage .hero__buttons {
2180
+ align-items: stretch;
2181
+ }
2182
+ .hero--full-image {
2183
+ background-color: var(--hero-dark-bg);
2184
+ min-height: 100vh;
2185
+ display: flex;
2186
+ align-items: center;
2187
+ }
2188
+ .hero--full-image .hero__overlay {
2189
+ background:
2190
+ linear-gradient(
2191
+ 180deg,
2192
+ var(--hero-dark-bg) 0%,
2193
+ var(--color-opacity-slate-72) 40%,
2194
+ rgba(24, 28, 37, 0) 100%);
2195
+ }
2196
+ .hero--full-image .hero__inner {
2197
+ display: flex;
2198
+ flex-direction: column;
2199
+ align-items: center;
2200
+ justify-content: center;
2201
+ min-height: 100vh;
2202
+ padding-top: var(--spacing-32);
2203
+ padding-bottom: var(--spacing-32);
2204
+ }
2205
+ .hero--full-image .hero__content {
2206
+ display: flex;
2207
+ flex-direction: column;
2208
+ align-items: center;
2209
+ gap: var(--spacing-24);
2210
+ width: 100%;
2211
+ text-align: center;
2212
+ }
2213
+ .hero--full-image .hero__text {
2214
+ align-items: center;
2215
+ max-width: 840px;
2216
+ }
2217
+ .hero--full-image .hero__subtitle,
2218
+ .hero--full-image .hero__title,
2219
+ .hero--full-image .hero__description {
2220
+ color: var(--hero-text-light);
2221
+ }
2222
+ .hero--full-image .hero__buttons {
2223
+ align-items: center;
2224
+ justify-content: center;
2225
+ }
2226
+ .hero--visuals,
2227
+ .hero--text-only {
2228
+ background-color: var(--hero-light-bg);
2229
+ min-height: 540px;
2230
+ display: flex;
2231
+ align-items: center;
2232
+ }
2233
+ .hero--visuals .hero__grid,
2234
+ .hero--text-only .hero__grid {
2235
+ position: absolute;
2236
+ inset: 0;
2237
+ pointer-events: none;
2238
+ z-index: 0;
2239
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M 40 0 L 0 0 0 40' fill='none' stroke='%23cfd4d8' stroke-width='0.5' opacity='0.5'/%3E%3C/svg%3E");
2240
+ background-repeat: repeat;
2241
+ background-size: 40px 40px;
2242
+ }
2243
+ .hero--visuals .hero__overlay,
2244
+ .hero--text-only .hero__overlay {
2245
+ background:
2246
+ linear-gradient(
2247
+ to right,
2248
+ var(--hero-light-bg) 0%,
2249
+ rgba(246, 247, 248, 0) 18%,
2250
+ rgba(246, 247, 248, 0) 82%,
2251
+ var(--hero-light-bg) 100%),
2252
+ linear-gradient(
2253
+ to bottom,
2254
+ var(--hero-light-bg) 0%,
2255
+ rgba(246, 247, 248, 0) 30%,
2256
+ rgba(246, 247, 248, 0) 70%,
2257
+ var(--hero-light-bg) 100%);
2258
+ }
2259
+ .hero--visuals .hero__inner,
2260
+ .hero--text-only .hero__inner {
2261
+ display: flex;
2262
+ flex-direction: column;
2263
+ align-items: center;
2264
+ justify-content: center;
2265
+ padding-top: var(--spacing-32);
2266
+ padding-bottom: var(--spacing-32);
2267
+ min-height: 540px;
2268
+ }
2269
+ .hero--visuals .hero__content,
2270
+ .hero--text-only .hero__content {
2271
+ display: flex;
2272
+ flex-direction: column;
2273
+ align-items: center;
2274
+ gap: var(--spacing-32);
2275
+ width: 100%;
2276
+ text-align: center;
2277
+ }
2278
+ .hero--visuals .hero__text,
2279
+ .hero--text-only .hero__text {
2280
+ align-items: center;
2281
+ max-width: 846px;
2282
+ }
2283
+ .hero--visuals .hero__subtitle,
2284
+ .hero--visuals .hero__title,
2285
+ .hero--visuals .hero__description,
2286
+ .hero--text-only .hero__subtitle,
2287
+ .hero--text-only .hero__title,
2288
+ .hero--text-only .hero__description {
2289
+ color: var(--hero-text-dark);
2290
+ }
2291
+ .hero--visuals .hero__buttons,
2292
+ .hero--text-only .hero__buttons {
2293
+ align-items: center;
2294
+ justify-content: center;
2295
+ flex-direction: row;
2296
+ }
2297
+ .hero__visual {
2298
+ position: absolute;
2299
+ z-index: 1;
2300
+ overflow: hidden;
2301
+ pointer-events: none;
2302
+ }
2303
+ .hero__visual img,
2304
+ .hero__visual > * {
2305
+ display: block;
2306
+ width: 100%;
2307
+ height: 100%;
2308
+ object-fit: contain;
2309
+ }
2310
+ .hero__visual--left {
2311
+ width: 160px;
2312
+ height: 160px;
2313
+ top: -20px;
2314
+ left: -20px;
2315
+ }
2316
+ .hero__visual--right {
2317
+ width: 160px;
2318
+ height: 160px;
2319
+ bottom: -20px;
2320
+ right: -20px;
2321
+ }
2322
+ @media (min-width: 768px) {
2323
+ .hero__inner {
2324
+ padding: var(--spacing-40) var(--spacing-24);
2325
+ }
2326
+ .hero--homepage .hero__inner,
2327
+ .hero--full-image .hero__inner {
2328
+ padding-top: var(--spacing-40);
2329
+ padding-bottom: var(--spacing-40);
2330
+ }
2331
+ .hero--homepage .hero__buttons,
2332
+ .hero--full-image .hero__buttons {
2333
+ flex-direction: row;
2334
+ align-items: center;
2335
+ }
2336
+ }
2337
+ @media (min-width: 992px) {
2338
+ .hero__inner {
2339
+ padding: var(--spacing-48) var(--spacing-32);
2340
+ }
2341
+ .hero__title {
2342
+ font-size: var(--hero-title-size);
2343
+ line-height: var(--hero-title-lh);
2344
+ }
2345
+ .hero--homepage .hero__inner {
2346
+ max-width: 1280px;
2347
+ padding: var(--spacing-96) var(--spacing-32);
2348
+ height: 100vh;
2349
+ justify-content: center;
2350
+ align-items: flex-start;
2351
+ }
2352
+ .hero--homepage .hero__content {
2353
+ flex-direction: column;
2354
+ gap: var(--spacing-32);
2355
+ max-width: 600px;
2356
+ }
2357
+ .hero--homepage .hero__left {
2358
+ width: 100%;
2359
+ }
2360
+ .hero--homepage .hero__body {
2361
+ gap: var(--spacing-32);
2362
+ }
2363
+ .hero--homepage .hero__subtitle {
2364
+ font-size: var(--font-size-2xl);
2365
+ line-height: var(--line-height-xl);
2366
+ }
2367
+ .hero--homepage .hero__title {
2368
+ font-size: var(--font-size-5xl);
2369
+ line-height: var(--line-height-5xl);
2370
+ }
2371
+ .hero--homepage .hero__image-slot {
2372
+ position: absolute;
2373
+ top: 75px;
2374
+ right: 0;
2375
+ left: auto;
2376
+ transform: none;
2377
+ z-index: 4;
2378
+ width: 50%;
2379
+ height: calc(100% - 5px);
2380
+ display: flex;
2381
+ align-items: flex-start;
2382
+ justify-content: flex-start;
2383
+ overflow: visible;
2384
+ pointer-events: none;
2385
+ max-width: none;
2386
+ }
2387
+ .hero--homepage .hero__image-slot img {
2388
+ height: 100%;
2389
+ width: auto;
2390
+ max-height: none;
2391
+ max-width: none;
2392
+ object-fit: contain;
2393
+ object-position: left top;
2394
+ }
2395
+ .hero--homepage .hero__buttons {
2396
+ flex-direction: row;
2397
+ align-items: center;
2398
+ width: auto;
2399
+ gap: var(--spacing-16);
2400
+ }
2401
+ .hero--homepage .hero__overlay {
2402
+ background:
2403
+ linear-gradient(
2404
+ to right,
2405
+ var(--color-slate-1200) 0%,
2406
+ var(--color-opacity-slate-88) 40%,
2407
+ var(--color-opacity-slate-24) 100%);
2408
+ }
2409
+ .hero--full-image .hero__text {
2410
+ max-width: 840px;
2411
+ }
2412
+ .hero--full-image .hero__buttons {
2413
+ flex-direction: row;
2414
+ align-items: center;
2415
+ width: auto;
2416
+ }
2417
+ .hero--visuals .hero__inner,
2418
+ .hero--text-only .hero__inner {
2419
+ position: relative;
2420
+ }
2421
+ .hero__visuals-wrapper {
2422
+ flex-direction: row;
2423
+ justify-content: center;
2424
+ position: relative;
2425
+ }
2426
+ .hero--visuals .hero__visual--left {
2427
+ width: 241px;
2428
+ height: 241px;
2429
+ top: 50%;
2430
+ left: 48px;
2431
+ bottom: auto;
2432
+ right: auto;
2433
+ transform: translateY(-50%);
2434
+ }
2435
+ .hero--visuals .hero__visual--right {
2436
+ width: 241px;
2437
+ height: 241px;
2438
+ top: 50%;
2439
+ right: 48px;
2440
+ bottom: auto;
2441
+ left: auto;
2442
+ transform: translateY(-50%);
2443
+ }
2444
+ .hero--visuals .hero__content,
2445
+ .hero--text-only .hero__content {
2446
+ max-width: 846px;
2447
+ width: 100%;
2448
+ }
2449
+ }
2450
+
2451
+ /* templates/Stats/Stats.css */
2452
+ :root {
2453
+ --stats-bg: var(--color-slate-50);
2454
+ --stats-card-bg: var(--color-slate-75);
2455
+ --stats-text-primary: var(--color-slate-1200);
2456
+ --stats-title-size: var(--font-size-4xl);
2457
+ --stats-title-lh: var(--line-height-4xl);
2458
+ --stats-desc-size: var(--font-size-md);
2459
+ --stats-desc-lh: var(--line-height-md);
2460
+ --stats-value-size: var(--font-size-3xl);
2461
+ --stats-value-lh: var(--line-height-3xl);
2462
+ --stats-value-featured-size: var(--font-size-5xl);
2463
+ --stats-value-featured-lh: var(--line-height-5xl);
2464
+ --stats-label-size: var(--font-size-lg);
2465
+ --stats-label-lh: var(--line-height-lg);
2466
+ }
2467
+ .stats {
2468
+ width: 100%;
2469
+ background-color: var(--stats-bg);
2470
+ font-family: var(--font-family-base);
2471
+ box-sizing: border-box;
2472
+ }
2473
+ .stats__inner {
2474
+ max-width: 1280px;
2475
+ margin: 0 auto;
2476
+ padding: var(--spacing-48) var(--spacing-16);
2477
+ display: flex;
2478
+ flex-direction: column;
2479
+ gap: var(--spacing-24);
2480
+ box-sizing: border-box;
2481
+ }
2482
+ .stats__header {
2483
+ display: flex;
2484
+ flex-direction: column;
2485
+ gap: var(--spacing-16);
2486
+ }
2487
+ .stats__title {
2488
+ font-size: var(--stats-title-size);
2489
+ font-weight: var(--font-weight-extra-bold);
2490
+ line-height: var(--stats-title-lh);
2491
+ color: var(--stats-text-primary);
2492
+ margin: 0;
2493
+ }
2494
+ .stats__description {
2495
+ font-size: var(--stats-desc-size);
2496
+ font-weight: var(--font-weight-regular);
2497
+ line-height: var(--stats-desc-lh);
2498
+ color: var(--stats-text-primary);
2499
+ margin: 0;
2500
+ }
2501
+ .stats__content {
2502
+ display: flex;
2503
+ flex-direction: column;
2504
+ align-items: center;
2505
+ gap: var(--spacing-32);
2506
+ width: 100%;
2507
+ }
2508
+ .stats__card {
2509
+ background-color: var(--stats-card-bg);
2510
+ border-radius: var(--radius-2xl);
2511
+ padding: var(--spacing-24);
2512
+ width: 100%;
2513
+ overflow: hidden;
2514
+ position: relative;
2515
+ box-sizing: border-box;
2516
+ display: flex;
2517
+ align-items: center;
2518
+ justify-content: center;
2519
+ }
2520
+ .stats__card-track {
2521
+ position: relative;
2522
+ width: 100%;
2523
+ height: 320px;
2524
+ overflow: visible;
2525
+ }
2526
+ .stats__stat {
2527
+ position: absolute;
2528
+ top: 50%;
2529
+ left: 0;
2530
+ right: 0;
2531
+ display: flex;
2532
+ flex-direction: column;
2533
+ align-items: center;
2534
+ text-align: center;
2535
+ will-change: transform, opacity;
2536
+ transform: translateY(-50%) scale(1);
2537
+ opacity: 1;
2538
+ }
2539
+ .stats__stat-value {
2540
+ display: block;
2541
+ font-family: var(--font-family-base);
2542
+ font-size: var(--stats-value-size);
2543
+ font-weight: var(--font-weight-extra-bold);
2544
+ line-height: var(--stats-value-lh);
2545
+ text-transform: uppercase;
2546
+ color: var(--stats-text-primary);
2547
+ }
2548
+ .stats__stat-label {
2549
+ display: block;
2550
+ font-family: var(--font-family-base);
2551
+ font-size: var(--stats-label-size);
2552
+ font-weight: var(--font-weight-regular);
2553
+ line-height: var(--stats-label-lh);
2554
+ color: var(--stats-text-primary);
2555
+ }
2556
+ .stats__stat--active .stats__stat-value {
2557
+ font-size: var(--stats-value-featured-size);
2558
+ line-height: var(--stats-value-featured-lh);
2559
+ font-weight: 900;
2560
+ }
2561
+ .stats__stat--inactive .stats__stat-value {
2562
+ font-size: var(--stats-value-size);
2563
+ line-height: var(--stats-value-lh);
2564
+ font-weight: var(--font-weight-extra-bold);
2565
+ color: var(--color-slate-400);
2566
+ }
2567
+ .stats__stat--inactive .stats__stat-label {
2568
+ color: var(--color-slate-400);
2569
+ }
2570
+ .stats__fade {
2571
+ position: absolute;
2572
+ left: 0;
2573
+ right: 0;
2574
+ height: 100px;
2575
+ pointer-events: none;
2576
+ z-index: 3;
2577
+ }
2578
+ .stats__fade--top {
2579
+ top: 0;
2580
+ background:
2581
+ linear-gradient(
2582
+ 180deg,
2583
+ var(--stats-card-bg) 0%,
2584
+ rgba(246, 247, 248, 0) 100%);
2585
+ }
2586
+ .stats__fade--bottom {
2587
+ bottom: 0;
2588
+ background:
2589
+ linear-gradient(
2590
+ 0deg,
2591
+ var(--stats-card-bg) 0%,
2592
+ rgba(246, 247, 248, 0) 100%);
2593
+ }
2594
+ .stats__award {
2595
+ display: flex;
2596
+ align-items: center;
2597
+ justify-content: center;
2598
+ }
2599
+ .stats__award-image {
2600
+ display: block;
2601
+ width: 100px;
2602
+ height: 100px;
2603
+ object-fit: contain;
2604
+ }
2605
+ .stats__awards-col {
2606
+ display: none;
2607
+ }
2608
+ .stats__awards-mobile {
2609
+ display: grid;
2610
+ grid-template-columns: 1fr 1fr;
2611
+ gap: var(--spacing-16);
2612
+ width: 100%;
2613
+ }
2614
+ @media (min-width: 768px) {
2615
+ .stats__header {
2616
+ align-items: center;
2617
+ text-align: center;
2618
+ }
2619
+ .stats__inner {
2620
+ gap: var(--spacing-48);
2621
+ padding: var(--spacing-48) var(--spacing-24);
2622
+ }
2623
+ }
2624
+ @media (min-width: 992px) {
2625
+ .stats__inner {
2626
+ padding: var(--spacing-96) var(--spacing-32);
2627
+ gap: var(--spacing-80);
2628
+ }
2629
+ .stats__header {
2630
+ max-width: 846px;
2631
+ margin-left: auto;
2632
+ margin-right: auto;
2633
+ }
2634
+ .stats__content {
2635
+ flex-direction: row;
2636
+ align-items: stretch;
2637
+ justify-content: center;
2638
+ gap: var(--spacing-24);
2639
+ }
2640
+ .stats__card {
2641
+ width: 414px;
2642
+ height: 414px;
2643
+ padding: var(--spacing-72);
2644
+ flex-shrink: 0;
2645
+ }
2646
+ .stats__card-track {
2647
+ height: 270px;
2648
+ }
2649
+ .stats__fade {
2650
+ height: 65px;
2651
+ }
2652
+ .stats__awards-col {
2653
+ display: flex;
2654
+ flex-direction: column;
2655
+ gap: var(--spacing-32);
2656
+ width: 196px;
2657
+ flex-shrink: 0;
2658
+ align-items: center;
2659
+ }
2660
+ .stats__awards-col--left {
2661
+ justify-content: flex-start;
2662
+ }
2663
+ .stats__awards-col--right {
2664
+ justify-content: flex-end;
2665
+ }
2666
+ .stats__awards-col .stats__award-image {
2667
+ width: 140px;
2668
+ height: 140px;
2669
+ }
2670
+ .stats__awards-mobile {
2671
+ display: none;
2672
+ }
2673
+ }
2674
+
2675
+ /* templates/Scrollytelling/Scrollytelling.css */
2676
+ :root {
2677
+ --scrolly-bg: var(--color-slate-50);
2678
+ --scrolly-text-primary: var(--color-slate-1200);
2679
+ --scrolly-text-muted: var(--color-slate-500);
2680
+ --scrolly-link-color: var(--color-coral-500);
2681
+ --scrolly-link-hover: var(--color-coral-600);
2682
+ --scrolly-media-bg: var(--color-slate-200);
2683
+ --scrolly-header-size: var(--font-size-3xl);
2684
+ --scrolly-header-lh: var(--line-height-3xl);
2685
+ --scrolly-title-size: var(--font-size-2xl);
2686
+ --scrolly-title-lh: var(--line-height-2xl);
2687
+ --scrolly-body-size: var(--font-size-md);
2688
+ --scrolly-body-lh: var(--line-height-md);
2689
+ --scrolly-link-size: var(--font-size-md);
2690
+ --scrolly-link-lh: var(--line-height-sm);
2691
+ --scrolly-col-gap: var(--spacing-112);
2692
+ --scrolly-media-radius: var(--radius-2xl);
2693
+ --scrolly-mobile-radius: var(--radius-2xl);
2694
+ --scrolly-item-min-height: 60vh;
2695
+ --scrolly-sticky-top: var(--spacing-80);
2696
+ }
2697
+ @media (min-width: 992px) {
2698
+ :root {
2699
+ --scrolly-header-size: var(--font-size-4xl);
2700
+ --scrolly-header-lh: var(--line-height-4xl);
2701
+ --scrolly-title-size: var(--font-size-3xl);
2702
+ --scrolly-title-lh: var(--line-height-3xl);
2703
+ }
2704
+ }
2705
+ .scrolly {
2706
+ width: 100%;
2707
+ background-color: var(--scrolly-bg);
2708
+ font-family: var(--font-family-base);
2709
+ box-sizing: border-box;
2710
+ }
2711
+ .scrolly__inner {
2712
+ max-width: 1280px;
2713
+ margin: 0 auto;
2714
+ padding: var(--spacing-48) var(--spacing-16);
2715
+ display: flex;
2716
+ flex-direction: column;
2717
+ gap: var(--spacing-32);
2718
+ box-sizing: border-box;
2719
+ }
2720
+ .scrolly__header {
2721
+ font-size: var(--scrolly-header-size);
2722
+ font-weight: var(--font-weight-extra-bold);
2723
+ line-height: var(--scrolly-header-lh);
2724
+ color: var(--scrolly-text-primary);
2725
+ margin: 0;
2726
+ }
2727
+ .scrolly__layout {
2728
+ display: none;
2729
+ }
2730
+ .scrolly__mobile-list {
2731
+ display: flex;
2732
+ flex-direction: column;
2733
+ gap: var(--spacing-48);
2734
+ }
2735
+ .scrolly__mobile-item {
2736
+ display: flex;
2737
+ flex-direction: column;
2738
+ gap: var(--spacing-16);
2739
+ }
2740
+ .scrolly__mobile-media {
2741
+ width: 100%;
2742
+ aspect-ratio: 1 / 1;
2743
+ border-radius: var(--scrolly-mobile-radius);
2744
+ background-color: var(--scrolly-media-bg);
2745
+ overflow: hidden;
2746
+ display: flex;
2747
+ align-items: center;
2748
+ justify-content: center;
2749
+ }
2750
+ .scrolly__mobile-media img,
2751
+ .scrolly__mobile-media > * {
2752
+ width: 100%;
2753
+ height: 100%;
2754
+ object-fit: cover;
2755
+ display: block;
2756
+ }
2757
+ .scrolly__item-title {
2758
+ font-size: var(--scrolly-title-size);
2759
+ font-weight: var(--font-weight-extra-bold);
2760
+ line-height: var(--scrolly-title-lh);
2761
+ color: var(--scrolly-text-primary);
2762
+ margin: 0;
2763
+ }
2764
+ .scrolly__item-desc {
2765
+ font-size: var(--scrolly-body-size);
2766
+ font-weight: var(--font-weight-regular);
2767
+ line-height: var(--scrolly-body-lh);
2768
+ color: var(--scrolly-text-primary);
2769
+ margin: 0;
2770
+ }
2771
+ .scrolly__item-link {
2772
+ display: inline-flex;
2773
+ align-items: center;
2774
+ gap: var(--spacing-8);
2775
+ font-size: var(--scrolly-link-size);
2776
+ font-weight: var(--font-weight-semi-bold);
2777
+ line-height: var(--scrolly-link-lh);
2778
+ color: var(--scrolly-link-color);
2779
+ text-decoration: none;
2780
+ transition: color 0.2s ease;
2781
+ cursor: pointer;
2782
+ }
2783
+ .scrolly__item-link:hover {
2784
+ color: var(--scrolly-link-hover);
2785
+ }
2786
+ .scrolly__item-link-icon {
2787
+ display: inline-flex;
2788
+ align-items: center;
2789
+ flex-shrink: 0;
2790
+ transition: transform 0.2s ease;
2791
+ }
2792
+ .scrolly__item-link:hover .scrolly__item-link-icon {
2793
+ transform: translateX(var(--spacing-4));
2794
+ }
2795
+ @media (min-width: 768px) {
2796
+ .scrolly__inner {
2797
+ padding: var(--spacing-64) var(--spacing-24);
2798
+ gap: var(--spacing-40);
2799
+ }
2800
+ }
2801
+ @media (min-width: 992px) {
2802
+ .scrolly__header {
2803
+ text-align: center;
2804
+ }
2805
+ .scrolly__inner {
2806
+ padding: var(--spacing-88) var(--spacing-32);
2807
+ gap: var(--spacing-56);
2808
+ }
2809
+ .scrolly__layout {
2810
+ display: flex;
2811
+ flex-direction: row;
2812
+ gap: var(--scrolly-col-gap);
2813
+ align-items: flex-start;
2814
+ width: 100%;
2815
+ }
2816
+ .scrolly__mobile-list {
2817
+ display: none;
2818
+ }
2819
+ .scrolly--media-left .scrolly__layout {
2820
+ flex-direction: row-reverse;
2821
+ }
2822
+ .scrolly__media-col {
2823
+ flex: 1 0 0;
2824
+ position: sticky;
2825
+ top: var(--scrolly-sticky-top);
2826
+ align-self: flex-start;
2827
+ }
2828
+ .scrolly__media-wrap {
2829
+ width: 100%;
2830
+ aspect-ratio: 1 / 1;
2831
+ position: relative;
2832
+ border-radius: var(--scrolly-media-radius);
2833
+ background-color: var(--scrolly-media-bg);
2834
+ overflow: hidden;
2835
+ }
2836
+ .scrolly__media-item {
2837
+ position: absolute;
2838
+ inset: 0;
2839
+ opacity: 0;
2840
+ transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1);
2841
+ will-change: opacity;
2842
+ display: flex;
2843
+ align-items: center;
2844
+ justify-content: center;
2845
+ }
2846
+ .scrolly__media-item--active {
2847
+ opacity: 1;
2848
+ }
2849
+ .scrolly__media-item img {
2850
+ width: 100%;
2851
+ height: 100%;
2852
+ object-fit: cover;
2853
+ display: block;
2854
+ }
2855
+ .scrolly__media-item > * {
2856
+ width: 100% !important;
2857
+ height: 100% !important;
2858
+ }
2859
+ .scrolly__content-col {
2860
+ flex: 1 0 0;
2861
+ display: flex;
2862
+ flex-direction: column;
2863
+ }
2864
+ .scrolly__item {
2865
+ display: flex;
2866
+ flex-direction: column;
2867
+ justify-content: center;
2868
+ min-height: var(--scrolly-item-min-height);
2869
+ gap: var(--spacing-24);
2870
+ padding-left: var(--spacing-32);
2871
+ transition: opacity 0.4s ease;
2872
+ opacity: 0.4;
2873
+ box-sizing: border-box;
2874
+ }
2875
+ .scrolly__item--active {
2876
+ opacity: 1;
2877
+ }
2878
+ .scrolly__item--inactive .scrolly__item-desc,
2879
+ .scrolly__item--inactive .scrolly__item-title {
2880
+ color: var(--scrolly-text-muted);
2881
+ }
2882
+ }
2883
+
2884
+ /* templates/StickyStackedCards/StickyStackedCards.css */
2885
+ :root {
2886
+ --ssc-bg: var(--color-slate-50);
2887
+ --ssc-card-light-bg: var(--color-slate-75);
2888
+ --ssc-card-light-text: var(--color-slate-1200);
2889
+ --ssc-card-coral-bg: var(--color-coral-500);
2890
+ --ssc-card-coral-text: var(--color-slate-50);
2891
+ --ssc-card-dark-bg: var(--color-slate-1200);
2892
+ --ssc-card-dark-text: var(--color-slate-50);
2893
+ --ssc-header-size: var(--font-size-4xl);
2894
+ --ssc-header-lh: var(--line-height-4xl);
2895
+ --ssc-title-size: var(--font-size-3xl);
2896
+ --ssc-title-lh: var(--line-height-3xl);
2897
+ --ssc-body-size: var(--font-size-md);
2898
+ --ssc-body-lh: var(--line-height-md);
2899
+ --ssc-card-radius: var(--radius-2xl);
2900
+ --ssc-content-gap: var(--spacing-24);
2901
+ --ssc-sticky-top: var(--spacing-80);
2902
+ --ssc-peek-offset: var(--spacing-16);
2903
+ --ssc-card-min-height: 40rem;
2904
+ --ssc-img-height-mobile: 21rem;
2905
+ }
2906
+ .ssc {
2907
+ width: 100%;
2908
+ background-color: var(--ssc-bg);
2909
+ font-family: var(--font-family-base);
2910
+ box-sizing: border-box;
2911
+ }
2912
+ .ssc__inner {
2913
+ max-width: 1280px;
2914
+ margin: 0 auto;
2915
+ padding: var(--spacing-64) var(--spacing-16);
2916
+ display: flex;
2917
+ flex-direction: column;
2918
+ gap: var(--spacing-48);
2919
+ box-sizing: border-box;
2920
+ }
2921
+ .ssc__header {
2922
+ font-size: var(--ssc-header-size);
2923
+ font-weight: var(--font-weight-extra-bold);
2924
+ line-height: var(--ssc-header-lh);
2925
+ color: var(--ssc-card-light-text);
2926
+ margin: 0;
2927
+ }
2928
+ .ssc__track {
2929
+ display: block;
2930
+ padding-bottom: var(--ssc-img-height-mobile);
2931
+ }
2932
+ .ssc__card {
2933
+ border-radius: var(--ssc-card-radius);
2934
+ overflow: hidden;
2935
+ display: flex;
2936
+ flex-direction: column;
2937
+ box-sizing: border-box;
2938
+ width: 100%;
2939
+ position: sticky;
2940
+ transform: scale(var(--card-scale, 1));
2941
+ transform-origin: top center;
2942
+ will-change: transform;
2943
+ transition: transform 0.12s ease-out;
2944
+ }
2945
+ .ssc__card--light {
2946
+ background-color: var(--ssc-card-light-bg);
2947
+ color: var(--ssc-card-light-text);
2948
+ }
2949
+ .ssc__card--coral {
2950
+ background-color: var(--ssc-card-coral-bg);
2951
+ color: var(--ssc-card-coral-text);
2952
+ }
2953
+ .ssc__card--dark {
2954
+ background-color: var(--ssc-card-dark-bg);
2955
+ color: var(--ssc-card-dark-text);
2956
+ }
2957
+ .ssc__card-content {
2958
+ display: flex;
2959
+ flex-direction: column;
2960
+ gap: var(--ssc-content-gap);
2961
+ padding: var(--spacing-32);
2962
+ }
2963
+ .ssc__card-title {
2964
+ font-size: var(--ssc-title-size);
2965
+ font-weight: var(--font-weight-extra-bold);
2966
+ line-height: var(--ssc-title-lh);
2967
+ color: inherit;
2968
+ margin: 0;
2969
+ }
2970
+ .ssc__card-desc {
2971
+ font-size: var(--ssc-body-size);
2972
+ font-weight: var(--font-weight-regular);
2973
+ line-height: var(--ssc-body-lh);
2974
+ color: inherit;
2975
+ margin: 0;
2976
+ }
2977
+ .ssc__card-image {
2978
+ position: relative;
2979
+ height: var(--ssc-img-height-mobile);
2980
+ flex-shrink: 0;
2981
+ overflow: hidden;
2982
+ }
2983
+ .ssc__card-image img {
2984
+ position: absolute;
2985
+ inset: 0;
2986
+ width: 100%;
2987
+ height: 100%;
2988
+ object-fit: cover;
2989
+ display: block;
2990
+ }
2991
+ @media (min-width: 768px) {
2992
+ .ssc__inner {
2993
+ padding: var(--spacing-80) var(--spacing-24);
2994
+ gap: var(--spacing-64);
2995
+ }
2996
+ .ssc__header {
2997
+ text-align: center;
2998
+ }
2999
+ }
3000
+ @media (min-width: 992px) {
3001
+ .ssc__inner {
3002
+ padding: var(--spacing-112) var(--spacing-64);
3003
+ gap: var(--spacing-80);
3004
+ }
3005
+ .ssc__track {
3006
+ padding-bottom: var(--ssc-card-min-height);
3007
+ }
3008
+ .ssc__card {
3009
+ display: grid;
3010
+ grid-template-columns: 1fr 1fr;
3011
+ grid-template-rows: 1fr;
3012
+ min-height: var(--ssc-card-min-height);
3013
+ }
3014
+ .ssc__card-content {
3015
+ padding: var(--spacing-56);
3016
+ justify-content: flex-start;
3017
+ align-self: stretch;
3018
+ }
3019
+ .ssc__card-image {
3020
+ height: auto;
3021
+ min-height: 100%;
3022
+ align-self: stretch;
3023
+ }
3024
+ }
3025
+
3026
+ /* templates/CTABanner/CTABanner.css */
3027
+ :root {
3028
+ --ctab-max-width: 80rem;
3029
+ --ctab-stage-height: calc(11 * var(--ctab-grid-cell));
3030
+ --ctab-hero-max-width: 90%;
3031
+ --ctab-avatar-radius: var(--radius-xl);
3032
+ --ctab-grid-cell: calc((100vw - 2 * var(--spacing-24)) / 5);
3033
+ --ctab-avatar-size: var(--ctab-grid-cell);
3034
+ --ctab-section-min-height: var(--ctab-stage-height);
3035
+ }
3036
+ @media (min-width: 480px) and (max-width: 767px) {
3037
+ :root {
3038
+ --ctab-hero-max-width: 80%;
3039
+ --ctab-grid-cell: calc((100vw - 2 * var(--spacing-24)) / 7);
3040
+ }
3041
+ }
3042
+ @media (min-width: 768px) and (max-width: 991px) {
3043
+ :root {
3044
+ --ctab-stage-height: 48rem;
3045
+ --ctab-hero-max-width: 70%;
3046
+ --ctab-avatar-radius: var(--radius-2xl);
3047
+ --ctab-grid-cell: calc((100vw - 2 * var(--spacing-24)) / 11);
3048
+ --ctab-section-min-height: var(--ctab-stage-height);
3049
+ }
3050
+ }
3051
+ @media (min-width: 992px) {
3052
+ :root {
3053
+ --ctab-stage-height: 42.5rem;
3054
+ --ctab-hero-max-width: 52.875rem;
3055
+ --ctab-avatar-radius: var(--radius-2xl);
3056
+ --ctab-grid-cell: 6rem;
3057
+ --ctab-avatar-size: 6rem;
3058
+ --ctab-section-min-height: 42.5rem;
3059
+ }
3060
+ .ctab:not(.ctab--compact) {
3061
+ --ctab-stage-height: 54rem;
3062
+ --ctab-section-min-height: 54rem;
3063
+ }
3064
+ }
3065
+ .ctab {
3066
+ position: relative;
3067
+ width: 100%;
3068
+ min-height: var(--ctab-section-min-height);
3069
+ background-color: var(--color-coral-500);
3070
+ font-family: var(--font-family-base);
3071
+ box-sizing: border-box;
3072
+ overflow: hidden;
3073
+ }
3074
+ .ctab__grid {
3075
+ position: absolute;
3076
+ inset: 0;
3077
+ pointer-events: none;
3078
+ -webkit-mask-image:
3079
+ linear-gradient(
3080
+ to right,
3081
+ transparent 0%,
3082
+ black 20%,
3083
+ black 80%,
3084
+ transparent 100%),
3085
+ linear-gradient(
3086
+ to bottom,
3087
+ transparent 0%,
3088
+ black 20%,
3089
+ black 80%,
3090
+ transparent 100%);
3091
+ -webkit-mask-composite: destination-in;
3092
+ mask-image:
3093
+ linear-gradient(
3094
+ to right,
3095
+ transparent 0%,
3096
+ black 20%,
3097
+ black 80%,
3098
+ transparent 100%),
3099
+ linear-gradient(
3100
+ to bottom,
3101
+ transparent 0%,
3102
+ black 20%,
3103
+ black 80%,
3104
+ transparent 100%);
3105
+ mask-composite: intersect;
3106
+ background-image:
3107
+ repeating-linear-gradient(
3108
+ to right,
3109
+ transparent 0,
3110
+ transparent calc(var(--ctab-grid-cell) - 1px),
3111
+ var(--color-opacity-white-16) calc(var(--ctab-grid-cell) - 1px),
3112
+ var(--color-opacity-white-16) var(--ctab-grid-cell)),
3113
+ repeating-linear-gradient(
3114
+ to bottom,
3115
+ transparent 0,
3116
+ transparent calc(var(--ctab-grid-cell) - 1px),
3117
+ var(--color-opacity-white-16) calc(var(--ctab-grid-cell) - 1px),
3118
+ var(--color-opacity-white-16) var(--ctab-grid-cell));
3119
+ background-position: var(--spacing-24) calc(1px - var(--ctab-grid-cell));
3120
+ }
3121
+ @media (min-width: 992px) {
3122
+ .ctab__grid {
3123
+ background-position: max(0px, calc((100vw - var(--ctab-max-width)) / 2)) calc(1px - var(--ctab-grid-cell));
3124
+ }
3125
+ }
3126
+ .ctab__inner {
3127
+ position: relative;
3128
+ z-index: 1;
3129
+ display: flex;
3130
+ align-items: center;
3131
+ justify-content: center;
3132
+ min-height: var(--ctab-section-min-height);
3133
+ max-width: var(--ctab-max-width);
3134
+ margin: 0 auto;
3135
+ padding: 0 var(--spacing-24);
3136
+ box-sizing: border-box;
3137
+ }
3138
+ @media (min-width: 992px) {
3139
+ .ctab__inner {
3140
+ padding: 0;
3141
+ }
3142
+ }
3143
+ .ctab__stage {
3144
+ position: relative;
3145
+ width: 100%;
3146
+ height: var(--ctab-stage-height);
3147
+ display: flex;
3148
+ align-items: center;
3149
+ justify-content: center;
3150
+ }
3151
+ .ctab__hero {
3152
+ position: relative;
3153
+ z-index: 2;
3154
+ display: flex;
3155
+ flex-direction: column;
3156
+ align-items: center;
3157
+ gap: var(--spacing-16);
3158
+ width: var(--ctab-hero-max-width);
3159
+ max-width: 100%;
3160
+ text-align: center;
3161
+ padding: var(--spacing-48) var(--spacing-24);
3162
+ }
3163
+ .ctab__headline {
3164
+ margin: 0;
3165
+ font-family: var(--font-family-base);
3166
+ font-size: var(--font-size-5xl);
3167
+ font-weight: var(--font-weight-extra-bold);
3168
+ line-height: var(--line-height-5xl);
3169
+ color: var(--color-slate-50);
3170
+ }
3171
+ .ctab__cta {
3172
+ display: inline-flex;
3173
+ align-items: center;
3174
+ justify-content: center;
3175
+ width: auto;
3176
+ min-width: var(--spacing-96);
3177
+ padding: var(--spacing-16) var(--spacing-24);
3178
+ background-color: var(--color-slate-1200);
3179
+ color: var(--color-slate-50);
3180
+ border-radius: var(--radius-full);
3181
+ font-family: var(--font-family-base);
3182
+ font-size: var(--font-size-md);
3183
+ font-weight: var(--font-weight-extra-bold);
3184
+ line-height: var(--line-height-xs);
3185
+ text-decoration: none;
3186
+ white-space: nowrap;
3187
+ box-sizing: border-box;
3188
+ transition: background-color 100ms ease;
3189
+ }
3190
+ .ctab__cta:hover {
3191
+ background-color: var(--color-slate-1100);
3192
+ }
3193
+ .ctab__avatar {
3194
+ position: absolute;
3195
+ width: var(--ctab-avatar-size);
3196
+ height: var(--ctab-avatar-size);
3197
+ border-radius: var(--ctab-avatar-radius);
3198
+ overflow: hidden;
3199
+ box-shadow: var(--shadow-md);
3200
+ flex-shrink: 0;
3201
+ left: var(--av-d-left, auto);
3202
+ right: var(--av-d-right, auto);
3203
+ top: var(--av-d-top, auto);
3204
+ }
3205
+ .ctab__avatar img {
3206
+ width: 100%;
3207
+ height: 100%;
3208
+ object-fit: cover;
3209
+ display: block;
3210
+ border-radius: var(--ctab-avatar-radius);
3211
+ }
3212
+ @media (max-width: 991px) {
3213
+ .ctab__avatar {
3214
+ left: var(--av-m-left, auto);
3215
+ right: var(--av-m-right, auto);
3216
+ top: var(--av-m-top, auto);
3217
+ }
3218
+ .ctab__avatar--desktop-only {
3219
+ display: none;
3220
+ }
3221
+ }
3222
+
3223
+ /* templates/DayNightTransition/DayNightTransition.css */
3224
+ :root {
3225
+ --dnt-headline-size: var(--font-size-4xl);
3226
+ --dnt-headline-lh: var(--line-height-4xl);
3227
+ --dnt-headline-weight: var(--font-weight-extra-bold);
3228
+ --dnt-text-day: var(--color-slate-1400);
3229
+ --dnt-text-night: var(--color-slate-50);
3230
+ --dnt-btn-bg: var(--color-coral-500);
3231
+ --dnt-btn-bg-hover: var(--color-coral-600);
3232
+ --dnt-btn-text: var(--color-slate-50);
3233
+ --dnt-btn-radius: var(--radius-full);
3234
+ --dnt-btn-px: var(--spacing-24);
3235
+ --dnt-btn-py: var(--spacing-16);
3236
+ --dnt-btn-size: var(--font-size-md);
3237
+ --dnt-btn-lh: var(--line-height-xs);
3238
+ --dnt-btn-weight: var(--font-weight-extra-bold);
3239
+ --dnt-wrapper-height: 250vh;
3240
+ --dnt-content-max-width: 37.5rem;
3241
+ --dnt-content-py: var(--spacing-80);
3242
+ --dnt-content-px: var(--spacing-16);
3243
+ --dnt-desc-size: var(--font-size-md);
3244
+ --dnt-desc-lh: var(--line-height-md);
3245
+ --dnt-desc-weight: var(--font-weight-regular);
3246
+ --dnt-gap: var(--spacing-16);
3247
+ }
3248
+ @media (min-width: 992px) {
3249
+ :root {
3250
+ --dnt-content-py: var(--spacing-96);
3251
+ --dnt-content-px: var(--spacing-48);
3252
+ }
3253
+ }
3254
+ .dnt {
3255
+ position: relative;
3256
+ height: var(--dnt-wrapper-height);
3257
+ width: 100%;
3258
+ font-family: var(--font-family-base);
3259
+ }
3260
+ .dnt__sticky {
3261
+ position: sticky;
3262
+ top: 0;
3263
+ height: 100vh;
3264
+ width: 100%;
3265
+ overflow: hidden;
3266
+ }
3267
+ .dnt__bg {
3268
+ position: absolute;
3269
+ inset: 0;
3270
+ width: 100%;
3271
+ height: 100%;
3272
+ object-fit: cover;
3273
+ object-position: center;
3274
+ display: block;
3275
+ pointer-events: none;
3276
+ }
3277
+ .dnt__bg--day {
3278
+ z-index: 0;
3279
+ }
3280
+ .dnt__bg--night {
3281
+ z-index: 1;
3282
+ }
3283
+ .dnt__content {
3284
+ position: relative;
3285
+ z-index: 2;
3286
+ display: flex;
3287
+ align-items: flex-start;
3288
+ height: 100%;
3289
+ padding: var(--dnt-content-py) var(--dnt-content-px);
3290
+ box-sizing: border-box;
3291
+ }
3292
+ @media (min-width: 992px) {
3293
+ .dnt__content {
3294
+ align-items: center;
3295
+ }
3296
+ }
3297
+ .dnt__text-wrap {
3298
+ display: flex;
3299
+ flex-direction: column;
3300
+ gap: var(--dnt-gap);
3301
+ max-width: var(--dnt-content-max-width);
3302
+ }
3303
+ .dnt__crossfade-wrap {
3304
+ display: grid;
3305
+ grid-template-areas: "stack";
3306
+ }
3307
+ .dnt__crossfade-wrap > * {
3308
+ grid-area: stack;
3309
+ }
3310
+ .dnt__headline {
3311
+ margin: 0;
3312
+ font-family: var(--font-family-base);
3313
+ font-size: var(--dnt-headline-size);
3314
+ font-weight: var(--dnt-headline-weight);
3315
+ line-height: var(--dnt-headline-lh);
3316
+ }
3317
+ .dnt__description {
3318
+ margin: 0;
3319
+ font-family: var(--font-family-base);
3320
+ font-size: var(--dnt-desc-size);
3321
+ font-weight: var(--dnt-desc-weight);
3322
+ line-height: var(--dnt-desc-lh);
3323
+ }
3324
+ .dnt__btn {
3325
+ display: inline-flex;
3326
+ align-items: center;
3327
+ justify-content: center;
3328
+ align-self: flex-start;
3329
+ padding: var(--dnt-btn-py) var(--dnt-btn-px);
3330
+ background-color: var(--dnt-btn-bg);
3331
+ color: var(--dnt-btn-text);
3332
+ border-radius: var(--dnt-btn-radius);
3333
+ font-family: var(--font-family-base);
3334
+ font-size: var(--dnt-btn-size);
3335
+ font-weight: var(--dnt-btn-weight);
3336
+ line-height: var(--dnt-btn-lh);
3337
+ text-decoration: none;
3338
+ cursor: pointer;
3339
+ border: none;
3340
+ transition: background-color 0.3s ease;
3341
+ white-space: nowrap;
3342
+ box-sizing: border-box;
3343
+ }
3344
+ .dnt__btn:hover {
3345
+ background-color: var(--dnt-btn-bg-hover);
3346
+ }
3347
+
3348
+ /* templates/PaymentMethods/PaymentMethods.css */
3349
+ :root {
3350
+ --pm-bg: var(--color-slate-1200);
3351
+ --pm-section-py: var(--spacing-96);
3352
+ --pm-section-px: var(--spacing-48);
3353
+ --pm-section-height: 50rem;
3354
+ --pm-max-width: 80rem;
3355
+ --pm-layout-gap: var(--spacing-112);
3356
+ --pm-card-bg: var(--color-slate-1100);
3357
+ --pm-card-radius: var(--radius-lg);
3358
+ --pm-card-radius-mobile: var(--radius-2xl);
3359
+ --pm-card-px: var(--spacing-16);
3360
+ --pm-card-py: var(--spacing-24);
3361
+ --pm-card-px-mobile: var(--spacing-12);
3362
+ --pm-card-py-mobile: var(--spacing-12);
3363
+ --pm-card-img-h: var(--spacing-112);
3364
+ --pm-card-img-h-mobile: 5.375rem;
3365
+ --pm-card-gap: var(--spacing-24);
3366
+ --pm-col-gap: var(--spacing-24);
3367
+ --pm-carousel-height: 39.375rem;
3368
+ --pm-carousel-height-mob: 20.5rem;
3369
+ --pm-fade-height: var(--spacing-64);
3370
+ --pm-headline-size: var(--font-size-4xl);
3371
+ --pm-headline-lh: var(--line-height-4xl);
3372
+ --pm-headline-color: var(--color-slate-50);
3373
+ --pm-headline-weight: var(--font-weight-extra-bold);
3374
+ --pm-body-size: var(--font-size-md);
3375
+ --pm-body-lh: var(--line-height-md);
3376
+ --pm-body-color: var(--color-slate-50);
3377
+ --pm-body-weight: var(--font-weight-regular);
3378
+ --pm-disc-size: var(--font-size-sm);
3379
+ --pm-disc-lh: var(--line-height-sm);
3380
+ --pm-disc-color: var(--color-slate-400);
3381
+ --pm-disc-weight: var(--font-weight-regular);
3382
+ --pm-link-color: var(--color-coral-500);
3383
+ --pm-link-size: var(--font-size-md);
3384
+ --pm-link-weight: var(--font-weight-semi-bold);
3385
+ --pm-text-width: 32.625rem;
3386
+ --pm-section-py-mobile: var(--spacing-48);
3387
+ --pm-section-px-mobile: var(--spacing-16);
3388
+ }
3389
+ .pm {
3390
+ position: relative;
3391
+ width: 100%;
3392
+ background-color: var(--pm-bg);
3393
+ font-family: var(--font-family-base);
3394
+ box-sizing: border-box;
3395
+ }
3396
+ .pm__inner {
3397
+ display: flex;
3398
+ flex-direction: column;
3399
+ gap: var(--spacing-24);
3400
+ align-items: flex-start;
3401
+ max-width: var(--pm-max-width);
3402
+ margin: 0 auto;
3403
+ padding: var(--pm-section-py-mobile) var(--pm-section-px-mobile);
3404
+ box-sizing: border-box;
3405
+ }
3406
+ @media (min-width: 992px) {
3407
+ .pm__inner {
3408
+ flex-direction: row;
3409
+ align-items: center;
3410
+ justify-content: center;
3411
+ gap: var(--pm-layout-gap);
3412
+ padding: var(--pm-section-py) var(--pm-section-px);
3413
+ min-height: var(--pm-section-height);
3414
+ }
3415
+ }
3416
+ .pm__content {
3417
+ display: flex;
3418
+ flex-direction: column;
3419
+ gap: var(--spacing-24);
3420
+ align-items: flex-start;
3421
+ width: 100%;
3422
+ order: 1;
3423
+ }
3424
+ @media (min-width: 992px) {
3425
+ .pm__content {
3426
+ flex-shrink: 0;
3427
+ width: var(--pm-text-width);
3428
+ order: 2;
3429
+ }
3430
+ }
3431
+ .pm__headline {
3432
+ margin: 0;
3433
+ font-family: var(--font-family-base);
3434
+ font-size: var(--pm-headline-size);
3435
+ font-weight: var(--pm-headline-weight);
3436
+ line-height: var(--pm-headline-lh);
3437
+ color: var(--pm-headline-color);
3438
+ }
3439
+ .pm__text-group {
3440
+ display: flex;
3441
+ flex-direction: column;
3442
+ gap: var(--spacing-16);
3443
+ }
3444
+ .pm__body {
3445
+ margin: 0;
3446
+ font-family: var(--font-family-base);
3447
+ font-size: var(--pm-body-size);
3448
+ font-weight: var(--pm-body-weight);
3449
+ line-height: var(--pm-body-lh);
3450
+ color: var(--pm-body-color);
3451
+ }
3452
+ .pm__disclaimer {
3453
+ margin: 0;
3454
+ font-family: var(--font-family-base);
3455
+ font-size: var(--pm-disc-size);
3456
+ font-weight: var(--pm-disc-weight);
3457
+ line-height: var(--pm-disc-lh);
3458
+ color: var(--pm-disc-color);
3459
+ }
3460
+ .pm__link {
3461
+ display: inline-flex;
3462
+ align-items: center;
3463
+ gap: var(--spacing-8);
3464
+ font-family: var(--font-family-base);
3465
+ font-size: var(--pm-link-size);
3466
+ font-weight: var(--pm-link-weight);
3467
+ line-height: var(--line-height-xs);
3468
+ color: var(--pm-link-color);
3469
+ text-decoration: none;
3470
+ cursor: pointer;
3471
+ white-space: nowrap;
3472
+ }
3473
+ .pm__link:hover {
3474
+ text-decoration: underline;
3475
+ }
3476
+ .pm__media {
3477
+ position: relative;
3478
+ width: 100%;
3479
+ order: 2;
3480
+ flex-shrink: 0;
3481
+ }
3482
+ @media (min-width: 992px) {
3483
+ .pm__media {
3484
+ flex: 1 0 0;
3485
+ min-width: 0;
3486
+ order: 1;
3487
+ align-self: stretch;
3488
+ }
3489
+ }
3490
+ .pm__carousel {
3491
+ position: relative;
3492
+ display: flex;
3493
+ align-items: flex-start;
3494
+ gap: var(--pm-col-gap);
3495
+ height: var(--pm-carousel-height-mob);
3496
+ overflow: hidden;
3497
+ }
3498
+ @media (min-width: 992px) {
3499
+ .pm__carousel {
3500
+ height: var(--pm-carousel-height);
3501
+ }
3502
+ }
3503
+ .pm__fade {
3504
+ position: absolute;
3505
+ left: 0;
3506
+ right: 0;
3507
+ height: var(--pm-fade-height);
3508
+ pointer-events: none;
3509
+ z-index: 2;
3510
+ }
3511
+ .pm__fade--top {
3512
+ top: 0;
3513
+ background:
3514
+ linear-gradient(
3515
+ to bottom,
3516
+ var(--pm-bg) 0%,
3517
+ rgba(0, 0, 0, 0) 100%);
3518
+ }
3519
+ .pm__fade--bottom {
3520
+ bottom: 0;
3521
+ background:
3522
+ linear-gradient(
3523
+ to top,
3524
+ var(--pm-bg) 0%,
3525
+ rgba(0, 0, 0, 0) 100%);
3526
+ }
3527
+ .pm__col {
3528
+ flex: 1 0 0;
3529
+ align-self: flex-start;
3530
+ display: flex;
3531
+ flex-direction: column;
3532
+ gap: var(--pm-card-gap);
3533
+ min-width: 0;
3534
+ will-change: transform;
3535
+ }
3536
+ .pm__card {
3537
+ flex-shrink: 0;
3538
+ background-color: var(--pm-card-bg);
3539
+ border-radius: var(--pm-card-radius-mobile);
3540
+ padding: var(--pm-card-py-mobile) var(--pm-card-px-mobile);
3541
+ display: flex;
3542
+ align-items: center;
3543
+ justify-content: center;
3544
+ box-sizing: border-box;
3545
+ width: 100%;
3546
+ }
3547
+ @media (min-width: 992px) {
3548
+ .pm__card {
3549
+ border-radius: var(--pm-card-radius);
3550
+ padding: var(--pm-card-py) var(--pm-card-px);
3551
+ }
3552
+ }
3553
+ .pm__card-img-wrap {
3554
+ width: 100%;
3555
+ height: var(--pm-card-img-h-mobile);
3556
+ display: flex;
3557
+ align-items: center;
3558
+ justify-content: center;
3559
+ overflow: hidden;
3560
+ }
3561
+ @media (min-width: 992px) {
3562
+ .pm__card-img-wrap {
3563
+ height: var(--pm-card-img-h);
3564
+ }
3565
+ }
3566
+ .pm__card-img-wrap img {
3567
+ max-width: 100%;
3568
+ max-height: 100%;
3569
+ width: auto;
3570
+ height: auto;
3571
+ object-fit: contain;
3572
+ display: block;
3573
+ }
1328
3574
  /*# sourceMappingURL=index.css.map */