uikit 3.25.20-dev.e4f47fc → 3.25.20

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 (201) hide show
  1. package/CHANGELOG.md +2 -33
  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 +917 -1045
  7. package/dist/css/uikit-core-rtl.min.css +1 -1
  8. package/dist/css/uikit-core.css +917 -1045
  9. package/dist/css/uikit-core.min.css +1 -1
  10. package/dist/css/uikit-rtl.css +936 -1064
  11. package/dist/css/uikit-rtl.min.css +1 -1
  12. package/dist/css/uikit.css +936 -1064
  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 +132 -133
  19. package/dist/js/components/lightbox-panel.min.js +1 -1
  20. package/dist/js/components/lightbox.js +133 -134
  21. package/dist/js/components/lightbox.min.js +1 -1
  22. package/dist/js/components/notification.js +1 -1
  23. package/dist/js/components/notification.min.js +1 -1
  24. package/dist/js/components/parallax.js +12 -8
  25. package/dist/js/components/parallax.min.js +1 -1
  26. package/dist/js/components/slider-parallax.js +12 -8
  27. package/dist/js/components/slider-parallax.min.js +1 -1
  28. package/dist/js/components/slider.js +25 -41
  29. package/dist/js/components/slider.min.js +1 -1
  30. package/dist/js/components/slideshow-parallax.js +12 -8
  31. package/dist/js/components/slideshow-parallax.min.js +1 -1
  32. package/dist/js/components/slideshow.js +102 -71
  33. package/dist/js/components/slideshow.min.js +1 -1
  34. package/dist/js/components/sortable.js +1 -1
  35. package/dist/js/components/sortable.min.js +1 -1
  36. package/dist/js/components/tooltip.js +19 -19
  37. package/dist/js/components/tooltip.min.js +1 -1
  38. package/dist/js/components/upload.js +1 -1
  39. package/dist/js/components/upload.min.js +1 -1
  40. package/dist/js/uikit-core.js +262 -752
  41. package/dist/js/uikit-core.min.js +1 -1
  42. package/dist/js/uikit-icons.js +1 -1
  43. package/dist/js/uikit-icons.min.js +1 -1
  44. package/dist/js/uikit.js +374 -627
  45. package/dist/js/uikit.min.js +1 -1
  46. package/package.json +1 -1
  47. package/src/js/api/component.js +3 -2
  48. package/src/js/api/observables.js +4 -2
  49. package/src/js/api/options.js +3 -6
  50. package/src/js/api/props.js +4 -1
  51. package/src/js/api/state.js +8 -7
  52. package/src/js/components/index.js +0 -1
  53. package/src/js/components/internal/lightbox-animations.js +26 -7
  54. package/src/js/components/internal/slideshow-animations.js +62 -15
  55. package/src/js/components/lightbox-panel.js +96 -121
  56. package/src/js/components/lightbox.js +8 -5
  57. package/src/js/components/tooltip.js +2 -4
  58. package/src/js/core/accordion.js +29 -78
  59. package/src/js/core/drop.js +4 -5
  60. package/src/js/core/dropnav.js +3 -3
  61. package/src/js/core/grid.js +19 -5
  62. package/src/js/core/height-match.js +2 -1
  63. package/src/js/core/margin.js +0 -3
  64. package/src/js/core/overflow-fade.js +5 -5
  65. package/src/js/core/sticky.js +1 -1
  66. package/src/js/core/switcher.js +44 -24
  67. package/src/js/core/video.js +15 -172
  68. package/src/js/mixin/internal/slideshow-animations.js +13 -5
  69. package/src/js/mixin/internal/slideshow-transitioner.js +2 -2
  70. package/src/js/mixin/modal.js +3 -4
  71. package/src/js/mixin/parallax.js +4 -1
  72. package/src/js/mixin/position.js +1 -1
  73. package/src/js/mixin/slider-nav.js +1 -1
  74. package/src/js/mixin/slider-parallax.js +38 -9
  75. package/src/js/mixin/togglable.js +14 -13
  76. package/src/js/util/attr.js +7 -7
  77. package/src/js/util/class.js +1 -1
  78. package/src/js/util/dom.js +4 -3
  79. package/src/js/util/lang.js +1 -1
  80. package/src/js/util/player.js +4 -4
  81. package/src/js/util/style.js +15 -10
  82. package/src/js/util/viewport.js +25 -22
  83. package/src/less/components/_import.less +1 -6
  84. package/src/less/components/base.less +1 -1
  85. package/src/less/components/button.less +1 -1
  86. package/src/less/components/form.less +5 -5
  87. package/src/less/components/grid.less +65 -58
  88. package/src/less/components/margin.less +124 -155
  89. package/src/less/components/nav.less +1 -1
  90. package/src/less/components/padding.less +9 -9
  91. package/src/less/components/text.less +0 -6
  92. package/src/less/components/utility.less +163 -0
  93. package/src/less/theme/_import.less +1 -5
  94. package/src/less/theme/utility.less +32 -0
  95. package/src/scss/components/_import.scss +1 -6
  96. package/src/scss/components/base.scss +1 -1
  97. package/src/scss/components/button.scss +1 -1
  98. package/src/scss/components/form.scss +5 -5
  99. package/src/scss/components/grid.scss +64 -57
  100. package/src/scss/components/margin.scss +124 -155
  101. package/src/scss/components/nav.scss +1 -1
  102. package/src/scss/components/padding.scss +9 -9
  103. package/src/scss/components/text.scss +0 -6
  104. package/src/scss/components/utility.scss +129 -0
  105. package/src/scss/mixins-theme.scss +33 -42
  106. package/src/scss/mixins.scss +30 -39
  107. package/src/scss/variables-theme.scss +14 -14
  108. package/src/scss/variables.scss +14 -14
  109. package/tests/accordion.html +10 -77
  110. package/tests/alert.html +1 -1
  111. package/tests/align.html +5 -5
  112. package/tests/animation.html +4 -4
  113. package/tests/article.html +7 -7
  114. package/tests/background.html +2 -2
  115. package/tests/badge.html +1 -1
  116. package/tests/base.html +3 -3
  117. package/tests/button.html +1 -1
  118. package/tests/card.html +15 -15
  119. package/tests/close.html +2 -2
  120. package/tests/comment.html +9 -9
  121. package/tests/container.html +2 -2
  122. package/tests/countdown.html +21 -21
  123. package/tests/cover.html +6 -6
  124. package/tests/description-list.html +1 -1
  125. package/tests/divider.html +3 -3
  126. package/tests/dotnav.html +1 -1
  127. package/tests/drop.html +7 -7
  128. package/tests/dropbar.html +5 -5
  129. package/tests/dropdown.html +1 -1
  130. package/tests/dropnav.html +18 -18
  131. package/tests/filter.html +3 -3
  132. package/tests/form.html +14 -14
  133. package/tests/grid.html +47 -41
  134. package/tests/heading.html +2 -2
  135. package/tests/height-viewport.html +4 -4
  136. package/tests/height.html +5 -5
  137. package/tests/icon.html +8 -8
  138. package/tests/image.html +6 -6
  139. package/tests/index.html +13 -13
  140. package/tests/js/index.js +1 -1
  141. package/tests/leader.html +5 -5
  142. package/tests/lightbox.html +14 -14
  143. package/tests/link.html +1 -1
  144. package/tests/list.html +4 -4
  145. package/tests/margin.html +7 -7
  146. package/tests/marker.html +3 -3
  147. package/tests/modal.html +4 -4
  148. package/tests/nav.html +5 -5
  149. package/tests/navbar.html +27 -27
  150. package/tests/notification.html +2 -2
  151. package/tests/offcanvas.html +12 -12
  152. package/tests/overlay.html +3 -3
  153. package/tests/padding.html +1 -1
  154. package/tests/pagination.html +3 -3
  155. package/tests/parallax.html +1 -1
  156. package/tests/position.html +6 -6
  157. package/tests/scrollspy.html +12 -12
  158. package/tests/search.html +5 -5
  159. package/tests/section.html +17 -17
  160. package/tests/slidenav.html +3 -3
  161. package/tests/slider.html +5 -5
  162. package/tests/slideshow.html +4 -34
  163. package/tests/sortable.html +15 -15
  164. package/tests/sticky-navbar.html +4 -4
  165. package/tests/sticky-parallax.html +3 -3
  166. package/tests/sticky.html +3 -3
  167. package/tests/svg.html +2 -3
  168. package/tests/switcher.html +6 -6
  169. package/tests/tab.html +4 -4
  170. package/tests/text.html +3 -3
  171. package/tests/tile.html +4 -4
  172. package/tests/toggle.html +1 -1
  173. package/tests/tooltip.html +3 -3
  174. package/tests/totop.html +2 -2
  175. package/tests/transition.html +1 -1
  176. package/tests/upload.html +5 -5
  177. package/tests/utility.html +116 -16
  178. package/tests/video.html +27 -227
  179. package/tests/visibility.html +4 -4
  180. package/tests/width.html +12 -12
  181. package/dist/js/components/marquee.js +0 -179
  182. package/dist/js/components/marquee.min.js +0 -1
  183. package/src/js/components/marquee.js +0 -123
  184. package/src/js/mixin/connect.js +0 -55
  185. package/src/js/mixin/scroll-driven.js +0 -57
  186. package/src/less/components/dropcap.less +0 -71
  187. package/src/less/components/floating-shadow.less +0 -66
  188. package/src/less/components/logo.less +0 -94
  189. package/src/less/components/marquee.less +0 -133
  190. package/src/less/theme/dropcap.less +0 -29
  191. package/src/less/theme/floating-shadow.less +0 -20
  192. package/src/less/theme/logo.less +0 -29
  193. package/src/less/theme/marquee.less +0 -14
  194. package/src/scss/components/dropcap.scss +0 -63
  195. package/src/scss/components/floating-shadow.scss +0 -63
  196. package/src/scss/components/logo.scss +0 -75
  197. package/src/scss/components/marquee.scss +0 -136
  198. package/tests/dropcap.html +0 -26
  199. package/tests/floating-shadow.html +0 -44
  200. package/tests/logo.html +0 -84
  201. package/tests/marquee.html +0 -617
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.25.20-dev.e4f47fc | https://www.getuikit.com | (c) 2014 - 2026 YOOtheme | MIT License */
1
+ /*! UIkit 3.25.20 | https://www.getuikit.com | (c) 2014 - 2026 YOOtheme | MIT License */
2
2
  /* ========================================================================
3
3
  Component: Base
4
4
  ========================================================================== */
