uikit 3.25.17-dev.80dfe87 → 3.25.17-dev.8c70e44

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (200) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/build/prefix.js +1 -1
  3. package/build/publishDev.js +1 -1
  4. package/build/release.js +2 -2
  5. package/build/scope.js +1 -1
  6. package/build/scss.js +1 -1
  7. package/dist/css/uikit-core-rtl.css +892 -802
  8. package/dist/css/uikit-core-rtl.min.css +1 -1
  9. package/dist/css/uikit-core.css +892 -802
  10. package/dist/css/uikit-core.min.css +1 -1
  11. package/dist/css/uikit-rtl.css +893 -803
  12. package/dist/css/uikit-rtl.min.css +1 -1
  13. package/dist/css/uikit.css +893 -803
  14. package/dist/css/uikit.min.css +1 -1
  15. package/dist/js/components/countdown.js +1 -1
  16. package/dist/js/components/countdown.min.js +1 -1
  17. package/dist/js/components/filter.js +1 -1
  18. package/dist/js/components/filter.min.js +1 -1
  19. package/dist/js/components/lightbox-panel.js +133 -132
  20. package/dist/js/components/lightbox-panel.min.js +1 -1
  21. package/dist/js/components/lightbox.js +134 -133
  22. package/dist/js/components/lightbox.min.js +1 -1
  23. package/dist/js/components/marquee.js +179 -0
  24. package/dist/js/components/marquee.min.js +1 -0
  25. package/dist/js/components/notification.js +1 -1
  26. package/dist/js/components/notification.min.js +1 -1
  27. package/dist/js/components/parallax.js +8 -12
  28. package/dist/js/components/parallax.min.js +1 -1
  29. package/dist/js/components/slider-parallax.js +8 -12
  30. package/dist/js/components/slider-parallax.min.js +1 -1
  31. package/dist/js/components/slider.js +41 -25
  32. package/dist/js/components/slider.min.js +1 -1
  33. package/dist/js/components/slideshow-parallax.js +8 -12
  34. package/dist/js/components/slideshow-parallax.min.js +1 -1
  35. package/dist/js/components/slideshow.js +71 -102
  36. package/dist/js/components/slideshow.min.js +1 -1
  37. package/dist/js/components/sortable.js +1 -1
  38. package/dist/js/components/sortable.min.js +1 -1
  39. package/dist/js/components/tooltip.js +19 -19
  40. package/dist/js/components/tooltip.min.js +1 -1
  41. package/dist/js/components/upload.js +1 -1
  42. package/dist/js/components/upload.min.js +1 -1
  43. package/dist/js/uikit-core.js +754 -262
  44. package/dist/js/uikit-core.min.js +1 -1
  45. package/dist/js/uikit-icons.js +1 -1
  46. package/dist/js/uikit-icons.min.js +1 -1
  47. package/dist/js/uikit.js +629 -374
  48. package/dist/js/uikit.min.js +1 -1
  49. package/package.json +2 -2
  50. package/src/js/api/component.js +2 -3
  51. package/src/js/api/observables.js +2 -4
  52. package/src/js/api/options.js +6 -3
  53. package/src/js/api/props.js +1 -4
  54. package/src/js/api/state.js +7 -8
  55. package/src/js/components/index.js +1 -0
  56. package/src/js/components/internal/lightbox-animations.js +7 -26
  57. package/src/js/components/internal/slideshow-animations.js +15 -62
  58. package/src/js/components/lightbox-panel.js +121 -96
  59. package/src/js/components/lightbox.js +5 -8
  60. package/src/js/components/marquee.js +123 -0
  61. package/src/js/components/tooltip.js +4 -2
  62. package/src/js/core/accordion.js +78 -29
  63. package/src/js/core/drop.js +5 -4
  64. package/src/js/core/dropnav.js +3 -3
  65. package/src/js/core/grid.js +5 -19
  66. package/src/js/core/height-match.js +1 -2
  67. package/src/js/core/margin.js +3 -0
  68. package/src/js/core/overflow-fade.js +5 -5
  69. package/src/js/core/sticky.js +1 -1
  70. package/src/js/core/switcher.js +24 -44
  71. package/src/js/core/video.js +172 -15
  72. package/src/js/mixin/connect.js +57 -0
  73. package/src/js/mixin/internal/slideshow-animations.js +5 -13
  74. package/src/js/mixin/internal/slideshow-transitioner.js +2 -2
  75. package/src/js/mixin/modal.js +4 -3
  76. package/src/js/mixin/parallax.js +1 -4
  77. package/src/js/mixin/position.js +1 -1
  78. package/src/js/mixin/scroll-driven.js +57 -0
  79. package/src/js/mixin/slider-nav.js +1 -1
  80. package/src/js/mixin/slider-parallax.js +9 -38
  81. package/src/js/mixin/togglable.js +13 -14
  82. package/src/js/util/attr.js +7 -7
  83. package/src/js/util/class.js +1 -1
  84. package/src/js/util/dom.js +3 -4
  85. package/src/js/util/lang.js +1 -1
  86. package/src/js/util/player.js +4 -4
  87. package/src/js/util/style.js +10 -15
  88. package/src/js/util/viewport.js +22 -25
  89. package/src/less/components/_import.less +6 -1
  90. package/src/less/components/base.less +1 -1
  91. package/src/less/components/button.less +1 -1
  92. package/src/less/components/dropcap.less +71 -0
  93. package/src/less/components/floating-shadow.less +65 -0
  94. package/src/less/components/form.less +5 -5
  95. package/src/less/components/grid.less +57 -64
  96. package/src/less/components/logo.less +94 -0
  97. package/src/less/components/margin.less +81 -81
  98. package/src/less/components/marquee.less +133 -0
  99. package/src/less/components/nav.less +1 -1
  100. package/src/less/components/padding.less +9 -9
  101. package/src/less/components/utility.less +0 -157
  102. package/src/less/theme/_import.less +5 -1
  103. package/src/less/theme/dropcap.less +29 -0
  104. package/src/less/theme/floating-shadow.less +20 -0
  105. package/src/less/theme/logo.less +29 -0
  106. package/src/less/theme/marquee.less +14 -0
  107. package/src/less/theme/utility.less +0 -32
  108. package/src/scss/components/_import.scss +6 -1
  109. package/src/scss/components/base.scss +1 -1
  110. package/src/scss/components/button.scss +1 -1
  111. package/src/scss/components/dropcap.scss +63 -0
  112. package/src/scss/components/floating-shadow.scss +62 -0
  113. package/src/scss/components/form.scss +5 -5
  114. package/src/scss/components/grid.scss +57 -64
  115. package/src/scss/components/logo.scss +75 -0
  116. package/src/scss/components/margin.scss +81 -81
  117. package/src/scss/components/marquee.scss +136 -0
  118. package/src/scss/components/nav.scss +1 -1
  119. package/src/scss/components/padding.scss +9 -9
  120. package/src/scss/components/utility.scss +0 -128
  121. package/src/scss/mixins-theme.scss +41 -32
  122. package/src/scss/mixins.scss +38 -29
  123. package/src/scss/variables-theme.scss +14 -9
  124. package/src/scss/variables.scss +14 -9
  125. package/tests/accordion.html +77 -10
  126. package/tests/alert.html +1 -1
  127. package/tests/align.html +5 -5
  128. package/tests/animation.html +4 -4
  129. package/tests/article.html +7 -7
  130. package/tests/background.html +2 -2
  131. package/tests/badge.html +1 -1
  132. package/tests/base.html +2 -2
  133. package/tests/button.html +1 -1
  134. package/tests/card.html +15 -15
  135. package/tests/close.html +2 -2
  136. package/tests/comment.html +9 -9
  137. package/tests/container.html +2 -2
  138. package/tests/countdown.html +21 -21
  139. package/tests/cover.html +3 -3
  140. package/tests/description-list.html +1 -1
  141. package/tests/divider.html +3 -3
  142. package/tests/dotnav.html +1 -1
  143. package/tests/drop.html +7 -7
  144. package/tests/dropbar.html +5 -5
  145. package/tests/dropcap.html +26 -0
  146. package/tests/dropdown.html +1 -1
  147. package/tests/dropnav.html +18 -18
  148. package/tests/filter.html +3 -3
  149. package/tests/floating-shadow.html +44 -0
  150. package/tests/form.html +14 -14
  151. package/tests/grid.html +41 -47
  152. package/tests/heading.html +2 -2
  153. package/tests/height-viewport.html +4 -4
  154. package/tests/height.html +5 -5
  155. package/tests/icon.html +8 -8
  156. package/tests/image.html +6 -6
  157. package/tests/index.html +13 -13
  158. package/tests/js/index.js +1 -1
  159. package/tests/leader.html +5 -5
  160. package/tests/lightbox.html +6 -6
  161. package/tests/link.html +1 -1
  162. package/tests/list.html +4 -4
  163. package/tests/logo.html +84 -0
  164. package/tests/margin.html +7 -7
  165. package/tests/marker.html +3 -3
  166. package/tests/marquee.html +617 -0
  167. package/tests/modal.html +3 -3
  168. package/tests/nav.html +5 -5
  169. package/tests/navbar.html +27 -27
  170. package/tests/notification.html +2 -2
  171. package/tests/offcanvas.html +12 -12
  172. package/tests/overlay.html +3 -3
  173. package/tests/padding.html +1 -1
  174. package/tests/pagination.html +3 -3
  175. package/tests/parallax.html +1 -1
  176. package/tests/position.html +6 -6
  177. package/tests/scrollspy.html +12 -12
  178. package/tests/search.html +5 -5
  179. package/tests/section.html +17 -17
  180. package/tests/slidenav.html +3 -3
  181. package/tests/slider.html +5 -5
  182. package/tests/slideshow.html +3 -3
  183. package/tests/sortable.html +15 -15
  184. package/tests/sticky-navbar.html +4 -4
  185. package/tests/sticky-parallax.html +3 -3
  186. package/tests/sticky.html +3 -3
  187. package/tests/svg.html +3 -2
  188. package/tests/switcher.html +6 -6
  189. package/tests/tab.html +4 -4
  190. package/tests/text.html +3 -3
  191. package/tests/tile.html +4 -4
  192. package/tests/toggle.html +1 -1
  193. package/tests/tooltip.html +3 -3
  194. package/tests/totop.html +2 -2
  195. package/tests/transition.html +1 -1
  196. package/tests/upload.html +5 -5
  197. package/tests/utility.html +16 -116
  198. package/tests/video.html +224 -24
  199. package/tests/visibility.html +4 -4
  200. package/tests/width.html +12 -12
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.25.17-dev.80dfe87 | https://www.getuikit.com | (c) 2014 - 2026 YOOtheme | MIT License */
1
+ /*! UIkit 3.25.17-dev.8c70e44 | https://www.getuikit.com | (c) 2014 - 2026 YOOtheme | MIT License */
2
2
  /* ========================================================================
3
3
  Component: Base
4
4
  ========================================================================== */
