@oslokommune/punkt-css 7.1.5 → 7.1.7
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/CHANGELOG.md +38 -0
- package/dist/css/components/header.css +6 -5
- package/dist/css/components/header.min.css +1 -1
- package/dist/css/components/inputwrapper.css +4 -0
- package/dist/css/components/inputwrapper.min.css +1 -1
- package/dist/css/pkt-base.css +822 -0
- package/dist/css/pkt-base.min.css +1 -1
- package/dist/css/pkt-components.css +10 -5
- package/dist/css/pkt-components.min.css +1 -1
- package/dist/css/pkt.css +832 -5
- package/dist/css/pkt.min.css +1 -1
- package/dist/scss/abstracts/variables/_spacing.scss +2 -0
- package/dist/scss/components/_header.scss +6 -5
- package/dist/scss/components/_inputwrapper.scss +5 -0
- package/package.json +2 -2
package/dist/css/pkt.css
CHANGED
|
@@ -1821,6 +1821,354 @@ body {
|
|
|
1821
1821
|
padding-bottom: 0.25rem !important;
|
|
1822
1822
|
}
|
|
1823
1823
|
}
|
|
1824
|
+
.m-size-6 {
|
|
1825
|
+
margin: 0.375rem !important;
|
|
1826
|
+
}
|
|
1827
|
+
|
|
1828
|
+
.mt-size-6 {
|
|
1829
|
+
margin-top: 0.375rem !important;
|
|
1830
|
+
}
|
|
1831
|
+
|
|
1832
|
+
.mr-size-6 {
|
|
1833
|
+
margin-right: 0.375rem !important;
|
|
1834
|
+
}
|
|
1835
|
+
|
|
1836
|
+
.mb-size-6 {
|
|
1837
|
+
margin-bottom: 0.375rem !important;
|
|
1838
|
+
}
|
|
1839
|
+
|
|
1840
|
+
.ml-size-6 {
|
|
1841
|
+
margin-left: 0.375rem !important;
|
|
1842
|
+
}
|
|
1843
|
+
|
|
1844
|
+
.mx-size-6 {
|
|
1845
|
+
margin-right: 0.375rem !important;
|
|
1846
|
+
margin-left: 0.375rem !important;
|
|
1847
|
+
}
|
|
1848
|
+
|
|
1849
|
+
.my-size-6 {
|
|
1850
|
+
margin-top: 0.375rem !important;
|
|
1851
|
+
margin-bottom: 0.375rem !important;
|
|
1852
|
+
}
|
|
1853
|
+
|
|
1854
|
+
.p-size-6 {
|
|
1855
|
+
padding: 0.375rem !important;
|
|
1856
|
+
}
|
|
1857
|
+
|
|
1858
|
+
.pt-size-6 {
|
|
1859
|
+
padding-top: 0.375rem !important;
|
|
1860
|
+
}
|
|
1861
|
+
|
|
1862
|
+
.pr-size-6 {
|
|
1863
|
+
padding-right: 0.375rem !important;
|
|
1864
|
+
}
|
|
1865
|
+
|
|
1866
|
+
.pb-size-6 {
|
|
1867
|
+
padding-bottom: 0.375rem !important;
|
|
1868
|
+
}
|
|
1869
|
+
|
|
1870
|
+
.pl-size-6 {
|
|
1871
|
+
padding-left: 0.375rem !important;
|
|
1872
|
+
}
|
|
1873
|
+
|
|
1874
|
+
.px-size-6 {
|
|
1875
|
+
padding-right: 0.375rem !important;
|
|
1876
|
+
padding-left: 0.375rem !important;
|
|
1877
|
+
}
|
|
1878
|
+
|
|
1879
|
+
.py-size-6 {
|
|
1880
|
+
padding-top: 0.375rem !important;
|
|
1881
|
+
padding-bottom: 0.375rem !important;
|
|
1882
|
+
}
|
|
1883
|
+
|
|
1884
|
+
@media screen and (min-width: 0) {
|
|
1885
|
+
.m-size-6--mobile-up {
|
|
1886
|
+
margin: 0.375rem !important;
|
|
1887
|
+
}
|
|
1888
|
+
.mt-size-6--mobile-up {
|
|
1889
|
+
margin-top: 0.375rem !important;
|
|
1890
|
+
}
|
|
1891
|
+
.mr-size-6--mobile-up {
|
|
1892
|
+
margin-right: 0.375rem !important;
|
|
1893
|
+
}
|
|
1894
|
+
.mb-size-6--mobile-up {
|
|
1895
|
+
margin-bottom: 0.375rem !important;
|
|
1896
|
+
}
|
|
1897
|
+
.ml-size-6--mobile-up {
|
|
1898
|
+
margin-left: 0.375rem !important;
|
|
1899
|
+
}
|
|
1900
|
+
.mx-size-6--mobile-up {
|
|
1901
|
+
margin-right: 0.375rem !important;
|
|
1902
|
+
margin-left: 0.375rem !important;
|
|
1903
|
+
}
|
|
1904
|
+
.my-size-6--mobile-up {
|
|
1905
|
+
margin-top: 0.375rem !important;
|
|
1906
|
+
margin-bottom: 0.375rem !important;
|
|
1907
|
+
}
|
|
1908
|
+
.p-size-6--mobile-up {
|
|
1909
|
+
padding: 0.375rem !important;
|
|
1910
|
+
}
|
|
1911
|
+
.pt-size-6--mobile-up {
|
|
1912
|
+
padding-top: 0.375rem !important;
|
|
1913
|
+
}
|
|
1914
|
+
.pr-size-6--mobile-up {
|
|
1915
|
+
padding-right: 0.375rem !important;
|
|
1916
|
+
}
|
|
1917
|
+
.pb-size-6--mobile-up {
|
|
1918
|
+
padding-bottom: 0.375rem !important;
|
|
1919
|
+
}
|
|
1920
|
+
.pl-size-6--mobile-up {
|
|
1921
|
+
padding-left: 0.375rem !important;
|
|
1922
|
+
}
|
|
1923
|
+
.px-size-6--mobile-up {
|
|
1924
|
+
padding-right: 0.375rem !important;
|
|
1925
|
+
padding-left: 0.375rem !important;
|
|
1926
|
+
}
|
|
1927
|
+
.py-size-6--mobile-up {
|
|
1928
|
+
padding-top: 0.375rem !important;
|
|
1929
|
+
padding-bottom: 0.375rem !important;
|
|
1930
|
+
}
|
|
1931
|
+
}
|
|
1932
|
+
@media screen and (min-width: 36rem) {
|
|
1933
|
+
.m-size-6--phablet-up {
|
|
1934
|
+
margin: 0.375rem !important;
|
|
1935
|
+
}
|
|
1936
|
+
.mt-size-6--phablet-up {
|
|
1937
|
+
margin-top: 0.375rem !important;
|
|
1938
|
+
}
|
|
1939
|
+
.mr-size-6--phablet-up {
|
|
1940
|
+
margin-right: 0.375rem !important;
|
|
1941
|
+
}
|
|
1942
|
+
.mb-size-6--phablet-up {
|
|
1943
|
+
margin-bottom: 0.375rem !important;
|
|
1944
|
+
}
|
|
1945
|
+
.ml-size-6--phablet-up {
|
|
1946
|
+
margin-left: 0.375rem !important;
|
|
1947
|
+
}
|
|
1948
|
+
.mx-size-6--phablet-up {
|
|
1949
|
+
margin-right: 0.375rem !important;
|
|
1950
|
+
margin-left: 0.375rem !important;
|
|
1951
|
+
}
|
|
1952
|
+
.my-size-6--phablet-up {
|
|
1953
|
+
margin-top: 0.375rem !important;
|
|
1954
|
+
margin-bottom: 0.375rem !important;
|
|
1955
|
+
}
|
|
1956
|
+
.p-size-6--phablet-up {
|
|
1957
|
+
padding: 0.375rem !important;
|
|
1958
|
+
}
|
|
1959
|
+
.pt-size-6--phablet-up {
|
|
1960
|
+
padding-top: 0.375rem !important;
|
|
1961
|
+
}
|
|
1962
|
+
.pr-size-6--phablet-up {
|
|
1963
|
+
padding-right: 0.375rem !important;
|
|
1964
|
+
}
|
|
1965
|
+
.pb-size-6--phablet-up {
|
|
1966
|
+
padding-bottom: 0.375rem !important;
|
|
1967
|
+
}
|
|
1968
|
+
.pl-size-6--phablet-up {
|
|
1969
|
+
padding-left: 0.375rem !important;
|
|
1970
|
+
}
|
|
1971
|
+
.px-size-6--phablet-up {
|
|
1972
|
+
padding-right: 0.375rem !important;
|
|
1973
|
+
padding-left: 0.375rem !important;
|
|
1974
|
+
}
|
|
1975
|
+
.py-size-6--phablet-up {
|
|
1976
|
+
padding-top: 0.375rem !important;
|
|
1977
|
+
padding-bottom: 0.375rem !important;
|
|
1978
|
+
}
|
|
1979
|
+
}
|
|
1980
|
+
@media screen and (min-width: 48rem) {
|
|
1981
|
+
.m-size-6--tablet-up {
|
|
1982
|
+
margin: 0.375rem !important;
|
|
1983
|
+
}
|
|
1984
|
+
.mt-size-6--tablet-up {
|
|
1985
|
+
margin-top: 0.375rem !important;
|
|
1986
|
+
}
|
|
1987
|
+
.mr-size-6--tablet-up {
|
|
1988
|
+
margin-right: 0.375rem !important;
|
|
1989
|
+
}
|
|
1990
|
+
.mb-size-6--tablet-up {
|
|
1991
|
+
margin-bottom: 0.375rem !important;
|
|
1992
|
+
}
|
|
1993
|
+
.ml-size-6--tablet-up {
|
|
1994
|
+
margin-left: 0.375rem !important;
|
|
1995
|
+
}
|
|
1996
|
+
.mx-size-6--tablet-up {
|
|
1997
|
+
margin-right: 0.375rem !important;
|
|
1998
|
+
margin-left: 0.375rem !important;
|
|
1999
|
+
}
|
|
2000
|
+
.my-size-6--tablet-up {
|
|
2001
|
+
margin-top: 0.375rem !important;
|
|
2002
|
+
margin-bottom: 0.375rem !important;
|
|
2003
|
+
}
|
|
2004
|
+
.p-size-6--tablet-up {
|
|
2005
|
+
padding: 0.375rem !important;
|
|
2006
|
+
}
|
|
2007
|
+
.pt-size-6--tablet-up {
|
|
2008
|
+
padding-top: 0.375rem !important;
|
|
2009
|
+
}
|
|
2010
|
+
.pr-size-6--tablet-up {
|
|
2011
|
+
padding-right: 0.375rem !important;
|
|
2012
|
+
}
|
|
2013
|
+
.pb-size-6--tablet-up {
|
|
2014
|
+
padding-bottom: 0.375rem !important;
|
|
2015
|
+
}
|
|
2016
|
+
.pl-size-6--tablet-up {
|
|
2017
|
+
padding-left: 0.375rem !important;
|
|
2018
|
+
}
|
|
2019
|
+
.px-size-6--tablet-up {
|
|
2020
|
+
padding-right: 0.375rem !important;
|
|
2021
|
+
padding-left: 0.375rem !important;
|
|
2022
|
+
}
|
|
2023
|
+
.py-size-6--tablet-up {
|
|
2024
|
+
padding-top: 0.375rem !important;
|
|
2025
|
+
padding-bottom: 0.375rem !important;
|
|
2026
|
+
}
|
|
2027
|
+
}
|
|
2028
|
+
@media screen and (min-width: 64rem) {
|
|
2029
|
+
.m-size-6--tablet-big-up {
|
|
2030
|
+
margin: 0.375rem !important;
|
|
2031
|
+
}
|
|
2032
|
+
.mt-size-6--tablet-big-up {
|
|
2033
|
+
margin-top: 0.375rem !important;
|
|
2034
|
+
}
|
|
2035
|
+
.mr-size-6--tablet-big-up {
|
|
2036
|
+
margin-right: 0.375rem !important;
|
|
2037
|
+
}
|
|
2038
|
+
.mb-size-6--tablet-big-up {
|
|
2039
|
+
margin-bottom: 0.375rem !important;
|
|
2040
|
+
}
|
|
2041
|
+
.ml-size-6--tablet-big-up {
|
|
2042
|
+
margin-left: 0.375rem !important;
|
|
2043
|
+
}
|
|
2044
|
+
.mx-size-6--tablet-big-up {
|
|
2045
|
+
margin-right: 0.375rem !important;
|
|
2046
|
+
margin-left: 0.375rem !important;
|
|
2047
|
+
}
|
|
2048
|
+
.my-size-6--tablet-big-up {
|
|
2049
|
+
margin-top: 0.375rem !important;
|
|
2050
|
+
margin-bottom: 0.375rem !important;
|
|
2051
|
+
}
|
|
2052
|
+
.p-size-6--tablet-big-up {
|
|
2053
|
+
padding: 0.375rem !important;
|
|
2054
|
+
}
|
|
2055
|
+
.pt-size-6--tablet-big-up {
|
|
2056
|
+
padding-top: 0.375rem !important;
|
|
2057
|
+
}
|
|
2058
|
+
.pr-size-6--tablet-big-up {
|
|
2059
|
+
padding-right: 0.375rem !important;
|
|
2060
|
+
}
|
|
2061
|
+
.pb-size-6--tablet-big-up {
|
|
2062
|
+
padding-bottom: 0.375rem !important;
|
|
2063
|
+
}
|
|
2064
|
+
.pl-size-6--tablet-big-up {
|
|
2065
|
+
padding-left: 0.375rem !important;
|
|
2066
|
+
}
|
|
2067
|
+
.px-size-6--tablet-big-up {
|
|
2068
|
+
padding-right: 0.375rem !important;
|
|
2069
|
+
padding-left: 0.375rem !important;
|
|
2070
|
+
}
|
|
2071
|
+
.py-size-6--tablet-big-up {
|
|
2072
|
+
padding-top: 0.375rem !important;
|
|
2073
|
+
padding-bottom: 0.375rem !important;
|
|
2074
|
+
}
|
|
2075
|
+
}
|
|
2076
|
+
@media screen and (min-width: 80rem) {
|
|
2077
|
+
.m-size-6--laptop-up {
|
|
2078
|
+
margin: 0.375rem !important;
|
|
2079
|
+
}
|
|
2080
|
+
.mt-size-6--laptop-up {
|
|
2081
|
+
margin-top: 0.375rem !important;
|
|
2082
|
+
}
|
|
2083
|
+
.mr-size-6--laptop-up {
|
|
2084
|
+
margin-right: 0.375rem !important;
|
|
2085
|
+
}
|
|
2086
|
+
.mb-size-6--laptop-up {
|
|
2087
|
+
margin-bottom: 0.375rem !important;
|
|
2088
|
+
}
|
|
2089
|
+
.ml-size-6--laptop-up {
|
|
2090
|
+
margin-left: 0.375rem !important;
|
|
2091
|
+
}
|
|
2092
|
+
.mx-size-6--laptop-up {
|
|
2093
|
+
margin-right: 0.375rem !important;
|
|
2094
|
+
margin-left: 0.375rem !important;
|
|
2095
|
+
}
|
|
2096
|
+
.my-size-6--laptop-up {
|
|
2097
|
+
margin-top: 0.375rem !important;
|
|
2098
|
+
margin-bottom: 0.375rem !important;
|
|
2099
|
+
}
|
|
2100
|
+
.p-size-6--laptop-up {
|
|
2101
|
+
padding: 0.375rem !important;
|
|
2102
|
+
}
|
|
2103
|
+
.pt-size-6--laptop-up {
|
|
2104
|
+
padding-top: 0.375rem !important;
|
|
2105
|
+
}
|
|
2106
|
+
.pr-size-6--laptop-up {
|
|
2107
|
+
padding-right: 0.375rem !important;
|
|
2108
|
+
}
|
|
2109
|
+
.pb-size-6--laptop-up {
|
|
2110
|
+
padding-bottom: 0.375rem !important;
|
|
2111
|
+
}
|
|
2112
|
+
.pl-size-6--laptop-up {
|
|
2113
|
+
padding-left: 0.375rem !important;
|
|
2114
|
+
}
|
|
2115
|
+
.px-size-6--laptop-up {
|
|
2116
|
+
padding-right: 0.375rem !important;
|
|
2117
|
+
padding-left: 0.375rem !important;
|
|
2118
|
+
}
|
|
2119
|
+
.py-size-6--laptop-up {
|
|
2120
|
+
padding-top: 0.375rem !important;
|
|
2121
|
+
padding-bottom: 0.375rem !important;
|
|
2122
|
+
}
|
|
2123
|
+
}
|
|
2124
|
+
@media screen and (min-width: 100rem) {
|
|
2125
|
+
.m-size-6--desktop-up {
|
|
2126
|
+
margin: 0.375rem !important;
|
|
2127
|
+
}
|
|
2128
|
+
.mt-size-6--desktop-up {
|
|
2129
|
+
margin-top: 0.375rem !important;
|
|
2130
|
+
}
|
|
2131
|
+
.mr-size-6--desktop-up {
|
|
2132
|
+
margin-right: 0.375rem !important;
|
|
2133
|
+
}
|
|
2134
|
+
.mb-size-6--desktop-up {
|
|
2135
|
+
margin-bottom: 0.375rem !important;
|
|
2136
|
+
}
|
|
2137
|
+
.ml-size-6--desktop-up {
|
|
2138
|
+
margin-left: 0.375rem !important;
|
|
2139
|
+
}
|
|
2140
|
+
.mx-size-6--desktop-up {
|
|
2141
|
+
margin-right: 0.375rem !important;
|
|
2142
|
+
margin-left: 0.375rem !important;
|
|
2143
|
+
}
|
|
2144
|
+
.my-size-6--desktop-up {
|
|
2145
|
+
margin-top: 0.375rem !important;
|
|
2146
|
+
margin-bottom: 0.375rem !important;
|
|
2147
|
+
}
|
|
2148
|
+
.p-size-6--desktop-up {
|
|
2149
|
+
padding: 0.375rem !important;
|
|
2150
|
+
}
|
|
2151
|
+
.pt-size-6--desktop-up {
|
|
2152
|
+
padding-top: 0.375rem !important;
|
|
2153
|
+
}
|
|
2154
|
+
.pr-size-6--desktop-up {
|
|
2155
|
+
padding-right: 0.375rem !important;
|
|
2156
|
+
}
|
|
2157
|
+
.pb-size-6--desktop-up {
|
|
2158
|
+
padding-bottom: 0.375rem !important;
|
|
2159
|
+
}
|
|
2160
|
+
.pl-size-6--desktop-up {
|
|
2161
|
+
padding-left: 0.375rem !important;
|
|
2162
|
+
}
|
|
2163
|
+
.px-size-6--desktop-up {
|
|
2164
|
+
padding-right: 0.375rem !important;
|
|
2165
|
+
padding-left: 0.375rem !important;
|
|
2166
|
+
}
|
|
2167
|
+
.py-size-6--desktop-up {
|
|
2168
|
+
padding-top: 0.375rem !important;
|
|
2169
|
+
padding-bottom: 0.375rem !important;
|
|
2170
|
+
}
|
|
2171
|
+
}
|
|
1824
2172
|
.m-size-8 {
|
|
1825
2173
|
margin: 0.5rem !important;
|
|
1826
2174
|
}
|
|
@@ -4257,6 +4605,354 @@ body {
|
|
|
4257
4605
|
padding-bottom: 3rem !important;
|
|
4258
4606
|
}
|
|
4259
4607
|
}
|
|
4608
|
+
.m-size-52 {
|
|
4609
|
+
margin: 3.25rem !important;
|
|
4610
|
+
}
|
|
4611
|
+
|
|
4612
|
+
.mt-size-52 {
|
|
4613
|
+
margin-top: 3.25rem !important;
|
|
4614
|
+
}
|
|
4615
|
+
|
|
4616
|
+
.mr-size-52 {
|
|
4617
|
+
margin-right: 3.25rem !important;
|
|
4618
|
+
}
|
|
4619
|
+
|
|
4620
|
+
.mb-size-52 {
|
|
4621
|
+
margin-bottom: 3.25rem !important;
|
|
4622
|
+
}
|
|
4623
|
+
|
|
4624
|
+
.ml-size-52 {
|
|
4625
|
+
margin-left: 3.25rem !important;
|
|
4626
|
+
}
|
|
4627
|
+
|
|
4628
|
+
.mx-size-52 {
|
|
4629
|
+
margin-right: 3.25rem !important;
|
|
4630
|
+
margin-left: 3.25rem !important;
|
|
4631
|
+
}
|
|
4632
|
+
|
|
4633
|
+
.my-size-52 {
|
|
4634
|
+
margin-top: 3.25rem !important;
|
|
4635
|
+
margin-bottom: 3.25rem !important;
|
|
4636
|
+
}
|
|
4637
|
+
|
|
4638
|
+
.p-size-52 {
|
|
4639
|
+
padding: 3.25rem !important;
|
|
4640
|
+
}
|
|
4641
|
+
|
|
4642
|
+
.pt-size-52 {
|
|
4643
|
+
padding-top: 3.25rem !important;
|
|
4644
|
+
}
|
|
4645
|
+
|
|
4646
|
+
.pr-size-52 {
|
|
4647
|
+
padding-right: 3.25rem !important;
|
|
4648
|
+
}
|
|
4649
|
+
|
|
4650
|
+
.pb-size-52 {
|
|
4651
|
+
padding-bottom: 3.25rem !important;
|
|
4652
|
+
}
|
|
4653
|
+
|
|
4654
|
+
.pl-size-52 {
|
|
4655
|
+
padding-left: 3.25rem !important;
|
|
4656
|
+
}
|
|
4657
|
+
|
|
4658
|
+
.px-size-52 {
|
|
4659
|
+
padding-right: 3.25rem !important;
|
|
4660
|
+
padding-left: 3.25rem !important;
|
|
4661
|
+
}
|
|
4662
|
+
|
|
4663
|
+
.py-size-52 {
|
|
4664
|
+
padding-top: 3.25rem !important;
|
|
4665
|
+
padding-bottom: 3.25rem !important;
|
|
4666
|
+
}
|
|
4667
|
+
|
|
4668
|
+
@media screen and (min-width: 0) {
|
|
4669
|
+
.m-size-52--mobile-up {
|
|
4670
|
+
margin: 3.25rem !important;
|
|
4671
|
+
}
|
|
4672
|
+
.mt-size-52--mobile-up {
|
|
4673
|
+
margin-top: 3.25rem !important;
|
|
4674
|
+
}
|
|
4675
|
+
.mr-size-52--mobile-up {
|
|
4676
|
+
margin-right: 3.25rem !important;
|
|
4677
|
+
}
|
|
4678
|
+
.mb-size-52--mobile-up {
|
|
4679
|
+
margin-bottom: 3.25rem !important;
|
|
4680
|
+
}
|
|
4681
|
+
.ml-size-52--mobile-up {
|
|
4682
|
+
margin-left: 3.25rem !important;
|
|
4683
|
+
}
|
|
4684
|
+
.mx-size-52--mobile-up {
|
|
4685
|
+
margin-right: 3.25rem !important;
|
|
4686
|
+
margin-left: 3.25rem !important;
|
|
4687
|
+
}
|
|
4688
|
+
.my-size-52--mobile-up {
|
|
4689
|
+
margin-top: 3.25rem !important;
|
|
4690
|
+
margin-bottom: 3.25rem !important;
|
|
4691
|
+
}
|
|
4692
|
+
.p-size-52--mobile-up {
|
|
4693
|
+
padding: 3.25rem !important;
|
|
4694
|
+
}
|
|
4695
|
+
.pt-size-52--mobile-up {
|
|
4696
|
+
padding-top: 3.25rem !important;
|
|
4697
|
+
}
|
|
4698
|
+
.pr-size-52--mobile-up {
|
|
4699
|
+
padding-right: 3.25rem !important;
|
|
4700
|
+
}
|
|
4701
|
+
.pb-size-52--mobile-up {
|
|
4702
|
+
padding-bottom: 3.25rem !important;
|
|
4703
|
+
}
|
|
4704
|
+
.pl-size-52--mobile-up {
|
|
4705
|
+
padding-left: 3.25rem !important;
|
|
4706
|
+
}
|
|
4707
|
+
.px-size-52--mobile-up {
|
|
4708
|
+
padding-right: 3.25rem !important;
|
|
4709
|
+
padding-left: 3.25rem !important;
|
|
4710
|
+
}
|
|
4711
|
+
.py-size-52--mobile-up {
|
|
4712
|
+
padding-top: 3.25rem !important;
|
|
4713
|
+
padding-bottom: 3.25rem !important;
|
|
4714
|
+
}
|
|
4715
|
+
}
|
|
4716
|
+
@media screen and (min-width: 36rem) {
|
|
4717
|
+
.m-size-52--phablet-up {
|
|
4718
|
+
margin: 3.25rem !important;
|
|
4719
|
+
}
|
|
4720
|
+
.mt-size-52--phablet-up {
|
|
4721
|
+
margin-top: 3.25rem !important;
|
|
4722
|
+
}
|
|
4723
|
+
.mr-size-52--phablet-up {
|
|
4724
|
+
margin-right: 3.25rem !important;
|
|
4725
|
+
}
|
|
4726
|
+
.mb-size-52--phablet-up {
|
|
4727
|
+
margin-bottom: 3.25rem !important;
|
|
4728
|
+
}
|
|
4729
|
+
.ml-size-52--phablet-up {
|
|
4730
|
+
margin-left: 3.25rem !important;
|
|
4731
|
+
}
|
|
4732
|
+
.mx-size-52--phablet-up {
|
|
4733
|
+
margin-right: 3.25rem !important;
|
|
4734
|
+
margin-left: 3.25rem !important;
|
|
4735
|
+
}
|
|
4736
|
+
.my-size-52--phablet-up {
|
|
4737
|
+
margin-top: 3.25rem !important;
|
|
4738
|
+
margin-bottom: 3.25rem !important;
|
|
4739
|
+
}
|
|
4740
|
+
.p-size-52--phablet-up {
|
|
4741
|
+
padding: 3.25rem !important;
|
|
4742
|
+
}
|
|
4743
|
+
.pt-size-52--phablet-up {
|
|
4744
|
+
padding-top: 3.25rem !important;
|
|
4745
|
+
}
|
|
4746
|
+
.pr-size-52--phablet-up {
|
|
4747
|
+
padding-right: 3.25rem !important;
|
|
4748
|
+
}
|
|
4749
|
+
.pb-size-52--phablet-up {
|
|
4750
|
+
padding-bottom: 3.25rem !important;
|
|
4751
|
+
}
|
|
4752
|
+
.pl-size-52--phablet-up {
|
|
4753
|
+
padding-left: 3.25rem !important;
|
|
4754
|
+
}
|
|
4755
|
+
.px-size-52--phablet-up {
|
|
4756
|
+
padding-right: 3.25rem !important;
|
|
4757
|
+
padding-left: 3.25rem !important;
|
|
4758
|
+
}
|
|
4759
|
+
.py-size-52--phablet-up {
|
|
4760
|
+
padding-top: 3.25rem !important;
|
|
4761
|
+
padding-bottom: 3.25rem !important;
|
|
4762
|
+
}
|
|
4763
|
+
}
|
|
4764
|
+
@media screen and (min-width: 48rem) {
|
|
4765
|
+
.m-size-52--tablet-up {
|
|
4766
|
+
margin: 3.25rem !important;
|
|
4767
|
+
}
|
|
4768
|
+
.mt-size-52--tablet-up {
|
|
4769
|
+
margin-top: 3.25rem !important;
|
|
4770
|
+
}
|
|
4771
|
+
.mr-size-52--tablet-up {
|
|
4772
|
+
margin-right: 3.25rem !important;
|
|
4773
|
+
}
|
|
4774
|
+
.mb-size-52--tablet-up {
|
|
4775
|
+
margin-bottom: 3.25rem !important;
|
|
4776
|
+
}
|
|
4777
|
+
.ml-size-52--tablet-up {
|
|
4778
|
+
margin-left: 3.25rem !important;
|
|
4779
|
+
}
|
|
4780
|
+
.mx-size-52--tablet-up {
|
|
4781
|
+
margin-right: 3.25rem !important;
|
|
4782
|
+
margin-left: 3.25rem !important;
|
|
4783
|
+
}
|
|
4784
|
+
.my-size-52--tablet-up {
|
|
4785
|
+
margin-top: 3.25rem !important;
|
|
4786
|
+
margin-bottom: 3.25rem !important;
|
|
4787
|
+
}
|
|
4788
|
+
.p-size-52--tablet-up {
|
|
4789
|
+
padding: 3.25rem !important;
|
|
4790
|
+
}
|
|
4791
|
+
.pt-size-52--tablet-up {
|
|
4792
|
+
padding-top: 3.25rem !important;
|
|
4793
|
+
}
|
|
4794
|
+
.pr-size-52--tablet-up {
|
|
4795
|
+
padding-right: 3.25rem !important;
|
|
4796
|
+
}
|
|
4797
|
+
.pb-size-52--tablet-up {
|
|
4798
|
+
padding-bottom: 3.25rem !important;
|
|
4799
|
+
}
|
|
4800
|
+
.pl-size-52--tablet-up {
|
|
4801
|
+
padding-left: 3.25rem !important;
|
|
4802
|
+
}
|
|
4803
|
+
.px-size-52--tablet-up {
|
|
4804
|
+
padding-right: 3.25rem !important;
|
|
4805
|
+
padding-left: 3.25rem !important;
|
|
4806
|
+
}
|
|
4807
|
+
.py-size-52--tablet-up {
|
|
4808
|
+
padding-top: 3.25rem !important;
|
|
4809
|
+
padding-bottom: 3.25rem !important;
|
|
4810
|
+
}
|
|
4811
|
+
}
|
|
4812
|
+
@media screen and (min-width: 64rem) {
|
|
4813
|
+
.m-size-52--tablet-big-up {
|
|
4814
|
+
margin: 3.25rem !important;
|
|
4815
|
+
}
|
|
4816
|
+
.mt-size-52--tablet-big-up {
|
|
4817
|
+
margin-top: 3.25rem !important;
|
|
4818
|
+
}
|
|
4819
|
+
.mr-size-52--tablet-big-up {
|
|
4820
|
+
margin-right: 3.25rem !important;
|
|
4821
|
+
}
|
|
4822
|
+
.mb-size-52--tablet-big-up {
|
|
4823
|
+
margin-bottom: 3.25rem !important;
|
|
4824
|
+
}
|
|
4825
|
+
.ml-size-52--tablet-big-up {
|
|
4826
|
+
margin-left: 3.25rem !important;
|
|
4827
|
+
}
|
|
4828
|
+
.mx-size-52--tablet-big-up {
|
|
4829
|
+
margin-right: 3.25rem !important;
|
|
4830
|
+
margin-left: 3.25rem !important;
|
|
4831
|
+
}
|
|
4832
|
+
.my-size-52--tablet-big-up {
|
|
4833
|
+
margin-top: 3.25rem !important;
|
|
4834
|
+
margin-bottom: 3.25rem !important;
|
|
4835
|
+
}
|
|
4836
|
+
.p-size-52--tablet-big-up {
|
|
4837
|
+
padding: 3.25rem !important;
|
|
4838
|
+
}
|
|
4839
|
+
.pt-size-52--tablet-big-up {
|
|
4840
|
+
padding-top: 3.25rem !important;
|
|
4841
|
+
}
|
|
4842
|
+
.pr-size-52--tablet-big-up {
|
|
4843
|
+
padding-right: 3.25rem !important;
|
|
4844
|
+
}
|
|
4845
|
+
.pb-size-52--tablet-big-up {
|
|
4846
|
+
padding-bottom: 3.25rem !important;
|
|
4847
|
+
}
|
|
4848
|
+
.pl-size-52--tablet-big-up {
|
|
4849
|
+
padding-left: 3.25rem !important;
|
|
4850
|
+
}
|
|
4851
|
+
.px-size-52--tablet-big-up {
|
|
4852
|
+
padding-right: 3.25rem !important;
|
|
4853
|
+
padding-left: 3.25rem !important;
|
|
4854
|
+
}
|
|
4855
|
+
.py-size-52--tablet-big-up {
|
|
4856
|
+
padding-top: 3.25rem !important;
|
|
4857
|
+
padding-bottom: 3.25rem !important;
|
|
4858
|
+
}
|
|
4859
|
+
}
|
|
4860
|
+
@media screen and (min-width: 80rem) {
|
|
4861
|
+
.m-size-52--laptop-up {
|
|
4862
|
+
margin: 3.25rem !important;
|
|
4863
|
+
}
|
|
4864
|
+
.mt-size-52--laptop-up {
|
|
4865
|
+
margin-top: 3.25rem !important;
|
|
4866
|
+
}
|
|
4867
|
+
.mr-size-52--laptop-up {
|
|
4868
|
+
margin-right: 3.25rem !important;
|
|
4869
|
+
}
|
|
4870
|
+
.mb-size-52--laptop-up {
|
|
4871
|
+
margin-bottom: 3.25rem !important;
|
|
4872
|
+
}
|
|
4873
|
+
.ml-size-52--laptop-up {
|
|
4874
|
+
margin-left: 3.25rem !important;
|
|
4875
|
+
}
|
|
4876
|
+
.mx-size-52--laptop-up {
|
|
4877
|
+
margin-right: 3.25rem !important;
|
|
4878
|
+
margin-left: 3.25rem !important;
|
|
4879
|
+
}
|
|
4880
|
+
.my-size-52--laptop-up {
|
|
4881
|
+
margin-top: 3.25rem !important;
|
|
4882
|
+
margin-bottom: 3.25rem !important;
|
|
4883
|
+
}
|
|
4884
|
+
.p-size-52--laptop-up {
|
|
4885
|
+
padding: 3.25rem !important;
|
|
4886
|
+
}
|
|
4887
|
+
.pt-size-52--laptop-up {
|
|
4888
|
+
padding-top: 3.25rem !important;
|
|
4889
|
+
}
|
|
4890
|
+
.pr-size-52--laptop-up {
|
|
4891
|
+
padding-right: 3.25rem !important;
|
|
4892
|
+
}
|
|
4893
|
+
.pb-size-52--laptop-up {
|
|
4894
|
+
padding-bottom: 3.25rem !important;
|
|
4895
|
+
}
|
|
4896
|
+
.pl-size-52--laptop-up {
|
|
4897
|
+
padding-left: 3.25rem !important;
|
|
4898
|
+
}
|
|
4899
|
+
.px-size-52--laptop-up {
|
|
4900
|
+
padding-right: 3.25rem !important;
|
|
4901
|
+
padding-left: 3.25rem !important;
|
|
4902
|
+
}
|
|
4903
|
+
.py-size-52--laptop-up {
|
|
4904
|
+
padding-top: 3.25rem !important;
|
|
4905
|
+
padding-bottom: 3.25rem !important;
|
|
4906
|
+
}
|
|
4907
|
+
}
|
|
4908
|
+
@media screen and (min-width: 100rem) {
|
|
4909
|
+
.m-size-52--desktop-up {
|
|
4910
|
+
margin: 3.25rem !important;
|
|
4911
|
+
}
|
|
4912
|
+
.mt-size-52--desktop-up {
|
|
4913
|
+
margin-top: 3.25rem !important;
|
|
4914
|
+
}
|
|
4915
|
+
.mr-size-52--desktop-up {
|
|
4916
|
+
margin-right: 3.25rem !important;
|
|
4917
|
+
}
|
|
4918
|
+
.mb-size-52--desktop-up {
|
|
4919
|
+
margin-bottom: 3.25rem !important;
|
|
4920
|
+
}
|
|
4921
|
+
.ml-size-52--desktop-up {
|
|
4922
|
+
margin-left: 3.25rem !important;
|
|
4923
|
+
}
|
|
4924
|
+
.mx-size-52--desktop-up {
|
|
4925
|
+
margin-right: 3.25rem !important;
|
|
4926
|
+
margin-left: 3.25rem !important;
|
|
4927
|
+
}
|
|
4928
|
+
.my-size-52--desktop-up {
|
|
4929
|
+
margin-top: 3.25rem !important;
|
|
4930
|
+
margin-bottom: 3.25rem !important;
|
|
4931
|
+
}
|
|
4932
|
+
.p-size-52--desktop-up {
|
|
4933
|
+
padding: 3.25rem !important;
|
|
4934
|
+
}
|
|
4935
|
+
.pt-size-52--desktop-up {
|
|
4936
|
+
padding-top: 3.25rem !important;
|
|
4937
|
+
}
|
|
4938
|
+
.pr-size-52--desktop-up {
|
|
4939
|
+
padding-right: 3.25rem !important;
|
|
4940
|
+
}
|
|
4941
|
+
.pb-size-52--desktop-up {
|
|
4942
|
+
padding-bottom: 3.25rem !important;
|
|
4943
|
+
}
|
|
4944
|
+
.pl-size-52--desktop-up {
|
|
4945
|
+
padding-left: 3.25rem !important;
|
|
4946
|
+
}
|
|
4947
|
+
.px-size-52--desktop-up {
|
|
4948
|
+
padding-right: 3.25rem !important;
|
|
4949
|
+
padding-left: 3.25rem !important;
|
|
4950
|
+
}
|
|
4951
|
+
.py-size-52--desktop-up {
|
|
4952
|
+
padding-top: 3.25rem !important;
|
|
4953
|
+
padding-bottom: 3.25rem !important;
|
|
4954
|
+
}
|
|
4955
|
+
}
|
|
4260
4956
|
.m-size-56 {
|
|
4261
4957
|
margin: 3.5rem !important;
|
|
4262
4958
|
}
|
|
@@ -9625,6 +10321,15 @@ body {
|
|
|
9625
10321
|
.pkt-grid--rowgap-size-4 {
|
|
9626
10322
|
row-gap: 0.25rem;
|
|
9627
10323
|
}
|
|
10324
|
+
.pkt-grid--gap-size-6 {
|
|
10325
|
+
gap: 0.375rem;
|
|
10326
|
+
}
|
|
10327
|
+
.pkt-grid--colgap-size-6 {
|
|
10328
|
+
column-gap: 0.375rem;
|
|
10329
|
+
}
|
|
10330
|
+
.pkt-grid--rowgap-size-6 {
|
|
10331
|
+
row-gap: 0.375rem;
|
|
10332
|
+
}
|
|
9628
10333
|
.pkt-grid--gap-size-8 {
|
|
9629
10334
|
gap: 0.5rem;
|
|
9630
10335
|
}
|
|
@@ -9688,6 +10393,15 @@ body {
|
|
|
9688
10393
|
.pkt-grid--rowgap-size-48 {
|
|
9689
10394
|
row-gap: 3rem;
|
|
9690
10395
|
}
|
|
10396
|
+
.pkt-grid--gap-size-52 {
|
|
10397
|
+
gap: 3.25rem;
|
|
10398
|
+
}
|
|
10399
|
+
.pkt-grid--colgap-size-52 {
|
|
10400
|
+
column-gap: 3.25rem;
|
|
10401
|
+
}
|
|
10402
|
+
.pkt-grid--rowgap-size-52 {
|
|
10403
|
+
row-gap: 3.25rem;
|
|
10404
|
+
}
|
|
9691
10405
|
.pkt-grid--gap-size-56 {
|
|
9692
10406
|
gap: 3.5rem;
|
|
9693
10407
|
}
|
|
@@ -9851,6 +10565,15 @@ body {
|
|
|
9851
10565
|
.pkt-grid--rowgap-size-4-mobile-up {
|
|
9852
10566
|
row-gap: 0.25rem;
|
|
9853
10567
|
}
|
|
10568
|
+
.pkt-grid--gap-size-6-mobile-up {
|
|
10569
|
+
gap: 0.375rem;
|
|
10570
|
+
}
|
|
10571
|
+
.pkt-grid--colgap-size-6-mobile-up {
|
|
10572
|
+
column-gap: 0.375rem;
|
|
10573
|
+
}
|
|
10574
|
+
.pkt-grid--rowgap-size-6-mobile-up {
|
|
10575
|
+
row-gap: 0.375rem;
|
|
10576
|
+
}
|
|
9854
10577
|
.pkt-grid--gap-size-8-mobile-up {
|
|
9855
10578
|
gap: 0.5rem;
|
|
9856
10579
|
}
|
|
@@ -9914,6 +10637,15 @@ body {
|
|
|
9914
10637
|
.pkt-grid--rowgap-size-48-mobile-up {
|
|
9915
10638
|
row-gap: 3rem;
|
|
9916
10639
|
}
|
|
10640
|
+
.pkt-grid--gap-size-52-mobile-up {
|
|
10641
|
+
gap: 3.25rem;
|
|
10642
|
+
}
|
|
10643
|
+
.pkt-grid--colgap-size-52-mobile-up {
|
|
10644
|
+
column-gap: 3.25rem;
|
|
10645
|
+
}
|
|
10646
|
+
.pkt-grid--rowgap-size-52-mobile-up {
|
|
10647
|
+
row-gap: 3.25rem;
|
|
10648
|
+
}
|
|
9917
10649
|
.pkt-grid--gap-size-56-mobile-up {
|
|
9918
10650
|
gap: 3.5rem;
|
|
9919
10651
|
}
|
|
@@ -10078,6 +10810,15 @@ body {
|
|
|
10078
10810
|
.pkt-grid--rowgap-size-4-phablet-up {
|
|
10079
10811
|
row-gap: 0.25rem;
|
|
10080
10812
|
}
|
|
10813
|
+
.pkt-grid--gap-size-6-phablet-up {
|
|
10814
|
+
gap: 0.375rem;
|
|
10815
|
+
}
|
|
10816
|
+
.pkt-grid--colgap-size-6-phablet-up {
|
|
10817
|
+
column-gap: 0.375rem;
|
|
10818
|
+
}
|
|
10819
|
+
.pkt-grid--rowgap-size-6-phablet-up {
|
|
10820
|
+
row-gap: 0.375rem;
|
|
10821
|
+
}
|
|
10081
10822
|
.pkt-grid--gap-size-8-phablet-up {
|
|
10082
10823
|
gap: 0.5rem;
|
|
10083
10824
|
}
|
|
@@ -10141,6 +10882,15 @@ body {
|
|
|
10141
10882
|
.pkt-grid--rowgap-size-48-phablet-up {
|
|
10142
10883
|
row-gap: 3rem;
|
|
10143
10884
|
}
|
|
10885
|
+
.pkt-grid--gap-size-52-phablet-up {
|
|
10886
|
+
gap: 3.25rem;
|
|
10887
|
+
}
|
|
10888
|
+
.pkt-grid--colgap-size-52-phablet-up {
|
|
10889
|
+
column-gap: 3.25rem;
|
|
10890
|
+
}
|
|
10891
|
+
.pkt-grid--rowgap-size-52-phablet-up {
|
|
10892
|
+
row-gap: 3.25rem;
|
|
10893
|
+
}
|
|
10144
10894
|
.pkt-grid--gap-size-56-phablet-up {
|
|
10145
10895
|
gap: 3.5rem;
|
|
10146
10896
|
}
|
|
@@ -10305,6 +11055,15 @@ body {
|
|
|
10305
11055
|
.pkt-grid--rowgap-size-4-tablet-up {
|
|
10306
11056
|
row-gap: 0.25rem;
|
|
10307
11057
|
}
|
|
11058
|
+
.pkt-grid--gap-size-6-tablet-up {
|
|
11059
|
+
gap: 0.375rem;
|
|
11060
|
+
}
|
|
11061
|
+
.pkt-grid--colgap-size-6-tablet-up {
|
|
11062
|
+
column-gap: 0.375rem;
|
|
11063
|
+
}
|
|
11064
|
+
.pkt-grid--rowgap-size-6-tablet-up {
|
|
11065
|
+
row-gap: 0.375rem;
|
|
11066
|
+
}
|
|
10308
11067
|
.pkt-grid--gap-size-8-tablet-up {
|
|
10309
11068
|
gap: 0.5rem;
|
|
10310
11069
|
}
|
|
@@ -10368,6 +11127,15 @@ body {
|
|
|
10368
11127
|
.pkt-grid--rowgap-size-48-tablet-up {
|
|
10369
11128
|
row-gap: 3rem;
|
|
10370
11129
|
}
|
|
11130
|
+
.pkt-grid--gap-size-52-tablet-up {
|
|
11131
|
+
gap: 3.25rem;
|
|
11132
|
+
}
|
|
11133
|
+
.pkt-grid--colgap-size-52-tablet-up {
|
|
11134
|
+
column-gap: 3.25rem;
|
|
11135
|
+
}
|
|
11136
|
+
.pkt-grid--rowgap-size-52-tablet-up {
|
|
11137
|
+
row-gap: 3.25rem;
|
|
11138
|
+
}
|
|
10371
11139
|
.pkt-grid--gap-size-56-tablet-up {
|
|
10372
11140
|
gap: 3.5rem;
|
|
10373
11141
|
}
|
|
@@ -10532,6 +11300,15 @@ body {
|
|
|
10532
11300
|
.pkt-grid--rowgap-size-4-tablet-big-up {
|
|
10533
11301
|
row-gap: 0.25rem;
|
|
10534
11302
|
}
|
|
11303
|
+
.pkt-grid--gap-size-6-tablet-big-up {
|
|
11304
|
+
gap: 0.375rem;
|
|
11305
|
+
}
|
|
11306
|
+
.pkt-grid--colgap-size-6-tablet-big-up {
|
|
11307
|
+
column-gap: 0.375rem;
|
|
11308
|
+
}
|
|
11309
|
+
.pkt-grid--rowgap-size-6-tablet-big-up {
|
|
11310
|
+
row-gap: 0.375rem;
|
|
11311
|
+
}
|
|
10535
11312
|
.pkt-grid--gap-size-8-tablet-big-up {
|
|
10536
11313
|
gap: 0.5rem;
|
|
10537
11314
|
}
|
|
@@ -10595,6 +11372,15 @@ body {
|
|
|
10595
11372
|
.pkt-grid--rowgap-size-48-tablet-big-up {
|
|
10596
11373
|
row-gap: 3rem;
|
|
10597
11374
|
}
|
|
11375
|
+
.pkt-grid--gap-size-52-tablet-big-up {
|
|
11376
|
+
gap: 3.25rem;
|
|
11377
|
+
}
|
|
11378
|
+
.pkt-grid--colgap-size-52-tablet-big-up {
|
|
11379
|
+
column-gap: 3.25rem;
|
|
11380
|
+
}
|
|
11381
|
+
.pkt-grid--rowgap-size-52-tablet-big-up {
|
|
11382
|
+
row-gap: 3.25rem;
|
|
11383
|
+
}
|
|
10598
11384
|
.pkt-grid--gap-size-56-tablet-big-up {
|
|
10599
11385
|
gap: 3.5rem;
|
|
10600
11386
|
}
|
|
@@ -10759,6 +11545,15 @@ body {
|
|
|
10759
11545
|
.pkt-grid--rowgap-size-4-laptop-up {
|
|
10760
11546
|
row-gap: 0.25rem;
|
|
10761
11547
|
}
|
|
11548
|
+
.pkt-grid--gap-size-6-laptop-up {
|
|
11549
|
+
gap: 0.375rem;
|
|
11550
|
+
}
|
|
11551
|
+
.pkt-grid--colgap-size-6-laptop-up {
|
|
11552
|
+
column-gap: 0.375rem;
|
|
11553
|
+
}
|
|
11554
|
+
.pkt-grid--rowgap-size-6-laptop-up {
|
|
11555
|
+
row-gap: 0.375rem;
|
|
11556
|
+
}
|
|
10762
11557
|
.pkt-grid--gap-size-8-laptop-up {
|
|
10763
11558
|
gap: 0.5rem;
|
|
10764
11559
|
}
|
|
@@ -10822,6 +11617,15 @@ body {
|
|
|
10822
11617
|
.pkt-grid--rowgap-size-48-laptop-up {
|
|
10823
11618
|
row-gap: 3rem;
|
|
10824
11619
|
}
|
|
11620
|
+
.pkt-grid--gap-size-52-laptop-up {
|
|
11621
|
+
gap: 3.25rem;
|
|
11622
|
+
}
|
|
11623
|
+
.pkt-grid--colgap-size-52-laptop-up {
|
|
11624
|
+
column-gap: 3.25rem;
|
|
11625
|
+
}
|
|
11626
|
+
.pkt-grid--rowgap-size-52-laptop-up {
|
|
11627
|
+
row-gap: 3.25rem;
|
|
11628
|
+
}
|
|
10825
11629
|
.pkt-grid--gap-size-56-laptop-up {
|
|
10826
11630
|
gap: 3.5rem;
|
|
10827
11631
|
}
|
|
@@ -10986,6 +11790,15 @@ body {
|
|
|
10986
11790
|
.pkt-grid--rowgap-size-4-desktop-up {
|
|
10987
11791
|
row-gap: 0.25rem;
|
|
10988
11792
|
}
|
|
11793
|
+
.pkt-grid--gap-size-6-desktop-up {
|
|
11794
|
+
gap: 0.375rem;
|
|
11795
|
+
}
|
|
11796
|
+
.pkt-grid--colgap-size-6-desktop-up {
|
|
11797
|
+
column-gap: 0.375rem;
|
|
11798
|
+
}
|
|
11799
|
+
.pkt-grid--rowgap-size-6-desktop-up {
|
|
11800
|
+
row-gap: 0.375rem;
|
|
11801
|
+
}
|
|
10989
11802
|
.pkt-grid--gap-size-8-desktop-up {
|
|
10990
11803
|
gap: 0.5rem;
|
|
10991
11804
|
}
|
|
@@ -11049,6 +11862,15 @@ body {
|
|
|
11049
11862
|
.pkt-grid--rowgap-size-48-desktop-up {
|
|
11050
11863
|
row-gap: 3rem;
|
|
11051
11864
|
}
|
|
11865
|
+
.pkt-grid--gap-size-52-desktop-up {
|
|
11866
|
+
gap: 3.25rem;
|
|
11867
|
+
}
|
|
11868
|
+
.pkt-grid--colgap-size-52-desktop-up {
|
|
11869
|
+
column-gap: 3.25rem;
|
|
11870
|
+
}
|
|
11871
|
+
.pkt-grid--rowgap-size-52-desktop-up {
|
|
11872
|
+
row-gap: 3.25rem;
|
|
11873
|
+
}
|
|
11052
11874
|
.pkt-grid--gap-size-56-desktop-up {
|
|
11053
11875
|
gap: 3.5rem;
|
|
11054
11876
|
}
|
|
@@ -13723,10 +14545,11 @@ Therefore, this is removed from the reset here, and images who need to be fluid
|
|
|
13723
14545
|
align-items: center;
|
|
13724
14546
|
gap: 1rem;
|
|
13725
14547
|
margin: 0;
|
|
13726
|
-
padding: 0;
|
|
14548
|
+
padding: 0.375rem 0 0;
|
|
13727
14549
|
}
|
|
13728
14550
|
@media screen and (min-width: 80rem) {
|
|
13729
14551
|
.pkt-header__logo {
|
|
14552
|
+
padding: 0.25rem 0 0;
|
|
13730
14553
|
gap: 1.5rem;
|
|
13731
14554
|
}
|
|
13732
14555
|
}
|
|
@@ -13736,7 +14559,7 @@ Therefore, this is removed from the reset here, and images who need to be fluid
|
|
|
13736
14559
|
padding: 0;
|
|
13737
14560
|
}
|
|
13738
14561
|
.pkt-header__logo-service {
|
|
13739
|
-
padding-top: 0.
|
|
14562
|
+
padding-top: 0.2rem;
|
|
13740
14563
|
display: none;
|
|
13741
14564
|
white-space: nowrap;
|
|
13742
14565
|
text-overflow: ellipsis;
|
|
@@ -13753,7 +14576,7 @@ Therefore, this is removed from the reset here, and images who need to be fluid
|
|
|
13753
14576
|
}
|
|
13754
14577
|
@media screen and (min-width: 80rem) {
|
|
13755
14578
|
.pkt-header__logo-service {
|
|
13756
|
-
padding-top: 0.
|
|
14579
|
+
padding-top: 0.4rem;
|
|
13757
14580
|
font-size: 1.5rem;
|
|
13758
14581
|
font-weight: 300;
|
|
13759
14582
|
letter-spacing: -0.2px;
|
|
@@ -13761,8 +14584,8 @@ Therefore, this is removed from the reset here, and images who need to be fluid
|
|
|
13761
14584
|
}
|
|
13762
14585
|
}
|
|
13763
14586
|
.pkt-header__logo-svg {
|
|
13764
|
-
height: 3.
|
|
13765
|
-
width: 6.
|
|
14587
|
+
height: 3.25rem;
|
|
14588
|
+
width: 6.2903225806rem;
|
|
13766
14589
|
}
|
|
13767
14590
|
@media screen and (min-width: 80rem) {
|
|
13768
14591
|
.pkt-header__logo-svg {
|
|
@@ -14017,6 +14840,9 @@ Therefore, this is removed from the reset here, and images who need to be fluid
|
|
|
14017
14840
|
.pkt-inputwrapper__helptext-expandable-open {
|
|
14018
14841
|
width: 100%;
|
|
14019
14842
|
display: block;
|
|
14843
|
+
border-left: 2px solid var(--color-blue-dark);
|
|
14844
|
+
padding: 0.5rem 1rem;
|
|
14845
|
+
margin-bottom: 0.25rem;
|
|
14020
14846
|
}
|
|
14021
14847
|
.pkt-inputwrapper__helptext-expandable-closed {
|
|
14022
14848
|
display: none;
|
|
@@ -14067,6 +14893,7 @@ Therefore, this is removed from the reset here, and images who need to be fluid
|
|
|
14067
14893
|
letter-spacing: -0.2px;
|
|
14068
14894
|
line-height: 1.375rem;
|
|
14069
14895
|
padding: 0;
|
|
14896
|
+
height: auto;
|
|
14070
14897
|
}
|
|
14071
14898
|
.pkt-inputwrapper--error .pkt-textinput__input,
|
|
14072
14899
|
.pkt-inputwrapper--error .pkt-textinput__input-prefix,
|