uikit 3.25.18-dev.9fa57fb → 3.25.18-dev.f49c4ef

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 (202) hide show
  1. package/CHANGELOG.md +32 -2
  2. package/build/prefix.js +1 -1
  3. package/build/publishDev.js +1 -1
  4. package/build/scope.js +1 -1
  5. package/build/scss.js +1 -1
  6. package/dist/css/uikit-core-rtl.css +942 -820
  7. package/dist/css/uikit-core-rtl.min.css +1 -1
  8. package/dist/css/uikit-core.css +942 -820
  9. package/dist/css/uikit-core.min.css +1 -1
  10. package/dist/css/uikit-rtl.css +1039 -917
  11. package/dist/css/uikit-rtl.min.css +1 -1
  12. package/dist/css/uikit.css +1039 -917
  13. package/dist/css/uikit.min.css +1 -1
  14. package/dist/js/components/countdown.js +1 -1
  15. package/dist/js/components/countdown.min.js +1 -1
  16. package/dist/js/components/filter.js +1 -1
  17. package/dist/js/components/filter.min.js +1 -1
  18. package/dist/js/components/lightbox-panel.js +133 -132
  19. package/dist/js/components/lightbox-panel.min.js +1 -1
  20. package/dist/js/components/lightbox.js +134 -133
  21. package/dist/js/components/lightbox.min.js +1 -1
  22. package/dist/js/components/marquee.js +179 -0
  23. package/dist/js/components/marquee.min.js +1 -0
  24. package/dist/js/components/notification.js +1 -1
  25. package/dist/js/components/notification.min.js +1 -1
  26. package/dist/js/components/parallax.js +8 -12
  27. package/dist/js/components/parallax.min.js +1 -1
  28. package/dist/js/components/slider-parallax.js +8 -12
  29. package/dist/js/components/slider-parallax.min.js +1 -1
  30. package/dist/js/components/slider.js +43 -27
  31. package/dist/js/components/slider.min.js +1 -1
  32. package/dist/js/components/slideshow-parallax.js +8 -12
  33. package/dist/js/components/slideshow-parallax.min.js +1 -1
  34. package/dist/js/components/slideshow.js +71 -102
  35. package/dist/js/components/slideshow.min.js +1 -1
  36. package/dist/js/components/sortable.js +1 -1
  37. package/dist/js/components/sortable.min.js +1 -1
  38. package/dist/js/components/tooltip.js +19 -19
  39. package/dist/js/components/tooltip.min.js +1 -1
  40. package/dist/js/components/upload.js +1 -1
  41. package/dist/js/components/upload.min.js +1 -1
  42. package/dist/js/uikit-core.js +752 -262
  43. package/dist/js/uikit-core.min.js +1 -1
  44. package/dist/js/uikit-icons.js +1 -1
  45. package/dist/js/uikit-icons.min.js +1 -1
  46. package/dist/js/uikit.js +629 -376
  47. package/dist/js/uikit.min.js +1 -1
  48. package/package.json +1 -1
  49. package/src/js/api/component.js +2 -3
  50. package/src/js/api/observables.js +2 -4
  51. package/src/js/api/options.js +6 -3
  52. package/src/js/api/props.js +1 -4
  53. package/src/js/api/state.js +7 -8
  54. package/src/js/components/index.js +1 -0
  55. package/src/js/components/internal/lightbox-animations.js +7 -26
  56. package/src/js/components/internal/slideshow-animations.js +15 -62
  57. package/src/js/components/lightbox-panel.js +121 -96
  58. package/src/js/components/lightbox.js +5 -8
  59. package/src/js/components/marquee.js +123 -0
  60. package/src/js/components/slider.js +2 -2
  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 +55 -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 +66 -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 +152 -124
  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/text.less +6 -0
  102. package/src/less/components/utility.less +0 -163
  103. package/src/less/theme/_import.less +5 -1
  104. package/src/less/theme/dropcap.less +29 -0
  105. package/src/less/theme/floating-shadow.less +20 -0
  106. package/src/less/theme/logo.less +29 -0
  107. package/src/less/theme/marquee.less +14 -0
  108. package/src/less/theme/utility.less +0 -32
  109. package/src/scss/components/_import.scss +6 -1
  110. package/src/scss/components/base.scss +1 -1
  111. package/src/scss/components/button.scss +1 -1
  112. package/src/scss/components/dropcap.scss +63 -0
  113. package/src/scss/components/floating-shadow.scss +63 -0
  114. package/src/scss/components/form.scss +5 -5
  115. package/src/scss/components/grid.scss +57 -64
  116. package/src/scss/components/logo.scss +75 -0
  117. package/src/scss/components/margin.scss +152 -124
  118. package/src/scss/components/marquee.scss +136 -0
  119. package/src/scss/components/nav.scss +1 -1
  120. package/src/scss/components/padding.scss +9 -9
  121. package/src/scss/components/text.scss +6 -0
  122. package/src/scss/components/utility.scss +0 -129
  123. package/src/scss/mixins-theme.scss +41 -32
  124. package/src/scss/mixins.scss +38 -29
  125. package/src/scss/variables-theme.scss +14 -14
  126. package/src/scss/variables.scss +14 -14
  127. package/tests/accordion.html +77 -10
  128. package/tests/alert.html +1 -1
  129. package/tests/align.html +5 -5
  130. package/tests/animation.html +4 -4
  131. package/tests/article.html +7 -7
  132. package/tests/background.html +2 -2
  133. package/tests/badge.html +1 -1
  134. package/tests/base.html +2 -2
  135. package/tests/button.html +1 -1
  136. package/tests/card.html +15 -15
  137. package/tests/close.html +2 -2
  138. package/tests/comment.html +9 -9
  139. package/tests/container.html +2 -2
  140. package/tests/countdown.html +21 -21
  141. package/tests/cover.html +3 -3
  142. package/tests/description-list.html +1 -1
  143. package/tests/divider.html +3 -3
  144. package/tests/dotnav.html +1 -1
  145. package/tests/drop.html +7 -7
  146. package/tests/dropbar.html +5 -5
  147. package/tests/dropcap.html +26 -0
  148. package/tests/dropdown.html +1 -1
  149. package/tests/dropnav.html +18 -18
  150. package/tests/filter.html +3 -3
  151. package/tests/floating-shadow.html +44 -0
  152. package/tests/form.html +14 -14
  153. package/tests/grid.html +41 -47
  154. package/tests/heading.html +2 -2
  155. package/tests/height-viewport.html +4 -4
  156. package/tests/height.html +5 -5
  157. package/tests/icon.html +8 -8
  158. package/tests/image.html +6 -6
  159. package/tests/index.html +13 -13
  160. package/tests/js/index.js +1 -1
  161. package/tests/leader.html +5 -5
  162. package/tests/lightbox.html +6 -6
  163. package/tests/link.html +1 -1
  164. package/tests/list.html +4 -4
  165. package/tests/logo.html +84 -0
  166. package/tests/margin.html +7 -7
  167. package/tests/marker.html +3 -3
  168. package/tests/marquee.html +617 -0
  169. package/tests/modal.html +3 -3
  170. package/tests/nav.html +5 -5
  171. package/tests/navbar.html +27 -27
  172. package/tests/notification.html +2 -2
  173. package/tests/offcanvas.html +12 -12
  174. package/tests/overlay.html +3 -3
  175. package/tests/padding.html +1 -1
  176. package/tests/pagination.html +3 -3
  177. package/tests/parallax.html +1 -1
  178. package/tests/position.html +6 -6
  179. package/tests/scrollspy.html +12 -12
  180. package/tests/search.html +5 -5
  181. package/tests/section.html +17 -17
  182. package/tests/slidenav.html +3 -3
  183. package/tests/slider.html +5 -5
  184. package/tests/slideshow.html +33 -3
  185. package/tests/sortable.html +19 -19
  186. package/tests/sticky-navbar.html +4 -4
  187. package/tests/sticky-parallax.html +3 -3
  188. package/tests/sticky.html +3 -3
  189. package/tests/svg.html +3 -2
  190. package/tests/switcher.html +6 -6
  191. package/tests/tab.html +4 -4
  192. package/tests/text.html +3 -3
  193. package/tests/tile.html +4 -4
  194. package/tests/toggle.html +1 -1
  195. package/tests/tooltip.html +3 -3
  196. package/tests/totop.html +2 -2
  197. package/tests/transition.html +1 -1
  198. package/tests/upload.html +5 -5
  199. package/tests/utility.html +16 -116
  200. package/tests/video.html +224 -24
  201. package/tests/visibility.html +4 -4
  202. package/tests/width.html +12 -12
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.25.18-dev.9fa57fb | https://www.getuikit.com | (c) 2014 - 2026 YOOtheme | MIT License */
1
+ /*! UIkit 3.25.18-dev.f49c4ef | 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: left;
1797
1797
  }
1798
- .uk-form-horizontal .uk-form-controls {
1798
+ .uk-form-horizontal :where(.uk-form-controls) {
1799
1799
  margin-left: 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-right: 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
+ left: 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
+ right: 0;
1968
+ left: 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-left: 10px;
1981
+ padding-right: 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-left: 10px;
1993
+ padding-right: 10px;
1994
+ }
1995
+ .uk-search-default:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
1996
+ padding-left: 40px;
1997
+ }
1998
+ .uk-search-default:has(.uk-search-icon-flip) .uk-search-input {
1999
+ padding-right: 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-left: 10px;
2012
+ padding-right: 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-left: 10px;
2024
+ padding-right: 10px;
2025
+ }
2026
+ .uk-search-navbar:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
2027
+ padding-left: 40px;
2028
+ }
2029
+ .uk-search-navbar:has(.uk-search-icon-flip) .uk-search-input {
2030
+ padding-right: 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-left: 12px;
2043
+ padding-right: 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-left: 12px;
2056
+ padding-right: 12px;
2057
+ }
2058
+ .uk-search-medium:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
2059
+ padding-left: 48px;
2060
+ }
2061
+ .uk-search-medium:has(.uk-search-icon-flip) .uk-search-input {
2062
+ padding-right: 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-left: 20px;
2075
+ padding-right: 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-left: 20px;
2088
+ padding-right: 20px;
2089
+ }
2090
+ .uk-search-large:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
2091
+ padding-left: 80px;
2092
+ }
2093
+ .uk-search-large:has(.uk-search-icon-flip) .uk-search-input {
2094
+ padding-right: 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-right: 10px;
3221
+ float: left;
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
+ left: 0;
3253
+ right: 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
  }
@@ -3090,254 +3393,6 @@ select.uk-form-width-xsmall {
3090
3393
  }
3091
3394
  /* Style modifier
3092
3395
  ========================================================================== */
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
- left: 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
- right: 0;
3204
- left: 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-left: 10px;
3217
- padding-right: 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-left: 10px;
3229
- padding-right: 10px;
3230
- }
3231
- .uk-search-default:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
3232
- padding-left: 40px;
3233
- }
3234
- .uk-search-default:has(.uk-search-icon-flip) .uk-search-input {
3235
- padding-right: 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-left: 10px;
3248
- padding-right: 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-left: 10px;
3260
- padding-right: 10px;
3261
- }
3262
- .uk-search-navbar:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
3263
- padding-left: 40px;
3264
- }
3265
- .uk-search-navbar:has(.uk-search-icon-flip) .uk-search-input {
3266
- padding-right: 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-left: 12px;
3279
- padding-right: 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-left: 12px;
3292
- padding-right: 12px;
3293
- }
3294
- .uk-search-medium:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
3295
- padding-left: 48px;
3296
- }
3297
- .uk-search-medium:has(.uk-search-icon-flip) .uk-search-input {
3298
- padding-right: 48px;
3299
- }
3300
- /* Large modifier
3301
- ========================================================================== */
3302
- .uk-search-large {
3303
- width: 500px;
3304
- }
3305
- /*
3306
- * Input
3307
- */
3308
- .uk-search-large .uk-search-input {
3309
- height: 90px;
3310
- padding-left: 20px;
3311
- padding-right: 20px;
3312
- background: #f8f8f8;
3313
- font-size: 2.625rem;
3314
- }
3315
- /* Focus */
3316
- .uk-search-large .uk-search-input:focus {
3317
- background-color: #f3f3f3;
3318
- }
3319
- /*
3320
- * Icon
3321
- */
3322
- .uk-search-large .uk-search-icon {
3323
- padding-left: 20px;
3324
- padding-right: 20px;
3325
- }
3326
- .uk-search-large:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
3327
- padding-left: 80px;
3328
- }
3329
- .uk-search-large:has(.uk-search-icon-flip) .uk-search-input {
3330
- padding-right: 80px;
3331
- }
3332
- /* Toggle
3333
- ========================================================================== */
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-left: -30px;
4556
4700
  }