@@ -371,7 +371,7 @@ blockquote {
371
371
  /*
372
372
  * Content
373
373
  */
374
- blockquote p:last-of-type {
374
+ blockquote :where(p:last-of-type) {
375
375
  margin-bottom: 0;
376
376
  }
377
377
  blockquote footer {
@@ -1773,7 +1773,7 @@ select.uk-form-width-xsmall {
1773
1773
  /*
1774
1774
  * Stacked
1775
1775
  */
1776
- .uk-form-stacked .uk-form-label {
1776
+ .uk-form-stacked :where(.uk-form-label) {
1777
1777
  display: block;
1778
1778
  margin-bottom: 10px;
1779
1779
  }
@@ -1783,23 +1783,23 @@ select.uk-form-width-xsmall {
1783
1783
  /* Tablet portrait and smaller */
1784
1784
  @media (max-width: 959px) {
1785
1785
  /* Behave like `uk-form-stacked` */
1786
- .uk-form-horizontal .uk-form-label {
1786
+ .uk-form-horizontal :where(.uk-form-label) {
1787
1787
  display: block;
1788
1788
  margin-bottom: 10px;
1789
1789
  }
1790
1790
  }
1791
1791
  /* Tablet landscape and bigger */
1792
1792
  @media (min-width: 960px) {
1793
- .uk-form-horizontal .uk-form-label {
1793
+ .uk-form-horizontal :where(.uk-form-label) {
1794
1794
  width: 200px;
1795
1795
  margin-top: 7px;
1796
1796
  float: right;
1797
1797
  }
1798
- .uk-form-horizontal .uk-form-controls {
1798
+ .uk-form-horizontal :where(.uk-form-controls) {
1799
1799
  margin-right: 215px;
1800
1800
  }
1801
1801
  /* Better vertical alignment if controls are checkboxes and radio buttons with text */
1802
- .uk-form-horizontal .uk-form-controls-text {
1802
+ .uk-form-horizontal :where(.uk-form-controls-text) {
1803
1803
  padding-top: 7px;
1804
1804
  }
1805
1805
  }
@@ -1854,6 +1854,254 @@ select.uk-form-width-xsmall {
1854
1854
  .uk-form-icon-flip ~ .uk-input {
1855
1855
  padding-left: 40px !important;
1856
1856
  }
1857
+ /* ========================================================================
1858
+ Component: Search
1859
+ ========================================================================== */
1860
+ /*
1861
+ * 1. Container fits its content
1862
+ * 2. Create position context
1863
+ * 3. Prevent content overflow
1864
+ * 4. Reset `form`
1865
+ */
1866
+ .uk-search {
1867
+ /* 1 */
1868
+ display: inline-block;
1869
+ /* 2 */
1870
+ position: relative;
1871
+ /* 3 */
1872
+ max-width: 100%;
1873
+ /* 4 */
1874
+ margin: 0;
1875
+ }
1876
+ /* Input
1877
+ ========================================================================== */
1878
+ /*
1879
+ * Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X.
1880
+ */
1881
+ .uk-search-input::-webkit-search-cancel-button,
1882
+ .uk-search-input::-webkit-search-decoration {
1883
+ -webkit-appearance: none;
1884
+ }
1885
+ /*
1886
+ * Removes placeholder transparency in Firefox.
1887
+ */
1888
+ .uk-search-input::-moz-placeholder {
1889
+ opacity: 1;
1890
+ }
1891
+ /*
1892
+ * 1. Define consistent box sizing.
1893
+ * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
1894
+ * 3. Remove `border-radius` in iOS.
1895
+ * 4. Change font properties to `inherit` in all browsers
1896
+ * 5. Show the overflow in Edge.
1897
+ * 6. Remove default style in iOS.
1898
+ * 7. Vertical alignment
1899
+ * 8. Take the full container width
1900
+ * 9. Style
1901
+ */
1902
+ .uk-search-input {
1903
+ /* 1 */
1904
+ box-sizing: border-box;
1905
+ /* 2 */
1906
+ margin: 0;
1907
+ /* 3 */
1908
+ border-radius: 0;
1909
+ /* 4 */
1910
+ font: inherit;
1911
+ /* 5 */
1912
+ overflow: visible;
1913
+ /* 6 */
1914
+ -webkit-appearance: none;
1915
+ /* 7 */
1916
+ vertical-align: middle;
1917
+ /* 8 */
1918
+ width: 100%;
1919
+ /* 9 */
1920
+ border: none;
1921
+ color: #666;
1922
+ }
1923
+ .uk-search-input:focus {
1924
+ outline: none;
1925
+ }
1926
+ /* Placeholder */
1927
+ .uk-search-input::placeholder {
1928
+ color: #999;
1929
+ }
1930
+ /* Icon (Adopts `uk-icon`)
1931
+ ========================================================================== */
1932
+ /*
1933
+ * Position above input
1934
+ * 1. Set position
1935
+ * 2. Center icon vertically and horizontally
1936
+ * 3. Style
1937
+ */
1938
+ .uk-search .uk-search-icon {
1939
+ /* 1 */
1940
+ position: absolute;
1941
+ top: 0;
1942
+ bottom: 0;
1943
+ right: 0;
1944
+ /* 2 */
1945
+ display: inline-flex;
1946
+ justify-content: center;
1947
+ align-items: center;
1948
+ /* 3 */
1949
+ color: #999;
1950
+ }
1951
+ /*
1952
+ * Required for `a`.
1953
+ */
1954
+ .uk-search .uk-search-icon:hover {
1955
+ color: #999;
1956
+ }
1957
+ /*
1958
+ * Make `input` element clickable through icon, e.g. if it's a `span`
1959
+ */
1960
+ .uk-search .uk-search-icon:not(a):not(button):not(input) {
1961
+ pointer-events: none;
1962
+ }
1963
+ /*
1964
+ * Position modifier
1965
+ */
1966
+ .uk-search .uk-search-icon-flip {
1967
+ left: 0;
1968
+ right: auto;
1969
+ }
1970
+ /* Default modifier
1971
+ ========================================================================== */
1972
+ .uk-search-default {
1973
+ width: 240px;
1974
+ }
1975
+ /*
1976
+ * Input
1977
+ */
1978
+ .uk-search-default .uk-search-input {
1979
+ height: 40px;
1980
+ padding-right: 10px;
1981
+ padding-left: 10px;
1982
+ background: #f8f8f8;
1983
+ }
1984
+ /* Focus */
1985
+ .uk-search-default .uk-search-input:focus {
1986
+ background-color: #f3f3f3;
1987
+ }
1988
+ /*
1989
+ * Icon
1990
+ */
1991
+ .uk-search-default .uk-search-icon {
1992
+ padding-right: 10px;
1993
+ padding-left: 10px;
1994
+ }
1995
+ .uk-search-default:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
1996
+ padding-right: 40px;
1997
+ }
1998
+ .uk-search-default:has(.uk-search-icon-flip) .uk-search-input {
1999
+ padding-left: 40px;
2000
+ }
2001
+ /* Navbar modifier
2002
+ ========================================================================== */
2003
+ .uk-search-navbar {
2004
+ width: 240px;
2005
+ }
2006
+ /*
2007
+ * Input
2008
+ */
2009
+ .uk-search-navbar .uk-search-input {
2010
+ height: 40px;
2011
+ padding-right: 10px;
2012
+ padding-left: 10px;
2013
+ background: #fff;
2014
+ }
2015
+ /* Focus */
2016
+ .uk-search-navbar .uk-search-input:focus {
2017
+ background-color: #fcfcfc;
2018
+ }
2019
+ /*
2020
+ * Icon
2021
+ */
2022
+ .uk-search-navbar .uk-search-icon {
2023
+ padding-right: 10px;
2024
+ padding-left: 10px;
2025
+ }
2026
+ .uk-search-navbar:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
2027
+ padding-right: 40px;
2028
+ }
2029
+ .uk-search-navbar:has(.uk-search-icon-flip) .uk-search-input {
2030
+ padding-left: 40px;
2031
+ }
2032
+ /* Medium modifier
2033
+ ========================================================================== */
2034
+ .uk-search-medium {
2035
+ width: 400px;
2036
+ }
2037
+ /*
2038
+ * Input
2039
+ */
2040
+ .uk-search-medium .uk-search-input {
2041
+ height: 55px;
2042
+ padding-right: 12px;
2043
+ padding-left: 12px;
2044
+ background: #f8f8f8;
2045
+ font-size: 1.5rem;
2046
+ }
2047
+ /* Focus */
2048
+ .uk-search-medium .uk-search-input:focus {
2049
+ background-color: #f3f3f3;
2050
+ }
2051
+ /*
2052
+ * Icon
2053
+ */
2054
+ .uk-search-medium .uk-search-icon {
2055
+ padding-right: 12px;
2056
+ padding-left: 12px;
2057
+ }
2058
+ .uk-search-medium:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
2059
+ padding-right: 48px;
2060
+ }
2061
+ .uk-search-medium:has(.uk-search-icon-flip) .uk-search-input {
2062
+ padding-left: 48px;
2063
+ }
2064
+ /* Large modifier
2065
+ ========================================================================== */
2066
+ .uk-search-large {
2067
+ width: 500px;
2068
+ }
2069
+ /*
2070
+ * Input
2071
+ */
2072
+ .uk-search-large .uk-search-input {
2073
+ height: 90px;
2074
+ padding-right: 20px;
2075
+ padding-left: 20px;
2076
+ background: #f8f8f8;
2077
+ font-size: 2.625rem;
2078
+ }
2079
+ /* Focus */
2080
+ .uk-search-large .uk-search-input:focus {
2081
+ background-color: #f3f3f3;
2082
+ }
2083
+ /*
2084
+ * Icon
2085
+ */
2086
+ .uk-search-large .uk-search-icon {
2087
+ padding-right: 20px;
2088
+ padding-left: 20px;
2089
+ }
2090
+ .uk-search-large:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
2091
+ padding-right: 80px;
2092
+ }
2093
+ .uk-search-large:has(.uk-search-icon-flip) .uk-search-input {
2094
+ padding-left: 80px;
2095
+ }
2096
+ /* Toggle
2097
+ ========================================================================== */
2098
+ .uk-search-toggle {
2099
+ color: #999;
2100
+ }
2101
+ /* Hover */
2102
+ .uk-search-toggle:hover {
2103
+ color: #666;
2104
+ }
1857
2105
  /* ========================================================================
1858
2106
  Component: Button
1859
2107
  ========================================================================== */
@@ -1910,7 +2158,7 @@ select.uk-form-width-xsmall {
1910
2158
  }
1911
2159
  /* Hover */
1912
2160
  .uk-button:hover {
1913
- /* 9 */
2161
+ /* 10 */
1914
2162
  text-decoration: none;
1915
2163
  }
1916
2164
  /* OnClick + Active */
@@ -2958,14 +3206,69 @@ select.uk-form-width-xsmall {
2958
3206
  color: #fff;
2959
3207
  }
2960
3208
  /* ========================================================================
2961
- Component: Overlay
3209
+ Component: Dropcap
2962
3210
  ========================================================================== */
2963
- .uk-overlay {
2964
- padding: 30px 30px;
2965
- }
2966
3211
  /*
2967
- * Remove margin from the last-child
2968
- */
3212
+ * 1. Firefox doesn't apply `::first-letter` if the first letter is inside child elements
3213
+ * https://bugzilla.mozilla.org/show_bug.cgi?id=214004
3214
+ * 2. In Firefox, a floating `::first-letter` doesn't have a line box and there for no `line-height`
3215
+ * https://bugzilla.mozilla.org/show_bug.cgi?id=317933
3216
+ */
3217
+ .uk-dropcap::first-letter,
3218
+ .uk-dropcap > p:first-of-type::first-letter {
3219
+ display: block;
3220
+ margin-left: 10px;
3221
+ float: right;
3222
+ font-size: 4.5em;
3223
+ line-height: 1;
3224
+ }
3225
+ /* 2 */
3226
+ @-moz-document url-prefix() {
3227
+ .uk-dropcap::first-letter,
3228
+ .uk-dropcap > p:first-of-type::first-letter {
3229
+ margin-top: 1.1%;
3230
+ }
3231
+ }
3232
+ /* ========================================================================
3233
+ Component: Floating Shadow
3234
+ ========================================================================== */
3235
+ /*
3236
+ * 1. Set position.
3237
+ * 2. Set style
3238
+ * 3. Fix shadow being clipped in Safari if container is animated
3239
+ */
3240
+ .uk-floating-shadow {
3241
+ display: inline-block;
3242
+ position: relative;
3243
+ z-index: 0;
3244
+ max-width: 100%;
3245
+ vertical-align: middle;
3246
+ }
3247
+ .uk-floating-shadow::after {
3248
+ content: "";
3249
+ /* 1 */
3250
+ position: absolute;
3251
+ bottom: -30px;
3252
+ right: 0;
3253
+ left: 0;
3254
+ z-index: -1;
3255
+ /* 2 */
3256
+ height: 30px;
3257
+ border-radius: 100%;
3258
+ background: #444;
3259
+ filter: blur(20px);
3260
+ /* 3 */
3261
+ will-change: filter;
3262
+ }
3263
+ /* ========================================================================
3264
+ Component: Overlay
3265
+ ========================================================================== */
3266
+ .uk-overlay {
3267
+ padding: 30px 30px;
3268
+ }
3269
+ /*
3270
+ * Remove margin from the last-child
3271
+ */
2969
3272
  .uk-overlay > :last-child {
2970
3273
  margin-bottom: 0;
2971
3274
  }
@@ -3037,307 +3340,59 @@ select.uk-form-width-xsmall {
3037
3340
  display: flow-root;
3038
3341
  margin-bottom: 20px;
3039
3342
  }
3040
- /*
3041
- * Remove margin from the last-child
3042
- */
3043
- .uk-comment-body > :last-child,
3044
- .uk-comment-header > :last-child {
3045
- margin-bottom: 0;
3046
- }
3047
- /* Title
3048
- ========================================================================== */
3049
- .uk-comment-title {
3050
- font-size: 1.25rem;
3051
- line-height: 1.4;
3052
- }
3053
- /* Meta
3054
- ========================================================================== */
3055
- .uk-comment-meta {
3056
- font-size: 0.875rem;
3057
- line-height: 1.4;
3058
- color: #999;
3059
- }
3060
- /* Avatar
3061
- ========================================================================== */
3062
- /* List
3063
- ========================================================================== */
3064
- .uk-comment-list {
3065
- padding: 0;
3066
- list-style: none;
3067
- }
3068
- /* Adjacent siblings */
3069
- .uk-comment-list > :nth-child(n+2) {
3070
- margin-top: 70px;
3071
- }
3072
- /*
3073
- * Sublists
3074
- * Note: General sibling selector allows reply block between comment and sublist
3075
- */
3076
- .uk-comment-list .uk-comment ~ ul {
3077
- margin: 70px 0 0 0;
3078
- padding-right: 30px;
3079
- list-style: none;
3080
- }
3081
- /* Tablet and bigger */
3082
- @media (min-width: 960px) {
3083
- .uk-comment-list .uk-comment ~ ul {
3084
- padding-right: 100px;
3085
- }
3086
- }
3087
- /* Adjacent siblings */
3088
- .uk-comment-list .uk-comment ~ ul > :nth-child(n+2) {
3089
- margin-top: 70px;
3090
- }
3091
- /* Style modifier
3092
- ========================================================================== */
3093
- /* ========================================================================
3094
- Component: Search
3095
- ========================================================================== */
3096
- /*
3097
- * 1. Container fits its content
3098
- * 2. Create position context
3099
- * 3. Prevent content overflow
3100
- * 4. Reset `form`
3101
- */
3102
- .uk-search {
3103
- /* 1 */
3104
- display: inline-block;
3105
- /* 2 */
3106
- position: relative;
3107
- /* 3 */
3108
- max-width: 100%;
3109
- /* 4 */
3110
- margin: 0;
3111
- }
3112
- /* Input
3113
- ========================================================================== */
3114
- /*
3115
- * Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X.
3116
- */
3117
- .uk-search-input::-webkit-search-cancel-button,
3118
- .uk-search-input::-webkit-search-decoration {
3119
- -webkit-appearance: none;
3120
- }
3121
- /*
3122
- * Removes placeholder transparency in Firefox.
3123
- */
3124
- .uk-search-input::-moz-placeholder {
3125
- opacity: 1;
3126
- }
3127
- /*
3128
- * 1. Define consistent box sizing.
3129
- * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
3130
- * 3. Remove `border-radius` in iOS.
3131
- * 4. Change font properties to `inherit` in all browsers
3132
- * 5. Show the overflow in Edge.
3133
- * 6. Remove default style in iOS.
3134
- * 7. Vertical alignment
3135
- * 8. Take the full container width
3136
- * 9. Style
3137
- */
3138
- .uk-search-input {
3139
- /* 1 */
3140
- box-sizing: border-box;
3141
- /* 2 */
3142
- margin: 0;
3143
- /* 3 */
3144
- border-radius: 0;
3145
- /* 4 */
3146
- font: inherit;
3147
- /* 5 */
3148
- overflow: visible;
3149
- /* 6 */
3150
- -webkit-appearance: none;
3151
- /* 7 */
3152
- vertical-align: middle;
3153
- /* 8 */
3154
- width: 100%;
3155
- /* 9 */
3156
- border: none;
3157
- color: #666;
3158
- }
3159
- .uk-search-input:focus {
3160
- outline: none;
3161
- }
3162
- /* Placeholder */
3163
- .uk-search-input::placeholder {
3164
- color: #999;
3165
- }
3166
- /* Icon (Adopts `uk-icon`)
3167
- ========================================================================== */
3168
- /*
3169
- * Position above input
3170
- * 1. Set position
3171
- * 2. Center icon vertically and horizontally
3172
- * 3. Style
3173
- */
3174
- .uk-search .uk-search-icon {
3175
- /* 1 */
3176
- position: absolute;
3177
- top: 0;
3178
- bottom: 0;
3179
- right: 0;
3180
- /* 2 */
3181
- display: inline-flex;
3182
- justify-content: center;
3183
- align-items: center;
3184
- /* 3 */
3185
- color: #999;
3186
- }
3187
- /*
3188
- * Required for `a`.
3189
- */
3190
- .uk-search .uk-search-icon:hover {
3191
- color: #999;
3192
- }
3193
- /*
3194
- * Make `input` element clickable through icon, e.g. if it's a `span`
3195
- */
3196
- .uk-search .uk-search-icon:not(a):not(button):not(input) {
3197
- pointer-events: none;
3198
- }
3199
- /*
3200
- * Position modifier
3201
- */
3202
- .uk-search .uk-search-icon-flip {
3203
- left: 0;
3204
- right: auto;
3205
- }
3206
- /* Default modifier
3207
- ========================================================================== */
3208
- .uk-search-default {
3209
- width: 240px;
3210
- }
3211
- /*
3212
- * Input
3213
- */
3214
- .uk-search-default .uk-search-input {
3215
- height: 40px;
3216
- padding-right: 10px;
3217
- padding-left: 10px;
3218
- background: #f8f8f8;
3219
- }
3220
- /* Focus */
3221
- .uk-search-default .uk-search-input:focus {
3222
- background-color: #f3f3f3;
3223
- }
3224
- /*
3225
- * Icon
3226
- */
3227
- .uk-search-default .uk-search-icon {
3228
- padding-right: 10px;
3229
- padding-left: 10px;
3230
- }
3231
- .uk-search-default:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
3232
- padding-right: 40px;
3233
- }
3234
- .uk-search-default:has(.uk-search-icon-flip) .uk-search-input {
3235
- padding-left: 40px;
3236
- }
3237
- /* Navbar modifier
3238
- ========================================================================== */
3239
- .uk-search-navbar {
3240
- width: 240px;
3241
- }
3242
- /*
3243
- * Input
3244
- */
3245
- .uk-search-navbar .uk-search-input {
3246
- height: 40px;
3247
- padding-right: 10px;
3248
- padding-left: 10px;
3249
- background: #fff;
3250
- }
3251
- /* Focus */
3252
- .uk-search-navbar .uk-search-input:focus {
3253
- background-color: #fcfcfc;
3254
- }
3255
- /*
3256
- * Icon
3257
- */
3258
- .uk-search-navbar .uk-search-icon {
3259
- padding-right: 10px;
3260
- padding-left: 10px;
3261
- }
3262
- .uk-search-navbar:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
3263
- padding-right: 40px;
3264
- }
3265
- .uk-search-navbar:has(.uk-search-icon-flip) .uk-search-input {
3266
- padding-left: 40px;
3267
- }
3268
- /* Medium modifier
3269
- ========================================================================== */
3270
- .uk-search-medium {
3271
- width: 400px;
3272
- }
3273
- /*
3274
- * Input
3275
- */
3276
- .uk-search-medium .uk-search-input {
3277
- height: 55px;
3278
- padding-right: 12px;
3279
- padding-left: 12px;
3280
- background: #f8f8f8;
3281
- font-size: 1.5rem;
3282
- }
3283
- /* Focus */
3284
- .uk-search-medium .uk-search-input:focus {
3285
- background-color: #f3f3f3;
3286
- }
3287
- /*
3288
- * Icon
3289
- */
3290
- .uk-search-medium .uk-search-icon {
3291
- padding-right: 12px;
3292
- padding-left: 12px;
3293
- }
3294
- .uk-search-medium:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
3295
- padding-right: 48px;
3296
- }
3297
- .uk-search-medium:has(.uk-search-icon-flip) .uk-search-input {
3298
- padding-left: 48px;
3343
+ /*
3344
+ * Remove margin from the last-child
3345
+ */
3346
+ .uk-comment-body > :last-child,
3347
+ .uk-comment-header > :last-child {
3348
+ margin-bottom: 0;
3299
3349
  }
3300
- /* Large modifier
3350
+ /* Title
3301
3351
  ========================================================================== */
3302
- .uk-search-large {
3303
- width: 500px;
3352
+ .uk-comment-title {
3353
+ font-size: 1.25rem;
3354
+ line-height: 1.4;
3304
3355
  }
3305
- /*
3306
- * Input
3307
- */
3308
- .uk-search-large .uk-search-input {
3309
- height: 90px;
3310
- padding-right: 20px;
3311
- padding-left: 20px;
3312
- background: #f8f8f8;
3313
- font-size: 2.625rem;
3356
+ /* Meta
3357
+ ========================================================================== */
3358
+ .uk-comment-meta {
3359
+ font-size: 0.875rem;
3360
+ line-height: 1.4;
3361
+ color: #999;
3314
3362
  }
3315
- /* Focus */
3316
- .uk-search-large .uk-search-input:focus {
3317
- background-color: #f3f3f3;
3363
+ /* Avatar
3364
+ ========================================================================== */
3365
+ /* List
3366
+ ========================================================================== */
3367
+ .uk-comment-list {
3368
+ padding: 0;
3369
+ list-style: none;
3370
+ }
3371
+ /* Adjacent siblings */
3372
+ .uk-comment-list > :nth-child(n+2) {
3373
+ margin-top: 70px;
3318
3374
  }
3319
3375
  /*
3320
- * Icon
3376
+ * Sublists
3377
+ * Note: General sibling selector allows reply block between comment and sublist
3321
3378
  */
3322
- .uk-search-large .uk-search-icon {
3323
- padding-right: 20px;
3324
- padding-left: 20px;
3379
+ .uk-comment-list .uk-comment ~ ul {
3380
+ margin: 70px 0 0 0;
3381
+ padding-right: 30px;
3382
+ list-style: none;
3325
3383
  }
3326
- .uk-search-large:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
3327
- padding-right: 80px;
3384
+ /* Tablet and bigger */
3385
+ @media (min-width: 960px) {
3386
+ .uk-comment-list .uk-comment ~ ul {
3387
+ padding-right: 100px;
3388
+ }
3328
3389
  }
3329
- .uk-search-large:has(.uk-search-icon-flip) .uk-search-input {
3330
- padding-left: 80px;
3390
+ /* Adjacent siblings */
3391
+ .uk-comment-list .uk-comment ~ ul > :nth-child(n+2) {
3392
+ margin-top: 70px;
3331
3393
  }
3332
- /* Toggle
3394
+ /* Style modifier
3333
3395
  ========================================================================== */
3334
- .uk-search-toggle {
3335
- color: #999;
3336
- }
3337
- /* Hover */
3338
- .uk-search-toggle:hover {
3339
- color: #666;
3340
- }
3341
3396
  /* ========================================================================
3342
3397
  Component: Accordion
3343
3398
  ========================================================================== */
@@ -3863,6 +3918,96 @@ select.uk-form-width-xsmall {
3863
3918
  /* 2 */
3864
3919
  position: relative;
3865
3920
  }
3921
+ /* ========================================================================
3922
+ Component: Marquee
3923
+ ========================================================================== */
3924
+ /*
3925
+ * 1. Fallback for Safari 15 and older
3926
+ * 2. Clip child elements
3927
+ * `clip` prevents accidental scrolling through elements in slide getting focused
3928
+ * `clip` also works in only one direction
3929
+ * 3. Prevent tab highlighting on iOS.
3930
+ */
3931
+ .uk-marquee {
3932
+ /* 1 */
3933
+ overflow-x: hidden;
3934
+ /* 2 */
3935
+ overflow-x: clip;
3936
+ /* 3 */
3937
+ -webkit-tap-highlight-color: transparent;
3938
+ }
3939
+ .uk-marquee-vertical {
3940
+ overflow: visible;
3941
+ overflow-y: hidden;
3942
+ overflow-y: clip;
3943
+ }
3944
+ /*
3945
+ * Fade out
3946
+ */
3947
+ .uk-marquee-fade {
3948
+ --uk-overflow-fade-size: 100px;
3949
+ --uk-overflow-fade-direction: right;
3950
+ }
3951
+ .uk-marquee-fade.uk-marquee-vertical {
3952
+ --uk-overflow-fade-direction: bottom;
3953
+ }
3954
+ .uk-marquee-fade {
3955
+ mask-image: linear-gradient(to var(--uk-overflow-fade-direction), rgba(0, 0, 0, var(--uk-overflow-fade-start-opacity)), #000 var(--uk-overflow-fade-size), #000 calc(100% - var(--uk-overflow-fade-size)), rgba(0, 0, 0, var(--uk-overflow-fade-end-opacity)));
3956
+ }
3957
+ /* Items
3958
+ ========================================================================== */
3959
+ /*
3960
+ * 1. Create a containing block.
3961
+ */
3962
+ .uk-marquee-items {
3963
+ /* 1 */
3964
+ position: relative;
3965
+ }
3966
+ /*
3967
+ * 1. Reset list style without interfering with grid
3968
+ * 2. Prevent displaying the callout information on iOS.
3969
+ */
3970
+ .uk-marquee:not(.uk-marquee-vertical) .uk-marquee-items:not(.uk-grid) {
3971
+ display: flex;
3972
+ /* 1 */
3973
+ margin: 0;
3974
+ padding: 0;
3975
+ list-style: none;
3976
+ /* 2 */
3977
+ -webkit-touch-callout: none;
3978
+ }
3979
+ .uk-marquee:not(.uk-marquee-vertical) .uk-marquee-items.uk-grid {
3980
+ flex-wrap: nowrap;
3981
+ }
3982
+ /* Item
3983
+ ========================================================================== */
3984
+ /*
3985
+ * 1. Let items take content dimensions (0 0 auto)
3986
+ * `max-width` needed to keep image responsiveness and prevent content overflow
3987
+ * 2. Create position context
3988
+ * 3. Create animation along offset-path
3989
+ */
3990
+ .uk-marquee-items > * {
3991
+ /* 1 */
3992
+ flex: none !important;
3993
+ box-sizing: border-box;
3994
+ max-width: 100%;
3995
+ /* 2 */
3996
+ position: relative;
3997
+ /* 3 */
3998
+ offset-anchor: 0 0;
3999
+ offset-rotate: 0deg;
4000
+ offset-path: path(var(--uk-marquee-path));
4001
+ animation: var(--uk-marquee-duration) linear calc(var(--uk-marquee-start) / -100 * var(--uk-marquee-duration)) infinite var(--uk-marquee-direction) uk-marquee;
4002
+ }
4003
+ @keyframes uk-marquee {
4004
+ 0% {
4005
+ offset-distance: 0;
4006
+ }
4007
+ 100% {
4008
+ offset-distance: 100%;
4009
+ }
4010
+ }
3866
4011
  /* ========================================================================
3867
4012
  Component: Sticky
3868
4013
  ========================================================================== */
@@ -4545,36 +4690,38 @@ select.uk-form-width-xsmall {
4545
4690
  .uk-grid > * > :last-child {
4546
4691
  margin-bottom: 0;
4547
4692
  }
4548
- /* Gutter
4693
+ /* Gap
4549
4694
  ========================================================================== */
4550
4695
  /*
4551
4696
  * Default
4552
4697
  */
4553
- /* Horizontal */
4554
4698
  .uk-grid {
4555
4699
  margin-right: -30px;
4556
4700
  }
4557
4701
  .uk-grid > * {
4558
4702
  padding-right: 30px;
4559
4703
  }
4560
- /* Vertical */
4561
- .uk-grid + .uk-grid,
4562
- .uk-grid > .uk-grid-margin,
4704
+ .uk-grid {
4705
+ row-gap: 30px;
4706
+ }
4707
+ /* Margin */
4708
+ .uk-grid + :where(.uk-grid),
4563
4709
  * + .uk-grid-margin {
4564
4710
  margin-top: 30px;
4565
4711
  }
4566
4712
  /* Desktop and bigger */
4567
4713
  @media (min-width: 1200px) {
4568
- /* Horizontal */
4569
4714
  .uk-grid {
4570
4715
  margin-right: -40px;
4571
4716
  }
4572
4717
  .uk-grid > * {
4573
4718
  padding-right: 40px;
4574
4719
  }
4575
- /* Vertical */
4576
- .uk-grid + .uk-grid,
4577
- .uk-grid > .uk-grid-margin,
4720
+ .uk-grid {
4721
+ row-gap: 40px;
4722
+ }
4723
+ /* Margin */
4724
+ .uk-grid + :where(.uk-grid),
4578
4725
  * + .uk-grid-margin {
4579
4726
  margin-top: 40px;
4580
4727
  }
@@ -4582,7 +4729,6 @@ select.uk-form-width-xsmall {
4582
4729
  /*
4583
4730
  * Small
4584
4731
  */
4585
- /* Horizontal */
4586
4732
  .uk-grid-small,
4587
4733
  .uk-grid-column-small {
4588
4734
  margin-right: -15px;
@@ -4591,18 +4737,18 @@ select.uk-form-width-xsmall {
4591
4737
  .uk-grid-column-small > * {
4592
4738
  padding-right: 15px;
4593
4739
  }
4594
- /* Vertical */
4595
- .uk-grid + .uk-grid-small,
4596
- .uk-grid + .uk-grid-row-small,
4597
- .uk-grid-small > .uk-grid-margin,
4598
- .uk-grid-row-small > .uk-grid-margin,
4740
+ .uk-grid-small,
4741
+ .uk-grid-row-small {
4742
+ row-gap: 15px;
4743
+ }
4744
+ /* Margin */
4745
+ .uk-grid + :where(.uk-grid-small, .uk-grid-row-small),
4599
4746
  * + .uk-grid-margin-small {
4600
4747
  margin-top: 15px;
4601
4748
  }
4602
4749
  /*
4603
4750
  * Medium
4604
4751
  */
4605
- /* Horizontal */
4606
4752
  .uk-grid-medium,
4607
4753
  .uk-grid-column-medium {
4608
4754
  margin-right: -30px;
@@ -4611,18 +4757,18 @@ select.uk-form-width-xsmall {
4611
4757
  .uk-grid-column-medium > * {
4612
4758
  padding-right: 30px;
4613
4759
  }
4614
- /* Vertical */
4615
- .uk-grid + .uk-grid-medium,
4616
- .uk-grid + .uk-grid-row-medium,
4617
- .uk-grid-medium > .uk-grid-margin,
4618
- .uk-grid-row-medium > .uk-grid-margin,
4760
+ .uk-grid-medium,
4761
+ .uk-grid-row-medium {
4762
+ row-gap: 30px;
4763
+ }
4764
+ /* Margin */
4765
+ .uk-grid + :where(.uk-grid-medium, .uk-grid-row-medium),
4619
4766
  * + .uk-grid-margin-medium {
4620
4767
  margin-top: 30px;
4621
4768
  }
4622
4769
  /*
4623
4770
  * Large
4624
4771
  */
4625
- /* Horizontal */
4626
4772
  .uk-grid-large,
4627
4773
  .uk-grid-column-large {
4628
4774
  margin-right: -40px;
@@ -4631,17 +4777,17 @@ select.uk-form-width-xsmall {
4631
4777
  .uk-grid-column-large > * {
4632
4778
  padding-right: 40px;
4633
4779
  }
4634
- /* Vertical */
4635
- .uk-grid + .uk-grid-large,
4636
- .uk-grid + .uk-grid-row-large,
4637
- .uk-grid-large > .uk-grid-margin,
4638
- .uk-grid-row-large > .uk-grid-margin,
4780
+ .uk-grid-large,
4781
+ .uk-grid-row-large {
4782
+ row-gap: 40px;
4783
+ }
4784
+ /* Margin */
4785
+ .uk-grid + :where(.uk-grid-large, .uk-grid-row-large),
4639
4786
  * + .uk-grid-margin-large {
4640
4787
  margin-top: 40px;
4641
4788
  }
4642
4789
  /* Desktop and bigger */
4643
4790
  @media (min-width: 1200px) {
4644
- /* Horizontal */
4645
4791
  .uk-grid-large,
4646
4792
  .uk-grid-column-large {
4647
4793
  margin-right: -70px;
@@ -4650,11 +4796,12 @@ select.uk-form-width-xsmall {
4650
4796
  .uk-grid-column-large > * {
4651
4797
  padding-right: 70px;
4652
4798
  }
4653
- /* Vertical */
4654
- .uk-grid + .uk-grid-large,
4655
- .uk-grid + .uk-grid-row-large,
4656
- .uk-grid-large > .uk-grid-margin,
4657
- .uk-grid-row-large > .uk-grid-margin,
4799
+ .uk-grid-large,
4800
+ .uk-grid-row-large {
4801
+ row-gap: 70px;
4802
+ }
4803
+ /* Margin */
4804
+ .uk-grid + :where(.uk-grid-large, .uk-grid-row-large),
4658
4805
  * + .uk-grid-margin-large {
4659
4806
  margin-top: 70px;
4660
4807
  }
@@ -4662,7 +4809,6 @@ select.uk-form-width-xsmall {
4662
4809
  /*
4663
4810
  * Collapse
4664
4811
  */
4665
- /* Horizontal */
4666
4812
  .uk-grid-collapse,
4667
4813
  .uk-grid-column-collapse {
4668
4814
  margin-right: 0;
@@ -4671,11 +4817,12 @@ select.uk-form-width-xsmall {
4671
4817
  .uk-grid-column-collapse > * {
4672
4818
  padding-right: 0;
4673
4819
  }
4674
- /* Vertical */
4675
- .uk-grid + .uk-grid-collapse,
4676
- .uk-grid + .uk-grid-row-collapse,
4677
- .uk-grid-collapse > .uk-grid-margin,
4678
- .uk-grid-row-collapse > .uk-grid-margin {
4820
+ .uk-grid-collapse,
4821
+ .uk-grid-row-collapse {
4822
+ row-gap: 0;
4823
+ }
4824
+ /* Margin */
4825
+ .uk-grid + :where(.uk-grid-collapse, .uk-grid-row-collapse) {
4679
4826
  margin-top: 0;
4680
4827
  }
4681
4828
  /* Divider
@@ -4683,6 +4830,7 @@ select.uk-form-width-xsmall {
4683
4830
  .uk-grid-divider > * {
4684
4831
  position: relative;
4685
4832
  }
4833
+ /* Horizontal */
4686
4834
  .uk-grid-divider > :not(.uk-first-column)::before {
4687
4835
  content: "";
4688
4836
  position: absolute;
@@ -4691,7 +4839,7 @@ select.uk-form-width-xsmall {
4691
4839
  border-right: 1px solid #e5e5e5;
4692
4840
  }
4693
4841
  /* Vertical */
4694
- .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
4842
+ .uk-grid-divider.uk-grid-stack > :not(.uk-first-row)::before {
4695
4843
  content: "";
4696
4844
  position: absolute;
4697
4845
  right: 0;
@@ -4712,10 +4860,10 @@ select.uk-form-width-xsmall {
4712
4860
  right: 30px;
4713
4861
  }
4714
4862
  /* Vertical */
4715
- .uk-grid-divider.uk-grid-stack > .uk-grid-margin {
4716
- margin-top: 60px;
4863
+ .uk-grid-divider.uk-grid-stack {
4864
+ row-gap: 60px;
4717
4865
  }
4718
- .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
4866
+ .uk-grid-divider.uk-grid-stack > :not(.uk-first-row)::before {
4719
4867
  top: -30px;
4720
4868
  right: 60px;
4721
4869
  }
@@ -4732,10 +4880,10 @@ select.uk-form-width-xsmall {
4732
4880
  right: 40px;
4733
4881
  }
4734
4882
  /* Vertical */
4735
- .uk-grid-divider.uk-grid-stack > .uk-grid-margin {
4736
- margin-top: 80px;
4883
+ .uk-grid-divider.uk-grid-stack {
4884
+ row-gap: 80px;
4737
4885
  }
4738
- .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
4886
+ .uk-grid-divider.uk-grid-stack > :not(.uk-first-row)::before {
4739
4887
  top: -40px;
4740
4888
  right: 80px;
4741
4889
  }
@@ -4757,18 +4905,17 @@ select.uk-form-width-xsmall {
4757
4905
  right: 15px;
4758
4906
  }
4759
4907
  /* Vertical */
4760
- .uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin,
4761
- .uk-grid-divider.uk-grid-row-small.uk-grid-stack > .uk-grid-margin {
4762
- margin-top: 30px;
4908
+ .uk-grid-divider.uk-grid-stack:where(.uk-grid-small, .uk-grid-row-small) {
4909
+ row-gap: 30px;
4763
4910
  }
4764
- .uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin::before {
4911
+ .uk-grid-divider.uk-grid-stack.uk-grid-small > :not(.uk-first-row)::before {
4765
4912
  top: -15px;
4766
4913
  right: 30px;
4767
4914
  }
4768
- .uk-grid-divider.uk-grid-row-small.uk-grid-stack > .uk-grid-margin::before {
4915
+ .uk-grid-divider.uk-grid-stack.uk-grid-row-small > :not(.uk-first-row)::before {
4769
4916
  top: -15px;
4770
4917
  }
4771
- .uk-grid-divider.uk-grid-column-small.uk-grid-stack > .uk-grid-margin::before {
4918
+ .uk-grid-divider.uk-grid-stack.uk-grid-column-small > :not(.uk-first-row)::before {
4772
4919
  right: 30px;
4773
4920
  }
4774
4921
  /*
@@ -4788,18 +4935,17 @@ select.uk-form-width-xsmall {
4788
4935
  right: 30px;
4789
4936
  }
4790
4937
  /* Vertical */
4791
- .uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin,
4792
- .uk-grid-divider.uk-grid-row-medium.uk-grid-stack > .uk-grid-margin {
4793
- margin-top: 60px;
4938
+ .uk-grid-divider.uk-grid-stack:where(.uk-grid-medium, .uk-grid-row-medium) {
4939
+ row-gap: 60px;
4794
4940
  }
4795
- .uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin::before {
4941
+ .uk-grid-divider.uk-grid-stack.uk-grid-medium > :not(.uk-first-row)::before {
4796
4942
  top: -30px;
4797
4943
  right: 60px;
4798
4944
  }
4799
- .uk-grid-divider.uk-grid-row-medium.uk-grid-stack > .uk-grid-margin::before {
4945
+ .uk-grid-divider.uk-grid-stack.uk-grid-row-medium > :not(.uk-first-row)::before {
4800
4946
  top: -30px;
4801
4947
  }
4802
- .uk-grid-divider.uk-grid-column-medium.uk-grid-stack > .uk-grid-margin::before {
4948
+ .uk-grid-divider.uk-grid-stack.uk-grid-column-medium > :not(.uk-first-row)::before {
4803
4949
  right: 60px;
4804
4950
  }
4805
4951
  /*
@@ -4819,18 +4965,17 @@ select.uk-form-width-xsmall {
4819
4965
  right: 40px;
4820
4966
  }
4821
4967
  /* Vertical */
4822
- .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin,
4823
- .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin {
4824
- margin-top: 80px;
4968
+ .uk-grid-divider.uk-grid-stack:where(.uk-grid-large, .uk-grid-row-large) {
4969
+ row-gap: 80px;
4825
4970
  }
4826
- .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
4971
+ .uk-grid-divider.uk-grid-stack.uk-grid-large > :not(.uk-first-row)::before {
4827
4972
  top: -40px;
4828
4973
  right: 80px;
4829
4974
  }
4830
- .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin::before {
4975
+ .uk-grid-divider.uk-grid-stack.uk-grid-row-large > :not(.uk-first-row)::before {
4831
4976
  top: -40px;
4832
4977
  }
4833
- .uk-grid-divider.uk-grid-column-large.uk-grid-stack > .uk-grid-margin::before {
4978
+ .uk-grid-divider.uk-grid-stack.uk-grid-column-large > :not(.uk-first-row)::before {
4834
4979
  right: 80px;
4835
4980
  }
4836
4981
  /* Desktop and bigger */
@@ -4849,18 +4994,17 @@ select.uk-form-width-xsmall {
4849
4994
  right: 70px;
4850
4995
  }
4851
4996
  /* Vertical */
4852
- .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin,
4853
- .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin {
4854
- margin-top: 140px;
4997
+ .uk-grid-divider.uk-grid-stack:where(.uk-grid-large, .uk-grid-row-large) {
4998
+ row-gap: 140px;
4855
4999
  }
4856
- .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
5000
+ .uk-grid-divider.uk-grid-stack.uk-grid-large > :not(.uk-first-row)::before {
4857
5001
  top: -70px;
4858
5002
  right: 140px;
4859
5003
  }
4860
- .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin::before {
5004
+ .uk-grid-divider.uk-grid-stack.uk-grid-row-large > :not(.uk-first-row)::before {
4861
5005
  top: -70px;
4862
5006
  }
4863
- .uk-grid-divider.uk-grid-column-large.uk-grid-stack > .uk-grid-margin::before {
5007
+ .uk-grid-divider.uk-grid-stack.uk-grid-column-large > :not(.uk-first-row)::before {
4864
5008
  right: 140px;
4865
5009
  }
4866
5010
  }
@@ -4909,7 +5053,7 @@ select.uk-form-width-xsmall {
4909
5053
  align-items: center;
4910
5054
  /* 2 */
4911
5055
  column-gap: 0.25em;
4912
- /* 3*/
5056
+ /* 3 */
4913
5057
  text-decoration: none;
4914
5058
  }
4915
5059
  /*
@@ -6279,6 +6423,39 @@ ul.uk-nav-sub {
6279
6423
  width: 80%;
6280
6424
  height: 80%;
6281
6425
  }
6426
+ /* ========================================================================
6427
+ Component: Logo
6428
+ ========================================================================== */
6429
+ /*
6430
+ * 1. Style
6431
+ * 2. Required for `a`
6432
+ * 3. Behave like image but can be overridden through flex utility classes
6433
+ */
6434
+ .uk-logo {
6435
+ /* 1 */
6436
+ font-size: 1.5rem;
6437
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
6438
+ color: #333;
6439
+ /* 2 */
6440
+ text-decoration: none;
6441
+ }
6442
+ /* 3 */
6443
+ :where(.uk-logo) {
6444
+ display: inline-block;
6445
+ vertical-align: middle;
6446
+ }
6447
+ /* Hover */
6448
+ .uk-logo:hover {
6449
+ color: #333;
6450
+ /* 2 */
6451
+ text-decoration: none;
6452
+ }
6453
+ .uk-logo :where(img:not([uk-svg]), svg, video) {
6454
+ display: block;
6455
+ }
6456
+ .uk-logo-inverse:where(:not([uk-svg])) {
6457
+ display: none;
6458
+ }
6282
6459
  /* ========================================================================
6283
6460
  Component: Animation
6284
6461
  ========================================================================== */
@@ -8250,116 +8427,29 @@ iframe[data-uk-cover] {
8250
8427
  .uk-box-shadow-medium {
8251
8428
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
8252
8429
  }
8253
- .uk-box-shadow-large {
8254
- box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
8255
- }
8256
- .uk-box-shadow-xlarge {
8257
- box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
8258
- }
8259
- /*
8260
- * Hover
8261
- */
8262
- [class*="uk-box-shadow-hover"] {
8263
- transition: box-shadow 0.1s ease-in-out;
8264
- }
8265
- .uk-box-shadow-hover-small:hover {
8266
- box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
8267
- }
8268
- .uk-box-shadow-hover-medium:hover {
8269
- box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
8270
- }
8271
- .uk-box-shadow-hover-large:hover {
8272
- box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
8273
- }
8274
- .uk-box-shadow-hover-xlarge:hover {
8275
- box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
8276
- }
8277
- /* Box-shadow bottom
8278
- ========================================================================== */
8279
- /*
8280
- * 1. Set position.
8281
- * 2. Set style
8282
- * 3. Fix shadow being clipped in Safari if container is animated
8283
- */
8284
- @supports (filter: blur(0)) {
8285
- .uk-box-shadow-bottom {
8286
- display: inline-block;
8287
- position: relative;
8288
- z-index: 0;
8289
- max-width: 100%;
8290
- vertical-align: middle;
8291
- }
8292
- .uk-box-shadow-bottom::after {
8293
- content: "";
8294
- /* 1 */
8295
- position: absolute;
8296
- bottom: -30px;
8297
- right: 0;
8298
- left: 0;
8299
- z-index: -1;
8300
- /* 2 */
8301
- height: 30px;
8302
- border-radius: 100%;
8303
- background: #444;
8304
- filter: blur(20px);
8305
- /* 3 */
8306
- will-change: filter;
8307
- }
8308
- }
8309
- /* Drop cap
8310
- ========================================================================== */
8311
- /*
8312
- * 1. Firefox doesn't apply `::first-letter` if the first letter is inside child elements
8313
- * https://bugzilla.mozilla.org/show_bug.cgi?id=214004
8314
- * 2. In Firefox, a floating `::first-letter` doesn't have a line box and there for no `line-height`
8315
- * https://bugzilla.mozilla.org/show_bug.cgi?id=317933
8316
- */
8317
- .uk-dropcap::first-letter,
8318
- .uk-dropcap > p:first-of-type::first-letter {
8319
- display: block;
8320
- margin-left: 10px;
8321
- float: right;
8322
- font-size: 4.5em;
8323
- line-height: 1;
8324
- }
8325
- /* 2 */
8326
- @-moz-document url-prefix() {
8327
- .uk-dropcap::first-letter,
8328
- .uk-dropcap > p:first-of-type::first-letter {
8329
- margin-top: 1.1%;
8330
- }
8430
+ .uk-box-shadow-large {
8431
+ box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
8432
+ }
8433
+ .uk-box-shadow-xlarge {
8434
+ box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
8331
8435
  }
8332
- /* Logo
8333
- ========================================================================== */
8334
8436
  /*
8335
- * 1. Style
8336
- * 2. Required for `a`
8337
- * 3. Behave like image but can be overridden through flex utility classes
8437
+ * Hover
8338
8438
  */
8339
- .uk-logo {
8340
- /* 1 */
8341
- font-size: 1.5rem;
8342
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
8343
- color: #333;
8344
- /* 2 */
8345
- text-decoration: none;
8439
+ [class*="uk-box-shadow-hover"] {
8440
+ transition: box-shadow 0.1s ease-in-out;
8346
8441
  }
8347
- /* 3 */
8348
- :where(.uk-logo) {
8349
- display: inline-block;
8350
- vertical-align: middle;
8442
+ .uk-box-shadow-hover-small:hover {
8443
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
8351
8444
  }
8352
- /* Hover */
8353
- .uk-logo:hover {
8354
- color: #333;
8355
- /* 1 */
8356
- text-decoration: none;
8445
+ .uk-box-shadow-hover-medium:hover {
8446
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
8357
8447
  }
8358
- .uk-logo :where(img, svg, video) {
8359
- display: block;
8448
+ .uk-box-shadow-hover-large:hover {
8449
+ box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
8360
8450
  }
8361
- .uk-logo-inverse {
8362
- display: none;
8451
+ .uk-box-shadow-hover-xlarge:hover {
8452
+ box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
8363
8453
  }
8364
8454
  /* Disabled State
8365
8455
  ========================================================================== */
@@ -8862,19 +8952,19 @@ iframe[data-uk-cover] {
8862
8952
  margin-bottom: 20px;
8863
8953
  }
8864
8954
  * + .uk-margin {
8865
- margin-top: 20px !important;
8955
+ margin-top: 20px;
8866
8956
  }
8867
8957
  .uk-margin-top {
8868
- margin-top: 20px !important;
8958
+ margin-top: 20px;
8869
8959
  }
8870
8960
  .uk-margin-bottom {
8871
- margin-bottom: 20px !important;
8961
+ margin-bottom: 20px;
8872
8962
  }
8873
8963
  .uk-margin-right {
8874
- margin-right: 20px !important;
8964
+ margin-right: 20px;
8875
8965
  }
8876
8966
  .uk-margin-left {
8877
- margin-left: 20px !important;
8967
+ margin-left: 20px;
8878
8968
  }
8879
8969
  /* XSmall
8880
8970
  ========================================================================== */
@@ -8882,19 +8972,19 @@ iframe[data-uk-cover] {
8882
8972
  margin-bottom: 5px;
8883
8973
  }
8884
8974
  * + .uk-margin-xsmall {
8885
- margin-top: 5px !important;
8975
+ margin-top: 5px;
8886
8976
  }
8887
8977
  .uk-margin-xsmall-top {
8888
- margin-top: 5px !important;
8978
+ margin-top: 5px;
8889
8979
  }
8890
8980
  .uk-margin-xsmall-bottom {
8891
- margin-bottom: 5px !important;
8981
+ margin-bottom: 5px;
8892
8982
  }
8893
8983
  .uk-margin-xsmall-right {
8894
- margin-right: 5px !important;
8984
+ margin-right: 5px;
8895
8985
  }
8896
8986
  .uk-margin-xsmall-left {
8897
- margin-left: 5px !important;
8987
+ margin-left: 5px;
8898
8988
  }
8899
8989
  /* Small
8900
8990
  ========================================================================== */
@@ -8902,19 +8992,19 @@ iframe[data-uk-cover] {
8902
8992
  margin-bottom: 10px;
8903
8993
  }
8904
8994
  * + .uk-margin-small {
8905
- margin-top: 10px !important;
8995
+ margin-top: 10px;
8906
8996
  }
8907
8997
  .uk-margin-small-top {
8908
- margin-top: 10px !important;
8998
+ margin-top: 10px;
8909
8999
  }
8910
9000
  .uk-margin-small-bottom {
8911
- margin-bottom: 10px !important;
9001
+ margin-bottom: 10px;
8912
9002
  }
8913
9003
  .uk-margin-small-right {
8914
- margin-right: 10px !important;
9004
+ margin-right: 10px;
8915
9005
  }
8916
9006
  .uk-margin-small-left {
8917
- margin-left: 10px !important;
9007
+ margin-left: 10px;
8918
9008
  }
8919
9009
  /* Medium
8920
9010
  ========================================================================== */
@@ -8922,19 +9012,19 @@ iframe[data-uk-cover] {
8922
9012
  margin-bottom: 40px;
8923
9013
  }
8924
9014
  * + .uk-margin-medium {
8925
- margin-top: 40px !important;
9015
+ margin-top: 40px;
8926
9016
  }
8927
9017
  .uk-margin-medium-top {
8928
- margin-top: 40px !important;
9018
+ margin-top: 40px;
8929
9019
  }
8930
9020
  .uk-margin-medium-bottom {
8931
- margin-bottom: 40px !important;
9021
+ margin-bottom: 40px;
8932
9022
  }
8933
9023
  .uk-margin-medium-right {
8934
- margin-right: 40px !important;
9024
+ margin-right: 40px;
8935
9025
  }
8936
9026
  .uk-margin-medium-left {
8937
- margin-left: 40px !important;
9027
+ margin-left: 40px;
8938
9028
  }
8939
9029
  /* Large
8940
9030
  ========================================================================== */
@@ -8942,19 +9032,19 @@ iframe[data-uk-cover] {
8942
9032
  margin-bottom: 40px;
8943
9033
  }
8944
9034
  * + .uk-margin-large {
8945
- margin-top: 40px !important;
9035
+ margin-top: 40px;
8946
9036
  }
8947
9037
  .uk-margin-large-top {
8948
- margin-top: 40px !important;
9038
+ margin-top: 40px;
8949
9039
  }
8950
9040
  .uk-margin-large-bottom {
8951
- margin-bottom: 40px !important;
9041
+ margin-bottom: 40px;
8952
9042
  }
8953
9043
  .uk-margin-large-right {
8954
- margin-right: 40px !important;
9044
+ margin-right: 40px;
8955
9045
  }
8956
9046
  .uk-margin-large-left {
8957
- margin-left: 40px !important;
9047
+ margin-left: 40px;
8958
9048
  }
8959
9049
  /* Desktop and bigger */
8960
9050
  @media (min-width: 1200px) {
@@ -8962,19 +9052,19 @@ iframe[data-uk-cover] {
8962
9052
  margin-bottom: 70px;
8963
9053
  }
8964
9054
  * + .uk-margin-large {
8965
- margin-top: 70px !important;
9055
+ margin-top: 70px;
8966
9056
  }
8967
9057
  .uk-margin-large-top {
8968
- margin-top: 70px !important;
9058
+ margin-top: 70px;
8969
9059
  }
8970
9060
  .uk-margin-large-bottom {
8971
- margin-bottom: 70px !important;
9061
+ margin-bottom: 70px;
8972
9062
  }
8973
9063
  .uk-margin-large-right {
8974
- margin-right: 70px !important;
9064
+ margin-right: 70px;
8975
9065
  }
8976
9066
  .uk-margin-large-left {
8977
- margin-left: 70px !important;
9067
+ margin-left: 70px;
8978
9068
  }
8979
9069
  }
8980
9070
  /* XLarge
@@ -8983,19 +9073,19 @@ iframe[data-uk-cover] {
8983
9073
  margin-bottom: 70px;
8984
9074
  }
8985
9075
  * + .uk-margin-xlarge {
8986
- margin-top: 70px !important;
9076
+ margin-top: 70px;
8987
9077
  }
8988
9078
  .uk-margin-xlarge-top {
8989
- margin-top: 70px !important;
9079
+ margin-top: 70px;
8990
9080
  }
8991
9081
  .uk-margin-xlarge-bottom {
8992
- margin-bottom: 70px !important;
9082
+ margin-bottom: 70px;
8993
9083
  }
8994
9084
  .uk-margin-xlarge-right {
8995
- margin-right: 70px !important;
9085
+ margin-right: 70px;
8996
9086
  }
8997
9087
  .uk-margin-xlarge-left {
8998
- margin-left: 70px !important;
9088
+ margin-left: 70px;
8999
9089
  }
9000
9090
  /* Desktop and bigger */
9001
9091
  @media (min-width: 1200px) {
@@ -9003,157 +9093,157 @@ iframe[data-uk-cover] {
9003
9093
  margin-bottom: 140px;
9004
9094
  }
9005
9095
  * + .uk-margin-xlarge {
9006
- margin-top: 140px !important;
9096
+ margin-top: 140px;
9007
9097
  }
9008
9098
  .uk-margin-xlarge-top {
9009
- margin-top: 140px !important;
9099
+ margin-top: 140px;
9010
9100
  }
9011
9101
  .uk-margin-xlarge-bottom {
9012
- margin-bottom: 140px !important;
9102
+ margin-bottom: 140px;
9013
9103
  }
9014
9104
  .uk-margin-xlarge-right {
9015
- margin-right: 140px !important;
9105
+ margin-right: 140px;
9016
9106
  }
9017
9107
  .uk-margin-xlarge-left {
9018
- margin-left: 140px !important;
9108
+ margin-left: 140px;
9019
9109
  }
9020
9110
  }
9021
9111
  /* Auto
9022
9112
  ========================================================================== */
9023
9113
  .uk-margin-auto {
9024
- margin-right: auto !important;
9025
- margin-left: auto !important;
9114
+ margin-right: auto;
9115
+ margin-left: auto;
9026
9116
  }
9027
9117
  .uk-margin-auto-top {
9028
- margin-top: auto !important;
9118
+ margin-top: auto;
9029
9119
  }
9030
9120
  .uk-margin-auto-bottom {
9031
- margin-bottom: auto !important;
9121
+ margin-bottom: auto;
9032
9122
  }
9033
9123
  .uk-margin-auto-right {
9034
- margin-right: auto !important;
9124
+ margin-right: auto;
9035
9125
  }
9036
9126
  .uk-margin-auto-left {
9037
- margin-left: auto !important;
9127
+ margin-left: auto;
9038
9128
  }
9039
9129
  .uk-margin-auto-vertical {
9040
- margin-top: auto !important;
9041
- margin-bottom: auto !important;
9130
+ margin-top: auto;
9131
+ margin-bottom: auto;
9042
9132
  }
9043
9133
  /* Phone landscape and bigger */
9044
9134
  @media (min-width: 640px) {
9045
9135
  .uk-margin-auto\@s {
9046
- margin-right: auto !important;
9047
- margin-left: auto !important;
9136
+ margin-right: auto;
9137
+ margin-left: auto;
9048
9138
  }
9049
9139
  .uk-margin-auto-right\@s {
9050
- margin-right: auto !important;
9140
+ margin-right: auto;
9051
9141
  }
9052
9142
  .uk-margin-auto-left\@s {
9053
- margin-left: auto !important;
9143
+ margin-left: auto;
9054
9144
  }
9055
9145
  }
9056
9146
  /* Tablet landscape and bigger */
9057
9147
  @media (min-width: 960px) {
9058
9148
  .uk-margin-auto\@m {
9059
- margin-right: auto !important;
9060
- margin-left: auto !important;
9149
+ margin-right: auto;
9150
+ margin-left: auto;
9061
9151
  }
9062
9152
  .uk-margin-auto-right\@m {
9063
- margin-right: auto !important;
9153
+ margin-right: auto;
9064
9154
  }
9065
9155
  .uk-margin-auto-left\@m {
9066
- margin-left: auto !important;
9156
+ margin-left: auto;
9067
9157
  }
9068
9158
  }
9069
9159
  /* Desktop and bigger */
9070
9160
  @media (min-width: 1200px) {
9071
9161
  .uk-margin-auto\@l {
9072
- margin-right: auto !important;
9073
- margin-left: auto !important;
9162
+ margin-right: auto;
9163
+ margin-left: auto;
9074
9164
  }
9075
9165
  .uk-margin-auto-right\@l {
9076
- margin-right: auto !important;
9166
+ margin-right: auto;
9077
9167
  }
9078
9168
  .uk-margin-auto-left\@l {
9079
- margin-left: auto !important;
9169
+ margin-left: auto;
9080
9170
  }
9081
9171
  }
9082
9172
  /* Large screen and bigger */
9083
9173
  @media (min-width: 1600px) {
9084
9174
  .uk-margin-auto\@xl {
9085
- margin-right: auto !important;
9086
- margin-left: auto !important;
9175
+ margin-right: auto;
9176
+ margin-left: auto;
9087
9177
  }
9088
9178
  .uk-margin-auto-right\@xl {
9089
- margin-right: auto !important;
9179
+ margin-right: auto;
9090
9180
  }
9091
9181
  .uk-margin-auto-left\@xl {
9092
- margin-left: auto !important;
9182
+ margin-left: auto;
9093
9183
  }
9094
9184
  }
9095
9185
  /* Remove
9096
9186
  ========================================================================== */
9097
9187
  .uk-margin-remove {
9098
- margin: 0 !important;
9188
+ margin: 0;
9099
9189
  }
9100
9190
  .uk-margin-remove-top {
9101
- margin-top: 0 !important;
9191
+ margin-top: 0;
9102
9192
  }
9103
9193
  .uk-margin-remove-bottom {
9104
- margin-bottom: 0 !important;
9194
+ margin-bottom: 0;
9105
9195
  }
9106
9196
  .uk-margin-remove-right {
9107
- margin-right: 0 !important;
9197
+ margin-right: 0;
9108
9198
  }
9109
9199
  .uk-margin-remove-left {
9110
- margin-left: 0 !important;
9200
+ margin-left: 0;
9111
9201
  }
9112
9202
  .uk-margin-remove-vertical {
9113
- margin-top: 0 !important;
9114
- margin-bottom: 0 !important;
9203
+ margin-top: 0;
9204
+ margin-bottom: 0;
9115
9205
  }
9116
9206
  .uk-margin-remove-adjacent + *,
9117
9207
  .uk-margin-remove-first-child > :first-child {
9118
- margin-top: 0 !important;
9208
+ margin-top: 0;
9119
9209
  }
9120
9210
  .uk-margin-remove-last-child > :last-child {
9121
- margin-bottom: 0 !important;
9211
+ margin-bottom: 0;
9122
9212
  }
9123
9213
  /* Phone landscape and bigger */
9124
9214
  @media (min-width: 640px) {
9125
9215
  .uk-margin-remove-right\@s {
9126
- margin-right: 0 !important;
9216
+ margin-right: 0;
9127
9217
  }
9128
9218
  .uk-margin-remove-left\@s {
9129
- margin-left: 0 !important;
9219
+ margin-left: 0;
9130
9220
  }
9131
9221
  }
9132
9222
  /* Tablet landscape and bigger */
9133
9223
  @media (min-width: 960px) {
9134
9224
  .uk-margin-remove-right\@m {
9135
- margin-right: 0 !important;
9225
+ margin-right: 0;
9136
9226
  }
9137
9227
  .uk-margin-remove-left\@m {
9138
- margin-left: 0 !important;
9228
+ margin-left: 0;
9139
9229
  }
9140
9230
  }
9141
9231
  /* Desktop and bigger */
9142
9232
  @media (min-width: 1200px) {
9143
9233
  .uk-margin-remove-right\@l {
9144
- margin-right: 0 !important;
9234
+ margin-right: 0;
9145
9235
  }
9146
9236
  .uk-margin-remove-left\@l {
9147
- margin-left: 0 !important;
9237
+ margin-left: 0;
9148
9238
  }
9149
9239
  }
9150
9240
  /* Large screen and bigger */
9151
9241
  @media (min-width: 1600px) {
9152
9242
  .uk-margin-remove-right\@xl {
9153
- margin-right: 0 !important;
9243
+ margin-right: 0;
9154
9244
  }
9155
9245
  .uk-margin-remove-left\@xl {
9156
- margin-left: 0 !important;
9246
+ margin-left: 0;
9157
9247
  }
9158
9248
  }
9159
9249
  /* ========================================================================
@@ -9187,27 +9277,27 @@ iframe[data-uk-cover] {
9187
9277
  /* Remove
9188
9278
  ========================================================================== */
9189
9279
  .uk-padding-remove {
9190
- padding: 0 !important;
9280
+ padding: 0;
9191
9281
  }
9192
9282
  .uk-padding-remove-top {
9193
- padding-top: 0 !important;
9283
+ padding-top: 0;
9194
9284
  }
9195
9285
  .uk-padding-remove-bottom {
9196
- padding-bottom: 0 !important;
9286
+ padding-bottom: 0;
9197
9287
  }
9198
9288
  .uk-padding-remove-right {
9199
- padding-right: 0 !important;
9289
+ padding-right: 0;
9200
9290
  }
9201
9291
  .uk-padding-remove-left {
9202
- padding-left: 0 !important;
9292
+ padding-left: 0;
9203
9293
  }
9204
9294
  .uk-padding-remove-vertical {
9205
- padding-top: 0 !important;
9206
- padding-bottom: 0 !important;
9295
+ padding-top: 0;
9296
+ padding-bottom: 0;
9207
9297
  }
9208
9298
  .uk-padding-remove-horizontal {
9209
- padding-right: 0 !important;
9210
- padding-left: 0 !important;
9299
+ padding-right: 0;
9300
+ padding-left: 0;
9211
9301
  }
9212
9302
  /* ========================================================================
9213
9303
  Component: Position
@@ -11058,6 +11148,188 @@ a.uk-offcanvas-bar:hover .uk-icon-overlay {
11058
11148
  .uk-offcanvas-bar .uk-form-icon:hover {
11059
11149
  color: rgba(255, 255, 255, 0.7);
11060
11150
  }
11151
+ .uk-light .uk-search-input,
11152
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-input,
11153
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-input,
11154
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-input,
11155
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-input,
11156
+ .uk-card-primary.uk-card-body .uk-search-input,
11157
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-input,
11158
+ .uk-card-secondary.uk-card-body .uk-search-input,
11159
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-input,
11160
+ .uk-overlay-primary .uk-search-input,
11161
+ .uk-offcanvas-bar .uk-search-input {
11162
+ color: rgba(255, 255, 255, 0.7);
11163
+ }
11164
+ .uk-light .uk-search-input::placeholder,
11165
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-input::placeholder,
11166
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-input::placeholder,
11167
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-input::placeholder,
11168
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-input::placeholder,
11169
+ .uk-card-primary.uk-card-body .uk-search-input::placeholder,
11170
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-input::placeholder,
11171
+ .uk-card-secondary.uk-card-body .uk-search-input::placeholder,
11172
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-input::placeholder,
11173
+ .uk-overlay-primary .uk-search-input::placeholder,
11174
+ .uk-offcanvas-bar .uk-search-input::placeholder {
11175
+ color: rgba(255, 255, 255, 0.5);
11176
+ }
11177
+ .uk-light .uk-search .uk-search-icon,
11178
+ .uk-section-primary:not(.uk-preserve-color) .uk-search .uk-search-icon,
11179
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon,
11180
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search .uk-search-icon,
11181
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon,
11182
+ .uk-card-primary.uk-card-body .uk-search .uk-search-icon,
11183
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon,
11184
+ .uk-card-secondary.uk-card-body .uk-search .uk-search-icon,
11185
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon,
11186
+ .uk-overlay-primary .uk-search .uk-search-icon,
11187
+ .uk-offcanvas-bar .uk-search .uk-search-icon {
11188
+ color: rgba(255, 255, 255, 0.5);
11189
+ }
11190
+ .uk-light .uk-search .uk-search-icon:hover,
11191
+ .uk-section-primary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
11192
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
11193
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
11194
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
11195
+ .uk-card-primary.uk-card-body .uk-search .uk-search-icon:hover,
11196
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon:hover,
11197
+ .uk-card-secondary.uk-card-body .uk-search .uk-search-icon:hover,
11198
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon:hover,
11199
+ .uk-overlay-primary .uk-search .uk-search-icon:hover,
11200
+ .uk-offcanvas-bar .uk-search .uk-search-icon:hover {
11201
+ color: rgba(255, 255, 255, 0.5);
11202
+ }
11203
+ .uk-light .uk-search-default .uk-search-input,
11204
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
11205
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
11206
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
11207
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
11208
+ .uk-card-primary.uk-card-body .uk-search-default .uk-search-input,
11209
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input,
11210
+ .uk-card-secondary.uk-card-body .uk-search-default .uk-search-input,
11211
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input,
11212
+ .uk-overlay-primary .uk-search-default .uk-search-input,
11213
+ .uk-offcanvas-bar .uk-search-default .uk-search-input {
11214
+ background-color: rgba(255, 255, 255, 0.1);
11215
+ }
11216
+ .uk-light .uk-search-default .uk-search-input:focus,
11217
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
11218
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
11219
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
11220
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
11221
+ .uk-card-primary.uk-card-body .uk-search-default .uk-search-input:focus,
11222
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input:focus,
11223
+ .uk-card-secondary.uk-card-body .uk-search-default .uk-search-input:focus,
11224
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input:focus,
11225
+ .uk-overlay-primary .uk-search-default .uk-search-input:focus,
11226
+ .uk-offcanvas-bar .uk-search-default .uk-search-input:focus {
11227
+ background-color: rgba(255, 255, 255, 0.15);
11228
+ }
11229
+ .uk-light .uk-search-navbar .uk-search-input,
11230
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
11231
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
11232
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
11233
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
11234
+ .uk-card-primary.uk-card-body .uk-search-navbar .uk-search-input,
11235
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input,
11236
+ .uk-card-secondary.uk-card-body .uk-search-navbar .uk-search-input,
11237
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input,
11238
+ .uk-overlay-primary .uk-search-navbar .uk-search-input,
11239
+ .uk-offcanvas-bar .uk-search-navbar .uk-search-input {
11240
+ background-color: rgba(255, 255, 255, 0.1);
11241
+ }
11242
+ .uk-light .uk-search-navbar .uk-search-input:focus,
11243
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,
11244
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,
11245
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,
11246
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,
11247
+ .uk-card-primary.uk-card-body .uk-search-navbar .uk-search-input:focus,
11248
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input:focus,
11249
+ .uk-card-secondary.uk-card-body .uk-search-navbar .uk-search-input:focus,
11250
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input:focus,
11251
+ .uk-overlay-primary .uk-search-navbar .uk-search-input:focus,
11252
+ .uk-offcanvas-bar .uk-search-navbar .uk-search-input:focus {
11253
+ background-color: rgba(255, 255, 255, 0.15);
11254
+ }
11255
+ .uk-light .uk-search-medium .uk-search-input,
11256
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,
11257
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,
11258
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,
11259
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,
11260
+ .uk-card-primary.uk-card-body .uk-search-medium .uk-search-input,
11261
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input,
11262
+ .uk-card-secondary.uk-card-body .uk-search-medium .uk-search-input,
11263
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input,
11264
+ .uk-overlay-primary .uk-search-medium .uk-search-input,
11265
+ .uk-offcanvas-bar .uk-search-medium .uk-search-input {
11266
+ background-color: rgba(255, 255, 255, 0.1);
11267
+ }
11268
+ .uk-light .uk-search-medium .uk-search-input:focus,
11269
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11270
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11271
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11272
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11273
+ .uk-card-primary.uk-card-body .uk-search-medium .uk-search-input:focus,
11274
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input:focus,
11275
+ .uk-card-secondary.uk-card-body .uk-search-medium .uk-search-input:focus,
11276
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input:focus,
11277
+ .uk-overlay-primary .uk-search-medium .uk-search-input:focus,
11278
+ .uk-offcanvas-bar .uk-search-medium .uk-search-input:focus {
11279
+ background-color: rgba(255, 255, 255, 0.15);
11280
+ }
11281
+ .uk-light .uk-search-large .uk-search-input,
11282
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
11283
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
11284
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
11285
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
11286
+ .uk-card-primary.uk-card-body .uk-search-large .uk-search-input,
11287
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input,
11288
+ .uk-card-secondary.uk-card-body .uk-search-large .uk-search-input,
11289
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input,
11290
+ .uk-overlay-primary .uk-search-large .uk-search-input,
11291
+ .uk-offcanvas-bar .uk-search-large .uk-search-input {
11292
+ background-color: rgba(255, 255, 255, 0.1);
11293
+ }
11294
+ .uk-light .uk-search-large .uk-search-input:focus,
11295
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11296
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11297
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11298
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11299
+ .uk-card-primary.uk-card-body .uk-search-large .uk-search-input:focus,
11300
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input:focus,
11301
+ .uk-card-secondary.uk-card-body .uk-search-large .uk-search-input:focus,
11302
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input:focus,
11303
+ .uk-overlay-primary .uk-search-large .uk-search-input:focus,
11304
+ .uk-offcanvas-bar .uk-search-large .uk-search-input:focus {
11305
+ background-color: rgba(255, 255, 255, 0.15);
11306
+ }
11307
+ .uk-light .uk-search-toggle,
11308
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-toggle,
11309
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-toggle,
11310
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-toggle,
11311
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-toggle,
11312
+ .uk-card-primary.uk-card-body .uk-search-toggle,
11313
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-toggle,
11314
+ .uk-card-secondary.uk-card-body .uk-search-toggle,
11315
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-toggle,
11316
+ .uk-overlay-primary .uk-search-toggle,
11317
+ .uk-offcanvas-bar .uk-search-toggle {
11318
+ color: rgba(255, 255, 255, 0.5);
11319
+ }
11320
+ .uk-light .uk-search-toggle:hover,
11321
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-toggle:hover,
11322
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-toggle:hover,
11323
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-toggle:hover,
11324
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-toggle:hover,
11325
+ .uk-card-primary.uk-card-body .uk-search-toggle:hover,
11326
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-toggle:hover,
11327
+ .uk-card-secondary.uk-card-body .uk-search-toggle:hover,
11328
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-toggle:hover,
11329
+ .uk-overlay-primary .uk-search-toggle:hover,
11330
+ .uk-offcanvas-bar .uk-search-toggle:hover {
11331
+ color: rgba(255, 255, 255, 0.7);
11332
+ }
11061
11333
  .uk-light .uk-button-default,
11062
11334
  .uk-section-primary:not(.uk-preserve-color) .uk-button-default,
11063
11335
  .uk-section-secondary:not(.uk-preserve-color) .uk-button-default,
@@ -11429,188 +11701,6 @@ a.uk-offcanvas-bar:hover .uk-icon-overlay {
11429
11701
  .uk-offcanvas-bar .uk-article-meta {
11430
11702
  color: rgba(255, 255, 255, 0.5);
11431
11703
  }
11432
- .uk-light .uk-search-input,
11433
- .uk-section-primary:not(.uk-preserve-color) .uk-search-input,
11434
- .uk-section-secondary:not(.uk-preserve-color) .uk-search-input,
11435
- .uk-tile-primary:not(.uk-preserve-color) .uk-search-input,
11436
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search-input,
11437
- .uk-card-primary.uk-card-body .uk-search-input,
11438
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-input,
11439
- .uk-card-secondary.uk-card-body .uk-search-input,
11440
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-input,
11441
- .uk-overlay-primary .uk-search-input,
11442
- .uk-offcanvas-bar .uk-search-input {
11443
- color: rgba(255, 255, 255, 0.7);
11444
- }
11445
- .uk-light .uk-search-input::placeholder,
11446
- .uk-section-primary:not(.uk-preserve-color) .uk-search-input::placeholder,
11447
- .uk-section-secondary:not(.uk-preserve-color) .uk-search-input::placeholder,
11448
- .uk-tile-primary:not(.uk-preserve-color) .uk-search-input::placeholder,
11449
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search-input::placeholder,
11450
- .uk-card-primary.uk-card-body .uk-search-input::placeholder,
11451
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-input::placeholder,
11452
- .uk-card-secondary.uk-card-body .uk-search-input::placeholder,
11453
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-input::placeholder,
11454
- .uk-overlay-primary .uk-search-input::placeholder,
11455
- .uk-offcanvas-bar .uk-search-input::placeholder {
11456
- color: rgba(255, 255, 255, 0.5);
11457
- }
11458
- .uk-light .uk-search .uk-search-icon,
11459
- .uk-section-primary:not(.uk-preserve-color) .uk-search .uk-search-icon,
11460
- .uk-section-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon,
11461
- .uk-tile-primary:not(.uk-preserve-color) .uk-search .uk-search-icon,
11462
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon,
11463
- .uk-card-primary.uk-card-body .uk-search .uk-search-icon,
11464
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon,
11465
- .uk-card-secondary.uk-card-body .uk-search .uk-search-icon,
11466
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon,
11467
- .uk-overlay-primary .uk-search .uk-search-icon,
11468
- .uk-offcanvas-bar .uk-search .uk-search-icon {
11469
- color: rgba(255, 255, 255, 0.5);
11470
- }
11471
- .uk-light .uk-search .uk-search-icon:hover,
11472
- .uk-section-primary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
11473
- .uk-section-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
11474
- .uk-tile-primary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
11475
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
11476
- .uk-card-primary.uk-card-body .uk-search .uk-search-icon:hover,
11477
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon:hover,
11478
- .uk-card-secondary.uk-card-body .uk-search .uk-search-icon:hover,
11479
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon:hover,
11480
- .uk-overlay-primary .uk-search .uk-search-icon:hover,
11481
- .uk-offcanvas-bar .uk-search .uk-search-icon:hover {
11482
- color: rgba(255, 255, 255, 0.5);
11483
- }
11484
- .uk-light .uk-search-default .uk-search-input,
11485
- .uk-section-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
11486
- .uk-section-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
11487
- .uk-tile-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
11488
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
11489
- .uk-card-primary.uk-card-body .uk-search-default .uk-search-input,
11490
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input,
11491
- .uk-card-secondary.uk-card-body .uk-search-default .uk-search-input,
11492
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input,
11493
- .uk-overlay-primary .uk-search-default .uk-search-input,
11494
- .uk-offcanvas-bar .uk-search-default .uk-search-input {
11495
- background-color: rgba(255, 255, 255, 0.1);
11496
- }
11497
- .uk-light .uk-search-default .uk-search-input:focus,
11498
- .uk-section-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
11499
- .uk-section-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
11500
- .uk-tile-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
11501
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
11502
- .uk-card-primary.uk-card-body .uk-search-default .uk-search-input:focus,
11503
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input:focus,
11504
- .uk-card-secondary.uk-card-body .uk-search-default .uk-search-input:focus,
11505
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input:focus,
11506
- .uk-overlay-primary .uk-search-default .uk-search-input:focus,
11507
- .uk-offcanvas-bar .uk-search-default .uk-search-input:focus {
11508
- background-color: rgba(255, 255, 255, 0.15);
11509
- }
11510
- .uk-light .uk-search-navbar .uk-search-input,
11511
- .uk-section-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
11512
- .uk-section-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
11513
- .uk-tile-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
11514
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
11515
- .uk-card-primary.uk-card-body .uk-search-navbar .uk-search-input,
11516
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input,
11517
- .uk-card-secondary.uk-card-body .uk-search-navbar .uk-search-input,
11518
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input,
11519
- .uk-overlay-primary .uk-search-navbar .uk-search-input,
11520
- .uk-offcanvas-bar .uk-search-navbar .uk-search-input {
11521
- background-color: rgba(255, 255, 255, 0.1);
11522
- }
11523
- .uk-light .uk-search-navbar .uk-search-input:focus,
11524
- .uk-section-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,
11525
- .uk-section-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,
11526
- .uk-tile-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,
11527
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,
11528
- .uk-card-primary.uk-card-body .uk-search-navbar .uk-search-input:focus,
11529
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input:focus,
11530
- .uk-card-secondary.uk-card-body .uk-search-navbar .uk-search-input:focus,
11531
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input:focus,
11532
- .uk-overlay-primary .uk-search-navbar .uk-search-input:focus,
11533
- .uk-offcanvas-bar .uk-search-navbar .uk-search-input:focus {
11534
- background-color: rgba(255, 255, 255, 0.15);
11535
- }
11536
- .uk-light .uk-search-medium .uk-search-input,
11537
- .uk-section-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,
11538
- .uk-section-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,
11539
- .uk-tile-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,
11540
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,
11541
- .uk-card-primary.uk-card-body .uk-search-medium .uk-search-input,
11542
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input,
11543
- .uk-card-secondary.uk-card-body .uk-search-medium .uk-search-input,
11544
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input,
11545
- .uk-overlay-primary .uk-search-medium .uk-search-input,
11546
- .uk-offcanvas-bar .uk-search-medium .uk-search-input {
11547
- background-color: rgba(255, 255, 255, 0.1);
11548
- }
11549
- .uk-light .uk-search-medium .uk-search-input:focus,
11550
- .uk-section-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11551
- .uk-section-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11552
- .uk-tile-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11553
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11554
- .uk-card-primary.uk-card-body .uk-search-medium .uk-search-input:focus,
11555
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input:focus,
11556
- .uk-card-secondary.uk-card-body .uk-search-medium .uk-search-input:focus,
11557
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input:focus,
11558
- .uk-overlay-primary .uk-search-medium .uk-search-input:focus,
11559
- .uk-offcanvas-bar .uk-search-medium .uk-search-input:focus {
11560
- background-color: rgba(255, 255, 255, 0.15);
11561
- }
11562
- .uk-light .uk-search-large .uk-search-input,
11563
- .uk-section-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
11564
- .uk-section-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
11565
- .uk-tile-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
11566
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
11567
- .uk-card-primary.uk-card-body .uk-search-large .uk-search-input,
11568
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input,
11569
- .uk-card-secondary.uk-card-body .uk-search-large .uk-search-input,
11570
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input,
11571
- .uk-overlay-primary .uk-search-large .uk-search-input,
11572
- .uk-offcanvas-bar .uk-search-large .uk-search-input {
11573
- background-color: rgba(255, 255, 255, 0.1);
11574
- }
11575
- .uk-light .uk-search-large .uk-search-input:focus,
11576
- .uk-section-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11577
- .uk-section-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11578
- .uk-tile-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11579
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11580
- .uk-card-primary.uk-card-body .uk-search-large .uk-search-input:focus,
11581
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input:focus,
11582
- .uk-card-secondary.uk-card-body .uk-search-large .uk-search-input:focus,
11583
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input:focus,
11584
- .uk-overlay-primary .uk-search-large .uk-search-input:focus,
11585
- .uk-offcanvas-bar .uk-search-large .uk-search-input:focus {
11586
- background-color: rgba(255, 255, 255, 0.15);
11587
- }
11588
- .uk-light .uk-search-toggle,
11589
- .uk-section-primary:not(.uk-preserve-color) .uk-search-toggle,
11590
- .uk-section-secondary:not(.uk-preserve-color) .uk-search-toggle,
11591
- .uk-tile-primary:not(.uk-preserve-color) .uk-search-toggle,
11592
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search-toggle,
11593
- .uk-card-primary.uk-card-body .uk-search-toggle,
11594
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-toggle,
11595
- .uk-card-secondary.uk-card-body .uk-search-toggle,
11596
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-toggle,
11597
- .uk-overlay-primary .uk-search-toggle,
11598
- .uk-offcanvas-bar .uk-search-toggle {
11599
- color: rgba(255, 255, 255, 0.5);
11600
- }
11601
- .uk-light .uk-search-toggle:hover,
11602
- .uk-section-primary:not(.uk-preserve-color) .uk-search-toggle:hover,
11603
- .uk-section-secondary:not(.uk-preserve-color) .uk-search-toggle:hover,
11604
- .uk-tile-primary:not(.uk-preserve-color) .uk-search-toggle:hover,
11605
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search-toggle:hover,
11606
- .uk-card-primary.uk-card-body .uk-search-toggle:hover,
11607
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-toggle:hover,
11608
- .uk-card-secondary.uk-card-body .uk-search-toggle:hover,
11609
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-toggle:hover,
11610
- .uk-overlay-primary .uk-search-toggle:hover,
11611
- .uk-offcanvas-bar .uk-search-toggle:hover {
11612
- color: rgba(255, 255, 255, 0.7);
11613
- }
11614
11704
  .uk-light .uk-accordion-default .uk-accordion-title,
11615
11705
  .uk-section-primary:not(.uk-preserve-color) .uk-accordion-default .uk-accordion-title,
11616
11706
  .uk-section-secondary:not(.uk-preserve-color) .uk-accordion-default .uk-accordion-title,
@@ -12547,6 +12637,58 @@ a.uk-offcanvas-bar:hover .uk-icon-overlay {
12547
12637
  .uk-offcanvas-bar .uk-dotnav > .uk-active > * {
12548
12638
  background-color: rgba(255, 255, 255, 0.9);
12549
12639
  }
12640
+ .uk-light .uk-logo,
12641
+ .uk-section-primary:not(.uk-preserve-color) .uk-logo,
12642
+ .uk-section-secondary:not(.uk-preserve-color) .uk-logo,
12643
+ .uk-tile-primary:not(.uk-preserve-color) .uk-logo,
12644
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-logo,
12645
+ .uk-card-primary.uk-card-body .uk-logo,
12646
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-logo,
12647
+ .uk-card-secondary.uk-card-body .uk-logo,
12648
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo,
12649
+ .uk-overlay-primary .uk-logo,
12650
+ .uk-offcanvas-bar .uk-logo {
12651
+ color: #fff;
12652
+ }
12653
+ .uk-light .uk-logo:hover,
12654
+ .uk-section-primary:not(.uk-preserve-color) .uk-logo:hover,
12655
+ .uk-section-secondary:not(.uk-preserve-color) .uk-logo:hover,
12656
+ .uk-tile-primary:not(.uk-preserve-color) .uk-logo:hover,
12657
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-logo:hover,
12658
+ .uk-card-primary.uk-card-body .uk-logo:hover,
12659
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-logo:hover,
12660
+ .uk-card-secondary.uk-card-body .uk-logo:hover,
12661
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo:hover,
12662
+ .uk-overlay-primary .uk-logo:hover,
12663
+ .uk-offcanvas-bar .uk-logo:hover {
12664
+ color: #fff;
12665
+ }
12666
+ .uk-light .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse:not([uk-svg]))):not(.uk-logo-inverse):not([uk-svg]),
12667
+ .uk-section-primary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse:not([uk-svg]))):not(.uk-logo-inverse):not([uk-svg]),
12668
+ .uk-section-secondary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse:not([uk-svg]))):not(.uk-logo-inverse):not([uk-svg]),
12669
+ .uk-tile-primary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse:not([uk-svg]))):not(.uk-logo-inverse):not([uk-svg]),
12670
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse:not([uk-svg]))):not(.uk-logo-inverse):not([uk-svg]),
12671
+ .uk-card-primary.uk-card-body .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse:not([uk-svg]))):not(.uk-logo-inverse):not([uk-svg]),
12672
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse:not([uk-svg]))):not(.uk-logo-inverse):not([uk-svg]),
12673
+ .uk-card-secondary.uk-card-body .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse:not([uk-svg]))):not(.uk-logo-inverse):not([uk-svg]),
12674
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse:not([uk-svg]))):not(.uk-logo-inverse):not([uk-svg]),
12675
+ .uk-overlay-primary .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse:not([uk-svg]))):not(.uk-logo-inverse):not([uk-svg]),
12676
+ .uk-offcanvas-bar .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse:not([uk-svg]))):not(.uk-logo-inverse):not([uk-svg]) {
12677
+ display: none;
12678
+ }
12679
+ .uk-light .uk-logo-inverse:not([uk-svg]),
12680
+ .uk-section-primary:not(.uk-preserve-color) .uk-logo-inverse:not([uk-svg]),
12681
+ .uk-section-secondary:not(.uk-preserve-color) .uk-logo-inverse:not([uk-svg]),
12682
+ .uk-tile-primary:not(.uk-preserve-color) .uk-logo-inverse:not([uk-svg]),
12683
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-logo-inverse:not([uk-svg]),
12684
+ .uk-card-primary.uk-card-body .uk-logo-inverse:not([uk-svg]),
12685
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-logo-inverse:not([uk-svg]),
12686
+ .uk-card-secondary.uk-card-body .uk-logo-inverse:not([uk-svg]),
12687
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo-inverse:not([uk-svg]),
12688
+ .uk-overlay-primary .uk-logo-inverse:not([uk-svg]),
12689
+ .uk-offcanvas-bar .uk-logo-inverse:not([uk-svg]) {
12690
+ display: block;
12691
+ }
12550
12692
  .uk-light .uk-text-lead,
12551
12693
  .uk-section-primary:not(.uk-preserve-color) .uk-text-lead,
12552
12694
  .uk-section-secondary:not(.uk-preserve-color) .uk-text-lead,
@@ -12638,58 +12780,6 @@ a.uk-offcanvas-bar:hover .uk-icon-overlay {
12638
12780
  .uk-offcanvas-bar .uk-column-divider {
12639
12781
  column-rule-color: rgba(255, 255, 255, 0.2);
12640
12782
  }
12641
- .uk-light .uk-logo,
12642
- .uk-section-primary:not(.uk-preserve-color) .uk-logo,
12643
- .uk-section-secondary:not(.uk-preserve-color) .uk-logo,
12644
- .uk-tile-primary:not(.uk-preserve-color) .uk-logo,
12645
- .uk-tile-secondary:not(.uk-preserve-color) .uk-logo,
12646
- .uk-card-primary.uk-card-body .uk-logo,
12647
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-logo,
12648
- .uk-card-secondary.uk-card-body .uk-logo,
12649
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo,
12650
- .uk-overlay-primary .uk-logo,
12651
- .uk-offcanvas-bar .uk-logo {
12652
- color: #fff;
12653
- }
12654
- .uk-light .uk-logo:hover,
12655
- .uk-section-primary:not(.uk-preserve-color) .uk-logo:hover,
12656
- .uk-section-secondary:not(.uk-preserve-color) .uk-logo:hover,
12657
- .uk-tile-primary:not(.uk-preserve-color) .uk-logo:hover,
12658
- .uk-tile-secondary:not(.uk-preserve-color) .uk-logo:hover,
12659
- .uk-card-primary.uk-card-body .uk-logo:hover,
12660
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-logo:hover,
12661
- .uk-card-secondary.uk-card-body .uk-logo:hover,
12662
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo:hover,
12663
- .uk-overlay-primary .uk-logo:hover,
12664
- .uk-offcanvas-bar .uk-logo:hover {
12665
- color: #fff;
12666
- }
12667
- .uk-light .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
12668
- .uk-section-primary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
12669
- .uk-section-secondary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
12670
- .uk-tile-primary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
12671
- .uk-tile-secondary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
12672
- .uk-card-primary.uk-card-body .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
12673
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
12674
- .uk-card-secondary.uk-card-body .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
12675
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
12676
- .uk-overlay-primary .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
12677
- .uk-offcanvas-bar .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse) {
12678
- display: none;
12679
- }
12680
- .uk-light .uk-logo-inverse,
12681
- .uk-section-primary:not(.uk-preserve-color) .uk-logo-inverse,
12682
- .uk-section-secondary:not(.uk-preserve-color) .uk-logo-inverse,
12683
- .uk-tile-primary:not(.uk-preserve-color) .uk-logo-inverse,
12684
- .uk-tile-secondary:not(.uk-preserve-color) .uk-logo-inverse,
12685
- .uk-card-primary.uk-card-body .uk-logo-inverse,
12686
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-logo-inverse,
12687
- .uk-card-secondary.uk-card-body .uk-logo-inverse,
12688
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo-inverse,
12689
- .uk-overlay-primary .uk-logo-inverse,
12690
- .uk-offcanvas-bar .uk-logo-inverse {
12691
- display: block;
12692
- }
12693
12783
  /*
12694
12784
  * Pass dropbar behind color to JS
12695
12785
  */