@sonic-equipment/ui 0.0.88 → 0.0.89
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/.storybook/RenderHook.d.ts +1 -1
- package/dist/index.d.ts +34 -3
- package/dist/index.js +396 -178
- package/dist/src/country-selector/country-selector-dialog/country-selector-dialog.d.ts +13 -0
- package/dist/src/country-selector/country-selector-dialog/country-selector-dialog.stories.d.ts +20 -0
- package/dist/src/country-selector/country-selector-trigger/country-selector-trigger.d.ts +8 -0
- package/dist/src/country-selector/country-selector-trigger/country-selector-trigger.stories.d.ts +16 -0
- package/dist/src/country-selector/country-selector.d.ts +12 -0
- package/dist/src/country-selector/country-selector.stories.d.ts +19 -0
- package/dist/src/country-selector/use-countries-languages.d.ts +43 -0
- package/dist/src/country-selector/use-countries-languages.stories.d.ts +9 -0
- package/dist/src/forms/select/select.d.ts +2 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/intl/translation-id.d.ts +1 -1
- package/dist/src/modals/dialog/dialog.d.ts +1 -1
- package/dist/src/modals/dialog/dialog.stories.d.ts +1 -0
- package/dist/src/modals/modal/modal.d.ts +1 -1
- package/dist/src/modals/modal/modal.stories.d.ts +0 -1
- package/dist/src/shared/api/storefront/hooks/website/use-fetch-countries-languages.d.ts +4 -0
- package/dist/src/shared/api/storefront/hooks/website/use-fetch-countries.d.ts +1 -0
- package/dist/src/shared/api/storefront/hooks/website/use-update-language-by-id.d.ts +2 -0
- package/dist/src/shared/api/storefront/hooks/website/website.stories.d.ts +10 -0
- package/dist/src/shared/api/storefront/services/website-service.d.ts +9 -0
- package/dist/src/shared/hooks/use-cookie.d.ts +8 -0
- package/dist/src/shared/hooks/use-disclosure.d.ts +1 -0
- package/dist/src/shared/hooks/use-session-storage.d.ts +6 -0
- package/dist/src/shared/model/countries-languages.d.ts +13 -0
- package/dist/styles.css +504 -388
- package/package.json +3 -1
- package/dist/src/shared/utils/cookies.d.ts +0 -3
package/dist/styles.css
CHANGED
|
@@ -226,6 +226,12 @@
|
|
|
226
226
|
--header-height-mobile: 54px;
|
|
227
227
|
--search-input-height: 76px;
|
|
228
228
|
--announcement-bar-height: 52px;
|
|
229
|
+
--header-height: var(--header-height-mobile);
|
|
230
|
+
}
|
|
231
|
+
@media (width >= 1024px) {
|
|
232
|
+
:root {
|
|
233
|
+
--header-height: var(--header-height-desktop);
|
|
234
|
+
}
|
|
229
235
|
}
|
|
230
236
|
|
|
231
237
|
/* stylelint-disable no-descending-specificity */
|
|
@@ -1668,126 +1674,6 @@
|
|
|
1668
1674
|
grid-template-rows: 1fr;
|
|
1669
1675
|
}
|
|
1670
1676
|
|
|
1671
|
-
.multi-select-module-DC7Ix .multi-select-module-OW-NK {
|
|
1672
|
-
display: flex;
|
|
1673
|
-
min-height: 32px;
|
|
1674
|
-
align-items: center;
|
|
1675
|
-
color: var(--color-brand-medium-gray);
|
|
1676
|
-
gap: var(--space-4);
|
|
1677
|
-
}
|
|
1678
|
-
|
|
1679
|
-
.checkbox-module-YNVdd {
|
|
1680
|
-
--selected-color: var(--color-brand-red);
|
|
1681
|
-
--selected-color-pressed: var(--color-brand-dark-red);
|
|
1682
|
-
--disabled-color: color-mix(in srgb, var(--selected-color) 20%, transparent);
|
|
1683
|
-
--checkmark-color: var(--color-white);
|
|
1684
|
-
--disabled-checkmark-color: color-mix(
|
|
1685
|
-
in srgb,
|
|
1686
|
-
var(--checkmark-color) 40%,
|
|
1687
|
-
transparent
|
|
1688
|
-
);
|
|
1689
|
-
|
|
1690
|
-
all: unset;
|
|
1691
|
-
display: flex;
|
|
1692
|
-
box-sizing: border-box;
|
|
1693
|
-
align-items: center;
|
|
1694
|
-
color: var(--color-brand-black);
|
|
1695
|
-
cursor: pointer;
|
|
1696
|
-
font-size: var(--font-size-14);
|
|
1697
|
-
forced-color-adjust: none;
|
|
1698
|
-
gap: 6px;
|
|
1699
|
-
line-height: 1;
|
|
1700
|
-
}
|
|
1701
|
-
|
|
1702
|
-
.checkbox-module-YNVdd .checkbox-module-UKoyf {
|
|
1703
|
-
display: flex;
|
|
1704
|
-
width: 16px;
|
|
1705
|
-
height: 16px;
|
|
1706
|
-
box-sizing: border-box;
|
|
1707
|
-
align-items: center;
|
|
1708
|
-
justify-content: center;
|
|
1709
|
-
border: 2px solid var(--color-brand-medium-gray);
|
|
1710
|
-
border-radius: var(--border-radius-2);
|
|
1711
|
-
color: var(--checkmark-color);
|
|
1712
|
-
transition: all 200ms;
|
|
1713
|
-
}
|
|
1714
|
-
|
|
1715
|
-
.checkbox-module-YNVdd .checkbox-module-pHIwh {
|
|
1716
|
-
width: 1rem;
|
|
1717
|
-
height: 1rem;
|
|
1718
|
-
fill: none;
|
|
1719
|
-
stroke: currentcolor;
|
|
1720
|
-
stroke-dasharray: 22px;
|
|
1721
|
-
stroke-dashoffset: 66;
|
|
1722
|
-
stroke-linecap: round;
|
|
1723
|
-
stroke-width: 2px;
|
|
1724
|
-
transition: all 200ms;
|
|
1725
|
-
}
|
|
1726
|
-
|
|
1727
|
-
.checkbox-module-YNVdd[data-disabled] .checkbox-module-UKoyf {
|
|
1728
|
-
border-color: var(--color-transparent);
|
|
1729
|
-
background-color: var(--disabled-color);
|
|
1730
|
-
color: var(--disabled-checkmark-color);
|
|
1731
|
-
}
|
|
1732
|
-
|
|
1733
|
-
.checkbox-module-YNVdd[data-pressed] .checkbox-module-UKoyf {
|
|
1734
|
-
border-color: var(--color-brand-dark-gray);
|
|
1735
|
-
}
|
|
1736
|
-
|
|
1737
|
-
.checkbox-module-YNVdd.checkbox-module-v23jy .checkbox-module-UKoyf, .checkbox-module-YNVdd.checkbox-module-7UG-b .checkbox-module-UKoyf, .checkbox-module-YNVdd[data-focus-visible] .checkbox-module-UKoyf {
|
|
1738
|
-
box-shadow: var(--shadow-focus-outline-padded);
|
|
1739
|
-
outline: 2px solid var(--color-brand-white);
|
|
1740
|
-
outline-offset: 0;
|
|
1741
|
-
}
|
|
1742
|
-
|
|
1743
|
-
.checkbox-module-YNVdd[data-selected] .checkbox-module-UKoyf, .checkbox-module-YNVdd[data-indeterminate] .checkbox-module-UKoyf {
|
|
1744
|
-
border-color: var(--selected-color);
|
|
1745
|
-
background: var(--selected-color);
|
|
1746
|
-
}
|
|
1747
|
-
|
|
1748
|
-
.checkbox-module-YNVdd[data-selected][data-pressed] .checkbox-module-UKoyf, .checkbox-module-YNVdd[data-indeterminate][data-pressed] .checkbox-module-UKoyf {
|
|
1749
|
-
border-color: var(--selected-color-pressed);
|
|
1750
|
-
background: var(--selected-color-pressed);
|
|
1751
|
-
}
|
|
1752
|
-
|
|
1753
|
-
.checkbox-module-YNVdd[data-selected] .checkbox-module-pHIwh, .checkbox-module-YNVdd[data-indeterminate] .checkbox-module-pHIwh {
|
|
1754
|
-
stroke-dashoffset: 44;
|
|
1755
|
-
}
|
|
1756
|
-
|
|
1757
|
-
.checkbox-module-YNVdd[data-indeterminate] .checkbox-module-pHIwh {
|
|
1758
|
-
fill: var(--checkmark-color);
|
|
1759
|
-
stroke: none;
|
|
1760
|
-
}
|
|
1761
|
-
|
|
1762
|
-
/* stylelint-disable-next-line no-descending-specificity */
|
|
1763
|
-
|
|
1764
|
-
.checkbox-module-YNVdd.checkbox-module-nEhvW .checkbox-module-UKoyf {
|
|
1765
|
-
border: none;
|
|
1766
|
-
background: var(--selected-color);
|
|
1767
|
-
background-size: 16px 16px;
|
|
1768
|
-
transition: none;
|
|
1769
|
-
}
|
|
1770
|
-
|
|
1771
|
-
.checkbox-module-YNVdd.checkbox-module-nEhvW[data-selected] .checkbox-module-UKoyf, .checkbox-module-YNVdd.checkbox-module-nEhvW[data-indeterminate] .checkbox-module-UKoyf {
|
|
1772
|
-
border: 1px solid var(--color-brand-red);
|
|
1773
|
-
background: unset;
|
|
1774
|
-
background-image: linear-gradient(
|
|
1775
|
-
var(--selected-color),
|
|
1776
|
-
var(--selected-color)
|
|
1777
|
-
),
|
|
1778
|
-
linear-gradient(var(--selected-color), var(--selected-color));
|
|
1779
|
-
background-position:
|
|
1780
|
-
2px 2px,
|
|
1781
|
-
14px 14px;
|
|
1782
|
-
background-repeat: no-repeat;
|
|
1783
|
-
background-size: 10px 10px;
|
|
1784
|
-
}
|
|
1785
|
-
|
|
1786
|
-
.checkbox-module-YNVdd.checkbox-module-nEhvW[data-disabled] {
|
|
1787
|
-
cursor: pointer;
|
|
1788
|
-
opacity: 0.4;
|
|
1789
|
-
}
|
|
1790
|
-
|
|
1791
1677
|
.select-module-ui-Wc {
|
|
1792
1678
|
--trigger-width: initial;
|
|
1793
1679
|
--height: var(--space-44);
|
|
@@ -1809,54 +1695,56 @@
|
|
|
1809
1695
|
--height: var(--space-44);
|
|
1810
1696
|
}
|
|
1811
1697
|
|
|
1812
|
-
.select-module-ui-Wc.select-module-
|
|
1813
|
-
|
|
1698
|
+
.select-module-ui-Wc .select-module-aMQIQ {
|
|
1699
|
+
all: unset;
|
|
1700
|
+
position: relative;
|
|
1701
|
+
display: flex;
|
|
1702
|
+
width: 100%;
|
|
1703
|
+
height: var(--height);
|
|
1704
|
+
box-sizing: border-box;
|
|
1705
|
+
align-items: center;
|
|
1706
|
+
padding: 10px 32px 10px 16px;
|
|
1707
|
+
border: 1px solid var(--color-brand-medium-gray);
|
|
1708
|
+
border-radius: var(--border-radius-8);
|
|
1709
|
+
font: inherit;
|
|
1710
|
+
gap: var(--space-16);
|
|
1711
|
+
outline: none;
|
|
1814
1712
|
}
|
|
1815
1713
|
|
|
1816
|
-
.select-module-aMQIQ {
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
border-radius: var(--border-radius-8);
|
|
1827
|
-
font: inherit;
|
|
1828
|
-
gap: var(--space-16);
|
|
1829
|
-
outline: none;
|
|
1830
|
-
}
|
|
1714
|
+
.select-module-ui-Wc .select-module-aMQIQ .select-module-00uRU {
|
|
1715
|
+
position: absolute;
|
|
1716
|
+
display: block;
|
|
1717
|
+
width: var(--space-12);
|
|
1718
|
+
height: var(--space-12);
|
|
1719
|
+
color: var(--color-brand-dark-gray);
|
|
1720
|
+
inset-block: 0;
|
|
1721
|
+
inset-inline-end: 14px;
|
|
1722
|
+
margin-block: auto;
|
|
1723
|
+
}
|
|
1831
1724
|
|
|
1832
|
-
.select-module-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
width: var(--space-12);
|
|
1836
|
-
height: var(--space-12);
|
|
1837
|
-
color: var(--color-brand-dark-gray);
|
|
1838
|
-
inset-block: 0;
|
|
1839
|
-
inset-inline-end: 14px;
|
|
1840
|
-
margin-block: auto;
|
|
1841
|
-
}
|
|
1725
|
+
.select-module-ui-Wc .select-module-aMQIQ [slot='description'] {
|
|
1726
|
+
display: none;
|
|
1727
|
+
}
|
|
1842
1728
|
|
|
1843
|
-
.select-module-aMQIQ
|
|
1844
|
-
|
|
1845
|
-
|
|
1729
|
+
.select-module-ui-Wc .select-module-aMQIQ.select-module-XMc0P,
|
|
1730
|
+
.select-module-ui-Wc .select-module-aMQIQ:focus,
|
|
1731
|
+
.select-module-ui-Wc .select-module-aMQIQ:has([data-focused]) {
|
|
1732
|
+
border-color: transparent;
|
|
1733
|
+
box-shadow: var(--shadow-focus-outline);
|
|
1734
|
+
outline: none;
|
|
1735
|
+
}
|
|
1846
1736
|
|
|
1847
|
-
.select-module-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
border-color: transparent;
|
|
1851
|
-
box-shadow: var(--shadow-focus-outline);
|
|
1852
|
-
outline: none;
|
|
1853
|
-
}
|
|
1737
|
+
.select-module-ui-Wc .select-module-aMQIQ[disabled] {
|
|
1738
|
+
opacity: 0.4;
|
|
1739
|
+
}
|
|
1854
1740
|
|
|
1855
|
-
.select-module-aMQIQ
|
|
1856
|
-
|
|
1741
|
+
.select-module-ui-Wc.select-module-IRd4F .select-module-aMQIQ {
|
|
1742
|
+
border-color: var(--color-brand-light-gray);
|
|
1743
|
+
background-color: var(--color-brand-light-gray);
|
|
1857
1744
|
}
|
|
1858
1745
|
|
|
1859
1746
|
.select-module-z8cWq {
|
|
1747
|
+
overflow: auto;
|
|
1860
1748
|
width: var(--trigger-width);
|
|
1861
1749
|
min-width: -moz-fit-content;
|
|
1862
1750
|
min-width: fit-content;
|
|
@@ -1865,10 +1753,6 @@
|
|
|
1865
1753
|
padding-block: var(--space-8);
|
|
1866
1754
|
}
|
|
1867
1755
|
|
|
1868
|
-
.select-module-z8cWq.select-module-IRd4F {
|
|
1869
|
-
background-color: var(--color-brand-light-gray);
|
|
1870
|
-
}
|
|
1871
|
-
|
|
1872
1756
|
.select-module-S21ba {
|
|
1873
1757
|
outline: none;
|
|
1874
1758
|
}
|
|
@@ -1905,62 +1789,476 @@
|
|
|
1905
1789
|
color: var(--color-white);
|
|
1906
1790
|
}
|
|
1907
1791
|
|
|
1908
|
-
.
|
|
1909
|
-
position:
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1792
|
+
.modal-module-rVFJc {
|
|
1793
|
+
position: fixed;
|
|
1794
|
+
z-index: calc(var(--modal-layer) - 1);
|
|
1795
|
+
top: 0;
|
|
1796
|
+
left: 0;
|
|
1797
|
+
display: flex;
|
|
1798
|
+
width: 100vw;
|
|
1799
|
+
height: var(--visual-viewport-height);
|
|
1800
|
+
align-items: center;
|
|
1801
|
+
justify-content: center;
|
|
1802
|
+
-webkit-backdrop-filter: blur(4px);
|
|
1803
|
+
backdrop-filter: blur(4px);
|
|
1804
|
+
background-color: rgb(0 0 0 / 52%);
|
|
1915
1805
|
}
|
|
1916
1806
|
|
|
1917
|
-
.
|
|
1918
|
-
|
|
1919
|
-
color: var(--color-gray-500);
|
|
1807
|
+
.modal-module-rVFJc[data-entering] {
|
|
1808
|
+
animation: modal-module-63Uyl 200ms;
|
|
1920
1809
|
}
|
|
1921
1810
|
|
|
1922
|
-
.
|
|
1923
|
-
|
|
1924
|
-
outline: 0;
|
|
1811
|
+
.modal-module-rVFJc[data-exiting] {
|
|
1812
|
+
animation: modal-module-63Uyl 150ms reverse ease-in;
|
|
1925
1813
|
}
|
|
1926
1814
|
|
|
1927
|
-
.
|
|
1928
|
-
|
|
1929
|
-
right: 0;
|
|
1930
|
-
bottom: 0;
|
|
1931
|
-
left: 0;
|
|
1932
|
-
display: block;
|
|
1933
|
-
height: 2px;
|
|
1934
|
-
background-color: var(--color-brand-red);
|
|
1935
|
-
content: '';
|
|
1815
|
+
.modal-module-rVFJc:has(.modal-module-uwets) {
|
|
1816
|
+
display: contents;
|
|
1936
1817
|
}
|
|
1937
1818
|
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1819
|
+
.modal-module-6vlFt {
|
|
1820
|
+
position: absolute;
|
|
1821
|
+
z-index: calc(var(--modal-layer) - 1);
|
|
1822
|
+
bottom: var(--space-36);
|
|
1823
|
+
min-width: 300px;
|
|
1824
|
+
max-width: 90%;
|
|
1825
|
+
border: 1px solid var(--gray-400);
|
|
1826
|
+
border-radius: 12px;
|
|
1827
|
+
background: var(--color-white);
|
|
1828
|
+
box-shadow: 0 8px 20px rgba(0 0 0 / 10%);
|
|
1829
|
+
color: var(--text-color);
|
|
1830
|
+
outline: none;
|
|
1831
|
+
}
|
|
1944
1832
|
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1833
|
+
.modal-module-6vlFt section:focus-visible,
|
|
1834
|
+
.modal-module-6vlFt section:focus {
|
|
1835
|
+
outline: none;
|
|
1836
|
+
}
|
|
1949
1837
|
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1838
|
+
.modal-module-6vlFt .modal-module-FJxzx {
|
|
1839
|
+
width: 100%;
|
|
1840
|
+
height: 100%;
|
|
1841
|
+
}
|
|
1953
1842
|
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
}
|
|
1843
|
+
.modal-module-6vlFt[data-entering] {
|
|
1844
|
+
animation: modal-module-jkAe7 600ms ease;
|
|
1845
|
+
}
|
|
1958
1846
|
|
|
1959
|
-
|
|
1960
|
-
|
|
1847
|
+
.modal-module-6vlFt[data-entering] .modal-module-FJxzx {
|
|
1848
|
+
animation: modal-module-WOZ01 600ms ease;
|
|
1961
1849
|
}
|
|
1962
1850
|
|
|
1963
|
-
.
|
|
1851
|
+
.modal-module-6vlFt:where(.modal-module-uwets) {
|
|
1852
|
+
position: fixed;
|
|
1853
|
+
max-width: 100%;
|
|
1854
|
+
border-radius: 0;
|
|
1855
|
+
inset: 0;
|
|
1856
|
+
}
|
|
1857
|
+
|
|
1858
|
+
.modal-module-6vlFt:where(.modal-module-uwets)[data-entering] {
|
|
1859
|
+
animation: modal-module-63Uyl 200ms;
|
|
1860
|
+
}
|
|
1861
|
+
|
|
1862
|
+
.modal-module-6vlFt:where(.modal-module-uwets)[data-exiting] {
|
|
1863
|
+
animation: modal-module-63Uyl 200ms reverse;
|
|
1864
|
+
}
|
|
1865
|
+
|
|
1866
|
+
.modal-module-6vlFt .modal-module-7zIZE {
|
|
1867
|
+
position: absolute;
|
|
1868
|
+
top: 0;
|
|
1869
|
+
right: 0;
|
|
1870
|
+
}
|
|
1871
|
+
|
|
1872
|
+
@media (width >= 768px) {
|
|
1873
|
+
|
|
1874
|
+
.modal-module-6vlFt {
|
|
1875
|
+
bottom: auto
|
|
1876
|
+
}
|
|
1877
|
+
|
|
1878
|
+
.modal-module-6vlFt:where(.modal-module-uwets) {
|
|
1879
|
+
bottom: 0;
|
|
1880
|
+
}
|
|
1881
|
+
.modal-module-6vlFt[data-entering]:not(.modal-module-uwets) {
|
|
1882
|
+
animation: modal-module-aPJ7X 600ms ease;
|
|
1883
|
+
}
|
|
1884
|
+
|
|
1885
|
+
.modal-module-6vlFt[data-entering]:not(.modal-module-uwets) .modal-module-FJxzx {
|
|
1886
|
+
animation: modal-module-WOZ01 600ms ease;
|
|
1887
|
+
}
|
|
1888
|
+
}
|
|
1889
|
+
|
|
1890
|
+
@keyframes modal-module-63Uyl {
|
|
1891
|
+
from {
|
|
1892
|
+
opacity: 0;
|
|
1893
|
+
}
|
|
1894
|
+
|
|
1895
|
+
to {
|
|
1896
|
+
opacity: 1;
|
|
1897
|
+
}
|
|
1898
|
+
}
|
|
1899
|
+
|
|
1900
|
+
@keyframes modal-module-aPJ7X {
|
|
1901
|
+
from {
|
|
1902
|
+
transform: scale(0.1);
|
|
1903
|
+
}
|
|
1904
|
+
|
|
1905
|
+
to {
|
|
1906
|
+
transform: scale(1);
|
|
1907
|
+
}
|
|
1908
|
+
}
|
|
1909
|
+
|
|
1910
|
+
@keyframes modal-module-jkAe7 {
|
|
1911
|
+
0% {
|
|
1912
|
+
transform: translateY(100%);
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1915
|
+
50% {
|
|
1916
|
+
transform: translateY(1%);
|
|
1917
|
+
}
|
|
1918
|
+
|
|
1919
|
+
100% {
|
|
1920
|
+
transform: translateY(0);
|
|
1921
|
+
}
|
|
1922
|
+
}
|
|
1923
|
+
|
|
1924
|
+
@keyframes modal-module-WOZ01 {
|
|
1925
|
+
0% {
|
|
1926
|
+
opacity: 0;
|
|
1927
|
+
}
|
|
1928
|
+
|
|
1929
|
+
50% {
|
|
1930
|
+
opacity: 0;
|
|
1931
|
+
}
|
|
1932
|
+
|
|
1933
|
+
100% {
|
|
1934
|
+
opacity: 1;
|
|
1935
|
+
}
|
|
1936
|
+
}
|
|
1937
|
+
|
|
1938
|
+
.heading-module-pMC65 {
|
|
1939
|
+
padding: 0;
|
|
1940
|
+
margin: 0;
|
|
1941
|
+
color: var(--color-brand-black);
|
|
1942
|
+
font-weight: var(--font-weight-normal);
|
|
1943
|
+
transition: all 0.2s ease-out;
|
|
1944
|
+
}
|
|
1945
|
+
|
|
1946
|
+
.heading-module-pMC65:where(.heading-module-6spgX) {
|
|
1947
|
+
text-transform: uppercase;
|
|
1948
|
+
}
|
|
1949
|
+
|
|
1950
|
+
.heading-module-pMC65:where(.heading-module-XXMDM) {
|
|
1951
|
+
font-style: italic;
|
|
1952
|
+
}
|
|
1953
|
+
|
|
1954
|
+
.heading-module-pMC65:where(.heading-module-xvrxo) {
|
|
1955
|
+
font-weight: var(--font-weight-black);
|
|
1956
|
+
}
|
|
1957
|
+
|
|
1958
|
+
.heading-module-pMC65:where(.heading-module-Kn3ZN) {
|
|
1959
|
+
font-size: var(--text-heading-xxl-size);
|
|
1960
|
+
line-height: var(--text-heading-xxl-line-height);
|
|
1961
|
+
}
|
|
1962
|
+
|
|
1963
|
+
.heading-module-pMC65:where(.heading-module--hZs-) {
|
|
1964
|
+
font-size: var(--text-heading-xl-size);
|
|
1965
|
+
line-height: var(--text-heading-xl-line-height);
|
|
1966
|
+
}
|
|
1967
|
+
|
|
1968
|
+
.heading-module-pMC65:where(.heading-module-WrJRY) {
|
|
1969
|
+
font-size: var(--text-heading-l-size);
|
|
1970
|
+
line-height: var(--text-heading-l-line-height);
|
|
1971
|
+
}
|
|
1972
|
+
|
|
1973
|
+
.heading-module-pMC65:where(.heading-module-hTexc) {
|
|
1974
|
+
font-size: var(--text-heading-m-size);
|
|
1975
|
+
line-height: var(--text-heading-m-line-height);
|
|
1976
|
+
}
|
|
1977
|
+
|
|
1978
|
+
.heading-module-pMC65:where(.heading-module-7W29m) {
|
|
1979
|
+
font-size: var(--text-heading-s-size);
|
|
1980
|
+
line-height: var(--text-heading-s-line-height);
|
|
1981
|
+
}
|
|
1982
|
+
|
|
1983
|
+
.heading-module-pMC65:where(.heading-module-SgaLB) {
|
|
1984
|
+
font-size: var(--text-heading-xs-size);
|
|
1985
|
+
line-height: var(--text-heading-xs-line-height);
|
|
1986
|
+
}
|
|
1987
|
+
|
|
1988
|
+
.heading-module-pMC65:where(.heading-module-33en7) {
|
|
1989
|
+
font-size: var(--text-heading-xxs-size);
|
|
1990
|
+
line-height: var(--text-heading-xxs-line-height);
|
|
1991
|
+
}
|
|
1992
|
+
|
|
1993
|
+
.dialog-module-qKzgy {
|
|
1994
|
+
position: relative;
|
|
1995
|
+
padding: 1rem;
|
|
1996
|
+
}
|
|
1997
|
+
|
|
1998
|
+
.dialog-module-qKzgy,
|
|
1999
|
+
.dialog-module-qKzgy * {
|
|
2000
|
+
box-sizing: border-box;
|
|
2001
|
+
}
|
|
2002
|
+
|
|
2003
|
+
.dialog-module-qKzgy .dialog-module-ZnsAe {
|
|
2004
|
+
display: flex;
|
|
2005
|
+
align-items: center;
|
|
2006
|
+
justify-content: space-between;
|
|
2007
|
+
gap: 8px;
|
|
2008
|
+
line-height: 1;
|
|
2009
|
+
}
|
|
2010
|
+
|
|
2011
|
+
.dialog-module-qKzgy .dialog-module-ZnsAe:not(:empty) {
|
|
2012
|
+
margin-bottom: var(--space-16);
|
|
2013
|
+
}
|
|
2014
|
+
|
|
2015
|
+
.dialog-module-qKzgy .dialog-module-ZnsAe .dialog-module-Y7Tqg {
|
|
2016
|
+
position: absolute;
|
|
2017
|
+
top: 0;
|
|
2018
|
+
right: 0;
|
|
2019
|
+
}
|
|
2020
|
+
|
|
2021
|
+
.dialog-module-qKzgy .dialog-module-y7Axm {
|
|
2022
|
+
display: flex;
|
|
2023
|
+
flex-direction: column;
|
|
2024
|
+
margin-top: var(--space-32);
|
|
2025
|
+
gap: 8px;
|
|
2026
|
+
}
|
|
2027
|
+
|
|
2028
|
+
.country-selector-dialog-module-mMJS0 {
|
|
2029
|
+
max-width: 342px;
|
|
2030
|
+
padding: var(--space-36) var(--space-24);
|
|
2031
|
+
}
|
|
2032
|
+
|
|
2033
|
+
.country-selector-dialog-module-mMJS0 .country-selector-dialog-module-z-ZqY {
|
|
2034
|
+
display: grid;
|
|
2035
|
+
}
|
|
2036
|
+
|
|
2037
|
+
.country-selector-dialog-module-mMJS0 .country-selector-dialog-module-z-ZqY .country-selector-dialog-module-7VjsF {
|
|
2038
|
+
display: block;
|
|
2039
|
+
margin-bottom: var(--space-16);
|
|
2040
|
+
margin-inline: auto;
|
|
2041
|
+
}
|
|
2042
|
+
|
|
2043
|
+
.country-selector-dialog-module-mMJS0 .country-selector-dialog-module-z-ZqY .country-selector-dialog-module-IdVDt {
|
|
2044
|
+
margin-top: 0;
|
|
2045
|
+
margin-bottom: var(--space-12);
|
|
2046
|
+
}
|
|
2047
|
+
|
|
2048
|
+
.country-selector-dialog-module-mMJS0 .country-selector-dialog-module-z-ZqY .country-selector-dialog-module-Nvikf {
|
|
2049
|
+
display: grid;
|
|
2050
|
+
gap: var(--space-24);
|
|
2051
|
+
}
|
|
2052
|
+
|
|
2053
|
+
.country-selector-trigger-module-aioDu {
|
|
2054
|
+
all: unset;
|
|
2055
|
+
display: inline-flex;
|
|
2056
|
+
align-items: center;
|
|
2057
|
+
gap: var(--space-8);
|
|
2058
|
+
}
|
|
2059
|
+
|
|
2060
|
+
.country-selector-trigger-module-aioDu:hover {
|
|
2061
|
+
cursor: pointer;
|
|
2062
|
+
}
|
|
2063
|
+
|
|
2064
|
+
.country-selector-trigger-module-aioDu:focus-visible {
|
|
2065
|
+
box-shadow: var(--shadow-focus-outline);
|
|
2066
|
+
}
|
|
2067
|
+
|
|
2068
|
+
.country-selector-trigger-module-aioDu .country-selector-trigger-module-zOSJK {
|
|
2069
|
+
width: 24px;
|
|
2070
|
+
height: 24px;
|
|
2071
|
+
border: 1px solid var(--color-white);
|
|
2072
|
+
border-radius: 50%;
|
|
2073
|
+
}
|
|
2074
|
+
|
|
2075
|
+
.country-selector-trigger-module-aioDu .country-selector-trigger-module-TE8tl {
|
|
2076
|
+
display: flex;
|
|
2077
|
+
color: var(--color-white);
|
|
2078
|
+
font: inherit;
|
|
2079
|
+
line-height: 1;
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2082
|
+
.country-selector-trigger-module-aioDu .country-selector-trigger-module-TE8tl .country-selector-trigger-module-GNRDD {
|
|
2083
|
+
margin-inline: var(--space-4);
|
|
2084
|
+
}
|
|
2085
|
+
|
|
2086
|
+
.multi-select-module-DC7Ix .multi-select-module-OW-NK {
|
|
2087
|
+
display: flex;
|
|
2088
|
+
min-height: 32px;
|
|
2089
|
+
align-items: center;
|
|
2090
|
+
color: var(--color-brand-medium-gray);
|
|
2091
|
+
gap: var(--space-4);
|
|
2092
|
+
}
|
|
2093
|
+
|
|
2094
|
+
.checkbox-module-YNVdd {
|
|
2095
|
+
--selected-color: var(--color-brand-red);
|
|
2096
|
+
--selected-color-pressed: var(--color-brand-dark-red);
|
|
2097
|
+
--disabled-color: color-mix(in srgb, var(--selected-color) 20%, transparent);
|
|
2098
|
+
--checkmark-color: var(--color-white);
|
|
2099
|
+
--disabled-checkmark-color: color-mix(
|
|
2100
|
+
in srgb,
|
|
2101
|
+
var(--checkmark-color) 40%,
|
|
2102
|
+
transparent
|
|
2103
|
+
);
|
|
2104
|
+
|
|
2105
|
+
all: unset;
|
|
2106
|
+
display: flex;
|
|
2107
|
+
box-sizing: border-box;
|
|
2108
|
+
align-items: center;
|
|
2109
|
+
color: var(--color-brand-black);
|
|
2110
|
+
cursor: pointer;
|
|
2111
|
+
font-size: var(--font-size-14);
|
|
2112
|
+
forced-color-adjust: none;
|
|
2113
|
+
gap: 6px;
|
|
2114
|
+
line-height: 1;
|
|
2115
|
+
}
|
|
2116
|
+
|
|
2117
|
+
.checkbox-module-YNVdd .checkbox-module-UKoyf {
|
|
2118
|
+
display: flex;
|
|
2119
|
+
width: 16px;
|
|
2120
|
+
height: 16px;
|
|
2121
|
+
box-sizing: border-box;
|
|
2122
|
+
align-items: center;
|
|
2123
|
+
justify-content: center;
|
|
2124
|
+
border: 2px solid var(--color-brand-medium-gray);
|
|
2125
|
+
border-radius: var(--border-radius-2);
|
|
2126
|
+
color: var(--checkmark-color);
|
|
2127
|
+
transition: all 200ms;
|
|
2128
|
+
}
|
|
2129
|
+
|
|
2130
|
+
.checkbox-module-YNVdd .checkbox-module-pHIwh {
|
|
2131
|
+
width: 1rem;
|
|
2132
|
+
height: 1rem;
|
|
2133
|
+
fill: none;
|
|
2134
|
+
stroke: currentcolor;
|
|
2135
|
+
stroke-dasharray: 22px;
|
|
2136
|
+
stroke-dashoffset: 66;
|
|
2137
|
+
stroke-linecap: round;
|
|
2138
|
+
stroke-width: 2px;
|
|
2139
|
+
transition: all 200ms;
|
|
2140
|
+
}
|
|
2141
|
+
|
|
2142
|
+
.checkbox-module-YNVdd[data-disabled] .checkbox-module-UKoyf {
|
|
2143
|
+
border-color: var(--color-transparent);
|
|
2144
|
+
background-color: var(--disabled-color);
|
|
2145
|
+
color: var(--disabled-checkmark-color);
|
|
2146
|
+
}
|
|
2147
|
+
|
|
2148
|
+
.checkbox-module-YNVdd[data-pressed] .checkbox-module-UKoyf {
|
|
2149
|
+
border-color: var(--color-brand-dark-gray);
|
|
2150
|
+
}
|
|
2151
|
+
|
|
2152
|
+
.checkbox-module-YNVdd.checkbox-module-v23jy .checkbox-module-UKoyf, .checkbox-module-YNVdd.checkbox-module-7UG-b .checkbox-module-UKoyf, .checkbox-module-YNVdd[data-focus-visible] .checkbox-module-UKoyf {
|
|
2153
|
+
box-shadow: var(--shadow-focus-outline-padded);
|
|
2154
|
+
outline: 2px solid var(--color-brand-white);
|
|
2155
|
+
outline-offset: 0;
|
|
2156
|
+
}
|
|
2157
|
+
|
|
2158
|
+
.checkbox-module-YNVdd[data-selected] .checkbox-module-UKoyf, .checkbox-module-YNVdd[data-indeterminate] .checkbox-module-UKoyf {
|
|
2159
|
+
border-color: var(--selected-color);
|
|
2160
|
+
background: var(--selected-color);
|
|
2161
|
+
}
|
|
2162
|
+
|
|
2163
|
+
.checkbox-module-YNVdd[data-selected][data-pressed] .checkbox-module-UKoyf, .checkbox-module-YNVdd[data-indeterminate][data-pressed] .checkbox-module-UKoyf {
|
|
2164
|
+
border-color: var(--selected-color-pressed);
|
|
2165
|
+
background: var(--selected-color-pressed);
|
|
2166
|
+
}
|
|
2167
|
+
|
|
2168
|
+
.checkbox-module-YNVdd[data-selected] .checkbox-module-pHIwh, .checkbox-module-YNVdd[data-indeterminate] .checkbox-module-pHIwh {
|
|
2169
|
+
stroke-dashoffset: 44;
|
|
2170
|
+
}
|
|
2171
|
+
|
|
2172
|
+
.checkbox-module-YNVdd[data-indeterminate] .checkbox-module-pHIwh {
|
|
2173
|
+
fill: var(--checkmark-color);
|
|
2174
|
+
stroke: none;
|
|
2175
|
+
}
|
|
2176
|
+
|
|
2177
|
+
/* stylelint-disable-next-line no-descending-specificity */
|
|
2178
|
+
|
|
2179
|
+
.checkbox-module-YNVdd.checkbox-module-nEhvW .checkbox-module-UKoyf {
|
|
2180
|
+
border: none;
|
|
2181
|
+
background: var(--selected-color);
|
|
2182
|
+
background-size: 16px 16px;
|
|
2183
|
+
transition: none;
|
|
2184
|
+
}
|
|
2185
|
+
|
|
2186
|
+
.checkbox-module-YNVdd.checkbox-module-nEhvW[data-selected] .checkbox-module-UKoyf, .checkbox-module-YNVdd.checkbox-module-nEhvW[data-indeterminate] .checkbox-module-UKoyf {
|
|
2187
|
+
border: 1px solid var(--color-brand-red);
|
|
2188
|
+
background: unset;
|
|
2189
|
+
background-image: linear-gradient(
|
|
2190
|
+
var(--selected-color),
|
|
2191
|
+
var(--selected-color)
|
|
2192
|
+
),
|
|
2193
|
+
linear-gradient(var(--selected-color), var(--selected-color));
|
|
2194
|
+
background-position:
|
|
2195
|
+
2px 2px,
|
|
2196
|
+
14px 14px;
|
|
2197
|
+
background-repeat: no-repeat;
|
|
2198
|
+
background-size: 10px 10px;
|
|
2199
|
+
}
|
|
2200
|
+
|
|
2201
|
+
.checkbox-module-YNVdd.checkbox-module-nEhvW[data-disabled] {
|
|
2202
|
+
cursor: pointer;
|
|
2203
|
+
opacity: 0.4;
|
|
2204
|
+
}
|
|
2205
|
+
|
|
2206
|
+
.textarea-module-C6Xr1 {
|
|
2207
|
+
position: relative;
|
|
2208
|
+
display: inline-block;
|
|
2209
|
+
overflow: hidden;
|
|
2210
|
+
border: none;
|
|
2211
|
+
border-radius: var(--border-radius-8);
|
|
2212
|
+
background-color: var(--color-brand-light-gray);
|
|
2213
|
+
}
|
|
2214
|
+
|
|
2215
|
+
.textarea-module-C6Xr1:has([data-disabled]) {
|
|
2216
|
+
background-color: var(--color-gray-50);
|
|
2217
|
+
color: var(--color-gray-500);
|
|
2218
|
+
}
|
|
2219
|
+
|
|
2220
|
+
.textarea-module-C6Xr1:has([data-focused]) {
|
|
2221
|
+
box-shadow: 0 0 8px 2px var(--color-brand-red);
|
|
2222
|
+
outline: 0;
|
|
2223
|
+
}
|
|
2224
|
+
|
|
2225
|
+
.textarea-module-C6Xr1:has([data-invalid])::after {
|
|
2226
|
+
position: absolute;
|
|
2227
|
+
right: 0;
|
|
2228
|
+
bottom: 0;
|
|
2229
|
+
left: 0;
|
|
2230
|
+
display: block;
|
|
2231
|
+
height: 2px;
|
|
2232
|
+
background-color: var(--color-brand-red);
|
|
2233
|
+
content: '';
|
|
2234
|
+
}
|
|
2235
|
+
|
|
2236
|
+
.textarea-module-C6Xr1 textarea {
|
|
2237
|
+
all: unset;
|
|
2238
|
+
box-sizing: border-box;
|
|
2239
|
+
padding: 13px var(--space-16);
|
|
2240
|
+
font: inherit;
|
|
2241
|
+
}
|
|
2242
|
+
|
|
2243
|
+
.textarea-module-C6Xr1.textarea-module-vksG- textarea,
|
|
2244
|
+
.textarea-module-C6Xr1.textarea-module-vksG- .textarea-module-C6Xr1 {
|
|
2245
|
+
min-height: var(--space-44);
|
|
2246
|
+
}
|
|
2247
|
+
|
|
2248
|
+
.textarea-module-C6Xr1.textarea-module-vksG- textarea {
|
|
2249
|
+
padding: var(--space-16);
|
|
2250
|
+
}
|
|
2251
|
+
|
|
2252
|
+
.textarea-module-C6Xr1.textarea-module-6JrQJ textarea,
|
|
2253
|
+
.textarea-module-C6Xr1.textarea-module-6JrQJ .textarea-module-C6Xr1 {
|
|
2254
|
+
min-height: var(--space-40);
|
|
2255
|
+
}
|
|
2256
|
+
|
|
2257
|
+
.textarea-module-C6Xr1.textarea-module-6JrQJ textarea {
|
|
2258
|
+
padding: 11px var(--space-8);
|
|
2259
|
+
}
|
|
2260
|
+
|
|
2261
|
+
.text-field-module-JeaK0 {
|
|
1964
2262
|
all: unset;
|
|
1965
2263
|
display: inline-flex;
|
|
1966
2264
|
flex-direction: column;
|
|
@@ -2291,61 +2589,6 @@
|
|
|
2291
2589
|
}
|
|
2292
2590
|
}
|
|
2293
2591
|
|
|
2294
|
-
.heading-module-pMC65 {
|
|
2295
|
-
padding: 0;
|
|
2296
|
-
margin: 0;
|
|
2297
|
-
color: var(--color-brand-black);
|
|
2298
|
-
font-weight: var(--font-weight-normal);
|
|
2299
|
-
transition: all 0.2s ease-out;
|
|
2300
|
-
}
|
|
2301
|
-
|
|
2302
|
-
.heading-module-pMC65:where(.heading-module-6spgX) {
|
|
2303
|
-
text-transform: uppercase;
|
|
2304
|
-
}
|
|
2305
|
-
|
|
2306
|
-
.heading-module-pMC65:where(.heading-module-XXMDM) {
|
|
2307
|
-
font-style: italic;
|
|
2308
|
-
}
|
|
2309
|
-
|
|
2310
|
-
.heading-module-pMC65:where(.heading-module-xvrxo) {
|
|
2311
|
-
font-weight: var(--font-weight-black);
|
|
2312
|
-
}
|
|
2313
|
-
|
|
2314
|
-
.heading-module-pMC65:where(.heading-module-Kn3ZN) {
|
|
2315
|
-
font-size: var(--text-heading-xxl-size);
|
|
2316
|
-
line-height: var(--text-heading-xxl-line-height);
|
|
2317
|
-
}
|
|
2318
|
-
|
|
2319
|
-
.heading-module-pMC65:where(.heading-module--hZs-) {
|
|
2320
|
-
font-size: var(--text-heading-xl-size);
|
|
2321
|
-
line-height: var(--text-heading-xl-line-height);
|
|
2322
|
-
}
|
|
2323
|
-
|
|
2324
|
-
.heading-module-pMC65:where(.heading-module-WrJRY) {
|
|
2325
|
-
font-size: var(--text-heading-l-size);
|
|
2326
|
-
line-height: var(--text-heading-l-line-height);
|
|
2327
|
-
}
|
|
2328
|
-
|
|
2329
|
-
.heading-module-pMC65:where(.heading-module-hTexc) {
|
|
2330
|
-
font-size: var(--text-heading-m-size);
|
|
2331
|
-
line-height: var(--text-heading-m-line-height);
|
|
2332
|
-
}
|
|
2333
|
-
|
|
2334
|
-
.heading-module-pMC65:where(.heading-module-7W29m) {
|
|
2335
|
-
font-size: var(--text-heading-s-size);
|
|
2336
|
-
line-height: var(--text-heading-s-line-height);
|
|
2337
|
-
}
|
|
2338
|
-
|
|
2339
|
-
.heading-module-pMC65:where(.heading-module-SgaLB) {
|
|
2340
|
-
font-size: var(--text-heading-xs-size);
|
|
2341
|
-
line-height: var(--text-heading-xs-line-height);
|
|
2342
|
-
}
|
|
2343
|
-
|
|
2344
|
-
.heading-module-pMC65:where(.heading-module-33en7) {
|
|
2345
|
-
font-size: var(--text-heading-xxs-size);
|
|
2346
|
-
line-height: var(--text-heading-xxs-line-height);
|
|
2347
|
-
}
|
|
2348
|
-
|
|
2349
2592
|
.page-module-XtZ9Y {
|
|
2350
2593
|
font-family: var(--font-family-sonic);
|
|
2351
2594
|
}
|
|
@@ -2383,133 +2626,6 @@
|
|
|
2383
2626
|
line-height: 1;
|
|
2384
2627
|
}
|
|
2385
2628
|
|
|
2386
|
-
.modal-module-rVFJc {
|
|
2387
|
-
position: fixed;
|
|
2388
|
-
z-index: calc(var(--modal-layer) - 1);
|
|
2389
|
-
top: 0;
|
|
2390
|
-
left: 0;
|
|
2391
|
-
display: flex;
|
|
2392
|
-
width: 100vw;
|
|
2393
|
-
height: var(--visual-viewport-height);
|
|
2394
|
-
align-items: center;
|
|
2395
|
-
justify-content: center;
|
|
2396
|
-
-webkit-backdrop-filter: blur(4px);
|
|
2397
|
-
backdrop-filter: blur(4px);
|
|
2398
|
-
background-color: rgb(0 0 0 / 52%);
|
|
2399
|
-
}
|
|
2400
|
-
|
|
2401
|
-
.modal-module-rVFJc[data-entering] {
|
|
2402
|
-
animation: modal-module-63Uyl 200ms;
|
|
2403
|
-
}
|
|
2404
|
-
|
|
2405
|
-
.modal-module-rVFJc[data-exiting] {
|
|
2406
|
-
animation: modal-module-63Uyl 150ms reverse ease-in;
|
|
2407
|
-
}
|
|
2408
|
-
|
|
2409
|
-
.modal-module-rVFJc:has(.modal-module-uwets) {
|
|
2410
|
-
display: contents;
|
|
2411
|
-
}
|
|
2412
|
-
|
|
2413
|
-
.modal-module-6vlFt {
|
|
2414
|
-
position: absolute;
|
|
2415
|
-
z-index: calc(var(--modal-layer) - 1);
|
|
2416
|
-
min-width: 300px;
|
|
2417
|
-
max-width: 90%;
|
|
2418
|
-
border: 1px solid var(--gray-400);
|
|
2419
|
-
border-radius: 12px;
|
|
2420
|
-
background: var(--color-white);
|
|
2421
|
-
box-shadow: 0 8px 20px rgba(0 0 0 / 10%);
|
|
2422
|
-
color: var(--text-color);
|
|
2423
|
-
outline: none;
|
|
2424
|
-
}
|
|
2425
|
-
|
|
2426
|
-
.modal-module-6vlFt section:focus-visible,
|
|
2427
|
-
.modal-module-6vlFt section:focus {
|
|
2428
|
-
outline: none;
|
|
2429
|
-
}
|
|
2430
|
-
|
|
2431
|
-
.modal-module-6vlFt[data-entering] {
|
|
2432
|
-
animation: modal-module-aPJ7X 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
|
2433
|
-
}
|
|
2434
|
-
|
|
2435
|
-
.modal-module-6vlFt .modal-module-7c3-9 {
|
|
2436
|
-
width: 100%;
|
|
2437
|
-
height: 100%;
|
|
2438
|
-
}
|
|
2439
|
-
|
|
2440
|
-
.modal-module-6vlFt:where(.modal-module-uwets) {
|
|
2441
|
-
position: fixed;
|
|
2442
|
-
max-width: 100%;
|
|
2443
|
-
border-radius: 0;
|
|
2444
|
-
inset: 0;
|
|
2445
|
-
}
|
|
2446
|
-
|
|
2447
|
-
.modal-module-6vlFt:where(.modal-module-uwets)[data-entering] {
|
|
2448
|
-
animation: modal-module-63Uyl 300ms;
|
|
2449
|
-
}
|
|
2450
|
-
|
|
2451
|
-
.modal-module-6vlFt:where(.modal-module-uwets)[data-exiting] {
|
|
2452
|
-
animation: modal-module-63Uyl 300ms reverse;
|
|
2453
|
-
}
|
|
2454
|
-
|
|
2455
|
-
.modal-module-6vlFt .modal-module-7zIZE {
|
|
2456
|
-
position: absolute;
|
|
2457
|
-
top: 0;
|
|
2458
|
-
right: 0;
|
|
2459
|
-
}
|
|
2460
|
-
|
|
2461
|
-
@keyframes modal-module-63Uyl {
|
|
2462
|
-
from {
|
|
2463
|
-
opacity: 0;
|
|
2464
|
-
}
|
|
2465
|
-
|
|
2466
|
-
to {
|
|
2467
|
-
opacity: 1;
|
|
2468
|
-
}
|
|
2469
|
-
}
|
|
2470
|
-
|
|
2471
|
-
@keyframes modal-module-aPJ7X {
|
|
2472
|
-
from {
|
|
2473
|
-
transform: scale(0.8);
|
|
2474
|
-
}
|
|
2475
|
-
|
|
2476
|
-
to {
|
|
2477
|
-
transform: scale(1);
|
|
2478
|
-
}
|
|
2479
|
-
}
|
|
2480
|
-
|
|
2481
|
-
.dialog-module-qKzgy {
|
|
2482
|
-
position: relative;
|
|
2483
|
-
padding: 1rem;
|
|
2484
|
-
}
|
|
2485
|
-
|
|
2486
|
-
.dialog-module-qKzgy,
|
|
2487
|
-
.dialog-module-qKzgy * {
|
|
2488
|
-
box-sizing: border-box;
|
|
2489
|
-
}
|
|
2490
|
-
|
|
2491
|
-
.dialog-module-qKzgy .dialog-module-ZnsAe {
|
|
2492
|
-
display: flex;
|
|
2493
|
-
align-items: center;
|
|
2494
|
-
justify-content: space-between;
|
|
2495
|
-
margin-bottom: var(--space-16);
|
|
2496
|
-
gap: 8px;
|
|
2497
|
-
line-height: 1;
|
|
2498
|
-
}
|
|
2499
|
-
|
|
2500
|
-
.dialog-module-qKzgy .dialog-module-ZnsAe .dialog-module-Y7Tqg {
|
|
2501
|
-
position: absolute;
|
|
2502
|
-
top: 0;
|
|
2503
|
-
right: 0;
|
|
2504
|
-
}
|
|
2505
|
-
|
|
2506
|
-
.dialog-module-qKzgy .dialog-module-y7Axm {
|
|
2507
|
-
display: flex;
|
|
2508
|
-
flex-direction: column;
|
|
2509
|
-
margin-top: var(--space-32);
|
|
2510
|
-
gap: 8px;
|
|
2511
|
-
}
|
|
2512
|
-
|
|
2513
2629
|
.sign-in-dialog-module-P-AHV {
|
|
2514
2630
|
max-width: 403px;
|
|
2515
2631
|
padding: 28px 24px 36px;
|
|
@@ -3026,7 +3142,7 @@ button.swiper-pagination-bullet {
|
|
|
3026
3142
|
|
|
3027
3143
|
.product-details-page-layout-module-IQFIn .product-details-page-layout-module--7oUp .product-details-page-layout-module-Y2490 {
|
|
3028
3144
|
position: sticky;
|
|
3029
|
-
top:
|
|
3145
|
+
top: calc(var(--header-height) + var(--space-8));
|
|
3030
3146
|
height: -moz-fit-content;
|
|
3031
3147
|
height: fit-content;
|
|
3032
3148
|
}
|