@@ -374,7 +374,7 @@ blockquote {
374
374
  /*
375
375
  * Content
376
376
  */
377
- blockquote :where(p:last-of-type) {
377
+ blockquote p:last-of-type {
378
378
  margin-bottom: 0;
379
379
  }
380
380
  blockquote footer {
@@ -1831,7 +1831,7 @@ select.uk-form-width-xsmall {
1831
1831
  /*
1832
1832
  * Stacked
1833
1833
  */
1834
- .uk-form-stacked :where(.uk-form-label) {
1834
+ .uk-form-stacked .uk-form-label {
1835
1835
  display: block;
1836
1836
  margin-bottom: 5px;
1837
1837
  }
@@ -1841,23 +1841,23 @@ select.uk-form-width-xsmall {
1841
1841
  /* Tablet portrait and smaller */
1842
1842
  @media (max-width: 959px) {
1843
1843
  /* Behave like `uk-form-stacked` */
1844
- .uk-form-horizontal :where(.uk-form-label) {
1844
+ .uk-form-horizontal .uk-form-label {
1845
1845
  display: block;
1846
1846
  margin-bottom: 5px;
1847
1847
  }
1848
1848
  }
1849
1849
  /* Tablet landscape and bigger */
1850
1850
  @media (min-width: 960px) {
1851
- .uk-form-horizontal :where(.uk-form-label) {
1851
+ .uk-form-horizontal .uk-form-label {
1852
1852
  width: 200px;
1853
1853
  margin-top: 7px;
1854
1854
  float: left;
1855
1855
  }
1856
- .uk-form-horizontal :where(.uk-form-controls) {
1856
+ .uk-form-horizontal .uk-form-controls {
1857
1857
  margin-left: 215px;
1858
1858
  }
1859
1859
  /* Better vertical alignment if controls are checkboxes and radio buttons with text */
1860
- .uk-form-horizontal :where(.uk-form-controls-text) {
1860
+ .uk-form-horizontal .uk-form-controls-text {
1861
1861
  padding-top: 7px;
1862
1862
  }
1863
1863
  }
@@ -1912,262 +1912,6 @@ select.uk-form-width-xsmall {
1912
1912
  .uk-form-icon-flip ~ .uk-input {
1913
1913
  padding-right: 40px !important;
1914
1914
  }
1915
- /* ========================================================================
1916
- Component: Search
1917
- ========================================================================== */
1918
- /*
1919
- * 1. Container fits its content
1920
- * 2. Create position context
1921
- * 3. Prevent content overflow
1922
- * 4. Reset `form`
1923
- */
1924
- .uk-search {
1925
- /* 1 */
1926
- display: inline-block;
1927
- /* 2 */
1928
- position: relative;
1929
- /* 3 */
1930
- max-width: 100%;
1931
- /* 4 */
1932
- margin: 0;
1933
- }
1934
- /* Input
1935
- ========================================================================== */
1936
- /*
1937
- * Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X.
1938
- */
1939
- .uk-search-input::-webkit-search-cancel-button,
1940
- .uk-search-input::-webkit-search-decoration {
1941
- -webkit-appearance: none;
1942
- }
1943
- /*
1944
- * Removes placeholder transparency in Firefox.
1945
- */
1946
- .uk-search-input::-moz-placeholder {
1947
- opacity: 1;
1948
- }
1949
- /*
1950
- * 1. Define consistent box sizing.
1951
- * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
1952
- * 3. Remove `border-radius` in iOS.
1953
- * 4. Change font properties to `inherit` in all browsers
1954
- * 5. Show the overflow in Edge.
1955
- * 6. Remove default style in iOS.
1956
- * 7. Vertical alignment
1957
- * 8. Take the full container width
1958
- * 9. Style
1959
- */
1960
- .uk-search-input {
1961
- /* 1 */
1962
- box-sizing: border-box;
1963
- /* 2 */
1964
- margin: 0;
1965
- /* 3 */
1966
- border-radius: 0;
1967
- /* 4 */
1968
- font: inherit;
1969
- /* 5 */
1970
- overflow: visible;
1971
- /* 6 */
1972
- -webkit-appearance: none;
1973
- /* 7 */
1974
- vertical-align: middle;
1975
- /* 8 */
1976
- width: 100%;
1977
- /* 9 */
1978
- border: none;
1979
- color: #666;
1980
- }
1981
- .uk-search-input:focus {
1982
- outline: none;
1983
- }
1984
- /* Placeholder */
1985
- .uk-search-input::placeholder {
1986
- color: #999;
1987
- }
1988
- /* Icon (Adopts `uk-icon`)
1989
- ========================================================================== */
1990
- /*
1991
- * Position above input
1992
- * 1. Set position
1993
- * 2. Center icon vertically and horizontally
1994
- * 3. Style
1995
- */
1996
- .uk-search .uk-search-icon {
1997
- /* 1 */
1998
- position: absolute;
1999
- top: 0;
2000
- bottom: 0;
2001
- left: 0;
2002
- /* 2 */
2003
- display: inline-flex;
2004
- justify-content: center;
2005
- align-items: center;
2006
- /* 3 */
2007
- color: #999;
2008
- }
2009
- /*
2010
- * Required for `a`.
2011
- */
2012
- .uk-search .uk-search-icon:hover {
2013
- color: #999;
2014
- }
2015
- /*
2016
- * Make `input` element clickable through icon, e.g. if it's a `span`
2017
- */
2018
- .uk-search .uk-search-icon:not(a):not(button):not(input) {
2019
- pointer-events: none;
2020
- }
2021
- /*
2022
- * Position modifier
2023
- */
2024
- .uk-search .uk-search-icon-flip {
2025
- right: 0;
2026
- left: auto;
2027
- }
2028
- /* Default modifier
2029
- ========================================================================== */
2030
- .uk-search-default {
2031
- width: 240px;
2032
- }
2033
- /*
2034
- * Input
2035
- */
2036
- .uk-search-default .uk-search-input {
2037
- height: 40px;
2038
- padding-left: 10px;
2039
- padding-right: 10px;
2040
- background: transparent;
2041
- border: 1px solid #e5e5e5;
2042
- }
2043
- /* Focus */
2044
- .uk-search-default .uk-search-input:focus {
2045
- background-color: rgba(0, 0, 0, 0);
2046
- border-color: #1e87f0;
2047
- }
2048
- /*
2049
- * Icon
2050
- */
2051
- .uk-search-default .uk-search-icon {
2052
- padding-left: 10px;
2053
- padding-right: 10px;
2054
- }
2055
- .uk-search-default:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
2056
- padding-left: 40px;
2057
- }
2058
- .uk-search-default:has(.uk-search-icon-flip) .uk-search-input {
2059
- padding-right: 40px;
2060
- }
2061
- /* Navbar modifier
2062
- ========================================================================== */
2063
- .uk-search-navbar {
2064
- width: 240px;
2065
- }
2066
- /*
2067
- * Input
2068
- */
2069
- .uk-search-navbar .uk-search-input {
2070
- height: 40px;
2071
- padding-left: 10px;
2072
- padding-right: 10px;
2073
- background: #fff;
2074
- border: 1px solid #e5e5e5;
2075
- }
2076
- /* Focus */
2077
- .uk-search-navbar .uk-search-input:focus {
2078
- background-color: #fff;
2079
- border-color: #1e87f0;
2080
- }
2081
- /*
2082
- * Icon
2083
- */
2084
- .uk-search-navbar .uk-search-icon {
2085
- padding-left: 10px;
2086
- padding-right: 10px;
2087
- }
2088
- .uk-search-navbar:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
2089
- padding-left: 40px;
2090
- }
2091
- .uk-search-navbar:has(.uk-search-icon-flip) .uk-search-input {
2092
- padding-right: 40px;
2093
- }
2094
- /* Medium modifier
2095
- ========================================================================== */
2096
- .uk-search-medium {
2097
- width: 400px;
2098
- }
2099
- /*
2100
- * Input
2101
- */
2102
- .uk-search-medium .uk-search-input {
2103
- height: 55px;
2104
- padding-left: 12px;
2105
- padding-right: 12px;
2106
- background: transparent;
2107
- font-size: 1.5rem;
2108
- border: 1px solid #e5e5e5;
2109
- }
2110
- /* Focus */
2111
- .uk-search-medium .uk-search-input:focus {
2112
- background-color: rgba(0, 0, 0, 0);
2113
- border-color: #1e87f0;
2114
- }
2115
- /*
2116
- * Icon
2117
- */
2118
- .uk-search-medium .uk-search-icon {
2119
- padding-left: 12px;
2120
- padding-right: 12px;
2121
- }
2122
- .uk-search-medium:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
2123
- padding-left: 48px;
2124
- }
2125
- .uk-search-medium:has(.uk-search-icon-flip) .uk-search-input {
2126
- padding-right: 48px;
2127
- }
2128
- /* Large modifier
2129
- ========================================================================== */
2130
- .uk-search-large {
2131
- width: 500px;
2132
- }
2133
- /*
2134
- * Input
2135
- */
2136
- .uk-search-large .uk-search-input {
2137
- height: 90px;
2138
- padding-left: 20px;
2139
- padding-right: 20px;
2140
- background: transparent;
2141
- font-size: 2.625rem;
2142
- border: 1px solid #e5e5e5;
2143
- }
2144
- /* Focus */
2145
- .uk-search-large .uk-search-input:focus {
2146
- background-color: rgba(0, 0, 0, 0);
2147
- border-color: #1e87f0;
2148
- }
2149
- /*
2150
- * Icon
2151
- */
2152
- .uk-search-large .uk-search-icon {
2153
- padding-left: 20px;
2154
- padding-right: 20px;
2155
- }
2156
- .uk-search-large:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
2157
- padding-left: 80px;
2158
- }
2159
- .uk-search-large:has(.uk-search-icon-flip) .uk-search-input {
2160
- padding-right: 80px;
2161
- }
2162
- /* Toggle
2163
- ========================================================================== */
2164
- .uk-search-toggle {
2165
- color: #999;
2166
- }
2167
- /* Hover */
2168
- .uk-search-toggle:hover {
2169
- color: #666;
2170
- }
2171
1915
  /* ========================================================================
2172
1916
  Component: Button
2173
1917
  ========================================================================== */
@@ -2227,7 +1971,7 @@ select.uk-form-width-xsmall {
2227
1971
  }
2228
1972
  /* Hover */
2229
1973
  .uk-button:hover {
2230
- /* 10 */
1974
+ /* 9 */
2231
1975
  text-decoration: none;
2232
1976
  }
2233
1977
  /* OnClick + Active */
@@ -3453,204 +3197,404 @@ select.uk-form-width-xsmall {
3453
3197
  color: #fff;
3454
3198
  }
3455
3199
  /* ========================================================================
3456
- Component: Dropcap
3200
+ Component: Overlay
3457
3201
  ========================================================================== */
3202
+ .uk-overlay {
3203
+ padding: 30px 30px;
3204
+ }
3458
3205
  /*
3459
- * 1. Firefox doesn't apply `::first-letter` if the first letter is inside child elements
3460
- * https://bugzilla.mozilla.org/show_bug.cgi?id=214004
3461
- * 2. In Firefox, a floating `::first-letter` doesn't have a line box and there for no `line-height`
3462
- * https://bugzilla.mozilla.org/show_bug.cgi?id=317933
3206
+ * Remove margin from the last-child
3463
3207
  */
3464
- .uk-dropcap::first-letter,
3465
- .uk-dropcap > p:first-of-type::first-letter {
3466
- display: block;
3467
- margin-right: 10px;
3468
- float: left;
3469
- font-size: 4.5em;
3470
- line-height: 1;
3471
- margin-bottom: -2px;
3208
+ .uk-overlay > :last-child {
3209
+ margin-bottom: 0;
3472
3210
  }
3473
- /* 2 */
3474
- @-moz-document url-prefix() {
3475
- .uk-dropcap::first-letter,
3476
- .uk-dropcap > p:first-of-type::first-letter {
3477
- margin-top: 1.1%;
3211
+ /* Icon
3212
+ ========================================================================== */
3213
+ /* Style modifiers
3214
+ ========================================================================== */
3215
+ /*
3216
+ * Default
3217
+ */
3218
+ .uk-overlay-default {
3219
+ --uk-inverse: dark;
3220
+ background: rgba(255, 255, 255, 0.9);
3221
+ }
3222
+ /*
3223
+ * Primary
3224
+ */
3225
+ .uk-overlay-primary {
3226
+ --uk-inverse: light;
3227
+ background: rgba(34, 34, 34, 0.9);
3228
+ }
3229
+ /* ========================================================================
3230
+ Component: Article
3231
+ ========================================================================== */
3232
+ .uk-article {
3233
+ display: flow-root;
3234
+ }
3235
+ /*
3236
+ * Remove margin from the last-child
3237
+ */
3238
+ .uk-article > :last-child {
3239
+ margin-bottom: 0;
3240
+ }
3241
+ /* Adjacent sibling
3242
+ ========================================================================== */
3243
+ .uk-article + .uk-article {
3244
+ margin-top: 70px;
3245
+ }
3246
+ /* Title
3247
+ ========================================================================== */
3248
+ .uk-article-title {
3249
+ font-size: 2.23125rem;
3250
+ line-height: 1.2;
3251
+ }
3252
+ /* Tablet landscape and bigger */
3253
+ @media (min-width: 960px) {
3254
+ .uk-article-title {
3255
+ font-size: 2.625rem;
3478
3256
  }
3479
3257
  }
3258
+ /* Meta
3259
+ ========================================================================== */
3260
+ .uk-article-meta {
3261
+ font-size: 0.875rem;
3262
+ line-height: 1.4;
3263
+ color: #999;
3264
+ }
3265
+ .uk-article-meta a {
3266
+ color: #999;
3267
+ }
3268
+ .uk-article-meta a:hover {
3269
+ color: #666;
3270
+ text-decoration: none;
3271
+ }
3480
3272
  /* ========================================================================
3481
- Component: Floating Shadow
3273
+ Component: Comment
3274
+ ========================================================================== */
3275
+ /* Sections
3482
3276
  ========================================================================== */
3277
+ .uk-comment-body {
3278
+ display: flow-root;
3279
+ overflow-wrap: break-word;
3280
+ word-wrap: break-word;
3281
+ }
3282
+ .uk-comment-header {
3283
+ display: flow-root;
3284
+ margin-bottom: 20px;
3285
+ }
3483
3286
  /*
3484
- * 1. Set position.
3485
- * 2. Set style
3486
- * 3. Fix shadow being clipped in Safari if container is animated
3287
+ * Remove margin from the last-child
3487
3288
  */
3488
- .uk-floating-shadow {
3289
+ .uk-comment-body > :last-child,
3290
+ .uk-comment-header > :last-child {
3291
+ margin-bottom: 0;
3292
+ }
3293
+ /* Title
3294
+ ========================================================================== */
3295
+ .uk-comment-title {
3296
+ font-size: 1.25rem;
3297
+ line-height: 1.4;
3298
+ }
3299
+ /* Meta
3300
+ ========================================================================== */
3301
+ .uk-comment-meta {
3302
+ font-size: 0.875rem;
3303
+ line-height: 1.4;
3304
+ color: #999;
3305
+ }
3306
+ /* Avatar
3307
+ ========================================================================== */
3308
+ /* List
3309
+ ========================================================================== */
3310
+ .uk-comment-list {
3311
+ padding: 0;
3312
+ list-style: none;
3313
+ }
3314
+ /* Adjacent siblings */
3315
+ .uk-comment-list > :nth-child(n+2) {
3316
+ margin-top: 70px;
3317
+ }
3318
+ /*
3319
+ * Sublists
3320
+ * Note: General sibling selector allows reply block between comment and sublist
3321
+ */
3322
+ .uk-comment-list .uk-comment ~ ul {
3323
+ margin: 70px 0 0 0;
3324
+ padding-left: 30px;
3325
+ list-style: none;
3326
+ }
3327
+ /* Tablet and bigger */
3328
+ @media (min-width: 960px) {
3329
+ .uk-comment-list .uk-comment ~ ul {
3330
+ padding-left: 100px;
3331
+ }
3332
+ }
3333
+ /* Adjacent siblings */
3334
+ .uk-comment-list .uk-comment ~ ul > :nth-child(n+2) {
3335
+ margin-top: 70px;
3336
+ }
3337
+ /* Style modifier
3338
+ ========================================================================== */
3339
+ .uk-comment-primary {
3340
+ padding: 30px;
3341
+ background-color: #f8f8f8;
3342
+ }
3343
+ /* ========================================================================
3344
+ Component: Search
3345
+ ========================================================================== */
3346
+ /*
3347
+ * 1. Container fits its content
3348
+ * 2. Create position context
3349
+ * 3. Prevent content overflow
3350
+ * 4. Reset `form`
3351
+ */
3352
+ .uk-search {
3353
+ /* 1 */
3489
3354
  display: inline-block;
3355
+ /* 2 */
3490
3356
  position: relative;
3491
- z-index: 0;
3357
+ /* 3 */
3492
3358
  max-width: 100%;
3359
+ /* 4 */
3360
+ margin: 0;
3361
+ }
3362
+ /* Input
3363
+ ========================================================================== */
3364
+ /*
3365
+ * Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X.
3366
+ */
3367
+ .uk-search-input::-webkit-search-cancel-button,
3368
+ .uk-search-input::-webkit-search-decoration {
3369
+ -webkit-appearance: none;
3370
+ }
3371
+ /*
3372
+ * Removes placeholder transparency in Firefox.
3373
+ */
3374
+ .uk-search-input::-moz-placeholder {
3375
+ opacity: 1;
3376
+ }
3377
+ /*
3378
+ * 1. Define consistent box sizing.
3379
+ * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
3380
+ * 3. Remove `border-radius` in iOS.
3381
+ * 4. Change font properties to `inherit` in all browsers
3382
+ * 5. Show the overflow in Edge.
3383
+ * 6. Remove default style in iOS.
3384
+ * 7. Vertical alignment
3385
+ * 8. Take the full container width
3386
+ * 9. Style
3387
+ */
3388
+ .uk-search-input {
3389
+ /* 1 */
3390
+ box-sizing: border-box;
3391
+ /* 2 */
3392
+ margin: 0;
3393
+ /* 3 */
3394
+ border-radius: 0;
3395
+ /* 4 */
3396
+ font: inherit;
3397
+ /* 5 */
3398
+ overflow: visible;
3399
+ /* 6 */
3400
+ -webkit-appearance: none;
3401
+ /* 7 */
3493
3402
  vertical-align: middle;
3403
+ /* 8 */
3404
+ width: 100%;
3405
+ /* 9 */
3406
+ border: none;
3407
+ color: #666;
3494
3408
  }
3495
- .uk-floating-shadow::after {
3496
- content: "";
3409
+ .uk-search-input:focus {
3410
+ outline: none;
3411
+ }
3412
+ /* Placeholder */
3413
+ .uk-search-input::placeholder {
3414
+ color: #999;
3415
+ }
3416
+ /* Icon (Adopts `uk-icon`)
3417
+ ========================================================================== */
3418
+ /*
3419
+ * Position above input
3420
+ * 1. Set position
3421
+ * 2. Center icon vertically and horizontally
3422
+ * 3. Style
3423
+ */
3424
+ .uk-search .uk-search-icon {
3497
3425
  /* 1 */
3498
3426
  position: absolute;
3499
- bottom: -30px;
3427
+ top: 0;
3428
+ bottom: 0;
3500
3429
  left: 0;
3501
- right: 0;
3502
- z-index: -1;
3503
3430
  /* 2 */
3504
- height: 30px;
3505
- border-radius: 100%;
3506
- background: #444;
3507
- filter: blur(20px);
3431
+ display: inline-flex;
3432
+ justify-content: center;
3433
+ align-items: center;
3508
3434
  /* 3 */
3509
- will-change: filter;
3435
+ color: #999;
3510
3436
  }
3511
- /* ========================================================================
3512
- Component: Overlay
3513
- ========================================================================== */
3514
- .uk-overlay {
3515
- padding: 30px 30px;
3437
+ /*
3438
+ * Required for `a`.
3439
+ */
3440
+ .uk-search .uk-search-icon:hover {
3441
+ color: #999;
3516
3442
  }
3517
3443
  /*
3518
- * Remove margin from the last-child
3444
+ * Make `input` element clickable through icon, e.g. if it's a `span`
3519
3445
  */
3520
- .uk-overlay > :last-child {
3521
- margin-bottom: 0;
3446
+ .uk-search .uk-search-icon:not(a):not(button):not(input) {
3447
+ pointer-events: none;
3522
3448
  }
3523
- /* Icon
3524
- ========================================================================== */
3525
- /* Style modifiers
3449
+ /*
3450
+ * Position modifier
3451
+ */
3452
+ .uk-search .uk-search-icon-flip {
3453
+ right: 0;
3454
+ left: auto;
3455
+ }
3456
+ /* Default modifier
3526
3457
  ========================================================================== */
3458
+ .uk-search-default {
3459
+ width: 240px;
3460
+ }
3527
3461
  /*
3528
- * Default
3462
+ * Input
3529
3463
  */
3530
- .uk-overlay-default {
3531
- --uk-inverse: dark;
3532
- background: rgba(255, 255, 255, 0.9);
3464
+ .uk-search-default .uk-search-input {
3465
+ height: 40px;
3466
+ padding-left: 10px;
3467
+ padding-right: 10px;
3468
+ background: transparent;
3469
+ border: 1px solid #e5e5e5;
3470
+ }
3471
+ /* Focus */
3472
+ .uk-search-default .uk-search-input:focus {
3473
+ background-color: rgba(0, 0, 0, 0);
3474
+ border-color: #1e87f0;
3533
3475
  }
3534
3476
  /*
3535
- * Primary
3477
+ * Icon
3536
3478
  */
3537
- .uk-overlay-primary {
3538
- --uk-inverse: light;
3539
- background: rgba(34, 34, 34, 0.9);
3479
+ .uk-search-default .uk-search-icon {
3480
+ padding-left: 10px;
3481
+ padding-right: 10px;
3482
+ }
3483
+ .uk-search-default:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
3484
+ padding-left: 40px;
3485
+ }
3486
+ .uk-search-default:has(.uk-search-icon-flip) .uk-search-input {
3487
+ padding-right: 40px;
3488
+ }
3489
+ /* Navbar modifier
3490
+ ========================================================================== */
3491
+ .uk-search-navbar {
3492
+ width: 240px;
3493
+ }
3494
+ /*
3495
+ * Input
3496
+ */
3497
+ .uk-search-navbar .uk-search-input {
3498
+ height: 40px;
3499
+ padding-left: 10px;
3500
+ padding-right: 10px;
3501
+ background: #fff;
3502
+ border: 1px solid #e5e5e5;
3540
3503
  }
3541
- /* ========================================================================
3542
- Component: Article
3543
- ========================================================================== */
3544
- .uk-article {
3545
- display: flow-root;
3504
+ /* Focus */
3505
+ .uk-search-navbar .uk-search-input:focus {
3506
+ background-color: #fff;
3507
+ border-color: #1e87f0;
3546
3508
  }
3547
3509
  /*
3548
- * Remove margin from the last-child
3510
+ * Icon
3549
3511
  */
3550
- .uk-article > :last-child {
3551
- margin-bottom: 0;
3552
- }
3553
- /* Adjacent sibling
3554
- ========================================================================== */
3555
- .uk-article + .uk-article {
3556
- margin-top: 70px;
3512
+ .uk-search-navbar .uk-search-icon {
3513
+ padding-left: 10px;
3514
+ padding-right: 10px;
3557
3515
  }
3558
- /* Title
3559
- ========================================================================== */
3560
- .uk-article-title {
3561
- font-size: 2.23125rem;
3562
- line-height: 1.2;
3516
+ .uk-search-navbar:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
3517
+ padding-left: 40px;
3563
3518
  }
3564
- /* Tablet landscape and bigger */
3565
- @media (min-width: 960px) {
3566
- .uk-article-title {
3567
- font-size: 2.625rem;
3568
- }
3519
+ .uk-search-navbar:has(.uk-search-icon-flip) .uk-search-input {
3520
+ padding-right: 40px;
3569
3521
  }
3570
- /* Meta
3522
+ /* Medium modifier
3571
3523
  ========================================================================== */
3572
- .uk-article-meta {
3573
- font-size: 0.875rem;
3574
- line-height: 1.4;
3575
- color: #999;
3576
- }
3577
- .uk-article-meta a {
3578
- color: #999;
3579
- }
3580
- .uk-article-meta a:hover {
3581
- color: #666;
3582
- text-decoration: none;
3524
+ .uk-search-medium {
3525
+ width: 400px;
3583
3526
  }
3584
- /* ========================================================================
3585
- Component: Comment
3586
- ========================================================================== */
3587
- /* Sections
3588
- ========================================================================== */
3589
- .uk-comment-body {
3590
- display: flow-root;
3591
- overflow-wrap: break-word;
3592
- word-wrap: break-word;
3527
+ /*
3528
+ * Input
3529
+ */
3530
+ .uk-search-medium .uk-search-input {
3531
+ height: 55px;
3532
+ padding-left: 12px;
3533
+ padding-right: 12px;
3534
+ background: transparent;
3535
+ font-size: 1.5rem;
3536
+ border: 1px solid #e5e5e5;
3593
3537
  }
3594
- .uk-comment-header {
3595
- display: flow-root;
3596
- margin-bottom: 20px;
3538
+ /* Focus */
3539
+ .uk-search-medium .uk-search-input:focus {
3540
+ background-color: rgba(0, 0, 0, 0);
3541
+ border-color: #1e87f0;
3597
3542
  }
3598
3543
  /*
3599
- * Remove margin from the last-child
3544
+ * Icon
3600
3545
  */
3601
- .uk-comment-body > :last-child,
3602
- .uk-comment-header > :last-child {
3603
- margin-bottom: 0;
3546
+ .uk-search-medium .uk-search-icon {
3547
+ padding-left: 12px;
3548
+ padding-right: 12px;
3604
3549
  }
3605
- /* Title
3606
- ========================================================================== */
3607
- .uk-comment-title {
3608
- font-size: 1.25rem;
3609
- line-height: 1.4;
3550
+ .uk-search-medium:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
3551
+ padding-left: 48px;
3610
3552
  }
3611
- /* Meta
3612
- ========================================================================== */
3613
- .uk-comment-meta {
3614
- font-size: 0.875rem;
3615
- line-height: 1.4;
3616
- color: #999;
3553
+ .uk-search-medium:has(.uk-search-icon-flip) .uk-search-input {
3554
+ padding-right: 48px;
3617
3555
  }
3618
- /* Avatar
3619
- ========================================================================== */
3620
- /* List
3556
+ /* Large modifier
3621
3557
  ========================================================================== */
3622
- .uk-comment-list {
3623
- padding: 0;
3624
- list-style: none;
3558
+ .uk-search-large {
3559
+ width: 500px;
3625
3560
  }
3626
- /* Adjacent siblings */
3627
- .uk-comment-list > :nth-child(n+2) {
3628
- margin-top: 70px;
3561
+ /*
3562
+ * Input
3563
+ */
3564
+ .uk-search-large .uk-search-input {
3565
+ height: 90px;
3566
+ padding-left: 20px;
3567
+ padding-right: 20px;
3568
+ background: transparent;
3569
+ font-size: 2.625rem;
3570
+ border: 1px solid #e5e5e5;
3571
+ }
3572
+ /* Focus */
3573
+ .uk-search-large .uk-search-input:focus {
3574
+ background-color: rgba(0, 0, 0, 0);
3575
+ border-color: #1e87f0;
3629
3576
  }
3630
3577
  /*
3631
- * Sublists
3632
- * Note: General sibling selector allows reply block between comment and sublist
3578
+ * Icon
3633
3579
  */
3634
- .uk-comment-list .uk-comment ~ ul {
3635
- margin: 70px 0 0 0;
3636
- padding-left: 30px;
3637
- list-style: none;
3580
+ .uk-search-large .uk-search-icon {
3581
+ padding-left: 20px;
3582
+ padding-right: 20px;
3638
3583
  }
3639
- /* Tablet and bigger */
3640
- @media (min-width: 960px) {
3641
- .uk-comment-list .uk-comment ~ ul {
3642
- padding-left: 100px;
3643
- }
3584
+ .uk-search-large:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
3585
+ padding-left: 80px;
3644
3586
  }
3645
- /* Adjacent siblings */
3646
- .uk-comment-list .uk-comment ~ ul > :nth-child(n+2) {
3647
- margin-top: 70px;
3587
+ .uk-search-large:has(.uk-search-icon-flip) .uk-search-input {
3588
+ padding-right: 80px;
3648
3589
  }
3649
- /* Style modifier
3590
+ /* Toggle
3650
3591
  ========================================================================== */
3651
- .uk-comment-primary {
3652
- padding: 30px;
3653
- background-color: #f8f8f8;
3592
+ .uk-search-toggle {
3593
+ color: #999;
3594
+ }
3595
+ /* Hover */
3596
+ .uk-search-toggle:hover {
3597
+ color: #666;
3654
3598
  }
3655
3599
  /* ========================================================================
3656
3600
  Component: Accordion
@@ -4204,96 +4148,6 @@ select.uk-form-width-xsmall {
4204
4148
  /* 2 */
4205
4149
  position: relative;
4206
4150
  }
4207
- /* ========================================================================
4208
- Component: Marquee
4209
- ========================================================================== */
4210
- /*
4211
- * 1. Fallback for Safari 15 and older
4212
- * 2. Clip child elements
4213
- * `clip` prevents accidental scrolling through elements in slide getting focused
4214
- * `clip` also works in only one direction
4215
- * 3. Prevent tab highlighting on iOS.
4216
- */
4217
- .uk-marquee {
4218
- /* 1 */
4219
- overflow-x: hidden;
4220
- /* 2 */
4221
- overflow-x: clip;
4222
- /* 3 */
4223
- -webkit-tap-highlight-color: transparent;
4224
- }
4225
- .uk-marquee-vertical {
4226
- overflow: visible;
4227
- overflow-y: hidden;
4228
- overflow-y: clip;
4229
- }
4230
- /*
4231
- * Fade out
4232
- */
4233
- .uk-marquee-fade {
4234
- --uk-overflow-fade-size: 100px;
4235
- --uk-overflow-fade-direction: right;
4236
- }
4237
- .uk-marquee-fade.uk-marquee-vertical {
4238
- --uk-overflow-fade-direction: bottom;
4239
- }
4240
- .uk-marquee-fade {
4241
- 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)));
4242
- }
4243
- /* Items
4244
- ========================================================================== */
4245
- /*
4246
- * 1. Create a containing block.
4247
- */
4248
- .uk-marquee-items {
4249
- /* 1 */
4250
- position: relative;
4251
- }
4252
- /*
4253
- * 1. Reset list style without interfering with grid
4254
- * 2. Prevent displaying the callout information on iOS.
4255
- */
4256
- .uk-marquee:not(.uk-marquee-vertical) .uk-marquee-items:not(.uk-grid) {
4257
- display: flex;
4258
- /* 1 */
4259
- margin: 0;
4260
- padding: 0;
4261
- list-style: none;
4262
- /* 2 */
4263
- -webkit-touch-callout: none;
4264
- }
4265
- .uk-marquee:not(.uk-marquee-vertical) .uk-marquee-items.uk-grid {
4266
- flex-wrap: nowrap;
4267
- }
4268
- /* Item
4269
- ========================================================================== */
4270
- /*
4271
- * 1. Let items take content dimensions (0 0 auto)
4272
- * `max-width` needed to keep image responsiveness and prevent content overflow
4273
- * 2. Create position context
4274
- * 3. Create animation along offset-path
4275
- */
4276
- .uk-marquee-items > * {
4277
- /* 1 */
4278
- flex: none !important;
4279
- box-sizing: border-box;
4280
- max-width: 100%;
4281
- /* 2 */
4282
- position: relative;
4283
- /* 3 */
4284
- offset-anchor: 0 0;
4285
- offset-rotate: 0deg;
4286
- offset-path: path(var(--uk-marquee-path));
4287
- animation: var(--uk-marquee-duration) linear calc(var(--uk-marquee-start) / -100 * var(--uk-marquee-duration)) infinite var(--uk-marquee-direction) uk-marquee;
4288
- }
4289
- @keyframes uk-marquee {
4290
- 0% {
4291
- offset-distance: 0;
4292
- }
4293
- 100% {
4294
- offset-distance: 100%;
4295
- }
4296
- }
4297
4151
  /* ========================================================================
4298
4152
  Component: Sticky
4299
4153
  ========================================================================== */
@@ -4996,38 +4850,36 @@ select.uk-form-width-xsmall {
4996
4850
  .uk-grid > * > :last-child {
4997
4851
  margin-bottom: 0;
4998
4852
  }
4999
- /* Gap
4853
+ /* Gutter
5000
4854
  ========================================================================== */
5001
4855
  /*
5002
4856
  * Default
5003
4857
  */
4858
+ /* Horizontal */
5004
4859
  .uk-grid {
5005
4860
  margin-left: -30px;
5006
4861
  }
5007
4862
  .uk-grid > * {
5008
4863
  padding-left: 30px;
5009
4864
  }
5010
- .uk-grid {
5011
- row-gap: 30px;
5012
- }
5013
- /* Margin */
5014
- .uk-grid + :where(.uk-grid),
4865
+ /* Vertical */
4866
+ .uk-grid + .uk-grid,
4867
+ .uk-grid > .uk-grid-margin,
5015
4868
  * + .uk-grid-margin {
5016
4869
  margin-top: 30px;
5017
4870
  }
5018
4871
  /* Desktop and bigger */
5019
4872
  @media (min-width: 1200px) {
4873
+ /* Horizontal */
5020
4874
  .uk-grid {
5021
4875
  margin-left: -40px;
5022
4876
  }
5023
4877
  .uk-grid > * {
5024
4878
  padding-left: 40px;
5025
4879
  }
5026
- .uk-grid {
5027
- row-gap: 40px;
5028
- }
5029
- /* Margin */
5030
- .uk-grid + :where(.uk-grid),
4880
+ /* Vertical */
4881
+ .uk-grid + .uk-grid,
4882
+ .uk-grid > .uk-grid-margin,
5031
4883
  * + .uk-grid-margin {
5032
4884
  margin-top: 40px;
5033
4885
  }
@@ -5035,6 +4887,7 @@ select.uk-form-width-xsmall {
5035
4887
  /*
5036
4888
  * Small
5037
4889
  */
4890
+ /* Horizontal */
5038
4891
  .uk-grid-small,
5039
4892
  .uk-grid-column-small {
5040
4893
  margin-left: -15px;
@@ -5043,18 +4896,18 @@ select.uk-form-width-xsmall {
5043
4896
  .uk-grid-column-small > * {
5044
4897
  padding-left: 15px;
5045
4898
  }
5046
- .uk-grid-small,
5047
- .uk-grid-row-small {
5048
- row-gap: 15px;
5049
- }
5050
- /* Margin */
5051
- .uk-grid + :where(.uk-grid-small, .uk-grid-row-small),
4899
+ /* Vertical */
4900
+ .uk-grid + .uk-grid-small,
4901
+ .uk-grid + .uk-grid-row-small,
4902
+ .uk-grid-small > .uk-grid-margin,
4903
+ .uk-grid-row-small > .uk-grid-margin,
5052
4904
  * + .uk-grid-margin-small {
5053
4905
  margin-top: 15px;
5054
4906
  }
5055
4907
  /*
5056
4908
  * Medium
5057
4909
  */
4910
+ /* Horizontal */
5058
4911
  .uk-grid-medium,
5059
4912
  .uk-grid-column-medium {
5060
4913
  margin-left: -30px;
@@ -5063,18 +4916,18 @@ select.uk-form-width-xsmall {
5063
4916
  .uk-grid-column-medium > * {
5064
4917
  padding-left: 30px;
5065
4918
  }
5066
- .uk-grid-medium,
5067
- .uk-grid-row-medium {
5068
- row-gap: 30px;
5069
- }
5070
- /* Margin */
5071
- .uk-grid + :where(.uk-grid-medium, .uk-grid-row-medium),
4919
+ /* Vertical */
4920
+ .uk-grid + .uk-grid-medium,
4921
+ .uk-grid + .uk-grid-row-medium,
4922
+ .uk-grid-medium > .uk-grid-margin,
4923
+ .uk-grid-row-medium > .uk-grid-margin,
5072
4924
  * + .uk-grid-margin-medium {
5073
4925
  margin-top: 30px;
5074
4926
  }
5075
4927
  /*
5076
4928
  * Large
5077
4929
  */
4930
+ /* Horizontal */
5078
4931
  .uk-grid-large,
5079
4932
  .uk-grid-column-large {
5080
4933
  margin-left: -40px;
@@ -5083,17 +4936,17 @@ select.uk-form-width-xsmall {
5083
4936
  .uk-grid-column-large > * {
5084
4937
  padding-left: 40px;
5085
4938
  }
5086
- .uk-grid-large,
5087
- .uk-grid-row-large {
5088
- row-gap: 40px;
5089
- }
5090
- /* Margin */
5091
- .uk-grid + :where(.uk-grid-large, .uk-grid-row-large),
4939
+ /* Vertical */
4940
+ .uk-grid + .uk-grid-large,
4941
+ .uk-grid + .uk-grid-row-large,
4942
+ .uk-grid-large > .uk-grid-margin,
4943
+ .uk-grid-row-large > .uk-grid-margin,
5092
4944
  * + .uk-grid-margin-large {
5093
4945
  margin-top: 40px;
5094
4946
  }
5095
4947
  /* Desktop and bigger */
5096
4948
  @media (min-width: 1200px) {
4949
+ /* Horizontal */
5097
4950
  .uk-grid-large,
5098
4951
  .uk-grid-column-large {
5099
4952
  margin-left: -70px;
@@ -5102,12 +4955,11 @@ select.uk-form-width-xsmall {
5102
4955
  .uk-grid-column-large > * {
5103
4956
  padding-left: 70px;
5104
4957
  }
5105
- .uk-grid-large,
5106
- .uk-grid-row-large {
5107
- row-gap: 70px;
5108
- }
5109
- /* Margin */
5110
- .uk-grid + :where(.uk-grid-large, .uk-grid-row-large),
4958
+ /* Vertical */
4959
+ .uk-grid + .uk-grid-large,
4960
+ .uk-grid + .uk-grid-row-large,
4961
+ .uk-grid-large > .uk-grid-margin,
4962
+ .uk-grid-row-large > .uk-grid-margin,
5111
4963
  * + .uk-grid-margin-large {
5112
4964
  margin-top: 70px;
5113
4965
  }
@@ -5115,6 +4967,7 @@ select.uk-form-width-xsmall {
5115
4967
  /*
5116
4968
  * Collapse
5117
4969
  */
4970
+ /* Horizontal */
5118
4971
  .uk-grid-collapse,
5119
4972
  .uk-grid-column-collapse {
5120
4973
  margin-left: 0;
@@ -5123,12 +4976,11 @@ select.uk-form-width-xsmall {
5123
4976
  .uk-grid-column-collapse > * {
5124
4977
  padding-left: 0;
5125
4978
  }
5126
- .uk-grid-collapse,
5127
- .uk-grid-row-collapse {
5128
- row-gap: 0;
5129
- }
5130
- /* Margin */
5131
- .uk-grid + :where(.uk-grid-collapse, .uk-grid-row-collapse) {
4979
+ /* Vertical */
4980
+ .uk-grid + .uk-grid-collapse,
4981
+ .uk-grid + .uk-grid-row-collapse,
4982
+ .uk-grid-collapse > .uk-grid-margin,
4983
+ .uk-grid-row-collapse > .uk-grid-margin {
5132
4984
  margin-top: 0;
5133
4985
  }
5134
4986
  /* Divider
@@ -5136,7 +4988,6 @@ select.uk-form-width-xsmall {
5136
4988
  .uk-grid-divider > * {
5137
4989
  position: relative;
5138
4990
  }
5139
- /* Horizontal */
5140
4991
  .uk-grid-divider > :not(.uk-first-column)::before {
5141
4992
  content: "";
5142
4993
  position: absolute;
@@ -5145,7 +4996,7 @@ select.uk-form-width-xsmall {
5145
4996
  border-left: 1px solid #e5e5e5;
5146
4997
  }
5147
4998
  /* Vertical */
5148
- .uk-grid-divider.uk-grid-stack > :not(.uk-first-row)::before {
4999
+ .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
5149
5000
  content: "";
5150
5001
  position: absolute;
5151
5002
  left: 0;
@@ -5166,10 +5017,10 @@ select.uk-form-width-xsmall {
5166
5017
  left: 30px;
5167
5018
  }
5168
5019
  /* Vertical */
5169
- .uk-grid-divider.uk-grid-stack {
5170
- row-gap: 60px;
5020
+ .uk-grid-divider.uk-grid-stack > .uk-grid-margin {
5021
+ margin-top: 60px;
5171
5022
  }
5172
- .uk-grid-divider.uk-grid-stack > :not(.uk-first-row)::before {
5023
+ .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
5173
5024
  top: -30px;
5174
5025
  left: 60px;
5175
5026
  }
@@ -5186,10 +5037,10 @@ select.uk-form-width-xsmall {
5186
5037
  left: 40px;
5187
5038
  }
5188
5039
  /* Vertical */
5189
- .uk-grid-divider.uk-grid-stack {
5190
- row-gap: 80px;
5040
+ .uk-grid-divider.uk-grid-stack > .uk-grid-margin {
5041
+ margin-top: 80px;
5191
5042
  }
5192
- .uk-grid-divider.uk-grid-stack > :not(.uk-first-row)::before {
5043
+ .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
5193
5044
  top: -40px;
5194
5045
  left: 80px;
5195
5046
  }
@@ -5211,17 +5062,18 @@ select.uk-form-width-xsmall {
5211
5062
  left: 15px;
5212
5063
  }
5213
5064
  /* Vertical */
5214
- .uk-grid-divider.uk-grid-stack:where(.uk-grid-small, .uk-grid-row-small) {
5215
- row-gap: 30px;
5065
+ .uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin,
5066
+ .uk-grid-divider.uk-grid-row-small.uk-grid-stack > .uk-grid-margin {
5067
+ margin-top: 30px;
5216
5068
  }
5217
- .uk-grid-divider.uk-grid-stack.uk-grid-small > :not(.uk-first-row)::before {
5069
+ .uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin::before {
5218
5070
  top: -15px;
5219
5071
  left: 30px;
5220
5072
  }
5221
- .uk-grid-divider.uk-grid-stack.uk-grid-row-small > :not(.uk-first-row)::before {
5073
+ .uk-grid-divider.uk-grid-row-small.uk-grid-stack > .uk-grid-margin::before {
5222
5074
  top: -15px;
5223
5075
  }
5224
- .uk-grid-divider.uk-grid-stack.uk-grid-column-small > :not(.uk-first-row)::before {
5076
+ .uk-grid-divider.uk-grid-column-small.uk-grid-stack > .uk-grid-margin::before {
5225
5077
  left: 30px;
5226
5078
  }
5227
5079
  /*
@@ -5241,17 +5093,18 @@ select.uk-form-width-xsmall {
5241
5093
  left: 30px;
5242
5094
  }
5243
5095
  /* Vertical */
5244
- .uk-grid-divider.uk-grid-stack:where(.uk-grid-medium, .uk-grid-row-medium) {
5245
- row-gap: 60px;
5096
+ .uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin,
5097
+ .uk-grid-divider.uk-grid-row-medium.uk-grid-stack > .uk-grid-margin {
5098
+ margin-top: 60px;
5246
5099
  }
5247
- .uk-grid-divider.uk-grid-stack.uk-grid-medium > :not(.uk-first-row)::before {
5100
+ .uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin::before {
5248
5101
  top: -30px;
5249
5102
  left: 60px;
5250
5103
  }
5251
- .uk-grid-divider.uk-grid-stack.uk-grid-row-medium > :not(.uk-first-row)::before {
5104
+ .uk-grid-divider.uk-grid-row-medium.uk-grid-stack > .uk-grid-margin::before {
5252
5105
  top: -30px;
5253
5106
  }
5254
- .uk-grid-divider.uk-grid-stack.uk-grid-column-medium > :not(.uk-first-row)::before {
5107
+ .uk-grid-divider.uk-grid-column-medium.uk-grid-stack > .uk-grid-margin::before {
5255
5108
  left: 60px;
5256
5109
  }
5257
5110
  /*
@@ -5271,17 +5124,18 @@ select.uk-form-width-xsmall {
5271
5124
  left: 40px;
5272
5125
  }
5273
5126
  /* Vertical */
5274
- .uk-grid-divider.uk-grid-stack:where(.uk-grid-large, .uk-grid-row-large) {
5275
- row-gap: 80px;
5127
+ .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin,
5128
+ .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin {
5129
+ margin-top: 80px;
5276
5130
  }
5277
- .uk-grid-divider.uk-grid-stack.uk-grid-large > :not(.uk-first-row)::before {
5131
+ .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
5278
5132
  top: -40px;
5279
5133
  left: 80px;
5280
5134
  }
5281
- .uk-grid-divider.uk-grid-stack.uk-grid-row-large > :not(.uk-first-row)::before {
5135
+ .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin::before {
5282
5136
  top: -40px;
5283
5137
  }
5284
- .uk-grid-divider.uk-grid-stack.uk-grid-column-large > :not(.uk-first-row)::before {
5138
+ .uk-grid-divider.uk-grid-column-large.uk-grid-stack > .uk-grid-margin::before {
5285
5139
  left: 80px;
5286
5140
  }
5287
5141
  /* Desktop and bigger */
@@ -5300,17 +5154,18 @@ select.uk-form-width-xsmall {
5300
5154
  left: 70px;
5301
5155
  }
5302
5156
  /* Vertical */
5303
- .uk-grid-divider.uk-grid-stack:where(.uk-grid-large, .uk-grid-row-large) {
5304
- row-gap: 140px;
5157
+ .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin,
5158
+ .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin {
5159
+ margin-top: 140px;
5305
5160
  }
5306
- .uk-grid-divider.uk-grid-stack.uk-grid-large > :not(.uk-first-row)::before {
5161
+ .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
5307
5162
  top: -70px;
5308
5163
  left: 140px;
5309
5164
  }
5310
- .uk-grid-divider.uk-grid-stack.uk-grid-row-large > :not(.uk-first-row)::before {
5165
+ .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin::before {
5311
5166
  top: -70px;
5312
5167
  }
5313
- .uk-grid-divider.uk-grid-stack.uk-grid-column-large > :not(.uk-first-row)::before {
5168
+ .uk-grid-divider.uk-grid-column-large.uk-grid-stack > .uk-grid-margin::before {
5314
5169
  left: 140px;
5315
5170
  }
5316
5171
  }
@@ -5359,7 +5214,7 @@ select.uk-form-width-xsmall {
5359
5214
  align-items: center;
5360
5215
  /* 2 */
5361
5216
  column-gap: 0.25em;
5362
- /* 3 */
5217
+ /* 3*/
5363
5218
  text-decoration: none;
5364
5219
  }
5365
5220
  /*
@@ -6829,39 +6684,6 @@ ul.uk-nav-sub {
6829
6684
  width: 80%;
6830
6685
  height: 80%;
6831
6686
  }
6832
- /* ========================================================================
6833
- Component: Logo
6834
- ========================================================================== */
6835
- /*
6836
- * 1. Style
6837
- * 2. Required for `a`
6838
- * 3. Behave like image but can be overridden through flex utility classes
6839
- */
6840
- .uk-logo {
6841
- /* 1 */
6842
- font-size: 1.5rem;
6843
- 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";
6844
- color: #333;
6845
- /* 2 */
6846
- text-decoration: none;
6847
- }
6848
- /* 3 */
6849
- :where(.uk-logo) {
6850
- display: inline-block;
6851
- vertical-align: middle;
6852
- }
6853
- /* Hover */
6854
- .uk-logo:hover {
6855
- color: #333;
6856
- /* 2 */
6857
- text-decoration: none;
6858
- }
6859
- .uk-logo :where(img:not([uk-svg]), svg, video) {
6860
- display: block;
6861
- }
6862
- .uk-logo-inverse:where(:not([uk-svg])) {
6863
- display: none;
6864
- }
6865
6687
  /* ========================================================================
6866
6688
  Component: Animation
6867
6689
  ========================================================================== */
@@ -8088,12 +7910,6 @@ th.uk-text-break,
8088
7910
  td.uk-text-break {
8089
7911
  word-break: break-word;
8090
7912
  }
8091
- /*
8092
- * Balance text when wrapping onto multiple lines
8093
- */
8094
- .uk-text-balance {
8095
- text-wrap: balance;
8096
- }
8097
7913
  /* Stroke modifiers
8098
7914
  ========================================================================== */
8099
7915
  .uk-text-stroke {
@@ -8871,6 +8687,94 @@ iframe[data-uk-cover] {
8871
8687
  .uk-box-shadow-hover-xlarge:hover {
8872
8688
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
8873
8689
  }
8690
+ /* Box-shadow bottom
8691
+ ========================================================================== */
8692
+ /*
8693
+ * 1. Set position.
8694
+ * 2. Set style
8695
+ * 3. Fix shadow being clipped in Safari if container is animated
8696
+ */
8697
+ @supports (filter: blur(0)) {
8698
+ .uk-box-shadow-bottom {
8699
+ display: inline-block;
8700
+ position: relative;
8701
+ z-index: 0;
8702
+ max-width: 100%;
8703
+ vertical-align: middle;
8704
+ }
8705
+ .uk-box-shadow-bottom::after {
8706
+ content: "";
8707
+ /* 1 */
8708
+ position: absolute;
8709
+ bottom: -30px;
8710
+ left: 0;
8711
+ right: 0;
8712
+ z-index: -1;
8713
+ /* 2 */
8714
+ height: 30px;
8715
+ border-radius: 100%;
8716
+ background: #444;
8717
+ filter: blur(20px);
8718
+ /* 3 */
8719
+ will-change: filter;
8720
+ }
8721
+ }
8722
+ /* Drop cap
8723
+ ========================================================================== */
8724
+ /*
8725
+ * 1. Firefox doesn't apply `::first-letter` if the first letter is inside child elements
8726
+ * https://bugzilla.mozilla.org/show_bug.cgi?id=214004
8727
+ * 2. In Firefox, a floating `::first-letter` doesn't have a line box and there for no `line-height`
8728
+ * https://bugzilla.mozilla.org/show_bug.cgi?id=317933
8729
+ */
8730
+ .uk-dropcap::first-letter,
8731
+ .uk-dropcap > p:first-of-type::first-letter {
8732
+ display: block;
8733
+ margin-right: 10px;
8734
+ float: left;
8735
+ font-size: 4.5em;
8736
+ line-height: 1;
8737
+ margin-bottom: -2px;
8738
+ }
8739
+ /* 2 */
8740
+ @-moz-document url-prefix() {
8741
+ .uk-dropcap::first-letter,
8742
+ .uk-dropcap > p:first-of-type::first-letter {
8743
+ margin-top: 1.1%;
8744
+ }
8745
+ }
8746
+ /* Logo
8747
+ ========================================================================== */
8748
+ /*
8749
+ * 1. Style
8750
+ * 2. Required for `a`
8751
+ * 3. Behave like image but can be overridden through flex utility classes
8752
+ */
8753
+ .uk-logo {
8754
+ /* 1 */
8755
+ font-size: 1.5rem;
8756
+ 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";
8757
+ color: #333;
8758
+ /* 2 */
8759
+ text-decoration: none;
8760
+ }
8761
+ /* 3 */
8762
+ :where(.uk-logo) {
8763
+ display: inline-block;
8764
+ vertical-align: middle;
8765
+ }
8766
+ /* Hover */
8767
+ .uk-logo:hover {
8768
+ color: #333;
8769
+ /* 1 */
8770
+ text-decoration: none;
8771
+ }
8772
+ .uk-logo :where(img, svg, video) {
8773
+ display: block;
8774
+ }
8775
+ .uk-logo-inverse {
8776
+ display: none;
8777
+ }
8874
8778
  /* Disabled State
8875
8779
  ========================================================================== */
8876
8780
  .uk-disabled {
@@ -9365,339 +9269,307 @@ iframe[data-uk-cover] {
9365
9269
  /* ========================================================================
9366
9270
  Component: Margin
9367
9271
  ========================================================================== */
9368
- /* Two or more directions
9369
- ========================================================================== */
9370
9272
  /*
9371
- * Sizes
9273
+ * Default
9372
9274
  */
9373
9275
  .uk-margin {
9374
9276
  margin-bottom: 20px;
9375
9277
  }
9376
9278
  * + .uk-margin {
9377
- margin-top: 20px;
9378
- }
9379
- .uk-margin-xsmall {
9380
- margin-bottom: 5px;
9381
- }
9382
- * + .uk-margin-xsmall {
9383
- margin-top: 5px;
9384
- }
9385
- .uk-margin-small {
9386
- margin-bottom: 10px;
9387
- }
9388
- * + .uk-margin-small {
9389
- margin-top: 10px;
9390
- }
9391
- .uk-margin-medium {
9392
- margin-bottom: 40px;
9393
- }
9394
- * + .uk-margin-medium {
9395
- margin-top: 40px;
9396
- }
9397
- .uk-margin-large {
9398
- margin-bottom: 40px;
9399
- }
9400
- * + .uk-margin-large {
9401
- margin-top: 40px;
9402
- }
9403
- .uk-margin-xlarge {
9404
- margin-bottom: 70px;
9405
- }
9406
- * + .uk-margin-xlarge {
9407
- margin-top: 70px;
9408
- }
9409
- /* Desktop and bigger */
9410
- @media (min-width: 1200px) {
9411
- .uk-margin-large {
9412
- margin-bottom: 70px;
9413
- }
9414
- * + .uk-margin-large {
9415
- margin-top: 70px;
9416
- }
9417
- .uk-margin-xlarge {
9418
- margin-bottom: 140px;
9419
- }
9420
- * + .uk-margin-xlarge {
9421
- margin-top: 140px;
9422
- }
9423
- }
9424
- /*
9425
- * Auto
9426
- */
9427
- .uk-margin-auto-vertical {
9428
- margin-top: auto;
9429
- margin-bottom: auto;
9430
- }
9431
- .uk-margin-auto-vertical-gap {
9432
- margin-bottom: auto;
9433
- }
9434
- * + .uk-margin-auto-vertical-gap {
9435
- margin-top: auto;
9436
- }
9437
- .uk-margin-auto {
9438
- margin-left: auto;
9439
- margin-right: auto;
9440
- }
9441
- /* Phone landscape and bigger */
9442
- @media (min-width: 640px) {
9443
- .uk-margin-auto\@s {
9444
- margin-left: auto;
9445
- margin-right: auto;
9446
- }
9447
- }
9448
- /* Tablet landscape and bigger */
9449
- @media (min-width: 960px) {
9450
- .uk-margin-auto\@m {
9451
- margin-left: auto;
9452
- margin-right: auto;
9453
- }
9454
- }
9455
- /* Desktop and bigger */
9456
- @media (min-width: 1200px) {
9457
- .uk-margin-auto\@l {
9458
- margin-left: auto;
9459
- margin-right: auto;
9460
- }
9461
- }
9462
- /* Large screen and bigger */
9463
- @media (min-width: 1600px) {
9464
- .uk-margin-auto\@xl {
9465
- margin-left: auto;
9466
- margin-right: auto;
9467
- }
9468
- }
9469
- /*
9470
- * Remove
9471
- */
9472
- .uk-margin-remove {
9473
- margin: 0;
9474
- }
9475
- .uk-margin-remove-vertical {
9476
- margin-top: 0;
9477
- margin-bottom: 0;
9279
+ margin-top: 20px !important;
9478
9280
  }
9479
- /* One direction
9480
- ========================================================================== */
9481
- /*
9482
- * Sizes
9483
- */
9484
9281
  .uk-margin-top {
9485
- margin-top: 20px;
9282
+ margin-top: 20px !important;
9486
9283
  }
9487
9284
  .uk-margin-bottom {
9488
- margin-bottom: 20px;
9285
+ margin-bottom: 20px !important;
9489
9286
  }
9490
9287
  .uk-margin-left {
9491
- margin-left: 20px;
9288
+ margin-left: 20px !important;
9492
9289
  }
9493
9290
  .uk-margin-right {
9494
- margin-right: 20px;
9291
+ margin-right: 20px !important;
9292
+ }
9293
+ /* XSmall
9294
+ ========================================================================== */
9295
+ .uk-margin-xsmall {
9296
+ margin-bottom: 5px;
9297
+ }
9298
+ * + .uk-margin-xsmall {
9299
+ margin-top: 5px !important;
9495
9300
  }
9496
9301
  .uk-margin-xsmall-top {
9497
- margin-top: 5px;
9302
+ margin-top: 5px !important;
9498
9303
  }
9499
9304
  .uk-margin-xsmall-bottom {
9500
- margin-bottom: 5px;
9305
+ margin-bottom: 5px !important;
9501
9306
  }
9502
9307
  .uk-margin-xsmall-left {
9503
- margin-left: 5px;
9308
+ margin-left: 5px !important;
9504
9309
  }
9505
9310
  .uk-margin-xsmall-right {
9506
- margin-right: 5px;
9311
+ margin-right: 5px !important;
9312
+ }
9313
+ /* Small
9314
+ ========================================================================== */
9315
+ .uk-margin-small {
9316
+ margin-bottom: 10px;
9317
+ }
9318
+ * + .uk-margin-small {
9319
+ margin-top: 10px !important;
9507
9320
  }
9508
9321
  .uk-margin-small-top {
9509
- margin-top: 10px;
9322
+ margin-top: 10px !important;
9510
9323
  }
9511
9324
  .uk-margin-small-bottom {
9512
- margin-bottom: 10px;
9325
+ margin-bottom: 10px !important;
9513
9326
  }
9514
9327
  .uk-margin-small-left {
9515
- margin-left: 10px;
9328
+ margin-left: 10px !important;
9516
9329
  }
9517
9330
  .uk-margin-small-right {
9518
- margin-right: 10px;
9331
+ margin-right: 10px !important;
9332
+ }
9333
+ /* Medium
9334
+ ========================================================================== */
9335
+ .uk-margin-medium {
9336
+ margin-bottom: 40px;
9337
+ }
9338
+ * + .uk-margin-medium {
9339
+ margin-top: 40px !important;
9519
9340
  }
9520
9341
  .uk-margin-medium-top {
9521
- margin-top: 40px;
9342
+ margin-top: 40px !important;
9522
9343
  }
9523
9344
  .uk-margin-medium-bottom {
9524
- margin-bottom: 40px;
9345
+ margin-bottom: 40px !important;
9525
9346
  }
9526
9347
  .uk-margin-medium-left {
9527
- margin-left: 40px;
9348
+ margin-left: 40px !important;
9528
9349
  }
9529
9350
  .uk-margin-medium-right {
9530
- margin-right: 40px;
9351
+ margin-right: 40px !important;
9352
+ }
9353
+ /* Large
9354
+ ========================================================================== */
9355
+ .uk-margin-large {
9356
+ margin-bottom: 40px;
9357
+ }
9358
+ * + .uk-margin-large {
9359
+ margin-top: 40px !important;
9531
9360
  }
9532
9361
  .uk-margin-large-top {
9533
- margin-top: 40px;
9362
+ margin-top: 40px !important;
9534
9363
  }
9535
9364
  .uk-margin-large-bottom {
9536
- margin-bottom: 40px;
9365
+ margin-bottom: 40px !important;
9537
9366
  }
9538
9367
  .uk-margin-large-left {
9539
- margin-left: 40px;
9368
+ margin-left: 40px !important;
9540
9369
  }
9541
9370
  .uk-margin-large-right {
9542
- margin-right: 40px;
9543
- }
9544
- .uk-margin-xlarge-top {
9545
- margin-top: 70px;
9546
- }
9547
- .uk-margin-xlarge-bottom {
9548
- margin-bottom: 70px;
9549
- }
9550
- .uk-margin-xlarge-left {
9551
- margin-left: 70px;
9552
- }
9553
- .uk-margin-xlarge-right {
9554
- margin-right: 70px;
9371
+ margin-right: 40px !important;
9555
9372
  }
9556
9373
  /* Desktop and bigger */
9557
9374
  @media (min-width: 1200px) {
9375
+ .uk-margin-large {
9376
+ margin-bottom: 70px;
9377
+ }
9378
+ * + .uk-margin-large {
9379
+ margin-top: 70px !important;
9380
+ }
9558
9381
  .uk-margin-large-top {
9559
- margin-top: 70px;
9382
+ margin-top: 70px !important;
9560
9383
  }
9561
9384
  .uk-margin-large-bottom {
9562
- margin-bottom: 70px;
9385
+ margin-bottom: 70px !important;
9563
9386
  }
9564
9387
  .uk-margin-large-left {
9565
- margin-left: 70px;
9388
+ margin-left: 70px !important;
9389
+ }
9390
+ .uk-margin-large-right {
9391
+ margin-right: 70px !important;
9392
+ }
9393
+ }
9394
+ /* XLarge
9395
+ ========================================================================== */
9396
+ .uk-margin-xlarge {
9397
+ margin-bottom: 70px;
9398
+ }
9399
+ * + .uk-margin-xlarge {
9400
+ margin-top: 70px !important;
9401
+ }
9402
+ .uk-margin-xlarge-top {
9403
+ margin-top: 70px !important;
9404
+ }
9405
+ .uk-margin-xlarge-bottom {
9406
+ margin-bottom: 70px !important;
9407
+ }
9408
+ .uk-margin-xlarge-left {
9409
+ margin-left: 70px !important;
9410
+ }
9411
+ .uk-margin-xlarge-right {
9412
+ margin-right: 70px !important;
9413
+ }
9414
+ /* Desktop and bigger */
9415
+ @media (min-width: 1200px) {
9416
+ .uk-margin-xlarge {
9417
+ margin-bottom: 140px;
9566
9418
  }
9567
- .uk-margin-large-right {
9568
- margin-right: 70px;
9419
+ * + .uk-margin-xlarge {
9420
+ margin-top: 140px !important;
9569
9421
  }
9570
9422
  .uk-margin-xlarge-top {
9571
- margin-top: 140px;
9423
+ margin-top: 140px !important;
9572
9424
  }
9573
9425
  .uk-margin-xlarge-bottom {
9574
- margin-bottom: 140px;
9426
+ margin-bottom: 140px !important;
9575
9427
  }
9576
9428
  .uk-margin-xlarge-left {
9577
- margin-left: 140px;
9429
+ margin-left: 140px !important;
9578
9430
  }
9579
9431
  .uk-margin-xlarge-right {
9580
- margin-right: 140px;
9432
+ margin-right: 140px !important;
9581
9433
  }
9582
9434
  }
9583
- /*
9584
- * Auto
9585
- */
9435
+ /* Auto
9436
+ ========================================================================== */
9437
+ .uk-margin-auto {
9438
+ margin-left: auto !important;
9439
+ margin-right: auto !important;
9440
+ }
9586
9441
  .uk-margin-auto-top {
9587
- margin-top: auto;
9442
+ margin-top: auto !important;
9588
9443
  }
9589
9444
  .uk-margin-auto-bottom {
9590
- margin-bottom: auto;
9445
+ margin-bottom: auto !important;
9591
9446
  }
9592
9447
  .uk-margin-auto-left {
9593
- margin-left: auto;
9448
+ margin-left: auto !important;
9594
9449
  }
9595
9450
  .uk-margin-auto-right {
9596
- margin-right: auto;
9451
+ margin-right: auto !important;
9452
+ }
9453
+ .uk-margin-auto-vertical {
9454
+ margin-top: auto !important;
9455
+ margin-bottom: auto !important;
9597
9456
  }
9598
9457
  /* Phone landscape and bigger */
9599
9458
  @media (min-width: 640px) {
9459
+ .uk-margin-auto\@s {
9460
+ margin-left: auto !important;
9461
+ margin-right: auto !important;
9462
+ }
9600
9463
  .uk-margin-auto-left\@s {
9601
- margin-left: auto;
9464
+ margin-left: auto !important;
9602
9465
  }
9603
9466
  .uk-margin-auto-right\@s {
9604
- margin-right: auto;
9467
+ margin-right: auto !important;
9605
9468
  }
9606
9469
  }
9607
9470
  /* Tablet landscape and bigger */
9608
9471
  @media (min-width: 960px) {
9472
+ .uk-margin-auto\@m {
9473
+ margin-left: auto !important;
9474
+ margin-right: auto !important;
9475
+ }
9609
9476
  .uk-margin-auto-left\@m {
9610
- margin-left: auto;
9477
+ margin-left: auto !important;
9611
9478
  }
9612
9479
  .uk-margin-auto-right\@m {
9613
- margin-right: auto;
9480
+ margin-right: auto !important;
9614
9481
  }
9615
9482
  }
9616
9483
  /* Desktop and bigger */
9617
9484
  @media (min-width: 1200px) {
9485
+ .uk-margin-auto\@l {
9486
+ margin-left: auto !important;
9487
+ margin-right: auto !important;
9488
+ }
9618
9489
  .uk-margin-auto-left\@l {
9619
- margin-left: auto;
9490
+ margin-left: auto !important;
9620
9491
  }
9621
9492
  .uk-margin-auto-right\@l {
9622
- margin-right: auto;
9493
+ margin-right: auto !important;
9623
9494
  }
9624
9495
  }
9625
9496
  /* Large screen and bigger */
9626
9497
  @media (min-width: 1600px) {
9498
+ .uk-margin-auto\@xl {
9499
+ margin-left: auto !important;
9500
+ margin-right: auto !important;
9501
+ }
9627
9502
  .uk-margin-auto-left\@xl {
9628
- margin-left: auto;
9503
+ margin-left: auto !important;
9629
9504
  }
9630
9505
  .uk-margin-auto-right\@xl {
9631
- margin-right: auto;
9506
+ margin-right: auto !important;
9632
9507
  }
9633
9508
  }
9634
- /*
9635
- * Remove
9636
- */
9509
+ /* Remove
9510
+ ========================================================================== */
9511
+ .uk-margin-remove {
9512
+ margin: 0 !important;
9513
+ }
9637
9514
  .uk-margin-remove-top {
9638
- margin-top: 0;
9515
+ margin-top: 0 !important;
9639
9516
  }
9640
9517
  .uk-margin-remove-bottom {
9641
- margin-bottom: 0;
9518
+ margin-bottom: 0 !important;
9642
9519
  }
9643
9520
  .uk-margin-remove-left {
9644
- margin-left: 0;
9521
+ margin-left: 0 !important;
9645
9522
  }
9646
9523
  .uk-margin-remove-right {
9647
- margin-right: 0;
9524
+ margin-right: 0 !important;
9525
+ }
9526
+ .uk-margin-remove-vertical {
9527
+ margin-top: 0 !important;
9528
+ margin-bottom: 0 !important;
9648
9529
  }
9649
9530
  .uk-margin-remove-adjacent + *,
9650
9531
  .uk-margin-remove-first-child > :first-child {
9651
- margin-top: 0;
9532
+ margin-top: 0 !important;
9652
9533
  }
9653
9534
  .uk-margin-remove-last-child > :last-child {
9654
- margin-bottom: 0;
9535
+ margin-bottom: 0 !important;
9655
9536
  }
9656
9537
  /* Phone landscape and bigger */
9657
9538
  @media (min-width: 640px) {
9658
9539
  .uk-margin-remove-left\@s {
9659
- margin-left: 0;
9540
+ margin-left: 0 !important;
9660
9541
  }
9661
9542
  .uk-margin-remove-right\@s {
9662
- margin-right: 0;
9543
+ margin-right: 0 !important;
9663
9544
  }
9664
9545
  }
9665
9546
  /* Tablet landscape and bigger */
9666
9547
  @media (min-width: 960px) {
9667
9548
  .uk-margin-remove-left\@m {
9668
- margin-left: 0;
9549
+ margin-left: 0 !important;
9669
9550
  }
9670
9551
  .uk-margin-remove-right\@m {
9671
- margin-right: 0;
9552
+ margin-right: 0 !important;
9672
9553
  }
9673
9554
  }
9674
9555
  /* Desktop and bigger */
9675
9556
  @media (min-width: 1200px) {
9676
9557
  .uk-margin-remove-left\@l {
9677
- margin-left: 0;
9558
+ margin-left: 0 !important;
9678
9559
  }
9679
9560
  .uk-margin-remove-right\@l {
9680
- margin-right: 0;
9561
+ margin-right: 0 !important;
9681
9562
  }
9682
9563
  }
9683
9564
  /* Large screen and bigger */
9684
9565
  @media (min-width: 1600px) {
9685
9566
  .uk-margin-remove-left\@xl {
9686
- margin-left: 0;
9567
+ margin-left: 0 !important;
9687
9568
  }
9688
9569
  .uk-margin-remove-right\@xl {
9689
- margin-right: 0;
9570
+ margin-right: 0 !important;
9690
9571
  }
9691
9572
  }
9692
- /*
9693
- * Trim
9694
- */
9695
- .uk-margin-trim-block > :first-child {
9696
- margin-top: 0;
9697
- }
9698
- .uk-margin-trim-block > :last-child {
9699
- margin-bottom: 0;
9700
- }
9701
9573
  /* ========================================================================
9702
9574
  Component: Padding
9703
9575
  ========================================================================== */
@@ -9729,27 +9601,27 @@ iframe[data-uk-cover] {
9729
9601
  /* Remove
9730
9602
  ========================================================================== */
9731
9603
  .uk-padding-remove {
9732
- padding: 0;
9604
+ padding: 0 !important;
9733
9605
  }
9734
9606
  .uk-padding-remove-top {
9735
- padding-top: 0;
9607
+ padding-top: 0 !important;
9736
9608
  }
9737
9609
  .uk-padding-remove-bottom {
9738
- padding-bottom: 0;
9610
+ padding-bottom: 0 !important;
9739
9611
  }
9740
9612
  .uk-padding-remove-left {
9741
- padding-left: 0;
9613
+ padding-left: 0 !important;
9742
9614
  }
9743
9615
  .uk-padding-remove-right {
9744
- padding-right: 0;
9616
+ padding-right: 0 !important;
9745
9617
  }
9746
9618
  .uk-padding-remove-vertical {
9747
- padding-top: 0;
9748
- padding-bottom: 0;
9619
+ padding-top: 0 !important;
9620
+ padding-bottom: 0 !important;
9749
9621
  }
9750
9622
  .uk-padding-remove-horizontal {
9751
- padding-left: 0;
9752
- padding-right: 0;
9623
+ padding-left: 0 !important;
9624
+ padding-right: 0 !important;
9753
9625
  }
9754
9626
  /* ========================================================================
9755
9627
  Component: Position
@@ -11651,202 +11523,16 @@ a.uk-offcanvas-bar:hover .uk-icon-overlay {
11651
11523
  color: rgba(255, 255, 255, 0.5);
11652
11524
  }
11653
11525
  .uk-light .uk-form-icon:hover,
11654
- .uk-section-primary:not(.uk-preserve-color) .uk-form-icon:hover,
11655
- .uk-section-secondary:not(.uk-preserve-color) .uk-form-icon:hover,
11656
- .uk-tile-primary:not(.uk-preserve-color) .uk-form-icon:hover,
11657
- .uk-tile-secondary:not(.uk-preserve-color) .uk-form-icon:hover,
11658
- .uk-card-primary.uk-card-body .uk-form-icon:hover,
11659
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-form-icon:hover,
11660
- .uk-card-secondary.uk-card-body .uk-form-icon:hover,
11661
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-form-icon:hover,
11662
- .uk-overlay-primary .uk-form-icon:hover,
11663
- .uk-offcanvas-bar .uk-form-icon:hover {
11664
- color: rgba(255, 255, 255, 0.7);
11665
- }
11666
- .uk-light .uk-search-input,
11667
- .uk-section-primary:not(.uk-preserve-color) .uk-search-input,
11668
- .uk-section-secondary:not(.uk-preserve-color) .uk-search-input,
11669
- .uk-tile-primary:not(.uk-preserve-color) .uk-search-input,
11670
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search-input,
11671
- .uk-card-primary.uk-card-body .uk-search-input,
11672
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-input,
11673
- .uk-card-secondary.uk-card-body .uk-search-input,
11674
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-input,
11675
- .uk-overlay-primary .uk-search-input,
11676
- .uk-offcanvas-bar .uk-search-input {
11677
- color: rgba(255, 255, 255, 0.7);
11678
- }
11679
- .uk-light .uk-search-input::placeholder,
11680
- .uk-section-primary:not(.uk-preserve-color) .uk-search-input::placeholder,
11681
- .uk-section-secondary:not(.uk-preserve-color) .uk-search-input::placeholder,
11682
- .uk-tile-primary:not(.uk-preserve-color) .uk-search-input::placeholder,
11683
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search-input::placeholder,
11684
- .uk-card-primary.uk-card-body .uk-search-input::placeholder,
11685
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-input::placeholder,
11686
- .uk-card-secondary.uk-card-body .uk-search-input::placeholder,
11687
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-input::placeholder,
11688
- .uk-overlay-primary .uk-search-input::placeholder,
11689
- .uk-offcanvas-bar .uk-search-input::placeholder {
11690
- color: rgba(255, 255, 255, 0.5);
11691
- }
11692
- .uk-light .uk-search .uk-search-icon,
11693
- .uk-section-primary:not(.uk-preserve-color) .uk-search .uk-search-icon,
11694
- .uk-section-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon,
11695
- .uk-tile-primary:not(.uk-preserve-color) .uk-search .uk-search-icon,
11696
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon,
11697
- .uk-card-primary.uk-card-body .uk-search .uk-search-icon,
11698
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon,
11699
- .uk-card-secondary.uk-card-body .uk-search .uk-search-icon,
11700
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon,
11701
- .uk-overlay-primary .uk-search .uk-search-icon,
11702
- .uk-offcanvas-bar .uk-search .uk-search-icon {
11703
- color: rgba(255, 255, 255, 0.5);
11704
- }
11705
- .uk-light .uk-search .uk-search-icon:hover,
11706
- .uk-section-primary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
11707
- .uk-section-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
11708
- .uk-tile-primary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
11709
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
11710
- .uk-card-primary.uk-card-body .uk-search .uk-search-icon:hover,
11711
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon:hover,
11712
- .uk-card-secondary.uk-card-body .uk-search .uk-search-icon:hover,
11713
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon:hover,
11714
- .uk-overlay-primary .uk-search .uk-search-icon:hover,
11715
- .uk-offcanvas-bar .uk-search .uk-search-icon:hover {
11716
- color: rgba(255, 255, 255, 0.5);
11717
- }
11718
- .uk-light .uk-search-default .uk-search-input,
11719
- .uk-section-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
11720
- .uk-section-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
11721
- .uk-tile-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
11722
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
11723
- .uk-card-primary.uk-card-body .uk-search-default .uk-search-input,
11724
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input,
11725
- .uk-card-secondary.uk-card-body .uk-search-default .uk-search-input,
11726
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input,
11727
- .uk-overlay-primary .uk-search-default .uk-search-input,
11728
- .uk-offcanvas-bar .uk-search-default .uk-search-input {
11729
- background-color: transparent;
11730
- border-color: rgba(255, 255, 255, 0.2);
11731
- }
11732
- .uk-light .uk-search-default .uk-search-input:focus,
11733
- .uk-section-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
11734
- .uk-section-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
11735
- .uk-tile-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
11736
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
11737
- .uk-card-primary.uk-card-body .uk-search-default .uk-search-input:focus,
11738
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input:focus,
11739
- .uk-card-secondary.uk-card-body .uk-search-default .uk-search-input:focus,
11740
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input:focus,
11741
- .uk-overlay-primary .uk-search-default .uk-search-input:focus,
11742
- .uk-offcanvas-bar .uk-search-default .uk-search-input:focus {
11743
- background-color: rgba(0, 0, 0, 0.05);
11744
- }
11745
- .uk-light .uk-search-navbar .uk-search-input,
11746
- .uk-section-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
11747
- .uk-section-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
11748
- .uk-tile-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
11749
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
11750
- .uk-card-primary.uk-card-body .uk-search-navbar .uk-search-input,
11751
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input,
11752
- .uk-card-secondary.uk-card-body .uk-search-navbar .uk-search-input,
11753
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input,
11754
- .uk-overlay-primary .uk-search-navbar .uk-search-input,
11755
- .uk-offcanvas-bar .uk-search-navbar .uk-search-input {
11756
- background-color: transparent;
11757
- border-color: rgba(255, 255, 255, 0.2);
11758
- }
11759
- .uk-light .uk-search-navbar .uk-search-input:focus,
11760
- .uk-section-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,
11761
- .uk-section-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,
11762
- .uk-tile-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,
11763
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,
11764
- .uk-card-primary.uk-card-body .uk-search-navbar .uk-search-input:focus,
11765
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input:focus,
11766
- .uk-card-secondary.uk-card-body .uk-search-navbar .uk-search-input:focus,
11767
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input:focus,
11768
- .uk-overlay-primary .uk-search-navbar .uk-search-input:focus,
11769
- .uk-offcanvas-bar .uk-search-navbar .uk-search-input:focus {
11770
- background-color: rgba(0, 0, 0, 0.05);
11771
- }
11772
- .uk-light .uk-search-medium .uk-search-input,
11773
- .uk-section-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,
11774
- .uk-section-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,
11775
- .uk-tile-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,
11776
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,
11777
- .uk-card-primary.uk-card-body .uk-search-medium .uk-search-input,
11778
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input,
11779
- .uk-card-secondary.uk-card-body .uk-search-medium .uk-search-input,
11780
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input,
11781
- .uk-overlay-primary .uk-search-medium .uk-search-input,
11782
- .uk-offcanvas-bar .uk-search-medium .uk-search-input {
11783
- background-color: transparent;
11784
- border-color: rgba(255, 255, 255, 0.2);
11785
- }
11786
- .uk-light .uk-search-medium .uk-search-input:focus,
11787
- .uk-section-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11788
- .uk-section-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11789
- .uk-tile-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11790
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
11791
- .uk-card-primary.uk-card-body .uk-search-medium .uk-search-input:focus,
11792
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input:focus,
11793
- .uk-card-secondary.uk-card-body .uk-search-medium .uk-search-input:focus,
11794
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input:focus,
11795
- .uk-overlay-primary .uk-search-medium .uk-search-input:focus,
11796
- .uk-offcanvas-bar .uk-search-medium .uk-search-input:focus {
11797
- background-color: rgba(0, 0, 0, 0.05);
11798
- }
11799
- .uk-light .uk-search-large .uk-search-input,
11800
- .uk-section-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
11801
- .uk-section-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
11802
- .uk-tile-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
11803
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
11804
- .uk-card-primary.uk-card-body .uk-search-large .uk-search-input,
11805
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input,
11806
- .uk-card-secondary.uk-card-body .uk-search-large .uk-search-input,
11807
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input,
11808
- .uk-overlay-primary .uk-search-large .uk-search-input,
11809
- .uk-offcanvas-bar .uk-search-large .uk-search-input {
11810
- background-color: transparent;
11811
- border-color: rgba(255, 255, 255, 0.2);
11812
- }
11813
- .uk-light .uk-search-large .uk-search-input:focus,
11814
- .uk-section-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11815
- .uk-section-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11816
- .uk-tile-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11817
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
11818
- .uk-card-primary.uk-card-body .uk-search-large .uk-search-input:focus,
11819
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input:focus,
11820
- .uk-card-secondary.uk-card-body .uk-search-large .uk-search-input:focus,
11821
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input:focus,
11822
- .uk-overlay-primary .uk-search-large .uk-search-input:focus,
11823
- .uk-offcanvas-bar .uk-search-large .uk-search-input:focus {
11824
- background-color: rgba(0, 0, 0, 0.05);
11825
- }
11826
- .uk-light .uk-search-toggle,
11827
- .uk-section-primary:not(.uk-preserve-color) .uk-search-toggle,
11828
- .uk-section-secondary:not(.uk-preserve-color) .uk-search-toggle,
11829
- .uk-tile-primary:not(.uk-preserve-color) .uk-search-toggle,
11830
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search-toggle,
11831
- .uk-card-primary.uk-card-body .uk-search-toggle,
11832
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-toggle,
11833
- .uk-card-secondary.uk-card-body .uk-search-toggle,
11834
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-toggle,
11835
- .uk-overlay-primary .uk-search-toggle,
11836
- .uk-offcanvas-bar .uk-search-toggle {
11837
- color: rgba(255, 255, 255, 0.5);
11838
- }
11839
- .uk-light .uk-search-toggle:hover,
11840
- .uk-section-primary:not(.uk-preserve-color) .uk-search-toggle:hover,
11841
- .uk-section-secondary:not(.uk-preserve-color) .uk-search-toggle:hover,
11842
- .uk-tile-primary:not(.uk-preserve-color) .uk-search-toggle:hover,
11843
- .uk-tile-secondary:not(.uk-preserve-color) .uk-search-toggle:hover,
11844
- .uk-card-primary.uk-card-body .uk-search-toggle:hover,
11845
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-toggle:hover,
11846
- .uk-card-secondary.uk-card-body .uk-search-toggle:hover,
11847
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-toggle:hover,
11848
- .uk-overlay-primary .uk-search-toggle:hover,
11849
- .uk-offcanvas-bar .uk-search-toggle:hover {
11526
+ .uk-section-primary:not(.uk-preserve-color) .uk-form-icon:hover,
11527
+ .uk-section-secondary:not(.uk-preserve-color) .uk-form-icon:hover,
11528
+ .uk-tile-primary:not(.uk-preserve-color) .uk-form-icon:hover,
11529
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-form-icon:hover,
11530
+ .uk-card-primary.uk-card-body .uk-form-icon:hover,
11531
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-form-icon:hover,
11532
+ .uk-card-secondary.uk-card-body .uk-form-icon:hover,
11533
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-form-icon:hover,
11534
+ .uk-overlay-primary .uk-form-icon:hover,
11535
+ .uk-offcanvas-bar .uk-form-icon:hover {
11850
11536
  color: rgba(255, 255, 255, 0.7);
11851
11537
  }
11852
11538
  .uk-light .uk-button-default,
@@ -12236,6 +11922,192 @@ a.uk-offcanvas-bar:hover .uk-icon-overlay {
12236
11922
  .uk-offcanvas-bar .uk-article-meta {
12237
11923
  color: rgba(255, 255, 255, 0.5);
12238
11924
  }
11925
+ .uk-light .uk-search-input,
11926
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-input,
11927
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-input,
11928
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-input,
11929
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-input,
11930
+ .uk-card-primary.uk-card-body .uk-search-input,
11931
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-input,
11932
+ .uk-card-secondary.uk-card-body .uk-search-input,
11933
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-input,
11934
+ .uk-overlay-primary .uk-search-input,
11935
+ .uk-offcanvas-bar .uk-search-input {
11936
+ color: rgba(255, 255, 255, 0.7);
11937
+ }
11938
+ .uk-light .uk-search-input::placeholder,
11939
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-input::placeholder,
11940
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-input::placeholder,
11941
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-input::placeholder,
11942
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-input::placeholder,
11943
+ .uk-card-primary.uk-card-body .uk-search-input::placeholder,
11944
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-input::placeholder,
11945
+ .uk-card-secondary.uk-card-body .uk-search-input::placeholder,
11946
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-input::placeholder,
11947
+ .uk-overlay-primary .uk-search-input::placeholder,
11948
+ .uk-offcanvas-bar .uk-search-input::placeholder {
11949
+ color: rgba(255, 255, 255, 0.5);
11950
+ }
11951
+ .uk-light .uk-search .uk-search-icon,
11952
+ .uk-section-primary:not(.uk-preserve-color) .uk-search .uk-search-icon,
11953
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon,
11954
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search .uk-search-icon,
11955
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon,
11956
+ .uk-card-primary.uk-card-body .uk-search .uk-search-icon,
11957
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon,
11958
+ .uk-card-secondary.uk-card-body .uk-search .uk-search-icon,
11959
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon,
11960
+ .uk-overlay-primary .uk-search .uk-search-icon,
11961
+ .uk-offcanvas-bar .uk-search .uk-search-icon {
11962
+ color: rgba(255, 255, 255, 0.5);
11963
+ }
11964
+ .uk-light .uk-search .uk-search-icon:hover,
11965
+ .uk-section-primary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
11966
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
11967
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
11968
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
11969
+ .uk-card-primary.uk-card-body .uk-search .uk-search-icon:hover,
11970
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon:hover,
11971
+ .uk-card-secondary.uk-card-body .uk-search .uk-search-icon:hover,
11972
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon:hover,
11973
+ .uk-overlay-primary .uk-search .uk-search-icon:hover,
11974
+ .uk-offcanvas-bar .uk-search .uk-search-icon:hover {
11975
+ color: rgba(255, 255, 255, 0.5);
11976
+ }
11977
+ .uk-light .uk-search-default .uk-search-input,
11978
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
11979
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
11980
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
11981
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
11982
+ .uk-card-primary.uk-card-body .uk-search-default .uk-search-input,
11983
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input,
11984
+ .uk-card-secondary.uk-card-body .uk-search-default .uk-search-input,
11985
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input,
11986
+ .uk-overlay-primary .uk-search-default .uk-search-input,
11987
+ .uk-offcanvas-bar .uk-search-default .uk-search-input {
11988
+ background-color: transparent;
11989
+ border-color: rgba(255, 255, 255, 0.2);
11990
+ }
11991
+ .uk-light .uk-search-default .uk-search-input:focus,
11992
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
11993
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
11994
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
11995
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
11996
+ .uk-card-primary.uk-card-body .uk-search-default .uk-search-input:focus,
11997
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input:focus,
11998
+ .uk-card-secondary.uk-card-body .uk-search-default .uk-search-input:focus,
11999
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input:focus,
12000
+ .uk-overlay-primary .uk-search-default .uk-search-input:focus,
12001
+ .uk-offcanvas-bar .uk-search-default .uk-search-input:focus {
12002
+ background-color: rgba(0, 0, 0, 0.05);
12003
+ }
12004
+ .uk-light .uk-search-navbar .uk-search-input,
12005
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
12006
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
12007
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
12008
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
12009
+ .uk-card-primary.uk-card-body .uk-search-navbar .uk-search-input,
12010
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input,
12011
+ .uk-card-secondary.uk-card-body .uk-search-navbar .uk-search-input,
12012
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input,
12013
+ .uk-overlay-primary .uk-search-navbar .uk-search-input,
12014
+ .uk-offcanvas-bar .uk-search-navbar .uk-search-input {
12015
+ background-color: transparent;
12016
+ border-color: rgba(255, 255, 255, 0.2);
12017
+ }
12018
+ .uk-light .uk-search-navbar .uk-search-input:focus,
12019
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,
12020
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,
12021
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,
12022
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,
12023
+ .uk-card-primary.uk-card-body .uk-search-navbar .uk-search-input:focus,
12024
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input:focus,
12025
+ .uk-card-secondary.uk-card-body .uk-search-navbar .uk-search-input:focus,
12026
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input:focus,
12027
+ .uk-overlay-primary .uk-search-navbar .uk-search-input:focus,
12028
+ .uk-offcanvas-bar .uk-search-navbar .uk-search-input:focus {
12029
+ background-color: rgba(0, 0, 0, 0.05);
12030
+ }
12031
+ .uk-light .uk-search-medium .uk-search-input,
12032
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,
12033
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,
12034
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,
12035
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,
12036
+ .uk-card-primary.uk-card-body .uk-search-medium .uk-search-input,
12037
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input,
12038
+ .uk-card-secondary.uk-card-body .uk-search-medium .uk-search-input,
12039
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input,
12040
+ .uk-overlay-primary .uk-search-medium .uk-search-input,
12041
+ .uk-offcanvas-bar .uk-search-medium .uk-search-input {
12042
+ background-color: transparent;
12043
+ border-color: rgba(255, 255, 255, 0.2);
12044
+ }
12045
+ .uk-light .uk-search-medium .uk-search-input:focus,
12046
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
12047
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
12048
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
12049
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input:focus,
12050
+ .uk-card-primary.uk-card-body .uk-search-medium .uk-search-input:focus,
12051
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input:focus,
12052
+ .uk-card-secondary.uk-card-body .uk-search-medium .uk-search-input:focus,
12053
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input:focus,
12054
+ .uk-overlay-primary .uk-search-medium .uk-search-input:focus,
12055
+ .uk-offcanvas-bar .uk-search-medium .uk-search-input:focus {
12056
+ background-color: rgba(0, 0, 0, 0.05);
12057
+ }
12058
+ .uk-light .uk-search-large .uk-search-input,
12059
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
12060
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
12061
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
12062
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
12063
+ .uk-card-primary.uk-card-body .uk-search-large .uk-search-input,
12064
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input,
12065
+ .uk-card-secondary.uk-card-body .uk-search-large .uk-search-input,
12066
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input,
12067
+ .uk-overlay-primary .uk-search-large .uk-search-input,
12068
+ .uk-offcanvas-bar .uk-search-large .uk-search-input {
12069
+ background-color: transparent;
12070
+ border-color: rgba(255, 255, 255, 0.2);
12071
+ }
12072
+ .uk-light .uk-search-large .uk-search-input:focus,
12073
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
12074
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
12075
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
12076
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input:focus,
12077
+ .uk-card-primary.uk-card-body .uk-search-large .uk-search-input:focus,
12078
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input:focus,
12079
+ .uk-card-secondary.uk-card-body .uk-search-large .uk-search-input:focus,
12080
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input:focus,
12081
+ .uk-overlay-primary .uk-search-large .uk-search-input:focus,
12082
+ .uk-offcanvas-bar .uk-search-large .uk-search-input:focus {
12083
+ background-color: rgba(0, 0, 0, 0.05);
12084
+ }
12085
+ .uk-light .uk-search-toggle,
12086
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-toggle,
12087
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-toggle,
12088
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-toggle,
12089
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-toggle,
12090
+ .uk-card-primary.uk-card-body .uk-search-toggle,
12091
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-toggle,
12092
+ .uk-card-secondary.uk-card-body .uk-search-toggle,
12093
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-toggle,
12094
+ .uk-overlay-primary .uk-search-toggle,
12095
+ .uk-offcanvas-bar .uk-search-toggle {
12096
+ color: rgba(255, 255, 255, 0.5);
12097
+ }
12098
+ .uk-light .uk-search-toggle:hover,
12099
+ .uk-section-primary:not(.uk-preserve-color) .uk-search-toggle:hover,
12100
+ .uk-section-secondary:not(.uk-preserve-color) .uk-search-toggle:hover,
12101
+ .uk-tile-primary:not(.uk-preserve-color) .uk-search-toggle:hover,
12102
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-search-toggle:hover,
12103
+ .uk-card-primary.uk-card-body .uk-search-toggle:hover,
12104
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-search-toggle:hover,
12105
+ .uk-card-secondary.uk-card-body .uk-search-toggle:hover,
12106
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-toggle:hover,
12107
+ .uk-overlay-primary .uk-search-toggle:hover,
12108
+ .uk-offcanvas-bar .uk-search-toggle:hover {
12109
+ color: rgba(255, 255, 255, 0.7);
12110
+ }
12239
12111
  .uk-light .uk-accordion-default .uk-accordion-title,
12240
12112
  .uk-section-primary:not(.uk-preserve-color) .uk-accordion-default .uk-accordion-title,
12241
12113
  .uk-section-secondary:not(.uk-preserve-color) .uk-accordion-default .uk-accordion-title,
@@ -12340,17 +12212,17 @@ a.uk-offcanvas-bar:hover .uk-icon-overlay {
12340
12212
  .uk-offcanvas-bar .uk-grid-divider > :not(.uk-first-column)::before {
12341
12213
  border-left-color: rgba(255, 255, 255, 0.2);
12342
12214
  }
12343
- .uk-light .uk-grid-divider.uk-grid-stack > :not(.uk-first-row)::before,
12344
- .uk-section-primary:not(.uk-preserve-color) .uk-grid-divider.uk-grid-stack > :not(.uk-first-row)::before,
12345
- .uk-section-secondary:not(.uk-preserve-color) .uk-grid-divider.uk-grid-stack > :not(.uk-first-row)::before,
12346
- .uk-tile-primary:not(.uk-preserve-color) .uk-grid-divider.uk-grid-stack > :not(.uk-first-row)::before,
12347
- .uk-tile-secondary:not(.uk-preserve-color) .uk-grid-divider.uk-grid-stack > :not(.uk-first-row)::before,
12348
- .uk-card-primary.uk-card-body .uk-grid-divider.uk-grid-stack > :not(.uk-first-row)::before,
12349
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-grid-divider.uk-grid-stack > :not(.uk-first-row)::before,
12350
- .uk-card-secondary.uk-card-body .uk-grid-divider.uk-grid-stack > :not(.uk-first-row)::before,
12351
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-grid-divider.uk-grid-stack > :not(.uk-first-row)::before,
12352
- .uk-overlay-primary .uk-grid-divider.uk-grid-stack > :not(.uk-first-row)::before,
12353
- .uk-offcanvas-bar .uk-grid-divider.uk-grid-stack > :not(.uk-first-row)::before {
12215
+ .uk-light .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
12216
+ .uk-section-primary:not(.uk-preserve-color) .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
12217
+ .uk-section-secondary:not(.uk-preserve-color) .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
12218
+ .uk-tile-primary:not(.uk-preserve-color) .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
12219
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
12220
+ .uk-card-primary.uk-card-body .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
12221
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
12222
+ .uk-card-secondary.uk-card-body .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
12223
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
12224
+ .uk-overlay-primary .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
12225
+ .uk-offcanvas-bar .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
12354
12226
  border-top-color: rgba(255, 255, 255, 0.2);
12355
12227
  }
12356
12228
  .uk-light .uk-nav-default > li > a,
@@ -13218,58 +13090,6 @@ a.uk-offcanvas-bar:hover .uk-icon-overlay {
13218
13090
  background-color: rgba(255, 255, 255, 0.9);
13219
13091
  border-color: transparent;
13220
13092
  }
13221
- .uk-light .uk-logo,
13222
- .uk-section-primary:not(.uk-preserve-color) .uk-logo,
13223
- .uk-section-secondary:not(.uk-preserve-color) .uk-logo,
13224
- .uk-tile-primary:not(.uk-preserve-color) .uk-logo,
13225
- .uk-tile-secondary:not(.uk-preserve-color) .uk-logo,
13226
- .uk-card-primary.uk-card-body .uk-logo,
13227
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-logo,
13228
- .uk-card-secondary.uk-card-body .uk-logo,
13229
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo,
13230
- .uk-overlay-primary .uk-logo,
13231
- .uk-offcanvas-bar .uk-logo {
13232
- color: #fff;
13233
- }
13234
- .uk-light .uk-logo:hover,
13235
- .uk-section-primary:not(.uk-preserve-color) .uk-logo:hover,
13236
- .uk-section-secondary:not(.uk-preserve-color) .uk-logo:hover,
13237
- .uk-tile-primary:not(.uk-preserve-color) .uk-logo:hover,
13238
- .uk-tile-secondary:not(.uk-preserve-color) .uk-logo:hover,
13239
- .uk-card-primary.uk-card-body .uk-logo:hover,
13240
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-logo:hover,
13241
- .uk-card-secondary.uk-card-body .uk-logo:hover,
13242
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo:hover,
13243
- .uk-overlay-primary .uk-logo:hover,
13244
- .uk-offcanvas-bar .uk-logo:hover {
13245
- color: #fff;
13246
- }
13247
- .uk-light .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse:not([uk-svg]))):not(.uk-logo-inverse):not([uk-svg]),
13248
- .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]),
13249
- .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]),
13250
- .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]),
13251
- .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]),
13252
- .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]),
13253
- .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]),
13254
- .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]),
13255
- .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]),
13256
- .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]),
13257
- .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]) {
13258
- display: none;
13259
- }
13260
- .uk-light .uk-logo-inverse:not([uk-svg]),
13261
- .uk-section-primary:not(.uk-preserve-color) .uk-logo-inverse:not([uk-svg]),
13262
- .uk-section-secondary:not(.uk-preserve-color) .uk-logo-inverse:not([uk-svg]),
13263
- .uk-tile-primary:not(.uk-preserve-color) .uk-logo-inverse:not([uk-svg]),
13264
- .uk-tile-secondary:not(.uk-preserve-color) .uk-logo-inverse:not([uk-svg]),
13265
- .uk-card-primary.uk-card-body .uk-logo-inverse:not([uk-svg]),
13266
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-logo-inverse:not([uk-svg]),
13267
- .uk-card-secondary.uk-card-body .uk-logo-inverse:not([uk-svg]),
13268
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo-inverse:not([uk-svg]),
13269
- .uk-overlay-primary .uk-logo-inverse:not([uk-svg]),
13270
- .uk-offcanvas-bar .uk-logo-inverse:not([uk-svg]) {
13271
- display: block;
13272
- }
13273
13093
  .uk-light .uk-text-lead,
13274
13094
  .uk-section-primary:not(.uk-preserve-color) .uk-text-lead,
13275
13095
  .uk-section-secondary:not(.uk-preserve-color) .uk-text-lead,
@@ -13361,6 +13181,58 @@ a.uk-offcanvas-bar:hover .uk-icon-overlay {
13361
13181
  .uk-offcanvas-bar .uk-column-divider {
13362
13182
  column-rule-color: rgba(255, 255, 255, 0.2);
13363
13183
  }
13184
+ .uk-light .uk-logo,
13185
+ .uk-section-primary:not(.uk-preserve-color) .uk-logo,
13186
+ .uk-section-secondary:not(.uk-preserve-color) .uk-logo,
13187
+ .uk-tile-primary:not(.uk-preserve-color) .uk-logo,
13188
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-logo,
13189
+ .uk-card-primary.uk-card-body .uk-logo,
13190
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-logo,
13191
+ .uk-card-secondary.uk-card-body .uk-logo,
13192
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo,
13193
+ .uk-overlay-primary .uk-logo,
13194
+ .uk-offcanvas-bar .uk-logo {
13195
+ color: #fff;
13196
+ }
13197
+ .uk-light .uk-logo:hover,
13198
+ .uk-section-primary:not(.uk-preserve-color) .uk-logo:hover,
13199
+ .uk-section-secondary:not(.uk-preserve-color) .uk-logo:hover,
13200
+ .uk-tile-primary:not(.uk-preserve-color) .uk-logo:hover,
13201
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-logo:hover,
13202
+ .uk-card-primary.uk-card-body .uk-logo:hover,
13203
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-logo:hover,
13204
+ .uk-card-secondary.uk-card-body .uk-logo:hover,
13205
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo:hover,
13206
+ .uk-overlay-primary .uk-logo:hover,
13207
+ .uk-offcanvas-bar .uk-logo:hover {
13208
+ color: #fff;
13209
+ }
13210
+ .uk-light .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
13211
+ .uk-section-primary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
13212
+ .uk-section-secondary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
13213
+ .uk-tile-primary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
13214
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
13215
+ .uk-card-primary.uk-card-body .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
13216
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
13217
+ .uk-card-secondary.uk-card-body .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
13218
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
13219
+ .uk-overlay-primary .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
13220
+ .uk-offcanvas-bar .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse) {
13221
+ display: none;
13222
+ }
13223
+ .uk-light .uk-logo-inverse,
13224
+ .uk-section-primary:not(.uk-preserve-color) .uk-logo-inverse,
13225
+ .uk-section-secondary:not(.uk-preserve-color) .uk-logo-inverse,
13226
+ .uk-tile-primary:not(.uk-preserve-color) .uk-logo-inverse,
13227
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-logo-inverse,
13228
+ .uk-card-primary.uk-card-body .uk-logo-inverse,
13229
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-logo-inverse,
13230
+ .uk-card-secondary.uk-card-body .uk-logo-inverse,
13231
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo-inverse,
13232
+ .uk-overlay-primary .uk-logo-inverse,
13233
+ .uk-offcanvas-bar .uk-logo-inverse {
13234
+ display: block;
13235
+ }
13364
13236
  .uk-light .uk-table-striped > tr:nth-of-type(even):last-child,
13365
13237
  .uk-light .uk-table-striped tbody tr:nth-of-type(even):last-child,
13366
13238
  .uk-section-primary:not(.uk-preserve-color) .uk-table-striped > tr:nth-of-type(even):last-child,