4557
4701
  .uk-grid > * {
4558
4702
  padding-left: 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-left: -40px;
4571
4716
  }
4572
4717
  .uk-grid > * {
4573
4718
  padding-left: 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-left: -15px;
@@ -4591,18 +4737,18 @@ select.uk-form-width-xsmall {
4591
4737
  .uk-grid-column-small > * {
4592
4738
  padding-left: 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-left: -30px;
@@ -4611,18 +4757,18 @@ select.uk-form-width-xsmall {
4611
4757
  .uk-grid-column-medium > * {
4612
4758
  padding-left: 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-left: -40px;
@@ -4631,17 +4777,17 @@ select.uk-form-width-xsmall {
4631
4777
  .uk-grid-column-large > * {
4632
4778
  padding-left: 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-left: -70px;
@@ -4650,11 +4796,12 @@ select.uk-form-width-xsmall {
4650
4796
  .uk-grid-column-large > * {
4651
4797
  padding-left: 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-left: 0;
@@ -4671,11 +4817,12 @@ select.uk-form-width-xsmall {
4671
4817
  .uk-grid-column-collapse > * {
4672
4818
  padding-left: 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-left: 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
  left: 0;
@@ -4712,10 +4860,10 @@ select.uk-form-width-xsmall {
4712
4860
  left: 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
  left: 60px;
4721
4869
  }
@@ -4732,10 +4880,10 @@ select.uk-form-width-xsmall {
4732
4880
  left: 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
  left: 80px;
4741
4889
  }
@@ -4757,18 +4905,17 @@ select.uk-form-width-xsmall {
4757
4905
  left: 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
  left: 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
  left: 30px;
4773
4920
  }
4774
4921
  /*
@@ -4788,18 +4935,17 @@ select.uk-form-width-xsmall {
4788
4935
  left: 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
  left: 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
  left: 60px;
4804
4950
  }
4805
4951
  /*
@@ -4819,18 +4965,17 @@ select.uk-form-width-xsmall {
4819
4965
  left: 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
  left: 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
  left: 80px;
4835
4980
  }
4836
4981
  /* Desktop and bigger */
@@ -4849,18 +4994,17 @@ select.uk-form-width-xsmall {
4849
4994
  left: 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
  left: 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
  left: 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
  ========================================================================== */
@@ -7497,6 +7674,12 @@ th.uk-text-break,
7497
7674
  td.uk-text-break {
7498
7675
  word-break: break-word;
7499
7676
  }
7677
+ /*
7678
+ * Balance text when wrapping onto multiple lines
7679
+ */
7680
+ .uk-text-balance {
7681
+ text-wrap: balance;
7682
+ }
7500
7683
  /* Stroke modifiers
7501
7684
  ========================================================================== */
7502
7685
  .uk-text-stroke {
@@ -8274,93 +8457,6 @@ iframe[data-uk-cover] {
8274
8457
  .uk-box-shadow-hover-xlarge:hover {
8275
8458
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
8276
8459
  }
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
- left: 0;
8298
- right: 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-right: 10px;
8321
- float: left;
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
- }
8331
- }
8332
- /* Logo
8333
- ========================================================================== */
8334
- /*
8335
- * 1. Style
8336
- * 2. Required for `a`
8337
- * 3. Behave like image but can be overridden through flex utility classes
8338
- */
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;
8346
- }
8347
- /* 3 */
8348
- :where(.uk-logo) {
8349
- display: inline-block;
8350
- vertical-align: middle;
8351
- }
8352
- /* Hover */
8353
- .uk-logo:hover {
8354
- color: #333;
8355
- /* 1 */
8356
- text-decoration: none;
8357
- }
8358
- .uk-logo :where(img, svg, video) {
8359
- display: block;
8360
- }
8361
- .uk-logo-inverse {
8362
- display: none;
8363
- }
8364
8460
  /* Disabled State
8365
8461
  ========================================================================== */
8366
8462
  .uk-disabled {
@@ -8855,307 +8951,333 @@ iframe[data-uk-cover] {
8855
8951
  /* ========================================================================
8856
8952
  Component: Margin
8857
8953
  ========================================================================== */
8954
+ /* Two or more directions
8955
+ ========================================================================== */
8858
8956
  /*
8859
- * Default
8957
+ * Sizes
8860
8958
  */
8861
8959
  .uk-margin {
8862
8960
  margin-bottom: 20px;
8863
8961
  }
8864
8962
  * + .uk-margin {
8865
- margin-top: 20px !important;
8963
+ margin-top: 20px;
8964
+ }
8965
+ .uk-margin-xsmall {
8966
+ margin-bottom: 5px;
8967
+ }
8968
+ * + .uk-margin-xsmall {
8969
+ margin-top: 5px;
8970
+ }
8971
+ .uk-margin-small {
8972
+ margin-bottom: 10px;
8973
+ }
8974
+ * + .uk-margin-small {
8975
+ margin-top: 10px;
8976
+ }
8977
+ .uk-margin-medium {
8978
+ margin-bottom: 40px;
8979
+ }
8980
+ * + .uk-margin-medium {
8981
+ margin-top: 40px;
8982
+ }
8983
+ .uk-margin-large {
8984
+ margin-bottom: 40px;
8985
+ }
8986
+ * + .uk-margin-large {
8987
+ margin-top: 40px;
8988
+ }
8989
+ .uk-margin-xlarge {
8990
+ margin-bottom: 70px;
8991
+ }
8992
+ * + .uk-margin-xlarge {
8993
+ margin-top: 70px;
8994
+ }
8995
+ /* Desktop and bigger */
8996
+ @media (min-width: 1200px) {
8997
+ .uk-margin-large {
8998
+ margin-bottom: 70px;
8999
+ }
9000
+ * + .uk-margin-large {
9001
+ margin-top: 70px;
9002
+ }
9003
+ .uk-margin-xlarge {
9004
+ margin-bottom: 140px;
9005
+ }
9006
+ * + .uk-margin-xlarge {
9007
+ margin-top: 140px;
9008
+ }
9009
+ }
9010
+ /*
9011
+ * Auto
9012
+ */
9013
+ .uk-margin-auto-vertical {
9014
+ margin-top: auto;
9015
+ margin-bottom: auto;
9016
+ }
9017
+ .uk-margin-auto {
9018
+ margin-left: auto;
9019
+ margin-right: auto;
9020
+ }
9021
+ /* Phone landscape and bigger */
9022
+ @media (min-width: 640px) {
9023
+ .uk-margin-auto\@s {
9024
+ margin-left: auto;
9025
+ margin-right: auto;
9026
+ }
9027
+ }
9028
+ /* Tablet landscape and bigger */
9029
+ @media (min-width: 960px) {
9030
+ .uk-margin-auto\@m {
9031
+ margin-left: auto;
9032
+ margin-right: auto;
9033
+ }
9034
+ }
9035
+ /* Desktop and bigger */
9036
+ @media (min-width: 1200px) {
9037
+ .uk-margin-auto\@l {
9038
+ margin-left: auto;
9039
+ margin-right: auto;
9040
+ }
9041
+ }
9042
+ /* Large screen and bigger */
9043
+ @media (min-width: 1600px) {
9044
+ .uk-margin-auto\@xl {
9045
+ margin-left: auto;
9046
+ margin-right: auto;
9047
+ }
9048
+ }
9049
+ /*
9050
+ * Remove
9051
+ */
9052
+ .uk-margin-remove {
9053
+ margin: 0;
9054
+ }
9055
+ .uk-margin-remove-vertical {
9056
+ margin-top: 0;
9057
+ margin-bottom: 0;
8866
9058
  }
9059
+ /* One direction
9060
+ ========================================================================== */
9061
+ /*
9062
+ * Sizes
9063
+ */
8867
9064
  .uk-margin-top {
8868
- margin-top: 20px !important;
9065
+ margin-top: 20px;
8869
9066
  }
8870
9067
  .uk-margin-bottom {
8871
- margin-bottom: 20px !important;
9068
+ margin-bottom: 20px;
8872
9069
  }
8873
9070
  .uk-margin-left {
8874
- margin-left: 20px !important;
9071
+ margin-left: 20px;
8875
9072
  }
8876
9073
  .uk-margin-right {
8877
- margin-right: 20px !important;
8878
- }
8879
- /* XSmall
8880
- ========================================================================== */
8881
- .uk-margin-xsmall {
8882
- margin-bottom: 5px;
8883
- }
8884
- * + .uk-margin-xsmall {
8885
- margin-top: 5px !important;
9074
+ margin-right: 20px;
8886
9075
  }
8887
9076
  .uk-margin-xsmall-top {
8888
- margin-top: 5px !important;
9077
+ margin-top: 5px;
8889
9078
  }
8890
9079
  .uk-margin-xsmall-bottom {
8891
- margin-bottom: 5px !important;
9080
+ margin-bottom: 5px;
8892
9081
  }
8893
9082
  .uk-margin-xsmall-left {
8894
- margin-left: 5px !important;
9083
+ margin-left: 5px;
8895
9084
  }
8896
9085
  .uk-margin-xsmall-right {
8897
- margin-right: 5px !important;
8898
- }
8899
- /* Small
8900
- ========================================================================== */
8901
- .uk-margin-small {
8902
- margin-bottom: 10px;
8903
- }
8904
- * + .uk-margin-small {
8905
- margin-top: 10px !important;
9086
+ margin-right: 5px;
8906
9087
  }
8907
9088
  .uk-margin-small-top {
8908
- margin-top: 10px !important;
9089
+ margin-top: 10px;
8909
9090
  }
8910
9091
  .uk-margin-small-bottom {
8911
- margin-bottom: 10px !important;
9092
+ margin-bottom: 10px;
8912
9093
  }
8913
9094
  .uk-margin-small-left {
8914
- margin-left: 10px !important;
9095
+ margin-left: 10px;
8915
9096
  }
8916
9097
  .uk-margin-small-right {
8917
- margin-right: 10px !important;
8918
- }
8919
- /* Medium
8920
- ========================================================================== */
8921
- .uk-margin-medium {
8922
- margin-bottom: 40px;
8923
- }
8924
- * + .uk-margin-medium {
8925
- margin-top: 40px !important;
9098
+ margin-right: 10px;
8926
9099
  }
8927
9100
  .uk-margin-medium-top {
8928
- margin-top: 40px !important;
9101
+ margin-top: 40px;
8929
9102
  }
8930
9103
  .uk-margin-medium-bottom {
8931
- margin-bottom: 40px !important;
9104
+ margin-bottom: 40px;
8932
9105
  }
8933
9106
  .uk-margin-medium-left {
8934
- margin-left: 40px !important;
9107
+ margin-left: 40px;
8935
9108
  }
8936
- .uk-margin-medium-right {
8937
- margin-right: 40px !important;
8938
- }
8939
- /* Large
8940
- ========================================================================== */
8941
- .uk-margin-large {
8942
- margin-bottom: 40px;
8943
- }
8944
- * + .uk-margin-large {
8945
- margin-top: 40px !important;
9109
+ .uk-margin-medium-right {
9110
+ margin-right: 40px;
8946
9111
  }
8947
9112
  .uk-margin-large-top {
8948
- margin-top: 40px !important;
9113
+ margin-top: 40px;
8949
9114
  }
8950
9115
  .uk-margin-large-bottom {
8951
- margin-bottom: 40px !important;
9116
+ margin-bottom: 40px;
8952
9117
  }
8953
9118
  .uk-margin-large-left {
8954
- margin-left: 40px !important;
9119
+ margin-left: 40px;
8955
9120
  }
8956
9121
  .uk-margin-large-right {
8957
- margin-right: 40px !important;
8958
- }
8959
- /* Desktop and bigger */
8960
- @media (min-width: 1200px) {
8961
- .uk-margin-large {
8962
- margin-bottom: 70px;
8963
- }
8964
- * + .uk-margin-large {
8965
- margin-top: 70px !important;
8966
- }
8967
- .uk-margin-large-top {
8968
- margin-top: 70px !important;
8969
- }
8970
- .uk-margin-large-bottom {
8971
- margin-bottom: 70px !important;
8972
- }
8973
- .uk-margin-large-left {
8974
- margin-left: 70px !important;
8975
- }
8976
- .uk-margin-large-right {
8977
- margin-right: 70px !important;
8978
- }
8979
- }
8980
- /* XLarge
8981
- ========================================================================== */
8982
- .uk-margin-xlarge {
8983
- margin-bottom: 70px;
8984
- }
8985
- * + .uk-margin-xlarge {
8986
- margin-top: 70px !important;
9122
+ margin-right: 40px;
8987
9123
  }
8988
9124
  .uk-margin-xlarge-top {
8989
- margin-top: 70px !important;
9125
+ margin-top: 70px;
8990
9126
  }
8991
9127
  .uk-margin-xlarge-bottom {
8992
- margin-bottom: 70px !important;
9128
+ margin-bottom: 70px;
8993
9129
  }
8994
9130
  .uk-margin-xlarge-left {
8995
- margin-left: 70px !important;
9131
+ margin-left: 70px;
8996
9132
  }
8997
9133
  .uk-margin-xlarge-right {
8998
- margin-right: 70px !important;
9134
+ margin-right: 70px;
8999
9135
  }
9000
9136
  /* Desktop and bigger */
9001
9137
  @media (min-width: 1200px) {
9002
- .uk-margin-xlarge {
9003
- margin-bottom: 140px;
9138
+ .uk-margin-large-top {
9139
+ margin-top: 70px;
9004
9140
  }
9005
- * + .uk-margin-xlarge {
9006
- margin-top: 140px !important;
9141
+ .uk-margin-large-bottom {
9142
+ margin-bottom: 70px;
9143
+ }
9144
+ .uk-margin-large-left {
9145
+ margin-left: 70px;
9146
+ }
9147
+ .uk-margin-large-right {
9148
+ margin-right: 70px;
9007
9149
  }
9008
9150
  .uk-margin-xlarge-top {
9009
- margin-top: 140px !important;
9151
+ margin-top: 140px;
9010
9152
  }
9011
9153
  .uk-margin-xlarge-bottom {
9012
- margin-bottom: 140px !important;
9154
+ margin-bottom: 140px;
9013
9155
  }
9014
9156
  .uk-margin-xlarge-left {
9015
- margin-left: 140px !important;
9157
+ margin-left: 140px;
9016
9158
  }
9017
9159
  .uk-margin-xlarge-right {
9018
- margin-right: 140px !important;
9160
+ margin-right: 140px;
9019
9161
  }
9020
9162
  }
9021
- /* Auto
9022
- ========================================================================== */
9023
- .uk-margin-auto {
9024
- margin-left: auto !important;
9025
- margin-right: auto !important;
9026
- }
9163
+ /*
9164
+ * Auto
9165
+ */
9027
9166
  .uk-margin-auto-top {
9028
- margin-top: auto !important;
9167
+ margin-top: auto;
9029
9168
  }
9030
9169
  .uk-margin-auto-bottom {
9031
- margin-bottom: auto !important;
9170
+ margin-bottom: auto;
9032
9171
  }
9033
9172
  .uk-margin-auto-left {
9034
- margin-left: auto !important;
9173
+ margin-left: auto;
9035
9174
  }
9036
9175
  .uk-margin-auto-right {
9037
- margin-right: auto !important;
9038
- }
9039
- .uk-margin-auto-vertical {
9040
- margin-top: auto !important;
9041
- margin-bottom: auto !important;
9176
+ margin-right: auto;
9042
9177
  }
9043
9178
  /* Phone landscape and bigger */
9044
9179
  @media (min-width: 640px) {
9045
- .uk-margin-auto\@s {
9046
- margin-left: auto !important;
9047
- margin-right: auto !important;
9048
- }
9049
9180
  .uk-margin-auto-left\@s {
9050
- margin-left: auto !important;
9181
+ margin-left: auto;
9051
9182
  }
9052
9183
  .uk-margin-auto-right\@s {
9053
- margin-right: auto !important;
9184
+ margin-right: auto;
9054
9185
  }
9055
9186
  }
9056
9187
  /* Tablet landscape and bigger */
9057
9188
  @media (min-width: 960px) {
9058
- .uk-margin-auto\@m {
9059
- margin-left: auto !important;
9060
- margin-right: auto !important;
9061
- }
9062
9189
  .uk-margin-auto-left\@m {
9063
- margin-left: auto !important;
9190
+ margin-left: auto;
9064
9191
  }
9065
9192
  .uk-margin-auto-right\@m {
9066
- margin-right: auto !important;
9193
+ margin-right: auto;
9067
9194
  }
9068
9195
  }
9069
9196
  /* Desktop and bigger */
9070
9197
  @media (min-width: 1200px) {
9071
- .uk-margin-auto\@l {
9072
- margin-left: auto !important;
9073
- margin-right: auto !important;
9074
- }
9075
9198
  .uk-margin-auto-left\@l {
9076
- margin-left: auto !important;
9199
+ margin-left: auto;
9077
9200
  }
9078
9201
  .uk-margin-auto-right\@l {
9079
- margin-right: auto !important;
9202
+ margin-right: auto;
9080
9203
  }
9081
9204
  }
9082
9205
  /* Large screen and bigger */
9083
9206
  @media (min-width: 1600px) {
9084
- .uk-margin-auto\@xl {
9085
- margin-left: auto !important;
9086
- margin-right: auto !important;
9087
- }
9088
9207
  .uk-margin-auto-left\@xl {
9089
- margin-left: auto !important;
9208
+ margin-left: auto;
9090
9209
  }
9091
9210
  .uk-margin-auto-right\@xl {
9092
- margin-right: auto !important;
9211
+ margin-right: auto;
9093
9212
  }
9094
9213
  }
9095
- /* Remove
9096
- ========================================================================== */
9097
- .uk-margin-remove {
9098
- margin: 0 !important;
9099
- }
9214
+ /*
9215
+ * Remove
9216
+ */
9100
9217
  .uk-margin-remove-top {
9101
- margin-top: 0 !important;
9218
+ margin-top: 0;
9102
9219
  }
9103
9220
  .uk-margin-remove-bottom {
9104
- margin-bottom: 0 !important;
9221
+ margin-bottom: 0;
9105
9222
  }
9106
9223
  .uk-margin-remove-left {
9107
- margin-left: 0 !important;
9224
+ margin-left: 0;
9108
9225
  }
9109
9226
  .uk-margin-remove-right {
9110
- margin-right: 0 !important;
9111
- }
9112
- .uk-margin-remove-vertical {
9113
- margin-top: 0 !important;
9114
- margin-bottom: 0 !important;
9227
+ margin-right: 0;
9115
9228
  }
9116
9229
  .uk-margin-remove-adjacent + *,
9117
9230
  .uk-margin-remove-first-child > :first-child {
9118
- margin-top: 0 !important;
9231
+ margin-top: 0;
9119
9232
  }
9120
9233
  .uk-margin-remove-last-child > :last-child {
9121
- margin-bottom: 0 !important;
9234
+ margin-bottom: 0;
9122
9235
  }
9123
9236
  /* Phone landscape and bigger */
9124
9237
  @media (min-width: 640px) {
9125
9238
  .uk-margin-remove-left\@s {
9126
- margin-left: 0 !important;
9239
+ margin-left: 0;
9127
9240
  }
9128
9241
  .uk-margin-remove-right\@s {
9129
- margin-right: 0 !important;
9242
+ margin-right: 0;
9130
9243
  }
9131
9244
  }
9132
9245
  /* Tablet landscape and bigger */
9133
9246
  @media (min-width: 960px) {
9134
9247
  .uk-margin-remove-left\@m {
9135
- margin-left: 0 !important;
9248
+ margin-left: 0;
9136
9249
  }
9137
9250
  .uk-margin-remove-right\@m {
9138
- margin-right: 0 !important;
9251
+ margin-right: 0;
9139
9252
  }
9140
9253
  }
9141
9254
  /* Desktop and bigger */
9142
9255
  @media (min-width: 1200px) {
9143
9256
  .uk-margin-remove-left\@l {
9144
- margin-left: 0 !important;
9257
+ margin-left: 0;
9145
9258
  }
9146
9259
  .uk-margin-remove-right\@l {
9147
- margin-right: 0 !important;
9260
+ margin-right: 0;
9148
9261
  }
9149
9262
  }
9150
9263
  /* Large screen and bigger */
9151
9264
  @media (min-width: 1600px) {
9152
9265
  .uk-margin-remove-left\@xl {
9153
- margin-left: 0 !important;
9266
+ margin-left: 0;
9154
9267
  }
9155
9268
  .uk-margin-remove-right\@xl {
9156
- margin-right: 0 !important;
9269
+ margin-right: 0;
9157
9270
  }
9158
9271
  }
9272
+ /*
9273
+ * Trim
9274
+ */
9275
+ .uk-margin-trim-block > :first-child {
9276
+ margin-top: 0;
9277
+ }
9278
+ .uk-margin-trim-block > :last-child {
9279
+ margin-bottom: 0;
9280
+ }
9159
9281
  /* ========================================================================
9160
9282
  Component: Padding
9161
9283
  ========================================================================== */
@@ -9187,27 +9309,27 @@ iframe[data-uk-cover] {
9187
9309
  /* Remove
9188
9310
  ========================================================================== */
9189
9311
  .uk-padding-remove {
9190
- padding: 0 !important;
9312
+ padding: 0;
9191
9313
  }
9192
9314
  .uk-padding-remove-top {
9193
- padding-top: 0 !important;
9315
+ padding-top: 0;
9194
9316
  }
9195
9317
  .uk-padding-remove-bottom {
9196
- padding-bottom: 0 !important;
9318
+ padding-bottom: 0;
9197
9319
  }
9198
9320
  .uk-padding-remove-left {
9199
- padding-left: 0 !important;
9321
+ padding-left: 0;
9200
9322
  }
9201
9323
  .uk-padding-remove-right {
9202
- padding-right: 0 !important;
9324
+ padding-right: 0;
9203
9325
  }
9204
9326
  .uk-padding-remove-vertical {
9205
- padding-top: 0 !important;
9206
- padding-bottom: 0 !important;
9327
+ padding-top: 0;
9328
+ padding-bottom: 0;
9207
9329
  }
9208
9330
  .uk-padding-remove-horizontal {
9209
- padding-left: 0 !important;
9210
- padding-right: 0 !important;
9331
+ padding-left: 0;
9332
+ padding-right: 0;
9211
9333
  }
9212
9334
  /* ========================================================================
9213
9335
  Component: Position
@@ -11058,6 +11180,188 @@ a.uk-offcanvas-bar:hover .uk-icon-overlay {
11058
11180
  .uk-offcanvas-bar .uk-form-icon:hover {
11059
11181
  color: rgba(255, 255, 255, 0.7);
11060
11182
  }
11183
+ .uk-light .uk-search-input,
11184
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-input,
11185
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-input,
11186
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-input,
11187
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-input,
11188
+ .uk-card-primary.uk-card-body .uk-search-input,
11189
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-input,
11190
+ .uk-card-secondary.uk-card-body .uk-search-input,
11191
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-input,
11192
+ .uk-overlay-primary .uk-search-input,
11193
+ .uk-offcanvas-bar .uk-search-input {
11194
+ color: rgba(255, 255, 255, 0.7);
11195
+ }
11196
+ .uk-light .uk-search-input::placeholder,
11197
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-input::placeholder,
11198
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-input::placeholder,
11199
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-input::placeholder,
11200
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-input::placeholder,
11201
+ .uk-card-primary.uk-card-body .uk-search-input::placeholder,
11202
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-input::placeholder,
11203
+ .uk-card-secondary.uk-card-body .uk-search-input::placeholder,
11204
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-input::placeholder,
11205
+ .uk-overlay-primary .uk-search-input::placeholder,
11206
+ .uk-offcanvas-bar .uk-search-input::placeholder {
11207
+ color: rgba(255, 255, 255, 0.5);
11208
+ }
11209
+ .uk-light .uk-search .uk-search-icon,
11210
+ .uk-section-primary:not(.uk-preserve-color) .uk-search .uk-search-icon,
11211
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon,
11212
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search .uk-search-icon,
11213
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon,
11214
+ .uk-card-primary.uk-card-body .uk-search .uk-search-icon,
11215
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon,
11216
+ .uk-card-secondary.uk-card-body .uk-search .uk-search-icon,
11217
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon,
11218
+ .uk-overlay-primary .uk-search .uk-search-icon,
11219
+ .uk-offcanvas-bar .uk-search .uk-search-icon {
11220
+ color: rgba(255, 255, 255, 0.5);
11221
+ }
11222
+ .uk-light .uk-search .uk-search-icon:hover,
11223
+ .uk-section-primary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
11224
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
11225
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
11226
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
11227
+ .uk-card-primary.uk-card-body .uk-search .uk-search-icon:hover,
11228
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon:hover,
11229
+ .uk-card-secondary.uk-card-body .uk-search .uk-search-icon:hover,
11230
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon:hover,
11231
+ .uk-overlay-primary .uk-search .uk-search-icon:hover,
11232
+ .uk-offcanvas-bar .uk-search .uk-search-icon:hover {
11233
+ color: rgba(255, 255, 255, 0.5);
11234
+ }
11235
+ .uk-light .uk-search-default .uk-search-input,
11236
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
11237
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
11238
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
11239
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
11240
+ .uk-card-primary.uk-card-body .uk-search-default .uk-search-input,
11241
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input,
11242
+ .uk-card-secondary.uk-card-body .uk-search-default .uk-search-input,
11243
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input,
11244
+ .uk-overlay-primary .uk-search-default .uk-search-input,
11245
+ .uk-offcanvas-bar .uk-search-default .uk-search-input {
11246
+ background-color: rgba(255, 255, 255, 0.1);
11247
+ }
11248
+ .uk-light .uk-search-default .uk-search-input:focus,
11249
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
11250
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
11251
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
11252
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
11253
+ .uk-card-primary.uk-card-body .uk-search-default .uk-search-input:focus,
11254
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input:focus,
11255
+ .uk-card-secondary.uk-card-body .uk-search-default .uk-search-input:focus,
11256
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input:focus,
11257
+ .uk-overlay-primary .uk-search-default .uk-search-input:focus,
11258
+ .uk-offcanvas-bar .uk-search-default .uk-search-input:focus {
11259
+ background-color: rgba(255, 255, 255, 0.15);
11260
+ }
11261
+ .uk-light .uk-search-navbar .uk-search-input,
11262
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
11263
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
11264
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
11265
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
11266
+ .uk-card-primary.uk-card-body .uk-search-navbar .uk-search-input,
11267
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input,
11268
+ .uk-card-secondary.uk-card-body .uk-search-navbar .uk-search-input,
11269
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input,
11270
+ .uk-overlay-primary .uk-search-navbar .uk-search-input,
11271
+ .uk-offcanvas-bar .uk-search-navbar .uk-search-input {
11272
+ background-color: rgba(255, 255, 255, 0.1);
11273
+ }
11274
+ .uk-light .uk-search-navbar .uk-search-input:focus,
11275
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,
11276
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,
11277
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,
11278
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,
11279
+ .uk-card-primary.uk-card-body .uk-search-navbar .uk-search-input:focus,
11280
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input:focus,
11281
+ .uk-card-secondary.uk-card-body .uk-search-navbar .uk-search-input:focus,
11282
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input:focus,
11283
+ .uk-overlay-primary .uk-search-navbar .uk-search-input:focus,
11284
+ .uk-offcanvas-bar .uk-search-navbar .uk-search-input:focus {
11285
+ background-color: rgba(255, 255, 255, 0.15);
11286
+ }
11287
+ .uk-light .uk-search-medium .uk-search-input,
11288
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,
11289
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,
11290
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,
11291
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,
11292
+ .uk-card-primary.uk-card-body .uk-search-medium .uk-search-input,
11293
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input,
11294
+ .uk-card-secondary.uk-card-body .uk-search-medium .uk-search-input,
11295
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input,
11296
+ .uk-overlay-primary .uk-search-medium .uk-search-input,
11297
+ .uk-offcanvas-bar .uk-search-medium .uk-search-input {
11298
+ background-color: rgba(255, 255, 255, 0.1);
11299
+ }
11300
+ .uk-light .uk-search-medium .uk-search-input:focus,
11301
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11302
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11303
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11304
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11305
+ .uk-card-primary.uk-card-body .uk-search-medium .uk-search-input:focus,
11306
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input:focus,
11307
+ .uk-card-secondary.uk-card-body .uk-search-medium .uk-search-input:focus,
11308
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input:focus,
11309
+ .uk-overlay-primary .uk-search-medium .uk-search-input:focus,
11310
+ .uk-offcanvas-bar .uk-search-medium .uk-search-input:focus {
11311
+ background-color: rgba(255, 255, 255, 0.15);
11312
+ }
11313
+ .uk-light .uk-search-large .uk-search-input,
11314
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
11315
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
11316
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
11317
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
11318
+ .uk-card-primary.uk-card-body .uk-search-large .uk-search-input,
11319
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input,
11320
+ .uk-card-secondary.uk-card-body .uk-search-large .uk-search-input,
11321
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input,
11322
+ .uk-overlay-primary .uk-search-large .uk-search-input,
11323
+ .uk-offcanvas-bar .uk-search-large .uk-search-input {
11324
+ background-color: rgba(255, 255, 255, 0.1);
11325
+ }
11326
+ .uk-light .uk-search-large .uk-search-input:focus,
11327
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11328
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11329
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11330
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11331
+ .uk-card-primary.uk-card-body .uk-search-large .uk-search-input:focus,
11332
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input:focus,
11333
+ .uk-card-secondary.uk-card-body .uk-search-large .uk-search-input:focus,
11334
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input:focus,
11335
+ .uk-overlay-primary .uk-search-large .uk-search-input:focus,
11336
+ .uk-offcanvas-bar .uk-search-large .uk-search-input:focus {
11337
+ background-color: rgba(255, 255, 255, 0.15);
11338
+ }
11339
+ .uk-light .uk-search-toggle,
11340
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-toggle,
11341
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-toggle,
11342
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-toggle,
11343
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-toggle,
11344
+ .uk-card-primary.uk-card-body .uk-search-toggle,
11345
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-toggle,
11346
+ .uk-card-secondary.uk-card-body .uk-search-toggle,
11347
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-toggle,
11348
+ .uk-overlay-primary .uk-search-toggle,
11349
+ .uk-offcanvas-bar .uk-search-toggle {
11350
+ color: rgba(255, 255, 255, 0.5);
11351
+ }
11352
+ .uk-light .uk-search-toggle:hover,
11353
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-toggle:hover,
11354
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-toggle:hover,
11355
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-toggle:hover,
11356
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-toggle:hover,
11357
+ .uk-card-primary.uk-card-body .uk-search-toggle:hover,
11358
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-toggle:hover,
11359
+ .uk-card-secondary.uk-card-body .uk-search-toggle:hover,
11360
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-toggle:hover,
11361
+ .uk-overlay-primary .uk-search-toggle:hover,
11362
+ .uk-offcanvas-bar .uk-search-toggle:hover {
11363
+ color: rgba(255, 255, 255, 0.7);
11364
+ }
11061
11365
  .uk-light .uk-button-default,
11062
11366
  .uk-section-primary:not(.uk-preserve-color) .uk-button-default,
11063
11367
  .uk-section-secondary:not(.uk-preserve-color) .uk-button-default,
@@ -11429,188 +11733,6 @@ a.uk-offcanvas-bar:hover .uk-icon-overlay {
11429
11733
  .uk-offcanvas-bar .uk-article-meta {
11430
11734
  color: rgba(255, 255, 255, 0.5);
11431
11735
  }
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
11736
  .uk-light .uk-accordion-default .uk-accordion-title,
11615
11737
  .uk-section-primary:not(.uk-preserve-color) .uk-accordion-default .uk-accordion-title,
11616
11738
  .uk-section-secondary:not(.uk-preserve-color) .uk-accordion-default .uk-accordion-title,
@@ -12547,6 +12669,58 @@ a.uk-offcanvas-bar:hover .uk-icon-overlay {
12547
12669
  .uk-offcanvas-bar .uk-dotnav > .uk-active > * {
12548
12670
  background-color: rgba(255, 255, 255, 0.9);
12549
12671
  }
12672
+ .uk-light .uk-logo,
12673
+ .uk-section-primary:not(.uk-preserve-color) .uk-logo,
12674
+ .uk-section-secondary:not(.uk-preserve-color) .uk-logo,
12675
+ .uk-tile-primary:not(.uk-preserve-color) .uk-logo,
12676
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-logo,
12677
+ .uk-card-primary.uk-card-body .uk-logo,
12678
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-logo,
12679
+ .uk-card-secondary.uk-card-body .uk-logo,
12680
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo,
12681
+ .uk-overlay-primary .uk-logo,
12682
+ .uk-offcanvas-bar .uk-logo {
12683
+ color: #fff;
12684
+ }
12685
+ .uk-light .uk-logo:hover,
12686
+ .uk-section-primary:not(.uk-preserve-color) .uk-logo:hover,
12687
+ .uk-section-secondary:not(.uk-preserve-color) .uk-logo:hover,
12688
+ .uk-tile-primary:not(.uk-preserve-color) .uk-logo:hover,
12689
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-logo:hover,
12690
+ .uk-card-primary.uk-card-body .uk-logo:hover,
12691
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-logo:hover,
12692
+ .uk-card-secondary.uk-card-body .uk-logo:hover,
12693
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo:hover,
12694
+ .uk-overlay-primary .uk-logo:hover,
12695
+ .uk-offcanvas-bar .uk-logo:hover {
12696
+ color: #fff;
12697
+ }
12698
+ .uk-light .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse:not([uk-svg]))):not(.uk-logo-inverse):not([uk-svg]),
12699
+ .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]),
12700
+ .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]),
12701
+ .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]),
12702
+ .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]),
12703
+ .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]),
12704
+ .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]),
12705
+ .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]),
12706
+ .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]),
12707
+ .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]),
12708
+ .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]) {
12709
+ display: none;
12710
+ }
12711
+ .uk-light .uk-logo-inverse:not([uk-svg]),
12712
+ .uk-section-primary:not(.uk-preserve-color) .uk-logo-inverse:not([uk-svg]),
12713
+ .uk-section-secondary:not(.uk-preserve-color) .uk-logo-inverse:not([uk-svg]),
12714
+ .uk-tile-primary:not(.uk-preserve-color) .uk-logo-inverse:not([uk-svg]),
12715
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-logo-inverse:not([uk-svg]),
12716
+ .uk-card-primary.uk-card-body .uk-logo-inverse:not([uk-svg]),
12717
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-logo-inverse:not([uk-svg]),
12718
+ .uk-card-secondary.uk-card-body .uk-logo-inverse:not([uk-svg]),
12719
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo-inverse:not([uk-svg]),
12720
+ .uk-overlay-primary .uk-logo-inverse:not([uk-svg]),
12721
+ .uk-offcanvas-bar .uk-logo-inverse:not([uk-svg]) {
12722
+ display: block;
12723
+ }
12550
12724
  .uk-light .uk-text-lead,
12551
12725
  .uk-section-primary:not(.uk-preserve-color) .uk-text-lead,
12552
12726
  .uk-section-secondary:not(.uk-preserve-color) .uk-text-lead,
@@ -12638,58 +12812,6 @@ a.uk-offcanvas-bar:hover .uk-icon-overlay {
12638
12812
  .uk-offcanvas-bar .uk-column-divider {
12639
12813
  column-rule-color: rgba(255, 255, 255, 0.2);
12640
12814
  }
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
12815
  /*
12694
12816
  * Pass dropbar behind color to JS
12695
12817
  */