Version Description
Download this release
Release Info
Developer | bc2018 |
Plugin | BC Menu Bar Cart Icon For WooCommerce By Binary Carpenter |
Version | 1.4.3 |
Comparing to | |
See all releases |
Code changes from version 1.37 to 1.4.3
- Initiator.php +40 -9
- bundle/css/backend.css +2 -14362
- bundle/css/frontend.css +1 -988
- bundle/js/frontend-bundle.min.js +1 -1
Initiator.php
CHANGED
@@ -4,19 +4,20 @@
|
|
4 |
* Plugin Name: BC Menubar Cart Icon For WooCommerce
|
5 |
* Plugin URI: https://www.binarycarpenter.com/app/bc-menu-cart-icon-plugin/
|
6 |
* Description: Ultimate customization for your menubar cart icon on WooCommerce store
|
7 |
-
* Version: 1.
|
8 |
* Author: BinaryCarpenter.com
|
9 |
* Author URI: https://www.binarycarpenter.com
|
10 |
* License: GPL2
|
11 |
* Text Domain: bc-menu-cart-woo
|
12 |
* WC requires at least: 3.0.0
|
13 |
-
* WC tested up to: 3.
|
14 |
*/
|
15 |
|
16 |
|
17 |
namespace BinaryCarpenter\BC_MNC;
|
18 |
|
19 |
include_once 'inc/Core.php';
|
|
|
20 |
|
21 |
include_once 'inc/Config.php';
|
22 |
include_once 'inc/BC_Options.php';
|
@@ -28,18 +29,22 @@ include_once 'inc/Cart_Display.php';
|
|
28 |
include_once 'inc/Helpers.php';
|
29 |
include_once 'inc/Options_Name.php';
|
30 |
include_once 'inc/Cart_Details.php';
|
|
|
|
|
31 |
|
32 |
|
33 |
use BinaryCarpenter\BC_MNC\Activation as Activation;
|
34 |
use BinaryCarpenter\BC_MNC\BC_Options as BC_Options;
|
35 |
-
use BinaryCarpenter\BC_MNC\Config as Config;
|
36 |
use BinaryCarpenter\BC_MNC\Options_Form as Options_Form;
|
37 |
use BinaryCarpenter\BC_MNC\Options_Name as Oname;
|
|
|
|
|
|
|
38 |
|
39 |
|
40 |
/*
|
41 |
-
* free 1.
|
42 |
-
* pro 2.
|
43 |
*/
|
44 |
|
45 |
/**
|
@@ -47,7 +52,17 @@ use BinaryCarpenter\BC_MNC\Options_Name as Oname;
|
|
47 |
* @package BinaryCarpenter\BC_MNC
|
48 |
*/
|
49 |
class Initiator {
|
50 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
* Construct.
|
52 |
*/
|
53 |
public function __construct() {
|
@@ -418,9 +433,13 @@ class Initiator {
|
|
418 |
|
419 |
$linked_options = BC_Options::get_all_options('bc_menu_cart_linked_menu')->posts;
|
420 |
|
421 |
-
if (count($linked_options) == 0)
|
422 |
return $items;
|
423 |
-
|
|
|
|
|
|
|
|
|
424 |
|
425 |
//now, check if this menu has an option attached to it. The id of the design option is the meta_value of
|
426 |
//a meta which has $menu_slug as key
|
@@ -473,5 +492,17 @@ class Initiator {
|
|
473 |
|
474 |
|
475 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
476 |
|
477 |
-
|
4 |
* Plugin Name: BC Menubar Cart Icon For WooCommerce
|
5 |
* Plugin URI: https://www.binarycarpenter.com/app/bc-menu-cart-icon-plugin/
|
6 |
* Description: Ultimate customization for your menubar cart icon on WooCommerce store
|
7 |
+
* Version: 1.43
|
8 |
* Author: BinaryCarpenter.com
|
9 |
* Author URI: https://www.binarycarpenter.com
|
10 |
* License: GPL2
|
11 |
* Text Domain: bc-menu-cart-woo
|
12 |
* WC requires at least: 3.0.0
|
13 |
+
* WC tested up to: 3.8.1
|
14 |
*/
|
15 |
|
16 |
|
17 |
namespace BinaryCarpenter\BC_MNC;
|
18 |
|
19 |
include_once 'inc/Core.php';
|
20 |
+
include_once 'inc/Mobile_Detect.php';
|
21 |
|
22 |
include_once 'inc/Config.php';
|
23 |
include_once 'inc/BC_Options.php';
|
29 |
include_once 'inc/Helpers.php';
|
30 |
include_once 'inc/Options_Name.php';
|
31 |
include_once 'inc/Cart_Details.php';
|
32 |
+
use BinaryCarpenter\BC_MNC\Config as Config;
|
33 |
+
|
34 |
|
35 |
|
36 |
use BinaryCarpenter\BC_MNC\Activation as Activation;
|
37 |
use BinaryCarpenter\BC_MNC\BC_Options as BC_Options;
|
|
|
38 |
use BinaryCarpenter\BC_MNC\Options_Form as Options_Form;
|
39 |
use BinaryCarpenter\BC_MNC\Options_Name as Oname;
|
40 |
+
use BinaryCarpenter\BC_MNC\Cart_Details as Cart_Details;
|
41 |
+
use BinaryCarpenter\BC_MNC\Mobile_Detect as Mobile_Detect;
|
42 |
+
|
43 |
|
44 |
|
45 |
/*
|
46 |
+
* free 1.40
|
47 |
+
* pro 2.12
|
48 |
*/
|
49 |
|
50 |
/**
|
52 |
* @package BinaryCarpenter\BC_MNC
|
53 |
*/
|
54 |
class Initiator {
|
55 |
+
private static $instance;
|
56 |
+
public static function get_instance()
|
57 |
+
{
|
58 |
+
if (self::$instance == null)
|
59 |
+
self::$instance = new Initiator();
|
60 |
+
|
61 |
+
return self::$instance;
|
62 |
+
}
|
63 |
+
|
64 |
+
|
65 |
+
/**
|
66 |
* Construct.
|
67 |
*/
|
68 |
public function __construct() {
|
433 |
|
434 |
$linked_options = BC_Options::get_all_options('bc_menu_cart_linked_menu')->posts;
|
435 |
|
436 |
+
if (count($linked_options) == 0 || $linked_options[0]->ID === 0)
|
437 |
return $items;
|
438 |
+
|
439 |
+
|
440 |
+
|
441 |
+
//Only get the first option, since there is only one item linked to one menu
|
442 |
+
$options = new BC_Options(Oname::MENU_CART_LINK_MENUS, $linked_options[0]->ID);
|
443 |
|
444 |
//now, check if this menu has an option attached to it. The id of the design option is the meta_value of
|
445 |
//a meta which has $menu_slug as key
|
492 |
|
493 |
|
494 |
}
|
495 |
+
/**
|
496 |
+
* Check if WooCommerce is activated
|
497 |
+
*/
|
498 |
+
if ( ! function_exists( 'is_woocommerce_activated' ) ) {
|
499 |
+
function is_woocommerce_activated() {
|
500 |
+
if ( class_exists( 'woocommerce' ) ) { return true; } else { return false; }
|
501 |
+
}
|
502 |
+
}
|
503 |
+
|
504 |
+
add_action('plugin_loaded', function(){
|
505 |
+
if (is_woocommerce_activated())
|
506 |
+
Initiator::get_instance();
|
507 |
|
508 |
+
});
|
bundle/css/backend.css
CHANGED
@@ -1,14365 +1,5 @@
|
|
1 |
-
@charset "UTF-8";
|
2 |
-
/*! UIkit 3.1.4 | http://www.getuikit.com | (c) 2014 - 2018 YOOtheme | MIT License */
|
3 |
-
/* ========================================================================
|
4 |
-
Component: Base
|
5 |
-
========================================================================== */
|
6 |
-
/*
|
7 |
-
* 1. Set `font-size` to support `rem` units
|
8 |
-
* Not using `font` property because a leading hyphen (e.g. -apple-system) causes the font to break in IE11 and Edge
|
9 |
-
* 2. Prevent adjustments of font size after orientation changes in iOS.
|
10 |
-
* 3. Style
|
11 |
-
*/
|
12 |
-
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400&display=swap");
|
13 |
-
.bc-root {
|
14 |
-
/* 1 */
|
15 |
-
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";
|
16 |
-
font-size: 16px;
|
17 |
-
font-weight: normal;
|
18 |
-
line-height: 1.5;
|
19 |
-
/* 2 */
|
20 |
-
-webkit-text-size-adjust: 100%;
|
21 |
-
/* 3 */
|
22 |
-
background: #fff;
|
23 |
-
color: #666;
|
24 |
-
/* Links
|
25 |
-
========================================================================== */
|
26 |
-
/*
|
27 |
-
* Remove gaps in links underline in iOS 8+ and Safari 8+.
|
28 |
-
*/
|
29 |
-
/*
|
30 |
-
* Remove the outline on focused links when they are also active or hovered
|
31 |
-
*/
|
32 |
-
/*
|
33 |
-
* Style
|
34 |
-
*/
|
35 |
-
/* Text-level semantics
|
36 |
-
========================================================================== */
|
37 |
-
/*
|
38 |
-
* 1. Add an underline text decoration in Safari, Edge and IE.
|
39 |
-
* 2. Add `dotted` style in Safari.
|
40 |
-
* Note: The shorthand declaration `underline dotted` is not supported in Safari, Edge and IE.
|
41 |
-
*/
|
42 |
-
/*
|
43 |
-
* Add the correct font weight in Chrome, Edge, and Safari.
|
44 |
-
*/
|
45 |
-
/*
|
46 |
-
* 1. Consolas has a better baseline in running text compared to `Courier`
|
47 |
-
* 2. Correct the odd `em` font sizing in all browsers.
|
48 |
-
* 3. Style
|
49 |
-
*/
|
50 |
-
/*
|
51 |
-
* Emphasize
|
52 |
-
*/
|
53 |
-
/*
|
54 |
-
* Insert
|
55 |
-
*/
|
56 |
-
/*
|
57 |
-
* Mark
|
58 |
-
*/
|
59 |
-
/*
|
60 |
-
* Quote
|
61 |
-
*/
|
62 |
-
/*
|
63 |
-
* Add the correct font size in all browsers.
|
64 |
-
*/
|
65 |
-
/*
|
66 |
-
* Prevents `sub` and `sup` affecting `line-height` in all browsers.
|
67 |
-
*/
|
68 |
-
/* Embedded content
|
69 |
-
========================================================================== */
|
70 |
-
/*
|
71 |
-
* Remove the gap between embedded content and the bottom of their containers.
|
72 |
-
*/
|
73 |
-
/*
|
74 |
-
* 1. Add responsiveness.
|
75 |
-
* 2. Auto-scale the height. Only needed if `height` attribute is present.
|
76 |
-
* 3. Corrects responsive `max-width` behavior if padding and border are used.
|
77 |
-
* 4. Exclude SVGs for IE11 because they don't preserve their aspect ratio.
|
78 |
-
*/
|
79 |
-
/* 4 */
|
80 |
-
/*
|
81 |
-
* Hide the overflow in IE.
|
82 |
-
*/
|
83 |
-
/*
|
84 |
-
* Hide `alt` text for lazy load images
|
85 |
-
* Selector for background while loading img[data-src*='.jpg'][src*='data:image'] { background: grey; }
|
86 |
-
*/
|
87 |
-
/*
|
88 |
-
* Iframe
|
89 |
-
* Remove border in all browsers
|
90 |
-
*/
|
91 |
-
/* Block elements
|
92 |
-
========================================================================== */
|
93 |
-
/*
|
94 |
-
* Margins
|
95 |
-
*/
|
96 |
-
/* Add margin if adjacent element */
|
97 |
-
/* Headings
|
98 |
-
========================================================================== */
|
99 |
-
/* Add margin if adjacent element */
|
100 |
-
/*
|
101 |
-
* Sizes
|
102 |
-
*/
|
103 |
-
/* Tablet landscape and bigger */
|
104 |
-
/* Lists
|
105 |
-
========================================================================== */
|
106 |
-
/*
|
107 |
-
* Reset margin for nested lists
|
108 |
-
*/
|
109 |
-
/* Description lists
|
110 |
-
========================================================================== */
|
111 |
-
/* Horizontal rules
|
112 |
-
========================================================================== */
|
113 |
-
/*
|
114 |
-
* 1. Add the correct box sizing and height in Firefox.
|
115 |
-
* 2. Show the overflow in Edge and IE.
|
116 |
-
* 3. Add the correct text-align in Edge and IE.
|
117 |
-
* 4. Style
|
118 |
-
*/
|
119 |
-
/* Add margin if adjacent element */
|
120 |
-
/* Address
|
121 |
-
========================================================================== */
|
122 |
-
/* Blockquotes
|
123 |
-
========================================================================== */
|
124 |
-
/* Add margin if adjacent element */
|
125 |
-
/*
|
126 |
-
* Content
|
127 |
-
*/
|
128 |
-
/* Preformatted text
|
129 |
-
========================================================================== */
|
130 |
-
/*
|
131 |
-
* 1. Contain overflow in all browsers.
|
132 |
-
*/
|
133 |
-
/* Selection pseudo-element
|
134 |
-
========================================================================== */
|
135 |
-
/* HTML5 elements
|
136 |
-
========================================================================== */
|
137 |
-
/*
|
138 |
-
* 1. Add the correct display in Edge, IE 10+, and Firefox.
|
139 |
-
* 2. Add the correct display in IE.
|
140 |
-
*/
|
141 |
-
/*
|
142 |
-
* Add the correct display in all browsers.
|
143 |
-
*/
|
144 |
-
/*
|
145 |
-
* Add the correct display in IE.
|
146 |
-
*/
|
147 |
-
/* Pass media breakpoints to JS
|
148 |
-
========================================================================== */
|
149 |
-
/*
|
150 |
-
* Breakpoints
|
151 |
-
*/
|
152 |
-
/* ========================================================================
|
153 |
-
Component: Link
|
154 |
-
========================================================================== */
|
155 |
-
/* Muted
|
156 |
-
========================================================================== */
|
157 |
-
/* Text
|
158 |
-
========================================================================== */
|
159 |
-
/* Heading
|
160 |
-
========================================================================== */
|
161 |
-
/* Reset
|
162 |
-
========================================================================== */
|
163 |
-
/*
|
164 |
-
* `!important` needed to override inverse component
|
165 |
-
*/
|
166 |
-
/* ========================================================================
|
167 |
-
Component: Heading
|
168 |
-
========================================================================== */
|
169 |
-
/* Tablet Landscape and bigger */
|
170 |
-
/* Laptop and bigger */
|
171 |
-
/* Primary
|
172 |
-
Deprecated: Use `uk-heading-medium` instead
|
173 |
-
========================================================================== */
|
174 |
-
/* Tablet landscape and bigger */
|
175 |
-
/* Desktop and bigger */
|
176 |
-
/* Hero
|
177 |
-
Deprecated: Use `uk-heading-xlarge` instead
|
178 |
-
========================================================================== */
|
179 |
-
/* Tablet landscape and bigger */
|
180 |
-
/* Desktop and bigger */
|
181 |
-
/* Divider
|
182 |
-
========================================================================== */
|
183 |
-
/* Bullet
|
184 |
-
========================================================================== */
|
185 |
-
/*
|
186 |
-
* 1. Using `inline-block` to make it work with text alignment
|
187 |
-
* 2. Center vertically
|
188 |
-
* 3. Style
|
189 |
-
*/
|
190 |
-
/* Line
|
191 |
-
========================================================================== */
|
192 |
-
/*
|
193 |
-
* Clip the child element
|
194 |
-
*/
|
195 |
-
/*
|
196 |
-
* Extra markup is needed to make it work with text align
|
197 |
-
*/
|
198 |
-
/*
|
199 |
-
* 1. Center vertically
|
200 |
-
* 2. Make the element as large as possible. It's clipped by the container.
|
201 |
-
* 3. Style
|
202 |
-
*/
|
203 |
-
/* ========================================================================
|
204 |
-
Component: Divider
|
205 |
-
========================================================================== */
|
206 |
-
/*
|
207 |
-
* 1. Reset default `hr`
|
208 |
-
* 2. Set margin if a `div` is used for semantical reason
|
209 |
-
*/
|
210 |
-
/* Add margin if adjacent element */
|
211 |
-
/* Icon
|
212 |
-
========================================================================== */
|
213 |
-
/* Small
|
214 |
-
========================================================================== */
|
215 |
-
/*
|
216 |
-
* Fix height of `hr` element not being expanded by child border width.
|
217 |
-
* `height` also needed to reset the child `line-height` caused by `inline-block`
|
218 |
-
*/
|
219 |
-
/* Vertical
|
220 |
-
========================================================================== */
|
221 |
-
/* ========================================================================
|
222 |
-
Component: List
|
223 |
-
========================================================================== */
|
224 |
-
/*
|
225 |
-
* Micro clearfix
|
226 |
-
*/
|
227 |
-
/*
|
228 |
-
* Remove margin from the last-child
|
229 |
-
*/
|
230 |
-
/*
|
231 |
-
* Nested lists
|
232 |
-
*/
|
233 |
-
/*
|
234 |
-
* Style
|
235 |
-
*/
|
236 |
-
/* Style modifiers
|
237 |
-
========================================================================== */
|
238 |
-
/*
|
239 |
-
* Divider
|
240 |
-
*/
|
241 |
-
/*
|
242 |
-
* Striped
|
243 |
-
*/
|
244 |
-
/*
|
245 |
-
* Bullet
|
246 |
-
* 1. Reset display `table` which causes issues in combination with multi column layouts.
|
247 |
-
*/
|
248 |
-
/* Size modifier
|
249 |
-
========================================================================== */
|
250 |
-
/*
|
251 |
-
* Divider
|
252 |
-
*/
|
253 |
-
/*
|
254 |
-
* Striped
|
255 |
-
*/
|
256 |
-
/* ========================================================================
|
257 |
-
Component: Description list
|
258 |
-
========================================================================== */
|
259 |
-
/*
|
260 |
-
* Term
|
261 |
-
*/
|
262 |
-
/*
|
263 |
-
* Description
|
264 |
-
*/
|
265 |
-
/* Style modifier
|
266 |
-
========================================================================== */
|
267 |
-
/*
|
268 |
-
* Line
|
269 |
-
*/
|
270 |
-
/* ========================================================================
|
271 |
-
Component: Table
|
272 |
-
========================================================================== */
|
273 |
-
/*
|
274 |
-
* 1. Remove most spacing between table cells.
|
275 |
-
* 2. Behave like a block element
|
276 |
-
* 3. Style
|
277 |
-
*/
|
278 |
-
/* Add margin if adjacent element */
|
279 |
-
/* Header cell
|
280 |
-
========================================================================== */
|
281 |
-
/*
|
282 |
-
* 1. Style
|
283 |
-
*/
|
284 |
-
/* Cell
|
285 |
-
========================================================================== */
|
286 |
-
/*
|
287 |
-
* Remove margin from the last-child
|
288 |
-
*/
|
289 |
-
/* Footer
|
290 |
-
========================================================================== */
|
291 |
-
/* Caption
|
292 |
-
========================================================================== */
|
293 |
-
/* Alignment modifier
|
294 |
-
========================================================================== */
|
295 |
-
/* Style modifiers
|
296 |
-
========================================================================== */
|
297 |
-
/*
|
298 |
-
* Divider
|
299 |
-
*/
|
300 |
-
/*
|
301 |
-
* Striped
|
302 |
-
*/
|
303 |
-
/*
|
304 |
-
* Hover
|
305 |
-
*/
|
306 |
-
/* Active state
|
307 |
-
========================================================================== */
|
308 |
-
/* Size modifier
|
309 |
-
========================================================================== */
|
310 |
-
/* Justify modifier
|
311 |
-
========================================================================== */
|
312 |
-
/* Cell size modifier
|
313 |
-
========================================================================== */
|
314 |
-
/* Cell link modifier
|
315 |
-
========================================================================== */
|
316 |
-
/*
|
317 |
-
* Does not work with `uk-table-justify` at the moment
|
318 |
-
*/
|
319 |
-
/* Responsive table
|
320 |
-
========================================================================== */
|
321 |
-
/* Phone landscape and smaller */
|
322 |
-
/* ========================================================================
|
323 |
-
Component: Icon
|
324 |
-
========================================================================== */
|
325 |
-
/*
|
326 |
-
* Note: 1. - 7. is required for `button` elements. Needed for Close and Form Icon component.
|
327 |
-
* 1. Remove margins in Chrome, Safari and Opera.
|
328 |
-
* 2. Remove borders for `button`.
|
329 |
-
* 3. Remove border-radius in Chrome.
|
330 |
-
* 4. Address `overflow` set to `hidden` in IE.
|
331 |
-
* 5. Correct `font` properties and `color` not being inherited for `button`.
|
332 |
-
* 6. Remove the inheritance of text transform in Edge, Firefox, and IE.
|
333 |
-
* 7. Remove default `button` padding and background color
|
334 |
-
* 8. Style
|
335 |
-
* 9. Fill all SVG elements with the current text color if no `fill` attribute is set
|
336 |
-
* 10. Let the container fit the height of the icon
|
337 |
-
*/
|
338 |
-
/* Required for `button`. */
|
339 |
-
/*
|
340 |
-
* Remove the inner border and padding in Firefox.
|
341 |
-
*/
|
342 |
-
/*
|
343 |
-
* Set the fill and stroke color of all SVG elements to the current text color
|
344 |
-
*/
|
345 |
-
/*
|
346 |
-
* Fix Firefox blurry SVG rendering: https://bugzilla.mozilla.org/show_bug.cgi?id=1046835
|
347 |
-
*/
|
348 |
-
/* Image modifier
|
349 |
-
========================================================================== */
|
350 |
-
/*
|
351 |
-
* Display images in icon dimensions
|
352 |
-
*/
|
353 |
-
/* Style modifiers
|
354 |
-
========================================================================== */
|
355 |
-
/*
|
356 |
-
* Link
|
357 |
-
*/
|
358 |
-
/* OnClick + Active */
|
359 |
-
/*
|
360 |
-
* Button
|
361 |
-
* 1. Center icon vertically and horizontally
|
362 |
-
*/
|
363 |
-
/* Hover + Focus */
|
364 |
-
/* OnClick + Active */
|
365 |
-
/* ========================================================================
|
366 |
-
Component: Form Range
|
367 |
-
========================================================================== */
|
368 |
-
/*
|
369 |
-
* 1. Normalize and defaults
|
370 |
-
* 2. Prevent content overflow if a fixed width is used
|
371 |
-
* 3. Take the full width
|
372 |
-
* 4. Remove default style
|
373 |
-
* 5. Remove white background in Chrome
|
374 |
-
* 6. Remove padding in IE11
|
375 |
-
*/
|
376 |
-
/* Focus */
|
377 |
-
/* IE11 Reset */
|
378 |
-
/*
|
379 |
-
* Improves consistency of cursor style for clickable elements
|
380 |
-
*/
|
381 |
-
/* Thumb
|
382 |
-
========================================================================== */
|
383 |
-
/*
|
384 |
-
* 1. Reset
|
385 |
-
* 2. Style
|
386 |
-
*/
|
387 |
-
/* Webkit */
|
388 |
-
/* Firefox */
|
389 |
-
/* Edge */
|
390 |
-
/* IE11 */
|
391 |
-
/* Edge + IE11 */
|
392 |
-
/* Track
|
393 |
-
========================================================================== */
|
394 |
-
/*
|
395 |
-
* 1. Safari doesn't have a focus state. Using active instead.
|
396 |
-
*/
|
397 |
-
/* Webkit */
|
398 |
-
/* Firefox */
|
399 |
-
/* Edge */
|
400 |
-
/* ========================================================================
|
401 |
-
Component: Form
|
402 |
-
========================================================================== */
|
403 |
-
/*
|
404 |
-
* 1. Define consistent box sizing.
|
405 |
-
* Default is `content-box` with following exceptions set to `border-box`
|
406 |
-
* `select`, `input[type="checkbox"]` and `input[type="radio"]`
|
407 |
-
* `input[type="search"]` in Chrome, Safari and Opera
|
408 |
-
* `input[type="color"]` in Firefox
|
409 |
-
* 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
|
410 |
-
* 3. Remove `border-radius` in iOS.
|
411 |
-
* 4. Change font properties to `inherit` in all browsers.
|
412 |
-
*/
|
413 |
-
/*
|
414 |
-
* Show the overflow in Edge.
|
415 |
-
*/
|
416 |
-
/*
|
417 |
-
* Remove the inheritance of text transform in Firefox.
|
418 |
-
*/
|
419 |
-
/*
|
420 |
-
* 1. Change font properties to `inherit` in all browsers
|
421 |
-
* 2. Don't inherit the `font-weight` and use `bold` instead.
|
422 |
-
* NOTE: Both declarations don't work in Chrome, Safari and Opera.
|
423 |
-
*/
|
424 |
-
/*
|
425 |
-
* Remove the default vertical scrollbar in IE 10+.
|
426 |
-
*/
|
427 |
-
/*
|
428 |
-
* Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X.
|
429 |
-
*/
|
430 |
-
/*
|
431 |
-
* Correct the cursor style of increment and decrement buttons in Chrome.
|
432 |
-
*/
|
433 |
-
/*
|
434 |
-
* Removes placeholder transparency in Firefox.
|
435 |
-
*/
|
436 |
-
/*
|
437 |
-
* Improves consistency of cursor style for clickable elements
|
438 |
-
*/
|
439 |
-
/*
|
440 |
-
* Define consistent border, margin, and padding.
|
441 |
-
*/
|
442 |
-
/* Input, select and textarea
|
443 |
-
* Allowed: `text`, `password`, `datetime`, `datetime-local`, `date`, `month`,
|
444 |
-
`time`, `week`, `number`, `email`, `url`, `search`, `tel`, `color`
|
445 |
-
* Disallowed: `range`, `radio`, `checkbox`, `file`, `submit`, `reset` and `image`
|
446 |
-
========================================================================== */
|
447 |
-
/*
|
448 |
-
* Remove default style in iOS.
|
449 |
-
*/
|
450 |
-
/*
|
451 |
-
* 1. Prevent content overflow if a fixed width is used
|
452 |
-
* 2. Take the full width
|
453 |
-
* 3. Reset default
|
454 |
-
* 4. Style
|
455 |
-
*/
|
456 |
-
/*
|
457 |
-
* Single-line
|
458 |
-
* 1. Allow any element to look like an `input` or `select` element
|
459 |
-
* 2. Make sure line-height is not larger than height
|
460 |
-
* Also needed to center the text vertically
|
461 |
-
*/
|
462 |
-
/* 2 */
|
463 |
-
/*
|
464 |
-
* Multi-line
|
465 |
-
*/
|
466 |
-
/* Focus */
|
467 |
-
/* Disabled */
|
468 |
-
/*
|
469 |
-
* Placeholder
|
470 |
-
*/
|
471 |
-
/* Style modifier (`uk-input`, `uk-select` and `uk-textarea`)
|
472 |
-
========================================================================== */
|
473 |
-
/*
|
474 |
-
* Small
|
475 |
-
*/
|
476 |
-
/*
|
477 |
-
* Large
|
478 |
-
*/
|
479 |
-
/* Style modifier (`uk-input`, `uk-select` and `uk-textarea`)
|
480 |
-
========================================================================== */
|
481 |
-
/*
|
482 |
-
* Error
|
483 |
-
*/
|
484 |
-
/*
|
485 |
-
* Success
|
486 |
-
*/
|
487 |
-
/*
|
488 |
-
* Blank
|
489 |
-
*/
|
490 |
-
/* Width modifiers (`uk-input`, `uk-select` and `uk-textarea`)
|
491 |
-
========================================================================== */
|
492 |
-
/*
|
493 |
-
* Fixed widths
|
494 |
-
* Different widths for mini sized `input` and `select` elements
|
495 |
-
*/
|
496 |
-
/* Select
|
497 |
-
========================================================================== */
|
498 |
-
/*
|
499 |
-
* 1. Remove default style. Also works in Firefox
|
500 |
-
* 2. Style
|
501 |
-
* 3. Remove default style in IE 10/11
|
502 |
-
* 4. Set `color` for options in the select dropdown, because the inherited `color` might be too light.
|
503 |
-
*/
|
504 |
-
/* 3 */
|
505 |
-
/* 4 */
|
506 |
-
/*
|
507 |
-
* Disabled
|
508 |
-
*/
|
509 |
-
/* Radio and checkbox
|
510 |
-
* Note: Does not work in IE11
|
511 |
-
========================================================================== */
|
512 |
-
/*
|
513 |
-
* 1. Style
|
514 |
-
* 2. Make box more robust so it clips the child element
|
515 |
-
* 3. Vertical alignment
|
516 |
-
* 4. Remove default style
|
517 |
-
* 5. Fix black background on iOS
|
518 |
-
* 6. Center icons
|
519 |
-
*/
|
520 |
-
/* Focus */
|
521 |
-
/*
|
522 |
-
* Checked
|
523 |
-
*/
|
524 |
-
/* Focus */
|
525 |
-
/*
|
526 |
-
* Icons
|
527 |
-
*/
|
528 |
-
/*
|
529 |
-
* Disabled
|
530 |
-
*/
|
531 |
-
/* Legend
|
532 |
-
========================================================================== */
|
533 |
-
/*
|
534 |
-
* Legend
|
535 |
-
* 1. Behave like block element
|
536 |
-
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
537 |
-
* 3. Remove padding so people aren't caught out if they zero out fieldsets.
|
538 |
-
* 4. Style
|
539 |
-
*/
|
540 |
-
/* Custom controls
|
541 |
-
========================================================================== */
|
542 |
-
/*
|
543 |
-
* 1. Container fits its content
|
544 |
-
* 2. Create position context
|
545 |
-
* 3. Prevent content overflow
|
546 |
-
* 4. Behave like most inline-block elements
|
547 |
-
*/
|
548 |
-
/*
|
549 |
-
* 1. Position and resize the form control to always cover its container
|
550 |
-
* 2. Required for Firefox for positioning to the left
|
551 |
-
* 3. Required for Webkit to make `height` work
|
552 |
-
* 4. Hide controle and show cursor
|
553 |
-
* 5. Needed for the cursor
|
554 |
-
* 6. Clip height caused by 5. Needed for Webkit only
|
555 |
-
*/
|
556 |
-
/* Label
|
557 |
-
========================================================================== */
|
558 |
-
/* Layout
|
559 |
-
========================================================================== */
|
560 |
-
/*
|
561 |
-
* Stacked
|
562 |
-
*/
|
563 |
-
/*
|
564 |
-
* Horizontal
|
565 |
-
*/
|
566 |
-
/* Tablet portrait and smaller */
|
567 |
-
/* Tablet landscape and bigger */
|
568 |
-
/* Icons
|
569 |
-
========================================================================== */
|
570 |
-
/*
|
571 |
-
* 1. Set position
|
572 |
-
* 2. Set width
|
573 |
-
* 3. Center icon vertically and horizontally
|
574 |
-
* 4. Style
|
575 |
-
*/
|
576 |
-
/*
|
577 |
-
* Required for `a`.
|
578 |
-
*/
|
579 |
-
/*
|
580 |
-
* Make `input` element clickable through icon, e.g. if it's a `span`
|
581 |
-
*/
|
582 |
-
/*
|
583 |
-
* Input padding
|
584 |
-
*/
|
585 |
-
/*
|
586 |
-
* Position modifier
|
587 |
-
*/
|
588 |
-
/* ========================================================================
|
589 |
-
Component: Button
|
590 |
-
========================================================================== */
|
591 |
-
/*
|
592 |
-
* 1. Remove margins in Chrome, Safari and Opera.
|
593 |
-
* 2. Remove borders for `button`.
|
594 |
-
* 3. Address `overflow` set to `hidden` in IE.
|
595 |
-
* 4. Correct `font` properties and `color` not being inherited for `button`.
|
596 |
-
* 5. Remove the inheritance of text transform in Edge, Firefox, and IE.
|
597 |
-
* 6. Style
|
598 |
-
* 7. `line-height` is used to create a height because it also centers the text vertically for `a` elements.
|
599 |
-
* Better would be to use height and flexbox to center the text vertically but flexbox doesn't work in Firefox on `button` elements.
|
600 |
-
* 8. Align text if button has a width
|
601 |
-
* 9. Required for `a`.
|
602 |
-
*/
|
603 |
-
/*
|
604 |
-
* Remove the inner border and padding in Firefox.
|
605 |
-
*/
|
606 |
-
/* Hover */
|
607 |
-
/* Focus */
|
608 |
-
/* OnClick + Active */
|
609 |
-
/* Style modifiers
|
610 |
-
========================================================================== */
|
611 |
-
/*
|
612 |
-
* Default
|
613 |
-
*/
|
614 |
-
/* Hover + Focus */
|
615 |
-
/* OnClick + Active */
|
616 |
-
/*
|
617 |
-
* Primary
|
618 |
-
*/
|
619 |
-
/* Hover + Focus */
|
620 |
-
/* OnClick + Active */
|
621 |
-
/*
|
622 |
-
* Secondary
|
623 |
-
*/
|
624 |
-
/* Hover + Focus */
|
625 |
-
/* OnClick + Active */
|
626 |
-
/*
|
627 |
-
* Danger
|
628 |
-
*/
|
629 |
-
/* Hover + Focus */
|
630 |
-
/* OnClick + Active */
|
631 |
-
/*
|
632 |
-
* Disabled
|
633 |
-
* The same for all style modifiers
|
634 |
-
*/
|
635 |
-
/* Size modifiers
|
636 |
-
========================================================================== */
|
637 |
-
/* Text modifiers
|
638 |
-
========================================================================== */
|
639 |
-
/*
|
640 |
-
* Text
|
641 |
-
* 1. Reset
|
642 |
-
* 2. Style
|
643 |
-
*/
|
644 |
-
/* Hover + Focus */
|
645 |
-
/* Disabled */
|
646 |
-
/*
|
647 |
-
* Link
|
648 |
-
* 1. Reset
|
649 |
-
* 2. Style
|
650 |
-
*/
|
651 |
-
/* Hover + Focus */
|
652 |
-
/* Disabled */
|
653 |
-
/* Group
|
654 |
-
========================================================================== */
|
655 |
-
/*
|
656 |
-
* 1. Using `flex` instead of `inline-block` to prevent whitespace betweent child elements
|
657 |
-
* 2. Behave like button
|
658 |
-
* 3. Create position context
|
659 |
-
*/
|
660 |
-
/* Group
|
661 |
-
========================================================================== */
|
662 |
-
/*
|
663 |
-
* Collapse border
|
664 |
-
*/
|
665 |
-
/*
|
666 |
-
* Create position context to superimpose the successor elements border
|
667 |
-
* Known issue: If you use an `a` element as button and an icon inside,
|
668 |
-
* the active state will not work if you click the icon inside the button
|
669 |
-
* Workaround: Just use a `button` or `input` element as button
|
670 |
-
*/
|
671 |
-
/* ========================================================================
|
672 |
-
Component: Section
|
673 |
-
========================================================================== */
|
674 |
-
/*
|
675 |
-
* 1. Make it work with `100vh` and height in general
|
676 |
-
*/
|
677 |
-
/* Desktop and bigger */
|
678 |
-
/*
|
679 |
-
* Micro clearfix
|
680 |
-
*/
|
681 |
-
/*
|
682 |
-
* Remove margin from the last-child
|
683 |
-
*/
|
684 |
-
/* Size modifiers
|
685 |
-
========================================================================== */
|
686 |
-
/*
|
687 |
-
* XSmall
|
688 |
-
*/
|
689 |
-
/*
|
690 |
-
* Small
|
691 |
-
*/
|
692 |
-
/*
|
693 |
-
* Large
|
694 |
-
*/
|
695 |
-
/* Tablet landscape and bigger */
|
696 |
-
/*
|
697 |
-
* XLarge
|
698 |
-
*/
|
699 |
-
/* Tablet landscape and bigger */
|
700 |
-
/* Style modifiers
|
701 |
-
========================================================================== */
|
702 |
-
/*
|
703 |
-
* Default
|
704 |
-
*/
|
705 |
-
/*
|
706 |
-
* Muted
|
707 |
-
*/
|
708 |
-
/*
|
709 |
-
* Primary
|
710 |
-
*/
|
711 |
-
/*
|
712 |
-
* Secondary
|
713 |
-
*/
|
714 |
-
/* Overlap modifier
|
715 |
-
========================================================================== */
|
716 |
-
/*
|
717 |
-
* Reserved modifier to make a section overlap another section with an border image
|
718 |
-
* Implemented by the theme
|
719 |
-
*/
|
720 |
-
/* ========================================================================
|
721 |
-
Component: Container
|
722 |
-
========================================================================== */
|
723 |
-
/*
|
724 |
-
* 1. Box sizing has to be `content-box` so the max-width is always the same and
|
725 |
-
* unaffected by the padding on different breakpoints. It's important for the size modifiers.
|
726 |
-
*/
|
727 |
-
/* Phone landscape and bigger */
|
728 |
-
/* Tablet landscape and bigger */
|
729 |
-
/*
|
730 |
-
* Micro clearfix
|
731 |
-
*/
|
732 |
-
/*
|
733 |
-
* Remove margin from the last-child
|
734 |
-
*/
|
735 |
-
/*
|
736 |
-
* Remove padding from nested containers
|
737 |
-
*/
|
738 |
-
/* Size modifier
|
739 |
-
========================================================================== */
|
740 |
-
/* Expand modifier
|
741 |
-
========================================================================== */
|
742 |
-
/*
|
743 |
-
* Expand one side only
|
744 |
-
*/
|
745 |
-
/* Phone landscape and bigger */
|
746 |
-
/* Tablet landscape and bigger */
|
747 |
-
/* Item
|
748 |
-
========================================================================== */
|
749 |
-
/*
|
750 |
-
* Utility classes to reset container padding on the left or right side
|
751 |
-
* Note: It has to be negative margin on the item, because it's specific to the item.
|
752 |
-
*/
|
753 |
-
/* Phone landscape and bigger */
|
754 |
-
/* Tablet landscape and bigger */
|
755 |
-
/* ========================================================================
|
756 |
-
Component: Grid
|
757 |
-
========================================================================== */
|
758 |
-
/*
|
759 |
-
* 1. Allow cells to wrap into the next line
|
760 |
-
* 2. Reset list
|
761 |
-
*/
|
762 |
-
/*
|
763 |
-
* Grid cell
|
764 |
-
* Note: Space is allocated solely based on content dimensions, but shrinks: 0 1 auto
|
765 |
-
* Reset margin for e.g. paragraphs
|
766 |
-
*/
|
767 |
-
/*
|
768 |
-
* Remove margin from the last-child
|
769 |
-
*/
|
770 |
-
/* Gutter
|
771 |
-
========================================================================== */
|
772 |
-
/*
|
773 |
-
* Default
|
774 |
-
*/
|
775 |
-
/* Horizontal */
|
776 |
-
/* Vertical */
|
777 |
-
/* Desktop and bigger */
|
778 |
-
/*
|
779 |
-
* Small
|
780 |
-
*/
|
781 |
-
/* Horizontal */
|
782 |
-
/* Vertical */
|
783 |
-
/*
|
784 |
-
* Medium
|
785 |
-
*/
|
786 |
-
/* Horizontal */
|
787 |
-
/* Vertical */
|
788 |
-
/*
|
789 |
-
* Large
|
790 |
-
*/
|
791 |
-
/* Horizontal */
|
792 |
-
/* Vertical */
|
793 |
-
/* Desktop and bigger */
|
794 |
-
/*
|
795 |
-
* Collapse
|
796 |
-
*/
|
797 |
-
/* Horizontal */
|
798 |
-
/* Vertical */
|
799 |
-
/* Divider
|
800 |
-
========================================================================== */
|
801 |
-
/* Vertical */
|
802 |
-
/*
|
803 |
-
* Default
|
804 |
-
*/
|
805 |
-
/* Horizontal */
|
806 |
-
/* Vertical */
|
807 |
-
/* Desktop and bigger */
|
808 |
-
/*
|
809 |
-
* Small
|
810 |
-
*/
|
811 |
-
/* Horizontal */
|
812 |
-
/* Vertical */
|
813 |
-
/*
|
814 |
-
* Medium
|
815 |
-
*/
|
816 |
-
/* Horizontal */
|
817 |
-
/* Vertical */
|
818 |
-
/*
|
819 |
-
* Large
|
820 |
-
*/
|
821 |
-
/* Horizontal */
|
822 |
-
/* Vertical */
|
823 |
-
/* Desktop and bigger */
|
824 |
-
/* Match child of a grid cell
|
825 |
-
========================================================================== */
|
826 |
-
/*
|
827 |
-
* Behave like a block element
|
828 |
-
* 1. Wrap into the next line
|
829 |
-
* 2. Take the full width, at least 100%. Only if no class from the Width component is set.
|
830 |
-
* 3. Expand width even if larger than 100%, e.g. because of negative margin (Needed for nested grids)
|
831 |
-
*/
|
832 |
-
/* ========================================================================
|
833 |
-
Component: Tile
|
834 |
-
========================================================================== */
|
835 |
-
/* Phone landscape and bigger */
|
836 |
-
/* Tablet landscape and bigger */
|
837 |
-
/*
|
838 |
-
* Micro clearfix
|
839 |
-
*/
|
840 |
-
/*
|
841 |
-
* Remove margin from the last-child
|
842 |
-
*/
|
843 |
-
/* Size modifiers
|
844 |
-
========================================================================== */
|
845 |
-
/*
|
846 |
-
* XSmall
|
847 |
-
*/
|
848 |
-
/*
|
849 |
-
* Small
|
850 |
-
*/
|
851 |
-
/*
|
852 |
-
* Large
|
853 |
-
*/
|
854 |
-
/* Tablet landscape and bigger */
|
855 |
-
/*
|
856 |
-
* XLarge
|
857 |
-
*/
|
858 |
-
/* Tablet landscape and bigger */
|
859 |
-
/* Style modifiers
|
860 |
-
========================================================================== */
|
861 |
-
/*
|
862 |
-
* Default
|
863 |
-
*/
|
864 |
-
/*
|
865 |
-
* Muted
|
866 |
-
*/
|
867 |
-
/*
|
868 |
-
* Primary
|
869 |
-
*/
|
870 |
-
/*
|
871 |
-
* Secondary
|
872 |
-
*/
|
873 |
-
/* ========================================================================
|
874 |
-
Component: Card
|
875 |
-
========================================================================== */
|
876 |
-
/* Sections
|
877 |
-
========================================================================== */
|
878 |
-
/* Desktop and bigger */
|
879 |
-
/*
|
880 |
-
* Micro clearfix
|
881 |
-
*/
|
882 |
-
/*
|
883 |
-
* Remove margin from the last-child
|
884 |
-
*/
|
885 |
-
/* Media
|
886 |
-
========================================================================== */
|
887 |
-
/*
|
888 |
-
* Reserved alignment modifier to style the media element, e.g. with `border-radius`
|
889 |
-
* Implemented by the theme
|
890 |
-
*/
|
891 |
-
/* Title
|
892 |
-
========================================================================== */
|
893 |
-
/* Badge
|
894 |
-
========================================================================== */
|
895 |
-
/*
|
896 |
-
* Remove margin from adjacent element
|
897 |
-
*/
|
898 |
-
/* Hover modifier
|
899 |
-
========================================================================== */
|
900 |
-
/* Style modifiers
|
901 |
-
========================================================================== */
|
902 |
-
/*
|
903 |
-
* Default
|
904 |
-
* Note: Header and Footer are only implemented for the default style
|
905 |
-
*/
|
906 |
-
/*
|
907 |
-
* Primary
|
908 |
-
*/
|
909 |
-
/*
|
910 |
-
* Secondary
|
911 |
-
*/
|
912 |
-
/* Size modifier
|
913 |
-
========================================================================== */
|
914 |
-
/*
|
915 |
-
* Small
|
916 |
-
*/
|
917 |
-
/*
|
918 |
-
* Large
|
919 |
-
*/
|
920 |
-
/* Desktop and bigger */
|
921 |
-
/*
|
922 |
-
* Default
|
923 |
-
*/
|
924 |
-
/* Desktop and bigger */
|
925 |
-
/*
|
926 |
-
* Small
|
927 |
-
*/
|
928 |
-
/*
|
929 |
-
* Large
|
930 |
-
*/
|
931 |
-
/* Desktop and bigger */
|
932 |
-
/* ========================================================================
|
933 |
-
Component: Close
|
934 |
-
========================================================================== */
|
935 |
-
/*
|
936 |
-
* Adopts `uk-icon`
|
937 |
-
*/
|
938 |
-
/* Hover + Focus */
|
939 |
-
/* ========================================================================
|
940 |
-
Component: Spinner
|
941 |
-
========================================================================== */
|
942 |
-
/*
|
943 |
-
* Adopts `uk-icon`
|
944 |
-
*/
|
945 |
-
/* SVG
|
946 |
-
========================================================================== */
|
947 |
-
/*
|
948 |
-
* Circle
|
949 |
-
*/
|
950 |
-
/* ========================================================================
|
951 |
-
Component: Totop
|
952 |
-
========================================================================== */
|
953 |
-
/*
|
954 |
-
* Addopts `uk-icon`
|
955 |
-
*/
|
956 |
-
/* Hover + Focus */
|
957 |
-
/* OnClick */
|
958 |
-
/* ========================================================================
|
959 |
-
Component: Marker
|
960 |
-
========================================================================== */
|
961 |
-
/*
|
962 |
-
* Addopts `uk-icon`
|
963 |
-
*/
|
964 |
-
/* Hover + Focus */
|
965 |
-
/* ========================================================================
|
966 |
-
Component: Alert
|
967 |
-
========================================================================== */
|
968 |
-
/* Add margin if adjacent element */
|
969 |
-
/*
|
970 |
-
* Remove margin from the last-child
|
971 |
-
*/
|
972 |
-
/* Close
|
973 |
-
* Adopts `uk-close`
|
974 |
-
========================================================================== */
|
975 |
-
/*
|
976 |
-
* Remove margin from adjacent element
|
977 |
-
*/
|
978 |
-
/*
|
979 |
-
* Hover + Focus
|
980 |
-
*/
|
981 |
-
/* Style modifiers
|
982 |
-
========================================================================== */
|
983 |
-
/*
|
984 |
-
* Primary
|
985 |
-
*/
|
986 |
-
/*
|
987 |
-
* Success
|
988 |
-
*/
|
989 |
-
/*
|
990 |
-
* Warning
|
991 |
-
*/
|
992 |
-
/*
|
993 |
-
* Danger
|
994 |
-
*/
|
995 |
-
/*
|
996 |
-
* Content
|
997 |
-
*/
|
998 |
-
/* ========================================================================
|
999 |
-
Component: Badge
|
1000 |
-
========================================================================== */
|
1001 |
-
/*
|
1002 |
-
* 1. Style
|
1003 |
-
* 2. Center child vertically and horizontally
|
1004 |
-
*/
|
1005 |
-
/*
|
1006 |
-
* Required for `a`
|
1007 |
-
*/
|
1008 |
-
/* ========================================================================
|
1009 |
-
Component: Label
|
1010 |
-
========================================================================== */
|
1011 |
-
/* Color modifiers
|
1012 |
-
========================================================================== */
|
1013 |
-
/*
|
1014 |
-
* Success
|
1015 |
-
*/
|
1016 |
-
/*
|
1017 |
-
* Warning
|
1018 |
-
*/
|
1019 |
-
/*
|
1020 |
-
* Danger
|
1021 |
-
*/
|
1022 |
-
/* ========================================================================
|
1023 |
-
Component: Overlay
|
1024 |
-
========================================================================== */
|
1025 |
-
/*
|
1026 |
-
* Remove margin from the last-child
|
1027 |
-
*/
|
1028 |
-
/* Icon
|
1029 |
-
========================================================================== */
|
1030 |
-
/* Style modifiers
|
1031 |
-
========================================================================== */
|
1032 |
-
/*
|
1033 |
-
* Default
|
1034 |
-
*/
|
1035 |
-
/*
|
1036 |
-
* Primary
|
1037 |
-
*/
|
1038 |
-
/* ========================================================================
|
1039 |
-
Component: Article
|
1040 |
-
========================================================================== */
|
1041 |
-
/*
|
1042 |
-
* Micro clearfix
|
1043 |
-
*/
|
1044 |
-
/*
|
1045 |
-
* Remove margin from the last-child
|
1046 |
-
*/
|
1047 |
-
/* Adjacent sibling
|
1048 |
-
========================================================================== */
|
1049 |
-
/* Title
|
1050 |
-
========================================================================== */
|
1051 |
-
/* Tablet landscape and bigger */
|
1052 |
-
/* Meta
|
1053 |
-
========================================================================== */
|
1054 |
-
/* ========================================================================
|
1055 |
-
Component: Comment
|
1056 |
-
========================================================================== */
|
1057 |
-
/* Sections
|
1058 |
-
========================================================================== */
|
1059 |
-
/*
|
1060 |
-
* Micro clearfix
|
1061 |
-
*/
|
1062 |
-
/*
|
1063 |
-
* Remove margin from the last-child
|
1064 |
-
*/
|
1065 |
-
/* Title
|
1066 |
-
========================================================================== */
|
1067 |
-
/* Meta
|
1068 |
-
========================================================================== */
|
1069 |
-
/* Avatar
|
1070 |
-
========================================================================== */
|
1071 |
-
/* List
|
1072 |
-
========================================================================== */
|
1073 |
-
/* Adjacent siblings */
|
1074 |
-
/*
|
1075 |
-
* Sublists
|
1076 |
-
* Note: General sibling selector allows reply block between comment and sublist
|
1077 |
-
*/
|
1078 |
-
/* Tablet and bigger */
|
1079 |
-
/* Adjacent siblings */
|
1080 |
-
/* Style modifier
|
1081 |
-
========================================================================== */
|
1082 |
-
/* ========================================================================
|
1083 |
-
Component: Search
|
1084 |
-
========================================================================== */
|
1085 |
-
/*
|
1086 |
-
* 1. Container fits its content
|
1087 |
-
* 2. Create position context
|
1088 |
-
* 3. Prevent content overflow
|
1089 |
-
* 4. Reset `form`
|
1090 |
-
*/
|
1091 |
-
/* Input
|
1092 |
-
========================================================================== */
|
1093 |
-
/*
|
1094 |
-
* Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X.
|
1095 |
-
*/
|
1096 |
-
/*
|
1097 |
-
* Removes placeholder transparency in Firefox.
|
1098 |
-
*/
|
1099 |
-
/*
|
1100 |
-
* 1. Define consistent box sizing.
|
1101 |
-
* 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
|
1102 |
-
* 3. Remove `border-radius` in iOS.
|
1103 |
-
* 4. Change font properties to `inherit` in all browsers
|
1104 |
-
* 5. Show the overflow in Edge.
|
1105 |
-
* 6. Remove default style in iOS.
|
1106 |
-
* 7. Vertical alignment
|
1107 |
-
* 8. Take the full container width
|
1108 |
-
* 9. Style
|
1109 |
-
*/
|
1110 |
-
/* Placeholder */
|
1111 |
-
/* Icon (Adopts `uk-icon`)
|
1112 |
-
========================================================================== */
|
1113 |
-
/*
|
1114 |
-
* Remove default focus style
|
1115 |
-
*/
|
1116 |
-
/*
|
1117 |
-
* Position above input
|
1118 |
-
* 1. Set position
|
1119 |
-
* 2. Center icon vertically and horizontally
|
1120 |
-
* 3. Style
|
1121 |
-
*/
|
1122 |
-
/*
|
1123 |
-
* Required for `a`.
|
1124 |
-
*/
|
1125 |
-
/*
|
1126 |
-
* Make `input` element clickable through icon, e.g. if it's a `span`
|
1127 |
-
*/
|
1128 |
-
/*
|
1129 |
-
* Position modifier
|
1130 |
-
*/
|
1131 |
-
/* Default modifier
|
1132 |
-
========================================================================== */
|
1133 |
-
/*
|
1134 |
-
* Input
|
1135 |
-
*/
|
1136 |
-
/* Focus */
|
1137 |
-
/*
|
1138 |
-
* Icon
|
1139 |
-
*/
|
1140 |
-
/* Navbar modifier
|
1141 |
-
========================================================================== */
|
1142 |
-
/*
|
1143 |
-
* Input
|
1144 |
-
*/
|
1145 |
-
/*
|
1146 |
-
* Icon
|
1147 |
-
*/
|
1148 |
-
/* Large modifier
|
1149 |
-
========================================================================== */
|
1150 |
-
/*
|
1151 |
-
* Input
|
1152 |
-
*/
|
1153 |
-
/*
|
1154 |
-
* Icon
|
1155 |
-
*/
|
1156 |
-
/* Toggle
|
1157 |
-
========================================================================== */
|
1158 |
-
/* Hover + Focus */
|
1159 |
-
/* ========================================================================
|
1160 |
-
Component: Nav
|
1161 |
-
========================================================================== */
|
1162 |
-
/*
|
1163 |
-
* Reset
|
1164 |
-
* 1. Prepare lists
|
1165 |
-
* 2. Prepare links
|
1166 |
-
* 3. Remove default focus style
|
1167 |
-
*/
|
1168 |
-
/* 1 */
|
1169 |
-
/* 2 */
|
1170 |
-
/* 3 */
|
1171 |
-
/*
|
1172 |
-
* Items
|
1173 |
-
* Must target `a` elements to exclude other elements (e.g. lists)
|
1174 |
-
*/
|
1175 |
-
/* Sublists
|
1176 |
-
========================================================================== */
|
1177 |
-
/*
|
1178 |
-
* Level 2
|
1179 |
-
* `ul` needed for higher specificity to override padding
|
1180 |
-
*/
|
1181 |
-
/*
|
1182 |
-
* Level 3 and deeper
|
1183 |
-
*/
|
1184 |
-
/*
|
1185 |
-
* Items
|
1186 |
-
*/
|
1187 |
-
/* Parent icon modifier
|
1188 |
-
========================================================================== */
|
1189 |
-
/* Header
|
1190 |
-
========================================================================== */
|
1191 |
-
/* Divider
|
1192 |
-
========================================================================== */
|
1193 |
-
/* Default modifier
|
1194 |
-
========================================================================== */
|
1195 |
-
/*
|
1196 |
-
* Items
|
1197 |
-
*/
|
1198 |
-
/* Hover + Focus */
|
1199 |
-
/* Active */
|
1200 |
-
/*
|
1201 |
-
* Header
|
1202 |
-
*/
|
1203 |
-
/*
|
1204 |
-
* Divider
|
1205 |
-
*/
|
1206 |
-
/*
|
1207 |
-
* Sublists
|
1208 |
-
*/
|
1209 |
-
/* Primary modifier
|
1210 |
-
========================================================================== */
|
1211 |
-
/*
|
1212 |
-
* Items
|
1213 |
-
*/
|
1214 |
-
/* Hover + Focus */
|
1215 |
-
/* Active */
|
1216 |
-
/*
|
1217 |
-
* Header
|
1218 |
-
*/
|
1219 |
-
/*
|
1220 |
-
* Divider
|
1221 |
-
*/
|
1222 |
-
/*
|
1223 |
-
* Sublists
|
1224 |
-
*/
|
1225 |
-
/* Alignment modifier
|
1226 |
-
========================================================================== */
|
1227 |
-
/* Sublists */
|
1228 |
-
/* Parent icon modifier */
|
1229 |
-
/* ========================================================================
|
1230 |
-
Component: Navbar
|
1231 |
-
========================================================================== */
|
1232 |
-
/*
|
1233 |
-
* 1. Create position context to center navbar group
|
1234 |
-
*/
|
1235 |
-
/* Container
|
1236 |
-
========================================================================== */
|
1237 |
-
/*
|
1238 |
-
* Remove pseudo elements created by micro clearfix as precaution (if Container component is used)
|
1239 |
-
*/
|
1240 |
-
/* Groups
|
1241 |
-
========================================================================== */
|
1242 |
-
/*
|
1243 |
-
* 1. Align navs and items vertically if they have a different height
|
1244 |
-
* 2. Note: IE 11 requires an extra `div` which affects the center selector
|
1245 |
-
*/
|
1246 |
-
/*
|
1247 |
-
* Horizontal alignment
|
1248 |
-
* 1. Create position context for centered navbar with sub groups (left/right)
|
1249 |
-
* 2. Needed for dropdowns because a new position context is created
|
1250 |
-
* `z-index` must be smaller than off-canvas
|
1251 |
-
* 3. Fix text wrapping if the centered section is larger than 50% of the navbar
|
1252 |
-
* 4. Align sub groups for centered navbar
|
1253 |
-
*/
|
1254 |
-
/* 3 */
|
1255 |
-
/* 4 */
|
1256 |
-
/* Nav
|
1257 |
-
========================================================================== */
|
1258 |
-
/*
|
1259 |
-
* 1. Reset list
|
1260 |
-
*/
|
1261 |
-
/*
|
1262 |
-
* Allow items to wrap into the next line
|
1263 |
-
* Only not `absolute` positioned groups
|
1264 |
-
*/
|
1265 |
-
/*
|
1266 |
-
* Items
|
1267 |
-
* 1. Center content vertically and horizontally
|
1268 |
-
* 2. Dimensions
|
1269 |
-
* 3. Style
|
1270 |
-
* 4. Required for `a`
|
1271 |
-
*/
|
1272 |
-
/*
|
1273 |
-
* Nav items
|
1274 |
-
*/
|
1275 |
-
/*
|
1276 |
-
* Hover
|
1277 |
-
* Apply hover style also to focus state and if dropdown is opened
|
1278 |
-
*/
|
1279 |
-
/* OnClick */
|
1280 |
-
/* Active */
|
1281 |
-
/* Item
|
1282 |
-
========================================================================== */
|
1283 |
-
/* Toggle
|
1284 |
-
========================================================================== */
|
1285 |
-
/*
|
1286 |
-
* Icon
|
1287 |
-
* Adopts `uk-icon`
|
1288 |
-
*/
|
1289 |
-
/* Hover + Focus */
|
1290 |
-
/* Subtitle
|
1291 |
-
========================================================================== */
|
1292 |
-
/* Style modifiers
|
1293 |
-
========================================================================== */
|
1294 |
-
/* Dropdown
|
1295 |
-
========================================================================== */
|
1296 |
-
/*
|
1297 |
-
* Adopts `uk-dropdown`
|
1298 |
-
* 1. Hide by default
|
1299 |
-
* 2. Set position
|
1300 |
-
* 3. Set a default width
|
1301 |
-
* 4. Style
|
1302 |
-
*/
|
1303 |
-
/* Show */
|
1304 |
-
/*
|
1305 |
-
* Direction / Alignment modifiers
|
1306 |
-
*/
|
1307 |
-
/* Direction */
|
1308 |
-
/*
|
1309 |
-
* Grid
|
1310 |
-
* Adopts `uk-grid`
|
1311 |
-
*/
|
1312 |
-
/* Gutter Horizontal */
|
1313 |
-
/* Gutter Vertical */
|
1314 |
-
/* Stack */
|
1315 |
-
/*
|
1316 |
-
* Width modifier
|
1317 |
-
*/
|
1318 |
-
/*
|
1319 |
-
* Dropbar modifier
|
1320 |
-
*/
|
1321 |
-
/* Dropdown Nav
|
1322 |
-
* Adopts `uk-nav`
|
1323 |
-
========================================================================== */
|
1324 |
-
/*
|
1325 |
-
* Items
|
1326 |
-
*/
|
1327 |
-
/* Hover + Focus */
|
1328 |
-
/* Active */
|
1329 |
-
/*
|
1330 |
-
* Header
|
1331 |
-
*/
|
1332 |
-
/*
|
1333 |
-
* Divider
|
1334 |
-
*/
|
1335 |
-
/*
|
1336 |
-
* Sublists
|
1337 |
-
*/
|
1338 |
-
/* Dropbar
|
1339 |
-
========================================================================== */
|
1340 |
-
/*
|
1341 |
-
* Slide modifier
|
1342 |
-
*/
|
1343 |
-
/*
|
1344 |
-
* Navbar
|
1345 |
-
*/
|
1346 |
-
/*
|
1347 |
-
* Grid Divider
|
1348 |
-
*/
|
1349 |
-
/* Vertical */
|
1350 |
-
/* ========================================================================
|
1351 |
-
Component: Subnav
|
1352 |
-
========================================================================== */
|
1353 |
-
/*
|
1354 |
-
* 1. Allow items to wrap into the next line
|
1355 |
-
* 2. Gutter
|
1356 |
-
* 3. Reset list
|
1357 |
-
*/
|
1358 |
-
/*
|
1359 |
-
* 1. Space is allocated solely based on content dimensions: 0 0 auto
|
1360 |
-
* 2. Gutter
|
1361 |
-
* 3. Create position context for dropdowns
|
1362 |
-
*/
|
1363 |
-
/* Items
|
1364 |
-
========================================================================== */
|
1365 |
-
/*
|
1366 |
-
* Items must target `a` elements to exclude other elements (e.g. dropdowns)
|
1367 |
-
* Using `:first-child` instead of `a` to support `span` elements for text
|
1368 |
-
* 1. Prevent gap if child element is `inline-block`, e.g. an icon
|
1369 |
-
* 2. Style
|
1370 |
-
*/
|
1371 |
-
/* Hover + Focus */
|
1372 |
-
/* Active */
|
1373 |
-
/* Divider modifier
|
1374 |
-
========================================================================== */
|
1375 |
-
/*
|
1376 |
-
* 1. Align items and divider vertically
|
1377 |
-
*/
|
1378 |
-
/*
|
1379 |
-
* Divider
|
1380 |
-
* `nth-child` makes it also work without JS if it's only one row
|
1381 |
-
*/
|
1382 |
-
/* Pill modifier
|
1383 |
-
========================================================================== */
|
1384 |
-
/* Hover + Focus */
|
1385 |
-
/* OnClick */
|
1386 |
-
/* Active */
|
1387 |
-
/* Disabled
|
1388 |
-
* The same for all style modifiers
|
1389 |
-
========================================================================== */
|
1390 |
-
/* ========================================================================
|
1391 |
-
Component: Breadcrumb
|
1392 |
-
========================================================================== */
|
1393 |
-
/*
|
1394 |
-
* 1. Allow items to wrap into the next line
|
1395 |
-
* 2. Reset list
|
1396 |
-
*/
|
1397 |
-
/*
|
1398 |
-
* Space is allocated solely based on content dimensions: 0 0 auto
|
1399 |
-
*/
|
1400 |
-
/* Items
|
1401 |
-
========================================================================== */
|
1402 |
-
/* Hover + Focus */
|
1403 |
-
/* Disabled */
|
1404 |
-
/* Active */
|
1405 |
-
/*
|
1406 |
-
* Divider
|
1407 |
-
* `nth-child` makes it also work without JS if it's only one row
|
1408 |
-
*/
|
1409 |
-
/* ========================================================================
|
1410 |
-
Component: Pagination
|
1411 |
-
========================================================================== */
|
1412 |
-
/*
|
1413 |
-
* 1. Allow items to wrap into the next line
|
1414 |
-
* 2. Gutter
|
1415 |
-
* 3. Reset list
|
1416 |
-
*/
|
1417 |
-
/*
|
1418 |
-
* 1. Space is allocated solely based on content dimensions: 0 0 auto
|
1419 |
-
* 2. Gutter
|
1420 |
-
* 3. Create position context for dropdowns
|
1421 |
-
*/
|
1422 |
-
/* Items
|
1423 |
-
========================================================================== */
|
1424 |
-
/*
|
1425 |
-
* 1. Prevent gap if child element is `inline-block`, e.g. an icon
|
1426 |
-
* 2. Style
|
1427 |
-
*/
|
1428 |
-
/* Hover + Focus */
|
1429 |
-
/* Active */
|
1430 |
-
/* Disabled */
|
1431 |
-
/* ========================================================================
|
1432 |
-
Component: Tab
|
1433 |
-
========================================================================== */
|
1434 |
-
/*
|
1435 |
-
* 1. Allow items to wrap into the next line
|
1436 |
-
* 2. Gutter
|
1437 |
-
* 3. Reset list
|
1438 |
-
*/
|
1439 |
-
/*
|
1440 |
-
* 1. Space is allocated solely based on content dimensions: 0 0 auto
|
1441 |
-
* 2. Gutter
|
1442 |
-
* 3. Create position context for dropdowns
|
1443 |
-
*/
|
1444 |
-
/* Items
|
1445 |
-
========================================================================== */
|
1446 |
-
/*
|
1447 |
-
* Items must target `a` elements to exclude other elements (e.g. dropdowns)
|
1448 |
-
* 1. Center text if a width is set
|
1449 |
-
* 2. Style
|
1450 |
-
*/
|
1451 |
-
/* Hover + Focus */
|
1452 |
-
/* Active */
|
1453 |
-
/* Disabled */
|
1454 |
-
/* Position modifier
|
1455 |
-
========================================================================== */
|
1456 |
-
/*
|
1457 |
-
* Bottom
|
1458 |
-
*/
|
1459 |
-
/*
|
1460 |
-
* Left + Right
|
1461 |
-
* 1. Reset Gutter
|
1462 |
-
*/
|
1463 |
-
/* 1 */
|
1464 |
-
/* ========================================================================
|
1465 |
-
Component: Slidenav
|
1466 |
-
========================================================================== */
|
1467 |
-
/*
|
1468 |
-
* Adopts `uk-icon`
|
1469 |
-
*/
|
1470 |
-
/* Hover + Focus */
|
1471 |
-
/* OnClick */
|
1472 |
-
/* Icon modifier
|
1473 |
-
========================================================================== */
|
1474 |
-
/*
|
1475 |
-
* Previous
|
1476 |
-
*/
|
1477 |
-
/*
|
1478 |
-
* Next
|
1479 |
-
*/
|
1480 |
-
/* Size modifier
|
1481 |
-
========================================================================== */
|
1482 |
-
/* Container
|
1483 |
-
========================================================================== */
|
1484 |
-
/* ========================================================================
|
1485 |
-
Component: Dotnav
|
1486 |
-
========================================================================== */
|
1487 |
-
/*
|
1488 |
-
* 1. Allow items to wrap into the next line
|
1489 |
-
* 2. Reset list
|
1490 |
-
* 3. Gutter
|
1491 |
-
*/
|
1492 |
-
/*
|
1493 |
-
* 1. Space is allocated solely based on content dimensions: 0 0 auto
|
1494 |
-
* 2. Gutter
|
1495 |
-
*/
|
1496 |
-
/* Items
|
1497 |
-
========================================================================== */
|
1498 |
-
/*
|
1499 |
-
* Items
|
1500 |
-
* 1. Hide text if present
|
1501 |
-
*/
|
1502 |
-
/* Hover + Focus */
|
1503 |
-
/* OnClick */
|
1504 |
-
/* Active */
|
1505 |
-
/* Modifier: 'uk-dotnav-vertical'
|
1506 |
-
========================================================================== */
|
1507 |
-
/*
|
1508 |
-
* 1. Change direction
|
1509 |
-
* 2. Gutter
|
1510 |
-
*/
|
1511 |
-
/* 2 */
|
1512 |
-
/* ========================================================================
|
1513 |
-
Component: Thumbnav
|
1514 |
-
========================================================================== */
|
1515 |
-
/*
|
1516 |
-
* 1. Allow items to wrap into the next line
|
1517 |
-
* 2. Reset list
|
1518 |
-
* 3. Gutter
|
1519 |
-
*/
|
1520 |
-
/*
|
1521 |
-
* Space is allocated based on content dimensions, but shrinks: 0 1 auto
|
1522 |
-
* 1. Gutter
|
1523 |
-
*/
|
1524 |
-
/* Items
|
1525 |
-
========================================================================== */
|
1526 |
-
/*
|
1527 |
-
* Items
|
1528 |
-
*/
|
1529 |
-
/* Hover + Focus */
|
1530 |
-
/* Active */
|
1531 |
-
/* Modifier: 'uk-thumbnav-vertical'
|
1532 |
-
========================================================================== */
|
1533 |
-
/*
|
1534 |
-
* 1. Change direction
|
1535 |
-
* 2. Gutter
|
1536 |
-
*/
|
1537 |
-
/* 2 */
|
1538 |
-
/* ========================================================================
|
1539 |
-
Component: Accordion
|
1540 |
-
========================================================================== */
|
1541 |
-
/* Item
|
1542 |
-
========================================================================== */
|
1543 |
-
/* Title
|
1544 |
-
========================================================================== */
|
1545 |
-
/* Hover + Focus */
|
1546 |
-
/* Content
|
1547 |
-
========================================================================== */
|
1548 |
-
/*
|
1549 |
-
* Micro clearfix
|
1550 |
-
*/
|
1551 |
-
/*
|
1552 |
-
* Remove margin from the last-child
|
1553 |
-
*/
|
1554 |
-
/* ========================================================================
|
1555 |
-
Component: Drop
|
1556 |
-
========================================================================== */
|
1557 |
-
/*
|
1558 |
-
* 1. Hide by default
|
1559 |
-
* 2. Set position
|
1560 |
-
* 3. Set a default width
|
1561 |
-
*/
|
1562 |
-
/* Show */
|
1563 |
-
/* Direction / Alignment modifiers
|
1564 |
-
========================================================================== */
|
1565 |
-
/* Direction */
|
1566 |
-
/* Grid modifiers
|
1567 |
-
========================================================================== */
|
1568 |
-
/* ========================================================================
|
1569 |
-
Component: Dropdown
|
1570 |
-
========================================================================== */
|
1571 |
-
/*
|
1572 |
-
* 1. Hide by default
|
1573 |
-
* 2. Set position
|
1574 |
-
* 3. Set a default width
|
1575 |
-
* 4. Style
|
1576 |
-
*/
|
1577 |
-
/* Show */
|
1578 |
-
/* Nav
|
1579 |
-
* Adopts `uk-nav`
|
1580 |
-
========================================================================== */
|
1581 |
-
/*
|
1582 |
-
* Items
|
1583 |
-
*/
|
1584 |
-
/* Hover + Focus + Active */
|
1585 |
-
/*
|
1586 |
-
* Header
|
1587 |
-
*/
|
1588 |
-
/*
|
1589 |
-
* Divider
|
1590 |
-
*/
|
1591 |
-
/*
|
1592 |
-
* Sublists
|
1593 |
-
*/
|
1594 |
-
/* Direction / Alignment modifiers
|
1595 |
-
========================================================================== */
|
1596 |
-
/* Direction */
|
1597 |
-
/* Grid modifiers
|
1598 |
-
========================================================================== */
|
1599 |
-
/* ========================================================================
|
1600 |
-
Component: Modal
|
1601 |
-
========================================================================== */
|
1602 |
-
/*
|
1603 |
-
* 1. Hide by default
|
1604 |
-
* 2. Set position
|
1605 |
-
* 3. Allow scrolling for the modal dialog
|
1606 |
-
* 4. Horizontal padding
|
1607 |
-
* 5. Mask the background page
|
1608 |
-
* 6. Fade-in transition
|
1609 |
-
*/
|
1610 |
-
/* Phone landscape and bigger */
|
1611 |
-
/* Tablet landscape and bigger */
|
1612 |
-
/*
|
1613 |
-
* Open
|
1614 |
-
*/
|
1615 |
-
/* Page
|
1616 |
-
========================================================================== */
|
1617 |
-
/*
|
1618 |
-
* Prevent scrollbars
|
1619 |
-
*/
|
1620 |
-
/* Dialog
|
1621 |
-
========================================================================== */
|
1622 |
-
/*
|
1623 |
-
* 1. Create position context for spinner and close button
|
1624 |
-
* 2. Dimensions
|
1625 |
-
* 3. Fix `max-width: 100%` not working in combination with flex and responsive images in IE11
|
1626 |
-
* `!important` needed to overwrite `uk-width-auto`. See `#modal-media-image` in tests
|
1627 |
-
* 4. Style
|
1628 |
-
* 5. Slide-in transition
|
1629 |
-
*/
|
1630 |
-
/*
|
1631 |
-
* Open
|
1632 |
-
*/
|
1633 |
-
/* Size modifier
|
1634 |
-
========================================================================== */
|
1635 |
-
/*
|
1636 |
-
* Container size
|
1637 |
-
* Take the same size as the Container component
|
1638 |
-
*/
|
1639 |
-
/*
|
1640 |
-
* Full size
|
1641 |
-
* 1. Remove padding and background from modal
|
1642 |
-
* 2. Reset all default declarations from modal dialog
|
1643 |
-
*/
|
1644 |
-
/* 1 */
|
1645 |
-
/* 2 */
|
1646 |
-
/* Sections
|
1647 |
-
========================================================================== */
|
1648 |
-
/*
|
1649 |
-
* Micro clearfix
|
1650 |
-
*/
|
1651 |
-
/*
|
1652 |
-
* Remove margin from the last-child
|
1653 |
-
*/
|
1654 |
-
/* Title
|
1655 |
-
========================================================================== */
|
1656 |
-
/* Close
|
1657 |
-
* Adopts `uk-close`
|
1658 |
-
========================================================================== */
|
1659 |
-
/*
|
1660 |
-
* Remove margin from adjacent element
|
1661 |
-
*/
|
1662 |
-
/*
|
1663 |
-
* Hover
|
1664 |
-
*/
|
1665 |
-
/*
|
1666 |
-
* Default
|
1667 |
-
*/
|
1668 |
-
/*
|
1669 |
-
* Outside
|
1670 |
-
* 1. Prevent scrollbar on small devices
|
1671 |
-
*/
|
1672 |
-
/* Tablet landscape and bigger */
|
1673 |
-
/*
|
1674 |
-
* Full
|
1675 |
-
*/
|
1676 |
-
/* ========================================================================
|
1677 |
-
Component: Lightbox
|
1678 |
-
========================================================================== */
|
1679 |
-
/*
|
1680 |
-
* 1. Hide by default
|
1681 |
-
* 2. Set position
|
1682 |
-
* 3. Allow scrolling for the modal dialog
|
1683 |
-
* 4. Horizontal padding
|
1684 |
-
* 5. Mask the background page
|
1685 |
-
* 6. Fade-in transition
|
1686 |
-
*/
|
1687 |
-
/*
|
1688 |
-
* Open
|
1689 |
-
* 1. Center child
|
1690 |
-
* 2. Fade-in
|
1691 |
-
*/
|
1692 |
-
/* Page
|
1693 |
-
========================================================================== */
|
1694 |
-
/*
|
1695 |
-
* Prevent scrollbars
|
1696 |
-
*/
|
1697 |
-
/* Item
|
1698 |
-
========================================================================== */
|
1699 |
-
/*
|
1700 |
-
* 1. Center child within the viewport
|
1701 |
-
* 2. Not visible by default
|
1702 |
-
* 3. Color needed for spinner icon
|
1703 |
-
* 4. Optimize animation
|
1704 |
-
* 5. Responsiveness
|
1705 |
-
* Using `vh` for `max-height` to fix image proportions after resize in Safari and Opera
|
1706 |
-
* Using `vh` and `vw` to make responsive image work in IE11
|
1707 |
-
* 6. Suppress outline on focus
|
1708 |
-
*/
|
1709 |
-
/* 5 */
|
1710 |
-
/* 6 */
|
1711 |
-
/* Toolbar
|
1712 |
-
========================================================================== */
|
1713 |
-
/* Toolbar Icon (Close)
|
1714 |
-
========================================================================== */
|
1715 |
-
/*
|
1716 |
-
* Hover
|
1717 |
-
*/
|
1718 |
-
/* Button (Slidenav)
|
1719 |
-
========================================================================== */
|
1720 |
-
/*
|
1721 |
-
* 1. Center icon vertically and horizontally
|
1722 |
-
*/
|
1723 |
-
/*
|
1724 |
-
* Hover
|
1725 |
-
*/
|
1726 |
-
/* Caption
|
1727 |
-
========================================================================== */
|
1728 |
-
/* Iframe
|
1729 |
-
========================================================================== */
|
1730 |
-
/* ========================================================================
|
1731 |
-
Component: Slideshow
|
1732 |
-
========================================================================== */
|
1733 |
-
/*
|
1734 |
-
* 1. Prevent tab highlighting on iOS.
|
1735 |
-
*/
|
1736 |
-
/* Items
|
1737 |
-
========================================================================== */
|
1738 |
-
/*
|
1739 |
-
* 1. Create position and stacking context
|
1740 |
-
* 2. Reset list
|
1741 |
-
* 3. Clip child elements
|
1742 |
-
* 4. Prevent displaying the callout information on iOS.
|
1743 |
-
*/
|
1744 |
-
/* Item
|
1745 |
-
========================================================================== */
|
1746 |
-
/*
|
1747 |
-
* 1. Position items above each other
|
1748 |
-
* 2. Take the full width
|
1749 |
-
* 3. Clip child elements, e.g. for `uk-cover`
|
1750 |
-
* 4. Optimize animation
|
1751 |
-
* 5. Disable horizontal panning gestures in IE11 and Edge
|
1752 |
-
* 6. Suppress outline on focus
|
1753 |
-
*/
|
1754 |
-
/* 6 */
|
1755 |
-
/*
|
1756 |
-
* Hide not active items
|
1757 |
-
*/
|
1758 |
-
/* ========================================================================
|
1759 |
-
Component: Slider
|
1760 |
-
========================================================================== */
|
1761 |
-
/*
|
1762 |
-
* 1. Prevent tab highlighting on iOS.
|
1763 |
-
*/
|
1764 |
-
/* Container
|
1765 |
-
========================================================================== */
|
1766 |
-
/*
|
1767 |
-
* 1. Clip child elements
|
1768 |
-
*/
|
1769 |
-
/* Items
|
1770 |
-
========================================================================== */
|
1771 |
-
/*
|
1772 |
-
* 1. Optimize animation
|
1773 |
-
* 2. Create a containing block. In Safari it's neither created by `transform` nor `will-change`.
|
1774 |
-
*/
|
1775 |
-
/*
|
1776 |
-
* 1. Reset list style without interfering with grid
|
1777 |
-
* 2. Prevent displaying the callout information on iOS.
|
1778 |
-
*/
|
1779 |
-
/* Item
|
1780 |
-
========================================================================== */
|
1781 |
-
/*
|
1782 |
-
* 1. Let items take content dimensions (0 0 auto)
|
1783 |
-
* 2. Create position context
|
1784 |
-
* 3. Disable horizontal panning gestures in IE11 and Edge
|
1785 |
-
* 4. Suppress outline on focus
|
1786 |
-
*/
|
1787 |
-
/* 4 */
|
1788 |
-
/* ========================================================================
|
1789 |
-
Component: Sticky
|
1790 |
-
========================================================================== */
|
1791 |
-
/*
|
1792 |
-
* 1. Resolve frame rate issues on devices with lower frame rates by forcing hardware acceleration
|
1793 |
-
*/
|
1794 |
-
/*
|
1795 |
-
* Faster animations
|
1796 |
-
*/
|
1797 |
-
/* ========================================================================
|
1798 |
-
Component: Off-canvas
|
1799 |
-
========================================================================== */
|
1800 |
-
/*
|
1801 |
-
* 1. Hide by default
|
1802 |
-
* 2. Set position
|
1803 |
-
*/
|
1804 |
-
/*
|
1805 |
-
* Flip modifier
|
1806 |
-
*/
|
1807 |
-
/* Bar
|
1808 |
-
========================================================================== */
|
1809 |
-
/*
|
1810 |
-
* 1. Set position
|
1811 |
-
* 2. Size and style
|
1812 |
-
* 3. Allow scrolling
|
1813 |
-
*/
|
1814 |
-
/* Tablet landscape and bigger */
|
1815 |
-
/* Flip modifier */
|
1816 |
-
/* Tablet landscape and bigger */
|
1817 |
-
/*
|
1818 |
-
* Open
|
1819 |
-
*/
|
1820 |
-
/*
|
1821 |
-
* Slide Animation (Used in slide and push mode)
|
1822 |
-
*/
|
1823 |
-
/*
|
1824 |
-
* Reveal Animation
|
1825 |
-
* 1. Set position
|
1826 |
-
* 2. Clip the bar
|
1827 |
-
* 3. Animation
|
1828 |
-
* 4. Reset position
|
1829 |
-
*/
|
1830 |
-
/* Tablet landscape and bigger */
|
1831 |
-
/*
|
1832 |
-
* Flip modifier
|
1833 |
-
*/
|
1834 |
-
/* Close
|
1835 |
-
* Adopts `uk-close`
|
1836 |
-
========================================================================== */
|
1837 |
-
/* Overlay
|
1838 |
-
========================================================================== */
|
1839 |
-
/*
|
1840 |
-
* Overlay the whole page. Needed for the `::before`
|
1841 |
-
* 1. Using `100vw` so no modification is needed when off-canvas is flipped
|
1842 |
-
* 2. Allow for closing with swipe gesture on devices with pointer events.
|
1843 |
-
*/
|
1844 |
-
/*
|
1845 |
-
* 1. Mask the whole page
|
1846 |
-
* 2. Fade-in transition
|
1847 |
-
*/
|
1848 |
-
/* Prevent scrolling
|
1849 |
-
========================================================================== */
|
1850 |
-
/*
|
1851 |
-
* Prevent horizontal scrollbar when the content is slide-out
|
1852 |
-
* Has to be on the `html` element too to make it work on the `body`
|
1853 |
-
*/
|
1854 |
-
/* Container
|
1855 |
-
========================================================================== */
|
1856 |
-
/*
|
1857 |
-
* Prepare slide-out animation (Used in reveal and push mode)
|
1858 |
-
* Using `position: left` instead of `transform` because position `fixed` elements like sticky navbars
|
1859 |
-
* lose their fixed state and behaves like `absolute` within a transformed container
|
1860 |
-
* 1. Provide a fixed width and prevent shrinking
|
1861 |
-
*/
|
1862 |
-
/*
|
1863 |
-
* Activate slide-out animation
|
1864 |
-
*/
|
1865 |
-
/* Tablet landscape and bigger */
|
1866 |
-
/* ========================================================================
|
1867 |
-
Component: Switcher
|
1868 |
-
========================================================================== */
|
1869 |
-
/*
|
1870 |
-
* Reset list
|
1871 |
-
*/
|
1872 |
-
/* Items
|
1873 |
-
========================================================================== */
|
1874 |
-
/*
|
1875 |
-
* Hide not active items
|
1876 |
-
*/
|
1877 |
-
/*
|
1878 |
-
* Remove margin from the last-child
|
1879 |
-
*/
|
1880 |
-
/* ========================================================================
|
1881 |
-
Component: Leader
|
1882 |
-
========================================================================== */
|
1883 |
-
/*
|
1884 |
-
* 1. Place element in text flow
|
1885 |
-
* 2. Never break into a new line
|
1886 |
-
* 3. Get a string back with as many repeating characters to fill the container
|
1887 |
-
* 4. Prevent wrapping. Overflowing characters will be clipped by the container
|
1888 |
-
*/
|
1889 |
-
/*
|
1890 |
-
* Hide if media does not match
|
1891 |
-
*/
|
1892 |
-
/*
|
1893 |
-
* Pass fill character to JS
|
1894 |
-
*/
|
1895 |
-
/* ========================================================================
|
1896 |
-
Component: Iconnav
|
1897 |
-
========================================================================== */
|
1898 |
-
/*
|
1899 |
-
* 1. Allow items to wrap into the next line
|
1900 |
-
* 2. Reset list
|
1901 |
-
* 3. Gutter
|
1902 |
-
*/
|
1903 |
-
/*
|
1904 |
-
* Space is allocated based on content dimensions, but shrinks: 0 1 auto
|
1905 |
-
* 1. Gutter
|
1906 |
-
*/
|
1907 |
-
/* Items
|
1908 |
-
========================================================================== */
|
1909 |
-
/*
|
1910 |
-
* Items must target `a` elements to exclude other elements (e.g. dropdowns)
|
1911 |
-
* 1. Prevent gap if child element is `inline-block`, e.g. an icon
|
1912 |
-
* 2. Style
|
1913 |
-
*/
|
1914 |
-
/* Hover + Focus */
|
1915 |
-
/* Active */
|
1916 |
-
/* Modifier: 'uk-iconnav-vertical'
|
1917 |
-
========================================================================== */
|
1918 |
-
/*
|
1919 |
-
* 1. Change direction
|
1920 |
-
* 2. Gutter
|
1921 |
-
*/
|
1922 |
-
/* 2 */
|
1923 |
-
/* ========================================================================
|
1924 |
-
Component: Notification
|
1925 |
-
========================================================================== */
|
1926 |
-
/*
|
1927 |
-
* 1. Set position
|
1928 |
-
* 2. Dimensions
|
1929 |
-
*/
|
1930 |
-
/* Position modifiers
|
1931 |
-
========================================================================== */
|
1932 |
-
/* Responsiveness
|
1933 |
-
========================================================================== */
|
1934 |
-
/* Phones portrait and smaller */
|
1935 |
-
/* Message
|
1936 |
-
========================================================================== */
|
1937 |
-
/* Close
|
1938 |
-
* Adopts `uk-close`
|
1939 |
-
========================================================================== */
|
1940 |
-
/* Style modifiers
|
1941 |
-
========================================================================== */
|
1942 |
-
/*
|
1943 |
-
* Primary
|
1944 |
-
*/
|
1945 |
-
/*
|
1946 |
-
* Success
|
1947 |
-
*/
|
1948 |
-
/*
|
1949 |
-
* Warning
|
1950 |
-
*/
|
1951 |
-
/*
|
1952 |
-
* Danger
|
1953 |
-
*/
|
1954 |
-
/* ========================================================================
|
1955 |
-
Component: Tooltip
|
1956 |
-
========================================================================== */
|
1957 |
-
/*
|
1958 |
-
* 1. Hide by default
|
1959 |
-
* 2. Position
|
1960 |
-
* 3. Dimensions
|
1961 |
-
* 4. Style
|
1962 |
-
*/
|
1963 |
-
/* Show */
|
1964 |
-
/* Direction / Alignment modifiers
|
1965 |
-
========================================================================== */
|
1966 |
-
/* Direction */
|
1967 |
-
/* ========================================================================
|
1968 |
-
Component: Placeholder
|
1969 |
-
========================================================================== */
|
1970 |
-
/* Add margin if adjacent element */
|
1971 |
-
/*
|
1972 |
-
* Remove margin from the last-child
|
1973 |
-
*/
|
1974 |
-
/* ========================================================================
|
1975 |
-
Component: Progress
|
1976 |
-
========================================================================== */
|
1977 |
-
/*
|
1978 |
-
* 1. Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
1979 |
-
* 2. Remove default style
|
1980 |
-
* 3. Behave like a block element
|
1981 |
-
* 4. Remove borders in Firefox and Edge
|
1982 |
-
* 5. Set background color for progress container in Firefox, IE11 and Edge
|
1983 |
-
* 6. Style
|
1984 |
-
*/
|
1985 |
-
/* Add margin if adjacent element */
|
1986 |
-
/*
|
1987 |
-
* Remove animated circles for indeterminate state in IE11 and Edge
|
1988 |
-
*/
|
1989 |
-
/*
|
1990 |
-
* Progress container
|
1991 |
-
* 2. Remove progress bar for indeterminate state in Firefox
|
1992 |
-
*/
|
1993 |
-
/* 2 */
|
1994 |
-
/*
|
1995 |
-
* Progress bar
|
1996 |
-
* 1. Remove right border in IE11 and Edge
|
1997 |
-
*/
|
1998 |
-
/* ========================================================================
|
1999 |
-
Component: Sortable
|
2000 |
-
========================================================================== */
|
2001 |
-
/*
|
2002 |
-
* Deactivate pointer-events on SVGs in Safari
|
2003 |
-
*/
|
2004 |
-
/*
|
2005 |
-
* Remove margin from the last-child
|
2006 |
-
*/
|
2007 |
-
/* Drag
|
2008 |
-
========================================================================== */
|
2009 |
-
/* Placeholder
|
2010 |
-
========================================================================== */
|
2011 |
-
/* Empty modifier
|
2012 |
-
========================================================================== */
|
2013 |
-
/* Handle
|
2014 |
-
========================================================================== */
|
2015 |
-
/* Hover */
|
2016 |
-
/* ========================================================================
|
2017 |
-
Component: Countdown
|
2018 |
-
========================================================================== */
|
2019 |
-
/* Item
|
2020 |
-
========================================================================== */
|
2021 |
-
/*
|
2022 |
-
* 1. Center numbers and separators vertically
|
2023 |
-
*/
|
2024 |
-
/* Number
|
2025 |
-
========================================================================== */
|
2026 |
-
/* Phone landscape and bigger */
|
2027 |
-
/* Tablet landscape and bigger */
|
2028 |
-
/* Separator
|
2029 |
-
========================================================================== */
|
2030 |
-
/* Phone landscape and bigger */
|
2031 |
-
/* Tablet landscape and bigger */
|
2032 |
-
/* Label
|
2033 |
-
========================================================================== */
|
2034 |
-
/* ========================================================================
|
2035 |
-
Component: Animation
|
2036 |
-
========================================================================== */
|
2037 |
-
/* Animations
|
2038 |
-
========================================================================== */
|
2039 |
-
/*
|
2040 |
-
* Fade
|
2041 |
-
*/
|
2042 |
-
/*
|
2043 |
-
* Scale
|
2044 |
-
*/
|
2045 |
-
/*
|
2046 |
-
* Slide
|
2047 |
-
*/
|
2048 |
-
/*
|
2049 |
-
* Slide Small
|
2050 |
-
*/
|
2051 |
-
/*
|
2052 |
-
* Slide Medium
|
2053 |
-
*/
|
2054 |
-
/*
|
2055 |
-
* Kenburns
|
2056 |
-
*/
|
2057 |
-
/*
|
2058 |
-
* Shake
|
2059 |
-
*/
|
2060 |
-
/*
|
2061 |
-
* SVG Stroke
|
2062 |
-
* The `--uk-animation-stroke` custom property contains the longest path length.
|
2063 |
-
* Set it manually or use `uk-svg="stroke-animation: true"` to set it automatically.
|
2064 |
-
* All strokes are animated by the same pace and doesn't end simultaneously.
|
2065 |
-
* To end simultaneously, `pathLength="1"` could be used, but it's not working in Safari yet.
|
2066 |
-
*/
|
2067 |
-
/* Direction modifier
|
2068 |
-
========================================================================== */
|
2069 |
-
/* Duration modifier
|
2070 |
-
========================================================================== */
|
2071 |
-
/* Toggle (Hover + Focus)
|
2072 |
-
========================================================================== */
|
2073 |
-
/*
|
2074 |
-
* The toggle is triggered on touch devices using `:focus` and tabindex
|
2075 |
-
*/
|
2076 |
-
/*
|
2077 |
-
* 1. Prevent tab highlighting on iOS.
|
2078 |
-
*/
|
2079 |
-
/*
|
2080 |
-
* Remove outline for `tabindex`
|
2081 |
-
*/
|
2082 |
-
/* Keyframes used by animation classes
|
2083 |
-
========================================================================== */
|
2084 |
-
/*
|
2085 |
-
* Fade
|
2086 |
-
*/
|
2087 |
-
/*
|
2088 |
-
* Slide Top
|
2089 |
-
*/
|
2090 |
-
/*
|
2091 |
-
* Slide Bottom
|
2092 |
-
*/
|
2093 |
-
/*
|
2094 |
-
* Slide Left
|
2095 |
-
*/
|
2096 |
-
/*
|
2097 |
-
* Slide Right
|
2098 |
-
*/
|
2099 |
-
/*
|
2100 |
-
* Slide Top Small
|
2101 |
-
*/
|
2102 |
-
/*
|
2103 |
-
* Slide Bottom Small
|
2104 |
-
*/
|
2105 |
-
/*
|
2106 |
-
* Slide Left Small
|
2107 |
-
*/
|
2108 |
-
/*
|
2109 |
-
* Slide Right Small
|
2110 |
-
*/
|
2111 |
-
/*
|
2112 |
-
* Slide Top Medium
|
2113 |
-
*/
|
2114 |
-
/*
|
2115 |
-
* Slide Bottom Medium
|
2116 |
-
*/
|
2117 |
-
/*
|
2118 |
-
* Slide Left Medium
|
2119 |
-
*/
|
2120 |
-
/*
|
2121 |
-
* Slide Right Medium
|
2122 |
-
*/
|
2123 |
-
/*
|
2124 |
-
* Scale Up
|
2125 |
-
*/
|
2126 |
-
/*
|
2127 |
-
* Scale Down
|
2128 |
-
*/
|
2129 |
-
/*
|
2130 |
-
* Kenburns
|
2131 |
-
*/
|
2132 |
-
/*
|
2133 |
-
* Shake
|
2134 |
-
*/
|
2135 |
-
/*
|
2136 |
-
* Stroke
|
2137 |
-
*/
|
2138 |
-
/* ========================================================================
|
2139 |
-
Component: Width
|
2140 |
-
========================================================================== */
|
2141 |
-
/* Equal child widths
|
2142 |
-
========================================================================== */
|
2143 |
-
/*
|
2144 |
-
* 1. Reset the `min-width`, which is set to auto by default, because
|
2145 |
-
* flex items won't shrink below their minimum intrinsic content size.
|
2146 |
-
* Using `1px` instead of `0`, so items still wrap into the next line,
|
2147 |
-
* if they have zero width and padding and the predecessor is 100% wide.
|
2148 |
-
*/
|
2149 |
-
/* Phone landscape and bigger */
|
2150 |
-
/* Tablet landscape and bigger */
|
2151 |
-
/* Desktop and bigger */
|
2152 |
-
/* Large screen and bigger */
|
2153 |
-
/* Single Widths
|
2154 |
-
========================================================================== */
|
2155 |
-
/*
|
2156 |
-
* 1. `max-width` is needed for the pixel-based classes
|
2157 |
-
*/
|
2158 |
-
/* Halves */
|
2159 |
-
/* Thirds */
|
2160 |
-
/* Quarters */
|
2161 |
-
/* Fifths */
|
2162 |
-
/* Sixths */
|
2163 |
-
/* Pixel */
|
2164 |
-
/* Auto */
|
2165 |
-
/* Expand */
|
2166 |
-
/* Phone landscape and bigger */
|
2167 |
-
/* Tablet landscape and bigger */
|
2168 |
-
/* Desktop and bigger */
|
2169 |
-
/* Large screen and bigger */
|
2170 |
-
/* ========================================================================
|
2171 |
-
Component: Height
|
2172 |
-
========================================================================== */
|
2173 |
-
/*
|
2174 |
-
* Only works if parent element has a height set
|
2175 |
-
*/
|
2176 |
-
/*
|
2177 |
-
* Useful to create image teasers
|
2178 |
-
*/
|
2179 |
-
/*
|
2180 |
-
* Pixel
|
2181 |
-
* Useful for `overflow: auto`
|
2182 |
-
*/
|
2183 |
-
/* ========================================================================
|
2184 |
-
Component: Text
|
2185 |
-
========================================================================== */
|
2186 |
-
/* Style modifiers
|
2187 |
-
========================================================================== */
|
2188 |
-
/* Size modifiers
|
2189 |
-
========================================================================== */
|
2190 |
-
/* Weight modifier
|
2191 |
-
========================================================================== */
|
2192 |
-
/* Transform modifier
|
2193 |
-
========================================================================== */
|
2194 |
-
/* Color modifiers
|
2195 |
-
========================================================================== */
|
2196 |
-
/* Background modifier
|
2197 |
-
========================================================================== */
|
2198 |
-
/*
|
2199 |
-
* 1. The background clips to the foreground text. Works in Chrome, Firefox, Safari, Edge and Opera
|
2200 |
-
* Default color is set to transparent
|
2201 |
-
* 2. Container fits the text
|
2202 |
-
* 3. Fallback color for IE11
|
2203 |
-
*/
|
2204 |
-
/* Alignment modifiers
|
2205 |
-
========================================================================== */
|
2206 |
-
/* Phone landscape and bigger */
|
2207 |
-
/* Tablet landscape and bigger */
|
2208 |
-
/* Desktop and bigger */
|
2209 |
-
/* Large screen and bigger */
|
2210 |
-
/*
|
2211 |
-
* Vertical
|
2212 |
-
*/
|
2213 |
-
/* Wrap modifiers
|
2214 |
-
========================================================================== */
|
2215 |
-
/*
|
2216 |
-
* Prevent text from wrapping onto multiple lines
|
2217 |
-
*/
|
2218 |
-
/*
|
2219 |
-
* 1. Make sure a max-width is set after which truncation can occur
|
2220 |
-
* 2. Prevent text from wrapping onto multiple lines, and truncate with an ellipsis
|
2221 |
-
* 3. Fix for table cells
|
2222 |
-
*/
|
2223 |
-
/* 2 */
|
2224 |
-
/*
|
2225 |
-
* 1. Wrap long words onto the next line and break them if they are too long to fit
|
2226 |
-
* 2. Legacy `word-wrap` as fallback for `overflow-wrap`
|
2227 |
-
* 3. Fix `overflow-wrap` which doesn't work with table cells in Chrome, Opera, IE11 and Edge
|
2228 |
-
* Must use `break-all` to support IE11 and Edge
|
2229 |
-
* Note: Not using `hyphens: auto;` because it hyphenates text even if not needed
|
2230 |
-
*/
|
2231 |
-
/* 3 */
|
2232 |
-
/* ========================================================================
|
2233 |
-
Component: Column
|
2234 |
-
========================================================================== */
|
2235 |
-
/* Desktop and bigger */
|
2236 |
-
/*
|
2237 |
-
* Fix image 1px line wrapping into the next column in Chrome
|
2238 |
-
*/
|
2239 |
-
/* Divider
|
2240 |
-
========================================================================== */
|
2241 |
-
/*
|
2242 |
-
* 1. Double the column gap
|
2243 |
-
*/
|
2244 |
-
/* Desktop and bigger */
|
2245 |
-
/* Width modifiers
|
2246 |
-
========================================================================== */
|
2247 |
-
/* Phone landscape and bigger */
|
2248 |
-
/* Tablet landscape and bigger */
|
2249 |
-
/* Desktop and bigger */
|
2250 |
-
/* Large screen and bigger */
|
2251 |
-
/* Make element span across all columns
|
2252 |
-
* Does not work in Firefox yet
|
2253 |
-
========================================================================== */
|
2254 |
-
/* ========================================================================
|
2255 |
-
Component: Cover
|
2256 |
-
========================================================================== */
|
2257 |
-
/*
|
2258 |
-
* Works with iframes and embedded content
|
2259 |
-
* 1. Reset responsiveness for embedded content
|
2260 |
-
* 2. Center object
|
2261 |
-
* Note: Percent values on the `top` property only works if this element
|
2262 |
-
* is absolute positioned or if the container has a height
|
2263 |
-
*/
|
2264 |
-
/* Container
|
2265 |
-
========================================================================== */
|
2266 |
-
/*
|
2267 |
-
* 1. Parent container which clips resized object
|
2268 |
-
* 2. Needed if the child is positioned absolute. See note above
|
2269 |
-
*/
|
2270 |
-
/* ========================================================================
|
2271 |
-
Component: Background
|
2272 |
-
========================================================================== */
|
2273 |
-
/* Color
|
2274 |
-
========================================================================== */
|
2275 |
-
/* Size
|
2276 |
-
========================================================================== */
|
2277 |
-
/* Position
|
2278 |
-
========================================================================== */
|
2279 |
-
/* Repeat
|
2280 |
-
========================================================================== */
|
2281 |
-
/* Attachment
|
2282 |
-
========================================================================== */
|
2283 |
-
/*
|
2284 |
-
* 1. Fix bug introduced in Chrome 67: the background image is not visible if any element on the page uses `translate3d`
|
2285 |
-
*/
|
2286 |
-
/*
|
2287 |
-
* Exclude touch devices because `fixed` doesn't work on iOS and Android
|
2288 |
-
*/
|
2289 |
-
/* Image
|
2290 |
-
========================================================================== */
|
2291 |
-
/* Phone portrait and smaller */
|
2292 |
-
/* Phone landscape and smaller */
|
2293 |
-
/* Tablet landscape and smaller */
|
2294 |
-
/* Desktop and smaller */
|
2295 |
-
/* Blend modes
|
2296 |
-
========================================================================== */
|
2297 |
-
/* ========================================================================
|
2298 |
-
Component: Align
|
2299 |
-
========================================================================== */
|
2300 |
-
/*
|
2301 |
-
* Default
|
2302 |
-
*/
|
2303 |
-
/*
|
2304 |
-
* Center
|
2305 |
-
*/
|
2306 |
-
/*
|
2307 |
-
* Left/Right
|
2308 |
-
*/
|
2309 |
-
/* Phone landscape and bigger */
|
2310 |
-
/* Tablet landscape and bigger */
|
2311 |
-
/* Desktop and bigger */
|
2312 |
-
/* Large screen and bigger */
|
2313 |
-
/* ========================================================================
|
2314 |
-
Component: SVG
|
2315 |
-
========================================================================== */
|
2316 |
-
/*
|
2317 |
-
* 1. Fill all SVG elements with the current text color if no `fill` attribute is set
|
2318 |
-
* 2. Set the fill and stroke color of all SVG elements to the current text color
|
2319 |
-
*/
|
2320 |
-
/* 1 */
|
2321 |
-
/*
|
2322 |
-
* Fix Firefox blurry SVG rendering: https://bugzilla.mozilla.org/show_bug.cgi?id=1046835
|
2323 |
-
*/
|
2324 |
-
/* ========================================================================
|
2325 |
-
Component: Utility
|
2326 |
-
========================================================================== */
|
2327 |
-
/* Panel
|
2328 |
-
========================================================================== */
|
2329 |
-
/*
|
2330 |
-
* Micro clearfix
|
2331 |
-
*/
|
2332 |
-
/*
|
2333 |
-
* Remove margin from the last-child
|
2334 |
-
*/
|
2335 |
-
/*
|
2336 |
-
* Scrollable
|
2337 |
-
*/
|
2338 |
-
/* Clearfix
|
2339 |
-
========================================================================== */
|
2340 |
-
/*
|
2341 |
-
* 1. `table-cell` is used with `::before` because `table` creates a 1px gap when it becomes a flex item, only in Webkit
|
2342 |
-
* 2. `table` is used again with `::after` because `clear` only works with block elements.
|
2343 |
-
* Note: `display: block` with `overflow: hidden` is currently not working in the latest Safari
|
2344 |
-
*/
|
2345 |
-
/* 1 */
|
2346 |
-
/* 2 */
|
2347 |
-
/* Float
|
2348 |
-
========================================================================== */
|
2349 |
-
/*
|
2350 |
-
* 1. Prevent content overflow
|
2351 |
-
*/
|
2352 |
-
/* 1 */
|
2353 |
-
/* Overfow
|
2354 |
-
========================================================================== */
|
2355 |
-
/*
|
2356 |
-
* Enable scrollbars if content is clipped
|
2357 |
-
* Note: Firefox ignores `padding-bottom` for the scrollable overflow https://bugzilla.mozilla.org/show_bug.cgi?id=748518
|
2358 |
-
*/
|
2359 |
-
/* Resize
|
2360 |
-
========================================================================== */
|
2361 |
-
/* Display
|
2362 |
-
========================================================================== */
|
2363 |
-
/* Inline
|
2364 |
-
========================================================================== */
|
2365 |
-
/*
|
2366 |
-
* 1. Container fits its content
|
2367 |
-
* 2. Create position context
|
2368 |
-
* 3. Prevent content overflow
|
2369 |
-
* 4. Behave like most inline-block elements
|
2370 |
-
* 5. Force hardware acceleration without creating a new stacking context
|
2371 |
-
* to fix 1px glitch when combined with overlays and transitions in Webkit
|
2372 |
-
* 6. Clip child elements
|
2373 |
-
*/
|
2374 |
-
/* Responsive objects
|
2375 |
-
========================================================================== */
|
2376 |
-
/*
|
2377 |
-
* Preserve original dimensions
|
2378 |
-
* Because `img, `video`, `canvas` and `audio` are already responsive by default, see Base component
|
2379 |
-
*/
|
2380 |
-
/*
|
2381 |
-
* Responsiveness
|
2382 |
-
* Corrects `max-width` and `max-height` behavior if padding and border are used
|
2383 |
-
*/
|
2384 |
-
/*
|
2385 |
-
* 1. Set a maximum width. `important` needed to override `uk-preserve-width img`
|
2386 |
-
* 2. Auto scale the height. Only needed if `height` attribute is present
|
2387 |
-
*/
|
2388 |
-
/*
|
2389 |
-
* 1. Set a maximum height. Only works if the parent element has a fixed height
|
2390 |
-
* 2. Auto scale the width. Only needed if `width` attribute is present
|
2391 |
-
* 3. Reset max-width, which `img, `video`, `canvas` and `audio` already have by default
|
2392 |
-
*/
|
2393 |
-
/* Border
|
2394 |
-
========================================================================== */
|
2395 |
-
/*
|
2396 |
-
* Fix `overflow: hidden` to be ignored with border-radius and CSS transforms in Webkit
|
2397 |
-
*/
|
2398 |
-
/* Box-shadow
|
2399 |
-
========================================================================== */
|
2400 |
-
/*
|
2401 |
-
* Hover
|
2402 |
-
*/
|
2403 |
-
/* Box-shadow bottom
|
2404 |
-
========================================================================== */
|
2405 |
-
/*
|
2406 |
-
* 1. Set position.
|
2407 |
-
* 2. Set style
|
2408 |
-
* 3. Blur doesn't work on pseudo elements with negative `z-index` in Edge.
|
2409 |
-
* Solved by using `before` and add position context to child elements.
|
2410 |
-
*/
|
2411 |
-
/* Drop cap
|
2412 |
-
========================================================================== */
|
2413 |
-
/*
|
2414 |
-
* 1. Firefox doesn't apply `::first-letter` if the first letter is inside child elements
|
2415 |
-
* https://bugzilla.mozilla.org/show_bug.cgi?id=214004
|
2416 |
-
* 2. In Firefox, a floating `::first-letter` doesn't have a line box and there for no `line-height`
|
2417 |
-
* https://bugzilla.mozilla.org/show_bug.cgi?id=317933
|
2418 |
-
* 3. Caused by 1.: Edge creates two nested `::first-letter` containers, one for each selector
|
2419 |
-
* This doubles the `font-size` exponential when using the `em` unit.
|
2420 |
-
*/
|
2421 |
-
/* 2 */
|
2422 |
-
/* 3 */
|
2423 |
-
/* Logo
|
2424 |
-
========================================================================== */
|
2425 |
-
/*
|
2426 |
-
* 1. Required for `a`
|
2427 |
-
*/
|
2428 |
-
/* Hover + Focus */
|
2429 |
-
/* Disabled State
|
2430 |
-
========================================================================== */
|
2431 |
-
/* Drag State
|
2432 |
-
========================================================================== */
|
2433 |
-
/*
|
2434 |
-
* 1. Needed if moving over elements with have their own cursor on hover, e.g. links or buttons
|
2435 |
-
* 2. Fix dragging over iframes
|
2436 |
-
*/
|
2437 |
-
/* 2 */
|
2438 |
-
/* Dragover State
|
2439 |
-
========================================================================== */
|
2440 |
-
/*
|
2441 |
-
* Create a box-shadow when dragging a file over the upload area
|
2442 |
-
*/
|
2443 |
-
/* Blend modes
|
2444 |
-
========================================================================== */
|
2445 |
-
/* Transform
|
2446 |
-
========================================================================== */
|
2447 |
-
/* Transform Origin
|
2448 |
-
========================================================================== */
|
2449 |
-
/* ========================================================================
|
2450 |
-
Component: Flex
|
2451 |
-
========================================================================== */
|
2452 |
-
/*
|
2453 |
-
* Remove pseudo elements created by micro clearfix as precaution
|
2454 |
-
*/
|
2455 |
-
/* Alignment
|
2456 |
-
========================================================================== */
|
2457 |
-
/*
|
2458 |
-
* Align items along the main axis of the current line of the flex container
|
2459 |
-
* Row: Horizontal
|
2460 |
-
*/
|
2461 |
-
/* Phone landscape and bigger */
|
2462 |
-
/* Tablet landscape and bigger */
|
2463 |
-
/* Desktop and bigger */
|
2464 |
-
/* Large screen and bigger */
|
2465 |
-
/*
|
2466 |
-
* Align items in the cross axis of the current line of the flex container
|
2467 |
-
* Row: Vertical
|
2468 |
-
*/
|
2469 |
-
/* Direction
|
2470 |
-
========================================================================== */
|
2471 |
-
/* Wrap
|
2472 |
-
========================================================================== */
|
2473 |
-
/*
|
2474 |
-
* Aligns items within the flex container when there is extra space in the cross-axis
|
2475 |
-
* Only works if there is more than one line of flex items
|
2476 |
-
*/
|
2477 |
-
/* Item ordering
|
2478 |
-
========================================================================== */
|
2479 |
-
/*
|
2480 |
-
* Default is 0
|
2481 |
-
*/
|
2482 |
-
/* Phone landscape and bigger */
|
2483 |
-
/* Tablet landscape and bigger */
|
2484 |
-
/* Desktop and bigger */
|
2485 |
-
/* Large screen and bigger */
|
2486 |
-
/* Item dimensions
|
2487 |
-
========================================================================== */
|
2488 |
-
/*
|
2489 |
-
* Initial: 0 1 auto
|
2490 |
-
* Content dimensions, but shrinks
|
2491 |
-
*/
|
2492 |
-
/*
|
2493 |
-
* No Flex: 0 0 auto
|
2494 |
-
* Content dimensions
|
2495 |
-
*/
|
2496 |
-
/*
|
2497 |
-
* Relative Flex: 1 1 auto
|
2498 |
-
* Space is allocated considering content
|
2499 |
-
*/
|
2500 |
-
/*
|
2501 |
-
* Absolute Flex: 1 1 0%
|
2502 |
-
* Space is allocated solely based on flex
|
2503 |
-
*/
|
2504 |
-
/* ========================================================================
|
2505 |
-
Component: Margin
|
2506 |
-
========================================================================== */
|
2507 |
-
/*
|
2508 |
-
* Default
|
2509 |
-
*/
|
2510 |
-
/* Small
|
2511 |
-
========================================================================== */
|
2512 |
-
/* Medium
|
2513 |
-
========================================================================== */
|
2514 |
-
/* Large
|
2515 |
-
========================================================================== */
|
2516 |
-
/* Desktop and bigger */
|
2517 |
-
/* XLarge
|
2518 |
-
========================================================================== */
|
2519 |
-
/* Desktop and bigger */
|
2520 |
-
/* Remove
|
2521 |
-
========================================================================== */
|
2522 |
-
/* Auto
|
2523 |
-
========================================================================== */
|
2524 |
-
/* ========================================================================
|
2525 |
-
Component: Padding
|
2526 |
-
========================================================================== */
|
2527 |
-
/* Desktop and bigger */
|
2528 |
-
/* Small
|
2529 |
-
========================================================================== */
|
2530 |
-
/* Large
|
2531 |
-
========================================================================== */
|
2532 |
-
/* Desktop and bigger */
|
2533 |
-
/* Remove
|
2534 |
-
========================================================================== */
|
2535 |
-
/* ========================================================================
|
2536 |
-
Component: Position
|
2537 |
-
========================================================================== */
|
2538 |
-
/* Directions
|
2539 |
-
========================================================================== */
|
2540 |
-
/* Edges
|
2541 |
-
========================================================================== */
|
2542 |
-
/* Don't use `width: 100%` because it is wrong if the parent has padding. */
|
2543 |
-
/* Corners
|
2544 |
-
========================================================================== */
|
2545 |
-
/*
|
2546 |
-
* Center
|
2547 |
-
* 1. Fix text wrapping if content is larger than 50% of the container.
|
2548 |
-
*/
|
2549 |
-
/* Vertical */
|
2550 |
-
/* Horizontal */
|
2551 |
-
/* Cover
|
2552 |
-
========================================================================== */
|
2553 |
-
/* Utility
|
2554 |
-
========================================================================== */
|
2555 |
-
/* Margin modifier
|
2556 |
-
========================================================================== */
|
2557 |
-
/*
|
2558 |
-
* Small
|
2559 |
-
*/
|
2560 |
-
/*
|
2561 |
-
* Medium
|
2562 |
-
*/
|
2563 |
-
/*
|
2564 |
-
* Large
|
2565 |
-
*/
|
2566 |
-
/* Desktop and bigger */
|
2567 |
-
/* ========================================================================
|
2568 |
-
Component: Transition
|
2569 |
-
========================================================================== */
|
2570 |
-
/* Toggle (Hover + Focus)
|
2571 |
-
========================================================================== */
|
2572 |
-
/*
|
2573 |
-
* 1. Prevent tab highlighting on iOS.
|
2574 |
-
*/
|
2575 |
-
/*
|
2576 |
-
* Remove outline for `tabindex`
|
2577 |
-
*/
|
2578 |
-
/* Transitions
|
2579 |
-
========================================================================== */
|
2580 |
-
/*
|
2581 |
-
* The toggle is triggered on touch devices by two methods:
|
2582 |
-
* 1. Using `:focus` and tabindex
|
2583 |
-
* 2. Using `:hover` and a `touchstart` event listener registered on the document
|
2584 |
-
* (Doesn't work on Surface touch devices)
|
2585 |
-
*
|
2586 |
-
* Note: Transitions don't work with `uk-postion-center-*` classes because they also use `transform`,
|
2587 |
-
* therefore it's recommended to use an extra `div` for the transition.
|
2588 |
-
*/
|
2589 |
-
/*
|
2590 |
-
* Fade
|
2591 |
-
*/
|
2592 |
-
/*
|
2593 |
-
* Scale
|
2594 |
-
*/
|
2595 |
-
/* Show */
|
2596 |
-
/*
|
2597 |
-
* Slide
|
2598 |
-
*/
|
2599 |
-
/* Show */
|
2600 |
-
/* Opacity modifier
|
2601 |
-
========================================================================== */
|
2602 |
-
/* Duration modifiers
|
2603 |
-
========================================================================== */
|
2604 |
-
/* ========================================================================
|
2605 |
-
Component: Visibility
|
2606 |
-
========================================================================== */
|
2607 |
-
/*
|
2608 |
-
* Hidden
|
2609 |
-
* `hidden` attribute also set here to make it stronger
|
2610 |
-
*/
|
2611 |
-
/* Phone landscape and bigger */
|
2612 |
-
/* Tablet landscape and bigger */
|
2613 |
-
/* Desktop and bigger */
|
2614 |
-
/* Large screen and bigger */
|
2615 |
-
/*
|
2616 |
-
* Visible
|
2617 |
-
*/
|
2618 |
-
/* Phone portrait and smaller */
|
2619 |
-
/* Phone landscape and smaller */
|
2620 |
-
/* Tablet landscape and smaller */
|
2621 |
-
/* Desktop and smaller */
|
2622 |
-
/* Visibility
|
2623 |
-
========================================================================== */
|
2624 |
-
/* Toggle (Hover + Focus)
|
2625 |
-
========================================================================== */
|
2626 |
-
/*
|
2627 |
-
* Hidden
|
2628 |
-
* 1. The toggle is triggered on touch devices using `:focus` and tabindex
|
2629 |
-
* 2. The target stays visible if any element within receives focus through keyboard
|
2630 |
-
* Doesn't work in Edge, yet.
|
2631 |
-
* 3. Can't use `display: none` nor `visibility: hidden` because both are not focusable.
|
2632 |
-
*
|
2633 |
-
*/
|
2634 |
-
/* 1 + 2 */
|
2635 |
-
/*
|
2636 |
-
* Invisible
|
2637 |
-
*/
|
2638 |
-
/* 1 + 2 */
|
2639 |
-
/*
|
2640 |
-
* 1. Prevent tab highlighting on iOS.
|
2641 |
-
*/
|
2642 |
-
/*
|
2643 |
-
* Remove outline for `tabindex`
|
2644 |
-
*/
|
2645 |
-
/* Touch
|
2646 |
-
========================================================================== */
|
2647 |
-
/*
|
2648 |
-
* Hide if primary pointing device has limited accuracy, e.g. a touch screen.
|
2649 |
-
* Works on mobile browsers: Safari, Chrome and Android browser
|
2650 |
-
*/
|
2651 |
-
/*
|
2652 |
-
* Hide if primary pointing device is accurate, e.g. mouse.
|
2653 |
-
* 1. Fallback for IE11 and Firefox, because `pointer` is not supported
|
2654 |
-
* 2. Reset if supported
|
2655 |
-
*/
|
2656 |
-
/* 1 */
|
2657 |
-
/* ========================================================================
|
2658 |
-
Component: Inverse
|
2659 |
-
========================================================================== */
|
2660 |
-
/*
|
2661 |
-
* Implemented class depends on the general theme color
|
2662 |
-
* `uk-light` is for light colors on dark backgrounds
|
2663 |
-
* `uk-dark` is or dark colors on light backgrounds
|
2664 |
-
*/
|
2665 |
-
/* ========================================================================
|
2666 |
-
Component: Print
|
2667 |
-
========================================================================== */
|
2668 |
-
}
|
2669 |
-
.bc-root a {
|
2670 |
-
-webkit-text-decoration-skip: objects;
|
2671 |
-
}
|
2672 |
-
.bc-root a:active,
|
2673 |
-
.bc-root a:hover {
|
2674 |
-
outline: none;
|
2675 |
-
}
|
2676 |
-
.bc-root a,
|
2677 |
-
.bc-root .bc-uk-link {
|
2678 |
-
color: #1e87f0;
|
2679 |
-
text-decoration: none;
|
2680 |
-
cursor: pointer;
|
2681 |
-
}
|
2682 |
-
.bc-root a:hover,
|
2683 |
-
.bc-root .bc-uk-link:hover {
|
2684 |
-
color: #0f6ecd;
|
2685 |
-
text-decoration: underline;
|
2686 |
-
}
|
2687 |
-
.bc-root abbr[title] {
|
2688 |
-
/* 1 */
|
2689 |
-
text-decoration: underline;
|
2690 |
-
/* 2 */
|
2691 |
-
-webkit-text-decoration-style: dotted;
|
2692 |
-
}
|
2693 |
-
.bc-root b,
|
2694 |
-
.bc-root strong {
|
2695 |
-
font-weight: bolder;
|
2696 |
-
}
|
2697 |
-
.bc-root :not(pre) > code,
|
2698 |
-
.bc-root :not(pre) > kbd,
|
2699 |
-
.bc-root :not(pre) > samp {
|
2700 |
-
/* 1 */
|
2701 |
-
font-family: Consolas, monaco, monospace;
|
2702 |
-
/* 2 */
|
2703 |
-
font-size: 0.875rem;
|
2704 |
-
/* 3 */
|
2705 |
-
color: #f0506e;
|
2706 |
-
white-space: nowrap;
|
2707 |
-
padding: 2px 6px;
|
2708 |
-
background: #f8f8f8;
|
2709 |
-
}
|
2710 |
-
.bc-root em {
|
2711 |
-
color: #f0506e;
|
2712 |
-
}
|
2713 |
-
.bc-root ins {
|
2714 |
-
background: #ffd;
|
2715 |
-
color: #666;
|
2716 |
-
text-decoration: none;
|
2717 |
-
}
|
2718 |
-
.bc-root mark {
|
2719 |
-
background: #ffd;
|
2720 |
-
color: #666;
|
2721 |
-
}
|
2722 |
-
.bc-root q {
|
2723 |
-
font-style: italic;
|
2724 |
-
}
|
2725 |
-
.bc-root small {
|
2726 |
-
font-size: 80%;
|
2727 |
-
}
|
2728 |
-
.bc-root sub,
|
2729 |
-
.bc-root sup {
|
2730 |
-
font-size: 75%;
|
2731 |
-
line-height: 0;
|
2732 |
-
position: relative;
|
2733 |
-
vertical-align: baseline;
|
2734 |
-
}
|
2735 |
-
.bc-root sup {
|
2736 |
-
top: -0.5em;
|
2737 |
-
}
|
2738 |
-
.bc-root sub {
|
2739 |
-
bottom: -0.25em;
|
2740 |
-
}
|
2741 |
-
.bc-root audio,
|
2742 |
-
.bc-root canvas,
|
2743 |
-
.bc-root iframe,
|
2744 |
-
.bc-root img,
|
2745 |
-
.bc-root svg,
|
2746 |
-
.bc-root video {
|
2747 |
-
vertical-align: middle;
|
2748 |
-
}
|
2749 |
-
.bc-root canvas,
|
2750 |
-
.bc-root img,
|
2751 |
-
.bc-root video {
|
2752 |
-
/* 1 */
|
2753 |
-
max-width: 100%;
|
2754 |
-
/* 2 */
|
2755 |
-
height: auto;
|
2756 |
-
/* 3 */
|
2757 |
-
box-sizing: border-box;
|
2758 |
-
}
|
2759 |
-
@supports (display: block) {
|
2760 |
-
.bc-root svg {
|
2761 |
-
max-width: 100%;
|
2762 |
-
height: auto;
|
2763 |
-
box-sizing: border-box;
|
2764 |
-
}
|
2765 |
-
}
|
2766 |
-
.bc-root svg:not(:root) {
|
2767 |
-
overflow: hidden;
|
2768 |
-
}
|
2769 |
-
.bc-root img:not([src]) {
|
2770 |
-
visibility: hidden;
|
2771 |
-
}
|
2772 |
-
.bc-root iframe {
|
2773 |
-
border: 0;
|
2774 |
-
}
|
2775 |
-
.bc-root p,
|
2776 |
-
.bc-root ul,
|
2777 |
-
.bc-root ol,
|
2778 |
-
.bc-root dl,
|
2779 |
-
.bc-root pre,
|
2780 |
-
.bc-root address,
|
2781 |
-
.bc-root fieldset,
|
2782 |
-
.bc-root figure {
|
2783 |
-
margin: 0 0 20px 0;
|
2784 |
-
}
|
2785 |
-
.bc-root * + p,
|
2786 |
-
.bc-root * + ul,
|
2787 |
-
.bc-root * + ol,
|
2788 |
-
.bc-root * + dl,
|
2789 |
-
.bc-root * + pre,
|
2790 |
-
.bc-root * + address,
|
2791 |
-
.bc-root * + fieldset,
|
2792 |
-
.bc-root * + figure {
|
2793 |
-
margin-top: 20px;
|
2794 |
-
}
|
2795 |
-
.bc-root h1,
|
2796 |
-
.bc-root .bc-uk-h1,
|
2797 |
-
.bc-root h2,
|
2798 |
-
.bc-root .bc-uk-h2,
|
2799 |
-
.bc-root h3,
|
2800 |
-
.bc-root .bc-uk-h3,
|
2801 |
-
.bc-root h4,
|
2802 |
-
.bc-root .bc-uk-h4,
|
2803 |
-
.bc-root h5,
|
2804 |
-
.bc-root .bc-uk-h5,
|
2805 |
-
.bc-root h6,
|
2806 |
-
.bc-root .bc-uk-h6,
|
2807 |
-
.bc-root .bc-uk-heading-small,
|
2808 |
-
.bc-root .bc-uk-heading-medium,
|
2809 |
-
.bc-root .bc-uk-heading-large,
|
2810 |
-
.bc-root .bc-uk-heading-xlarge,
|
2811 |
-
.bc-root .bc-uk-heading-2xlarge {
|
2812 |
-
margin: 0 0 20px 0;
|
2813 |
-
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";
|
2814 |
-
font-weight: normal;
|
2815 |
-
color: #333;
|
2816 |
-
text-transform: none;
|
2817 |
-
}
|
2818 |
-
.bc-root * + h1,
|
2819 |
-
.bc-root * + .bc-uk-h1,
|
2820 |
-
.bc-root * + h2,
|
2821 |
-
.bc-root * + .bc-uk-h2,
|
2822 |
-
.bc-root * + h3,
|
2823 |
-
.bc-root * + .bc-uk-h3,
|
2824 |
-
.bc-root * + h4,
|
2825 |
-
.bc-root * + .bc-uk-h4,
|
2826 |
-
.bc-root * + h5,
|
2827 |
-
.bc-root * + .bc-uk-h5,
|
2828 |
-
.bc-root * + h6,
|
2829 |
-
.bc-root * + .bc-uk-h6,
|
2830 |
-
.bc-root * + .bc-uk-heading-small,
|
2831 |
-
.bc-root * + .bc-uk-heading-medium,
|
2832 |
-
.bc-root * + .bc-uk-heading-large,
|
2833 |
-
.bc-root * + .bc-uk-heading-xlarge,
|
2834 |
-
.bc-root * + .bc-uk-heading-2xlarge {
|
2835 |
-
margin-top: 40px;
|
2836 |
-
}
|
2837 |
-
.bc-root h1,
|
2838 |
-
.bc-root .bc-uk-h1 {
|
2839 |
-
font-size: 2.23125rem;
|
2840 |
-
line-height: 1.2;
|
2841 |
-
}
|
2842 |
-
.bc-root h2,
|
2843 |
-
.bc-root .bc-uk-h2 {
|
2844 |
-
font-size: 1.7rem;
|
2845 |
-
line-height: 1.3;
|
2846 |
-
}
|
2847 |
-
.bc-root h3,
|
2848 |
-
.bc-root .bc-uk-h3 {
|
2849 |
-
font-size: 1.5rem;
|
2850 |
-
line-height: 1.4;
|
2851 |
-
}
|
2852 |
-
.bc-root h4,
|
2853 |
-
.bc-root .bc-uk-h4 {
|
2854 |
-
font-size: 1.25rem;
|
2855 |
-
line-height: 1.4;
|
2856 |
-
}
|
2857 |
-
.bc-root h5,
|
2858 |
-
.bc-root .bc-uk-h5 {
|
2859 |
-
font-size: 16px;
|
2860 |
-
line-height: 1.4;
|
2861 |
-
}
|
2862 |
-
.bc-root h6,
|
2863 |
-
.bc-root .bc-uk-h6 {
|
2864 |
-
font-size: 0.875rem;
|
2865 |
-
line-height: 1.4;
|
2866 |
-
}
|
2867 |
-
@media (min-width: 960px) {
|
2868 |
-
.bc-root h1,
|
2869 |
-
.bc-root .bc-uk-h1 {
|
2870 |
-
font-size: 2.625rem;
|
2871 |
-
}
|
2872 |
-
.bc-root h2,
|
2873 |
-
.bc-root .bc-uk-h2 {
|
2874 |
-
font-size: 2rem;
|
2875 |
-
}
|
2876 |
-
}
|
2877 |
-
.bc-root ul,
|
2878 |
-
.bc-root ol {
|
2879 |
-
padding-left: 30px;
|
2880 |
-
}
|
2881 |
-
.bc-root ul > li > ul,
|
2882 |
-
.bc-root ul > li > ol,
|
2883 |
-
.bc-root ol > li > ol,
|
2884 |
-
.bc-root ol > li > ul {
|
2885 |
-
margin: 0;
|
2886 |
-
}
|
2887 |
-
.bc-root dt {
|
2888 |
-
font-weight: bold;
|
2889 |
-
}
|
2890 |
-
.bc-root dd {
|
2891 |
-
margin-left: 0;
|
2892 |
-
}
|
2893 |
-
.bc-root hr,
|
2894 |
-
.bc-root .bc-uk-hr {
|
2895 |
-
/* 1 */
|
2896 |
-
box-sizing: content-box;
|
2897 |
-
height: 0;
|
2898 |
-
/* 2 */
|
2899 |
-
overflow: visible;
|
2900 |
-
/* 3 */
|
2901 |
-
text-align: inherit;
|
2902 |
-
/* 4 */
|
2903 |
-
margin: 0 0 20px 0;
|
2904 |
-
border: 0;
|
2905 |
-
border-top: 1px solid #e5e5e5;
|
2906 |
-
}
|
2907 |
-
.bc-root * + hr,
|
2908 |
-
.bc-root * + .bc-uk-hr {
|
2909 |
-
margin-top: 20px;
|
2910 |
-
}
|
2911 |
-
.bc-root address {
|
2912 |
-
font-style: normal;
|
2913 |
-
}
|
2914 |
-
.bc-root blockquote {
|
2915 |
-
margin: 0 0 20px 0;
|
2916 |
-
font-size: 1.25rem;
|
2917 |
-
line-height: 1.5;
|
2918 |
-
font-style: italic;
|
2919 |
-
color: #333;
|
2920 |
-
}
|
2921 |
-
.bc-root * + blockquote {
|
2922 |
-
margin-top: 20px;
|
2923 |
-
}
|
2924 |
-
.bc-root blockquote p:last-of-type {
|
2925 |
-
margin-bottom: 0;
|
2926 |
-
}
|
2927 |
-
.bc-root blockquote footer {
|
2928 |
-
margin-top: 10px;
|
2929 |
-
font-size: 0.875rem;
|
2930 |
-
line-height: 1.5;
|
2931 |
-
color: #666;
|
2932 |
-
}
|
2933 |
-
.bc-root blockquote footer::before {
|
2934 |
-
content: "— ";
|
2935 |
-
}
|
2936 |
-
.bc-root pre {
|
2937 |
-
font: 0.875rem/1.5 Consolas, monaco, monospace;
|
2938 |
-
color: #666;
|
2939 |
-
-moz-tab-size: 4;
|
2940 |
-
tab-size: 4;
|
2941 |
-
/* 1 */
|
2942 |
-
overflow: auto;
|
2943 |
-
padding: 10px;
|
2944 |
-
border: 1px solid #e5e5e5;
|
2945 |
-
border-radius: 3px;
|
2946 |
-
background: #fff;
|
2947 |
-
}
|
2948 |
-
.bc-root pre code {
|
2949 |
-
font-family: Consolas, monaco, monospace;
|
2950 |
-
}
|
2951 |
-
.bc-root ::selection {
|
2952 |
-
background: #39f;
|
2953 |
-
color: #fff;
|
2954 |
-
text-shadow: none;
|
2955 |
-
}
|
2956 |
-
.bc-root details,
|
2957 |
-
.bc-root main {
|
2958 |
-
/* 2 */
|
2959 |
-
display: block;
|
2960 |
-
}
|
2961 |
-
.bc-root summary {
|
2962 |
-
display: list-item;
|
2963 |
-
}
|
2964 |
-
.bc-root template {
|
2965 |
-
display: none;
|
2966 |
-
}
|
2967 |
-
.bc-root .bc-uk-breakpoint-s::before {
|
2968 |
-
content: "640px";
|
2969 |
-
}
|
2970 |
-
.bc-root .bc-uk-breakpoint-m::before {
|
2971 |
-
content: "960px";
|
2972 |
-
}
|
2973 |
-
.bc-root .bc-uk-breakpoint-l::before {
|
2974 |
-
content: "1200px";
|
2975 |
-
}
|
2976 |
-
.bc-root .bc-uk-breakpoint-xl::before {
|
2977 |
-
content: "1600px";
|
2978 |
-
}
|
2979 |
-
.bc-root :root {
|
2980 |
-
--uk-breakpoint-s: 640px;
|
2981 |
-
--uk-breakpoint-m: 960px;
|
2982 |
-
--uk-breakpoint-l: 1200px;
|
2983 |
-
--uk-breakpoint-xl: 1600px;
|
2984 |
-
}
|
2985 |
-
.bc-root a.bc-uk-link-muted,
|
2986 |
-
.bc-root .bc-uk-link-muted a {
|
2987 |
-
color: #999;
|
2988 |
-
}
|
2989 |
-
.bc-root a.bc-uk-link-muted:hover,
|
2990 |
-
.bc-root .bc-uk-link-muted a:hover {
|
2991 |
-
color: #666;
|
2992 |
-
}
|
2993 |
-
.bc-root a.bc-uk-link-text:not(:hover),
|
2994 |
-
.bc-root .bc-uk-link-text a:not(:hover) {
|
2995 |
-
color: inherit;
|
2996 |
-
}
|
2997 |
-
.bc-root a.bc-uk-link-text:hover,
|
2998 |
-
.bc-root .bc-uk-link-text a:hover {
|
2999 |
-
color: #999;
|
3000 |
-
}
|
3001 |
-
.bc-root a.bc-uk-link-heading:not(:hover),
|
3002 |
-
.bc-root .bc-uk-link-heading a:not(:hover) {
|
3003 |
-
color: inherit;
|
3004 |
-
}
|
3005 |
-
.bc-root a.bc-uk-link-heading:hover,
|
3006 |
-
.bc-root .bc-uk-link-heading a:hover {
|
3007 |
-
color: #1e87f0;
|
3008 |
-
text-decoration: none;
|
3009 |
-
}
|
3010 |
-
.bc-root a.bc-uk-link-reset,
|
3011 |
-
.bc-root a.bc-uk-link-reset:hover,
|
3012 |
-
.bc-root .bc-uk-link-reset a,
|
3013 |
-
.bc-root .bc-uk-link-reset a:hover {
|
3014 |
-
color: inherit !important;
|
3015 |
-
text-decoration: none !important;
|
3016 |
-
}
|
3017 |
-
.bc-root .bc-uk-heading-small {
|
3018 |
-
font-size: 2.6rem;
|
3019 |
-
line-height: 1.2;
|
3020 |
-
}
|
3021 |
-
.bc-root .bc-uk-heading-medium {
|
3022 |
-
font-size: 2.8875rem;
|
3023 |
-
line-height: 1.1;
|
3024 |
-
}
|
3025 |
-
.bc-root .bc-uk-heading-large {
|
3026 |
-
font-size: 3.4rem;
|
3027 |
-
line-height: 1.1;
|
3028 |
-
}
|
3029 |
-
.bc-root .bc-uk-heading-xlarge {
|
3030 |
-
font-size: 4rem;
|
3031 |
-
line-height: 1;
|
3032 |
-
}
|
3033 |
-
.bc-root .bc-uk-heading-2xlarge {
|
3034 |
-
font-size: 6rem;
|
3035 |
-
line-height: 1;
|
3036 |
-
}
|
3037 |
-
@media (min-width: 960px) {
|
3038 |
-
.bc-root .bc-uk-heading-small {
|
3039 |
-
font-size: 3.25rem;
|
3040 |
-
}
|
3041 |
-
.bc-root .bc-uk-heading-medium {
|
3042 |
-
font-size: 3.5rem;
|
3043 |
-
}
|
3044 |
-
.bc-root .bc-uk-heading-large {
|
3045 |
-
font-size: 4rem;
|
3046 |
-
}
|
3047 |
-
.bc-root .bc-uk-heading-xlarge {
|
3048 |
-
font-size: 6rem;
|
3049 |
-
}
|
3050 |
-
.bc-root .bc-uk-heading-2xlarge {
|
3051 |
-
font-size: 8rem;
|
3052 |
-
}
|
3053 |
-
}
|
3054 |
-
@media (min-width: 1200px) {
|
3055 |
-
.bc-root .bc-uk-heading-medium {
|
3056 |
-
font-size: 4rem;
|
3057 |
-
}
|
3058 |
-
.bc-root .bc-uk-heading-large {
|
3059 |
-
font-size: 6rem;
|
3060 |
-
}
|
3061 |
-
.bc-root .bc-uk-heading-xlarge {
|
3062 |
-
font-size: 8rem;
|
3063 |
-
}
|
3064 |
-
.bc-root .bc-uk-heading-2xlarge {
|
3065 |
-
font-size: 11rem;
|
3066 |
-
}
|
3067 |
-
}
|
3068 |
-
.bc-root .bc-uk-heading-divider {
|
3069 |
-
padding-bottom: calc(10px + 0.1em);
|
3070 |
-
border-bottom: calc(0.2px + 0.05em) solid #e5e5e5;
|
3071 |
-
}
|
3072 |
-
.bc-root .bc-uk-heading-bullet {
|
3073 |
-
position: relative;
|
3074 |
-
}
|
3075 |
-
.bc-root .bc-uk-heading-bullet::before {
|
3076 |
-
content: "";
|
3077 |
-
/* 1 */
|
3078 |
-
display: inline-block;
|
3079 |
-
/* 2 */
|
3080 |
-
position: relative;
|
3081 |
-
top: calc(-0.1 * 1em);
|
3082 |
-
vertical-align: middle;
|
3083 |
-
/* 3 */
|
3084 |
-
height: calc(4px + 0.7em);
|
3085 |
-
margin-right: calc(5px + 0.2em);
|
3086 |
-
border-left: calc(5px + 0.1em) solid #e5e5e5;
|
3087 |
-
}
|
3088 |
-
.bc-root .bc-uk-heading-line {
|
3089 |
-
overflow: hidden;
|
3090 |
-
}
|
3091 |
-
.bc-root .bc-uk-heading-line > * {
|
3092 |
-
display: inline-block;
|
3093 |
-
position: relative;
|
3094 |
-
}
|
3095 |
-
.bc-root .bc-uk-heading-line > ::before,
|
3096 |
-
.bc-root .bc-uk-heading-line > ::after {
|
3097 |
-
content: "";
|
3098 |
-
/* 1 */
|
3099 |
-
position: absolute;
|
3100 |
-
top: calc(50% - ((0.2px + 0.05em) / 2));
|
3101 |
-
/* 2 */
|
3102 |
-
width: 2000px;
|
3103 |
-
/* 3 */
|
3104 |
-
border-bottom: calc(0.2px + 0.05em) solid #e5e5e5;
|
3105 |
-
}
|
3106 |
-
.bc-root .bc-uk-heading-line > ::before {
|
3107 |
-
right: 100%;
|
3108 |
-
margin-right: calc(5px + 0.3em);
|
3109 |
-
}
|
3110 |
-
.bc-root .bc-uk-heading-line > ::after {
|
3111 |
-
left: 100%;
|
3112 |
-
margin-left: calc(5px + 0.3em);
|
3113 |
-
}
|
3114 |
-
.bc-root [class*=uk-divider] {
|
3115 |
-
/* 1 */
|
3116 |
-
border: none;
|
3117 |
-
/* 2 */
|
3118 |
-
margin-bottom: 20px;
|
3119 |
-
}
|
3120 |
-
.bc-root * + [class*=uk-divider] {
|
3121 |
-
margin-top: 20px;
|
3122 |
-
}
|
3123 |
-
.bc-root .bc-uk-divider-icon {
|
3124 |
-
position: relative;
|
3125 |
-
height: 20px;
|
3126 |
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22none%22%20stroke%3D%22%23e5e5e5%22%20stroke-width%3D%222%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%227%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
|
3127 |
-
background-repeat: no-repeat;
|
3128 |
-
background-position: 50% 50%;
|
3129 |
-
}
|
3130 |
-
.bc-root .bc-uk-divider-icon::before,
|
3131 |
-
.bc-root .bc-uk-divider-icon::after {
|
3132 |
-
content: "";
|
3133 |
-
position: absolute;
|
3134 |
-
top: 50%;
|
3135 |
-
max-width: calc(50% - (50px / 2));
|
3136 |
-
border-bottom: 1px solid #e5e5e5;
|
3137 |
-
}
|
3138 |
-
.bc-root .bc-uk-divider-icon::before {
|
3139 |
-
right: calc(50% + (50px / 2));
|
3140 |
-
width: 100%;
|
3141 |
-
}
|
3142 |
-
.bc-root .bc-uk-divider-icon::after {
|
3143 |
-
left: calc(50% + (50px / 2));
|
3144 |
-
width: 100%;
|
3145 |
-
}
|
3146 |
-
.bc-root .bc-uk-divider-small {
|
3147 |
-
height: 1px;
|
3148 |
-
}
|
3149 |
-
.bc-root .bc-uk-divider-small::after {
|
3150 |
-
content: "";
|
3151 |
-
display: inline-block;
|
3152 |
-
width: 100px;
|
3153 |
-
max-width: 100%;
|
3154 |
-
border-top: 1px solid #e5e5e5;
|
3155 |
-
vertical-align: top;
|
3156 |
-
}
|
3157 |
-
.bc-root .bc-uk-divider-vertical {
|
3158 |
-
width: 1px;
|
3159 |
-
height: 100px;
|
3160 |
-
margin-left: auto;
|
3161 |
-
margin-right: auto;
|
3162 |
-
border-left: 1px solid #e5e5e5;
|
3163 |
-
}
|
3164 |
-
.bc-root .bc-uk-list {
|
3165 |
-
padding: 0;
|
3166 |
-
list-style: none;
|
3167 |
-
}
|
3168 |
-
.bc-root .bc-uk-list > li::before,
|
3169 |
-
.bc-root .bc-uk-list > li::after {
|
3170 |
-
content: "";
|
3171 |
-
display: table;
|
3172 |
-
}
|
3173 |
-
.bc-root .bc-uk-list > li::after {
|
3174 |
-
clear: both;
|
3175 |
-
}
|
3176 |
-
.bc-root .bc-uk-list > li > :last-child {
|
3177 |
-
margin-bottom: 0;
|
3178 |
-
}
|
3179 |
-
.bc-root .bc-uk-list ul {
|
3180 |
-
margin: 0;
|
3181 |
-
padding-left: 30px;
|
3182 |
-
list-style: none;
|
3183 |
-
}
|
3184 |
-
.bc-root .bc-uk-list > li:nth-child(n+2),
|
3185 |
-
.bc-root .bc-uk-list > li > ul {
|
3186 |
-
margin-top: 10px;
|
3187 |
-
}
|
3188 |
-
.bc-root .bc-uk-list-divider > li:nth-child(n+2) {
|
3189 |
-
margin-top: 10px;
|
3190 |
-
padding-top: 10px;
|
3191 |
-
border-top: 1px solid #e5e5e5;
|
3192 |
-
}
|
3193 |
-
.bc-root .bc-uk-list-striped > li {
|
3194 |
-
padding: 10px 10px;
|
3195 |
-
}
|
3196 |
-
.bc-root .bc-uk-list-striped > li:nth-of-type(odd) {
|
3197 |
-
border-top: 1px solid #e5e5e5;
|
3198 |
-
border-bottom: 1px solid #e5e5e5;
|
3199 |
-
}
|
3200 |
-
.bc-root .bc-uk-list-striped > li:nth-of-type(odd) {
|
3201 |
-
background: #f8f8f8;
|
3202 |
-
}
|
3203 |
-
.bc-root .bc-uk-list-striped > li:nth-child(n+2) {
|
3204 |
-
margin-top: 0;
|
3205 |
-
}
|
3206 |
-
.bc-root .bc-uk-list-bullet > li {
|
3207 |
-
position: relative;
|
3208 |
-
padding-left: calc(1.5em + 10px);
|
3209 |
-
}
|
3210 |
-
.bc-root .bc-uk-list-bullet > li::before {
|
3211 |
-
content: "";
|
3212 |
-
position: absolute;
|
3213 |
-
top: 0;
|
3214 |
-
left: 0;
|
3215 |
-
width: 1.5em;
|
3216 |
-
height: 1.5em;
|
3217 |
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%226%22%20height%3D%226%22%20viewBox%3D%220%200%206%206%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23666%22%20cx%3D%223%22%20cy%3D%223%22%20r%3D%223%22%20%2F%3E%0A%3C%2Fsvg%3E");
|
3218 |
-
background-repeat: no-repeat;
|
3219 |
-
background-position: 50% 50%;
|
3220 |
-
/* 1 */
|
3221 |
-
display: block;
|
3222 |
-
}
|
3223 |
-
.bc-root .bc-uk-list-large > li:nth-child(n+2),
|
3224 |
-
.bc-root .bc-uk-list-large > li > ul {
|
3225 |
-
margin-top: 20px;
|
3226 |
-
}
|
3227 |
-
.bc-root .bc-uk-list-large.bc-uk-list-divider > li:nth-child(n+2) {
|
3228 |
-
margin-top: 20px;
|
3229 |
-
padding-top: 20px;
|
3230 |
-
}
|
3231 |
-
.bc-root .bc-uk-list-large.bc-uk-list-striped > li {
|
3232 |
-
padding: 20px 10px;
|
3233 |
-
}
|
3234 |
-
.bc-root .bc-uk-list-large.bc-uk-list-striped > li:nth-of-type(odd) {
|
3235 |
-
border-top: 1px solid #e5e5e5;
|
3236 |
-
border-bottom: 1px solid #e5e5e5;
|
3237 |
-
}
|
3238 |
-
.bc-root .bc-uk-list-large.bc-uk-list-striped > li:nth-child(n+2) {
|
3239 |
-
margin-top: 0;
|
3240 |
-
}
|
3241 |
-
.bc-root .bc-uk-description-list > dt {
|
3242 |
-
color: #333;
|
3243 |
-
font-size: 0.875rem;
|
3244 |
-
font-weight: normal;
|
3245 |
-
text-transform: uppercase;
|
3246 |
-
}
|
3247 |
-
.bc-root .bc-uk-description-list > dt:nth-child(n+2) {
|
3248 |
-
margin-top: 20px;
|
3249 |
-
}
|
3250 |
-
.bc-root .bc-uk-description-list-divider > dt:nth-child(n+2) {
|
3251 |
-
margin-top: 20px;
|
3252 |
-
padding-top: 20px;
|
3253 |
-
border-top: 1px solid #e5e5e5;
|
3254 |
-
}
|
3255 |
-
.bc-root .bc-uk-table {
|
3256 |
-
/* 1 */
|
3257 |
-
border-collapse: collapse;
|
3258 |
-
border-spacing: 0;
|
3259 |
-
/* 2 */
|
3260 |
-
width: 100%;
|
3261 |
-
/* 3 */
|
3262 |
-
margin-bottom: 20px;
|
3263 |
-
}
|
3264 |
-
.bc-root * + .bc-uk-table {
|
3265 |
-
margin-top: 20px;
|
3266 |
-
}
|
3267 |
-
.bc-root .bc-uk-table th {
|
3268 |
-
padding: 16px 12px;
|
3269 |
-
text-align: left;
|
3270 |
-
vertical-align: bottom;
|
3271 |
-
/* 1 */
|
3272 |
-
font-size: 0.875rem;
|
3273 |
-
font-weight: normal;
|
3274 |
-
color: #999;
|
3275 |
-
text-transform: uppercase;
|
3276 |
-
}
|
3277 |
-
.bc-root .bc-uk-table td {
|
3278 |
-
padding: 16px 12px;
|
3279 |
-
vertical-align: top;
|
3280 |
-
}
|
3281 |
-
.bc-root .bc-uk-table td > :last-child {
|
3282 |
-
margin-bottom: 0;
|
3283 |
-
}
|
3284 |
-
.bc-root .bc-uk-table tfoot {
|
3285 |
-
font-size: 0.875rem;
|
3286 |
-
}
|
3287 |
-
.bc-root .bc-uk-table caption {
|
3288 |
-
font-size: 0.875rem;
|
3289 |
-
text-align: left;
|
3290 |
-
color: #999;
|
3291 |
-
}
|
3292 |
-
.bc-root .bc-uk-table-middle,
|
3293 |
-
.bc-root .bc-uk-table-middle td {
|
3294 |
-
vertical-align: middle !important;
|
3295 |
-
}
|
3296 |
-
.bc-root .bc-uk-table-divider > tr:not(:first-child),
|
3297 |
-
.bc-root .bc-uk-table-divider > :not(:first-child) > tr,
|
3298 |
-
.bc-root .bc-uk-table-divider > :first-child > tr:not(:first-child) {
|
3299 |
-
border-top: 1px solid #e5e5e5;
|
3300 |
-
}
|
3301 |
-
.bc-root .bc-uk-table-striped > tr:nth-of-type(odd),
|
3302 |
-
.bc-root .bc-uk-table-striped tbody tr:nth-of-type(odd) {
|
3303 |
-
background: #f8f8f8;
|
3304 |
-
border-top: 1px solid #e5e5e5;
|
3305 |
-
border-bottom: 1px solid #e5e5e5;
|
3306 |
-
}
|
3307 |
-
.bc-root .bc-uk-table-hover > tr:hover,
|
3308 |
-
.bc-root .bc-uk-table-hover tbody tr:hover {
|
3309 |
-
background: #ffd;
|
3310 |
-
}
|
3311 |
-
.bc-root .bc-uk-table > tr.bc-uk-active,
|
3312 |
-
.bc-root .bc-uk-table tbody tr.bc-uk-active {
|
3313 |
-
background: #ffd;
|
3314 |
-
}
|
3315 |
-
.bc-root .bc-uk-table-small th,
|
3316 |
-
.bc-root .bc-uk-table-small td {
|
3317 |
-
padding: 10px 12px;
|
3318 |
-
}
|
3319 |
-
.bc-root .bc-uk-table-large th,
|
3320 |
-
.bc-root .bc-uk-table-large td {
|
3321 |
-
padding: 22px 12px;
|
3322 |
-
}
|
3323 |
-
.bc-root .bc-uk-table-justify th:first-child,
|
3324 |
-
.bc-root .bc-uk-table-justify td:first-child {
|
3325 |
-
padding-left: 0;
|
3326 |
-
}
|
3327 |
-
.bc-root .bc-uk-table-justify th:last-child,
|
3328 |
-
.bc-root .bc-uk-table-justify td:last-child {
|
3329 |
-
padding-right: 0;
|
3330 |
-
}
|
3331 |
-
.bc-root .bc-uk-table-shrink {
|
3332 |
-
width: 1px;
|
3333 |
-
}
|
3334 |
-
.bc-root .bc-uk-table-expand {
|
3335 |
-
min-width: 150px;
|
3336 |
-
}
|
3337 |
-
.bc-root .bc-uk-table-link {
|
3338 |
-
padding: 0 !important;
|
3339 |
-
}
|
3340 |
-
.bc-root .bc-uk-table-link > a {
|
3341 |
-
display: block;
|
3342 |
-
padding: 16px 12px;
|
3343 |
-
}
|
3344 |
-
.bc-root .bc-uk-table-small .bc-uk-table-link > a {
|
3345 |
-
padding: 10px 12px;
|
3346 |
-
}
|
3347 |
-
@media (max-width: 959px) {
|
3348 |
-
.bc-root .bc-uk-table-responsive,
|
3349 |
-
.bc-root .bc-uk-table-responsive tbody,
|
3350 |
-
.bc-root .bc-uk-table-responsive th,
|
3351 |
-
.bc-root .bc-uk-table-responsive td,
|
3352 |
-
.bc-root .bc-uk-table-responsive tr {
|
3353 |
-
display: block;
|
3354 |
-
}
|
3355 |
-
.bc-root .bc-uk-table-responsive thead {
|
3356 |
-
display: none;
|
3357 |
-
}
|
3358 |
-
.bc-root .bc-uk-table-responsive th,
|
3359 |
-
.bc-root .bc-uk-table-responsive td {
|
3360 |
-
width: auto !important;
|
3361 |
-
max-width: none !important;
|
3362 |
-
min-width: 0 !important;
|
3363 |
-
overflow: visible !important;
|
3364 |
-
white-space: normal !important;
|
3365 |
-
}
|
3366 |
-
.bc-root .bc-uk-table-responsive th:not(:first-child):not(.bc-uk-table-link),
|
3367 |
-
.bc-root .bc-uk-table-responsive td:not(:first-child):not(.bc-uk-table-link),
|
3368 |
-
.bc-root .bc-uk-table-responsive .bc-uk-table-link:not(:first-child) > a {
|
3369 |
-
padding-top: 5px !important;
|
3370 |
-
}
|
3371 |
-
.bc-root .bc-uk-table-responsive th:not(:last-child):not(.bc-uk-table-link),
|
3372 |
-
.bc-root .bc-uk-table-responsive td:not(:last-child):not(.bc-uk-table-link),
|
3373 |
-
.bc-root .bc-uk-table-responsive .bc-uk-table-link:not(:last-child) > a {
|
3374 |
-
padding-bottom: 5px !important;
|
3375 |
-
}
|
3376 |
-
.bc-root .bc-uk-table-justify.bc-uk-table-responsive th,
|
3377 |
-
.bc-root .bc-uk-table-justify.bc-uk-table-responsive td {
|
3378 |
-
padding-left: 0;
|
3379 |
-
padding-right: 0;
|
3380 |
-
}
|
3381 |
-
}
|
3382 |
-
.bc-root .bc-uk-table tbody tr {
|
3383 |
-
transition: background-color 0.1s linear;
|
3384 |
-
}
|
3385 |
-
.bc-root .bc-uk-icon {
|
3386 |
-
/* 1 */
|
3387 |
-
margin: 0;
|
3388 |
-
/* 2 */
|
3389 |
-
border: none;
|
3390 |
-
/* 3 */
|
3391 |
-
border-radius: 0;
|
3392 |
-
/* 4 */
|
3393 |
-
overflow: visible;
|
3394 |
-
/* 5 */
|
3395 |
-
font: inherit;
|
3396 |
-
color: inherit;
|
3397 |
-
/* 6 */
|
3398 |
-
text-transform: none;
|
3399 |
-
/* 7. */
|
3400 |
-
padding: 0;
|
3401 |
-
background-color: transparent;
|
3402 |
-
/* 8 */
|
3403 |
-
display: inline-block;
|
3404 |
-
/* 9 */
|
3405 |
-
fill: currentcolor;
|
3406 |
-
/* 10 */
|
3407 |
-
line-height: 0;
|
3408 |
-
}
|
3409 |
-
.bc-root button.bc-uk-icon:not(:disabled) {
|
3410 |
-
cursor: pointer;
|
3411 |
-
}
|
3412 |
-
.bc-root .bc-uk-icon::-moz-focus-inner {
|
3413 |
-
border: 0;
|
3414 |
-
padding: 0;
|
3415 |
-
}
|
3416 |
-
.bc-root .bc-uk-icon:not(.bc-uk-preserve) [fill*="#"]:not(.bc-uk-preserve) {
|
3417 |
-
fill: currentcolor;
|
3418 |
-
}
|
3419 |
-
.bc-root .bc-uk-icon:not(.bc-uk-preserve) [stroke*="#"]:not(.bc-uk-preserve) {
|
3420 |
-
stroke: currentcolor;
|
3421 |
-
}
|
3422 |
-
.bc-root .bc-uk-icon > * {
|
3423 |
-
transform: translate(0, 0);
|
3424 |
-
}
|
3425 |
-
.bc-root .bc-uk-icon-image {
|
3426 |
-
width: 20px;
|
3427 |
-
height: 20px;
|
3428 |
-
background-position: 50% 50%;
|
3429 |
-
background-repeat: no-repeat;
|
3430 |
-
background-size: contain;
|
3431 |
-
vertical-align: middle;
|
3432 |
-
}
|
3433 |
-
.bc-root .bc-uk-icon-link {
|
3434 |
-
color: #999;
|
3435 |
-
}
|
3436 |
-
.bc-root .bc-uk-icon-link:hover,
|
3437 |
-
.bc-root .bc-uk-icon-link:focus {
|
3438 |
-
color: #666;
|
3439 |
-
outline: none;
|
3440 |
-
}
|
3441 |
-
.bc-root .bc-uk-icon-link:active,
|
3442 |
-
.bc-root .bc-uk-active > .bc-uk-icon-link {
|
3443 |
-
color: #595959;
|
3444 |
-
}
|
3445 |
-
.bc-root .bc-uk-icon-button {
|
3446 |
-
box-sizing: border-box;
|
3447 |
-
width: 36px;
|
3448 |
-
height: 36px;
|
3449 |
-
border-radius: 500px;
|
3450 |
-
background: #f8f8f8;
|
3451 |
-
color: #999;
|
3452 |
-
vertical-align: middle;
|
3453 |
-
/* 1 */
|
3454 |
-
display: inline-flex;
|
3455 |
-
justify-content: center;
|
3456 |
-
align-items: center;
|
3457 |
-
transition: 0.1s ease-in-out;
|
3458 |
-
transition-property: color, background-color;
|
3459 |
-
}
|
3460 |
-
.bc-root .bc-uk-icon-button:hover,
|
3461 |
-
.bc-root .bc-uk-icon-button:focus {
|
3462 |
-
background-color: #ebebeb;
|
3463 |
-
color: #666;
|
3464 |
-
outline: none;
|
3465 |
-
}
|
3466 |
-
.bc-root .bc-uk-icon-button:active,
|
3467 |
-
.bc-root .bc-uk-active > .bc-uk-icon-button {
|
3468 |
-
background-color: #dfdfdf;
|
3469 |
-
color: #666;
|
3470 |
-
}
|
3471 |
-
.bc-root .bc-uk-range {
|
3472 |
-
/* 1 */
|
3473 |
-
box-sizing: border-box;
|
3474 |
-
margin: 0;
|
3475 |
-
vertical-align: middle;
|
3476 |
-
/* 2 */
|
3477 |
-
max-width: 100%;
|
3478 |
-
/* 3 */
|
3479 |
-
width: 100%;
|
3480 |
-
/* 4 */
|
3481 |
-
-webkit-appearance: none;
|
3482 |
-
/* 5 */
|
3483 |
-
background: transparent;
|
3484 |
-
/* 6 */
|
3485 |
-
padding: 0;
|
3486 |
-
}
|
3487 |
-
.bc-root .bc-uk-range:focus {
|
3488 |
-
outline: none;
|
3489 |
-
}
|
3490 |
-
.bc-root .bc-uk-range::-moz-focus-outer {
|
3491 |
-
border: none;
|
3492 |
-
}
|
3493 |
-
.bc-root .bc-uk-range::-ms-track {
|
3494 |
-
height: 15px;
|
3495 |
-
background: transparent;
|
3496 |
-
border-color: transparent;
|
3497 |
-
color: transparent;
|
3498 |
-
}
|
3499 |
-
.bc-root .bc-uk-range:not(:disabled)::-webkit-slider-thumb {
|
3500 |
-
cursor: pointer;
|
3501 |
-
}
|
3502 |
-
.bc-root .bc-uk-range:not(:disabled)::-moz-range-thumb {
|
3503 |
-
cursor: pointer;
|
3504 |
-
}
|
3505 |
-
.bc-root .bc-uk-range:not(:disabled)::-ms-thumb {
|
3506 |
-
cursor: pointer;
|
3507 |
-
}
|
3508 |
-
.bc-root .bc-uk-range::-webkit-slider-thumb {
|
3509 |
-
/* 1 */
|
3510 |
-
-webkit-appearance: none;
|
3511 |
-
margin-top: -7px;
|
3512 |
-
/* 2 */
|
3513 |
-
height: 15px;
|
3514 |
-
width: 15px;
|
3515 |
-
border-radius: 500px;
|
3516 |
-
background: #fff;
|
3517 |
-
border: 1px solid #cccccc;
|
3518 |
-
}
|
3519 |
-
.bc-root .bc-uk-range::-moz-range-thumb {
|
3520 |
-
/* 1 */
|
3521 |
-
border: none;
|
3522 |
-
/* 2 */
|
3523 |
-
height: 15px;
|
3524 |
-
width: 15px;
|
3525 |
-
border-radius: 500px;
|
3526 |
-
background: #fff;
|
3527 |
-
border: 1px solid #cccccc;
|
3528 |
-
}
|
3529 |
-
.bc-root .bc-uk-range::-ms-thumb {
|
3530 |
-
/* 1 */
|
3531 |
-
margin-top: 0;
|
3532 |
-
}
|
3533 |
-
.bc-root .bc-uk-range::-ms-thumb {
|
3534 |
-
/* 1 */
|
3535 |
-
border: none;
|
3536 |
-
/* 2 */
|
3537 |
-
height: 15px;
|
3538 |
-
width: 15px;
|
3539 |
-
border-radius: 500px;
|
3540 |
-
background: #fff;
|
3541 |
-
border: 1px solid #cccccc;
|
3542 |
-
}
|
3543 |
-
.bc-root .bc-uk-range::-ms-tooltip {
|
3544 |
-
display: none;
|
3545 |
-
}
|
3546 |
-
.bc-root .bc-uk-range::-webkit-slider-runnable-track {
|
3547 |
-
height: 3px;
|
3548 |
-
background: #ebebeb;
|
3549 |
-
border-radius: 500px;
|
3550 |
-
}
|
3551 |
-
.bc-root .bc-uk-range:focus::-webkit-slider-runnable-track,
|
3552 |
-
.bc-root .bc-uk-range:active::-webkit-slider-runnable-track {
|
3553 |
-
background: #d2d2d2;
|
3554 |
-
}
|
3555 |
-
.bc-root .bc-uk-range::-moz-range-track {
|
3556 |
-
height: 3px;
|
3557 |
-
background: #ebebeb;
|
3558 |
-
border-radius: 500px;
|
3559 |
-
}
|
3560 |
-
.bc-root .bc-uk-range:focus::-moz-range-track {
|
3561 |
-
background: #d2d2d2;
|
3562 |
-
}
|
3563 |
-
.bc-root .bc-uk-range::-ms-fill-lower,
|
3564 |
-
.bc-root .bc-uk-range::-ms-fill-upper {
|
3565 |
-
height: 3px;
|
3566 |
-
background: #ebebeb;
|
3567 |
-
border-radius: 500px;
|
3568 |
-
}
|
3569 |
-
.bc-root .bc-uk-range:focus::-ms-fill-lower,
|
3570 |
-
.bc-root .bc-uk-range:focus::-ms-fill-upper {
|
3571 |
-
background: #d2d2d2;
|
3572 |
-
}
|
3573 |
-
.bc-root .bc-uk-input,
|
3574 |
-
.bc-root .bc-uk-select,
|
3575 |
-
.bc-root .bc-uk-textarea,
|
3576 |
-
.bc-root .bc-uk-radio,
|
3577 |
-
.bc-root .bc-uk-checkbox {
|
3578 |
-
/* 1 */
|
3579 |
-
box-sizing: border-box;
|
3580 |
-
/* 2 */
|
3581 |
-
margin: 0;
|
3582 |
-
/* 3 */
|
3583 |
-
border-radius: 0;
|
3584 |
-
/* 4 */
|
3585 |
-
font: inherit;
|
3586 |
-
}
|
3587 |
-
.bc-root .bc-uk-input {
|
3588 |
-
overflow: visible;
|
3589 |
-
}
|
3590 |
-
.bc-root .bc-uk-select {
|
3591 |
-
text-transform: none;
|
3592 |
-
}
|
3593 |
-
.bc-root .bc-uk-select optgroup {
|
3594 |
-
/* 1 */
|
3595 |
-
font: inherit;
|
3596 |
-
/* 2 */
|
3597 |
-
font-weight: bold;
|
3598 |
-
}
|
3599 |
-
.bc-root .bc-uk-textarea {
|
3600 |
-
overflow: auto;
|
3601 |
-
}
|
3602 |
-
.bc-root .bc-uk-input[type=search]::-webkit-search-cancel-button,
|
3603 |
-
.bc-root .bc-uk-input[type=search]::-webkit-search-decoration {
|
3604 |
-
-webkit-appearance: none;
|
3605 |
-
}
|
3606 |
-
.bc-root .bc-uk-input[type=number]::-webkit-inner-spin-button,
|
3607 |
-
.bc-root .bc-uk-input[type=number]::-webkit-outer-spin-button {
|
3608 |
-
height: auto;
|
3609 |
-
}
|
3610 |
-
.bc-root .bc-uk-input::-moz-placeholder,
|
3611 |
-
.bc-root .bc-uk-textarea::-moz-placeholder {
|
3612 |
-
opacity: 1;
|
3613 |
-
}
|
3614 |
-
.bc-root .bc-uk-radio:not(:disabled),
|
3615 |
-
.bc-root .bc-uk-checkbox:not(:disabled) {
|
3616 |
-
cursor: pointer;
|
3617 |
-
}
|
3618 |
-
.bc-root .bc-uk-fieldset {
|
3619 |
-
border: none;
|
3620 |
-
margin: 0;
|
3621 |
-
padding: 0;
|
3622 |
-
}
|
3623 |
-
.bc-root .bc-uk-input,
|
3624 |
-
.bc-root .bc-uk-textarea {
|
3625 |
-
-webkit-appearance: none;
|
3626 |
-
}
|
3627 |
-
.bc-root .bc-uk-input,
|
3628 |
-
.bc-root .bc-uk-select,
|
3629 |
-
.bc-root .bc-uk-textarea {
|
3630 |
-
/* 1 */
|
3631 |
-
max-width: 100%;
|
3632 |
-
/* 2 */
|
3633 |
-
width: 100%;
|
3634 |
-
/* 3 */
|
3635 |
-
border: 0 none;
|
3636 |
-
/* 4 */
|
3637 |
-
padding: 0 10px;
|
3638 |
-
background: #fff;
|
3639 |
-
color: #666;
|
3640 |
-
border: 1px solid #e5e5e5;
|
3641 |
-
transition: 0.2s ease-in-out;
|
3642 |
-
transition-property: color, background-color, border;
|
3643 |
-
}
|
3644 |
-
.bc-root .bc-uk-input,
|
3645 |
-
.bc-root .bc-uk-select:not([multiple]):not([size]) {
|
3646 |
-
height: 40px;
|
3647 |
-
vertical-align: middle;
|
3648 |
-
/* 1 */
|
3649 |
-
display: inline-block;
|
3650 |
-
}
|
3651 |
-
.bc-root .bc-uk-input:not(input),
|
3652 |
-
.bc-root .bc-uk-select:not(select) {
|
3653 |
-
line-height: 38px;
|
3654 |
-
}
|
3655 |
-
.bc-root .bc-uk-select[multiple],
|
3656 |
-
.bc-root .bc-uk-select[size],
|
3657 |
-
.bc-root .bc-uk-textarea {
|
3658 |
-
padding-top: 4px;
|
3659 |
-
padding-bottom: 4px;
|
3660 |
-
vertical-align: top;
|
3661 |
-
}
|
3662 |
-
.bc-root .bc-uk-input:focus,
|
3663 |
-
.bc-root .bc-uk-select:focus,
|
3664 |
-
.bc-root .bc-uk-textarea:focus {
|
3665 |
-
outline: none;
|
3666 |
-
background-color: #fff;
|
3667 |
-
color: #666;
|
3668 |
-
border-color: #1e87f0;
|
3669 |
-
}
|
3670 |
-
.bc-root .bc-uk-input:disabled,
|
3671 |
-
.bc-root .bc-uk-select:disabled,
|
3672 |
-
.bc-root .bc-uk-textarea:disabled {
|
3673 |
-
background-color: #f8f8f8;
|
3674 |
-
color: #999;
|
3675 |
-
border-color: #e5e5e5;
|
3676 |
-
}
|
3677 |
-
.bc-root .bc-uk-input::-ms-input-placeholder {
|
3678 |
-
color: #999 !important;
|
3679 |
-
}
|
3680 |
-
.bc-root .bc-uk-input::placeholder {
|
3681 |
-
color: #999;
|
3682 |
-
}
|
3683 |
-
.bc-root .bc-uk-textarea::-ms-input-placeholder {
|
3684 |
-
color: #999 !important;
|
3685 |
-
}
|
3686 |
-
.bc-root .bc-uk-textarea::placeholder {
|
3687 |
-
color: #999;
|
3688 |
-
}
|
3689 |
-
.bc-root .bc-uk-form-small {
|
3690 |
-
font-size: 0.875rem;
|
3691 |
-
}
|
3692 |
-
.bc-root .bc-uk-form-small:not(textarea):not([multiple]):not([size]) {
|
3693 |
-
height: 30px;
|
3694 |
-
padding-left: 8px;
|
3695 |
-
padding-right: 8px;
|
3696 |
-
}
|
3697 |
-
.bc-root .bc-uk-form-small:not(select):not(input):not(textarea) {
|
3698 |
-
line-height: 28px;
|
3699 |
-
}
|
3700 |
-
.bc-root .bc-uk-form-large {
|
3701 |
-
font-size: 1.25rem;
|
3702 |
-
}
|
3703 |
-
.bc-root .bc-uk-form-large:not(textarea):not([multiple]):not([size]) {
|
3704 |
-
height: 55px;
|
3705 |
-
padding-left: 12px;
|
3706 |
-
padding-right: 12px;
|
3707 |
-
}
|
3708 |
-
.bc-root .bc-uk-form-large:not(select):not(input):not(textarea) {
|
3709 |
-
line-height: 53px;
|
3710 |
-
}
|
3711 |
-
.bc-root .bc-uk-form-danger,
|
3712 |
-
.bc-root .bc-uk-form-danger:focus {
|
3713 |
-
color: #f0506e;
|
3714 |
-
border-color: #f0506e;
|
3715 |
-
}
|
3716 |
-
.bc-root .bc-uk-form-success,
|
3717 |
-
.bc-root .bc-uk-form-success:focus {
|
3718 |
-
color: #32d296;
|
3719 |
-
border-color: #32d296;
|
3720 |
-
}
|
3721 |
-
.bc-root .bc-uk-form-blank {
|
3722 |
-
background: none;
|
3723 |
-
border-color: transparent;
|
3724 |
-
}
|
3725 |
-
.bc-root .bc-uk-form-blank:focus {
|
3726 |
-
border-color: #e5e5e5;
|
3727 |
-
border-style: dashed;
|
3728 |
-
}
|
3729 |
-
.bc-root input.bc-uk-form-width-xsmall {
|
3730 |
-
width: 50px;
|
3731 |
-
}
|
3732 |
-
.bc-root select.bc-uk-form-width-xsmall {
|
3733 |
-
width: 75px;
|
3734 |
-
}
|
3735 |
-
.bc-root .bc-uk-form-width-small {
|
3736 |
-
width: 130px;
|
3737 |
-
}
|
3738 |
-
.bc-root .bc-uk-form-width-medium {
|
3739 |
-
width: 200px;
|
3740 |
-
}
|
3741 |
-
.bc-root .bc-uk-form-width-large {
|
3742 |
-
width: 500px;
|
3743 |
-
}
|
3744 |
-
.bc-root .bc-uk-select:not([multiple]):not([size]) {
|
3745 |
-
/* 1 */
|
3746 |
-
-webkit-appearance: none;
|
3747 |
-
-moz-appearance: none;
|
3748 |
-
/* 2 */
|
3749 |
-
padding-right: 20px;
|
3750 |
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
|
3751 |
-
background-repeat: no-repeat;
|
3752 |
-
background-position: 100% 50%;
|
3753 |
-
}
|
3754 |
-
.bc-root .bc-uk-select:not([multiple]):not([size])::-ms-expand {
|
3755 |
-
display: none;
|
3756 |
-
}
|
3757 |
-
.bc-root .bc-uk-select:not([multiple]):not([size]) option {
|
3758 |
-
color: #444;
|
3759 |
-
}
|
3760 |
-
.bc-root .bc-uk-select:not([multiple]):not([size]):disabled {
|
3761 |
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
|
3762 |
-
}
|
3763 |
-
.bc-root .bc-uk-radio,
|
3764 |
-
.bc-root .bc-uk-checkbox {
|
3765 |
-
/* 1 */
|
3766 |
-
display: inline-block;
|
3767 |
-
height: 16px;
|
3768 |
-
width: 16px;
|
3769 |
-
/* 2 */
|
3770 |
-
overflow: hidden;
|
3771 |
-
/* 3 */
|
3772 |
-
margin-top: -4px;
|
3773 |
-
vertical-align: middle;
|
3774 |
-
/* 4 */
|
3775 |
-
-webkit-appearance: none;
|
3776 |
-
-moz-appearance: none;
|
3777 |
-
/* 5 */
|
3778 |
-
background-color: transparent;
|
3779 |
-
/* 6 */
|
3780 |
-
background-repeat: no-repeat;
|
3781 |
-
background-position: 50% 50%;
|
3782 |
-
border: 1px solid #cccccc;
|
3783 |
-
transition: 0.2s ease-in-out;
|
3784 |
-
transition-property: background-color, border;
|
3785 |
-
}
|
3786 |
-
.bc-root .bc-uk-radio:checked:before,
|
3787 |
-
.bc-root .bc-uk-checkbox:checked:before {
|
3788 |
-
content: unset;
|
3789 |
-
text-indent: unset;
|
3790 |
-
line-height: unset;
|
3791 |
-
}
|
3792 |
-
.bc-root .bc-uk-radio {
|
3793 |
-
border-radius: 50%;
|
3794 |
-
}
|
3795 |
-
.bc-root .bc-uk-radio:checked:before {
|
3796 |
-
content: unset;
|
3797 |
-
text-indent: unset;
|
3798 |
-
line-height: unset;
|
3799 |
-
}
|
3800 |
-
.bc-root .bc-uk-radio:focus,
|
3801 |
-
.bc-root .bc-uk-checkbox:focus {
|
3802 |
-
outline: none;
|
3803 |
-
border-color: #1e87f0;
|
3804 |
-
}
|
3805 |
-
.bc-root .bc-uk-radio:checked,
|
3806 |
-
.bc-root .bc-uk-checkbox:checked,
|
3807 |
-
.bc-root .bc-uk-checkbox:indeterminate {
|
3808 |
-
background-color: #1e87f0;
|
3809 |
-
border-color: transparent;
|
3810 |
-
}
|
3811 |
-
.bc-root .bc-uk-radio:checked:focus,
|
3812 |
-
.bc-root .bc-uk-checkbox:checked:focus,
|
3813 |
-
.bc-root .bc-uk-checkbox:indeterminate:focus {
|
3814 |
-
background-color: #0e6dcd;
|
3815 |
-
}
|
3816 |
-
.bc-root .bc-uk-radio:checked {
|
3817 |
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23fff%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E");
|
3818 |
-
}
|
3819 |
-
.bc-root .bc-uk-checkbox:checked {
|
3820 |
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23fff%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
|
3821 |
-
}
|
3822 |
-
.bc-root .bc-uk-checkbox:indeterminate {
|
3823 |
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23fff%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E");
|
3824 |
-
}
|
3825 |
-
.bc-root .bc-uk-radio:disabled,
|
3826 |
-
.bc-root .bc-uk-checkbox:disabled {
|
3827 |
-
background-color: #f8f8f8;
|
3828 |
-
border-color: #e5e5e5;
|
3829 |
-
}
|
3830 |
-
.bc-root .bc-uk-radio:disabled:checked {
|
3831 |
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23999%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E");
|
3832 |
-
}
|
3833 |
-
.bc-root .bc-uk-checkbox:disabled:checked {
|
3834 |
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
|
3835 |
-
}
|
3836 |
-
.bc-root .bc-uk-checkbox:disabled:indeterminate {
|
3837 |
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23999%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E");
|
3838 |
-
}
|
3839 |
-
.bc-root .bc-uk-legend {
|
3840 |
-
/* 1 */
|
3841 |
-
width: 100%;
|
3842 |
-
/* 2 */
|
3843 |
-
color: inherit;
|
3844 |
-
/* 3 */
|
3845 |
-
padding: 0;
|
3846 |
-
/* 4 */
|
3847 |
-
font-size: 1.5rem;
|
3848 |
-
line-height: 1.4;
|
3849 |
-
}
|
3850 |
-
.bc-root .bc-uk-form-custom {
|
3851 |
-
/* 1 */
|
3852 |
-
display: inline-block;
|
3853 |
-
/* 2 */
|
3854 |
-
position: relative;
|
3855 |
-
/* 3 */
|
3856 |
-
max-width: 100%;
|
3857 |
-
/* 4 */
|
3858 |
-
vertical-align: middle;
|
3859 |
-
}
|
3860 |
-
.bc-root .bc-uk-form-custom select,
|
3861 |
-
.bc-root .bc-uk-form-custom input[type=file] {
|
3862 |
-
/* 1 */
|
3863 |
-
position: absolute;
|
3864 |
-
top: 0;
|
3865 |
-
z-index: 1;
|
3866 |
-
width: 100%;
|
3867 |
-
height: 100%;
|
3868 |
-
/* 2 */
|
3869 |
-
left: 0;
|
3870 |
-
/* 3 */
|
3871 |
-
-webkit-appearance: none;
|
3872 |
-
/* 4 */
|
3873 |
-
opacity: 0;
|
3874 |
-
cursor: pointer;
|
3875 |
-
}
|
3876 |
-
.bc-root .bc-uk-form-custom input[type=file] {
|
3877 |
-
/* 5 */
|
3878 |
-
font-size: 500px;
|
3879 |
-
/* 6 */
|
3880 |
-
overflow: hidden;
|
3881 |
-
}
|
3882 |
-
.bc-root .bc-uk-form-label {
|
3883 |
-
color: #333;
|
3884 |
-
font-size: 0.875rem;
|
3885 |
-
}
|
3886 |
-
.bc-root .bc-uk-form-stacked .bc-uk-form-label {
|
3887 |
-
display: block;
|
3888 |
-
margin-bottom: 5px;
|
3889 |
-
}
|
3890 |
-
@media (max-width: 959px) {
|
3891 |
-
.bc-root {
|
3892 |
-
/* Behave like `uk-form-stacked` */
|
3893 |
-
}
|
3894 |
-
.bc-root .bc-uk-form-horizontal .bc-uk-form-label {
|
3895 |
-
display: block;
|
3896 |
-
margin-bottom: 5px;
|
3897 |
-
}
|
3898 |
-
}
|
3899 |
-
@media (min-width: 960px) {
|
3900 |
-
.bc-root {
|
3901 |
-
/* Better vertical alignment if controls are checkboxes and radio buttons with text */
|
3902 |
-
}
|
3903 |
-
.bc-root .bc-uk-form-horizontal .bc-uk-form-label {
|
3904 |
-
width: 200px;
|
3905 |
-
margin-top: 7px;
|
3906 |
-
float: left;
|
3907 |
-
}
|
3908 |
-
.bc-root .bc-uk-form-horizontal .bc-uk-form-controls {
|
3909 |
-
margin-left: 215px;
|
3910 |
-
}
|
3911 |
-
.bc-root .bc-uk-form-horizontal .bc-uk-form-controls-text {
|
3912 |
-
padding-top: 7px;
|
3913 |
-
}
|
3914 |
-
}
|
3915 |
-
.bc-root .bc-uk-form-icon {
|
3916 |
-
/* 1 */
|
3917 |
-
position: absolute;
|
3918 |
-
top: 0;
|
3919 |
-
bottom: 0;
|
3920 |
-
left: 0;
|
3921 |
-
/* 2 */
|
3922 |
-
width: 40px;
|
3923 |
-
/* 3 */
|
3924 |
-
display: inline-flex;
|
3925 |
-
justify-content: center;
|
3926 |
-
align-items: center;
|
3927 |
-
/* 4 */
|
3928 |
-
color: #999;
|
3929 |
-
}
|
3930 |
-
.bc-root .bc-uk-form-icon:hover {
|
3931 |
-
color: #666;
|
3932 |
-
}
|
3933 |
-
.bc-root .bc-uk-form-icon:not(a):not(button):not(input) {
|
3934 |
-
pointer-events: none;
|
3935 |
-
}
|
3936 |
-
.bc-root .bc-uk-form-icon:not(.bc-uk-form-icon-flip) ~ .bc-uk-input {
|
3937 |
-
padding-left: 40px !important;
|
3938 |
-
}
|
3939 |
-
.bc-root .bc-uk-form-icon-flip {
|
3940 |
-
right: 0;
|
3941 |
-
left: auto;
|
3942 |
-
}
|
3943 |
-
.bc-root .bc-uk-form-icon-flip ~ .bc-uk-input {
|
3944 |
-
padding-right: 40px !important;
|
3945 |
-
}
|
3946 |
-
.bc-root .bc-uk-button {
|
3947 |
-
/* 1 */
|
3948 |
-
margin: 0;
|
3949 |
-
/* 2 */
|
3950 |
-
border: none;
|
3951 |
-
/* 3 */
|
3952 |
-
overflow: visible;
|
3953 |
-
/* 4 */
|
3954 |
-
font: inherit;
|
3955 |
-
color: inherit;
|
3956 |
-
/* 5 */
|
3957 |
-
text-transform: none;
|
3958 |
-
/* 6 */
|
3959 |
-
display: inline-block;
|
3960 |
-
box-sizing: border-box;
|
3961 |
-
padding: 0 30px;
|
3962 |
-
vertical-align: middle;
|
3963 |
-
font-size: 0.875rem;
|
3964 |
-
/* 7 */
|
3965 |
-
line-height: 38px;
|
3966 |
-
/* 8 */
|
3967 |
-
text-align: center;
|
3968 |
-
/* 9 */
|
3969 |
-
text-decoration: none;
|
3970 |
-
text-transform: uppercase;
|
3971 |
-
transition: 0.1s ease-in-out;
|
3972 |
-
transition-property: color, background-color, border-color;
|
3973 |
-
}
|
3974 |
-
.bc-root .bc-uk-button:not(:disabled) {
|
3975 |
-
cursor: pointer;
|
3976 |
-
}
|
3977 |
-
.bc-root .bc-uk-button::-moz-focus-inner {
|
3978 |
-
border: 0;
|
3979 |
-
padding: 0;
|
3980 |
-
}
|
3981 |
-
.bc-root .bc-uk-button:hover {
|
3982 |
-
/* 9 */
|
3983 |
-
text-decoration: none;
|
3984 |
-
}
|
3985 |
-
.bc-root .bc-uk-button:focus {
|
3986 |
-
outline: none;
|
3987 |
-
}
|
3988 |
-
.bc-root .bc-uk-button-default {
|
3989 |
-
background-color: transparent;
|
3990 |
-
color: #333;
|
3991 |
-
border: 1px solid #e5e5e5;
|
3992 |
-
}
|
3993 |
-
.bc-root .bc-uk-button-default:hover,
|
3994 |
-
.bc-root .bc-uk-button-default:focus {
|
3995 |
-
background-color: transparent;
|
3996 |
-
color: #333;
|
3997 |
-
border-color: #b2b2b2;
|
3998 |
-
}
|
3999 |
-
.bc-root .bc-uk-button-default:active,
|
4000 |
-
.bc-root .bc-uk-button-default.bc-uk-active {
|
4001 |
-
background-color: transparent;
|
4002 |
-
color: #333;
|
4003 |
-
border-color: #999999;
|
4004 |
-
}
|
4005 |
-
.bc-root .bc-uk-button-primary {
|
4006 |
-
background-color: #1e87f0;
|
4007 |
-
color: #fff;
|
4008 |
-
border: 1px solid transparent;
|
4009 |
-
}
|
4010 |
-
.bc-root .bc-uk-button-primary:hover,
|
4011 |
-
.bc-root .bc-uk-button-primary:focus {
|
4012 |
-
background-color: #0f7ae5;
|
4013 |
-
color: #fff;
|
4014 |
-
}
|
4015 |
-
.bc-root .bc-uk-button-primary:active,
|
4016 |
-
.bc-root .bc-uk-button-primary.bc-uk-active {
|
4017 |
-
background-color: #0e6dcd;
|
4018 |
-
color: #fff;
|
4019 |
-
}
|
4020 |
-
.bc-root .bc-uk-button-secondary {
|
4021 |
-
background-color: #222;
|
4022 |
-
color: #fff;
|
4023 |
-
border: 1px solid transparent;
|
4024 |
-
}
|
4025 |
-
.bc-root .bc-uk-button-secondary:hover,
|
4026 |
-
.bc-root .bc-uk-button-secondary:focus {
|
4027 |
-
background-color: #151515;
|
4028 |
-
color: #fff;
|
4029 |
-
}
|
4030 |
-
.bc-root .bc-uk-button-secondary:active,
|
4031 |
-
.bc-root .bc-uk-button-secondary.bc-uk-active {
|
4032 |
-
background-color: #080808;
|
4033 |
-
color: #fff;
|
4034 |
-
}
|
4035 |
-
.bc-root .bc-uk-button-danger {
|
4036 |
-
background-color: #f0506e;
|
4037 |
-
color: #fff;
|
4038 |
-
border: 1px solid transparent;
|
4039 |
-
}
|
4040 |
-
.bc-root .bc-uk-button-danger:hover,
|
4041 |
-
.bc-root .bc-uk-button-danger:focus {
|
4042 |
-
background-color: #ee395b;
|
4043 |
-
color: #fff;
|
4044 |
-
}
|
4045 |
-
.bc-root .bc-uk-button-danger:active,
|
4046 |
-
.bc-root .bc-uk-button-danger.bc-uk-active {
|
4047 |
-
background-color: #ec2147;
|
4048 |
-
color: #fff;
|
4049 |
-
}
|
4050 |
-
.bc-root .bc-uk-button-default:disabled,
|
4051 |
-
.bc-root .bc-uk-button-primary:disabled,
|
4052 |
-
.bc-root .bc-uk-button-secondary:disabled,
|
4053 |
-
.bc-root .bc-uk-button-danger:disabled {
|
4054 |
-
background-color: transparent;
|
4055 |
-
color: #999;
|
4056 |
-
border-color: #e5e5e5;
|
4057 |
-
}
|
4058 |
-
.bc-root .bc-uk-button-small {
|
4059 |
-
padding: 0 15px;
|
4060 |
-
line-height: 28px;
|
4061 |
-
font-size: 0.875rem;
|
4062 |
-
}
|
4063 |
-
.bc-root .bc-uk-button-large {
|
4064 |
-
padding: 0 40px;
|
4065 |
-
line-height: 53px;
|
4066 |
-
font-size: 0.875rem;
|
4067 |
-
}
|
4068 |
-
.bc-root .bc-uk-button-text {
|
4069 |
-
/* 1 */
|
4070 |
-
padding: 0;
|
4071 |
-
line-height: 1.5;
|
4072 |
-
background: none;
|
4073 |
-
/* 2 */
|
4074 |
-
color: #333;
|
4075 |
-
position: relative;
|
4076 |
-
}
|
4077 |
-
.bc-root .bc-uk-button-text::before {
|
4078 |
-
content: "";
|
4079 |
-
position: absolute;
|
4080 |
-
bottom: 0;
|
4081 |
-
left: 0;
|
4082 |
-
right: 100%;
|
4083 |
-
border-bottom: 1px solid #333;
|
4084 |
-
transition: right 0.3s ease-out;
|
4085 |
-
}
|
4086 |
-
.bc-root .bc-uk-button-text:hover,
|
4087 |
-
.bc-root .bc-uk-button-text:focus {
|
4088 |
-
color: #333;
|
4089 |
-
}
|
4090 |
-
.bc-root .bc-uk-button-text:hover::before,
|
4091 |
-
.bc-root .bc-uk-button-text:focus::before {
|
4092 |
-
right: 0;
|
4093 |
-
}
|
4094 |
-
.bc-root .bc-uk-button-text:disabled {
|
4095 |
-
color: #999;
|
4096 |
-
}
|
4097 |
-
.bc-root .bc-uk-button-text:disabled::before {
|
4098 |
-
display: none;
|
4099 |
-
}
|
4100 |
-
.bc-root .bc-uk-button-link {
|
4101 |
-
/* 1 */
|
4102 |
-
padding: 0;
|
4103 |
-
line-height: 1.5;
|
4104 |
-
background: none;
|
4105 |
-
/* 2 */
|
4106 |
-
color: #1e87f0;
|
4107 |
-
}
|
4108 |
-
.bc-root .bc-uk-button-link:hover,
|
4109 |
-
.bc-root .bc-uk-button-link:focus {
|
4110 |
-
color: #0f6ecd;
|
4111 |
-
text-decoration: underline;
|
4112 |
-
}
|
4113 |
-
.bc-root .bc-uk-button-link:disabled {
|
4114 |
-
color: #999;
|
4115 |
-
text-decoration: none;
|
4116 |
-
}
|
4117 |
-
.bc-root .bc-uk-button-group {
|
4118 |
-
/* 1 */
|
4119 |
-
display: inline-flex;
|
4120 |
-
/* 2 */
|
4121 |
-
vertical-align: middle;
|
4122 |
-
/* 3 */
|
4123 |
-
position: relative;
|
4124 |
-
}
|
4125 |
-
.bc-root .bc-uk-button-group > .bc-uk-button:nth-child(n+2),
|
4126 |
-
.bc-root .bc-uk-button-group > div:nth-child(n+2) .bc-uk-button {
|
4127 |
-
margin-left: -1px;
|
4128 |
-
}
|
4129 |
-
.bc-root .bc-uk-button-group .bc-uk-button:hover,
|
4130 |
-
.bc-root .bc-uk-button-group .bc-uk-button:focus,
|
4131 |
-
.bc-root .bc-uk-button-group .bc-uk-button:active,
|
4132 |
-
.bc-root .bc-uk-button-group .bc-uk-button.bc-uk-active {
|
4133 |
-
position: relative;
|
4134 |
-
z-index: 1;
|
4135 |
-
}
|
4136 |
-
.bc-root .bc-uk-section {
|
4137 |
-
box-sizing: border-box;
|
4138 |
-
/* 1 */
|
4139 |
-
padding-top: 40px;
|
4140 |
-
padding-bottom: 40px;
|
4141 |
-
}
|
4142 |
-
@media (min-width: 960px) {
|
4143 |
-
.bc-root .bc-uk-section {
|
4144 |
-
padding-top: 70px;
|
4145 |
-
padding-bottom: 70px;
|
4146 |
-
}
|
4147 |
-
}
|
4148 |
-
.bc-root .bc-uk-section::before,
|
4149 |
-
.bc-root .bc-uk-section::after {
|
4150 |
-
content: "";
|
4151 |
-
display: table;
|
4152 |
-
}
|
4153 |
-
.bc-root .bc-uk-section::after {
|
4154 |
-
clear: both;
|
4155 |
-
}
|
4156 |
-
.bc-root .bc-uk-section > :last-child {
|
4157 |
-
margin-bottom: 0;
|
4158 |
-
}
|
4159 |
-
.bc-root .bc-uk-section-xsmall {
|
4160 |
-
padding-top: 20px;
|
4161 |
-
padding-bottom: 20px;
|
4162 |
-
}
|
4163 |
-
.bc-root .bc-uk-section-small {
|
4164 |
-
padding-top: 40px;
|
4165 |
-
padding-bottom: 40px;
|
4166 |
-
}
|
4167 |
-
.bc-root .bc-uk-section-large {
|
4168 |
-
padding-top: 70px;
|
4169 |
-
padding-bottom: 70px;
|
4170 |
-
}
|
4171 |
-
@media (min-width: 960px) {
|
4172 |
-
.bc-root .bc-uk-section-large {
|
4173 |
-
padding-top: 140px;
|
4174 |
-
padding-bottom: 140px;
|
4175 |
-
}
|
4176 |
-
}
|
4177 |
-
.bc-root .bc-uk-section-xlarge {
|
4178 |
-
padding-top: 140px;
|
4179 |
-
padding-bottom: 140px;
|
4180 |
-
}
|
4181 |
-
@media (min-width: 960px) {
|
4182 |
-
.bc-root .bc-uk-section-xlarge {
|
4183 |
-
padding-top: 210px;
|
4184 |
-
padding-bottom: 210px;
|
4185 |
-
}
|
4186 |
-
}
|
4187 |
-
.bc-root .bc-uk-section-default {
|
4188 |
-
background: #fff;
|
4189 |
-
}
|
4190 |
-
.bc-root .bc-uk-section-muted {
|
4191 |
-
background: #f8f8f8;
|
4192 |
-
}
|
4193 |
-
.bc-root .bc-uk-section-primary {
|
4194 |
-
background: #1e87f0;
|
4195 |
-
}
|
4196 |
-
.bc-root .bc-uk-section-secondary {
|
4197 |
-
background: #222;
|
4198 |
-
}
|
4199 |
-
.bc-root .bc-uk-container {
|
4200 |
-
/* 1 */
|
4201 |
-
box-sizing: content-box;
|
4202 |
-
max-width: 1200px;
|
4203 |
-
margin-left: auto;
|
4204 |
-
margin-right: auto;
|
4205 |
-
padding-left: 15px;
|
4206 |
-
padding-right: 15px;
|
4207 |
-
}
|
4208 |
-
@media (min-width: 640px) {
|
4209 |
-
.bc-root .bc-uk-container {
|
4210 |
-
padding-left: 30px;
|
4211 |
-
padding-right: 30px;
|
4212 |
-
}
|
4213 |
-
}
|
4214 |
-
@media (min-width: 960px) {
|
4215 |
-
.bc-root .bc-uk-container {
|
4216 |
-
padding-left: 40px;
|
4217 |
-
padding-right: 40px;
|
4218 |
-
}
|
4219 |
-
}
|
4220 |
-
.bc-root .bc-uk-container::before,
|
4221 |
-
.bc-root .bc-uk-container::after {
|
4222 |
-
content: "";
|
4223 |
-
display: table;
|
4224 |
-
}
|
4225 |
-
.bc-root .bc-uk-container::after {
|
4226 |
-
clear: both;
|
4227 |
-
}
|
4228 |
-
.bc-root .bc-uk-container > :last-child {
|
4229 |
-
margin-bottom: 0;
|
4230 |
-
}
|
4231 |
-
.bc-root .bc-uk-container .bc-uk-container {
|
4232 |
-
padding-left: 0;
|
4233 |
-
padding-right: 0;
|
4234 |
-
}
|
4235 |
-
.bc-root .bc-uk-container-xsmall {
|
4236 |
-
max-width: 750px;
|
4237 |
-
}
|
4238 |
-
.bc-root .bc-uk-container-small {
|
4239 |
-
max-width: 900px;
|
4240 |
-
}
|
4241 |
-
.bc-root .bc-uk-container-large {
|
4242 |
-
max-width: 1600px;
|
4243 |
-
}
|
4244 |
-
.bc-root .bc-uk-container-expand {
|
4245 |
-
max-width: none;
|
4246 |
-
}
|
4247 |
-
.bc-root .bc-uk-container-expand-left {
|
4248 |
-
margin-left: 0;
|
4249 |
-
}
|
4250 |
-
.bc-root .bc-uk-container-expand-right {
|
4251 |
-
margin-right: 0;
|
4252 |
-
}
|
4253 |
-
@media (min-width: 640px) {
|
4254 |
-
.bc-root .bc-uk-container-expand-left.bc-uk-container-xsmall,
|
4255 |
-
.bc-root .bc-uk-container-expand-right.bc-uk-container-xsmall {
|
4256 |
-
max-width: calc(50% + (750px / 2) - 30px);
|
4257 |
-
}
|
4258 |
-
.bc-root .bc-uk-container-expand-left.bc-uk-container-small,
|
4259 |
-
.bc-root .bc-uk-container-expand-right.bc-uk-container-small {
|
4260 |
-
max-width: calc(50% + (900px / 2) - 30px);
|
4261 |
-
}
|
4262 |
-
}
|
4263 |
-
@media (min-width: 960px) {
|
4264 |
-
.bc-root .bc-uk-container-expand-left,
|
4265 |
-
.bc-root .bc-uk-container-expand-right {
|
4266 |
-
max-width: calc(50% + (1200px / 2) - 40px);
|
4267 |
-
}
|
4268 |
-
.bc-root .bc-uk-container-expand-left.bc-uk-container-xsmall,
|
4269 |
-
.bc-root .bc-uk-container-expand-right.bc-uk-container-xsmall {
|
4270 |
-
max-width: calc(50% + (750px / 2) - 40px);
|
4271 |
-
}
|
4272 |
-
.bc-root .bc-uk-container-expand-left.bc-uk-container-small,
|
4273 |
-
.bc-root .bc-uk-container-expand-right.bc-uk-container-small {
|
4274 |
-
max-width: calc(50% + (900px / 2) - 40px);
|
4275 |
-
}
|
4276 |
-
.bc-root .bc-uk-container-expand-left.bc-uk-container-large,
|
4277 |
-
.bc-root .bc-uk-container-expand-right.bc-uk-container-large {
|
4278 |
-
max-width: calc(50% + (1600px / 2) - 40px);
|
4279 |
-
}
|
4280 |
-
}
|
4281 |
-
.bc-root .bc-uk-container-item-padding-remove-left,
|
4282 |
-
.bc-root .bc-uk-container-item-padding-remove-right {
|
4283 |
-
width: calc(100% + 15px);
|
4284 |
-
}
|
4285 |
-
.bc-root .bc-uk-container-item-padding-remove-left {
|
4286 |
-
margin-left: -15px;
|
4287 |
-
}
|
4288 |
-
.bc-root .bc-uk-container-item-padding-remove-right {
|
4289 |
-
margin-right: -15px;
|
4290 |
-
}
|
4291 |
-
@media (min-width: 640px) {
|
4292 |
-
.bc-root .bc-uk-container-item-padding-remove-left,
|
4293 |
-
.bc-root .bc-uk-container-item-padding-remove-right {
|
4294 |
-
width: calc(100% + 30px);
|
4295 |
-
}
|
4296 |
-
.bc-root .bc-uk-container-item-padding-remove-left {
|
4297 |
-
margin-left: -30px;
|
4298 |
-
}
|
4299 |
-
.bc-root .bc-uk-container-item-padding-remove-right {
|
4300 |
-
margin-right: -30px;
|
4301 |
-
}
|
4302 |
-
}
|
4303 |
-
@media (min-width: 960px) {
|
4304 |
-
.bc-root .bc-uk-container-item-padding-remove-left,
|
4305 |
-
.bc-root .bc-uk-container-item-padding-remove-right {
|
4306 |
-
width: calc(100% + 40px);
|
4307 |
-
}
|
4308 |
-
.bc-root .bc-uk-container-item-padding-remove-left {
|
4309 |
-
margin-left: -40px;
|
4310 |
-
}
|
4311 |
-
.bc-root .bc-uk-container-item-padding-remove-right {
|
4312 |
-
margin-right: -40px;
|
4313 |
-
}
|
4314 |
-
}
|
4315 |
-
.bc-root .bc-uk-grid {
|
4316 |
-
display: flex;
|
4317 |
-
/* 1 */
|
4318 |
-
flex-wrap: wrap;
|
4319 |
-
/* 2 */
|
4320 |
-
margin: 0;
|
4321 |
-
padding: 0;
|
4322 |
-
list-style: none;
|
4323 |
-
}
|
4324 |
-
.bc-root .bc-uk-grid > * {
|
4325 |
-
margin: 0;
|
4326 |
-
}
|
4327 |
-
.bc-root .bc-uk-grid > * > :last-child {
|
4328 |
-
margin-bottom: 0;
|
4329 |
-
}
|
4330 |
-
.bc-root .bc-uk-grid {
|
4331 |
-
margin-left: -30px;
|
4332 |
-
}
|
4333 |
-
.bc-root .bc-uk-grid > * {
|
4334 |
-
padding-left: 30px;
|
4335 |
-
}
|
4336 |
-
.bc-root .bc-uk-grid + .bc-uk-grid,
|
4337 |
-
.bc-root .bc-uk-grid > .bc-uk-grid-margin,
|
4338 |
-
.bc-root * + .bc-uk-grid-margin {
|
4339 |
-
margin-top: 30px;
|
4340 |
-
}
|
4341 |
-
@media (min-width: 1200px) {
|
4342 |
-
.bc-root {
|
4343 |
-
/* Horizontal */
|
4344 |
-
/* Vertical */
|
4345 |
-
}
|
4346 |
-
.bc-root .bc-uk-grid {
|
4347 |
-
margin-left: -40px;
|
4348 |
-
}
|
4349 |
-
.bc-root .bc-uk-grid > * {
|
4350 |
-
padding-left: 40px;
|
4351 |
-
}
|
4352 |
-
.bc-root .bc-uk-grid + .bc-uk-grid,
|
4353 |
-
.bc-root .bc-uk-grid > .bc-uk-grid-margin,
|
4354 |
-
.bc-root * + .bc-uk-grid-margin {
|
4355 |
-
margin-top: 40px;
|
4356 |
-
}
|
4357 |
-
}
|
4358 |
-
.bc-root .bc-uk-grid-small {
|
4359 |
-
margin-left: -15px;
|
4360 |
-
}
|
4361 |
-
.bc-root .bc-uk-grid-small > * {
|
4362 |
-
padding-left: 15px;
|
4363 |
-
}
|
4364 |
-
.bc-root .bc-uk-grid + .bc-uk-grid-small,
|
4365 |
-
.bc-root .bc-uk-grid-small > .bc-uk-grid-margin,
|
4366 |
-
.bc-root * + .bc-uk-grid-margin-small {
|
4367 |
-
margin-top: 15px;
|
4368 |
-
}
|
4369 |
-
.bc-root .bc-uk-grid-medium {
|
4370 |
-
margin-left: -30px;
|
4371 |
-
}
|
4372 |
-
.bc-root .bc-uk-grid-medium > * {
|
4373 |
-
padding-left: 30px;
|
4374 |
-
}
|
4375 |
-
.bc-root .bc-uk-grid + .bc-uk-grid-medium,
|
4376 |
-
.bc-root .bc-uk-grid-medium > .bc-uk-grid-margin,
|
4377 |
-
.bc-root * + .bc-uk-grid-margin-medium {
|
4378 |
-
margin-top: 30px;
|
4379 |
-
}
|
4380 |
-
.bc-root .bc-uk-grid-large {
|
4381 |
-
margin-left: -40px;
|
4382 |
-
}
|
4383 |
-
.bc-root .bc-uk-grid-large > * {
|
4384 |
-
padding-left: 40px;
|
4385 |
-
}
|
4386 |
-
.bc-root .bc-uk-grid + .bc-uk-grid-large,
|
4387 |
-
.bc-root .bc-uk-grid-large > .bc-uk-grid-margin,
|
4388 |
-
.bc-root * + .bc-uk-grid-margin-large {
|
4389 |
-
margin-top: 40px;
|
4390 |
-
}
|
4391 |
-
@media (min-width: 1200px) {
|
4392 |
-
.bc-root {
|
4393 |
-
/* Horizontal */
|
4394 |
-
/* Vertical */
|
4395 |
-
}
|
4396 |
-
.bc-root .bc-uk-grid-large {
|
4397 |
-
margin-left: -70px;
|
4398 |
-
}
|
4399 |
-
.bc-root .bc-uk-grid-large > * {
|
4400 |
-
padding-left: 70px;
|
4401 |
-
}
|
4402 |
-
.bc-root .bc-uk-grid + .bc-uk-grid-large,
|
4403 |
-
.bc-root .bc-uk-grid-large > .bc-uk-grid-margin,
|
4404 |
-
.bc-root * + .bc-uk-grid-margin-large {
|
4405 |
-
margin-top: 70px;
|
4406 |
-
}
|
4407 |
-
}
|
4408 |
-
.bc-root .bc-uk-grid-collapse {
|
4409 |
-
margin-left: 0;
|
4410 |
-
}
|
4411 |
-
.bc-root .bc-uk-grid-collapse > * {
|
4412 |
-
padding-left: 0;
|
4413 |
-
}
|
4414 |
-
.bc-root .bc-uk-grid + .bc-uk-grid-collapse,
|
4415 |
-
.bc-root .bc-uk-grid-collapse > .bc-uk-grid-margin {
|
4416 |
-
margin-top: 0;
|
4417 |
-
}
|
4418 |
-
.bc-root .bc-uk-grid-divider > * {
|
4419 |
-
position: relative;
|
4420 |
-
}
|
4421 |
-
.bc-root .bc-uk-grid-divider > :not(.bc-uk-first-column)::before {
|
4422 |
-
content: "";
|
4423 |
-
position: absolute;
|
4424 |
-
top: 0;
|
4425 |
-
bottom: 0;
|
4426 |
-
border-left: 1px solid #e5e5e5;
|
4427 |
-
}
|
4428 |
-
.bc-root .bc-uk-grid-divider.bc-uk-grid-stack > .bc-uk-grid-margin::before {
|
4429 |
-
content: "";
|
4430 |
-
position: absolute;
|
4431 |
-
left: 0;
|
4432 |
-
right: 0;
|
4433 |
-
border-top: 1px solid #e5e5e5;
|
4434 |
-
}
|
4435 |
-
.bc-root .bc-uk-grid-divider {
|
4436 |
-
margin-left: -60px;
|
4437 |
-
}
|
4438 |
-
.bc-root .bc-uk-grid-divider > * {
|
4439 |
-
padding-left: 60px;
|
4440 |
-
}
|
4441 |
-
.bc-root .bc-uk-grid-divider > :not(.bc-uk-first-column)::before {
|
4442 |
-
left: 30px;
|
4443 |
-
}
|
4444 |
-
.bc-root .bc-uk-grid-divider.bc-uk-grid-stack > .bc-uk-grid-margin {
|
4445 |
-
margin-top: 60px;
|
4446 |
-
}
|
4447 |
-
.bc-root .bc-uk-grid-divider.bc-uk-grid-stack > .bc-uk-grid-margin::before {
|
4448 |
-
top: -30px;
|
4449 |
-
left: 60px;
|
4450 |
-
}
|
4451 |
-
@media (min-width: 1200px) {
|
4452 |
-
.bc-root {
|
4453 |
-
/* Horizontal */
|
4454 |
-
/* Vertical */
|
4455 |
-
}
|
4456 |
-
.bc-root .bc-uk-grid-divider {
|
4457 |
-
margin-left: -80px;
|
4458 |
-
}
|
4459 |
-
.bc-root .bc-uk-grid-divider > * {
|
4460 |
-
padding-left: 80px;
|
4461 |
-
}
|
4462 |
-
.bc-root .bc-uk-grid-divider > :not(.bc-uk-first-column)::before {
|
4463 |
-
left: 40px;
|
4464 |
-
}
|
4465 |
-
.bc-root .bc-uk-grid-divider.bc-uk-grid-stack > .bc-uk-grid-margin {
|
4466 |
-
margin-top: 80px;
|
4467 |
-
}
|
4468 |
-
.bc-root .bc-uk-grid-divider.bc-uk-grid-stack > .bc-uk-grid-margin::before {
|
4469 |
-
top: -40px;
|
4470 |
-
left: 80px;
|
4471 |
-
}
|
4472 |
-
}
|
4473 |
-
.bc-root .bc-uk-grid-divider.bc-uk-grid-small {
|
4474 |
-
margin-left: -30px;
|
4475 |
-
}
|
4476 |
-
.bc-root .bc-uk-grid-divider.bc-uk-grid-small > * {
|
4477 |
-
padding-left: 30px;
|
4478 |
-
}
|
4479 |
-
.bc-root .bc-uk-grid-divider.bc-uk-grid-small > :not(.bc-uk-first-column)::before {
|
4480 |
-
left: 15px;
|
4481 |
-
}
|
4482 |
-
.bc-root .bc-uk-grid-divider.bc-uk-grid-small.bc-uk-grid-stack > .bc-uk-grid-margin {
|
4483 |
-
margin-top: 30px;
|
4484 |
-
}
|
4485 |
-
.bc-root .bc-uk-grid-divider.bc-uk-grid-small.bc-uk-grid-stack > .bc-uk-grid-margin::before {
|
4486 |
-
top: -15px;
|
4487 |
-
left: 30px;
|
4488 |
-
}
|
4489 |
-
.bc-root .bc-uk-grid-divider.bc-uk-grid-medium {
|
4490 |
-
margin-left: -60px;
|
4491 |
-
}
|
4492 |
-
.bc-root .bc-uk-grid-divider.bc-uk-grid-medium > * {
|
4493 |
-
padding-left: 60px;
|
4494 |
-
}
|
4495 |
-
.bc-root .bc-uk-grid-divider.bc-uk-grid-medium > :not(.bc-uk-first-column)::before {
|
4496 |
-
left: 30px;
|
4497 |
-
}
|
4498 |
-
.bc-root .bc-uk-grid-divider.bc-uk-grid-medium.bc-uk-grid-stack > .bc-uk-grid-margin {
|
4499 |
-
margin-top: 60px;
|
4500 |
-
}
|
4501 |
-
.bc-root .bc-uk-grid-divider.bc-uk-grid-medium.bc-uk-grid-stack > .bc-uk-grid-margin::before {
|
4502 |
-
top: -30px;
|
4503 |
-
left: 60px;
|
4504 |
-
}
|
4505 |
-
.bc-root .bc-uk-grid-divider.bc-uk-grid-large {
|
4506 |
-
margin-left: -80px;
|
4507 |
-
}
|
4508 |
-
.bc-root .bc-uk-grid-divider.bc-uk-grid-large > * {
|
4509 |
-
padding-left: 80px;
|
4510 |
-
}
|
4511 |
-
.bc-root .bc-uk-grid-divider.bc-uk-grid-large > :not(.bc-uk-first-column)::before {
|
4512 |
-
left: 40px;
|
4513 |
-
}
|
4514 |
-
.bc-root .bc-uk-grid-divider.bc-uk-grid-large.bc-uk-grid-stack > .bc-uk-grid-margin {
|
4515 |
-
margin-top: 80px;
|
4516 |
-
}
|
4517 |
-
.bc-root .bc-uk-grid-divider.bc-uk-grid-large.bc-uk-grid-stack > .bc-uk-grid-margin::before {
|
4518 |
-
top: -40px;
|
4519 |
-
left: 80px;
|
4520 |
-
}
|
4521 |
-
@media (min-width: 1200px) {
|
4522 |
-
.bc-root {
|
4523 |
-
/* Horizontal */
|
4524 |
-
/* Vertical */
|
4525 |
-
}
|
4526 |
-
.bc-root .bc-uk-grid-divider.bc-uk-grid-large {
|
4527 |
-
margin-left: -140px;
|
4528 |
-
}
|
4529 |
-
.bc-root .bc-uk-grid-divider.bc-uk-grid-large > * {
|
4530 |
-
padding-left: 140px;
|
4531 |
-
}
|
4532 |
-
.bc-root .bc-uk-grid-divider.bc-uk-grid-large > :not(.bc-uk-first-column)::before {
|
4533 |
-
left: 70px;
|
4534 |
-
}
|
4535 |
-
.bc-root .bc-uk-grid-divider.bc-uk-grid-large.bc-uk-grid-stack > .bc-uk-grid-margin {
|
4536 |
-
margin-top: 140px;
|
4537 |
-
}
|
4538 |
-
.bc-root .bc-uk-grid-divider.bc-uk-grid-large.bc-uk-grid-stack > .bc-uk-grid-margin::before {
|
4539 |
-
top: -70px;
|
4540 |
-
left: 140px;
|
4541 |
-
}
|
4542 |
-
}
|
4543 |
-
.bc-root .bc-uk-grid-match > *,
|
4544 |
-
.bc-root .bc-uk-grid-item-match {
|
4545 |
-
display: flex;
|
4546 |
-
/* 1 */
|
4547 |
-
flex-wrap: wrap;
|
4548 |
-
}
|
4549 |
-
.bc-root .bc-uk-grid-match > * > :not([class*=uk-width]),
|
4550 |
-
.bc-root .bc-uk-grid-item-match > :not([class*=uk-width]) {
|
4551 |
-
/* 2 */
|
4552 |
-
box-sizing: border-box;
|
4553 |
-
width: 100%;
|
4554 |
-
/* 3 */
|
4555 |
-
flex: auto;
|
4556 |
-
}
|
4557 |
-
.bc-root .bc-uk-tile {
|
4558 |
-
position: relative;
|
4559 |
-
box-sizing: border-box;
|
4560 |
-
padding-left: 15px;
|
4561 |
-
padding-right: 15px;
|
4562 |
-
padding-top: 40px;
|
4563 |
-
padding-bottom: 40px;
|
4564 |
-
}
|
4565 |
-
@media (min-width: 640px) {
|
4566 |
-
.bc-root .bc-uk-tile {
|
4567 |
-
padding-left: 30px;
|
4568 |
-
padding-right: 30px;
|
4569 |
-
}
|
4570 |
-
}
|
4571 |
-
@media (min-width: 960px) {
|
4572 |
-
.bc-root .bc-uk-tile {
|
4573 |
-
padding-left: 40px;
|
4574 |
-
padding-right: 40px;
|
4575 |
-
padding-top: 70px;
|
4576 |
-
padding-bottom: 70px;
|
4577 |
-
}
|
4578 |
-
}
|
4579 |
-
.bc-root .bc-uk-tile::before,
|
4580 |
-
.bc-root .bc-uk-tile::after {
|
4581 |
-
content: "";
|
4582 |
-
display: table;
|
4583 |
-
}
|
4584 |
-
.bc-root .bc-uk-tile::after {
|
4585 |
-
clear: both;
|
4586 |
-
}
|
4587 |
-
.bc-root .bc-uk-tile > :last-child {
|
4588 |
-
margin-bottom: 0;
|
4589 |
-
}
|
4590 |
-
.bc-root .bc-uk-tile-xsmall {
|
4591 |
-
padding-top: 20px;
|
4592 |
-
padding-bottom: 20px;
|
4593 |
-
}
|
4594 |
-
.bc-root .bc-uk-tile-small {
|
4595 |
-
padding-top: 40px;
|
4596 |
-
padding-bottom: 40px;
|
4597 |
-
}
|
4598 |
-
.bc-root .bc-uk-tile-large {
|
4599 |
-
padding-top: 70px;
|
4600 |
-
padding-bottom: 70px;
|
4601 |
-
}
|
4602 |
-
@media (min-width: 960px) {
|
4603 |
-
.bc-root .bc-uk-tile-large {
|
4604 |
-
padding-top: 140px;
|
4605 |
-
padding-bottom: 140px;
|
4606 |
-
}
|
4607 |
-
}
|
4608 |
-
.bc-root .bc-uk-tile-xlarge {
|
4609 |
-
padding-top: 140px;
|
4610 |
-
padding-bottom: 140px;
|
4611 |
-
}
|
4612 |
-
@media (min-width: 960px) {
|
4613 |
-
.bc-root .bc-uk-tile-xlarge {
|
4614 |
-
padding-top: 210px;
|
4615 |
-
padding-bottom: 210px;
|
4616 |
-
}
|
4617 |
-
}
|
4618 |
-
.bc-root .bc-uk-tile-default {
|
4619 |
-
background: #fff;
|
4620 |
-
}
|
4621 |
-
.bc-root .bc-uk-tile-muted {
|
4622 |
-
background: #f8f8f8;
|
4623 |
-
}
|
4624 |
-
.bc-root .bc-uk-tile-primary {
|
4625 |
-
background: #1e87f0;
|
4626 |
-
}
|
4627 |
-
.bc-root .bc-uk-tile-secondary {
|
4628 |
-
background: #222;
|
4629 |
-
}
|
4630 |
-
.bc-root .bc-uk-card {
|
4631 |
-
position: relative;
|
4632 |
-
box-sizing: border-box;
|
4633 |
-
transition: box-shadow 0.1s ease-in-out;
|
4634 |
-
}
|
4635 |
-
.bc-root .bc-uk-card-body {
|
4636 |
-
padding: 30px 30px;
|
4637 |
-
}
|
4638 |
-
.bc-root .bc-uk-card-header {
|
4639 |
-
padding: 15px 30px;
|
4640 |
-
}
|
4641 |
-
.bc-root .bc-uk-card-footer {
|
4642 |
-
padding: 15px 30px;
|
4643 |
-
}
|
4644 |
-
@media (min-width: 1200px) {
|
4645 |
-
.bc-root .bc-uk-card-body {
|
4646 |
-
padding: 40px 40px;
|
4647 |
-
}
|
4648 |
-
.bc-root .bc-uk-card-header {
|
4649 |
-
padding: 20px 40px;
|
4650 |
-
}
|
4651 |
-
.bc-root .bc-uk-card-footer {
|
4652 |
-
padding: 20px 40px;
|
4653 |
-
}
|
4654 |
-
}
|
4655 |
-
.bc-root .bc-uk-card-body::before,
|
4656 |
-
.bc-root .bc-uk-card-body::after,
|
4657 |
-
.bc-root .bc-uk-card-header::before,
|
4658 |
-
.bc-root .bc-uk-card-header::after,
|
4659 |
-
.bc-root .bc-uk-card-footer::before,
|
4660 |
-
.bc-root .bc-uk-card-footer::after {
|
4661 |
-
content: "";
|
4662 |
-
display: table;
|
4663 |
-
}
|
4664 |
-
.bc-root .bc-uk-card-body::after,
|
4665 |
-
.bc-root .bc-uk-card-header::after,
|
4666 |
-
.bc-root .bc-uk-card-footer::after {
|
4667 |
-
clear: both;
|
4668 |
-
}
|
4669 |
-
.bc-root .bc-uk-card-body > :last-child,
|
4670 |
-
.bc-root .bc-uk-card-header > :last-child,
|
4671 |
-
.bc-root .bc-uk-card-footer > :last-child {
|
4672 |
-
margin-bottom: 0;
|
4673 |
-
}
|
4674 |
-
.bc-root .bc-uk-card-title {
|
4675 |
-
font-size: 1.5rem;
|
4676 |
-
line-height: 1.4;
|
4677 |
-
}
|
4678 |
-
.bc-root .bc-uk-card-badge {
|
4679 |
-
position: absolute;
|
4680 |
-
top: 30px;
|
4681 |
-
right: 30px;
|
4682 |
-
z-index: 1;
|
4683 |
-
}
|
4684 |
-
.bc-root .bc-uk-card-badge:first-child + * {
|
4685 |
-
margin-top: 0;
|
4686 |
-
}
|
4687 |
-
.bc-root .bc-uk-card-hover:not(.bc-uk-card-default):not(.bc-uk-card-primary):not(.bc-uk-card-secondary):hover {
|
4688 |
-
background: #fff;
|
4689 |
-
box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
|
4690 |
-
}
|
4691 |
-
.bc-root .bc-uk-card-default {
|
4692 |
-
background: #fff;
|
4693 |
-
color: #666;
|
4694 |
-
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
|
4695 |
-
}
|
4696 |
-
.bc-root .bc-uk-card-default .bc-uk-card-title {
|
4697 |
-
color: #333;
|
4698 |
-
}
|
4699 |
-
.bc-root .bc-uk-card-default.bc-uk-card-hover:hover {
|
4700 |
-
background-color: #fff;
|
4701 |
-
box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
|
4702 |
-
}
|
4703 |
-
.bc-root .bc-uk-card-default .bc-uk-card-header {
|
4704 |
-
border-bottom: 1px solid #e5e5e5;
|
4705 |
-
}
|
4706 |
-
.bc-root .bc-uk-card-default .bc-uk-card-footer {
|
4707 |
-
border-top: 1px solid #e5e5e5;
|
4708 |
-
}
|
4709 |
-
.bc-root .bc-uk-card-primary {
|
4710 |
-
background: #1e87f0;
|
4711 |
-
color: #fff;
|
4712 |
-
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
|
4713 |
-
}
|
4714 |
-
.bc-root .bc-uk-card-primary .bc-uk-card-title {
|
4715 |
-
color: #fff;
|
4716 |
-
}
|
4717 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-hover:hover {
|
4718 |
-
background-color: #1e87f0;
|
4719 |
-
box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
|
4720 |
-
}
|
4721 |
-
.bc-root .bc-uk-card-secondary {
|
4722 |
-
background: #222;
|
4723 |
-
color: #fff;
|
4724 |
-
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
|
4725 |
-
}
|
4726 |
-
.bc-root .bc-uk-card-secondary .bc-uk-card-title {
|
4727 |
-
color: #fff;
|
4728 |
-
}
|
4729 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-hover:hover {
|
4730 |
-
background-color: #222;
|
4731 |
-
box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
|
4732 |
-
}
|
4733 |
-
.bc-root .bc-uk-card-small.bc-uk-card-body,
|
4734 |
-
.bc-root .bc-uk-card-small .bc-uk-card-body {
|
4735 |
-
padding: 20px 20px;
|
4736 |
-
}
|
4737 |
-
.bc-root .bc-uk-card-small .bc-uk-card-header {
|
4738 |
-
padding: 13px 20px;
|
4739 |
-
}
|
4740 |
-
.bc-root .bc-uk-card-small .bc-uk-card-footer {
|
4741 |
-
padding: 13px 20px;
|
4742 |
-
}
|
4743 |
-
@media (min-width: 1200px) {
|
4744 |
-
.bc-root .bc-uk-card-large.bc-uk-card-body,
|
4745 |
-
.bc-root .bc-uk-card-large .bc-uk-card-body {
|
4746 |
-
padding: 70px 70px;
|
4747 |
-
}
|
4748 |
-
.bc-root .bc-uk-card-large .bc-uk-card-header {
|
4749 |
-
padding: 35px 70px;
|
4750 |
-
}
|
4751 |
-
.bc-root .bc-uk-card-large .bc-uk-card-footer {
|
4752 |
-
padding: 35px 70px;
|
4753 |
-
}
|
4754 |
-
}
|
4755 |
-
.bc-root .bc-uk-card-body > .bc-uk-nav-default {
|
4756 |
-
margin-left: -30px;
|
4757 |
-
margin-right: -30px;
|
4758 |
-
}
|
4759 |
-
.bc-root .bc-uk-card-body > .bc-uk-nav-default:only-child {
|
4760 |
-
margin-top: -15px;
|
4761 |
-
margin-bottom: -15px;
|
4762 |
-
}
|
4763 |
-
.bc-root .bc-uk-card-body .bc-uk-nav-default > li > a,
|
4764 |
-
.bc-root .bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-header,
|
4765 |
-
.bc-root .bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-divider {
|
4766 |
-
padding-left: 30px;
|
4767 |
-
padding-right: 30px;
|
4768 |
-
}
|
4769 |
-
.bc-root .bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-sub {
|
4770 |
-
padding-left: 45px;
|
4771 |
-
}
|
4772 |
-
@media (min-width: 1200px) {
|
4773 |
-
.bc-root .bc-uk-card-body > .bc-uk-nav-default {
|
4774 |
-
margin-left: -40px;
|
4775 |
-
margin-right: -40px;
|
4776 |
-
}
|
4777 |
-
.bc-root .bc-uk-card-body > .bc-uk-nav-default:only-child {
|
4778 |
-
margin-top: -25px;
|
4779 |
-
margin-bottom: -25px;
|
4780 |
-
}
|
4781 |
-
.bc-root .bc-uk-card-body .bc-uk-nav-default > li > a,
|
4782 |
-
.bc-root .bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-header,
|
4783 |
-
.bc-root .bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-divider {
|
4784 |
-
padding-left: 40px;
|
4785 |
-
padding-right: 40px;
|
4786 |
-
}
|
4787 |
-
.bc-root .bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-sub {
|
4788 |
-
padding-left: 55px;
|
4789 |
-
}
|
4790 |
-
}
|
4791 |
-
.bc-root .bc-uk-card-small > .bc-uk-nav-default {
|
4792 |
-
margin-left: -20px;
|
4793 |
-
margin-right: -20px;
|
4794 |
-
}
|
4795 |
-
.bc-root .bc-uk-card-small > .bc-uk-nav-default:only-child {
|
4796 |
-
margin-top: -5px;
|
4797 |
-
margin-bottom: -5px;
|
4798 |
-
}
|
4799 |
-
.bc-root .bc-uk-card-small .bc-uk-nav-default > li > a,
|
4800 |
-
.bc-root .bc-uk-card-small .bc-uk-nav-default .bc-uk-nav-header,
|
4801 |
-
.bc-root .bc-uk-card-small .bc-uk-nav-default .bc-uk-nav-divider {
|
4802 |
-
padding-left: 20px;
|
4803 |
-
padding-right: 20px;
|
4804 |
-
}
|
4805 |
-
.bc-root .bc-uk-card-small .bc-uk-nav-default .bc-uk-nav-sub {
|
4806 |
-
padding-left: 35px;
|
4807 |
-
}
|
4808 |
-
@media (min-width: 1200px) {
|
4809 |
-
.bc-root .bc-uk-card-large > .bc-uk-nav-default {
|
4810 |
-
margin: 0;
|
4811 |
-
}
|
4812 |
-
.bc-root .bc-uk-card-large > .bc-uk-nav-default:only-child {
|
4813 |
-
margin: 0;
|
4814 |
-
}
|
4815 |
-
.bc-root .bc-uk-card-large .bc-uk-nav-default > li > a,
|
4816 |
-
.bc-root .bc-uk-card-large .bc-uk-nav-default .bc-uk-nav-header,
|
4817 |
-
.bc-root .bc-uk-card-large .bc-uk-nav-default .bc-uk-nav-divider {
|
4818 |
-
padding-left: 0;
|
4819 |
-
padding-right: 0;
|
4820 |
-
}
|
4821 |
-
.bc-root .bc-uk-card-large .bc-uk-nav-default .bc-uk-nav-sub {
|
4822 |
-
padding-left: 15px;
|
4823 |
-
}
|
4824 |
-
}
|
4825 |
-
.bc-root .bc-uk-close {
|
4826 |
-
color: #999;
|
4827 |
-
transition: 0.1s ease-in-out;
|
4828 |
-
transition-property: color, opacity;
|
4829 |
-
}
|
4830 |
-
.bc-root .bc-uk-close:hover,
|
4831 |
-
.bc-root .bc-uk-close:focus {
|
4832 |
-
color: #666;
|
4833 |
-
outline: none;
|
4834 |
-
}
|
4835 |
-
.bc-root .bc-uk-spinner > * {
|
4836 |
-
animation: uk-spinner-rotate 1.4s linear infinite;
|
4837 |
-
}
|
4838 |
-
@keyframes uk-spinner-rotate {
|
4839 |
-
0% {
|
4840 |
-
transform: rotate(0deg);
|
4841 |
-
}
|
4842 |
-
100% {
|
4843 |
-
transform: rotate(270deg);
|
4844 |
-
}
|
4845 |
-
}
|
4846 |
-
.bc-root .bc-uk-spinner > * > * {
|
4847 |
-
stroke-dasharray: 88px;
|
4848 |
-
stroke-dashoffset: 0;
|
4849 |
-
transform-origin: center;
|
4850 |
-
animation: uk-spinner-dash 1.4s ease-in-out infinite;
|
4851 |
-
stroke-width: 1;
|
4852 |
-
stroke-linecap: round;
|
4853 |
-
}
|
4854 |
-
@keyframes uk-spinner-dash {
|
4855 |
-
0% {
|
4856 |
-
stroke-dashoffset: 88px;
|
4857 |
-
}
|
4858 |
-
50% {
|
4859 |
-
stroke-dashoffset: 22px;
|
4860 |
-
transform: rotate(135deg);
|
4861 |
-
}
|
4862 |
-
100% {
|
4863 |
-
stroke-dashoffset: 88px;
|
4864 |
-
transform: rotate(450deg);
|
4865 |
-
}
|
4866 |
-
}
|
4867 |
-
.bc-root .bc-uk-totop {
|
4868 |
-
padding: 5px;
|
4869 |
-
color: #999;
|
4870 |
-
transition: color 0.1s ease-in-out;
|
4871 |
-
}
|
4872 |
-
.bc-root .bc-uk-totop:hover,
|
4873 |
-
.bc-root .bc-uk-totop:focus {
|
4874 |
-
color: #666;
|
4875 |
-
outline: none;
|
4876 |
-
}
|
4877 |
-
.bc-root .bc-uk-totop:active {
|
4878 |
-
color: #333;
|
4879 |
-
}
|
4880 |
-
.bc-root .bc-uk-marker {
|
4881 |
-
padding: 5px;
|
4882 |
-
background: #222;
|
4883 |
-
color: #fff;
|
4884 |
-
border-radius: 500px;
|
4885 |
-
}
|
4886 |
-
.bc-root .bc-uk-marker:hover,
|
4887 |
-
.bc-root .bc-uk-marker:focus {
|
4888 |
-
color: #fff;
|
4889 |
-
outline: none;
|
4890 |
-
}
|
4891 |
-
.bc-root .bc-uk-alert {
|
4892 |
-
position: relative;
|
4893 |
-
margin-bottom: 20px;
|
4894 |
-
padding: 15px 29px 15px 15px;
|
4895 |
-
background: #f8f8f8;
|
4896 |
-
color: #666;
|
4897 |
-
}
|
4898 |
-
.bc-root * + .bc-uk-alert {
|
4899 |
-
margin-top: 20px;
|
4900 |
-
}
|
4901 |
-
.bc-root .bc-uk-alert > :last-child {
|
4902 |
-
margin-bottom: 0;
|
4903 |
-
}
|
4904 |
-
.bc-root .bc-uk-alert-close {
|
4905 |
-
position: absolute;
|
4906 |
-
top: 20px;
|
4907 |
-
right: 15px;
|
4908 |
-
color: inherit;
|
4909 |
-
opacity: 0.4;
|
4910 |
-
}
|
4911 |
-
.bc-root .bc-uk-alert-close:first-child + * {
|
4912 |
-
margin-top: 0;
|
4913 |
-
}
|
4914 |
-
.bc-root .bc-uk-alert-close:hover,
|
4915 |
-
.bc-root .bc-uk-alert-close:focus {
|
4916 |
-
color: inherit;
|
4917 |
-
opacity: 0.8;
|
4918 |
-
}
|
4919 |
-
.bc-root .bc-uk-alert-primary {
|
4920 |
-
background: #d8eafc;
|
4921 |
-
color: #1e87f0;
|
4922 |
-
}
|
4923 |
-
.bc-root .bc-uk-alert-success {
|
4924 |
-
background: #edfbf6;
|
4925 |
-
color: #32d296;
|
4926 |
-
}
|
4927 |
-
.bc-root .bc-uk-alert-warning {
|
4928 |
-
background: #fff6ee;
|
4929 |
-
color: #faa05a;
|
4930 |
-
}
|
4931 |
-
.bc-root .bc-uk-alert-danger {
|
4932 |
-
background: #fef4f6;
|
4933 |
-
color: #f0506e;
|
4934 |
-
}
|
4935 |
-
.bc-root .bc-uk-alert h1,
|
4936 |
-
.bc-root .bc-uk-alert h2,
|
4937 |
-
.bc-root .bc-uk-alert h3,
|
4938 |
-
.bc-root .bc-uk-alert h4,
|
4939 |
-
.bc-root .bc-uk-alert h5,
|
4940 |
-
.bc-root .bc-uk-alert h6 {
|
4941 |
-
color: inherit;
|
4942 |
-
}
|
4943 |
-
.bc-root .bc-uk-alert a:not([class]) {
|
4944 |
-
color: inherit;
|
4945 |
-
text-decoration: underline;
|
4946 |
-
}
|
4947 |
-
.bc-root .bc-uk-alert a:not([class]):hover {
|
4948 |
-
color: inherit;
|
4949 |
-
text-decoration: underline;
|
4950 |
-
}
|
4951 |
-
.bc-root .bc-uk-badge {
|
4952 |
-
box-sizing: border-box;
|
4953 |
-
min-width: 22px;
|
4954 |
-
height: 22px;
|
4955 |
-
padding: 0 5px;
|
4956 |
-
border-radius: 500px;
|
4957 |
-
vertical-align: middle;
|
4958 |
-
/* 1 */
|
4959 |
-
background: #1e87f0;
|
4960 |
-
color: #fff;
|
4961 |
-
font-size: 0.875rem;
|
4962 |
-
/* 2 */
|
4963 |
-
display: inline-flex;
|
4964 |
-
justify-content: center;
|
4965 |
-
align-items: center;
|
4966 |
-
}
|
4967 |
-
.bc-root .bc-uk-badge:hover,
|
4968 |
-
.bc-root .bc-uk-badge:focus {
|
4969 |
-
color: #fff;
|
4970 |
-
text-decoration: none;
|
4971 |
-
outline: none;
|
4972 |
-
}
|
4973 |
-
.bc-root .bc-uk-label {
|
4974 |
-
display: inline-block;
|
4975 |
-
padding: 0 10px;
|
4976 |
-
background: #1e87f0;
|
4977 |
-
line-height: 1.5;
|
4978 |
-
font-size: 0.875rem;
|
4979 |
-
color: #fff;
|
4980 |
-
vertical-align: middle;
|
4981 |
-
white-space: nowrap;
|
4982 |
-
border-radius: 2px;
|
4983 |
-
text-transform: uppercase;
|
4984 |
-
}
|
4985 |
-
.bc-root .bc-uk-label-success {
|
4986 |
-
background-color: #32d296;
|
4987 |
-
color: #fff;
|
4988 |
-
}
|
4989 |
-
.bc-root .bc-uk-label-warning {
|
4990 |
-
background-color: #faa05a;
|
4991 |
-
color: #fff;
|
4992 |
-
}
|
4993 |
-
.bc-root .bc-uk-label-danger {
|
4994 |
-
background-color: #f0506e;
|
4995 |
-
color: #fff;
|
4996 |
-
}
|
4997 |
-
.bc-root .bc-uk-overlay {
|
4998 |
-
padding: 30px 30px;
|
4999 |
-
}
|
5000 |
-
.bc-root .bc-uk-overlay > :last-child {
|
5001 |
-
margin-bottom: 0;
|
5002 |
-
}
|
5003 |
-
.bc-root .bc-uk-overlay-default {
|
5004 |
-
background: rgba(255, 255, 255, 0.8);
|
5005 |
-
}
|
5006 |
-
.bc-root .bc-uk-overlay-primary {
|
5007 |
-
background: rgba(34, 34, 34, 0.8);
|
5008 |
-
}
|
5009 |
-
.bc-root .bc-uk-article::before,
|
5010 |
-
.bc-root .bc-uk-article::after {
|
5011 |
-
content: "";
|
5012 |
-
display: table;
|
5013 |
-
}
|
5014 |
-
.bc-root .bc-uk-article::after {
|
5015 |
-
clear: both;
|
5016 |
-
}
|
5017 |
-
.bc-root .bc-uk-article > :last-child {
|
5018 |
-
margin-bottom: 0;
|
5019 |
-
}
|
5020 |
-
.bc-root .bc-uk-article + .bc-uk-article {
|
5021 |
-
margin-top: 70px;
|
5022 |
-
}
|
5023 |
-
.bc-root .bc-uk-article-title {
|
5024 |
-
font-size: 2.23125rem;
|
5025 |
-
line-height: 1.2;
|
5026 |
-
}
|
5027 |
-
@media (min-width: 960px) {
|
5028 |
-
.bc-root .bc-uk-article-title {
|
5029 |
-
font-size: 2.625rem;
|
5030 |
-
}
|
5031 |
-
}
|
5032 |
-
.bc-root .bc-uk-article-meta {
|
5033 |
-
font-size: 0.875rem;
|
5034 |
-
line-height: 1.4;
|
5035 |
-
color: #999;
|
5036 |
-
}
|
5037 |
-
.bc-root .bc-uk-article-meta a {
|
5038 |
-
color: #999;
|
5039 |
-
}
|
5040 |
-
.bc-root .bc-uk-article-meta a:hover {
|
5041 |
-
color: #666;
|
5042 |
-
text-decoration: none;
|
5043 |
-
}
|
5044 |
-
.bc-root .bc-uk-comment-body {
|
5045 |
-
overflow-wrap: break-word;
|
5046 |
-
word-wrap: break-word;
|
5047 |
-
}
|
5048 |
-
.bc-root .bc-uk-comment-header {
|
5049 |
-
margin-bottom: 20px;
|
5050 |
-
}
|
5051 |
-
.bc-root .bc-uk-comment-body::before,
|
5052 |
-
.bc-root .bc-uk-comment-body::after,
|
5053 |
-
.bc-root .bc-uk-comment-header::before,
|
5054 |
-
.bc-root .bc-uk-comment-header::after {
|
5055 |
-
content: "";
|
5056 |
-
display: table;
|
5057 |
-
}
|
5058 |
-
.bc-root .bc-uk-comment-body::after,
|
5059 |
-
.bc-root .bc-uk-comment-header::after {
|
5060 |
-
clear: both;
|
5061 |
-
}
|
5062 |
-
.bc-root .bc-uk-comment-body > :last-child,
|
5063 |
-
.bc-root .bc-uk-comment-header > :last-child {
|
5064 |
-
margin-bottom: 0;
|
5065 |
-
}
|
5066 |
-
.bc-root .bc-uk-comment-title {
|
5067 |
-
font-size: 1.25rem;
|
5068 |
-
line-height: 1.4;
|
5069 |
-
}
|
5070 |
-
.bc-root .bc-uk-comment-meta {
|
5071 |
-
font-size: 0.875rem;
|
5072 |
-
line-height: 1.4;
|
5073 |
-
color: #999;
|
5074 |
-
}
|
5075 |
-
.bc-root .bc-uk-comment-list {
|
5076 |
-
padding: 0;
|
5077 |
-
list-style: none;
|
5078 |
-
}
|
5079 |
-
.bc-root .bc-uk-comment-list > :nth-child(n+2) {
|
5080 |
-
margin-top: 70px;
|
5081 |
-
}
|
5082 |
-
.bc-root .bc-uk-comment-list .bc-uk-comment ~ ul {
|
5083 |
-
margin: 70px 0 0 0;
|
5084 |
-
padding-left: 30px;
|
5085 |
-
list-style: none;
|
5086 |
-
}
|
5087 |
-
@media (min-width: 960px) {
|
5088 |
-
.bc-root .bc-uk-comment-list .bc-uk-comment ~ ul {
|
5089 |
-
padding-left: 100px;
|
5090 |
-
}
|
5091 |
-
}
|
5092 |
-
.bc-root .bc-uk-comment-list .bc-uk-comment ~ ul > :nth-child(n+2) {
|
5093 |
-
margin-top: 70px;
|
5094 |
-
}
|
5095 |
-
.bc-root .bc-uk-comment-primary {
|
5096 |
-
padding: 30px;
|
5097 |
-
background-color: #f8f8f8;
|
5098 |
-
}
|
5099 |
-
.bc-root .bc-uk-search {
|
5100 |
-
/* 1 */
|
5101 |
-
display: inline-block;
|
5102 |
-
/* 2 */
|
5103 |
-
position: relative;
|
5104 |
-
/* 3 */
|
5105 |
-
max-width: 100%;
|
5106 |
-
/* 4 */
|
5107 |
-
margin: 0;
|
5108 |
-
}
|
5109 |
-
.bc-root .bc-uk-search-input::-webkit-search-cancel-button,
|
5110 |
-
.bc-root .bc-uk-search-input::-webkit-search-decoration {
|
5111 |
-
-webkit-appearance: none;
|
5112 |
-
}
|
5113 |
-
.bc-root .bc-uk-search-input::-moz-placeholder {
|
5114 |
-
opacity: 1;
|
5115 |
-
}
|
5116 |
-
.bc-root .bc-uk-search-input {
|
5117 |
-
/* 1 */
|
5118 |
-
box-sizing: border-box;
|
5119 |
-
/* 2 */
|
5120 |
-
margin: 0;
|
5121 |
-
/* 3 */
|
5122 |
-
border-radius: 0;
|
5123 |
-
/* 4 */
|
5124 |
-
font: inherit;
|
5125 |
-
/* 5 */
|
5126 |
-
overflow: visible;
|
5127 |
-
/* 6 */
|
5128 |
-
-webkit-appearance: none;
|
5129 |
-
/* 7 */
|
5130 |
-
vertical-align: middle;
|
5131 |
-
/* 8 */
|
5132 |
-
width: 100%;
|
5133 |
-
/* 9 */
|
5134 |
-
border: none;
|
5135 |
-
color: #666;
|
5136 |
-
}
|
5137 |
-
.bc-root .bc-uk-search-input:focus {
|
5138 |
-
outline: none;
|
5139 |
-
}
|
5140 |
-
.bc-root .bc-uk-search-input:-ms-input-placeholder {
|
5141 |
-
color: #999 !important;
|
5142 |
-
}
|
5143 |
-
.bc-root .bc-uk-search-input::placeholder {
|
5144 |
-
color: #999;
|
5145 |
-
}
|
5146 |
-
.bc-root .bc-uk-search-icon:focus {
|
5147 |
-
outline: none;
|
5148 |
-
}
|
5149 |
-
.bc-root .bc-uk-search .bc-uk-search-icon {
|
5150 |
-
/* 1 */
|
5151 |
-
position: absolute;
|
5152 |
-
top: 0;
|
5153 |
-
bottom: 0;
|
5154 |
-
left: 0;
|
5155 |
-
/* 2 */
|
5156 |
-
display: inline-flex;
|
5157 |
-
justify-content: center;
|
5158 |
-
align-items: center;
|
5159 |
-
/* 3 */
|
5160 |
-
color: #999;
|
5161 |
-
}
|
5162 |
-
.bc-root .bc-uk-search .bc-uk-search-icon:hover {
|
5163 |
-
color: #999;
|
5164 |
-
}
|
5165 |
-
.bc-root .bc-uk-search .bc-uk-search-icon:not(a):not(button):not(input) {
|
5166 |
-
pointer-events: none;
|
5167 |
-
}
|
5168 |
-
.bc-root .bc-uk-search .bc-uk-search-icon-flip {
|
5169 |
-
right: 0;
|
5170 |
-
left: auto;
|
5171 |
-
}
|
5172 |
-
.bc-root .bc-uk-search-default {
|
5173 |
-
width: 180px;
|
5174 |
-
}
|
5175 |
-
.bc-root .bc-uk-search-default .bc-uk-search-input {
|
5176 |
-
height: 40px;
|
5177 |
-
padding-left: 6px;
|
5178 |
-
padding-right: 6px;
|
5179 |
-
background: transparent;
|
5180 |
-
border: 1px solid #e5e5e5;
|
5181 |
-
}
|
5182 |
-
.bc-root .bc-uk-search-default .bc-uk-search-input:focus {
|
5183 |
-
background-color: transparent;
|
5184 |
-
}
|
5185 |
-
.bc-root .bc-uk-search-default .bc-uk-search-icon {
|
5186 |
-
width: 40px;
|
5187 |
-
}
|
5188 |
-
.bc-root .bc-uk-search-default .bc-uk-search-icon:not(.bc-uk-search-icon-flip) ~ .bc-uk-search-input {
|
5189 |
-
padding-left: 40px;
|
5190 |
-
}
|
5191 |
-
.bc-root .bc-uk-search-default .bc-uk-search-icon-flip ~ .bc-uk-search-input {
|
5192 |
-
padding-right: 40px;
|
5193 |
-
}
|
5194 |
-
.bc-root .bc-uk-search-navbar {
|
5195 |
-
width: 400px;
|
5196 |
-
}
|
5197 |
-
.bc-root .bc-uk-search-navbar .bc-uk-search-input {
|
5198 |
-
height: 40px;
|
5199 |
-
background: transparent;
|
5200 |
-
font-size: 1.5rem;
|
5201 |
-
}
|
5202 |
-
.bc-root .bc-uk-search-navbar .bc-uk-search-icon {
|
5203 |
-
width: 40px;
|
5204 |
-
}
|
5205 |
-
.bc-root .bc-uk-search-navbar .bc-uk-search-icon:not(.bc-uk-search-icon-flip) ~ .bc-uk-search-input {
|
5206 |
-
padding-left: 40px;
|
5207 |
-
}
|
5208 |
-
.bc-root .bc-uk-search-navbar .bc-uk-search-icon-flip ~ .bc-uk-search-input {
|
5209 |
-
padding-right: 40px;
|
5210 |
-
}
|
5211 |
-
.bc-root .bc-uk-search-large {
|
5212 |
-
width: 500px;
|
5213 |
-
}
|
5214 |
-
.bc-root .bc-uk-search-large .bc-uk-search-input {
|
5215 |
-
height: 80px;
|
5216 |
-
background: transparent;
|
5217 |
-
font-size: 2.625rem;
|
5218 |
-
}
|
5219 |
-
.bc-root .bc-uk-search-large .bc-uk-search-icon {
|
5220 |
-
width: 80px;
|
5221 |
-
}
|
5222 |
-
.bc-root .bc-uk-search-large .bc-uk-search-icon:not(.bc-uk-search-icon-flip) ~ .bc-uk-search-input {
|
5223 |
-
padding-left: 80px;
|
5224 |
-
}
|
5225 |
-
.bc-root .bc-uk-search-large .bc-uk-search-icon-flip ~ .bc-uk-search-input {
|
5226 |
-
padding-right: 80px;
|
5227 |
-
}
|
5228 |
-
.bc-root .bc-uk-search-toggle {
|
5229 |
-
color: #999;
|
5230 |
-
}
|
5231 |
-
.bc-root .bc-uk-search-toggle:hover,
|
5232 |
-
.bc-root .bc-uk-search-toggle:focus {
|
5233 |
-
color: #666;
|
5234 |
-
}
|
5235 |
-
.bc-root .bc-uk-nav,
|
5236 |
-
.bc-root .bc-uk-nav ul {
|
5237 |
-
margin: 0;
|
5238 |
-
padding: 0;
|
5239 |
-
list-style: none;
|
5240 |
-
}
|
5241 |
-
.bc-root .bc-uk-nav li > a {
|
5242 |
-
display: block;
|
5243 |
-
text-decoration: none;
|
5244 |
-
}
|
5245 |
-
.bc-root .bc-uk-nav li > a:focus {
|
5246 |
-
outline: none;
|
5247 |
-
}
|
5248 |
-
.bc-root .bc-uk-nav > li > a {
|
5249 |
-
padding: 5px 0;
|
5250 |
-
}
|
5251 |
-
.bc-root ul.bc-uk-nav-sub {
|
5252 |
-
padding: 5px 0 5px 15px;
|
5253 |
-
}
|
5254 |
-
.bc-root .bc-uk-nav-sub ul {
|
5255 |
-
padding-left: 15px;
|
5256 |
-
}
|
5257 |
-
.bc-root .bc-uk-nav-sub a {
|
5258 |
-
padding: 2px 0;
|
5259 |
-
}
|
5260 |
-
.bc-root .bc-uk-nav-parent-icon > .bc-uk-parent > a::after {
|
5261 |
-
content: "";
|
5262 |
-
width: 1.5em;
|
5263 |
-
height: 1.5em;
|
5264 |
-
float: right;
|
5265 |
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23666%22%20stroke-width%3D%221.1%22%20points%3D%2210%201%204%207%2010%2013%22%20%2F%3E%0A%3C%2Fsvg%3E");
|
5266 |
-
background-repeat: no-repeat;
|
5267 |
-
background-position: 50% 50%;
|
5268 |
-
}
|
5269 |
-
.bc-root .bc-uk-nav-parent-icon > .bc-uk-parent.bc-uk-open > a::after {
|
5270 |
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23666%22%20stroke-width%3D%221.1%22%20points%3D%221%204%207%2010%2013%204%22%20%2F%3E%0A%3C%2Fsvg%3E");
|
5271 |
-
}
|
5272 |
-
.bc-root .bc-uk-nav-header {
|
5273 |
-
padding: 5px 0;
|
5274 |
-
text-transform: uppercase;
|
5275 |
-
font-size: 0.875rem;
|
5276 |
-
}
|
5277 |
-
.bc-root .bc-uk-nav-header:not(:first-child) {
|
5278 |
-
margin-top: 20px;
|
5279 |
-
}
|
5280 |
-
.bc-root .bc-uk-nav-divider {
|
5281 |
-
margin: 5px 0;
|
5282 |
-
}
|
5283 |
-
.bc-root .bc-uk-nav-default {
|
5284 |
-
font-size: 0.875rem;
|
5285 |
-
}
|
5286 |
-
.bc-root .bc-uk-nav-default > li > a {
|
5287 |
-
color: #999;
|
5288 |
-
}
|
5289 |
-
.bc-root .bc-uk-nav-default > li > a:hover,
|
5290 |
-
.bc-root .bc-uk-nav-default > li > a:focus {
|
5291 |
-
color: #666;
|
5292 |
-
}
|
5293 |
-
.bc-root .bc-uk-nav-default > li.bc-uk-active > a {
|
5294 |
-
color: #333;
|
5295 |
-
}
|
5296 |
-
.bc-root .bc-uk-nav-default .bc-uk-nav-header {
|
5297 |
-
color: #333;
|
5298 |
-
}
|
5299 |
-
.bc-root .bc-uk-nav-default .bc-uk-nav-divider {
|
5300 |
-
border-top: 1px solid #e5e5e5;
|
5301 |
-
}
|
5302 |
-
.bc-root .bc-uk-nav-default .bc-uk-nav-sub a {
|
5303 |
-
color: #999;
|
5304 |
-
}
|
5305 |
-
.bc-root .bc-uk-nav-default .bc-uk-nav-sub a:hover,
|
5306 |
-
.bc-root .bc-uk-nav-default .bc-uk-nav-sub a:focus {
|
5307 |
-
color: #666;
|
5308 |
-
}
|
5309 |
-
.bc-root .bc-uk-nav-default .bc-uk-nav-sub li.bc-uk-active > a {
|
5310 |
-
color: #333;
|
5311 |
-
}
|
5312 |
-
.bc-root .bc-uk-nav-primary > li > a {
|
5313 |
-
font-size: 1.5rem;
|
5314 |
-
line-height: 1.5;
|
5315 |
-
color: #999;
|
5316 |
-
}
|
5317 |
-
.bc-root .bc-uk-nav-primary > li > a:hover,
|
5318 |
-
.bc-root .bc-uk-nav-primary > li > a:focus {
|
5319 |
-
color: #666;
|
5320 |
-
}
|
5321 |
-
.bc-root .bc-uk-nav-primary > li.bc-uk-active > a {
|
5322 |
-
color: #333;
|
5323 |
-
}
|
5324 |
-
.bc-root .bc-uk-nav-primary .bc-uk-nav-header {
|
5325 |
-
color: #333;
|
5326 |
-
}
|
5327 |
-
.bc-root .bc-uk-nav-primary .bc-uk-nav-divider {
|
5328 |
-
border-top: 1px solid #e5e5e5;
|
5329 |
-
}
|
5330 |
-
.bc-root .bc-uk-nav-primary .bc-uk-nav-sub a {
|
5331 |
-
color: #999;
|
5332 |
-
}
|
5333 |
-
.bc-root .bc-uk-nav-primary .bc-uk-nav-sub a:hover,
|
5334 |
-
.bc-root .bc-uk-nav-primary .bc-uk-nav-sub a:focus {
|
5335 |
-
color: #666;
|
5336 |
-
}
|
5337 |
-
.bc-root .bc-uk-nav-primary .bc-uk-nav-sub li.bc-uk-active > a {
|
5338 |
-
color: #333;
|
5339 |
-
}
|
5340 |
-
.bc-root .bc-uk-nav-center {
|
5341 |
-
text-align: center;
|
5342 |
-
}
|
5343 |
-
.bc-root .bc-uk-nav-center .bc-uk-nav-sub,
|
5344 |
-
.bc-root .bc-uk-nav-center .bc-uk-nav-sub ul {
|
5345 |
-
padding-left: 0;
|
5346 |
-
}
|
5347 |
-
.bc-root .bc-uk-nav-center.bc-uk-nav-parent-icon > .bc-uk-parent > a::after {
|
5348 |
-
position: absolute;
|
5349 |
-
}
|
5350 |
-
.bc-root .bc-uk-navbar {
|
5351 |
-
display: flex;
|
5352 |
-
/* 1 */
|
5353 |
-
position: relative;
|
5354 |
-
}
|
5355 |
-
.bc-root .bc-uk-navbar-container:not(.bc-uk-navbar-transparent) {
|
5356 |
-
background: #f8f8f8;
|
5357 |
-
}
|
5358 |
-
.bc-root .bc-uk-navbar-container > ::before,
|
5359 |
-
.bc-root .bc-uk-navbar-container > ::after {
|
5360 |
-
display: none !important;
|
5361 |
-
}
|
5362 |
-
.bc-root .bc-uk-navbar-left,
|
5363 |
-
.bc-root .bc-uk-navbar-right,
|
5364 |
-
.bc-root .bc-uk-navbar-center,
|
5365 |
-
.bc-root .bc-uk-navbar-center-left > *,
|
5366 |
-
.bc-root .bc-uk-navbar-center-right > * {
|
5367 |
-
display: flex;
|
5368 |
-
/* 1 */
|
5369 |
-
align-items: center;
|
5370 |
-
}
|
5371 |
-
.bc-root .bc-uk-navbar-right {
|
5372 |
-
margin-left: auto;
|
5373 |
-
}
|
5374 |
-
.bc-root .bc-uk-navbar-center:only-child {
|
5375 |
-
margin-left: auto;
|
5376 |
-
margin-right: auto;
|
5377 |
-
/* 1 */
|
5378 |
-
position: relative;
|
5379 |
-
}
|
5380 |
-
.bc-root .bc-uk-navbar-center:not(:only-child) {
|
5381 |
-
position: absolute;
|
5382 |
-
top: 50%;
|
5383 |
-
left: 50%;
|
5384 |
-
transform: translate(-50%, -50%);
|
5385 |
-
/* 2 */
|
5386 |
-
z-index: 990;
|
5387 |
-
}
|
5388 |
-
.bc-root .bc-uk-navbar-center:not(:only-child) .bc-uk-navbar-nav > li > a,
|
5389 |
-
.bc-root .bc-uk-navbar-center:not(:only-child) .bc-uk-navbar-item,
|
5390 |
-
.bc-root .bc-uk-navbar-center:not(:only-child) .bc-uk-navbar-toggle {
|
5391 |
-
white-space: nowrap;
|
5392 |
-
}
|
5393 |
-
.bc-root .bc-uk-navbar-center-left,
|
5394 |
-
.bc-root .bc-uk-navbar-center-right {
|
5395 |
-
position: absolute;
|
5396 |
-
top: 0;
|
5397 |
-
}
|
5398 |
-
.bc-root .bc-uk-navbar-center-left {
|
5399 |
-
right: 100%;
|
5400 |
-
}
|
5401 |
-
.bc-root .bc-uk-navbar-center-right {
|
5402 |
-
left: 100%;
|
5403 |
-
}
|
5404 |
-
.bc-root [class*=uk-navbar-center-] .bc-uk-navbar-nav > li > a,
|
5405 |
-
.bc-root [class*=uk-navbar-center-] .bc-uk-navbar-item,
|
5406 |
-
.bc-root [class*=uk-navbar-center-] .bc-uk-navbar-toggle {
|
5407 |
-
white-space: nowrap;
|
5408 |
-
}
|
5409 |
-
.bc-root .bc-uk-navbar-nav {
|
5410 |
-
display: flex;
|
5411 |
-
/* 1 */
|
5412 |
-
margin: 0;
|
5413 |
-
padding: 0;
|
5414 |
-
list-style: none;
|
5415 |
-
}
|
5416 |
-
.bc-root .bc-uk-navbar-left,
|
5417 |
-
.bc-root .bc-uk-navbar-right,
|
5418 |
-
.bc-root .bc-uk-navbar-center:only-child {
|
5419 |
-
flex-wrap: wrap;
|
5420 |
-
}
|
5421 |
-
.bc-root .bc-uk-navbar-nav > li > a,
|
5422 |
-
.bc-root .bc-uk-navbar-item,
|
5423 |
-
.bc-root .bc-uk-navbar-toggle {
|
5424 |
-
/* 1 */
|
5425 |
-
display: flex;
|
5426 |
-
justify-content: center;
|
5427 |
-
align-items: center;
|
5428 |
-
/* 2 */
|
5429 |
-
box-sizing: border-box;
|
5430 |
-
min-height: 80px;
|
5431 |
-
padding: 0 15px;
|
5432 |
-
/* 3 */
|
5433 |
-
font-size: 0.875rem;
|
5434 |
-
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";
|
5435 |
-
/* 4 */
|
5436 |
-
text-decoration: none;
|
5437 |
-
}
|
5438 |
-
.bc-root .bc-uk-navbar-nav > li > a {
|
5439 |
-
color: #999;
|
5440 |
-
text-transform: uppercase;
|
5441 |
-
transition: 0.1s ease-in-out;
|
5442 |
-
transition-property: color, background-color;
|
5443 |
-
}
|
5444 |
-
.bc-root .bc-uk-navbar-nav > li:hover > a,
|
5445 |
-
.bc-root .bc-uk-navbar-nav > li > a:focus,
|
5446 |
-
.bc-root .bc-uk-navbar-nav > li > a.bc-uk-open {
|
5447 |
-
color: #666;
|
5448 |
-
outline: none;
|
5449 |
-
}
|
5450 |
-
.bc-root .bc-uk-navbar-nav > li > a:active {
|
5451 |
-
color: #333;
|
5452 |
-
}
|
5453 |
-
.bc-root .bc-uk-navbar-nav > li.bc-uk-active > a {
|
5454 |
-
color: #333;
|
5455 |
-
}
|
5456 |
-
.bc-root .bc-uk-navbar-item {
|
5457 |
-
color: #666;
|
5458 |
-
}
|
5459 |
-
.bc-root .bc-uk-navbar-toggle {
|
5460 |
-
color: #999;
|
5461 |
-
}
|
5462 |
-
.bc-root .bc-uk-navbar-toggle:hover,
|
5463 |
-
.bc-root .bc-uk-navbar-toggle:focus,
|
5464 |
-
.bc-root .bc-uk-navbar-toggle.bc-uk-open {
|
5465 |
-
color: #666;
|
5466 |
-
outline: none;
|
5467 |
-
text-decoration: none;
|
5468 |
-
}
|
5469 |
-
.bc-root .bc-uk-navbar-subtitle {
|
5470 |
-
font-size: 0.875rem;
|
5471 |
-
}
|
5472 |
-
.bc-root .bc-uk-navbar-dropdown {
|
5473 |
-
/* 1 */
|
5474 |
-
display: none;
|
5475 |
-
/* 2 */
|
5476 |
-
position: absolute;
|
5477 |
-
z-index: 1020;
|
5478 |
-
/* 3 */
|
5479 |
-
box-sizing: border-box;
|
5480 |
-
width: 200px;
|
5481 |
-
/* 4 */
|
5482 |
-
padding: 25px;
|
5483 |
-
background: #fff;
|
5484 |
-
color: #666;
|
5485 |
-
box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
|
5486 |
-
}
|
5487 |
-
.bc-root .bc-uk-navbar-dropdown.bc-uk-open {
|
5488 |
-
display: block;
|
5489 |
-
}
|
5490 |
-
.bc-root [class*=uk-navbar-dropdown-top] {
|
5491 |
-
margin-top: -15px;
|
5492 |
-
}
|
5493 |
-
.bc-root [class*=uk-navbar-dropdown-bottom] {
|
5494 |
-
margin-top: 15px;
|
5495 |
-
}
|
5496 |
-
.bc-root [class*=uk-navbar-dropdown-left] {
|
5497 |
-
margin-left: -15px;
|
5498 |
-
}
|
5499 |
-
.bc-root [class*=uk-navbar-dropdown-right] {
|
5500 |
-
margin-left: 15px;
|
5501 |
-
}
|
5502 |
-
.bc-root .bc-uk-navbar-dropdown-grid {
|
5503 |
-
margin-left: -50px;
|
5504 |
-
}
|
5505 |
-
.bc-root .bc-uk-navbar-dropdown-grid > * {
|
5506 |
-
padding-left: 50px;
|
5507 |
-
}
|
5508 |
-
.bc-root .bc-uk-navbar-dropdown-grid > .bc-uk-grid-margin {
|
5509 |
-
margin-top: 50px;
|
5510 |
-
}
|
5511 |
-
.bc-root .bc-uk-navbar-dropdown-stack .bc-uk-navbar-dropdown-grid > * {
|
5512 |
-
width: 100% !important;
|
5513 |
-
}
|
5514 |
-
.bc-root .bc-uk-navbar-dropdown-width-2:not(.bc-uk-navbar-dropdown-stack) {
|
5515 |
-
width: 400px;
|
5516 |
-
}
|
5517 |
-
.bc-root .bc-uk-navbar-dropdown-width-3:not(.bc-uk-navbar-dropdown-stack) {
|
5518 |
-
width: 600px;
|
5519 |
-
}
|
5520 |
-
.bc-root .bc-uk-navbar-dropdown-width-4:not(.bc-uk-navbar-dropdown-stack) {
|
5521 |
-
width: 800px;
|
5522 |
-
}
|
5523 |
-
.bc-root .bc-uk-navbar-dropdown-width-5:not(.bc-uk-navbar-dropdown-stack) {
|
5524 |
-
width: 1000px;
|
5525 |
-
}
|
5526 |
-
.bc-root .bc-uk-navbar-dropdown-dropbar {
|
5527 |
-
margin-top: 0;
|
5528 |
-
margin-bottom: 0;
|
5529 |
-
box-shadow: none;
|
5530 |
-
}
|
5531 |
-
.bc-root .bc-uk-navbar-dropdown-nav {
|
5532 |
-
font-size: 0.875rem;
|
5533 |
-
}
|
5534 |
-
.bc-root .bc-uk-navbar-dropdown-nav > li > a {
|
5535 |
-
color: #999;
|
5536 |
-
}
|
5537 |
-
.bc-root .bc-uk-navbar-dropdown-nav > li > a:hover,
|
5538 |
-
.bc-root .bc-uk-navbar-dropdown-nav > li > a:focus {
|
5539 |
-
color: #666;
|
5540 |
-
}
|
5541 |
-
.bc-root .bc-uk-navbar-dropdown-nav > li.bc-uk-active > a {
|
5542 |
-
color: #333;
|
5543 |
-
}
|
5544 |
-
.bc-root .bc-uk-navbar-dropdown-nav .bc-uk-nav-header {
|
5545 |
-
color: #333;
|
5546 |
-
}
|
5547 |
-
.bc-root .bc-uk-navbar-dropdown-nav .bc-uk-nav-divider {
|
5548 |
-
border-top: 1px solid #e5e5e5;
|
5549 |
-
}
|
5550 |
-
.bc-root .bc-uk-navbar-dropdown-nav .bc-uk-nav-sub a {
|
5551 |
-
color: #999;
|
5552 |
-
}
|
5553 |
-
.bc-root .bc-uk-navbar-dropdown-nav .bc-uk-nav-sub a:hover,
|
5554 |
-
.bc-root .bc-uk-navbar-dropdown-nav .bc-uk-nav-sub a:focus {
|
5555 |
-
color: #666;
|
5556 |
-
}
|
5557 |
-
.bc-root .bc-uk-navbar-dropdown-nav .bc-uk-nav-sub li.bc-uk-active > a {
|
5558 |
-
color: #333;
|
5559 |
-
}
|
5560 |
-
.bc-root .bc-uk-navbar-dropbar {
|
5561 |
-
background: #fff;
|
5562 |
-
}
|
5563 |
-
.bc-root .bc-uk-navbar-dropbar-slide {
|
5564 |
-
position: absolute;
|
5565 |
-
z-index: 980;
|
5566 |
-
left: 0;
|
5567 |
-
right: 0;
|
5568 |
-
box-shadow: 0 5px 7px rgba(0, 0, 0, 0.05);
|
5569 |
-
}
|
5570 |
-
.bc-root .bc-uk-navbar-container > .bc-uk-container .bc-uk-navbar-left {
|
5571 |
-
margin-left: -15px;
|
5572 |
-
margin-right: -15px;
|
5573 |
-
}
|
5574 |
-
.bc-root .bc-uk-navbar-container > .bc-uk-container .bc-uk-navbar-right {
|
5575 |
-
margin-right: -15px;
|
5576 |
-
}
|
5577 |
-
.bc-root .bc-uk-navbar-dropdown-grid > * {
|
5578 |
-
position: relative;
|
5579 |
-
}
|
5580 |
-
.bc-root .bc-uk-navbar-dropdown-grid > :not(.bc-uk-first-column)::before {
|
5581 |
-
content: "";
|
5582 |
-
position: absolute;
|
5583 |
-
top: 0;
|
5584 |
-
bottom: 0;
|
5585 |
-
left: 25px;
|
5586 |
-
border-left: 1px solid #e5e5e5;
|
5587 |
-
}
|
5588 |
-
.bc-root .bc-uk-navbar-dropdown-grid.bc-uk-grid-stack > .bc-uk-grid-margin::before {
|
5589 |
-
content: "";
|
5590 |
-
position: absolute;
|
5591 |
-
top: -25px;
|
5592 |
-
left: 50px;
|
5593 |
-
right: 0;
|
5594 |
-
border-top: 1px solid #e5e5e5;
|
5595 |
-
}
|
5596 |
-
.bc-root .bc-uk-subnav {
|
5597 |
-
display: flex;
|
5598 |
-
/* 1 */
|
5599 |
-
flex-wrap: wrap;
|
5600 |
-
/* 2 */
|
5601 |
-
margin-left: -20px;
|
5602 |
-
/* 3 */
|
5603 |
-
padding: 0;
|
5604 |
-
list-style: none;
|
5605 |
-
}
|
5606 |
-
.bc-root .bc-uk-subnav > * {
|
5607 |
-
/* 1 */
|
5608 |
-
flex: none;
|
5609 |
-
/* 2 */
|
5610 |
-
padding-left: 20px;
|
5611 |
-
/* 3 */
|
5612 |
-
position: relative;
|
5613 |
-
}
|
5614 |
-
.bc-root .bc-uk-subnav > * > :first-child {
|
5615 |
-
/* 1 */
|
5616 |
-
display: block;
|
5617 |
-
/* 2 */
|
5618 |
-
color: #999;
|
5619 |
-
font-size: 0.875rem;
|
5620 |
-
text-transform: uppercase;
|
5621 |
-
transition: 0.1s ease-in-out;
|
5622 |
-
transition-property: color, background-color;
|
5623 |
-
}
|
5624 |
-
.bc-root .bc-uk-subnav > * > a:hover,
|
5625 |
-
.bc-root .bc-uk-subnav > * > a:focus {
|
5626 |
-
color: #666;
|
5627 |
-
text-decoration: none;
|
5628 |
-
outline: none;
|
5629 |
-
}
|
5630 |
-
.bc-root .bc-uk-subnav > .bc-uk-active > a {
|
5631 |
-
color: #333;
|
5632 |
-
}
|
5633 |
-
.bc-root .bc-uk-subnav-divider > * {
|
5634 |
-
/* 1 */
|
5635 |
-
display: flex;
|
5636 |
-
align-items: center;
|
5637 |
-
}
|
5638 |
-
.bc-root .bc-uk-subnav-divider > :nth-child(n+2):not(.bc-uk-first-column)::before {
|
5639 |
-
content: "";
|
5640 |
-
height: 1.5em;
|
5641 |
-
margin-left: 0px;
|
5642 |
-
margin-right: 20px;
|
5643 |
-
border-left: 1px solid #e5e5e5;
|
5644 |
-
}
|
5645 |
-
.bc-root .bc-uk-subnav-pill > * > :first-child {
|
5646 |
-
padding: 5px 10px;
|
5647 |
-
background: transparent;
|
5648 |
-
color: #999;
|
5649 |
-
}
|
5650 |
-
.bc-root .bc-uk-subnav-pill > * > a:hover,
|
5651 |
-
.bc-root .bc-uk-subnav-pill > * > a:focus {
|
5652 |
-
background-color: #f8f8f8;
|
5653 |
-
color: #666;
|
5654 |
-
}
|
5655 |
-
.bc-root .bc-uk-subnav-pill > * > a:active {
|
5656 |
-
background-color: #f8f8f8;
|
5657 |
-
color: #666;
|
5658 |
-
}
|
5659 |
-
.bc-root .bc-uk-subnav-pill > .bc-uk-active > a {
|
5660 |
-
background-color: #1e87f0;
|
5661 |
-
color: #fff;
|
5662 |
-
}
|
5663 |
-
.bc-root .bc-uk-subnav > .bc-uk-disabled > a {
|
5664 |
-
color: #999;
|
5665 |
-
}
|
5666 |
-
.bc-root .bc-uk-breadcrumb {
|
5667 |
-
display: flex;
|
5668 |
-
/* 1 */
|
5669 |
-
flex-wrap: wrap;
|
5670 |
-
/* 2 */
|
5671 |
-
padding: 0;
|
5672 |
-
list-style: none;
|
5673 |
-
}
|
5674 |
-
.bc-root .bc-uk-breadcrumb > * {
|
5675 |
-
flex: none;
|
5676 |
-
}
|
5677 |
-
.bc-root .bc-uk-breadcrumb > * > * {
|
5678 |
-
display: inline-block;
|
5679 |
-
font-size: 0.875rem;
|
5680 |
-
color: #999;
|
5681 |
-
}
|
5682 |
-
.bc-root .bc-uk-breadcrumb > * > :hover,
|
5683 |
-
.bc-root .bc-uk-breadcrumb > * > :focus {
|
5684 |
-
color: #666;
|
5685 |
-
text-decoration: none;
|
5686 |
-
}
|
5687 |
-
.bc-root .bc-uk-breadcrumb > :last-child > * {
|
5688 |
-
color: #666;
|
5689 |
-
}
|
5690 |
-
.bc-root .bc-uk-breadcrumb > :nth-child(n+2):not(.bc-uk-first-column)::before {
|
5691 |
-
content: "/";
|
5692 |
-
display: inline-block;
|
5693 |
-
margin: 0 20px;
|
5694 |
-
color: #999;
|
5695 |
-
}
|
5696 |
-
.bc-root .bc-uk-pagination {
|
5697 |
-
display: flex;
|
5698 |
-
/* 1 */
|
5699 |
-
flex-wrap: wrap;
|
5700 |
-
/* 2 */
|
5701 |
-
margin-left: -20px;
|
5702 |
-
/* 3 */
|
5703 |
-
padding: 0;
|
5704 |
-
list-style: none;
|
5705 |
-
}
|
5706 |
-
.bc-root .bc-uk-pagination > * {
|
5707 |
-
/* 1 */
|
5708 |
-
flex: none;
|
5709 |
-
/* 2 */
|
5710 |
-
padding-left: 20px;
|
5711 |
-
/* 3 */
|
5712 |
-
position: relative;
|
5713 |
-
}
|
5714 |
-
.bc-root .bc-uk-pagination > * > * {
|
5715 |
-
/* 1 */
|
5716 |
-
display: block;
|
5717 |
-
/* 2 */
|
5718 |
-
color: #999;
|
5719 |
-
transition: color 0.1s ease-in-out;
|
5720 |
-
}
|
5721 |
-
.bc-root .bc-uk-pagination > * > :hover,
|
5722 |
-
.bc-root .bc-uk-pagination > * > :focus {
|
5723 |
-
color: #666;
|
5724 |
-
text-decoration: none;
|
5725 |
-
}
|
5726 |
-
.bc-root .bc-uk-pagination > .bc-uk-active > * {
|
5727 |
-
color: #666;
|
5728 |
-
}
|
5729 |
-
.bc-root .bc-uk-pagination > .bc-uk-disabled > * {
|
5730 |
-
color: #999;
|
5731 |
-
}
|
5732 |
-
.bc-root .bc-uk-tab {
|
5733 |
-
display: flex;
|
5734 |
-
/* 1 */
|
5735 |
-
flex-wrap: wrap;
|
5736 |
-
/* 2 */
|
5737 |
-
margin-left: -20px;
|
5738 |
-
/* 3 */
|
5739 |
-
padding: 0;
|
5740 |
-
list-style: none;
|
5741 |
-
position: relative;
|
5742 |
-
}
|
5743 |
-
.bc-root .bc-uk-tab li {
|
5744 |
-
margin-bottom: 0;
|
5745 |
-
}
|
5746 |
-
.bc-root .bc-uk-tab::before {
|
5747 |
-
content: "";
|
5748 |
-
position: absolute;
|
5749 |
-
bottom: 0;
|
5750 |
-
left: 20px;
|
5751 |
-
right: 0;
|
5752 |
-
border-bottom: 1px solid #e5e5e5;
|
5753 |
-
}
|
5754 |
-
.bc-root .bc-uk-tab > * {
|
5755 |
-
/* 1 */
|
5756 |
-
flex: none;
|
5757 |
-
/* 2 */
|
5758 |
-
padding-left: 20px;
|
5759 |
-
/* 3 */
|
5760 |
-
position: relative;
|
5761 |
-
}
|
5762 |
-
.bc-root .bc-uk-tab > * > a {
|
5763 |
-
/* 1 */
|
5764 |
-
display: block;
|
5765 |
-
text-align: center;
|
5766 |
-
/* 2 */
|
5767 |
-
padding: 5px 10px;
|
5768 |
-
color: #999;
|
5769 |
-
border-bottom: 1px solid transparent;
|
5770 |
-
font-size: 0.875rem;
|
5771 |
-
text-transform: uppercase;
|
5772 |
-
transition: color 0.1s ease-in-out;
|
5773 |
-
}
|
5774 |
-
.bc-root .bc-uk-tab > * > a:hover,
|
5775 |
-
.bc-root .bc-uk-tab > * > a:focus {
|
5776 |
-
color: #666;
|
5777 |
-
text-decoration: none;
|
5778 |
-
}
|
5779 |
-
.bc-root .bc-uk-tab > .bc-uk-active > a {
|
5780 |
-
color: #333;
|
5781 |
-
border-color: #1e87f0;
|
5782 |
-
}
|
5783 |
-
.bc-root .bc-uk-tab > .bc-uk-disabled > a {
|
5784 |
-
color: #999;
|
5785 |
-
}
|
5786 |
-
.bc-root .bc-uk-tab-bottom::before {
|
5787 |
-
top: 0;
|
5788 |
-
bottom: auto;
|
5789 |
-
}
|
5790 |
-
.bc-root .bc-uk-tab-bottom > * > a {
|
5791 |
-
border-top: 1px solid transparent;
|
5792 |
-
border-bottom: none;
|
5793 |
-
}
|
5794 |
-
.bc-root .bc-uk-tab-left,
|
5795 |
-
.bc-root .bc-uk-tab-right {
|
5796 |
-
flex-direction: column;
|
5797 |
-
/* 1 */
|
5798 |
-
margin-left: 0;
|
5799 |
-
}
|
5800 |
-
.bc-root .bc-uk-tab-left > *,
|
5801 |
-
.bc-root .bc-uk-tab-right > * {
|
5802 |
-
padding-left: 0;
|
5803 |
-
}
|
5804 |
-
.bc-root .bc-uk-tab-left::before {
|
5805 |
-
top: 0;
|
5806 |
-
bottom: 0;
|
5807 |
-
left: auto;
|
5808 |
-
right: 0;
|
5809 |
-
border-left: 1px solid #e5e5e5;
|
5810 |
-
border-bottom: none;
|
5811 |
-
}
|
5812 |
-
.bc-root .bc-uk-tab-right::before {
|
5813 |
-
top: 0;
|
5814 |
-
bottom: 0;
|
5815 |
-
left: 0;
|
5816 |
-
right: auto;
|
5817 |
-
border-left: 1px solid #e5e5e5;
|
5818 |
-
border-bottom: none;
|
5819 |
-
}
|
5820 |
-
.bc-root .bc-uk-tab-left > * > a {
|
5821 |
-
text-align: left;
|
5822 |
-
border-right: 1px solid transparent;
|
5823 |
-
border-bottom: none;
|
5824 |
-
}
|
5825 |
-
.bc-root .bc-uk-tab-right > * > a {
|
5826 |
-
text-align: left;
|
5827 |
-
border-left: 1px solid transparent;
|
5828 |
-
border-bottom: none;
|
5829 |
-
}
|
5830 |
-
.bc-root .bc-uk-tab .bc-uk-dropdown {
|
5831 |
-
margin-left: 30px;
|
5832 |
-
}
|
5833 |
-
.bc-root .bc-uk-slidenav {
|
5834 |
-
padding: 5px 10px;
|
5835 |
-
color: rgba(102, 102, 102, 0.5);
|
5836 |
-
transition: color 0.1s ease-in-out;
|
5837 |
-
}
|
5838 |
-
.bc-root .bc-uk-slidenav:hover,
|
5839 |
-
.bc-root .bc-uk-slidenav:focus {
|
5840 |
-
color: rgba(102, 102, 102, 0.9);
|
5841 |
-
outline: none;
|
5842 |
-
}
|
5843 |
-
.bc-root .bc-uk-slidenav:active {
|
5844 |
-
color: rgba(102, 102, 102, 0.5);
|
5845 |
-
}
|
5846 |
-
.bc-root .bc-uk-slidenav-large {
|
5847 |
-
padding: 10px 10px;
|
5848 |
-
}
|
5849 |
-
.bc-root .bc-uk-slidenav-container {
|
5850 |
-
display: flex;
|
5851 |
-
}
|
5852 |
-
.bc-root .bc-uk-dotnav {
|
5853 |
-
display: flex;
|
5854 |
-
/* 1 */
|
5855 |
-
flex-wrap: wrap;
|
5856 |
-
/* 2 */
|
5857 |
-
margin: 0;
|
5858 |
-
padding: 0;
|
5859 |
-
list-style: none;
|
5860 |
-
/* 3 */
|
5861 |
-
margin-left: -12px;
|
5862 |
-
}
|
5863 |
-
.bc-root .bc-uk-dotnav > * {
|
5864 |
-
/* 1 */
|
5865 |
-
flex: none;
|
5866 |
-
/* 2 */
|
5867 |
-
padding-left: 12px;
|
5868 |
-
}
|
5869 |
-
.bc-root .bc-uk-dotnav > * > * {
|
5870 |
-
display: block;
|
5871 |
-
box-sizing: border-box;
|
5872 |
-
width: 10px;
|
5873 |
-
height: 10px;
|
5874 |
-
border-radius: 50%;
|
5875 |
-
background: transparent;
|
5876 |
-
/* 1 */
|
5877 |
-
text-indent: 100%;
|
5878 |
-
overflow: hidden;
|
5879 |
-
white-space: nowrap;
|
5880 |
-
border: 1px solid rgba(102, 102, 102, 0.4);
|
5881 |
-
transition: 0.2s ease-in-out;
|
5882 |
-
transition-property: background-color, border-color;
|
5883 |
-
}
|
5884 |
-
.bc-root .bc-uk-dotnav > * > :hover,
|
5885 |
-
.bc-root .bc-uk-dotnav > * > :focus {
|
5886 |
-
background-color: rgba(102, 102, 102, 0.6);
|
5887 |
-
outline: none;
|
5888 |
-
border-color: transparent;
|
5889 |
-
}
|
5890 |
-
.bc-root .bc-uk-dotnav > * > :active {
|
5891 |
-
background-color: rgba(102, 102, 102, 0.2);
|
5892 |
-
border-color: transparent;
|
5893 |
-
}
|
5894 |
-
.bc-root .bc-uk-dotnav > .bc-uk-active > * {
|
5895 |
-
background-color: rgba(102, 102, 102, 0.6);
|
5896 |
-
border-color: transparent;
|
5897 |
-
}
|
5898 |
-
.bc-root .bc-uk-dotnav-vertical {
|
5899 |
-
/* 1 */
|
5900 |
-
flex-direction: column;
|
5901 |
-
/* 2 */
|
5902 |
-
margin-left: 0;
|
5903 |
-
margin-top: -12px;
|
5904 |
-
}
|
5905 |
-
.bc-root .bc-uk-dotnav-vertical > * {
|
5906 |
-
padding-left: 0;
|
5907 |
-
padding-top: 12px;
|
5908 |
-
}
|
5909 |
-
.bc-root .bc-uk-thumbnav {
|
5910 |
-
display: flex;
|
5911 |
-
/* 1 */
|
5912 |
-
flex-wrap: wrap;
|
5913 |
-
/* 2 */
|
5914 |
-
margin: 0;
|
5915 |
-
padding: 0;
|
5916 |
-
list-style: none;
|
5917 |
-
/* 3 */
|
5918 |
-
margin-left: -15px;
|
5919 |
-
}
|
5920 |
-
.bc-root .bc-uk-thumbnav > * {
|
5921 |
-
/* 1 */
|
5922 |
-
padding-left: 15px;
|
5923 |
-
}
|
5924 |
-
.bc-root .bc-uk-thumbnav > * > * {
|
5925 |
-
display: inline-block;
|
5926 |
-
position: relative;
|
5927 |
-
}
|
5928 |
-
.bc-root .bc-uk-thumbnav > * > *::after {
|
5929 |
-
content: "";
|
5930 |
-
position: absolute;
|
5931 |
-
top: 0;
|
5932 |
-
bottom: 0;
|
5933 |
-
left: 0;
|
5934 |
-
right: 0;
|
5935 |
-
background: rgba(255, 255, 255, 0.4);
|
5936 |
-
transition: background-color 0.1s ease-in-out;
|
5937 |
-
}
|
5938 |
-
.bc-root .bc-uk-thumbnav > * > :hover,
|
5939 |
-
.bc-root .bc-uk-thumbnav > * > :focus {
|
5940 |
-
outline: none;
|
5941 |
-
}
|
5942 |
-
.bc-root .bc-uk-thumbnav > * > :hover::after,
|
5943 |
-
.bc-root .bc-uk-thumbnav > * > :focus::after {
|
5944 |
-
background-color: transparent;
|
5945 |
-
}
|
5946 |
-
.bc-root .bc-uk-thumbnav > .bc-uk-active > *::after {
|
5947 |
-
background-color: transparent;
|
5948 |
-
}
|
5949 |
-
.bc-root .bc-uk-thumbnav-vertical {
|
5950 |
-
/* 1 */
|
5951 |
-
flex-direction: column;
|
5952 |
-
/* 2 */
|
5953 |
-
margin-left: 0;
|
5954 |
-
margin-top: -15px;
|
5955 |
-
}
|
5956 |
-
.bc-root .bc-uk-thumbnav-vertical > * {
|
5957 |
-
padding-left: 0;
|
5958 |
-
padding-top: 15px;
|
5959 |
-
}
|
5960 |
-
.bc-root .bc-uk-accordion {
|
5961 |
-
padding: 0;
|
5962 |
-
list-style: none;
|
5963 |
-
}
|
5964 |
-
.bc-root .bc-uk-accordion > :nth-child(n+2) {
|
5965 |
-
margin-top: 20px;
|
5966 |
-
}
|
5967 |
-
.bc-root .bc-uk-accordion-title {
|
5968 |
-
display: block;
|
5969 |
-
font-size: 1.25rem;
|
5970 |
-
line-height: 1.4;
|
5971 |
-
color: #333;
|
5972 |
-
overflow: hidden;
|
5973 |
-
}
|
5974 |
-
.bc-root .bc-uk-accordion-title::before {
|
5975 |
-
content: "";
|
5976 |
-
width: 1.4em;
|
5977 |
-
height: 1.4em;
|
5978 |
-
margin-left: 10px;
|
5979 |
-
float: right;
|
5980 |
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%221%22%20height%3D%2213%22%20x%3D%226%22%20y%3D%220%22%20%2F%3E%0A%3C%2Fsvg%3E");
|
5981 |
-
background-repeat: no-repeat;
|
5982 |
-
background-position: 50% 50%;
|
5983 |
-
}
|
5984 |
-
.bc-root .bc-uk-open > .bc-uk-accordion-title::before {
|
5985 |
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%3C%2Fsvg%3E");
|
5986 |
-
}
|
5987 |
-
.bc-root .bc-uk-accordion-title:hover,
|
5988 |
-
.bc-root .bc-uk-accordion-title:focus {
|
5989 |
-
color: #666;
|
5990 |
-
text-decoration: none;
|
5991 |
-
outline: none;
|
5992 |
-
}
|
5993 |
-
.bc-root .bc-uk-accordion-content {
|
5994 |
-
margin-top: 20px;
|
5995 |
-
}
|
5996 |
-
.bc-root .bc-uk-accordion-content::before,
|
5997 |
-
.bc-root .bc-uk-accordion-content::after {
|
5998 |
-
content: "";
|
5999 |
-
display: table;
|
6000 |
-
}
|
6001 |
-
.bc-root .bc-uk-accordion-content::after {
|
6002 |
-
clear: both;
|
6003 |
-
}
|
6004 |
-
.bc-root .bc-uk-accordion-content > :last-child {
|
6005 |
-
margin-bottom: 0;
|
6006 |
-
}
|
6007 |
-
.bc-root .bc-uk-drop {
|
6008 |
-
/* 1 */
|
6009 |
-
display: none;
|
6010 |
-
/* 2 */
|
6011 |
-
position: absolute;
|
6012 |
-
z-index: 1020;
|
6013 |
-
/* 3 */
|
6014 |
-
box-sizing: border-box;
|
6015 |
-
width: 300px;
|
6016 |
-
}
|
6017 |
-
.bc-root .bc-uk-drop.bc-uk-open {
|
6018 |
-
display: block;
|
6019 |
-
}
|
6020 |
-
.bc-root [class*=uk-drop-top] {
|
6021 |
-
margin-top: -20px;
|
6022 |
-
}
|
6023 |
-
.bc-root [class*=uk-drop-bottom] {
|
6024 |
-
margin-top: 20px;
|
6025 |
-
}
|
6026 |
-
.bc-root [class*=uk-drop-left] {
|
6027 |
-
margin-left: -20px;
|
6028 |
-
}
|
6029 |
-
.bc-root [class*=uk-drop-right] {
|
6030 |
-
margin-left: 20px;
|
6031 |
-
}
|
6032 |
-
.bc-root .bc-uk-drop-stack .bc-uk-drop-grid > * {
|
6033 |
-
width: 100% !important;
|
6034 |
-
}
|
6035 |
-
.bc-root .bc-uk-dropdown {
|
6036 |
-
/* 1 */
|
6037 |
-
display: none;
|
6038 |
-
/* 2 */
|
6039 |
-
position: absolute;
|
6040 |
-
z-index: 1020;
|
6041 |
-
/* 3 */
|
6042 |
-
box-sizing: border-box;
|
6043 |
-
min-width: 200px;
|
6044 |
-
/* 4 */
|
6045 |
-
padding: 25px;
|
6046 |
-
background: #fff;
|
6047 |
-
color: #666;
|
6048 |
-
box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
|
6049 |
-
}
|
6050 |
-
.bc-root .bc-uk-dropdown.bc-uk-open {
|
6051 |
-
display: block;
|
6052 |
-
}
|
6053 |
-
.bc-root .bc-uk-dropdown-nav {
|
6054 |
-
white-space: nowrap;
|
6055 |
-
font-size: 0.875rem;
|
6056 |
-
}
|
6057 |
-
.bc-root .bc-uk-dropdown-nav > li > a {
|
6058 |
-
color: #999;
|
6059 |
-
}
|
6060 |
-
.bc-root .bc-uk-dropdown-nav > li > a:hover,
|
6061 |
-
.bc-root .bc-uk-dropdown-nav > li > a:focus,
|
6062 |
-
.bc-root .bc-uk-dropdown-nav > li.bc-uk-active > a {
|
6063 |
-
color: #666;
|
6064 |
-
}
|
6065 |
-
.bc-root .bc-uk-dropdown-nav .bc-uk-nav-header {
|
6066 |
-
color: #333;
|
6067 |
-
}
|
6068 |
-
.bc-root .bc-uk-dropdown-nav .bc-uk-nav-divider {
|
6069 |
-
border-top: 1px solid #e5e5e5;
|
6070 |
-
}
|
6071 |
-
.bc-root .bc-uk-dropdown-nav .bc-uk-nav-sub a {
|
6072 |
-
color: #999;
|
6073 |
-
}
|
6074 |
-
.bc-root .bc-uk-dropdown-nav .bc-uk-nav-sub a:hover,
|
6075 |
-
.bc-root .bc-uk-dropdown-nav .bc-uk-nav-sub a:focus,
|
6076 |
-
.bc-root .bc-uk-dropdown-nav .bc-uk-nav-sub li.bc-uk-active > a {
|
6077 |
-
color: #666;
|
6078 |
-
}
|
6079 |
-
.bc-root [class*=uk-dropdown-top] {
|
6080 |
-
margin-top: -10px;
|
6081 |
-
}
|
6082 |
-
.bc-root [class*=uk-dropdown-bottom] {
|
6083 |
-
margin-top: 10px;
|
6084 |
-
}
|
6085 |
-
.bc-root [class*=uk-dropdown-left] {
|
6086 |
-
margin-left: -10px;
|
6087 |
-
}
|
6088 |
-
.bc-root [class*=uk-dropdown-right] {
|
6089 |
-
margin-left: 10px;
|
6090 |
-
}
|
6091 |
-
.bc-root .bc-uk-dropdown-stack .bc-uk-dropdown-grid > * {
|
6092 |
-
width: 100% !important;
|
6093 |
-
}
|
6094 |
-
.bc-root .bc-uk-modal {
|
6095 |
-
/* 1 */
|
6096 |
-
display: none;
|
6097 |
-
/* 2 */
|
6098 |
-
position: fixed;
|
6099 |
-
top: 0;
|
6100 |
-
right: 0;
|
6101 |
-
bottom: 0;
|
6102 |
-
left: 0;
|
6103 |
-
z-index: 1010;
|
6104 |
-
/* 3 */
|
6105 |
-
overflow-y: auto;
|
6106 |
-
-webkit-overflow-scrolling: touch;
|
6107 |
-
/* 4 */
|
6108 |
-
padding: 15px 15px;
|
6109 |
-
/* 5 */
|
6110 |
-
background: rgba(0, 0, 0, 0.6);
|
6111 |
-
/* 6 */
|
6112 |
-
opacity: 0;
|
6113 |
-
transition: opacity 0.15s linear;
|
6114 |
-
}
|
6115 |
-
@media (min-width: 640px) {
|
6116 |
-
.bc-root .bc-uk-modal {
|
6117 |
-
padding: 50px 30px;
|
6118 |
-
}
|
6119 |
-
}
|
6120 |
-
@media (min-width: 960px) {
|
6121 |
-
.bc-root .bc-uk-modal {
|
6122 |
-
padding-left: 40px;
|
6123 |
-
padding-right: 40px;
|
6124 |
-
}
|
6125 |
-
}
|
6126 |
-
.bc-root .bc-uk-modal.bc-uk-open {
|
6127 |
-
opacity: 1;
|
6128 |
-
}
|
6129 |
-
.bc-root .bc-uk-modal-page {
|
6130 |
-
overflow: hidden;
|
6131 |
-
}
|
6132 |
-
.bc-root .bc-uk-modal-dialog {
|
6133 |
-
/* 1 */
|
6134 |
-
position: relative;
|
6135 |
-
/* 2 */
|
6136 |
-
box-sizing: border-box;
|
6137 |
-
margin: 0 auto;
|
6138 |
-
width: 600px;
|
6139 |
-
/* 3 */
|
6140 |
-
max-width: calc(100% - 0.01px) !important;
|
6141 |
-
/* 4 */
|
6142 |
-
background: #fff;
|
6143 |
-
/* 5 */
|
6144 |
-
opacity: 0;
|
6145 |
-
transform: translateY(-100px);
|
6146 |
-
transition: 0.3s linear;
|
6147 |
-
transition-property: opacity, transform;
|
6148 |
-
}
|
6149 |
-
.bc-root .bc-uk-open > .bc-uk-modal-dialog {
|
6150 |
-
opacity: 1;
|
6151 |
-
transform: translateY(0);
|
6152 |
-
}
|
6153 |
-
.bc-root .bc-uk-modal-container .bc-uk-modal-dialog {
|
6154 |
-
width: 1200px;
|
6155 |
-
}
|
6156 |
-
.bc-root .bc-uk-modal-full {
|
6157 |
-
padding: 0;
|
6158 |
-
background: none;
|
6159 |
-
}
|
6160 |
-
.bc-root .bc-uk-modal-full .bc-uk-modal-dialog {
|
6161 |
-
margin: 0;
|
6162 |
-
width: 100%;
|
6163 |
-
max-width: 100%;
|
6164 |
-
transform: translateY(0);
|
6165 |
-
}
|
6166 |
-
.bc-root .bc-uk-modal-body {
|
6167 |
-
padding: 30px 30px;
|
6168 |
-
}
|
6169 |
-
.bc-root .bc-uk-modal-header {
|
6170 |
-
padding: 15px 30px;
|
6171 |
-
background: #fff;
|
6172 |
-
border-bottom: 1px solid #e5e5e5;
|
6173 |
-
}
|
6174 |
-
.bc-root .bc-uk-modal-footer {
|
6175 |
-
padding: 15px 30px;
|
6176 |
-
background: #fff;
|
6177 |
-
border-top: 1px solid #e5e5e5;
|
6178 |
-
}
|
6179 |
-
.bc-root .bc-uk-modal-body::before,
|
6180 |
-
.bc-root .bc-uk-modal-body::after,
|
6181 |
-
.bc-root .bc-uk-modal-header::before,
|
6182 |
-
.bc-root .bc-uk-modal-header::after,
|
6183 |
-
.bc-root .bc-uk-modal-footer::before,
|
6184 |
-
.bc-root .bc-uk-modal-footer::after {
|
6185 |
-
content: "";
|
6186 |
-
display: table;
|
6187 |
-
}
|
6188 |
-
.bc-root .bc-uk-modal-body::after,
|
6189 |
-
.bc-root .bc-uk-modal-header::after,
|
6190 |
-
.bc-root .bc-uk-modal-footer::after {
|
6191 |
-
clear: both;
|
6192 |
-
}
|
6193 |
-
.bc-root .bc-uk-modal-body > :last-child,
|
6194 |
-
.bc-root .bc-uk-modal-header > :last-child,
|
6195 |
-
.bc-root .bc-uk-modal-footer > :last-child {
|
6196 |
-
margin-bottom: 0;
|
6197 |
-
}
|
6198 |
-
.bc-root .bc-uk-modal-title {
|
6199 |
-
font-size: 2rem;
|
6200 |
-
line-height: 1.3;
|
6201 |
-
}
|
6202 |
-
.bc-root [class*=uk-modal-close-] {
|
6203 |
-
position: absolute;
|
6204 |
-
z-index: 1010;
|
6205 |
-
top: 10px;
|
6206 |
-
right: 10px;
|
6207 |
-
padding: 5px;
|
6208 |
-
}
|
6209 |
-
.bc-root [class*=uk-modal-close-]:first-child + * {
|
6210 |
-
margin-top: 0;
|
6211 |
-
}
|
6212 |
-
.bc-root .bc-uk-modal-close-outside {
|
6213 |
-
top: 0;
|
6214 |
-
/* 1 */
|
6215 |
-
right: -5px;
|
6216 |
-
transform: translate(0, -100%);
|
6217 |
-
color: #ffffff;
|
6218 |
-
}
|
6219 |
-
.bc-root .bc-uk-modal-close-outside:hover {
|
6220 |
-
color: #fff;
|
6221 |
-
}
|
6222 |
-
@media (min-width: 960px) {
|
6223 |
-
.bc-root {
|
6224 |
-
/* 1 */
|
6225 |
-
}
|
6226 |
-
.bc-root .bc-uk-modal-close-outside {
|
6227 |
-
right: 0;
|
6228 |
-
transform: translate(100%, -100%);
|
6229 |
-
}
|
6230 |
-
}
|
6231 |
-
.bc-root .bc-uk-modal-close-full {
|
6232 |
-
top: 0;
|
6233 |
-
right: 0;
|
6234 |
-
padding: 20px;
|
6235 |
-
background: #fff;
|
6236 |
-
}
|
6237 |
-
.bc-root .bc-uk-lightbox {
|
6238 |
-
/* 1 */
|
6239 |
-
display: none;
|
6240 |
-
/* 2 */
|
6241 |
-
position: fixed;
|
6242 |
-
top: 0;
|
6243 |
-
right: 0;
|
6244 |
-
bottom: 0;
|
6245 |
-
left: 0;
|
6246 |
-
z-index: 1010;
|
6247 |
-
/* 5 */
|
6248 |
-
background: #000;
|
6249 |
-
/* 6 */
|
6250 |
-
opacity: 0;
|
6251 |
-
transition: opacity 0.15s linear;
|
6252 |
-
}
|
6253 |
-
.bc-root .bc-uk-lightbox.bc-uk-open {
|
6254 |
-
display: block;
|
6255 |
-
/* 2 */
|
6256 |
-
opacity: 1;
|
6257 |
-
}
|
6258 |
-
.bc-root .bc-uk-lightbox-page {
|
6259 |
-
overflow: hidden;
|
6260 |
-
}
|
6261 |
-
.bc-root .bc-uk-lightbox-items > * {
|
6262 |
-
/* 1 */
|
6263 |
-
position: absolute;
|
6264 |
-
top: 0;
|
6265 |
-
right: 0;
|
6266 |
-
bottom: 0;
|
6267 |
-
left: 0;
|
6268 |
-
/* 2 */
|
6269 |
-
display: none;
|
6270 |
-
justify-content: center;
|
6271 |
-
align-items: center;
|
6272 |
-
/* 3 */
|
6273 |
-
color: rgba(255, 255, 255, 0.7);
|
6274 |
-
/* 4 */
|
6275 |
-
will-change: transform, opacity;
|
6276 |
-
}
|
6277 |
-
.bc-root .bc-uk-lightbox-items > * > * {
|
6278 |
-
max-width: 100vw;
|
6279 |
-
max-height: 100vh;
|
6280 |
-
}
|
6281 |
-
.bc-root .bc-uk-lightbox-items > :focus {
|
6282 |
-
outline: none;
|
6283 |
-
}
|
6284 |
-
.bc-root .bc-uk-lightbox-items > * > :not(iframe) {
|
6285 |
-
width: auto;
|
6286 |
-
height: auto;
|
6287 |
-
}
|
6288 |
-
.bc-root .bc-uk-lightbox-items > .bc-uk-active {
|
6289 |
-
display: flex;
|
6290 |
-
}
|
6291 |
-
.bc-root .bc-uk-lightbox-toolbar {
|
6292 |
-
padding: 10px 10px;
|
6293 |
-
background: rgba(0, 0, 0, 0.3);
|
6294 |
-
color: rgba(255, 255, 255, 0.7);
|
6295 |
-
}
|
6296 |
-
.bc-root .bc-uk-lightbox-toolbar > * {
|
6297 |
-
color: rgba(255, 255, 255, 0.7);
|
6298 |
-
}
|
6299 |
-
.bc-root .bc-uk-lightbox-toolbar-icon {
|
6300 |
-
padding: 5px;
|
6301 |
-
color: rgba(255, 255, 255, 0.7);
|
6302 |
-
}
|
6303 |
-
.bc-root .bc-uk-lightbox-toolbar-icon:hover {
|
6304 |
-
color: #fff;
|
6305 |
-
}
|
6306 |
-
.bc-root .bc-uk-lightbox-button {
|
6307 |
-
box-sizing: border-box;
|
6308 |
-
width: 50px;
|
6309 |
-
height: 50px;
|
6310 |
-
background: rgba(0, 0, 0, 0.3);
|
6311 |
-
color: rgba(255, 255, 255, 0.7);
|
6312 |
-
/* 1 */
|
6313 |
-
display: inline-flex;
|
6314 |
-
justify-content: center;
|
6315 |
-
align-items: center;
|
6316 |
-
}
|
6317 |
-
.bc-root .bc-uk-lightbox-button:hover {
|
6318 |
-
color: #fff;
|
6319 |
-
}
|
6320 |
-
.bc-root .bc-uk-lightbox-iframe {
|
6321 |
-
width: 80%;
|
6322 |
-
height: 80%;
|
6323 |
-
}
|
6324 |
-
.bc-root .bc-uk-slideshow {
|
6325 |
-
/* 1 */
|
6326 |
-
-webkit-tap-highlight-color: transparent;
|
6327 |
-
}
|
6328 |
-
.bc-root .bc-uk-slideshow-items {
|
6329 |
-
/* 1 */
|
6330 |
-
position: relative;
|
6331 |
-
z-index: 0;
|
6332 |
-
/* 2 */
|
6333 |
-
margin: 0;
|
6334 |
-
padding: 0;
|
6335 |
-
list-style: none;
|
6336 |
-
/* 3 */
|
6337 |
-
overflow: hidden;
|
6338 |
-
/* 4 */
|
6339 |
-
-webkit-touch-callout: none;
|
6340 |
-
}
|
6341 |
-
.bc-root .bc-uk-slideshow-items > * {
|
6342 |
-
/* 1 */
|
6343 |
-
position: absolute;
|
6344 |
-
top: 0;
|
6345 |
-
left: 0;
|
6346 |
-
/* 2 */
|
6347 |
-
right: 0;
|
6348 |
-
bottom: 0;
|
6349 |
-
/* 3 */
|
6350 |
-
overflow: hidden;
|
6351 |
-
/* 4 */
|
6352 |
-
will-change: transform, opacity;
|
6353 |
-
/* 5 */
|
6354 |
-
touch-action: pan-y;
|
6355 |
-
}
|
6356 |
-
.bc-root .bc-uk-slideshow-items > :focus {
|
6357 |
-
outline: none;
|
6358 |
-
}
|
6359 |
-
.bc-root .bc-uk-slideshow-items > :not(.bc-uk-active) {
|
6360 |
-
display: none;
|
6361 |
-
}
|
6362 |
-
.bc-root .bc-uk-slider {
|
6363 |
-
/* 1 */
|
6364 |
-
-webkit-tap-highlight-color: transparent;
|
6365 |
-
}
|
6366 |
-
.bc-root .bc-uk-slider-container {
|
6367 |
-
/* 1 */
|
6368 |
-
overflow: hidden;
|
6369 |
-
}
|
6370 |
-
.bc-root .bc-uk-slider-items {
|
6371 |
-
/* 1 */
|
6372 |
-
will-change: transform;
|
6373 |
-
/* 2 */
|
6374 |
-
position: relative;
|
6375 |
-
}
|
6376 |
-
.bc-root .bc-uk-slider-items:not(.bc-uk-grid) {
|
6377 |
-
display: flex;
|
6378 |
-
/* 1 */
|
6379 |
-
margin: 0;
|
6380 |
-
padding: 0;
|
6381 |
-
list-style: none;
|
6382 |
-
/* 2 */
|
6383 |
-
-webkit-touch-callout: none;
|
6384 |
-
}
|
6385 |
-
.bc-root .bc-uk-slider-items.bc-uk-grid {
|
6386 |
-
flex-wrap: nowrap;
|
6387 |
-
}
|
6388 |
-
.bc-root .bc-uk-slider-items > * {
|
6389 |
-
/* 1 */
|
6390 |
-
flex: none;
|
6391 |
-
/* 2 */
|
6392 |
-
position: relative;
|
6393 |
-
/* 3 */
|
6394 |
-
touch-action: pan-y;
|
6395 |
-
}
|
6396 |
-
.bc-root .bc-uk-slider-items > :focus {
|
6397 |
-
outline: none;
|
6398 |
-
}
|
6399 |
-
.bc-root .bc-uk-sticky-fixed {
|
6400 |
-
z-index: 980;
|
6401 |
-
box-sizing: border-box;
|
6402 |
-
margin: 0 !important;
|
6403 |
-
/* 1 */
|
6404 |
-
-webkit-backface-visibility: hidden;
|
6405 |
-
backface-visibility: hidden;
|
6406 |
-
}
|
6407 |
-
.bc-root .bc-uk-sticky[class*=uk-animation-] {
|
6408 |
-
animation-duration: 0.2s;
|
6409 |
-
}
|
6410 |
-
.bc-root .bc-uk-sticky.bc-uk-animation-reverse {
|
6411 |
-
animation-duration: 0.2s;
|
6412 |
-
}
|
6413 |
-
.bc-root .bc-uk-offcanvas {
|
6414 |
-
/* 1 */
|
6415 |
-
display: none;
|
6416 |
-
/* 2 */
|
6417 |
-
position: fixed;
|
6418 |
-
top: 0;
|
6419 |
-
bottom: 0;
|
6420 |
-
left: 0;
|
6421 |
-
z-index: 1000;
|
6422 |
-
}
|
6423 |
-
.bc-root .bc-uk-offcanvas-flip .bc-uk-offcanvas {
|
6424 |
-
right: 0;
|
6425 |
-
left: auto;
|
6426 |
-
}
|
6427 |
-
.bc-root .bc-uk-offcanvas-bar {
|
6428 |
-
/* 1 */
|
6429 |
-
position: absolute;
|
6430 |
-
top: 0;
|
6431 |
-
bottom: 0;
|
6432 |
-
left: -270px;
|
6433 |
-
/* 2 */
|
6434 |
-
box-sizing: border-box;
|
6435 |
-
width: 270px;
|
6436 |
-
padding: 20px 20px;
|
6437 |
-
background: #222;
|
6438 |
-
/* 3 */
|
6439 |
-
overflow-y: auto;
|
6440 |
-
-webkit-overflow-scrolling: touch;
|
6441 |
-
}
|
6442 |
-
@media (min-width: 960px) {
|
6443 |
-
.bc-root .bc-uk-offcanvas-bar {
|
6444 |
-
left: -350px;
|
6445 |
-
width: 350px;
|
6446 |
-
padding: 40px 40px;
|
6447 |
-
}
|
6448 |
-
}
|
6449 |
-
.bc-root .bc-uk-offcanvas-flip .bc-uk-offcanvas-bar {
|
6450 |
-
left: auto;
|
6451 |
-
right: -270px;
|
6452 |
-
}
|
6453 |
-
@media (min-width: 960px) {
|
6454 |
-
.bc-root .bc-uk-offcanvas-flip .bc-uk-offcanvas-bar {
|
6455 |
-
right: -350px;
|
6456 |
-
}
|
6457 |
-
}
|
6458 |
-
.bc-root .bc-uk-open > .bc-uk-offcanvas-bar {
|
6459 |
-
left: 0;
|
6460 |
-
}
|
6461 |
-
.bc-root .bc-uk-offcanvas-flip .bc-uk-open > .bc-uk-offcanvas-bar {
|
6462 |
-
left: auto;
|
6463 |
-
right: 0;
|
6464 |
-
}
|
6465 |
-
.bc-root .bc-uk-offcanvas-bar-animation {
|
6466 |
-
transition: left 0.3s ease-out;
|
6467 |
-
}
|
6468 |
-
.bc-root .bc-uk-offcanvas-flip .bc-uk-offcanvas-bar-animation {
|
6469 |
-
transition-property: right;
|
6470 |
-
}
|
6471 |
-
.bc-root .bc-uk-offcanvas-reveal {
|
6472 |
-
/* 1 */
|
6473 |
-
position: absolute;
|
6474 |
-
top: 0;
|
6475 |
-
bottom: 0;
|
6476 |
-
left: 0;
|
6477 |
-
/* 2 */
|
6478 |
-
width: 0;
|
6479 |
-
overflow: hidden;
|
6480 |
-
/* 3 */
|
6481 |
-
transition: width 0.3s ease-out;
|
6482 |
-
}
|
6483 |
-
.bc-root .bc-uk-offcanvas-reveal .bc-uk-offcanvas-bar {
|
6484 |
-
/* 4 */
|
6485 |
-
left: 0;
|
6486 |
-
}
|
6487 |
-
.bc-root .bc-uk-offcanvas-flip .bc-uk-offcanvas-reveal .bc-uk-offcanvas-bar {
|
6488 |
-
/* 4 */
|
6489 |
-
left: auto;
|
6490 |
-
right: 0;
|
6491 |
-
}
|
6492 |
-
.bc-root .bc-uk-open > .bc-uk-offcanvas-reveal {
|
6493 |
-
width: 270px;
|
6494 |
-
}
|
6495 |
-
@media (min-width: 960px) {
|
6496 |
-
.bc-root .bc-uk-open > .bc-uk-offcanvas-reveal {
|
6497 |
-
width: 350px;
|
6498 |
-
}
|
6499 |
-
}
|
6500 |
-
.bc-root .bc-uk-offcanvas-flip .bc-uk-offcanvas-reveal {
|
6501 |
-
right: 0;
|
6502 |
-
left: auto;
|
6503 |
-
}
|
6504 |
-
.bc-root .bc-uk-offcanvas-close {
|
6505 |
-
position: absolute;
|
6506 |
-
z-index: 1000;
|
6507 |
-
top: 20px;
|
6508 |
-
right: 20px;
|
6509 |
-
padding: 5px;
|
6510 |
-
}
|
6511 |
-
.bc-root .bc-uk-offcanvas-overlay {
|
6512 |
-
/* 1 */
|
6513 |
-
width: 100vw;
|
6514 |
-
/* 2 */
|
6515 |
-
touch-action: none;
|
6516 |
-
}
|
6517 |
-
.bc-root .bc-uk-offcanvas-overlay::before {
|
6518 |
-
/* 1 */
|
6519 |
-
content: "";
|
6520 |
-
position: absolute;
|
6521 |
-
top: 0;
|
6522 |
-
bottom: 0;
|
6523 |
-
left: 0;
|
6524 |
-
right: 0;
|
6525 |
-
background: rgba(0, 0, 0, 0.1);
|
6526 |
-
/* 2 */
|
6527 |
-
opacity: 0;
|
6528 |
-
transition: opacity 0.15s linear;
|
6529 |
-
}
|
6530 |
-
.bc-root .bc-uk-offcanvas-overlay.bc-uk-open::before {
|
6531 |
-
opacity: 1;
|
6532 |
-
}
|
6533 |
-
.bc-root .bc-uk-offcanvas-page,
|
6534 |
-
.bc-root .bc-uk-offcanvas-container {
|
6535 |
-
overflow-x: hidden;
|
6536 |
-
}
|
6537 |
-
.bc-root .bc-uk-offcanvas-container {
|
6538 |
-
position: relative;
|
6539 |
-
left: 0;
|
6540 |
-
transition: left 0.3s ease-out;
|
6541 |
-
/* 1 */
|
6542 |
-
box-sizing: border-box;
|
6543 |
-
width: 100%;
|
6544 |
-
}
|
6545 |
-
.bc-root :not(.bc-uk-offcanvas-flip).bc-uk-offcanvas-container-animation {
|
6546 |
-
left: 270px;
|
6547 |
-
}
|
6548 |
-
.bc-root .bc-uk-offcanvas-flip.bc-uk-offcanvas-container-animation {
|
6549 |
-
left: -270px;
|
6550 |
-
}
|
6551 |
-
@media (min-width: 960px) {
|
6552 |
-
.bc-root :not(.bc-uk-offcanvas-flip).bc-uk-offcanvas-container-animation {
|
6553 |
-
left: 350px;
|
6554 |
-
}
|
6555 |
-
.bc-root .bc-uk-offcanvas-flip.bc-uk-offcanvas-container-animation {
|
6556 |
-
left: -350px;
|
6557 |
-
}
|
6558 |
-
}
|
6559 |
-
.bc-root .bc-uk-switcher {
|
6560 |
-
margin: 0;
|
6561 |
-
padding: 0;
|
6562 |
-
list-style: none;
|
6563 |
-
}
|
6564 |
-
.bc-root .bc-uk-switcher > :not(.bc-uk-active) {
|
6565 |
-
display: none;
|
6566 |
-
}
|
6567 |
-
.bc-root .bc-uk-switcher > * > :last-child {
|
6568 |
-
margin-bottom: 0;
|
6569 |
-
}
|
6570 |
-
.bc-root .bc-uk-leader {
|
6571 |
-
overflow: hidden;
|
6572 |
-
}
|
6573 |
-
.bc-root .bc-uk-leader-fill::after {
|
6574 |
-
/* 1 */
|
6575 |
-
display: inline-block;
|
6576 |
-
margin-left: 15px;
|
6577 |
-
/* 2 */
|
6578 |
-
width: 0;
|
6579 |
-
/* 3 */
|
6580 |
-
content: attr(data-fill);
|
6581 |
-
/* 4 */
|
6582 |
-
white-space: nowrap;
|
6583 |
-
}
|
6584 |
-
.bc-root .bc-uk-leader-fill.bc-uk-leader-hide::after {
|
6585 |
-
display: none;
|
6586 |
-
}
|
6587 |
-
.bc-root .bc-uk-leader-fill-content::before {
|
6588 |
-
content: ".";
|
6589 |
-
}
|
6590 |
-
.bc-root .bc-uk-iconnav {
|
6591 |
-
display: flex;
|
6592 |
-
/* 1 */
|
6593 |
-
flex-wrap: wrap;
|
6594 |
-
/* 2 */
|
6595 |
-
margin: 0;
|
6596 |
-
padding: 0;
|
6597 |
-
list-style: none;
|
6598 |
-
/* 3 */
|
6599 |
-
margin-left: -10px;
|
6600 |
-
}
|
6601 |
-
.bc-root .bc-uk-iconnav > * {
|
6602 |
-
/* 1 */
|
6603 |
-
padding-left: 10px;
|
6604 |
-
}
|
6605 |
-
.bc-root .bc-uk-iconnav > * > a {
|
6606 |
-
/* 1 */
|
6607 |
-
display: block;
|
6608 |
-
/* 2 */
|
6609 |
-
color: #999;
|
6610 |
-
}
|
6611 |
-
.bc-root .bc-uk-iconnav > * > a:hover,
|
6612 |
-
.bc-root .bc-uk-iconnav > * > a:focus {
|
6613 |
-
color: #666;
|
6614 |
-
outline: none;
|
6615 |
-
}
|
6616 |
-
.bc-root .bc-uk-iconnav > .bc-uk-active > a {
|
6617 |
-
color: #666;
|
6618 |
-
}
|
6619 |
-
.bc-root .bc-uk-iconnav-vertical {
|
6620 |
-
/* 1 */
|
6621 |
-
flex-direction: column;
|
6622 |
-
/* 2 */
|
6623 |
-
margin-left: 0;
|
6624 |
-
margin-top: -10px;
|
6625 |
-
}
|
6626 |
-
.bc-root .bc-uk-iconnav-vertical > * {
|
6627 |
-
padding-left: 0;
|
6628 |
-
padding-top: 10px;
|
6629 |
-
}
|
6630 |
-
.bc-root .bc-uk-notification {
|
6631 |
-
/* 1 */
|
6632 |
-
position: fixed;
|
6633 |
-
top: 10px;
|
6634 |
-
left: 10px;
|
6635 |
-
z-index: 1040;
|
6636 |
-
/* 2 */
|
6637 |
-
box-sizing: border-box;
|
6638 |
-
width: 350px;
|
6639 |
-
}
|
6640 |
-
.bc-root .bc-uk-notification-top-right,
|
6641 |
-
.bc-root .bc-uk-notification-bottom-right {
|
6642 |
-
left: auto;
|
6643 |
-
right: 10px;
|
6644 |
-
}
|
6645 |
-
.bc-root .bc-uk-notification-top-center,
|
6646 |
-
.bc-root .bc-uk-notification-bottom-center {
|
6647 |
-
left: 50%;
|
6648 |
-
margin-left: -175px;
|
6649 |
-
}
|
6650 |
-
.bc-root .bc-uk-notification-bottom-left,
|
6651 |
-
.bc-root .bc-uk-notification-bottom-right,
|
6652 |
-
.bc-root .bc-uk-notification-bottom-center {
|
6653 |
-
top: auto;
|
6654 |
-
bottom: 10px;
|
6655 |
-
}
|
6656 |
-
@media (max-width: 639px) {
|
6657 |
-
.bc-root .bc-uk-notification {
|
6658 |
-
left: 10px;
|
6659 |
-
right: 10px;
|
6660 |
-
width: auto;
|
6661 |
-
margin: 0;
|
6662 |
-
}
|
6663 |
-
}
|
6664 |
-
.bc-root .bc-uk-notification-message {
|
6665 |
-
position: relative;
|
6666 |
-
padding: 15px;
|
6667 |
-
background: #f8f8f8;
|
6668 |
-
color: #666;
|
6669 |
-
font-size: 1.25rem;
|
6670 |
-
line-height: 1.4;
|
6671 |
-
cursor: pointer;
|
6672 |
-
}
|
6673 |
-
.bc-root * + .bc-uk-notification-message {
|
6674 |
-
margin-top: 10px;
|
6675 |
-
}
|
6676 |
-
.bc-root .bc-uk-notification-close {
|
6677 |
-
display: none;
|
6678 |
-
position: absolute;
|
6679 |
-
top: 20px;
|
6680 |
-
right: 15px;
|
6681 |
-
}
|
6682 |
-
.bc-root .bc-uk-notification-message:hover .bc-uk-notification-close {
|
6683 |
-
display: block;
|
6684 |
-
}
|
6685 |
-
.bc-root .bc-uk-notification-message-primary {
|
6686 |
-
color: #1e87f0;
|
6687 |
-
}
|
6688 |
-
.bc-root .bc-uk-notification-message-success {
|
6689 |
-
color: #32d296;
|
6690 |
-
}
|
6691 |
-
.bc-root .bc-uk-notification-message-warning {
|
6692 |
-
color: #faa05a;
|
6693 |
-
}
|
6694 |
-
.bc-root .bc-uk-notification-message-danger {
|
6695 |
-
color: #f0506e;
|
6696 |
-
}
|
6697 |
-
.bc-root .bc-uk-tooltip {
|
6698 |
-
/* 1 */
|
6699 |
-
display: none;
|
6700 |
-
/* 2 */
|
6701 |
-
position: absolute;
|
6702 |
-
z-index: 1030;
|
6703 |
-
/* 3 */
|
6704 |
-
box-sizing: border-box;
|
6705 |
-
max-width: 200px;
|
6706 |
-
padding: 3px 6px;
|
6707 |
-
/* 4 */
|
6708 |
-
background: #666;
|
6709 |
-
border-radius: 2px;
|
6710 |
-
color: #fff;
|
6711 |
-
font-size: 12px;
|
6712 |
-
}
|
6713 |
-
.bc-root .bc-uk-tooltip.bc-uk-active {
|
6714 |
-
display: block;
|
6715 |
-
}
|
6716 |
-
.bc-root [class*=uk-tooltip-top] {
|
6717 |
-
margin-top: -10px;
|
6718 |
-
}
|
6719 |
-
.bc-root [class*=uk-tooltip-bottom] {
|
6720 |
-
margin-top: 10px;
|
6721 |
-
}
|
6722 |
-
.bc-root [class*=uk-tooltip-left] {
|
6723 |
-
margin-left: -10px;
|
6724 |
-
}
|
6725 |
-
.bc-root [class*=uk-tooltip-right] {
|
6726 |
-
margin-left: 10px;
|
6727 |
-
}
|
6728 |
-
.bc-root .bc-uk-placeholder {
|
6729 |
-
margin-bottom: 20px;
|
6730 |
-
padding: 30px 30px;
|
6731 |
-
background: transparent;
|
6732 |
-
border: 1px dashed #e5e5e5;
|
6733 |
-
}
|
6734 |
-
.bc-root * + .bc-uk-placeholder {
|
6735 |
-
margin-top: 20px;
|
6736 |
-
}
|
6737 |
-
.bc-root .bc-uk-placeholder > :last-child {
|
6738 |
-
margin-bottom: 0;
|
6739 |
-
}
|
6740 |
-
.bc-root .bc-uk-progress {
|
6741 |
-
/* 1 */
|
6742 |
-
vertical-align: baseline;
|
6743 |
-
/* 2 */
|
6744 |
-
-webkit-appearance: none;
|
6745 |
-
-moz-appearance: none;
|
6746 |
-
/* 3 */
|
6747 |
-
display: block;
|
6748 |
-
width: 100%;
|
6749 |
-
/* 4 */
|
6750 |
-
border: 0;
|
6751 |
-
/* 5 */
|
6752 |
-
background-color: #f8f8f8;
|
6753 |
-
/* 6 */
|
6754 |
-
margin-bottom: 20px;
|
6755 |
-
height: 15px;
|
6756 |
-
border-radius: 500px;
|
6757 |
-
overflow: hidden;
|
6758 |
-
}
|
6759 |
-
.bc-root * + .bc-uk-progress {
|
6760 |
-
margin-top: 20px;
|
6761 |
-
}
|
6762 |
-
.bc-root .bc-uk-progress:indeterminate {
|
6763 |
-
color: transparent;
|
6764 |
-
}
|
6765 |
-
.bc-root .bc-uk-progress::-webkit-progress-bar {
|
6766 |
-
background-color: #f8f8f8;
|
6767 |
-
border-radius: 500px;
|
6768 |
-
overflow: hidden;
|
6769 |
-
}
|
6770 |
-
.bc-root .bc-uk-progress:indeterminate::-moz-progress-bar {
|
6771 |
-
width: 0;
|
6772 |
-
}
|
6773 |
-
.bc-root .bc-uk-progress::-webkit-progress-value {
|
6774 |
-
background-color: #1e87f0;
|
6775 |
-
transition: width 0.6s ease;
|
6776 |
-
}
|
6777 |
-
.bc-root .bc-uk-progress::-moz-progress-bar {
|
6778 |
-
background-color: #1e87f0;
|
6779 |
-
}
|
6780 |
-
.bc-root .bc-uk-progress::-ms-fill {
|
6781 |
-
background-color: #1e87f0;
|
6782 |
-
transition: width 0.6s ease;
|
6783 |
-
/* 1 */
|
6784 |
-
border: 0;
|
6785 |
-
}
|
6786 |
-
.bc-root .bc-uk-sortable {
|
6787 |
-
position: relative;
|
6788 |
-
}
|
6789 |
-
.bc-root .bc-uk-sortable svg {
|
6790 |
-
pointer-events: none;
|
6791 |
-
}
|
6792 |
-
.bc-root .bc-uk-sortable > :last-child {
|
6793 |
-
margin-bottom: 0;
|
6794 |
-
}
|
6795 |
-
.bc-root .bc-uk-sortable-drag {
|
6796 |
-
position: absolute !important;
|
6797 |
-
z-index: 1050 !important;
|
6798 |
-
pointer-events: none;
|
6799 |
-
}
|
6800 |
-
.bc-root .bc-uk-sortable-placeholder {
|
6801 |
-
opacity: 0;
|
6802 |
-
}
|
6803 |
-
.bc-root .bc-uk-sortable-empty {
|
6804 |
-
min-height: 50px;
|
6805 |
-
}
|
6806 |
-
.bc-root .bc-uk-sortable-handle:hover {
|
6807 |
-
cursor: move;
|
6808 |
-
}
|
6809 |
-
.bc-root .bc-uk-countdown-number,
|
6810 |
-
.bc-root .bc-uk-countdown-separator {
|
6811 |
-
/* 1 */
|
6812 |
-
line-height: 70px;
|
6813 |
-
}
|
6814 |
-
.bc-root .bc-uk-countdown-number {
|
6815 |
-
font-size: 2rem;
|
6816 |
-
}
|
6817 |
-
@media (min-width: 640px) {
|
6818 |
-
.bc-root .bc-uk-countdown-number {
|
6819 |
-
font-size: 4rem;
|
6820 |
-
}
|
6821 |
-
}
|
6822 |
-
@media (min-width: 960px) {
|
6823 |
-
.bc-root .bc-uk-countdown-number {
|
6824 |
-
font-size: 6rem;
|
6825 |
-
}
|
6826 |
-
}
|
6827 |
-
.bc-root .bc-uk-countdown-separator {
|
6828 |
-
font-size: 1rem;
|
6829 |
-
}
|
6830 |
-
@media (min-width: 640px) {
|
6831 |
-
.bc-root .bc-uk-countdown-separator {
|
6832 |
-
font-size: 2rem;
|
6833 |
-
}
|
6834 |
-
}
|
6835 |
-
@media (min-width: 960px) {
|
6836 |
-
.bc-root .bc-uk-countdown-separator {
|
6837 |
-
font-size: 3rem;
|
6838 |
-
}
|
6839 |
-
}
|
6840 |
-
.bc-root [class*=uk-animation-] {
|
6841 |
-
animation-duration: 0.5s;
|
6842 |
-
animation-timing-function: ease-out;
|
6843 |
-
animation-fill-mode: both;
|
6844 |
-
}
|
6845 |
-
.bc-root .bc-uk-animation-fade {
|
6846 |
-
animation-name: uk-fade;
|
6847 |
-
animation-duration: 0.8s;
|
6848 |
-
animation-timing-function: linear;
|
6849 |
-
}
|
6850 |
-
.bc-root .bc-uk-animation-scale-up {
|
6851 |
-
animation-name: uk-fade-scale-02;
|
6852 |
-
}
|
6853 |
-
.bc-root .bc-uk-animation-scale-down {
|
6854 |
-
animation-name: uk-fade-scale-18;
|
6855 |
-
}
|
6856 |
-
.bc-root .bc-uk-animation-slide-top {
|
6857 |
-
animation-name: uk-fade-top;
|
6858 |
-
}
|
6859 |
-
.bc-root .bc-uk-animation-slide-bottom {
|
6860 |
-
animation-name: uk-fade-bottom;
|
6861 |
-
}
|
6862 |
-
.bc-root .bc-uk-animation-slide-left {
|
6863 |
-
animation-name: uk-fade-left;
|
6864 |
-
}
|
6865 |
-
.bc-root .bc-uk-animation-slide-right {
|
6866 |
-
animation-name: uk-fade-right;
|
6867 |
-
}
|
6868 |
-
.bc-root .bc-uk-animation-slide-top-small {
|
6869 |
-
animation-name: uk-fade-top-small;
|
6870 |
-
}
|
6871 |
-
.bc-root .bc-uk-animation-slide-bottom-small {
|
6872 |
-
animation-name: uk-fade-bottom-small;
|
6873 |
-
}
|
6874 |
-
.bc-root .bc-uk-animation-slide-left-small {
|
6875 |
-
animation-name: uk-fade-left-small;
|
6876 |
-
}
|
6877 |
-
.bc-root .bc-uk-animation-slide-right-small {
|
6878 |
-
animation-name: uk-fade-right-small;
|
6879 |
-
}
|
6880 |
-
.bc-root .bc-uk-animation-slide-top-medium {
|
6881 |
-
animation-name: uk-fade-top-medium;
|
6882 |
-
}
|
6883 |
-
.bc-root .bc-uk-animation-slide-bottom-medium {
|
6884 |
-
animation-name: uk-fade-bottom-medium;
|
6885 |
-
}
|
6886 |
-
.bc-root .bc-uk-animation-slide-left-medium {
|
6887 |
-
animation-name: uk-fade-left-medium;
|
6888 |
-
}
|
6889 |
-
.bc-root .bc-uk-animation-slide-right-medium {
|
6890 |
-
animation-name: uk-fade-right-medium;
|
6891 |
-
}
|
6892 |
-
.bc-root .bc-uk-animation-kenburns {
|
6893 |
-
animation-name: uk-scale-kenburns;
|
6894 |
-
animation-duration: 15s;
|
6895 |
-
}
|
6896 |
-
.bc-root .bc-uk-animation-shake {
|
6897 |
-
animation-name: uk-shake;
|
6898 |
-
}
|
6899 |
-
.bc-root .bc-uk-animation-stroke {
|
6900 |
-
animation-name: uk-stroke;
|
6901 |
-
stroke-dasharray: var(--uk-animation-stroke);
|
6902 |
-
animation-duration: 2s;
|
6903 |
-
}
|
6904 |
-
.bc-root .bc-uk-animation-reverse {
|
6905 |
-
animation-direction: reverse;
|
6906 |
-
animation-timing-function: ease-in;
|
6907 |
-
}
|
6908 |
-
.bc-root .bc-uk-animation-fast {
|
6909 |
-
animation-duration: 0.1s;
|
6910 |
-
}
|
6911 |
-
.bc-root .bc-uk-animation-toggle:not(:hover):not(:focus) [class*=uk-animation-] {
|
6912 |
-
animation-name: none;
|
6913 |
-
}
|
6914 |
-
.bc-root .bc-uk-animation-toggle {
|
6915 |
-
/* 1 */
|
6916 |
-
-webkit-tap-highlight-color: transparent;
|
6917 |
-
}
|
6918 |
-
.bc-root .bc-uk-animation-toggle:focus {
|
6919 |
-
outline: none;
|
6920 |
-
}
|
6921 |
-
@keyframes uk-fade {
|
6922 |
-
0% {
|
6923 |
-
opacity: 0;
|
6924 |
-
}
|
6925 |
-
100% {
|
6926 |
-
opacity: 1;
|
6927 |
-
}
|
6928 |
-
}
|
6929 |
-
@keyframes uk-fade-top {
|
6930 |
-
0% {
|
6931 |
-
opacity: 0;
|
6932 |
-
transform: translateY(-100%);
|
6933 |
-
}
|
6934 |
-
100% {
|
6935 |
-
opacity: 1;
|
6936 |
-
transform: translateY(0);
|
6937 |
-
}
|
6938 |
-
}
|
6939 |
-
@keyframes uk-fade-bottom {
|
6940 |
-
0% {
|
6941 |
-
opacity: 0;
|
6942 |
-
transform: translateY(100%);
|
6943 |
-
}
|
6944 |
-
100% {
|
6945 |
-
opacity: 1;
|
6946 |
-
transform: translateY(0);
|
6947 |
-
}
|
6948 |
-
}
|
6949 |
-
@keyframes uk-fade-left {
|
6950 |
-
0% {
|
6951 |
-
opacity: 0;
|
6952 |
-
transform: translateX(-100%);
|
6953 |
-
}
|
6954 |
-
100% {
|
6955 |
-
opacity: 1;
|
6956 |
-
transform: translateX(0);
|
6957 |
-
}
|
6958 |
-
}
|
6959 |
-
@keyframes uk-fade-right {
|
6960 |
-
0% {
|
6961 |
-
opacity: 0;
|
6962 |
-
transform: translateX(100%);
|
6963 |
-
}
|
6964 |
-
100% {
|
6965 |
-
opacity: 1;
|
6966 |
-
transform: translateX(0);
|
6967 |
-
}
|
6968 |
-
}
|
6969 |
-
@keyframes uk-fade-top-small {
|
6970 |
-
0% {
|
6971 |
-
opacity: 0;
|
6972 |
-
transform: translateY(-10px);
|
6973 |
-
}
|
6974 |
-
100% {
|
6975 |
-
opacity: 1;
|
6976 |
-
transform: translateY(0);
|
6977 |
-
}
|
6978 |
-
}
|
6979 |
-
@keyframes uk-fade-bottom-small {
|
6980 |
-
0% {
|
6981 |
-
opacity: 0;
|
6982 |
-
transform: translateY(10px);
|
6983 |
-
}
|
6984 |
-
100% {
|
6985 |
-
opacity: 1;
|
6986 |
-
transform: translateY(0);
|
6987 |
-
}
|
6988 |
-
}
|
6989 |
-
@keyframes uk-fade-left-small {
|
6990 |
-
0% {
|
6991 |
-
opacity: 0;
|
6992 |
-
transform: translateX(-10px);
|
6993 |
-
}
|
6994 |
-
100% {
|
6995 |
-
opacity: 1;
|
6996 |
-
transform: translateX(0);
|
6997 |
-
}
|
6998 |
-
}
|
6999 |
-
@keyframes uk-fade-right-small {
|
7000 |
-
0% {
|
7001 |
-
opacity: 0;
|
7002 |
-
transform: translateX(10px);
|
7003 |
-
}
|
7004 |
-
100% {
|
7005 |
-
opacity: 1;
|
7006 |
-
transform: translateX(0);
|
7007 |
-
}
|
7008 |
-
}
|
7009 |
-
@keyframes uk-fade-top-medium {
|
7010 |
-
0% {
|
7011 |
-
opacity: 0;
|
7012 |
-
transform: translateY(-50px);
|
7013 |
-
}
|
7014 |
-
100% {
|
7015 |
-
opacity: 1;
|
7016 |
-
transform: translateY(0);
|
7017 |
-
}
|
7018 |
-
}
|
7019 |
-
@keyframes uk-fade-bottom-medium {
|
7020 |
-
0% {
|
7021 |
-
opacity: 0;
|
7022 |
-
transform: translateY(50px);
|
7023 |
-
}
|
7024 |
-
100% {
|
7025 |
-
opacity: 1;
|
7026 |
-
transform: translateY(0);
|
7027 |
-
}
|
7028 |
-
}
|
7029 |
-
@keyframes uk-fade-left-medium {
|
7030 |
-
0% {
|
7031 |
-
opacity: 0;
|
7032 |
-
transform: translateX(-50px);
|
7033 |
-
}
|
7034 |
-
100% {
|
7035 |
-
opacity: 1;
|
7036 |
-
transform: translateX(0);
|
7037 |
-
}
|
7038 |
-
}
|
7039 |
-
@keyframes uk-fade-right-medium {
|
7040 |
-
0% {
|
7041 |
-
opacity: 0;
|
7042 |
-
transform: translateX(50px);
|
7043 |
-
}
|
7044 |
-
100% {
|
7045 |
-
opacity: 1;
|
7046 |
-
transform: translateX(0);
|
7047 |
-
}
|
7048 |
-
}
|
7049 |
-
@keyframes uk-fade-scale-02 {
|
7050 |
-
0% {
|
7051 |
-
opacity: 0;
|
7052 |
-
transform: scale(0.2);
|
7053 |
-
}
|
7054 |
-
100% {
|
7055 |
-
opacity: 1;
|
7056 |
-
transform: scale(1);
|
7057 |
-
}
|
7058 |
-
}
|
7059 |
-
@keyframes uk-fade-scale-18 {
|
7060 |
-
0% {
|
7061 |
-
opacity: 0;
|
7062 |
-
transform: scale(1.8);
|
7063 |
-
}
|
7064 |
-
100% {
|
7065 |
-
opacity: 1;
|
7066 |
-
transform: scale(1);
|
7067 |
-
}
|
7068 |
-
}
|
7069 |
-
@keyframes uk-scale-kenburns {
|
7070 |
-
0% {
|
7071 |
-
transform: scale(1);
|
7072 |
-
}
|
7073 |
-
100% {
|
7074 |
-
transform: scale(1.2);
|
7075 |
-
}
|
7076 |
-
}
|
7077 |
-
@keyframes uk-shake {
|
7078 |
-
0%, 100% {
|
7079 |
-
transform: translateX(0);
|
7080 |
-
}
|
7081 |
-
10% {
|
7082 |
-
transform: translateX(-9px);
|
7083 |
-
}
|
7084 |
-
20% {
|
7085 |
-
transform: translateX(8px);
|
7086 |
-
}
|
7087 |
-
30% {
|
7088 |
-
transform: translateX(-7px);
|
7089 |
-
}
|
7090 |
-
40% {
|
7091 |
-
transform: translateX(6px);
|
7092 |
-
}
|
7093 |
-
50% {
|
7094 |
-
transform: translateX(-5px);
|
7095 |
-
}
|
7096 |
-
60% {
|
7097 |
-
transform: translateX(4px);
|
7098 |
-
}
|
7099 |
-
70% {
|
7100 |
-
transform: translateX(-3px);
|
7101 |
-
}
|
7102 |
-
80% {
|
7103 |
-
transform: translateX(2px);
|
7104 |
-
}
|
7105 |
-
90% {
|
7106 |
-
transform: translateX(-1px);
|
7107 |
-
}
|
7108 |
-
}
|
7109 |
-
@keyframes uk-stroke {
|
7110 |
-
0% {
|
7111 |
-
stroke-dashoffset: var(--uk-animation-stroke);
|
7112 |
-
}
|
7113 |
-
100% {
|
7114 |
-
stroke-dashoffset: 0;
|
7115 |
-
}
|
7116 |
-
}
|
7117 |
-
.bc-root [class*=uk-child-width] > * {
|
7118 |
-
box-sizing: border-box;
|
7119 |
-
width: 100%;
|
7120 |
-
}
|
7121 |
-
.bc-root .bc-uk-child-width-1-2 > * {
|
7122 |
-
width: 50%;
|
7123 |
-
}
|
7124 |
-
.bc-root .bc-uk-child-width-1-3 > * {
|
7125 |
-
width: calc(100% * 1 / 3.001);
|
7126 |
-
}
|
7127 |
-
.bc-root .bc-uk-child-width-1-4 > * {
|
7128 |
-
width: 25%;
|
7129 |
-
}
|
7130 |
-
.bc-root .bc-uk-child-width-1-5 > * {
|
7131 |
-
width: 20%;
|
7132 |
-
}
|
7133 |
-
.bc-root .bc-uk-child-width-1-6 > * {
|
7134 |
-
width: calc(100% * 1 / 6.001);
|
7135 |
-
}
|
7136 |
-
.bc-root .bc-uk-child-width-auto > * {
|
7137 |
-
width: auto;
|
7138 |
-
}
|
7139 |
-
.bc-root .bc-uk-child-width-expand > :not([class*=uk-width]) {
|
7140 |
-
flex: 1;
|
7141 |
-
/* 1 */
|
7142 |
-
min-width: 1px;
|
7143 |
-
}
|
7144 |
-
@media (min-width: 640px) {
|
7145 |
-
.bc-root .bc-uk-child-width-1-1\@s > * {
|
7146 |
-
width: 100%;
|
7147 |
-
}
|
7148 |
-
.bc-root .bc-uk-child-width-1-2\@s > * {
|
7149 |
-
width: 50%;
|
7150 |
-
}
|
7151 |
-
.bc-root .bc-uk-child-width-1-3\@s > * {
|
7152 |
-
width: calc(100% * 1 / 3.001);
|
7153 |
-
}
|
7154 |
-
.bc-root .bc-uk-child-width-1-4\@s > * {
|
7155 |
-
width: 25%;
|
7156 |
-
}
|
7157 |
-
.bc-root .bc-uk-child-width-1-5\@s > * {
|
7158 |
-
width: 20%;
|
7159 |
-
}
|
7160 |
-
.bc-root .bc-uk-child-width-1-6\@s > * {
|
7161 |
-
width: calc(100% * 1 / 6.001);
|
7162 |
-
}
|
7163 |
-
.bc-root .bc-uk-child-width-auto\@s > * {
|
7164 |
-
width: auto;
|
7165 |
-
}
|
7166 |
-
.bc-root .bc-uk-child-width-expand\@s > :not([class*=uk-width]) {
|
7167 |
-
flex: 1;
|
7168 |
-
min-width: 1px;
|
7169 |
-
}
|
7170 |
-
}
|
7171 |
-
@media (min-width: 960px) {
|
7172 |
-
.bc-root .bc-uk-child-width-1-1\@m > * {
|
7173 |
-
width: 100%;
|
7174 |
-
}
|
7175 |
-
.bc-root .bc-uk-child-width-1-2\@m > * {
|
7176 |
-
width: 50%;
|
7177 |
-
}
|
7178 |
-
.bc-root .bc-uk-child-width-1-3\@m > * {
|
7179 |
-
width: calc(100% * 1 / 3.001);
|
7180 |
-
}
|
7181 |
-
.bc-root .bc-uk-child-width-1-4\@m > * {
|
7182 |
-
width: 25%;
|
7183 |
-
}
|
7184 |
-
.bc-root .bc-uk-child-width-1-5\@m > * {
|
7185 |
-
width: 20%;
|
7186 |
-
}
|
7187 |
-
.bc-root .bc-uk-child-width-1-6\@m > * {
|
7188 |
-
width: calc(100% * 1 / 6.001);
|
7189 |
-
}
|
7190 |
-
.bc-root .bc-uk-child-width-auto\@m > * {
|
7191 |
-
width: auto;
|
7192 |
-
}
|
7193 |
-
.bc-root .bc-uk-child-width-expand\@m > :not([class*=uk-width]) {
|
7194 |
-
flex: 1;
|
7195 |
-
min-width: 1px;
|
7196 |
-
}
|
7197 |
-
}
|
7198 |
-
@media (min-width: 1200px) {
|
7199 |
-
.bc-root .bc-uk-child-width-1-1\@l > * {
|
7200 |
-
width: 100%;
|
7201 |
-
}
|
7202 |
-
.bc-root .bc-uk-child-width-1-2\@l > * {
|
7203 |
-
width: 50%;
|
7204 |
-
}
|
7205 |
-
.bc-root .bc-uk-child-width-1-3\@l > * {
|
7206 |
-
width: calc(100% * 1 / 3.001);
|
7207 |
-
}
|
7208 |
-
.bc-root .bc-uk-child-width-1-4\@l > * {
|
7209 |
-
width: 25%;
|
7210 |
-
}
|
7211 |
-
.bc-root .bc-uk-child-width-1-5\@l > * {
|
7212 |
-
width: 20%;
|
7213 |
-
}
|
7214 |
-
.bc-root .bc-uk-child-width-1-6\@l > * {
|
7215 |
-
width: calc(100% * 1 / 6.001);
|
7216 |
-
}
|
7217 |
-
.bc-root .bc-uk-child-width-auto\@l > * {
|
7218 |
-
width: auto;
|
7219 |
-
}
|
7220 |
-
.bc-root .bc-uk-child-width-expand\@l > :not([class*=uk-width]) {
|
7221 |
-
flex: 1;
|
7222 |
-
min-width: 1px;
|
7223 |
-
}
|
7224 |
-
}
|
7225 |
-
@media (min-width: 1600px) {
|
7226 |
-
.bc-root .bc-uk-child-width-1-1\@xl > * {
|
7227 |
-
width: 100%;
|
7228 |
-
}
|
7229 |
-
.bc-root .bc-uk-child-width-1-2\@xl > * {
|
7230 |
-
width: 50%;
|
7231 |
-
}
|
7232 |
-
.bc-root .bc-uk-child-width-1-3\@xl > * {
|
7233 |
-
width: calc(100% * 1 / 3.001);
|
7234 |
-
}
|
7235 |
-
.bc-root .bc-uk-child-width-1-4\@xl > * {
|
7236 |
-
width: 25%;
|
7237 |
-
}
|
7238 |
-
.bc-root .bc-uk-child-width-1-5\@xl > * {
|
7239 |
-
width: 20%;
|
7240 |
-
}
|
7241 |
-
.bc-root .bc-uk-child-width-1-6\@xl > * {
|
7242 |
-
width: calc(100% * 1 / 6.001);
|
7243 |
-
}
|
7244 |
-
.bc-root .bc-uk-child-width-auto\@xl > * {
|
7245 |
-
width: auto;
|
7246 |
-
}
|
7247 |
-
.bc-root .bc-uk-child-width-expand\@xl > :not([class*=uk-width]) {
|
7248 |
-
flex: 1;
|
7249 |
-
min-width: 1px;
|
7250 |
-
}
|
7251 |
-
}
|
7252 |
-
.bc-root [class*=uk-width] {
|
7253 |
-
box-sizing: border-box;
|
7254 |
-
width: 100%;
|
7255 |
-
/* 1 */
|
7256 |
-
max-width: 100%;
|
7257 |
-
}
|
7258 |
-
.bc-root .bc-uk-width-1-2 {
|
7259 |
-
width: 50%;
|
7260 |
-
}
|
7261 |
-
.bc-root .bc-uk-width-1-3 {
|
7262 |
-
width: calc(100% * 1 / 3.001);
|
7263 |
-
}
|
7264 |
-
.bc-root .bc-uk-width-2-3 {
|
7265 |
-
width: calc(100% * 2 / 3.001);
|
7266 |
-
}
|
7267 |
-
.bc-root .bc-uk-width-1-4 {
|
7268 |
-
width: 25%;
|
7269 |
-
}
|
7270 |
-
.bc-root .bc-uk-width-3-4 {
|
7271 |
-
width: 75%;
|
7272 |
-
}
|
7273 |
-
.bc-root .bc-uk-width-1-5 {
|
7274 |
-
width: 20%;
|
7275 |
-
}
|
7276 |
-
.bc-root .bc-uk-width-2-5 {
|
7277 |
-
width: 40%;
|
7278 |
-
}
|
7279 |
-
.bc-root .bc-uk-width-3-5 {
|
7280 |
-
width: 60%;
|
7281 |
-
}
|
7282 |
-
.bc-root .bc-uk-width-4-5 {
|
7283 |
-
width: 80%;
|
7284 |
-
}
|
7285 |
-
.bc-root .bc-uk-width-1-6 {
|
7286 |
-
width: calc(100% * 1 / 6.001);
|
7287 |
-
}
|
7288 |
-
.bc-root .bc-uk-width-5-6 {
|
7289 |
-
width: calc(100% * 5 / 6.001);
|
7290 |
-
}
|
7291 |
-
.bc-root .bc-uk-width-small {
|
7292 |
-
width: 150px;
|
7293 |
-
}
|
7294 |
-
.bc-root .bc-uk-width-medium {
|
7295 |
-
width: 300px;
|
7296 |
-
}
|
7297 |
-
.bc-root .bc-uk-width-large {
|
7298 |
-
width: 450px;
|
7299 |
-
}
|
7300 |
-
.bc-root .bc-uk-width-xlarge {
|
7301 |
-
width: 600px;
|
7302 |
-
}
|
7303 |
-
.bc-root .bc-uk-width-xxlarge {
|
7304 |
-
width: 750px;
|
7305 |
-
}
|
7306 |
-
.bc-root .bc-uk-width-auto {
|
7307 |
-
width: auto;
|
7308 |
-
}
|
7309 |
-
.bc-root .bc-uk-width-expand {
|
7310 |
-
flex: 1;
|
7311 |
-
min-width: 1px;
|
7312 |
-
}
|
7313 |
-
@media (min-width: 640px) {
|
7314 |
-
.bc-root {
|
7315 |
-
/* Whole */
|
7316 |
-
/* Halves */
|
7317 |
-
/* Thirds */
|
7318 |
-
/* Quarters */
|
7319 |
-
/* Fifths */
|
7320 |
-
/* Sixths */
|
7321 |
-
/* Pixel */
|
7322 |
-
/* Auto */
|
7323 |
-
/* Expand */
|
7324 |
-
}
|
7325 |
-
.bc-root .bc-uk-width-1-1\@s {
|
7326 |
-
width: 100%;
|
7327 |
-
}
|
7328 |
-
.bc-root .bc-uk-width-1-2\@s {
|
7329 |
-
width: 50%;
|
7330 |
-
}
|
7331 |
-
.bc-root .bc-uk-width-1-3\@s {
|
7332 |
-
width: calc(100% * 1 / 3.001);
|
7333 |
-
}
|
7334 |
-
.bc-root .bc-uk-width-2-3\@s {
|
7335 |
-
width: calc(100% * 2 / 3.001);
|
7336 |
-
}
|
7337 |
-
.bc-root .bc-uk-width-1-4\@s {
|
7338 |
-
width: 25%;
|
7339 |
-
}
|
7340 |
-
.bc-root .bc-uk-width-3-4\@s {
|
7341 |
-
width: 75%;
|
7342 |
-
}
|
7343 |
-
.bc-root .bc-uk-width-1-5\@s {
|
7344 |
-
width: 20%;
|
7345 |
-
}
|
7346 |
-
.bc-root .bc-uk-width-2-5\@s {
|
7347 |
-
width: 40%;
|
7348 |
-
}
|
7349 |
-
.bc-root .bc-uk-width-3-5\@s {
|
7350 |
-
width: 60%;
|
7351 |
-
}
|
7352 |
-
.bc-root .bc-uk-width-4-5\@s {
|
7353 |
-
width: 80%;
|
7354 |
-
}
|
7355 |
-
.bc-root .bc-uk-width-1-6\@s {
|
7356 |
-
width: calc(100% * 1 / 6.001);
|
7357 |
-
}
|
7358 |
-
.bc-root .bc-uk-width-5-6\@s {
|
7359 |
-
width: calc(100% * 5 / 6.001);
|
7360 |
-
}
|
7361 |
-
.bc-root .bc-uk-width-small\@s {
|
7362 |
-
width: 150px;
|
7363 |
-
}
|
7364 |
-
.bc-root .bc-uk-width-medium\@s {
|
7365 |
-
width: 300px;
|
7366 |
-
}
|
7367 |
-
.bc-root .bc-uk-width-large\@s {
|
7368 |
-
width: 450px;
|
7369 |
-
}
|
7370 |
-
.bc-root .bc-uk-width-xlarge\@s {
|
7371 |
-
width: 600px;
|
7372 |
-
}
|
7373 |
-
.bc-root .bc-uk-width-xxlarge\@s {
|
7374 |
-
width: 750px;
|
7375 |
-
}
|
7376 |
-
.bc-root .bc-uk-width-auto\@s {
|
7377 |
-
width: auto;
|
7378 |
-
}
|
7379 |
-
.bc-root .bc-uk-width-expand\@s {
|
7380 |
-
flex: 1;
|
7381 |
-
min-width: 1px;
|
7382 |
-
}
|
7383 |
-
}
|
7384 |
-
@media (min-width: 960px) {
|
7385 |
-
.bc-root {
|
7386 |
-
/* Whole */
|
7387 |
-
/* Halves */
|
7388 |
-
/* Thirds */
|
7389 |
-
/* Quarters */
|
7390 |
-
/* Fifths */
|
7391 |
-
/* Sixths */
|
7392 |
-
/* Pixel */
|
7393 |
-
/* Auto */
|
7394 |
-
/* Expand */
|
7395 |
-
}
|
7396 |
-
.bc-root .bc-uk-width-1-1\@m {
|
7397 |
-
width: 100%;
|
7398 |
-
}
|
7399 |
-
.bc-root .bc-uk-width-1-2\@m {
|
7400 |
-
width: 50%;
|
7401 |
-
}
|
7402 |
-
.bc-root .bc-uk-width-1-3\@m {
|
7403 |
-
width: calc(100% * 1 / 3.001);
|
7404 |
-
}
|
7405 |
-
.bc-root .bc-uk-width-2-3\@m {
|
7406 |
-
width: calc(100% * 2 / 3.001);
|
7407 |
-
}
|
7408 |
-
.bc-root .bc-uk-width-1-4\@m {
|
7409 |
-
width: 25%;
|
7410 |
-
}
|
7411 |
-
.bc-root .bc-uk-width-3-4\@m {
|
7412 |
-
width: 75%;
|
7413 |
-
}
|
7414 |
-
.bc-root .bc-uk-width-1-5\@m {
|
7415 |
-
width: 20%;
|
7416 |
-
}
|
7417 |
-
.bc-root .bc-uk-width-2-5\@m {
|
7418 |
-
width: 40%;
|
7419 |
-
}
|
7420 |
-
.bc-root .bc-uk-width-3-5\@m {
|
7421 |
-
width: 60%;
|
7422 |
-
}
|
7423 |
-
.bc-root .bc-uk-width-4-5\@m {
|
7424 |
-
width: 80%;
|
7425 |
-
}
|
7426 |
-
.bc-root .bc-uk-width-1-6\@m {
|
7427 |
-
width: calc(100% * 1 / 6.001);
|
7428 |
-
}
|
7429 |
-
.bc-root .bc-uk-width-5-6\@m {
|
7430 |
-
width: calc(100% * 5 / 6.001);
|
7431 |
-
}
|
7432 |
-
.bc-root .bc-uk-width-small\@m {
|
7433 |
-
width: 150px;
|
7434 |
-
}
|
7435 |
-
.bc-root .bc-uk-width-medium\@m {
|
7436 |
-
width: 300px;
|
7437 |
-
}
|
7438 |
-
.bc-root .bc-uk-width-large\@m {
|
7439 |
-
width: 450px;
|
7440 |
-
}
|
7441 |
-
.bc-root .bc-uk-width-xlarge\@m {
|
7442 |
-
width: 600px;
|
7443 |
-
}
|
7444 |
-
.bc-root .bc-uk-width-xxlarge\@m {
|
7445 |
-
width: 750px;
|
7446 |
-
}
|
7447 |
-
.bc-root .bc-uk-width-auto\@m {
|
7448 |
-
width: auto;
|
7449 |
-
}
|
7450 |
-
.bc-root .bc-uk-width-expand\@m {
|
7451 |
-
flex: 1;
|
7452 |
-
min-width: 1px;
|
7453 |
-
}
|
7454 |
-
}
|
7455 |
-
@media (min-width: 1200px) {
|
7456 |
-
.bc-root {
|
7457 |
-
/* Whole */
|
7458 |
-
/* Halves */
|
7459 |
-
/* Thirds */
|
7460 |
-
/* Quarters */
|
7461 |
-
/* Fifths */
|
7462 |
-
/* Sixths */
|
7463 |
-
/* Pixel */
|
7464 |
-
/* Auto */
|
7465 |
-
/* Expand */
|
7466 |
-
}
|
7467 |
-
.bc-root .bc-uk-width-1-1\@l {
|
7468 |
-
width: 100%;
|
7469 |
-
}
|
7470 |
-
.bc-root .bc-uk-width-1-2\@l {
|
7471 |
-
width: 50%;
|
7472 |
-
}
|
7473 |
-
.bc-root .bc-uk-width-1-3\@l {
|
7474 |
-
width: calc(100% * 1 / 3.001);
|
7475 |
-
}
|
7476 |
-
.bc-root .bc-uk-width-2-3\@l {
|
7477 |
-
width: calc(100% * 2 / 3.001);
|
7478 |
-
}
|
7479 |
-
.bc-root .bc-uk-width-1-4\@l {
|
7480 |
-
width: 25%;
|
7481 |
-
}
|
7482 |
-
.bc-root .bc-uk-width-3-4\@l {
|
7483 |
-
width: 75%;
|
7484 |
-
}
|
7485 |
-
.bc-root .bc-uk-width-1-5\@l {
|
7486 |
-
width: 20%;
|
7487 |
-
}
|
7488 |
-
.bc-root .bc-uk-width-2-5\@l {
|
7489 |
-
width: 40%;
|
7490 |
-
}
|
7491 |
-
.bc-root .bc-uk-width-3-5\@l {
|
7492 |
-
width: 60%;
|
7493 |
-
}
|
7494 |
-
.bc-root .bc-uk-width-4-5\@l {
|
7495 |
-
width: 80%;
|
7496 |
-
}
|
7497 |
-
.bc-root .bc-uk-width-1-6\@l {
|
7498 |
-
width: calc(100% * 1 / 6.001);
|
7499 |
-
}
|
7500 |
-
.bc-root .bc-uk-width-5-6\@l {
|
7501 |
-
width: calc(100% * 5 / 6.001);
|
7502 |
-
}
|
7503 |
-
.bc-root .bc-uk-width-small\@l {
|
7504 |
-
width: 150px;
|
7505 |
-
}
|
7506 |
-
.bc-root .bc-uk-width-medium\@l {
|
7507 |
-
width: 300px;
|
7508 |
-
}
|
7509 |
-
.bc-root .bc-uk-width-large\@l {
|
7510 |
-
width: 450px;
|
7511 |
-
}
|
7512 |
-
.bc-root .bc-uk-width-xlarge\@l {
|
7513 |
-
width: 600px;
|
7514 |
-
}
|
7515 |
-
.bc-root .bc-uk-width-xxlarge\@l {
|
7516 |
-
width: 750px;
|
7517 |
-
}
|
7518 |
-
.bc-root .bc-uk-width-auto\@l {
|
7519 |
-
width: auto;
|
7520 |
-
}
|
7521 |
-
.bc-root .bc-uk-width-expand\@l {
|
7522 |
-
flex: 1;
|
7523 |
-
min-width: 1px;
|
7524 |
-
}
|
7525 |
-
}
|
7526 |
-
@media (min-width: 1600px) {
|
7527 |
-
.bc-root {
|
7528 |
-
/* Whole */
|
7529 |
-
/* Halves */
|
7530 |
-
/* Thirds */
|
7531 |
-
/* Quarters */
|
7532 |
-
/* Fifths */
|
7533 |
-
/* Sixths */
|
7534 |
-
/* Pixel */
|
7535 |
-
/* Auto */
|
7536 |
-
/* Expand */
|
7537 |
-
}
|
7538 |
-
.bc-root .bc-uk-width-1-1\@xl {
|
7539 |
-
width: 100%;
|
7540 |
-
}
|
7541 |
-
.bc-root .bc-uk-width-1-2\@xl {
|
7542 |
-
width: 50%;
|
7543 |
-
}
|
7544 |
-
.bc-root .bc-uk-width-1-3\@xl {
|
7545 |
-
width: calc(100% * 1 / 3.001);
|
7546 |
-
}
|
7547 |
-
.bc-root .bc-uk-width-2-3\@xl {
|
7548 |
-
width: calc(100% * 2 / 3.001);
|
7549 |
-
}
|
7550 |
-
.bc-root .bc-uk-width-1-4\@xl {
|
7551 |
-
width: 25%;
|
7552 |
-
}
|
7553 |
-
.bc-root .bc-uk-width-3-4\@xl {
|
7554 |
-
width: 75%;
|
7555 |
-
}
|
7556 |
-
.bc-root .bc-uk-width-1-5\@xl {
|
7557 |
-
width: 20%;
|
7558 |
-
}
|
7559 |
-
.bc-root .bc-uk-width-2-5\@xl {
|
7560 |
-
width: 40%;
|
7561 |
-
}
|
7562 |
-
.bc-root .bc-uk-width-3-5\@xl {
|
7563 |
-
width: 60%;
|
7564 |
-
}
|
7565 |
-
.bc-root .bc-uk-width-4-5\@xl {
|
7566 |
-
width: 80%;
|
7567 |
-
}
|
7568 |
-
.bc-root .bc-uk-width-1-6\@xl {
|
7569 |
-
width: calc(100% * 1 / 6.001);
|
7570 |
-
}
|
7571 |
-
.bc-root .bc-uk-width-5-6\@xl {
|
7572 |
-
width: calc(100% * 5 / 6.001);
|
7573 |
-
}
|
7574 |
-
.bc-root .bc-uk-width-small\@xl {
|
7575 |
-
width: 150px;
|
7576 |
-
}
|
7577 |
-
.bc-root .bc-uk-width-medium\@xl {
|
7578 |
-
width: 300px;
|
7579 |
-
}
|
7580 |
-
.bc-root .bc-uk-width-large\@xl {
|
7581 |
-
width: 450px;
|
7582 |
-
}
|
7583 |
-
.bc-root .bc-uk-width-xlarge\@xl {
|
7584 |
-
width: 600px;
|
7585 |
-
}
|
7586 |
-
.bc-root .bc-uk-width-xxlarge\@xl {
|
7587 |
-
width: 750px;
|
7588 |
-
}
|
7589 |
-
.bc-root .bc-uk-width-auto\@xl {
|
7590 |
-
width: auto;
|
7591 |
-
}
|
7592 |
-
.bc-root .bc-uk-width-expand\@xl {
|
7593 |
-
flex: 1;
|
7594 |
-
min-width: 1px;
|
7595 |
-
}
|
7596 |
-
}
|
7597 |
-
.bc-root [class*=uk-height] {
|
7598 |
-
box-sizing: border-box;
|
7599 |
-
}
|
7600 |
-
.bc-root .bc-uk-height-1-1 {
|
7601 |
-
height: 100%;
|
7602 |
-
}
|
7603 |
-
.bc-root .bc-uk-height-viewport {
|
7604 |
-
min-height: 100vh;
|
7605 |
-
}
|
7606 |
-
.bc-root .bc-uk-height-small {
|
7607 |
-
height: 150px;
|
7608 |
-
}
|
7609 |
-
.bc-root .bc-uk-height-medium {
|
7610 |
-
height: 300px;
|
7611 |
-
}
|
7612 |
-
.bc-root .bc-uk-height-large {
|
7613 |
-
height: 450px;
|
7614 |
-
}
|
7615 |
-
.bc-root .bc-uk-height-max-small {
|
7616 |
-
max-height: 150px;
|
7617 |
-
}
|
7618 |
-
.bc-root .bc-uk-height-max-medium {
|
7619 |
-
max-height: 300px;
|
7620 |
-
}
|
7621 |
-
.bc-root .bc-uk-height-max-large {
|
7622 |
-
max-height: 450px;
|
7623 |
-
}
|
7624 |
-
.bc-root .bc-uk-text-lead {
|
7625 |
-
font-size: 1.5rem;
|
7626 |
-
line-height: 1.5;
|
7627 |
-
color: #333;
|
7628 |
-
}
|
7629 |
-
.bc-root .bc-uk-text-meta {
|
7630 |
-
font-size: 0.875rem;
|
7631 |
-
line-height: 1.4;
|
7632 |
-
color: #999;
|
7633 |
-
}
|
7634 |
-
.bc-root .bc-uk-text-meta a {
|
7635 |
-
color: #999;
|
7636 |
-
}
|
7637 |
-
.bc-root .bc-uk-text-meta a:hover {
|
7638 |
-
color: #666;
|
7639 |
-
text-decoration: none;
|
7640 |
-
}
|
7641 |
-
.bc-root .bc-uk-text-small {
|
7642 |
-
font-size: 0.875rem;
|
7643 |
-
line-height: 1.5;
|
7644 |
-
}
|
7645 |
-
.bc-root .bc-uk-text-large {
|
7646 |
-
font-size: 1.5rem;
|
7647 |
-
line-height: 1.5;
|
7648 |
-
}
|
7649 |
-
.bc-root .bc-uk-text-bold {
|
7650 |
-
font-weight: bolder;
|
7651 |
-
}
|
7652 |
-
.bc-root .bc-uk-text-uppercase {
|
7653 |
-
text-transform: uppercase !important;
|
7654 |
-
}
|
7655 |
-
.bc-root .bc-uk-text-capitalize {
|
7656 |
-
text-transform: capitalize !important;
|
7657 |
-
}
|
7658 |
-
.bc-root .bc-uk-text-lowercase {
|
7659 |
-
text-transform: lowercase !important;
|
7660 |
-
}
|
7661 |
-
.bc-root .bc-uk-text-muted {
|
7662 |
-
color: #999 !important;
|
7663 |
-
}
|
7664 |
-
.bc-root .bc-uk-text-emphasis {
|
7665 |
-
color: #333 !important;
|
7666 |
-
}
|
7667 |
-
.bc-root .bc-uk-text-primary {
|
7668 |
-
color: #1e87f0 !important;
|
7669 |
-
}
|
7670 |
-
.bc-root .bc-uk-text-secondary {
|
7671 |
-
color: #222 !important;
|
7672 |
-
}
|
7673 |
-
.bc-root .bc-uk-text-success {
|
7674 |
-
color: #32d296 !important;
|
7675 |
-
}
|
7676 |
-
.bc-root .bc-uk-text-warning {
|
7677 |
-
color: #faa05a !important;
|
7678 |
-
}
|
7679 |
-
.bc-root .bc-uk-text-danger {
|
7680 |
-
color: #f0506e !important;
|
7681 |
-
}
|
7682 |
-
.bc-root .bc-uk-text-background {
|
7683 |
-
/* 1 */
|
7684 |
-
-webkit-background-clip: text;
|
7685 |
-
-webkit-text-fill-color: transparent;
|
7686 |
-
/* 2 */
|
7687 |
-
display: inline-block;
|
7688 |
-
/* 3 */
|
7689 |
-
color: #1e87f0 !important;
|
7690 |
-
}
|
7691 |
-
@supports (-webkit-background-clip: text) {
|
7692 |
-
.bc-root .bc-uk-text-background {
|
7693 |
-
background-color: #1e87f0;
|
7694 |
-
}
|
7695 |
-
}
|
7696 |
-
.bc-root .bc-uk-text-left {
|
7697 |
-
text-align: left !important;
|
7698 |
-
}
|
7699 |
-
.bc-root .bc-uk-text-right {
|
7700 |
-
text-align: right !important;
|
7701 |
-
}
|
7702 |
-
.bc-root .bc-uk-text-center {
|
7703 |
-
text-align: center !important;
|
7704 |
-
}
|
7705 |
-
.bc-root .bc-uk-text-justify {
|
7706 |
-
text-align: justify !important;
|
7707 |
-
}
|
7708 |
-
@media (min-width: 640px) {
|
7709 |
-
.bc-root .bc-uk-text-left\@s {
|
7710 |
-
text-align: left !important;
|
7711 |
-
}
|
7712 |
-
.bc-root .bc-uk-text-right\@s {
|
7713 |
-
text-align: right !important;
|
7714 |
-
}
|
7715 |
-
.bc-root .bc-uk-text-center\@s {
|
7716 |
-
text-align: center !important;
|
7717 |
-
}
|
7718 |
-
}
|
7719 |
-
@media (min-width: 960px) {
|
7720 |
-
.bc-root .bc-uk-text-left\@m {
|
7721 |
-
text-align: left !important;
|
7722 |
-
}
|
7723 |
-
.bc-root .bc-uk-text-right\@m {
|
7724 |
-
text-align: right !important;
|
7725 |
-
}
|
7726 |
-
.bc-root .bc-uk-text-center\@m {
|
7727 |
-
text-align: center !important;
|
7728 |
-
}
|
7729 |
-
}
|
7730 |
-
@media (min-width: 1200px) {
|
7731 |
-
.bc-root .bc-uk-text-left\@l {
|
7732 |
-
text-align: left !important;
|
7733 |
-
}
|
7734 |
-
.bc-root .bc-uk-text-right\@l {
|
7735 |
-
text-align: right !important;
|
7736 |
-
}
|
7737 |
-
.bc-root .bc-uk-text-center\@l {
|
7738 |
-
text-align: center !important;
|
7739 |
-
}
|
7740 |
-
}
|
7741 |
-
@media (min-width: 1600px) {
|
7742 |
-
.bc-root .bc-uk-text-left\@xl {
|
7743 |
-
text-align: left !important;
|
7744 |
-
}
|
7745 |
-
.bc-root .bc-uk-text-right\@xl {
|
7746 |
-
text-align: right !important;
|
7747 |
-
}
|
7748 |
-
.bc-root .bc-uk-text-center\@xl {
|
7749 |
-
text-align: center !important;
|
7750 |
-
}
|
7751 |
-
}
|
7752 |
-
.bc-root .bc-uk-text-top {
|
7753 |
-
vertical-align: top !important;
|
7754 |
-
}
|
7755 |
-
.bc-root .bc-uk-text-middle {
|
7756 |
-
vertical-align: middle !important;
|
7757 |
-
}
|
7758 |
-
.bc-root .bc-uk-text-bottom {
|
7759 |
-
vertical-align: bottom !important;
|
7760 |
-
}
|
7761 |
-
.bc-root .bc-uk-text-baseline {
|
7762 |
-
vertical-align: baseline !important;
|
7763 |
-
}
|
7764 |
-
.bc-root .bc-uk-text-nowrap {
|
7765 |
-
white-space: nowrap;
|
7766 |
-
}
|
7767 |
-
.bc-root .bc-uk-text-truncate {
|
7768 |
-
/* 1 */
|
7769 |
-
max-width: 100%;
|
7770 |
-
/* 2 */
|
7771 |
-
overflow: hidden;
|
7772 |
-
text-overflow: ellipsis;
|
7773 |
-
white-space: nowrap;
|
7774 |
-
}
|
7775 |
-
.bc-root th.bc-uk-text-truncate,
|
7776 |
-
.bc-root td.bc-uk-text-truncate {
|
7777 |
-
max-width: 0;
|
7778 |
-
}
|
7779 |
-
.bc-root .bc-uk-text-break {
|
7780 |
-
/* 1 */
|
7781 |
-
overflow-wrap: break-word;
|
7782 |
-
/* 2 */
|
7783 |
-
word-wrap: break-word;
|
7784 |
-
}
|
7785 |
-
.bc-root th.bc-uk-text-break,
|
7786 |
-
.bc-root td.bc-uk-text-break {
|
7787 |
-
word-break: break-all;
|
7788 |
-
}
|
7789 |
-
.bc-root [class*=uk-column-] {
|
7790 |
-
column-gap: 30px;
|
7791 |
-
}
|
7792 |
-
@media (min-width: 1200px) {
|
7793 |
-
.bc-root [class*=uk-column-] {
|
7794 |
-
column-gap: 40px;
|
7795 |
-
}
|
7796 |
-
}
|
7797 |
-
.bc-root [class*=uk-column-] img {
|
7798 |
-
transform: translate3d(0, 0, 0);
|
7799 |
-
}
|
7800 |
-
.bc-root .bc-uk-column-divider {
|
7801 |
-
column-rule: 1px solid #e5e5e5;
|
7802 |
-
/* 1 */
|
7803 |
-
column-gap: 60px;
|
7804 |
-
}
|
7805 |
-
@media (min-width: 1200px) {
|
7806 |
-
.bc-root .bc-uk-column-divider {
|
7807 |
-
column-gap: 80px;
|
7808 |
-
}
|
7809 |
-
}
|
7810 |
-
.bc-root .bc-uk-column-1-2 {
|
7811 |
-
column-count: 2;
|
7812 |
-
}
|
7813 |
-
.bc-root .bc-uk-column-1-3 {
|
7814 |
-
column-count: 3;
|
7815 |
-
}
|
7816 |
-
.bc-root .bc-uk-column-1-4 {
|
7817 |
-
column-count: 4;
|
7818 |
-
}
|
7819 |
-
.bc-root .bc-uk-column-1-5 {
|
7820 |
-
column-count: 5;
|
7821 |
-
}
|
7822 |
-
.bc-root .bc-uk-column-1-6 {
|
7823 |
-
column-count: 6;
|
7824 |
-
}
|
7825 |
-
@media (min-width: 640px) {
|
7826 |
-
.bc-root .bc-uk-column-1-2\@s {
|
7827 |
-
column-count: 2;
|
7828 |
-
}
|
7829 |
-
.bc-root .bc-uk-column-1-3\@s {
|
7830 |
-
column-count: 3;
|
7831 |
-
}
|
7832 |
-
.bc-root .bc-uk-column-1-4\@s {
|
7833 |
-
column-count: 4;
|
7834 |
-
}
|
7835 |
-
.bc-root .bc-uk-column-1-5\@s {
|
7836 |
-
column-count: 5;
|
7837 |
-
}
|
7838 |
-
.bc-root .bc-uk-column-1-6\@s {
|
7839 |
-
column-count: 6;
|
7840 |
-
}
|
7841 |
-
}
|
7842 |
-
@media (min-width: 960px) {
|
7843 |
-
.bc-root .bc-uk-column-1-2\@m {
|
7844 |
-
column-count: 2;
|
7845 |
-
}
|
7846 |
-
.bc-root .bc-uk-column-1-3\@m {
|
7847 |
-
column-count: 3;
|
7848 |
-
}
|
7849 |
-
.bc-root .bc-uk-column-1-4\@m {
|
7850 |
-
column-count: 4;
|
7851 |
-
}
|
7852 |
-
.bc-root .bc-uk-column-1-5\@m {
|
7853 |
-
column-count: 5;
|
7854 |
-
}
|
7855 |
-
.bc-root .bc-uk-column-1-6\@m {
|
7856 |
-
column-count: 6;
|
7857 |
-
}
|
7858 |
-
}
|
7859 |
-
@media (min-width: 1200px) {
|
7860 |
-
.bc-root .bc-uk-column-1-2\@l {
|
7861 |
-
column-count: 2;
|
7862 |
-
}
|
7863 |
-
.bc-root .bc-uk-column-1-3\@l {
|
7864 |
-
column-count: 3;
|
7865 |
-
}
|
7866 |
-
.bc-root .bc-uk-column-1-4\@l {
|
7867 |
-
column-count: 4;
|
7868 |
-
}
|
7869 |
-
.bc-root .bc-uk-column-1-5\@l {
|
7870 |
-
column-count: 5;
|
7871 |
-
}
|
7872 |
-
.bc-root .bc-uk-column-1-6\@l {
|
7873 |
-
column-count: 6;
|
7874 |
-
}
|
7875 |
-
}
|
7876 |
-
@media (min-width: 1600px) {
|
7877 |
-
.bc-root .bc-uk-column-1-2\@xl {
|
7878 |
-
column-count: 2;
|
7879 |
-
}
|
7880 |
-
.bc-root .bc-uk-column-1-3\@xl {
|
7881 |
-
column-count: 3;
|
7882 |
-
}
|
7883 |
-
.bc-root .bc-uk-column-1-4\@xl {
|
7884 |
-
column-count: 4;
|
7885 |
-
}
|
7886 |
-
.bc-root .bc-uk-column-1-5\@xl {
|
7887 |
-
column-count: 5;
|
7888 |
-
}
|
7889 |
-
.bc-root .bc-uk-column-1-6\@xl {
|
7890 |
-
column-count: 6;
|
7891 |
-
}
|
7892 |
-
}
|
7893 |
-
.bc-root .bc-uk-column-span {
|
7894 |
-
column-span: all;
|
7895 |
-
}
|
7896 |
-
.bc-root .bc-uk-cover {
|
7897 |
-
/* 1 */
|
7898 |
-
max-width: none;
|
7899 |
-
/* 2 */
|
7900 |
-
position: absolute;
|
7901 |
-
left: 50%;
|
7902 |
-
top: 50%;
|
7903 |
-
transform: translate(-50%, -50%);
|
7904 |
-
}
|
7905 |
-
.bc-root iframe.bc-uk-cover {
|
7906 |
-
pointer-events: none;
|
7907 |
-
}
|
7908 |
-
.bc-root .bc-uk-cover-container {
|
7909 |
-
/* 1 */
|
7910 |
-
overflow: hidden;
|
7911 |
-
/* 2 */
|
7912 |
-
position: relative;
|
7913 |
-
}
|
7914 |
-
.bc-root .bc-uk-background-default {
|
7915 |
-
background-color: #fff;
|
7916 |
-
}
|
7917 |
-
.bc-root .bc-uk-background-muted {
|
7918 |
-
background-color: #f8f8f8;
|
7919 |
-
}
|
7920 |
-
.bc-root .bc-uk-background-primary {
|
7921 |
-
background-color: #1e87f0;
|
7922 |
-
}
|
7923 |
-
.bc-root .bc-uk-background-secondary {
|
7924 |
-
background-color: #222;
|
7925 |
-
}
|
7926 |
-
.bc-root .bc-uk-background-cover,
|
7927 |
-
.bc-root .bc-uk-background-contain {
|
7928 |
-
background-position: 50% 50%;
|
7929 |
-
background-repeat: no-repeat;
|
7930 |
-
}
|
7931 |
-
.bc-root .bc-uk-background-cover {
|
7932 |
-
background-size: cover;
|
7933 |
-
}
|
7934 |
-
.bc-root .bc-uk-background-contain {
|
7935 |
-
background-size: contain;
|
7936 |
-
}
|
7937 |
-
.bc-root .bc-uk-background-top-left {
|
7938 |
-
background-position: 0 0;
|
7939 |
-
}
|
7940 |
-
.bc-root .bc-uk-background-top-center {
|
7941 |
-
background-position: 50% 0;
|
7942 |
-
}
|
7943 |
-
.bc-root .bc-uk-background-top-right {
|
7944 |
-
background-position: 100% 0;
|
7945 |
-
}
|
7946 |
-
.bc-root .bc-uk-background-center-left {
|
7947 |
-
background-position: 0 50%;
|
7948 |
-
}
|
7949 |
-
.bc-root .bc-uk-background-center-center {
|
7950 |
-
background-position: 50% 50%;
|
7951 |
-
}
|
7952 |
-
.bc-root .bc-uk-background-center-right {
|
7953 |
-
background-position: 100% 50%;
|
7954 |
-
}
|
7955 |
-
.bc-root .bc-uk-background-bottom-left {
|
7956 |
-
background-position: 0 100%;
|
7957 |
-
}
|
7958 |
-
.bc-root .bc-uk-background-bottom-center {
|
7959 |
-
background-position: 50% 100%;
|
7960 |
-
}
|
7961 |
-
.bc-root .bc-uk-background-bottom-right {
|
7962 |
-
background-position: 100% 100%;
|
7963 |
-
}
|
7964 |
-
.bc-root .bc-uk-background-norepeat {
|
7965 |
-
background-repeat: no-repeat;
|
7966 |
-
}
|
7967 |
-
.bc-root .bc-uk-background-fixed {
|
7968 |
-
background-attachment: fixed;
|
7969 |
-
/* 1 */
|
7970 |
-
backface-visibility: hidden;
|
7971 |
-
}
|
7972 |
-
@media (pointer: coarse) {
|
7973 |
-
.bc-root .bc-uk-background-fixed {
|
7974 |
-
background-attachment: scroll;
|
7975 |
-
}
|
7976 |
-
}
|
7977 |
-
@media (max-width: 639px) {
|
7978 |
-
.bc-root .bc-uk-background-image\@s {
|
7979 |
-
background-image: none !important;
|
7980 |
-
}
|
7981 |
-
}
|
7982 |
-
@media (max-width: 959px) {
|
7983 |
-
.bc-root .bc-uk-background-image\@m {
|
7984 |
-
background-image: none !important;
|
7985 |
-
}
|
7986 |
-
}
|
7987 |
-
@media (max-width: 1199px) {
|
7988 |
-
.bc-root .bc-uk-background-image\@l {
|
7989 |
-
background-image: none !important;
|
7990 |
-
}
|
7991 |
-
}
|
7992 |
-
@media (max-width: 1599px) {
|
7993 |
-
.bc-root .bc-uk-background-image\@xl {
|
7994 |
-
background-image: none !important;
|
7995 |
-
}
|
7996 |
-
}
|
7997 |
-
.bc-root .bc-uk-background-blend-multiply {
|
7998 |
-
background-blend-mode: multiply;
|
7999 |
-
}
|
8000 |
-
.bc-root .bc-uk-background-blend-screen {
|
8001 |
-
background-blend-mode: screen;
|
8002 |
-
}
|
8003 |
-
.bc-root .bc-uk-background-blend-overlay {
|
8004 |
-
background-blend-mode: overlay;
|
8005 |
-
}
|
8006 |
-
.bc-root .bc-uk-background-blend-darken {
|
8007 |
-
background-blend-mode: darken;
|
8008 |
-
}
|
8009 |
-
.bc-root .bc-uk-background-blend-lighten {
|
8010 |
-
background-blend-mode: lighten;
|
8011 |
-
}
|
8012 |
-
.bc-root .bc-uk-background-blend-color-dodge {
|
8013 |
-
background-blend-mode: color-dodge;
|
8014 |
-
}
|
8015 |
-
.bc-root .bc-uk-background-blend-color-burn {
|
8016 |
-
background-blend-mode: color-burn;
|
8017 |
-
}
|
8018 |
-
.bc-root .bc-uk-background-blend-hard-light {
|
8019 |
-
background-blend-mode: hard-light;
|
8020 |
-
}
|
8021 |
-
.bc-root .bc-uk-background-blend-soft-light {
|
8022 |
-
background-blend-mode: soft-light;
|
8023 |
-
}
|
8024 |
-
.bc-root .bc-uk-background-blend-difference {
|
8025 |
-
background-blend-mode: difference;
|
8026 |
-
}
|
8027 |
-
.bc-root .bc-uk-background-blend-exclusion {
|
8028 |
-
background-blend-mode: exclusion;
|
8029 |
-
}
|
8030 |
-
.bc-root .bc-uk-background-blend-hue {
|
8031 |
-
background-blend-mode: hue;
|
8032 |
-
}
|
8033 |
-
.bc-root .bc-uk-background-blend-saturation {
|
8034 |
-
background-blend-mode: saturation;
|
8035 |
-
}
|
8036 |
-
.bc-root .bc-uk-background-blend-color {
|
8037 |
-
background-blend-mode: color;
|
8038 |
-
}
|
8039 |
-
.bc-root .bc-uk-background-blend-luminosity {
|
8040 |
-
background-blend-mode: luminosity;
|
8041 |
-
}
|
8042 |
-
.bc-root [class*=uk-align] {
|
8043 |
-
display: block;
|
8044 |
-
margin-bottom: 30px;
|
8045 |
-
}
|
8046 |
-
.bc-root * + [class*=uk-align] {
|
8047 |
-
margin-top: 30px;
|
8048 |
-
}
|
8049 |
-
.bc-root .bc-uk-align-center {
|
8050 |
-
margin-left: auto;
|
8051 |
-
margin-right: auto;
|
8052 |
-
}
|
8053 |
-
.bc-root .bc-uk-align-left {
|
8054 |
-
margin-top: 0;
|
8055 |
-
margin-right: 30px;
|
8056 |
-
float: left;
|
8057 |
-
}
|
8058 |
-
.bc-root .bc-uk-align-right {
|
8059 |
-
margin-top: 0;
|
8060 |
-
margin-left: 30px;
|
8061 |
-
float: right;
|
8062 |
-
}
|
8063 |
-
@media (min-width: 640px) {
|
8064 |
-
.bc-root .bc-uk-align-left\@s {
|
8065 |
-
margin-top: 0;
|
8066 |
-
margin-right: 30px;
|
8067 |
-
float: left;
|
8068 |
-
}
|
8069 |
-
.bc-root .bc-uk-align-right\@s {
|
8070 |
-
margin-top: 0;
|
8071 |
-
margin-left: 30px;
|
8072 |
-
float: right;
|
8073 |
-
}
|
8074 |
-
}
|
8075 |
-
@media (min-width: 960px) {
|
8076 |
-
.bc-root .bc-uk-align-left\@m {
|
8077 |
-
margin-top: 0;
|
8078 |
-
margin-right: 30px;
|
8079 |
-
float: left;
|
8080 |
-
}
|
8081 |
-
.bc-root .bc-uk-align-right\@m {
|
8082 |
-
margin-top: 0;
|
8083 |
-
margin-left: 30px;
|
8084 |
-
float: right;
|
8085 |
-
}
|
8086 |
-
}
|
8087 |
-
@media (min-width: 1200px) {
|
8088 |
-
.bc-root .bc-uk-align-left\@l {
|
8089 |
-
margin-top: 0;
|
8090 |
-
float: left;
|
8091 |
-
}
|
8092 |
-
.bc-root .bc-uk-align-right\@l {
|
8093 |
-
margin-top: 0;
|
8094 |
-
float: right;
|
8095 |
-
}
|
8096 |
-
.bc-root .bc-uk-align-left,
|
8097 |
-
.bc-root .bc-uk-align-left\@s,
|
8098 |
-
.bc-root .bc-uk-align-left\@m,
|
8099 |
-
.bc-root .bc-uk-align-left\@l {
|
8100 |
-
margin-right: 40px;
|
8101 |
-
}
|
8102 |
-
.bc-root .bc-uk-align-right,
|
8103 |
-
.bc-root .bc-uk-align-right\@s,
|
8104 |
-
.bc-root .bc-uk-align-right\@m,
|
8105 |
-
.bc-root .bc-uk-align-right\@l {
|
8106 |
-
margin-left: 40px;
|
8107 |
-
}
|
8108 |
-
}
|
8109 |
-
@media (min-width: 1600px) {
|
8110 |
-
.bc-root .bc-uk-align-left\@xl {
|
8111 |
-
margin-top: 0;
|
8112 |
-
margin-right: 40px;
|
8113 |
-
float: left;
|
8114 |
-
}
|
8115 |
-
.bc-root .bc-uk-align-right\@xl {
|
8116 |
-
margin-top: 0;
|
8117 |
-
margin-left: 40px;
|
8118 |
-
float: right;
|
8119 |
-
}
|
8120 |
-
}
|
8121 |
-
.bc-root .bc-uk-svg,
|
8122 |
-
.bc-root .bc-uk-svg:not(.bc-uk-preserve) [fill*="#"]:not(.bc-uk-preserve) {
|
8123 |
-
fill: currentcolor;
|
8124 |
-
}
|
8125 |
-
.bc-root .bc-uk-svg:not(.bc-uk-preserve) [stroke*="#"]:not(.bc-uk-preserve) {
|
8126 |
-
stroke: currentcolor;
|
8127 |
-
}
|
8128 |
-
.bc-root .bc-uk-svg {
|
8129 |
-
transform: translate(0, 0);
|
8130 |
-
}
|
8131 |
-
.bc-root .bc-uk-panel {
|
8132 |
-
position: relative;
|
8133 |
-
box-sizing: border-box;
|
8134 |
-
}
|
8135 |
-
.bc-root .bc-uk-panel::before,
|
8136 |
-
.bc-root .bc-uk-panel::after {
|
8137 |
-
content: "";
|
8138 |
-
display: table;
|
8139 |
-
}
|
8140 |
-
.bc-root .bc-uk-panel::after {
|
8141 |
-
clear: both;
|
8142 |
-
}
|
8143 |
-
.bc-root .bc-uk-panel > :last-child {
|
8144 |
-
margin-bottom: 0;
|
8145 |
-
}
|
8146 |
-
.bc-root .bc-uk-panel-scrollable {
|
8147 |
-
height: 170px;
|
8148 |
-
padding: 10px;
|
8149 |
-
border: 1px solid #e5e5e5;
|
8150 |
-
overflow: auto;
|
8151 |
-
-webkit-overflow-scrolling: touch;
|
8152 |
-
resize: both;
|
8153 |
-
}
|
8154 |
-
.bc-root .bc-uk-clearfix::before {
|
8155 |
-
content: "";
|
8156 |
-
display: table-cell;
|
8157 |
-
}
|
8158 |
-
.bc-root .bc-uk-clearfix::after {
|
8159 |
-
content: "";
|
8160 |
-
display: table;
|
8161 |
-
clear: both;
|
8162 |
-
}
|
8163 |
-
.bc-root .bc-uk-float-left {
|
8164 |
-
float: left;
|
8165 |
-
}
|
8166 |
-
.bc-root .bc-uk-float-right {
|
8167 |
-
float: right;
|
8168 |
-
}
|
8169 |
-
.bc-root [class*=uk-float-] {
|
8170 |
-
max-width: 100%;
|
8171 |
-
}
|
8172 |
-
.bc-root .bc-uk-overflow-hidden {
|
8173 |
-
overflow: hidden;
|
8174 |
-
}
|
8175 |
-
.bc-root .bc-uk-overflow-auto {
|
8176 |
-
overflow: auto;
|
8177 |
-
-webkit-overflow-scrolling: touch;
|
8178 |
-
}
|
8179 |
-
.bc-root .bc-uk-overflow-auto > :last-child {
|
8180 |
-
margin-bottom: 0;
|
8181 |
-
}
|
8182 |
-
.bc-root .bc-uk-resize {
|
8183 |
-
resize: both;
|
8184 |
-
}
|
8185 |
-
.bc-root .bc-uk-resize-vertical {
|
8186 |
-
resize: vertical;
|
8187 |
-
}
|
8188 |
-
.bc-root .bc-uk-display-block {
|
8189 |
-
display: block !important;
|
8190 |
-
}
|
8191 |
-
.bc-root .bc-uk-display-inline {
|
8192 |
-
display: inline !important;
|
8193 |
-
}
|
8194 |
-
.bc-root .bc-uk-display-inline-block {
|
8195 |
-
display: inline-block !important;
|
8196 |
-
}
|
8197 |
-
.bc-root [class*=uk-inline] {
|
8198 |
-
/* 1 */
|
8199 |
-
display: inline-block;
|
8200 |
-
/* 2 */
|
8201 |
-
position: relative;
|
8202 |
-
/* 3 */
|
8203 |
-
max-width: 100%;
|
8204 |
-
/* 4 */
|
8205 |
-
vertical-align: middle;
|
8206 |
-
/* 5 */
|
8207 |
-
-webkit-backface-visibility: hidden;
|
8208 |
-
}
|
8209 |
-
.bc-root .bc-uk-inline-clip {
|
8210 |
-
/* 6 */
|
8211 |
-
overflow: hidden;
|
8212 |
-
}
|
8213 |
-
.bc-root .bc-uk-preserve-width,
|
8214 |
-
.bc-root .bc-uk-preserve-width canvas,
|
8215 |
-
.bc-root .bc-uk-preserve-width img,
|
8216 |
-
.bc-root .bc-uk-preserve-width svg,
|
8217 |
-
.bc-root .bc-uk-preserve-width video {
|
8218 |
-
max-width: none;
|
8219 |
-
}
|
8220 |
-
.bc-root .bc-uk-responsive-width,
|
8221 |
-
.bc-root .bc-uk-responsive-height {
|
8222 |
-
box-sizing: border-box;
|
8223 |
-
}
|
8224 |
-
.bc-root .bc-uk-responsive-width {
|
8225 |
-
/* 1 */
|
8226 |
-
max-width: 100% !important;
|
8227 |
-
/* 2 */
|
8228 |
-
height: auto;
|
8229 |
-
}
|
8230 |
-
.bc-root .bc-uk-responsive-height {
|
8231 |
-
/* 1 */
|
8232 |
-
max-height: 100%;
|
8233 |
-
/* 2 */
|
8234 |
-
width: auto;
|
8235 |
-
/* 3 */
|
8236 |
-
max-width: none;
|
8237 |
-
}
|
8238 |
-
.bc-root .bc-uk-border-circle {
|
8239 |
-
border-radius: 50%;
|
8240 |
-
}
|
8241 |
-
.bc-root .bc-uk-border-pill {
|
8242 |
-
border-radius: 500px;
|
8243 |
-
}
|
8244 |
-
.bc-root .bc-uk-border-rounded {
|
8245 |
-
border-radius: 5px;
|
8246 |
-
}
|
8247 |
-
.bc-root .bc-uk-inline-clip[class*=uk-border-] {
|
8248 |
-
-webkit-transform: translateZ(0);
|
8249 |
-
}
|
8250 |
-
.bc-root .bc-uk-box-shadow-small {
|
8251 |
-
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
|
8252 |
-
}
|
8253 |
-
.bc-root .bc-uk-box-shadow-medium {
|
8254 |
-
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
|
8255 |
-
}
|
8256 |
-
.bc-root .bc-uk-box-shadow-large {
|
8257 |
-
box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
|
8258 |
-
}
|
8259 |
-
.bc-root .bc-uk-box-shadow-xlarge {
|
8260 |
-
box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
|
8261 |
-
}
|
8262 |
-
.bc-root [class*=uk-box-shadow-hover] {
|
8263 |
-
transition: box-shadow 0.1s ease-in-out;
|
8264 |
-
}
|
8265 |
-
.bc-root .bc-uk-box-shadow-hover-small:hover {
|
8266 |
-
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
|
8267 |
-
}
|
8268 |
-
.bc-root .bc-uk-box-shadow-hover-medium:hover {
|
8269 |
-
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
|
8270 |
-
}
|
8271 |
-
.bc-root .bc-uk-box-shadow-hover-large:hover {
|
8272 |
-
box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
|
8273 |
-
}
|
8274 |
-
.bc-root .bc-uk-box-shadow-hover-xlarge:hover {
|
8275 |
-
box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
|
8276 |
-
}
|
8277 |
-
@supports (filter: blur(0)) {
|
8278 |
-
.bc-root {
|
8279 |
-
/* 3 */
|
8280 |
-
}
|
8281 |
-
.bc-root .bc-uk-box-shadow-bottom {
|
8282 |
-
display: inline-block;
|
8283 |
-
position: relative;
|
8284 |
-
max-width: 100%;
|
8285 |
-
vertical-align: middle;
|
8286 |
-
}
|
8287 |
-
.bc-root .bc-uk-box-shadow-bottom::before {
|
8288 |
-
content: "";
|
8289 |
-
/* 1 */
|
8290 |
-
position: absolute;
|
8291 |
-
bottom: -30px;
|
8292 |
-
left: 0;
|
8293 |
-
right: 0;
|
8294 |
-
/* 2 */
|
8295 |
-
height: 30px;
|
8296 |
-
border-radius: 100%;
|
8297 |
-
background: #444;
|
8298 |
-
filter: blur(20px);
|
8299 |
-
}
|
8300 |
-
.bc-root .bc-uk-box-shadow-bottom > * {
|
8301 |
-
position: relative;
|
8302 |
-
}
|
8303 |
-
}
|
8304 |
-
.bc-root .bc-uk-dropcap::first-letter,
|
8305 |
-
.bc-root .bc-uk-dropcap > p:first-of-type::first-letter {
|
8306 |
-
display: block;
|
8307 |
-
margin-right: 10px;
|
8308 |
-
float: left;
|
8309 |
-
font-size: 4.5em;
|
8310 |
-
line-height: 1;
|
8311 |
-
margin-bottom: -2px;
|
8312 |
-
}
|
8313 |
-
@-moz-document url-prefix() {
|
8314 |
-
.bc-root .bc-uk-dropcap::first-letter,
|
8315 |
-
.bc-root .bc-uk-dropcap > p:first-of-type::first-letter {
|
8316 |
-
margin-top: 1.1%;
|
8317 |
-
}
|
8318 |
-
}
|
8319 |
-
@supports (-ms-ime-align: auto) {
|
8320 |
-
.bc-root .bc-uk-dropcap > p:first-of-type::first-letter {
|
8321 |
-
font-size: 1em;
|
8322 |
-
}
|
8323 |
-
}
|
8324 |
-
.bc-root .bc-uk-logo {
|
8325 |
-
font-size: 1.5rem;
|
8326 |
-
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";
|
8327 |
-
color: #666;
|
8328 |
-
/* 1 */
|
8329 |
-
text-decoration: none;
|
8330 |
-
}
|
8331 |
-
.bc-root .bc-uk-logo:hover,
|
8332 |
-
.bc-root .bc-uk-logo:focus {
|
8333 |
-
color: #666;
|
8334 |
-
outline: none;
|
8335 |
-
/* 1 */
|
8336 |
-
text-decoration: none;
|
8337 |
-
}
|
8338 |
-
.bc-root .bc-uk-logo-inverse {
|
8339 |
-
display: none;
|
8340 |
-
}
|
8341 |
-
.bc-root .bc-uk-disabled {
|
8342 |
-
pointer-events: none;
|
8343 |
-
}
|
8344 |
-
.bc-root .bc-uk-drag,
|
8345 |
-
.bc-root .bc-uk-drag * {
|
8346 |
-
cursor: move;
|
8347 |
-
}
|
8348 |
-
.bc-root .bc-uk-drag iframe {
|
8349 |
-
pointer-events: none;
|
8350 |
-
}
|
8351 |
-
.bc-root .bc-uk-dragover {
|
8352 |
-
box-shadow: 0 0 20px rgba(100, 100, 100, 0.3);
|
8353 |
-
}
|
8354 |
-
.bc-root .bc-uk-blend-multiply {
|
8355 |
-
mix-blend-mode: multiply;
|
8356 |
-
}
|
8357 |
-
.bc-root .bc-uk-blend-screen {
|
8358 |
-
mix-blend-mode: screen;
|
8359 |
-
}
|
8360 |
-
.bc-root .bc-uk-blend-overlay {
|
8361 |
-
mix-blend-mode: overlay;
|
8362 |
-
}
|
8363 |
-
.bc-root .bc-uk-blend-darken {
|
8364 |
-
mix-blend-mode: darken;
|
8365 |
-
}
|
8366 |
-
.bc-root .bc-uk-blend-lighten {
|
8367 |
-
mix-blend-mode: lighten;
|
8368 |
-
}
|
8369 |
-
.bc-root .bc-uk-blend-color-dodge {
|
8370 |
-
mix-blend-mode: color-dodge;
|
8371 |
-
}
|
8372 |
-
.bc-root .bc-uk-blend-color-burn {
|
8373 |
-
mix-blend-mode: color-burn;
|
8374 |
-
}
|
8375 |
-
.bc-root .bc-uk-blend-hard-light {
|
8376 |
-
mix-blend-mode: hard-light;
|
8377 |
-
}
|
8378 |
-
.bc-root .bc-uk-blend-soft-light {
|
8379 |
-
mix-blend-mode: soft-light;
|
8380 |
-
}
|
8381 |
-
.bc-root .bc-uk-blend-difference {
|
8382 |
-
mix-blend-mode: difference;
|
8383 |
-
}
|
8384 |
-
.bc-root .bc-uk-blend-exclusion {
|
8385 |
-
mix-blend-mode: exclusion;
|
8386 |
-
}
|
8387 |
-
.bc-root .bc-uk-blend-hue {
|
8388 |
-
mix-blend-mode: hue;
|
8389 |
-
}
|
8390 |
-
.bc-root .bc-uk-blend-saturation {
|
8391 |
-
mix-blend-mode: saturation;
|
8392 |
-
}
|
8393 |
-
.bc-root .bc-uk-blend-color {
|
8394 |
-
mix-blend-mode: color;
|
8395 |
-
}
|
8396 |
-
.bc-root .bc-uk-blend-luminosity {
|
8397 |
-
mix-blend-mode: luminosity;
|
8398 |
-
}
|
8399 |
-
.bc-root .bc-uk-transform-center {
|
8400 |
-
transform: translate(-50%, -50%);
|
8401 |
-
}
|
8402 |
-
.bc-root .bc-uk-transform-origin-top-left {
|
8403 |
-
transform-origin: 0 0;
|
8404 |
-
}
|
8405 |
-
.bc-root .bc-uk-transform-origin-top-center {
|
8406 |
-
transform-origin: 50% 0;
|
8407 |
-
}
|
8408 |
-
.bc-root .bc-uk-transform-origin-top-right {
|
8409 |
-
transform-origin: 100% 0;
|
8410 |
-
}
|
8411 |
-
.bc-root .bc-uk-transform-origin-center-left {
|
8412 |
-
transform-origin: 0 50%;
|
8413 |
-
}
|
8414 |
-
.bc-root .bc-uk-transform-origin-center-right {
|
8415 |
-
transform-origin: 100% 50%;
|
8416 |
-
}
|
8417 |
-
.bc-root .bc-uk-transform-origin-bottom-left {
|
8418 |
-
transform-origin: 0 100%;
|
8419 |
-
}
|
8420 |
-
.bc-root .bc-uk-transform-origin-bottom-center {
|
8421 |
-
transform-origin: 50% 100%;
|
8422 |
-
}
|
8423 |
-
.bc-root .bc-uk-transform-origin-bottom-right {
|
8424 |
-
transform-origin: 100% 100%;
|
8425 |
-
}
|
8426 |
-
.bc-root .bc-uk-flex {
|
8427 |
-
display: flex;
|
8428 |
-
}
|
8429 |
-
.bc-root .bc-uk-flex-inline {
|
8430 |
-
display: inline-flex;
|
8431 |
-
}
|
8432 |
-
.bc-root .bc-uk-flex::before,
|
8433 |
-
.bc-root .bc-uk-flex::after,
|
8434 |
-
.bc-root .bc-uk-flex-inline::before,
|
8435 |
-
.bc-root .bc-uk-flex-inline::after {
|
8436 |
-
display: none;
|
8437 |
-
}
|
8438 |
-
.bc-root .bc-uk-flex-left {
|
8439 |
-
justify-content: flex-start;
|
8440 |
-
}
|
8441 |
-
.bc-root .bc-uk-flex-center {
|
8442 |
-
justify-content: center;
|
8443 |
-
}
|
8444 |
-
.bc-root .bc-uk-flex-right {
|
8445 |
-
justify-content: flex-end;
|
8446 |
-
}
|
8447 |
-
.bc-root .bc-uk-flex-between {
|
8448 |
-
justify-content: space-between;
|
8449 |
-
}
|
8450 |
-
.bc-root .bc-uk-flex-around {
|
8451 |
-
justify-content: space-around;
|
8452 |
-
}
|
8453 |
-
@media (min-width: 640px) {
|
8454 |
-
.bc-root .bc-uk-flex-left\@s {
|
8455 |
-
justify-content: flex-start;
|
8456 |
-
}
|
8457 |
-
.bc-root .bc-uk-flex-center\@s {
|
8458 |
-
justify-content: center;
|
8459 |
-
}
|
8460 |
-
.bc-root .bc-uk-flex-right\@s {
|
8461 |
-
justify-content: flex-end;
|
8462 |
-
}
|
8463 |
-
.bc-root .bc-uk-flex-between\@s {
|
8464 |
-
justify-content: space-between;
|
8465 |
-
}
|
8466 |
-
.bc-root .bc-uk-flex-around\@s {
|
8467 |
-
justify-content: space-around;
|
8468 |
-
}
|
8469 |
-
}
|
8470 |
-
@media (min-width: 960px) {
|
8471 |
-
.bc-root .bc-uk-flex-left\@m {
|
8472 |
-
justify-content: flex-start;
|
8473 |
-
}
|
8474 |
-
.bc-root .bc-uk-flex-center\@m {
|
8475 |
-
justify-content: center;
|
8476 |
-
}
|
8477 |
-
.bc-root .bc-uk-flex-right\@m {
|
8478 |
-
justify-content: flex-end;
|
8479 |
-
}
|
8480 |
-
.bc-root .bc-uk-flex-between\@m {
|
8481 |
-
justify-content: space-between;
|
8482 |
-
}
|
8483 |
-
.bc-root .bc-uk-flex-around\@m {
|
8484 |
-
justify-content: space-around;
|
8485 |
-
}
|
8486 |
-
}
|
8487 |
-
@media (min-width: 1200px) {
|
8488 |
-
.bc-root .bc-uk-flex-left\@l {
|
8489 |
-
justify-content: flex-start;
|
8490 |
-
}
|
8491 |
-
.bc-root .bc-uk-flex-center\@l {
|
8492 |
-
justify-content: center;
|
8493 |
-
}
|
8494 |
-
.bc-root .bc-uk-flex-right\@l {
|
8495 |
-
justify-content: flex-end;
|
8496 |
-
}
|
8497 |
-
.bc-root .bc-uk-flex-between\@l {
|
8498 |
-
justify-content: space-between;
|
8499 |
-
}
|
8500 |
-
.bc-root .bc-uk-flex-around\@l {
|
8501 |
-
justify-content: space-around;
|
8502 |
-
}
|
8503 |
-
}
|
8504 |
-
@media (min-width: 1600px) {
|
8505 |
-
.bc-root .bc-uk-flex-left\@xl {
|
8506 |
-
justify-content: flex-start;
|
8507 |
-
}
|
8508 |
-
.bc-root .bc-uk-flex-center\@xl {
|
8509 |
-
justify-content: center;
|
8510 |
-
}
|
8511 |
-
.bc-root .bc-uk-flex-right\@xl {
|
8512 |
-
justify-content: flex-end;
|
8513 |
-
}
|
8514 |
-
.bc-root .bc-uk-flex-between\@xl {
|
8515 |
-
justify-content: space-between;
|
8516 |
-
}
|
8517 |
-
.bc-root .bc-uk-flex-around\@xl {
|
8518 |
-
justify-content: space-around;
|
8519 |
-
}
|
8520 |
-
}
|
8521 |
-
.bc-root .bc-uk-flex-stretch {
|
8522 |
-
align-items: stretch;
|
8523 |
-
}
|
8524 |
-
.bc-root .bc-uk-flex-top {
|
8525 |
-
align-items: flex-start;
|
8526 |
-
}
|
8527 |
-
.bc-root .bc-uk-flex-middle {
|
8528 |
-
align-items: center;
|
8529 |
-
}
|
8530 |
-
.bc-root .bc-uk-flex-bottom {
|
8531 |
-
align-items: flex-end;
|
8532 |
-
}
|
8533 |
-
.bc-root .bc-uk-flex-row {
|
8534 |
-
flex-direction: row;
|
8535 |
-
}
|
8536 |
-
.bc-root .bc-uk-flex-row-reverse {
|
8537 |
-
flex-direction: row-reverse;
|
8538 |
-
}
|
8539 |
-
.bc-root .bc-uk-flex-column {
|
8540 |
-
flex-direction: column;
|
8541 |
-
}
|
8542 |
-
.bc-root .bc-uk-flex-column-reverse {
|
8543 |
-
flex-direction: column-reverse;
|
8544 |
-
}
|
8545 |
-
.bc-root .bc-uk-flex-nowrap {
|
8546 |
-
flex-wrap: nowrap;
|
8547 |
-
}
|
8548 |
-
.bc-root .bc-uk-flex-wrap {
|
8549 |
-
flex-wrap: wrap;
|
8550 |
-
}
|
8551 |
-
.bc-root .bc-uk-flex-wrap-reverse {
|
8552 |
-
flex-wrap: wrap-reverse;
|
8553 |
-
}
|
8554 |
-
.bc-root .bc-uk-flex-wrap-stretch {
|
8555 |
-
align-content: stretch;
|
8556 |
-
}
|
8557 |
-
.bc-root .bc-uk-flex-wrap-top {
|
8558 |
-
align-content: flex-start;
|
8559 |
-
}
|
8560 |
-
.bc-root .bc-uk-flex-wrap-middle {
|
8561 |
-
align-content: center;
|
8562 |
-
}
|
8563 |
-
.bc-root .bc-uk-flex-wrap-bottom {
|
8564 |
-
align-content: flex-end;
|
8565 |
-
}
|
8566 |
-
.bc-root .bc-uk-flex-wrap-between {
|
8567 |
-
align-content: space-between;
|
8568 |
-
}
|
8569 |
-
.bc-root .bc-uk-flex-wrap-around {
|
8570 |
-
align-content: space-around;
|
8571 |
-
}
|
8572 |
-
.bc-root .bc-uk-flex-first {
|
8573 |
-
order: -1;
|
8574 |
-
}
|
8575 |
-
.bc-root .bc-uk-flex-last {
|
8576 |
-
order: 99;
|
8577 |
-
}
|
8578 |
-
@media (min-width: 640px) {
|
8579 |
-
.bc-root .bc-uk-flex-first\@s {
|
8580 |
-
order: -1;
|
8581 |
-
}
|
8582 |
-
.bc-root .bc-uk-flex-last\@s {
|
8583 |
-
order: 99;
|
8584 |
-
}
|
8585 |
-
}
|
8586 |
-
@media (min-width: 960px) {
|
8587 |
-
.bc-root .bc-uk-flex-first\@m {
|
8588 |
-
order: -1;
|
8589 |
-
}
|
8590 |
-
.bc-root .bc-uk-flex-last\@m {
|
8591 |
-
order: 99;
|
8592 |
-
}
|
8593 |
-
}
|
8594 |
-
@media (min-width: 1200px) {
|
8595 |
-
.bc-root .bc-uk-flex-first\@l {
|
8596 |
-
order: -1;
|
8597 |
-
}
|
8598 |
-
.bc-root .bc-uk-flex-last\@l {
|
8599 |
-
order: 99;
|
8600 |
-
}
|
8601 |
-
}
|
8602 |
-
@media (min-width: 1600px) {
|
8603 |
-
.bc-root .bc-uk-flex-first\@xl {
|
8604 |
-
order: -1;
|
8605 |
-
}
|
8606 |
-
.bc-root .bc-uk-flex-last\@xl {
|
8607 |
-
order: 99;
|
8608 |
-
}
|
8609 |
-
}
|
8610 |
-
.bc-root .bc-uk-flex-none {
|
8611 |
-
flex: none;
|
8612 |
-
}
|
8613 |
-
.bc-root .bc-uk-flex-auto {
|
8614 |
-
flex: auto;
|
8615 |
-
}
|
8616 |
-
.bc-root .bc-uk-flex-1 {
|
8617 |
-
flex: 1;
|
8618 |
-
}
|
8619 |
-
.bc-root .bc-uk-margin {
|
8620 |
-
margin-bottom: 20px;
|
8621 |
-
}
|
8622 |
-
.bc-root * + .bc-uk-margin {
|
8623 |
-
margin-top: 20px !important;
|
8624 |
-
}
|
8625 |
-
.bc-root .bc-uk-margin-top {
|
8626 |
-
margin-top: 20px !important;
|
8627 |
-
}
|
8628 |
-
.bc-root .bc-uk-margin-bottom {
|
8629 |
-
margin-bottom: 20px !important;
|
8630 |
-
}
|
8631 |
-
.bc-root .bc-uk-margin-left {
|
8632 |
-
margin-left: 20px !important;
|
8633 |
-
}
|
8634 |
-
.bc-root .bc-uk-margin-right {
|
8635 |
-
margin-right: 20px !important;
|
8636 |
-
}
|
8637 |
-
.bc-root .bc-uk-margin-small {
|
8638 |
-
margin-bottom: 10px;
|
8639 |
-
}
|
8640 |
-
.bc-root * + .bc-uk-margin-small {
|
8641 |
-
margin-top: 10px !important;
|
8642 |
-
}
|
8643 |
-
.bc-root .bc-uk-margin-small-top {
|
8644 |
-
margin-top: 10px !important;
|
8645 |
-
}
|
8646 |
-
.bc-root .bc-uk-margin-small-bottom {
|
8647 |
-
margin-bottom: 10px !important;
|
8648 |
-
}
|
8649 |
-
.bc-root .bc-uk-margin-small-left {
|
8650 |
-
margin-left: 10px !important;
|
8651 |
-
}
|
8652 |
-
.bc-root .bc-uk-margin-small-right {
|
8653 |
-
margin-right: 10px !important;
|
8654 |
-
}
|
8655 |
-
.bc-root .bc-uk-margin-medium {
|
8656 |
-
margin-bottom: 40px;
|
8657 |
-
}
|
8658 |
-
.bc-root * + .bc-uk-margin-medium {
|
8659 |
-
margin-top: 40px !important;
|
8660 |
-
}
|
8661 |
-
.bc-root .bc-uk-margin-medium-top {
|
8662 |
-
margin-top: 40px !important;
|
8663 |
-
}
|
8664 |
-
.bc-root .bc-uk-margin-medium-bottom {
|
8665 |
-
margin-bottom: 40px !important;
|
8666 |
-
}
|
8667 |
-
.bc-root .bc-uk-margin-medium-left {
|
8668 |
-
margin-left: 40px !important;
|
8669 |
-
}
|
8670 |
-
.bc-root .bc-uk-margin-medium-right {
|
8671 |
-
margin-right: 40px !important;
|
8672 |
-
}
|
8673 |
-
.bc-root .bc-uk-margin-large {
|
8674 |
-
margin-bottom: 40px;
|
8675 |
-
}
|
8676 |
-
.bc-root * + .bc-uk-margin-large {
|
8677 |
-
margin-top: 40px !important;
|
8678 |
-
}
|
8679 |
-
.bc-root .bc-uk-margin-large-top {
|
8680 |
-
margin-top: 40px !important;
|
8681 |
-
}
|
8682 |
-
.bc-root .bc-uk-margin-large-bottom {
|
8683 |
-
margin-bottom: 40px !important;
|
8684 |
-
}
|
8685 |
-
.bc-root .bc-uk-margin-large-left {
|
8686 |
-
margin-left: 40px !important;
|
8687 |
-
}
|
8688 |
-
.bc-root .bc-uk-margin-large-right {
|
8689 |
-
margin-right: 40px !important;
|
8690 |
-
}
|
8691 |
-
@media (min-width: 1200px) {
|
8692 |
-
.bc-root .bc-uk-margin-large {
|
8693 |
-
margin-bottom: 70px;
|
8694 |
-
}
|
8695 |
-
.bc-root * + .bc-uk-margin-large {
|
8696 |
-
margin-top: 70px !important;
|
8697 |
-
}
|
8698 |
-
.bc-root .bc-uk-margin-large-top {
|
8699 |
-
margin-top: 70px !important;
|
8700 |
-
}
|
8701 |
-
.bc-root .bc-uk-margin-large-bottom {
|
8702 |
-
margin-bottom: 70px !important;
|
8703 |
-
}
|
8704 |
-
.bc-root .bc-uk-margin-large-left {
|
8705 |
-
margin-left: 70px !important;
|
8706 |
-
}
|
8707 |
-
.bc-root .bc-uk-margin-large-right {
|
8708 |
-
margin-right: 70px !important;
|
8709 |
-
}
|
8710 |
-
}
|
8711 |
-
.bc-root .bc-uk-margin-xlarge {
|
8712 |
-
margin-bottom: 70px;
|
8713 |
-
}
|
8714 |
-
.bc-root * + .bc-uk-margin-xlarge {
|
8715 |
-
margin-top: 70px !important;
|
8716 |
-
}
|
8717 |
-
.bc-root .bc-uk-margin-xlarge-top {
|
8718 |
-
margin-top: 70px !important;
|
8719 |
-
}
|
8720 |
-
.bc-root .bc-uk-margin-xlarge-bottom {
|
8721 |
-
margin-bottom: 70px !important;
|
8722 |
-
}
|
8723 |
-
.bc-root .bc-uk-margin-xlarge-left {
|
8724 |
-
margin-left: 70px !important;
|
8725 |
-
}
|
8726 |
-
.bc-root .bc-uk-margin-xlarge-right {
|
8727 |
-
margin-right: 70px !important;
|
8728 |
-
}
|
8729 |
-
@media (min-width: 1200px) {
|
8730 |
-
.bc-root .bc-uk-margin-xlarge {
|
8731 |
-
margin-bottom: 140px;
|
8732 |
-
}
|
8733 |
-
.bc-root * + .bc-uk-margin-xlarge {
|
8734 |
-
margin-top: 140px !important;
|
8735 |
-
}
|
8736 |
-
.bc-root .bc-uk-margin-xlarge-top {
|
8737 |
-
margin-top: 140px !important;
|
8738 |
-
}
|
8739 |
-
.bc-root .bc-uk-margin-xlarge-bottom {
|
8740 |
-
margin-bottom: 140px !important;
|
8741 |
-
}
|
8742 |
-
.bc-root .bc-uk-margin-xlarge-left {
|
8743 |
-
margin-left: 140px !important;
|
8744 |
-
}
|
8745 |
-
.bc-root .bc-uk-margin-xlarge-right {
|
8746 |
-
margin-right: 140px !important;
|
8747 |
-
}
|
8748 |
-
}
|
8749 |
-
.bc-root .bc-uk-margin-remove {
|
8750 |
-
margin: 0 !important;
|
8751 |
-
}
|
8752 |
-
.bc-root .bc-uk-margin-remove-top {
|
8753 |
-
margin-top: 0 !important;
|
8754 |
-
}
|
8755 |
-
.bc-root .bc-uk-margin-remove-bottom {
|
8756 |
-
margin-bottom: 0 !important;
|
8757 |
-
}
|
8758 |
-
.bc-root .bc-uk-margin-remove-left {
|
8759 |
-
margin-left: 0 !important;
|
8760 |
-
}
|
8761 |
-
.bc-root .bc-uk-margin-remove-right {
|
8762 |
-
margin-right: 0 !important;
|
8763 |
-
}
|
8764 |
-
.bc-root .bc-uk-margin-remove-vertical {
|
8765 |
-
margin-top: 0 !important;
|
8766 |
-
margin-bottom: 0 !important;
|
8767 |
-
}
|
8768 |
-
.bc-root .bc-uk-margin-remove-adjacent + *,
|
8769 |
-
.bc-root .bc-uk-margin-remove-first-child > :first-child {
|
8770 |
-
margin-top: 0 !important;
|
8771 |
-
}
|
8772 |
-
.bc-root .bc-uk-margin-auto {
|
8773 |
-
margin-left: auto !important;
|
8774 |
-
margin-right: auto !important;
|
8775 |
-
}
|
8776 |
-
.bc-root .bc-uk-margin-auto-top {
|
8777 |
-
margin-top: auto !important;
|
8778 |
-
}
|
8779 |
-
.bc-root .bc-uk-margin-auto-bottom {
|
8780 |
-
margin-bottom: auto !important;
|
8781 |
-
}
|
8782 |
-
.bc-root .bc-uk-margin-auto-left {
|
8783 |
-
margin-left: auto !important;
|
8784 |
-
}
|
8785 |
-
.bc-root .bc-uk-margin-auto-right {
|
8786 |
-
margin-right: auto !important;
|
8787 |
-
}
|
8788 |
-
.bc-root .bc-uk-margin-auto-vertical {
|
8789 |
-
margin-top: auto !important;
|
8790 |
-
margin-bottom: auto !important;
|
8791 |
-
}
|
8792 |
-
.bc-root .bc-uk-padding {
|
8793 |
-
padding: 30px;
|
8794 |
-
}
|
8795 |
-
@media (min-width: 1200px) {
|
8796 |
-
.bc-root .bc-uk-padding {
|
8797 |
-
padding: 40px;
|
8798 |
-
}
|
8799 |
-
}
|
8800 |
-
.bc-root .bc-uk-padding-small {
|
8801 |
-
padding: 15px;
|
8802 |
-
}
|
8803 |
-
.bc-root .bc-uk-padding-large {
|
8804 |
-
padding: 30px;
|
8805 |
-
}
|
8806 |
-
@media (min-width: 1200px) {
|
8807 |
-
.bc-root .bc-uk-padding-large {
|
8808 |
-
padding: 70px;
|
8809 |
-
}
|
8810 |
-
}
|
8811 |
-
.bc-root .bc-uk-padding-remove {
|
8812 |
-
padding: 0 !important;
|
8813 |
-
}
|
8814 |
-
.bc-root .bc-uk-padding-remove-top {
|
8815 |
-
padding-top: 0 !important;
|
8816 |
-
}
|
8817 |
-
.bc-root .bc-uk-padding-remove-bottom {
|
8818 |
-
padding-bottom: 0 !important;
|
8819 |
-
}
|
8820 |
-
.bc-root .bc-uk-padding-remove-left {
|
8821 |
-
padding-left: 0 !important;
|
8822 |
-
}
|
8823 |
-
.bc-root .bc-uk-padding-remove-right {
|
8824 |
-
padding-right: 0 !important;
|
8825 |
-
}
|
8826 |
-
.bc-root .bc-uk-padding-remove-vertical {
|
8827 |
-
padding-top: 0 !important;
|
8828 |
-
padding-bottom: 0 !important;
|
8829 |
-
}
|
8830 |
-
.bc-root .bc-uk-padding-remove-horizontal {
|
8831 |
-
padding-left: 0 !important;
|
8832 |
-
padding-right: 0 !important;
|
8833 |
-
}
|
8834 |
-
.bc-root [class*=uk-position-top],
|
8835 |
-
.bc-root [class*=uk-position-bottom],
|
8836 |
-
.bc-root [class*=uk-position-left],
|
8837 |
-
.bc-root [class*=uk-position-right],
|
8838 |
-
.bc-root [class*=uk-position-center] {
|
8839 |
-
position: absolute !important;
|
8840 |
-
}
|
8841 |
-
.bc-root .bc-uk-position-top {
|
8842 |
-
top: 0;
|
8843 |
-
left: 0;
|
8844 |
-
right: 0;
|
8845 |
-
}
|
8846 |
-
.bc-root .bc-uk-position-bottom {
|
8847 |
-
bottom: 0;
|
8848 |
-
left: 0;
|
8849 |
-
right: 0;
|
8850 |
-
}
|
8851 |
-
.bc-root .bc-uk-position-left {
|
8852 |
-
top: 0;
|
8853 |
-
bottom: 0;
|
8854 |
-
left: 0;
|
8855 |
-
}
|
8856 |
-
.bc-root .bc-uk-position-right {
|
8857 |
-
top: 0;
|
8858 |
-
bottom: 0;
|
8859 |
-
right: 0;
|
8860 |
-
}
|
8861 |
-
.bc-root .bc-uk-position-top-left {
|
8862 |
-
top: 0;
|
8863 |
-
left: 0;
|
8864 |
-
}
|
8865 |
-
.bc-root .bc-uk-position-top-right {
|
8866 |
-
top: 0;
|
8867 |
-
right: 0;
|
8868 |
-
}
|
8869 |
-
.bc-root .bc-uk-position-bottom-left {
|
8870 |
-
bottom: 0;
|
8871 |
-
left: 0;
|
8872 |
-
}
|
8873 |
-
.bc-root .bc-uk-position-bottom-right {
|
8874 |
-
bottom: 0;
|
8875 |
-
right: 0;
|
8876 |
-
}
|
8877 |
-
.bc-root .bc-uk-position-center {
|
8878 |
-
top: 50%;
|
8879 |
-
left: 50%;
|
8880 |
-
transform: translate(-50%, -50%);
|
8881 |
-
/* 1 */
|
8882 |
-
width: max-content;
|
8883 |
-
max-width: 100%;
|
8884 |
-
box-sizing: border-box;
|
8885 |
-
}
|
8886 |
-
.bc-root [class*=uk-position-center-left],
|
8887 |
-
.bc-root [class*=uk-position-center-right] {
|
8888 |
-
top: 50%;
|
8889 |
-
transform: translateY(-50%);
|
8890 |
-
}
|
8891 |
-
.bc-root .bc-uk-position-center-left {
|
8892 |
-
left: 0;
|
8893 |
-
}
|
8894 |
-
.bc-root .bc-uk-position-center-right {
|
8895 |
-
right: 0;
|
8896 |
-
}
|
8897 |
-
.bc-root .bc-uk-position-center-left-out {
|
8898 |
-
right: 100%;
|
8899 |
-
width: max-content;
|
8900 |
-
}
|
8901 |
-
.bc-root .bc-uk-position-center-right-out {
|
8902 |
-
left: 100%;
|
8903 |
-
width: max-content;
|
8904 |
-
}
|
8905 |
-
.bc-root .bc-uk-position-top-center,
|
8906 |
-
.bc-root .bc-uk-position-bottom-center {
|
8907 |
-
left: 50%;
|
8908 |
-
transform: translateX(-50%);
|
8909 |
-
/* 1 */
|
8910 |
-
width: max-content;
|
8911 |
-
max-width: 100%;
|
8912 |
-
box-sizing: border-box;
|
8913 |
-
}
|
8914 |
-
.bc-root .bc-uk-position-top-center {
|
8915 |
-
top: 0;
|
8916 |
-
}
|
8917 |
-
.bc-root .bc-uk-position-bottom-center {
|
8918 |
-
bottom: 0;
|
8919 |
-
}
|
8920 |
-
.bc-root .bc-uk-position-cover {
|
8921 |
-
position: absolute;
|
8922 |
-
top: 0;
|
8923 |
-
bottom: 0;
|
8924 |
-
left: 0;
|
8925 |
-
right: 0;
|
8926 |
-
}
|
8927 |
-
.bc-root .bc-uk-position-relative {
|
8928 |
-
position: relative !important;
|
8929 |
-
}
|
8930 |
-
.bc-root .bc-uk-position-absolute {
|
8931 |
-
position: absolute !important;
|
8932 |
-
}
|
8933 |
-
.bc-root .bc-uk-position-fixed {
|
8934 |
-
position: fixed !important;
|
8935 |
-
}
|
8936 |
-
.bc-root .bc-uk-position-z-index {
|
8937 |
-
z-index: 1;
|
8938 |
-
}
|
8939 |
-
.bc-root .bc-uk-position-small {
|
8940 |
-
max-width: calc(100% - (15px * 2));
|
8941 |
-
margin: 15px;
|
8942 |
-
}
|
8943 |
-
.bc-root .bc-uk-position-small.bc-uk-position-center {
|
8944 |
-
transform: translate(-50%, -50%) translate(-15px, -15px);
|
8945 |
-
}
|
8946 |
-
.bc-root .bc-uk-position-small[class*=uk-position-center-left],
|
8947 |
-
.bc-root .bc-uk-position-small[class*=uk-position-center-right] {
|
8948 |
-
transform: translateY(-50%) translateY(-15px);
|
8949 |
-
}
|
8950 |
-
.bc-root .bc-uk-position-small.bc-uk-position-top-center,
|
8951 |
-
.bc-root .bc-uk-position-small.bc-uk-position-bottom-center {
|
8952 |
-
transform: translateX(-50%) translateX(-15px);
|
8953 |
-
}
|
8954 |
-
.bc-root .bc-uk-position-medium {
|
8955 |
-
max-width: calc(100% - (30px * 2));
|
8956 |
-
margin: 30px;
|
8957 |
-
}
|
8958 |
-
.bc-root .bc-uk-position-medium.bc-uk-position-center {
|
8959 |
-
transform: translate(-50%, -50%) translate(-30px, -30px);
|
8960 |
-
}
|
8961 |
-
.bc-root .bc-uk-position-medium[class*=uk-position-center-left],
|
8962 |
-
.bc-root .bc-uk-position-medium[class*=uk-position-center-right] {
|
8963 |
-
transform: translateY(-50%) translateY(-30px);
|
8964 |
-
}
|
8965 |
-
.bc-root .bc-uk-position-medium.bc-uk-position-top-center,
|
8966 |
-
.bc-root .bc-uk-position-medium.bc-uk-position-bottom-center {
|
8967 |
-
transform: translateX(-50%) translateX(-30px);
|
8968 |
-
}
|
8969 |
-
.bc-root .bc-uk-position-large {
|
8970 |
-
max-width: calc(100% - (30px * 2));
|
8971 |
-
margin: 30px;
|
8972 |
-
}
|
8973 |
-
.bc-root .bc-uk-position-large.bc-uk-position-center {
|
8974 |
-
transform: translate(-50%, -50%) translate(-30px, -30px);
|
8975 |
-
}
|
8976 |
-
.bc-root .bc-uk-position-large[class*=uk-position-center-left],
|
8977 |
-
.bc-root .bc-uk-position-large[class*=uk-position-center-right] {
|
8978 |
-
transform: translateY(-50%) translateY(-30px);
|
8979 |
-
}
|
8980 |
-
.bc-root .bc-uk-position-large.bc-uk-position-top-center,
|
8981 |
-
.bc-root .bc-uk-position-large.bc-uk-position-bottom-center {
|
8982 |
-
transform: translateX(-50%) translateX(-30px);
|
8983 |
-
}
|
8984 |
-
@media (min-width: 1200px) {
|
8985 |
-
.bc-root .bc-uk-position-large {
|
8986 |
-
max-width: calc(100% - (50px * 2));
|
8987 |
-
margin: 50px;
|
8988 |
-
}
|
8989 |
-
.bc-root .bc-uk-position-large.bc-uk-position-center {
|
8990 |
-
transform: translate(-50%, -50%) translate(-50px, -50px);
|
8991 |
-
}
|
8992 |
-
.bc-root .bc-uk-position-large[class*=uk-position-center-left],
|
8993 |
-
.bc-root .bc-uk-position-large[class*=uk-position-center-right] {
|
8994 |
-
transform: translateY(-50%) translateY(-50px);
|
8995 |
-
}
|
8996 |
-
.bc-root .bc-uk-position-large.bc-uk-position-top-center,
|
8997 |
-
.bc-root .bc-uk-position-large.bc-uk-position-bottom-center {
|
8998 |
-
transform: translateX(-50%) translateX(-50px);
|
8999 |
-
}
|
9000 |
-
}
|
9001 |
-
.bc-root .bc-uk-transition-toggle {
|
9002 |
-
/* 1 */
|
9003 |
-
-webkit-tap-highlight-color: transparent;
|
9004 |
-
}
|
9005 |
-
.bc-root .bc-uk-transition-toggle:focus {
|
9006 |
-
outline: none;
|
9007 |
-
}
|
9008 |
-
.bc-root .bc-uk-transition-fade,
|
9009 |
-
.bc-root [class*=uk-transition-scale],
|
9010 |
-
.bc-root [class*=uk-transition-slide] {
|
9011 |
-
transition: 0.3s ease-out;
|
9012 |
-
transition-property: opacity, transform, filter;
|
9013 |
-
opacity: 0;
|
9014 |
-
}
|
9015 |
-
.bc-root .bc-uk-transition-toggle:hover .bc-uk-transition-fade,
|
9016 |
-
.bc-root .bc-uk-transition-toggle:focus .bc-uk-transition-fade,
|
9017 |
-
.bc-root .bc-uk-transition-active.bc-uk-active .bc-uk-transition-fade {
|
9018 |
-
opacity: 1;
|
9019 |
-
}
|
9020 |
-
.bc-root .bc-uk-transition-scale-up {
|
9021 |
-
transform: scale(1, 1);
|
9022 |
-
}
|
9023 |
-
.bc-root .bc-uk-transition-scale-down {
|
9024 |
-
transform: scale(1.1, 1.1);
|
9025 |
-
}
|
9026 |
-
.bc-root .bc-uk-transition-toggle:hover .bc-uk-transition-scale-up,
|
9027 |
-
.bc-root .bc-uk-transition-toggle:focus .bc-uk-transition-scale-up,
|
9028 |
-
.bc-root .bc-uk-transition-active.bc-uk-active .bc-uk-transition-scale-up {
|
9029 |
-
opacity: 1;
|
9030 |
-
transform: scale(1.1, 1.1);
|
9031 |
-
}
|
9032 |
-
.bc-root .bc-uk-transition-toggle:hover .bc-uk-transition-scale-down,
|
9033 |
-
.bc-root .bc-uk-transition-toggle:focus .bc-uk-transition-scale-down,
|
9034 |
-
.bc-root .bc-uk-transition-active.bc-uk-active .bc-uk-transition-scale-down {
|
9035 |
-
opacity: 1;
|
9036 |
-
transform: scale(1, 1);
|
9037 |
-
}
|
9038 |
-
.bc-root .bc-uk-transition-slide-top {
|
9039 |
-
transform: translateY(-100%);
|
9040 |
-
}
|
9041 |
-
.bc-root .bc-uk-transition-slide-bottom {
|
9042 |
-
transform: translateY(100%);
|
9043 |
-
}
|
9044 |
-
.bc-root .bc-uk-transition-slide-left {
|
9045 |
-
transform: translateX(-100%);
|
9046 |
-
}
|
9047 |
-
.bc-root .bc-uk-transition-slide-right {
|
9048 |
-
transform: translateX(100%);
|
9049 |
-
}
|
9050 |
-
.bc-root .bc-uk-transition-slide-top-small {
|
9051 |
-
transform: translateY(-10px);
|
9052 |
-
}
|
9053 |
-
.bc-root .bc-uk-transition-slide-bottom-small {
|
9054 |
-
transform: translateY(10px);
|
9055 |
-
}
|
9056 |
-
.bc-root .bc-uk-transition-slide-left-small {
|
9057 |
-
transform: translateX(-10px);
|
9058 |
-
}
|
9059 |
-
.bc-root .bc-uk-transition-slide-right-small {
|
9060 |
-
transform: translateX(10px);
|
9061 |
-
}
|
9062 |
-
.bc-root .bc-uk-transition-slide-top-medium {
|
9063 |
-
transform: translateY(-50px);
|
9064 |
-
}
|
9065 |
-
.bc-root .bc-uk-transition-slide-bottom-medium {
|
9066 |
-
transform: translateY(50px);
|
9067 |
-
}
|
9068 |
-
.bc-root .bc-uk-transition-slide-left-medium {
|
9069 |
-
transform: translateX(-50px);
|
9070 |
-
}
|
9071 |
-
.bc-root .bc-uk-transition-slide-right-medium {
|
9072 |
-
transform: translateX(50px);
|
9073 |
-
}
|
9074 |
-
.bc-root .bc-uk-transition-toggle:hover [class*=uk-transition-slide],
|
9075 |
-
.bc-root .bc-uk-transition-toggle:focus [class*=uk-transition-slide],
|
9076 |
-
.bc-root .bc-uk-transition-active.bc-uk-active [class*=uk-transition-slide] {
|
9077 |
-
opacity: 1;
|
9078 |
-
transform: translate(0, 0);
|
9079 |
-
}
|
9080 |
-
.bc-root .bc-uk-transition-opaque {
|
9081 |
-
opacity: 1;
|
9082 |
-
}
|
9083 |
-
.bc-root .bc-uk-transition-slow {
|
9084 |
-
transition-duration: 0.7s;
|
9085 |
-
}
|
9086 |
-
.bc-root [hidden],
|
9087 |
-
.bc-root .bc-uk-hidden {
|
9088 |
-
display: none !important;
|
9089 |
-
}
|
9090 |
-
@media (min-width: 640px) {
|
9091 |
-
.bc-root .bc-uk-hidden\@s {
|
9092 |
-
display: none !important;
|
9093 |
-
}
|
9094 |
-
}
|
9095 |
-
@media (min-width: 960px) {
|
9096 |
-
.bc-root .bc-uk-hidden\@m {
|
9097 |
-
display: none !important;
|
9098 |
-
}
|
9099 |
-
}
|
9100 |
-
@media (min-width: 1200px) {
|
9101 |
-
.bc-root .bc-uk-hidden\@l {
|
9102 |
-
display: none !important;
|
9103 |
-
}
|
9104 |
-
}
|
9105 |
-
@media (min-width: 1600px) {
|
9106 |
-
.bc-root .bc-uk-hidden\@xl {
|
9107 |
-
display: none !important;
|
9108 |
-
}
|
9109 |
-
}
|
9110 |
-
@media (max-width: 639px) {
|
9111 |
-
.bc-root .bc-uk-visible\@s {
|
9112 |
-
display: none !important;
|
9113 |
-
}
|
9114 |
-
}
|
9115 |
-
@media (max-width: 959px) {
|
9116 |
-
.bc-root .bc-uk-visible\@m {
|
9117 |
-
display: none !important;
|
9118 |
-
}
|
9119 |
-
}
|
9120 |
-
@media (max-width: 1199px) {
|
9121 |
-
.bc-root .bc-uk-visible\@l {
|
9122 |
-
display: none !important;
|
9123 |
-
}
|
9124 |
-
}
|
9125 |
-
@media (max-width: 1599px) {
|
9126 |
-
.bc-root .bc-uk-visible\@xl {
|
9127 |
-
display: none !important;
|
9128 |
-
}
|
9129 |
-
}
|
9130 |
-
.bc-root .bc-uk-invisible {
|
9131 |
-
visibility: hidden !important;
|
9132 |
-
}
|
9133 |
-
.bc-root .bc-uk-visible-toggle:not(:hover):not(:focus) .bc-uk-hidden-hover:not(:focus-within) {
|
9134 |
-
/* 3 */
|
9135 |
-
position: absolute !important;
|
9136 |
-
width: 0 !important;
|
9137 |
-
height: 0 !important;
|
9138 |
-
padding: 0 !important;
|
9139 |
-
margin: 0 !important;
|
9140 |
-
overflow: hidden !important;
|
9141 |
-
}
|
9142 |
-
.bc-root .bc-uk-visible-toggle:not(:hover):not(:focus) .bc-uk-invisible-hover:not(:focus-within) {
|
9143 |
-
/* 3 */
|
9144 |
-
opacity: 0 !important;
|
9145 |
-
}
|
9146 |
-
.bc-root .bc-uk-visible-toggle {
|
9147 |
-
/* 1 */
|
9148 |
-
-webkit-tap-highlight-color: transparent;
|
9149 |
-
}
|
9150 |
-
.bc-root .bc-uk-visible-toggle:focus {
|
9151 |
-
outline: none;
|
9152 |
-
}
|
9153 |
-
@media (pointer: coarse) {
|
9154 |
-
.bc-root .bc-uk-hidden-touch {
|
9155 |
-
display: none !important;
|
9156 |
-
}
|
9157 |
-
}
|
9158 |
-
.bc-root .bc-uk-hidden-notouch {
|
9159 |
-
display: none !important;
|
9160 |
-
}
|
9161 |
-
@media (pointer: coarse) {
|
9162 |
-
.bc-root .bc-uk-hidden-notouch {
|
9163 |
-
display: block !important;
|
9164 |
-
}
|
9165 |
-
}
|
9166 |
-
.bc-root .bc-uk-light,
|
9167 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color),
|
9168 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color),
|
9169 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color),
|
9170 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color),
|
9171 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body,
|
9172 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]),
|
9173 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body,
|
9174 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]),
|
9175 |
-
.bc-root .bc-uk-overlay-primary,
|
9176 |
-
.bc-root .bc-uk-offcanvas-bar {
|
9177 |
-
color: rgba(255, 255, 255, 0.7);
|
9178 |
-
}
|
9179 |
-
.bc-root .bc-uk-light a,
|
9180 |
-
.bc-root .bc-uk-light .bc-uk-link,
|
9181 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) a,
|
9182 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-link,
|
9183 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) a,
|
9184 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-link,
|
9185 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) a,
|
9186 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-link,
|
9187 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) a,
|
9188 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-link,
|
9189 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body a,
|
9190 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-link,
|
9191 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) a,
|
9192 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-link,
|
9193 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body a,
|
9194 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-link,
|
9195 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) a,
|
9196 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-link,
|
9197 |
-
.bc-root .bc-uk-overlay-primary a,
|
9198 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-link,
|
9199 |
-
.bc-root .bc-uk-offcanvas-bar a,
|
9200 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-link {
|
9201 |
-
color: #fff;
|
9202 |
-
}
|
9203 |
-
.bc-root .bc-uk-light a:hover,
|
9204 |
-
.bc-root .bc-uk-light .bc-uk-link:hover,
|
9205 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) a:hover,
|
9206 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-link:hover,
|
9207 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) a:hover,
|
9208 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-link:hover,
|
9209 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) a:hover,
|
9210 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-link:hover,
|
9211 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) a:hover,
|
9212 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-link:hover,
|
9213 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body a:hover,
|
9214 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-link:hover,
|
9215 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) a:hover,
|
9216 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-link:hover,
|
9217 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body a:hover,
|
9218 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-link:hover,
|
9219 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) a:hover,
|
9220 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-link:hover,
|
9221 |
-
.bc-root .bc-uk-overlay-primary a:hover,
|
9222 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-link:hover,
|
9223 |
-
.bc-root .bc-uk-offcanvas-bar a:hover,
|
9224 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-link:hover {
|
9225 |
-
color: #fff;
|
9226 |
-
}
|
9227 |
-
.bc-root .bc-uk-light :not(pre) > code,
|
9228 |
-
.bc-root .bc-uk-light :not(pre) > kbd,
|
9229 |
-
.bc-root .bc-uk-light :not(pre) > samp,
|
9230 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) :not(pre) > code,
|
9231 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) :not(pre) > kbd,
|
9232 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) :not(pre) > samp,
|
9233 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) :not(pre) > code,
|
9234 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) :not(pre) > kbd,
|
9235 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) :not(pre) > samp,
|
9236 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) :not(pre) > code,
|
9237 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) :not(pre) > kbd,
|
9238 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) :not(pre) > samp,
|
9239 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) :not(pre) > code,
|
9240 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) :not(pre) > kbd,
|
9241 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) :not(pre) > samp,
|
9242 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body :not(pre) > code,
|
9243 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body :not(pre) > kbd,
|
9244 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body :not(pre) > samp,
|
9245 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) :not(pre) > code,
|
9246 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) :not(pre) > kbd,
|
9247 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) :not(pre) > samp,
|
9248 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body :not(pre) > code,
|
9249 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body :not(pre) > kbd,
|
9250 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body :not(pre) > samp,
|
9251 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) :not(pre) > code,
|
9252 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) :not(pre) > kbd,
|
9253 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) :not(pre) > samp,
|
9254 |
-
.bc-root .bc-uk-overlay-primary :not(pre) > code,
|
9255 |
-
.bc-root .bc-uk-overlay-primary :not(pre) > kbd,
|
9256 |
-
.bc-root .bc-uk-overlay-primary :not(pre) > samp,
|
9257 |
-
.bc-root .bc-uk-offcanvas-bar :not(pre) > code,
|
9258 |
-
.bc-root .bc-uk-offcanvas-bar :not(pre) > kbd,
|
9259 |
-
.bc-root .bc-uk-offcanvas-bar :not(pre) > samp {
|
9260 |
-
color: rgba(255, 255, 255, 0.7);
|
9261 |
-
background: rgba(255, 255, 255, 0.1);
|
9262 |
-
}
|
9263 |
-
.bc-root .bc-uk-light em,
|
9264 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) em,
|
9265 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) em,
|
9266 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) em,
|
9267 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) em,
|
9268 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body em,
|
9269 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) em,
|
9270 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body em,
|
9271 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) em,
|
9272 |
-
.bc-root .bc-uk-overlay-primary em,
|
9273 |
-
.bc-root .bc-uk-offcanvas-bar em {
|
9274 |
-
color: #fff;
|
9275 |
-
}
|
9276 |
-
.bc-root .bc-uk-light h1,
|
9277 |
-
.bc-root .bc-uk-light .bc-uk-h1,
|
9278 |
-
.bc-root .bc-uk-light h2,
|
9279 |
-
.bc-root .bc-uk-light .bc-uk-h2,
|
9280 |
-
.bc-root .bc-uk-light h3,
|
9281 |
-
.bc-root .bc-uk-light .bc-uk-h3,
|
9282 |
-
.bc-root .bc-uk-light h4,
|
9283 |
-
.bc-root .bc-uk-light .bc-uk-h4,
|
9284 |
-
.bc-root .bc-uk-light h5,
|
9285 |
-
.bc-root .bc-uk-light .bc-uk-h5,
|
9286 |
-
.bc-root .bc-uk-light h6,
|
9287 |
-
.bc-root .bc-uk-light .bc-uk-h6,
|
9288 |
-
.bc-root .bc-uk-light .bc-uk-heading-small,
|
9289 |
-
.bc-root .bc-uk-light .bc-uk-heading-medium,
|
9290 |
-
.bc-root .bc-uk-light .bc-uk-heading-large,
|
9291 |
-
.bc-root .bc-uk-light .bc-uk-heading-xlarge,
|
9292 |
-
.bc-root .bc-uk-light .bc-uk-heading-2xlarge,
|
9293 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) h1,
|
9294 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-h1,
|
9295 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) h2,
|
9296 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-h2,
|
9297 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) h3,
|
9298 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-h3,
|
9299 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) h4,
|
9300 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-h4,
|
9301 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) h5,
|
9302 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-h5,
|
9303 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) h6,
|
9304 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-h6,
|
9305 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-heading-small,
|
9306 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-heading-medium,
|
9307 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-heading-large,
|
9308 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-heading-xlarge,
|
9309 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-heading-2xlarge,
|
9310 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) h1,
|
9311 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-h1,
|
9312 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) h2,
|
9313 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-h2,
|
9314 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) h3,
|
9315 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-h3,
|
9316 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) h4,
|
9317 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-h4,
|
9318 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) h5,
|
9319 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-h5,
|
9320 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) h6,
|
9321 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-h6,
|
9322 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-small,
|
9323 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-medium,
|
9324 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-large,
|
9325 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-xlarge,
|
9326 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-2xlarge,
|
9327 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) h1,
|
9328 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-h1,
|
9329 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) h2,
|
9330 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-h2,
|
9331 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) h3,
|
9332 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-h3,
|
9333 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) h4,
|
9334 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-h4,
|
9335 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) h5,
|
9336 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-h5,
|
9337 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) h6,
|
9338 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-h6,
|
9339 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-heading-small,
|
9340 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-heading-medium,
|
9341 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-heading-large,
|
9342 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-heading-xlarge,
|
9343 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-heading-2xlarge,
|
9344 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) h1,
|
9345 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-h1,
|
9346 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) h2,
|
9347 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-h2,
|
9348 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) h3,
|
9349 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-h3,
|
9350 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) h4,
|
9351 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-h4,
|
9352 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) h5,
|
9353 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-h5,
|
9354 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) h6,
|
9355 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-h6,
|
9356 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-small,
|
9357 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-medium,
|
9358 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-large,
|
9359 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-xlarge,
|
9360 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-2xlarge,
|
9361 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body h1,
|
9362 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-h1,
|
9363 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body h2,
|
9364 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-h2,
|
9365 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body h3,
|
9366 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-h3,
|
9367 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body h4,
|
9368 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-h4,
|
9369 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body h5,
|
9370 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-h5,
|
9371 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body h6,
|
9372 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-h6,
|
9373 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-heading-small,
|
9374 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-heading-medium,
|
9375 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-heading-large,
|
9376 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-heading-xlarge,
|
9377 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-heading-2xlarge,
|
9378 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) h1,
|
9379 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-h1,
|
9380 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) h2,
|
9381 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-h2,
|
9382 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) h3,
|
9383 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-h3,
|
9384 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) h4,
|
9385 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-h4,
|
9386 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) h5,
|
9387 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-h5,
|
9388 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) h6,
|
9389 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-h6,
|
9390 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-heading-small,
|
9391 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-heading-medium,
|
9392 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-heading-large,
|
9393 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-heading-xlarge,
|
9394 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-heading-2xlarge,
|
9395 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body h1,
|
9396 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-h1,
|
9397 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body h2,
|
9398 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-h2,
|
9399 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body h3,
|
9400 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-h3,
|
9401 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body h4,
|
9402 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-h4,
|
9403 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body h5,
|
9404 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-h5,
|
9405 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body h6,
|
9406 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-h6,
|
9407 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-heading-small,
|
9408 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-heading-medium,
|
9409 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-heading-large,
|
9410 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-heading-xlarge,
|
9411 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-heading-2xlarge,
|
9412 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) h1,
|
9413 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-h1,
|
9414 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) h2,
|
9415 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-h2,
|
9416 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) h3,
|
9417 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-h3,
|
9418 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) h4,
|
9419 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-h4,
|
9420 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) h5,
|
9421 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-h5,
|
9422 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) h6,
|
9423 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-h6,
|
9424 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-heading-small,
|
9425 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-heading-medium,
|
9426 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-heading-large,
|
9427 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-heading-xlarge,
|
9428 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-heading-2xlarge,
|
9429 |
-
.bc-root .bc-uk-overlay-primary h1,
|
9430 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-h1,
|
9431 |
-
.bc-root .bc-uk-overlay-primary h2,
|
9432 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-h2,
|
9433 |
-
.bc-root .bc-uk-overlay-primary h3,
|
9434 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-h3,
|
9435 |
-
.bc-root .bc-uk-overlay-primary h4,
|
9436 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-h4,
|
9437 |
-
.bc-root .bc-uk-overlay-primary h5,
|
9438 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-h5,
|
9439 |
-
.bc-root .bc-uk-overlay-primary h6,
|
9440 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-h6,
|
9441 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-heading-small,
|
9442 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-heading-medium,
|
9443 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-heading-large,
|
9444 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-heading-xlarge,
|
9445 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-heading-2xlarge,
|
9446 |
-
.bc-root .bc-uk-offcanvas-bar h1,
|
9447 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-h1,
|
9448 |
-
.bc-root .bc-uk-offcanvas-bar h2,
|
9449 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-h2,
|
9450 |
-
.bc-root .bc-uk-offcanvas-bar h3,
|
9451 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-h3,
|
9452 |
-
.bc-root .bc-uk-offcanvas-bar h4,
|
9453 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-h4,
|
9454 |
-
.bc-root .bc-uk-offcanvas-bar h5,
|
9455 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-h5,
|
9456 |
-
.bc-root .bc-uk-offcanvas-bar h6,
|
9457 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-h6,
|
9458 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-heading-small,
|
9459 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-heading-medium,
|
9460 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-heading-large,
|
9461 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-heading-xlarge,
|
9462 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-heading-2xlarge {
|
9463 |
-
color: #fff;
|
9464 |
-
}
|
9465 |
-
.bc-root .bc-uk-light blockquote,
|
9466 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) blockquote,
|
9467 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) blockquote,
|
9468 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) blockquote,
|
9469 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) blockquote,
|
9470 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body blockquote,
|
9471 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) blockquote,
|
9472 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body blockquote,
|
9473 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) blockquote,
|
9474 |
-
.bc-root .bc-uk-overlay-primary blockquote,
|
9475 |
-
.bc-root .bc-uk-offcanvas-bar blockquote {
|
9476 |
-
color: #fff;
|
9477 |
-
}
|
9478 |
-
.bc-root .bc-uk-light blockquote footer,
|
9479 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) blockquote footer,
|
9480 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) blockquote footer,
|
9481 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) blockquote footer,
|
9482 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) blockquote footer,
|
9483 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body blockquote footer,
|
9484 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) blockquote footer,
|
9485 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body blockquote footer,
|
9486 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) blockquote footer,
|
9487 |
-
.bc-root .bc-uk-overlay-primary blockquote footer,
|
9488 |
-
.bc-root .bc-uk-offcanvas-bar blockquote footer {
|
9489 |
-
color: rgba(255, 255, 255, 0.7);
|
9490 |
-
}
|
9491 |
-
.bc-root .bc-uk-light hr,
|
9492 |
-
.bc-root .bc-uk-light .bc-uk-hr,
|
9493 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) hr,
|
9494 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-hr,
|
9495 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) hr,
|
9496 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-hr,
|
9497 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) hr,
|
9498 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-hr,
|
9499 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) hr,
|
9500 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-hr,
|
9501 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body hr,
|
9502 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-hr,
|
9503 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) hr,
|
9504 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-hr,
|
9505 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body hr,
|
9506 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-hr,
|
9507 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) hr,
|
9508 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-hr,
|
9509 |
-
.bc-root .bc-uk-overlay-primary hr,
|
9510 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-hr,
|
9511 |
-
.bc-root .bc-uk-offcanvas-bar hr,
|
9512 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-hr {
|
9513 |
-
border-top-color: rgba(255, 255, 255, 0.2);
|
9514 |
-
}
|
9515 |
-
.bc-root .bc-uk-light a.bc-uk-link-muted,
|
9516 |
-
.bc-root .bc-uk-light .bc-uk-link-muted a,
|
9517 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) a.bc-uk-link-muted,
|
9518 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-link-muted a,
|
9519 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) a.bc-uk-link-muted,
|
9520 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-link-muted a,
|
9521 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) a.bc-uk-link-muted,
|
9522 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-link-muted a,
|
9523 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) a.bc-uk-link-muted,
|
9524 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-link-muted a,
|
9525 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body a.bc-uk-link-muted,
|
9526 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-link-muted a,
|
9527 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) a.bc-uk-link-muted,
|
9528 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-link-muted a,
|
9529 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body a.bc-uk-link-muted,
|
9530 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-link-muted a,
|
9531 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) a.bc-uk-link-muted,
|
9532 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-link-muted a,
|
9533 |
-
.bc-root .bc-uk-overlay-primary a.bc-uk-link-muted,
|
9534 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-link-muted a,
|
9535 |
-
.bc-root .bc-uk-offcanvas-bar a.bc-uk-link-muted,
|
9536 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-link-muted a {
|
9537 |
-
color: rgba(255, 255, 255, 0.5);
|
9538 |
-
}
|
9539 |
-
.bc-root .bc-uk-light a.bc-uk-link-muted:hover,
|
9540 |
-
.bc-root .bc-uk-light .bc-uk-link-muted a:hover,
|
9541 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) a.bc-uk-link-muted:hover,
|
9542 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-link-muted a:hover,
|
9543 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) a.bc-uk-link-muted:hover,
|
9544 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-link-muted a:hover,
|
9545 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) a.bc-uk-link-muted:hover,
|
9546 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-link-muted a:hover,
|
9547 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) a.bc-uk-link-muted:hover,
|
9548 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-link-muted a:hover,
|
9549 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body a.bc-uk-link-muted:hover,
|
9550 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-link-muted a:hover,
|
9551 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) a.bc-uk-link-muted:hover,
|
9552 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-link-muted a:hover,
|
9553 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body a.bc-uk-link-muted:hover,
|
9554 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-link-muted a:hover,
|
9555 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) a.bc-uk-link-muted:hover,
|
9556 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-link-muted a:hover,
|
9557 |
-
.bc-root .bc-uk-overlay-primary a.bc-uk-link-muted:hover,
|
9558 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-link-muted a:hover,
|
9559 |
-
.bc-root .bc-uk-offcanvas-bar a.bc-uk-link-muted:hover,
|
9560 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-link-muted a:hover {
|
9561 |
-
color: rgba(255, 255, 255, 0.7);
|
9562 |
-
}
|
9563 |
-
.bc-root .bc-uk-light a.bc-uk-link-text:hover,
|
9564 |
-
.bc-root .bc-uk-light .bc-uk-link-text a:hover,
|
9565 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) a.bc-uk-link-text:hover,
|
9566 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-link-text a:hover,
|
9567 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) a.bc-uk-link-text:hover,
|
9568 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-link-text a:hover,
|
9569 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) a.bc-uk-link-text:hover,
|
9570 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-link-text a:hover,
|
9571 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) a.bc-uk-link-text:hover,
|
9572 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-link-text a:hover,
|
9573 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body a.bc-uk-link-text:hover,
|
9574 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-link-text a:hover,
|
9575 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) a.bc-uk-link-text:hover,
|
9576 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-link-text a:hover,
|
9577 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body a.bc-uk-link-text:hover,
|
9578 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-link-text a:hover,
|
9579 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) a.bc-uk-link-text:hover,
|
9580 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-link-text a:hover,
|
9581 |
-
.bc-root .bc-uk-overlay-primary a.bc-uk-link-text:hover,
|
9582 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-link-text a:hover,
|
9583 |
-
.bc-root .bc-uk-offcanvas-bar a.bc-uk-link-text:hover,
|
9584 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-link-text a:hover {
|
9585 |
-
color: rgba(255, 255, 255, 0.5);
|
9586 |
-
}
|
9587 |
-
.bc-root .bc-uk-light a.bc-uk-link-heading:hover,
|
9588 |
-
.bc-root .bc-uk-light .bc-uk-link-heading a:hover,
|
9589 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) a.bc-uk-link-heading:hover,
|
9590 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-link-heading a:hover,
|
9591 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) a.bc-uk-link-heading:hover,
|
9592 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-link-heading a:hover,
|
9593 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) a.bc-uk-link-heading:hover,
|
9594 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-link-heading a:hover,
|
9595 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) a.bc-uk-link-heading:hover,
|
9596 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-link-heading a:hover,
|
9597 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body a.bc-uk-link-heading:hover,
|
9598 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-link-heading a:hover,
|
9599 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) a.bc-uk-link-heading:hover,
|
9600 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-link-heading a:hover,
|
9601 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body a.bc-uk-link-heading:hover,
|
9602 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-link-heading a:hover,
|
9603 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) a.bc-uk-link-heading:hover,
|
9604 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-link-heading a:hover,
|
9605 |
-
.bc-root .bc-uk-overlay-primary a.bc-uk-link-heading:hover,
|
9606 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-link-heading a:hover,
|
9607 |
-
.bc-root .bc-uk-offcanvas-bar a.bc-uk-link-heading:hover,
|
9608 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-link-heading a:hover {
|
9609 |
-
color: #fff;
|
9610 |
-
}
|
9611 |
-
.bc-root .bc-uk-light .bc-uk-heading-divider,
|
9612 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-heading-divider,
|
9613 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-divider,
|
9614 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-heading-divider,
|
9615 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-divider,
|
9616 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-heading-divider,
|
9617 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-heading-divider,
|
9618 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-heading-divider,
|
9619 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-heading-divider,
|
9620 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-heading-divider,
|
9621 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-heading-divider {
|
9622 |
-
border-bottom-color: rgba(255, 255, 255, 0.2);
|
9623 |
-
}
|
9624 |
-
.bc-root .bc-uk-light .bc-uk-heading-bullet::before,
|
9625 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-heading-bullet::before,
|
9626 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-bullet::before,
|
9627 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-heading-bullet::before,
|
9628 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-bullet::before,
|
9629 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-heading-bullet::before,
|
9630 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-heading-bullet::before,
|
9631 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-heading-bullet::before,
|
9632 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-heading-bullet::before,
|
9633 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-heading-bullet::before,
|
9634 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-heading-bullet::before {
|
9635 |
-
border-left-color: rgba(255, 255, 255, 0.2);
|
9636 |
-
}
|
9637 |
-
.bc-root .bc-uk-light .bc-uk-heading-line > ::before,
|
9638 |
-
.bc-root .bc-uk-light .bc-uk-heading-line > ::after,
|
9639 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-heading-line > ::before,
|
9640 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-heading-line > ::after,
|
9641 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-line > ::before,
|
9642 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-line > ::after,
|
9643 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-heading-line > ::before,
|
9644 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-heading-line > ::after,
|
9645 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-line > ::before,
|
9646 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-line > ::after,
|
9647 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-heading-line > ::before,
|
9648 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-heading-line > ::after,
|
9649 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-heading-line > ::before,
|
9650 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-heading-line > ::after,
|
9651 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-heading-line > ::before,
|
9652 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-heading-line > ::after,
|
9653 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-heading-line > ::before,
|
9654 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-heading-line > ::after,
|
9655 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-heading-line > ::before,
|
9656 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-heading-line > ::after,
|
9657 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-heading-line > ::before,
|
9658 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-heading-line > ::after {
|
9659 |
-
border-bottom-color: rgba(255, 255, 255, 0.2);
|
9660 |
-
}
|
9661 |
-
.bc-root .bc-uk-light .bc-uk-divider-icon,
|
9662 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-divider-icon,
|
9663 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-divider-icon,
|
9664 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-divider-icon,
|
9665 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-divider-icon,
|
9666 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-divider-icon,
|
9667 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-divider-icon,
|
9668 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-divider-icon,
|
9669 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-divider-icon,
|
9670 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-divider-icon,
|
9671 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-divider-icon {
|
9672 |
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22none%22%20stroke%3D%22rgba%28255,%20255,%20255,%200.2%29%22%20stroke-width%3D%222%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%227%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
|
9673 |
-
}
|
9674 |
-
.bc-root .bc-uk-light .bc-uk-divider-icon::before,
|
9675 |
-
.bc-root .bc-uk-light .bc-uk-divider-icon::after,
|
9676 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-divider-icon::before,
|
9677 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-divider-icon::after,
|
9678 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-divider-icon::before,
|
9679 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-divider-icon::after,
|
9680 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-divider-icon::before,
|
9681 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-divider-icon::after,
|
9682 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-divider-icon::before,
|
9683 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-divider-icon::after,
|
9684 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-divider-icon::before,
|
9685 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-divider-icon::after,
|
9686 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-divider-icon::before,
|
9687 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-divider-icon::after,
|
9688 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-divider-icon::before,
|
9689 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-divider-icon::after,
|
9690 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-divider-icon::before,
|
9691 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-divider-icon::after,
|
9692 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-divider-icon::before,
|
9693 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-divider-icon::after,
|
9694 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-divider-icon::before,
|
9695 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-divider-icon::after {
|
9696 |
-
border-bottom-color: rgba(255, 255, 255, 0.2);
|
9697 |
-
}
|
9698 |
-
.bc-root .bc-uk-light .bc-uk-divider-small::after,
|
9699 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-divider-small::after,
|
9700 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-divider-small::after,
|
9701 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-divider-small::after,
|
9702 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-divider-small::after,
|
9703 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-divider-small::after,
|
9704 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-divider-small::after,
|
9705 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-divider-small::after,
|
9706 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-divider-small::after,
|
9707 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-divider-small::after,
|
9708 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-divider-small::after {
|
9709 |
-
border-top-color: rgba(255, 255, 255, 0.2);
|
9710 |
-
}
|
9711 |
-
.bc-root .bc-uk-light .bc-uk-divider-vertical::after,
|
9712 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-divider-vertical::after,
|
9713 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-divider-vertical::after,
|
9714 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-divider-vertical::after,
|
9715 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-divider-vertical::after,
|
9716 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-divider-vertical::after,
|
9717 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-divider-vertical::after,
|
9718 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-divider-vertical::after,
|
9719 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-divider-vertical::after,
|
9720 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-divider-vertical::after,
|
9721 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-divider-vertical::after {
|
9722 |
-
border-left-color: rgba(255, 255, 255, 0.2);
|
9723 |
-
}
|
9724 |
-
.bc-root .bc-uk-light .bc-uk-list-divider > li:nth-child(n+2),
|
9725 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-list-divider > li:nth-child(n+2),
|
9726 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-list-divider > li:nth-child(n+2),
|
9727 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-list-divider > li:nth-child(n+2),
|
9728 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-list-divider > li:nth-child(n+2),
|
9729 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-list-divider > li:nth-child(n+2),
|
9730 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-list-divider > li:nth-child(n+2),
|
9731 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-list-divider > li:nth-child(n+2),
|
9732 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-list-divider > li:nth-child(n+2),
|
9733 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-list-divider > li:nth-child(n+2),
|
9734 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-list-divider > li:nth-child(n+2) {
|
9735 |
-
border-top-color: rgba(255, 255, 255, 0.2);
|
9736 |
-
}
|
9737 |
-
.bc-root .bc-uk-light .bc-uk-list-striped > li:nth-of-type(odd),
|
9738 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-list-striped > li:nth-of-type(odd),
|
9739 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-list-striped > li:nth-of-type(odd),
|
9740 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-list-striped > li:nth-of-type(odd),
|
9741 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-list-striped > li:nth-of-type(odd),
|
9742 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-list-striped > li:nth-of-type(odd),
|
9743 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-list-striped > li:nth-of-type(odd),
|
9744 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-list-striped > li:nth-of-type(odd),
|
9745 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-list-striped > li:nth-of-type(odd),
|
9746 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-list-striped > li:nth-of-type(odd),
|
9747 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-list-striped > li:nth-of-type(odd) {
|
9748 |
-
border-top-color: rgba(255, 255, 255, 0.2);
|
9749 |
-
border-bottom-color: rgba(255, 255, 255, 0.2);
|
9750 |
-
}
|
9751 |
-
.bc-root .bc-uk-light .bc-uk-list-striped > li:nth-of-type(odd),
|
9752 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-list-striped > li:nth-of-type(odd),
|
9753 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-list-striped > li:nth-of-type(odd),
|
9754 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-list-striped > li:nth-of-type(odd),
|
9755 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-list-striped > li:nth-of-type(odd),
|
9756 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-list-striped > li:nth-of-type(odd),
|
9757 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-list-striped > li:nth-of-type(odd),
|
9758 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-list-striped > li:nth-of-type(odd),
|
9759 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-list-striped > li:nth-of-type(odd),
|
9760 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-list-striped > li:nth-of-type(odd),
|
9761 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-list-striped > li:nth-of-type(odd) {
|
9762 |
-
background-color: rgba(255, 255, 255, 0.1);
|
9763 |
-
}
|
9764 |
-
.bc-root .bc-uk-light .bc-uk-list-bullet > li::before,
|
9765 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-list-bullet > li::before,
|
9766 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-list-bullet > li::before,
|
9767 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-list-bullet > li::before,
|
9768 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-list-bullet > li::before,
|
9769 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-list-bullet > li::before,
|
9770 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-list-bullet > li::before,
|
9771 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-list-bullet > li::before,
|
9772 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-list-bullet > li::before,
|
9773 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-list-bullet > li::before,
|
9774 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-list-bullet > li::before {
|
9775 |
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%226%22%20height%3D%226%22%20viewBox%3D%220%200%206%206%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20cx%3D%223%22%20cy%3D%223%22%20r%3D%223%22%20%2F%3E%0A%3C%2Fsvg%3E");
|
9776 |
-
}
|
9777 |
-
.bc-root .bc-uk-light .bc-uk-table th,
|
9778 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-table th,
|
9779 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-table th,
|
9780 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-table th,
|
9781 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-table th,
|
9782 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-table th,
|
9783 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-table th,
|
9784 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-table th,
|
9785 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-table th,
|
9786 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-table th,
|
9787 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-table th {
|
9788 |
-
color: rgba(255, 255, 255, 0.7);
|
9789 |
-
}
|
9790 |
-
.bc-root .bc-uk-light .bc-uk-table caption,
|
9791 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-table caption,
|
9792 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-table caption,
|
9793 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-table caption,
|
9794 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-table caption,
|
9795 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-table caption,
|
9796 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-table caption,
|
9797 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-table caption,
|
9798 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-table caption,
|
9799 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-table caption,
|
9800 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-table caption {
|
9801 |
-
color: rgba(255, 255, 255, 0.5);
|
9802 |
-
}
|
9803 |
-
.bc-root .bc-uk-light .bc-uk-table > tr.bc-uk-active,
|
9804 |
-
.bc-root .bc-uk-light .bc-uk-table tbody tr.bc-uk-active,
|
9805 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-table > tr.bc-uk-active,
|
9806 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-table tbody tr.bc-uk-active,
|
9807 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-table > tr.bc-uk-active,
|
9808 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-table tbody tr.bc-uk-active,
|
9809 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-table > tr.bc-uk-active,
|
9810 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-table tbody tr.bc-uk-active,
|
9811 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-table > tr.bc-uk-active,
|
9812 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-table tbody tr.bc-uk-active,
|
9813 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-table > tr.bc-uk-active,
|
9814 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-table tbody tr.bc-uk-active,
|
9815 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-table > tr.bc-uk-active,
|
9816 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-table tbody tr.bc-uk-active,
|
9817 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-table > tr.bc-uk-active,
|
9818 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-table tbody tr.bc-uk-active,
|
9819 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-table > tr.bc-uk-active,
|
9820 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-table tbody tr.bc-uk-active,
|
9821 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-table > tr.bc-uk-active,
|
9822 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-table tbody tr.bc-uk-active,
|
9823 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-table > tr.bc-uk-active,
|
9824 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-table tbody tr.bc-uk-active {
|
9825 |
-
background: rgba(255, 255, 255, 0.08);
|
9826 |
-
}
|
9827 |
-
.bc-root .bc-uk-light .bc-uk-table-divider > tr:not(:first-child),
|
9828 |
-
.bc-root .bc-uk-light .bc-uk-table-divider > :not(:first-child) > tr,
|
9829 |
-
.bc-root .bc-uk-light .bc-uk-table-divider > :first-child > tr:not(:first-child),
|
9830 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-table-divider > tr:not(:first-child),
|
9831 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-table-divider > :not(:first-child) > tr,
|
9832 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-table-divider > :first-child > tr:not(:first-child),
|
9833 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-table-divider > tr:not(:first-child),
|
9834 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-table-divider > :not(:first-child) > tr,
|
9835 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-table-divider > :first-child > tr:not(:first-child),
|
9836 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-table-divider > tr:not(:first-child),
|
9837 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-table-divider > :not(:first-child) > tr,
|
9838 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-table-divider > :first-child > tr:not(:first-child),
|
9839 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-table-divider > tr:not(:first-child),
|
9840 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-table-divider > :not(:first-child) > tr,
|
9841 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-table-divider > :first-child > tr:not(:first-child),
|
9842 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-table-divider > tr:not(:first-child),
|
9843 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-table-divider > :not(:first-child) > tr,
|
9844 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-table-divider > :first-child > tr:not(:first-child),
|
9845 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-table-divider > tr:not(:first-child),
|
9846 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-table-divider > :not(:first-child) > tr,
|
9847 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-table-divider > :first-child > tr:not(:first-child),
|
9848 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-table-divider > tr:not(:first-child),
|
9849 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-table-divider > :not(:first-child) > tr,
|
9850 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-table-divider > :first-child > tr:not(:first-child),
|
9851 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-table-divider > tr:not(:first-child),
|
9852 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-table-divider > :not(:first-child) > tr,
|
9853 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-table-divider > :first-child > tr:not(:first-child),
|
9854 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-table-divider > tr:not(:first-child),
|
9855 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-table-divider > :not(:first-child) > tr,
|
9856 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-table-divider > :first-child > tr:not(:first-child),
|
9857 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-table-divider > tr:not(:first-child),
|
9858 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-table-divider > :not(:first-child) > tr,
|
9859 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-table-divider > :first-child > tr:not(:first-child) {
|
9860 |
-
border-top-color: rgba(255, 255, 255, 0.2);
|
9861 |
-
}
|
9862 |
-
.bc-root .bc-uk-light .bc-uk-table-striped > tr:nth-of-type(odd),
|
9863 |
-
.bc-root .bc-uk-light .bc-uk-table-striped tbody tr:nth-of-type(odd),
|
9864 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-table-striped > tr:nth-of-type(odd),
|
9865 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-table-striped tbody tr:nth-of-type(odd),
|
9866 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-table-striped > tr:nth-of-type(odd),
|
9867 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-table-striped tbody tr:nth-of-type(odd),
|
9868 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-table-striped > tr:nth-of-type(odd),
|
9869 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-table-striped tbody tr:nth-of-type(odd),
|
9870 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-table-striped > tr:nth-of-type(odd),
|
9871 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-table-striped tbody tr:nth-of-type(odd),
|
9872 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-table-striped > tr:nth-of-type(odd),
|
9873 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-table-striped tbody tr:nth-of-type(odd),
|
9874 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-table-striped > tr:nth-of-type(odd),
|
9875 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-table-striped tbody tr:nth-of-type(odd),
|
9876 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-table-striped > tr:nth-of-type(odd),
|
9877 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-table-striped tbody tr:nth-of-type(odd),
|
9878 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-table-striped > tr:nth-of-type(odd),
|
9879 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-table-striped tbody tr:nth-of-type(odd),
|
9880 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-table-striped > tr:nth-of-type(odd),
|
9881 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-table-striped tbody tr:nth-of-type(odd),
|
9882 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-table-striped > tr:nth-of-type(odd),
|
9883 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-table-striped tbody tr:nth-of-type(odd) {
|
9884 |
-
background: rgba(255, 255, 255, 0.1);
|
9885 |
-
border-top-color: rgba(255, 255, 255, 0.2);
|
9886 |
-
border-bottom-color: rgba(255, 255, 255, 0.2);
|
9887 |
-
}
|
9888 |
-
.bc-root .bc-uk-light .bc-uk-table-hover > tr:hover,
|
9889 |
-
.bc-root .bc-uk-light .bc-uk-table-hover tbody tr:hover,
|
9890 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-table-hover > tr:hover,
|
9891 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-table-hover tbody tr:hover,
|
9892 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-table-hover > tr:hover,
|
9893 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-table-hover tbody tr:hover,
|
9894 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-table-hover > tr:hover,
|
9895 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-table-hover tbody tr:hover,
|
9896 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-table-hover > tr:hover,
|
9897 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-table-hover tbody tr:hover,
|
9898 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-table-hover > tr:hover,
|
9899 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-table-hover tbody tr:hover,
|
9900 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-table-hover > tr:hover,
|
9901 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-table-hover tbody tr:hover,
|
9902 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-table-hover > tr:hover,
|
9903 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-table-hover tbody tr:hover,
|
9904 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-table-hover > tr:hover,
|
9905 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-table-hover tbody tr:hover,
|
9906 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-table-hover > tr:hover,
|
9907 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-table-hover tbody tr:hover,
|
9908 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-table-hover > tr:hover,
|
9909 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-table-hover tbody tr:hover {
|
9910 |
-
background: rgba(255, 255, 255, 0.08);
|
9911 |
-
}
|
9912 |
-
.bc-root .bc-uk-light .bc-uk-icon-link,
|
9913 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-icon-link,
|
9914 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-link,
|
9915 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-icon-link,
|
9916 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-link,
|
9917 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-icon-link,
|
9918 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-icon-link,
|
9919 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-icon-link,
|
9920 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-icon-link,
|
9921 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-icon-link,
|
9922 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-icon-link {
|
9923 |
-
color: rgba(255, 255, 255, 0.5);
|
9924 |
-
}
|
9925 |
-
.bc-root .bc-uk-light .bc-uk-icon-link:hover,
|
9926 |
-
.bc-root .bc-uk-light .bc-uk-icon-link:focus,
|
9927 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-icon-link:hover,
|
9928 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-icon-link:focus,
|
9929 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-link:hover,
|
9930 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-link:focus,
|
9931 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-icon-link:hover,
|
9932 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-icon-link:focus,
|
9933 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-link:hover,
|
9934 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-link:focus,
|
9935 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-icon-link:hover,
|
9936 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-icon-link:focus,
|
9937 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-icon-link:hover,
|
9938 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-icon-link:focus,
|
9939 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-icon-link:hover,
|
9940 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-icon-link:focus,
|
9941 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-icon-link:hover,
|
9942 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-icon-link:focus,
|
9943 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-icon-link:hover,
|
9944 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-icon-link:focus,
|
9945 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-icon-link:hover,
|
9946 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-icon-link:focus {
|
9947 |
-
color: rgba(255, 255, 255, 0.7);
|
9948 |
-
}
|
9949 |
-
.bc-root .bc-uk-light .bc-uk-icon-link:active,
|
9950 |
-
.bc-root .bc-uk-light .bc-uk-active > .bc-uk-icon-link,
|
9951 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-icon-link:active,
|
9952 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-active > .bc-uk-icon-link,
|
9953 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-link:active,
|
9954 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-active > .bc-uk-icon-link,
|
9955 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-icon-link:active,
|
9956 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-active > .bc-uk-icon-link,
|
9957 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-link:active,
|
9958 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-active > .bc-uk-icon-link,
|
9959 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-icon-link:active,
|
9960 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-active > .bc-uk-icon-link,
|
9961 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-icon-link:active,
|
9962 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-active > .bc-uk-icon-link,
|
9963 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-icon-link:active,
|
9964 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-active > .bc-uk-icon-link,
|
9965 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-icon-link:active,
|
9966 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-active > .bc-uk-icon-link,
|
9967 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-icon-link:active,
|
9968 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-active > .bc-uk-icon-link,
|
9969 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-icon-link:active,
|
9970 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-active > .bc-uk-icon-link {
|
9971 |
-
color: rgba(255, 255, 255, 0.7);
|
9972 |
-
}
|
9973 |
-
.bc-root .bc-uk-light .bc-uk-icon-button,
|
9974 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-icon-button,
|
9975 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-button,
|
9976 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-icon-button,
|
9977 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-button,
|
9978 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-icon-button,
|
9979 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-icon-button,
|
9980 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-icon-button,
|
9981 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-icon-button,
|
9982 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-icon-button,
|
9983 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-icon-button {
|
9984 |
-
background-color: rgba(255, 255, 255, 0.1);
|
9985 |
-
color: rgba(255, 255, 255, 0.5);
|
9986 |
-
}
|
9987 |
-
.bc-root .bc-uk-light .bc-uk-icon-button:hover,
|
9988 |
-
.bc-root .bc-uk-light .bc-uk-icon-button:focus,
|
9989 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-icon-button:hover,
|
9990 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-icon-button:focus,
|
9991 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-button:hover,
|
9992 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-button:focus,
|
9993 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-icon-button:hover,
|
9994 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-icon-button:focus,
|
9995 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-button:hover,
|
9996 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-button:focus,
|
9997 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-icon-button:hover,
|
9998 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-icon-button:focus,
|
9999 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-icon-button:hover,
|
10000 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-icon-button:focus,
|
10001 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-icon-button:hover,
|
10002 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-icon-button:focus,
|
10003 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-icon-button:hover,
|
10004 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-icon-button:focus,
|
10005 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-icon-button:hover,
|
10006 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-icon-button:focus,
|
10007 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-icon-button:hover,
|
10008 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-icon-button:focus {
|
10009 |
-
background-color: rgba(242, 242, 242, 0.1);
|
10010 |
-
color: rgba(255, 255, 255, 0.7);
|
10011 |
-
}
|
10012 |
-
.bc-root .bc-uk-light .bc-uk-icon-button:active,
|
10013 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-icon-button:active,
|
10014 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-button:active,
|
10015 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-icon-button:active,
|
10016 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-button:active,
|
10017 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-icon-button:active,
|
10018 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-icon-button:active,
|
10019 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-icon-button:active,
|
10020 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-icon-button:active,
|
10021 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-icon-button:active,
|
10022 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-icon-button:active {
|
10023 |
-
background-color: rgba(230, 230, 230, 0.1);
|
10024 |
-
color: rgba(255, 255, 255, 0.7);
|
10025 |
-
}
|
10026 |
-
.bc-root .bc-uk-light .bc-uk-input,
|
10027 |
-
.bc-root .bc-uk-light .bc-uk-select,
|
10028 |
-
.bc-root .bc-uk-light .bc-uk-textarea,
|
10029 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-input,
|
10030 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-select,
|
10031 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-textarea,
|
10032 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-input,
|
10033 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-select,
|
10034 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-textarea,
|
10035 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-input,
|
10036 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-select,
|
10037 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-textarea,
|
10038 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-input,
|
10039 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-select,
|
10040 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-textarea,
|
10041 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-input,
|
10042 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-select,
|
10043 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-textarea,
|
10044 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-input,
|
10045 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-select,
|
10046 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-textarea,
|
10047 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-input,
|
10048 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-select,
|
10049 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-textarea,
|
10050 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-input,
|
10051 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-select,
|
10052 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-textarea,
|
10053 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-input,
|
10054 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-select,
|
10055 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-textarea,
|
10056 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-input,
|
10057 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-select,
|
10058 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-textarea {
|
10059 |
-
background-color: rgba(255, 255, 255, 0.1);
|
10060 |
-
color: rgba(255, 255, 255, 0.7);
|
10061 |
-
background-clip: padding-box;
|
10062 |
-
border-color: rgba(255, 255, 255, 0.2);
|
10063 |
-
}
|
10064 |
-
.bc-root .bc-uk-light .bc-uk-input:focus,
|
10065 |
-
.bc-root .bc-uk-light .bc-uk-select:focus,
|
10066 |
-
.bc-root .bc-uk-light .bc-uk-textarea:focus,
|
10067 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-input:focus,
|
10068 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-select:focus,
|
10069 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-textarea:focus,
|
10070 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-input:focus,
|
10071 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-select:focus,
|
10072 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-textarea:focus,
|
10073 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-input:focus,
|
10074 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-select:focus,
|
10075 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-textarea:focus,
|
10076 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-input:focus,
|
10077 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-select:focus,
|
10078 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-textarea:focus,
|
10079 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-input:focus,
|
10080 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-select:focus,
|
10081 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-textarea:focus,
|
10082 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-input:focus,
|
10083 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-select:focus,
|
10084 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-textarea:focus,
|
10085 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-input:focus,
|
10086 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-select:focus,
|
10087 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-textarea:focus,
|
10088 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-input:focus,
|
10089 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-select:focus,
|
10090 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-textarea:focus,
|
10091 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-input:focus,
|
10092 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-select:focus,
|
10093 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-textarea:focus,
|
10094 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-input:focus,
|
10095 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-select:focus,
|
10096 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-textarea:focus {
|
10097 |
-
background-color: rgba(255, 255, 255, 0.1);
|
10098 |
-
color: rgba(255, 255, 255, 0.7);
|
10099 |
-
border-color: rgba(255, 255, 255, 0.7);
|
10100 |
-
}
|
10101 |
-
.bc-root .bc-uk-light .bc-uk-input::-ms-input-placeholder,
|
10102 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-input::-ms-input-placeholder,
|
10103 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-input::-ms-input-placeholder,
|
10104 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-input::-ms-input-placeholder,
|
10105 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-input::-ms-input-placeholder,
|
10106 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-input::-ms-input-placeholder,
|
10107 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-input::-ms-input-placeholder,
|
10108 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-input::-ms-input-placeholder,
|
10109 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-input::-ms-input-placeholder,
|
10110 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-input::-ms-input-placeholder,
|
10111 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-input::-ms-input-placeholder {
|
10112 |
-
color: rgba(255, 255, 255, 0.5) !important;
|
10113 |
-
}
|
10114 |
-
.bc-root .bc-uk-light .bc-uk-input::placeholder,
|
10115 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-input::placeholder,
|
10116 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-input::placeholder,
|
10117 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-input::placeholder,
|
10118 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-input::placeholder,
|
10119 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-input::placeholder,
|
10120 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-input::placeholder,
|
10121 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-input::placeholder,
|
10122 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-input::placeholder,
|
10123 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-input::placeholder,
|
10124 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-input::placeholder {
|
10125 |
-
color: rgba(255, 255, 255, 0.5);
|
10126 |
-
}
|
10127 |
-
.bc-root .bc-uk-light .bc-uk-textarea::-ms-input-placeholder,
|
10128 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-textarea::-ms-input-placeholder,
|
10129 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-textarea::-ms-input-placeholder,
|
10130 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-textarea::-ms-input-placeholder,
|
10131 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-textarea::-ms-input-placeholder,
|
10132 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-textarea::-ms-input-placeholder,
|
10133 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-textarea::-ms-input-placeholder,
|
10134 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-textarea::-ms-input-placeholder,
|
10135 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-textarea::-ms-input-placeholder,
|
10136 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-textarea::-ms-input-placeholder,
|
10137 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-textarea::-ms-input-placeholder {
|
10138 |
-
color: rgba(255, 255, 255, 0.5) !important;
|
10139 |
-
}
|
10140 |
-
.bc-root .bc-uk-light .bc-uk-textarea::placeholder,
|
10141 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-textarea::placeholder,
|
10142 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-textarea::placeholder,
|
10143 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-textarea::placeholder,
|
10144 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-textarea::placeholder,
|
10145 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-textarea::placeholder,
|
10146 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-textarea::placeholder,
|
10147 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-textarea::placeholder,
|
10148 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-textarea::placeholder,
|
10149 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-textarea::placeholder,
|
10150 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-textarea::placeholder {
|
10151 |
-
color: rgba(255, 255, 255, 0.5);
|
10152 |
-
}
|
10153 |
-
.bc-root .bc-uk-light .bc-uk-select:not([multiple]):not([size]),
|
10154 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-select:not([multiple]):not([size]),
|
10155 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-select:not([multiple]):not([size]),
|
10156 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-select:not([multiple]):not([size]),
|
10157 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-select:not([multiple]):not([size]),
|
10158 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-select:not([multiple]):not([size]),
|
10159 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-select:not([multiple]):not([size]),
|
10160 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-select:not([multiple]):not([size]),
|
10161 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-select:not([multiple]):not([size]),
|
10162 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-select:not([multiple]):not([size]),
|
10163 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-select:not([multiple]):not([size]) {
|
10164 |
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
|
10165 |
-
}
|
10166 |
-
.bc-root .bc-uk-light .bc-uk-radio,
|
10167 |
-
.bc-root .bc-uk-light .bc-uk-checkbox,
|
10168 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-radio,
|
10169 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox,
|
10170 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-radio,
|
10171 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox,
|
10172 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-radio,
|
10173 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox,
|
10174 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-radio,
|
10175 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox,
|
10176 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-radio,
|
10177 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-checkbox,
|
10178 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-radio,
|
10179 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-checkbox,
|
10180 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-radio,
|
10181 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-checkbox,
|
10182 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-radio,
|
10183 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-checkbox,
|
10184 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-radio,
|
10185 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-checkbox,
|
10186 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-radio,
|
10187 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-checkbox {
|
10188 |
-
background-color: rgba(242, 242, 242, 0.1);
|
10189 |
-
border-color: rgba(255, 255, 255, 0.2);
|
10190 |
-
}
|
10191 |
-
.bc-root .bc-uk-light .bc-uk-radio:focus,
|
10192 |
-
.bc-root .bc-uk-light .bc-uk-checkbox:focus,
|
10193 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-radio:focus,
|
10194 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:focus,
|
10195 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-radio:focus,
|
10196 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:focus,
|
10197 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-radio:focus,
|
10198 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:focus,
|
10199 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-radio:focus,
|
10200 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:focus,
|
10201 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-radio:focus,
|
10202 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-checkbox:focus,
|
10203 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-radio:focus,
|
10204 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-checkbox:focus,
|
10205 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-radio:focus,
|
10206 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-checkbox:focus,
|
10207 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-radio:focus,
|
10208 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-checkbox:focus,
|
10209 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-radio:focus,
|
10210 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-checkbox:focus,
|
10211 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-radio:focus,
|
10212 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-checkbox:focus {
|
10213 |
-
border-color: rgba(255, 255, 255, 0.7);
|
10214 |
-
}
|
10215 |
-
.bc-root .bc-uk-light .bc-uk-radio:checked,
|
10216 |
-
.bc-root .bc-uk-light .bc-uk-checkbox:checked,
|
10217 |
-
.bc-root .bc-uk-light .bc-uk-checkbox:indeterminate,
|
10218 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-radio:checked,
|
10219 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:checked,
|
10220 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:indeterminate,
|
10221 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-radio:checked,
|
10222 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:checked,
|
10223 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:indeterminate,
|
10224 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-radio:checked,
|
10225 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:checked,
|
10226 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:indeterminate,
|
10227 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-radio:checked,
|
10228 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:checked,
|
10229 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:indeterminate,
|
10230 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-radio:checked,
|
10231 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-checkbox:checked,
|
10232 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-checkbox:indeterminate,
|
10233 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-radio:checked,
|
10234 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-checkbox:checked,
|
10235 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-checkbox:indeterminate,
|
10236 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-radio:checked,
|
10237 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-checkbox:checked,
|
10238 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-checkbox:indeterminate,
|
10239 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-radio:checked,
|
10240 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-checkbox:checked,
|
10241 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-checkbox:indeterminate,
|
10242 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-radio:checked,
|
10243 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-checkbox:checked,
|
10244 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-checkbox:indeterminate,
|
10245 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-radio:checked,
|
10246 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-checkbox:checked,
|
10247 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-checkbox:indeterminate {
|
10248 |
-
background-color: #fff;
|
10249 |
-
border-color: rgba(255, 255, 255, 0.7);
|
10250 |
-
}
|
10251 |
-
.bc-root .bc-uk-light .bc-uk-radio:checked:focus,
|
10252 |
-
.bc-root .bc-uk-light .bc-uk-checkbox:checked:focus,
|
10253 |
-
.bc-root .bc-uk-light .bc-uk-checkbox:indeterminate:focus,
|
10254 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-radio:checked:focus,
|
10255 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:checked:focus,
|
10256 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:indeterminate:focus,
|
10257 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-radio:checked:focus,
|
10258 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:checked:focus,
|
10259 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:indeterminate:focus,
|
10260 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-radio:checked:focus,
|
10261 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:checked:focus,
|
10262 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:indeterminate:focus,
|
10263 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-radio:checked:focus,
|
10264 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:checked:focus,
|
10265 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:indeterminate:focus,
|
10266 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-radio:checked:focus,
|
10267 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-checkbox:checked:focus,
|
10268 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-checkbox:indeterminate:focus,
|
10269 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-radio:checked:focus,
|
10270 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-checkbox:checked:focus,
|
10271 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-checkbox:indeterminate:focus,
|
10272 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-radio:checked:focus,
|
10273 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-checkbox:checked:focus,
|
10274 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-checkbox:indeterminate:focus,
|
10275 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-radio:checked:focus,
|
10276 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-checkbox:checked:focus,
|
10277 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-checkbox:indeterminate:focus,
|
10278 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-radio:checked:focus,
|
10279 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-checkbox:checked:focus,
|
10280 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-checkbox:indeterminate:focus,
|
10281 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-radio:checked:focus,
|
10282 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-checkbox:checked:focus,
|
10283 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-checkbox:indeterminate:focus {
|
10284 |
-
background-color: #e6e6e6;
|
10285 |
-
}
|
10286 |
-
.bc-root .bc-uk-light .bc-uk-radio:checked,
|
10287 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-radio:checked,
|
10288 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-radio:checked,
|
10289 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-radio:checked,
|
10290 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-radio:checked,
|
10291 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-radio:checked,
|
10292 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-radio:checked,
|
10293 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-radio:checked,
|
10294 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-radio:checked,
|
10295 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-radio:checked,
|
10296 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-radio:checked {
|
10297 |
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23666%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E");
|
10298 |
-
}
|
10299 |
-
.bc-root .bc-uk-light .bc-uk-checkbox:checked,
|
10300 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:checked,
|
10301 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:checked,
|
10302 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:checked,
|
10303 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:checked,
|
10304 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-checkbox:checked,
|
10305 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-checkbox:checked,
|
10306 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-checkbox:checked,
|
10307 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-checkbox:checked,
|
10308 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-checkbox:checked,
|
10309 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-checkbox:checked {
|
10310 |
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
|
10311 |
-
}
|
10312 |
-
.bc-root .bc-uk-light .bc-uk-checkbox:indeterminate,
|
10313 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:indeterminate,
|
10314 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:indeterminate,
|
10315 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:indeterminate,
|
10316 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:indeterminate,
|
10317 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-checkbox:indeterminate,
|
10318 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-checkbox:indeterminate,
|
10319 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-checkbox:indeterminate,
|
10320 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-checkbox:indeterminate,
|
10321 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-checkbox:indeterminate,
|
10322 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-checkbox:indeterminate {
|
10323 |
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E");
|
10324 |
-
}
|
10325 |
-
.bc-root .bc-uk-light .bc-uk-form-label,
|
10326 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-form-label,
|
10327 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-form-label,
|
10328 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-form-label,
|
10329 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-form-label,
|
10330 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-form-label,
|
10331 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-form-label,
|
10332 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-form-label,
|
10333 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-form-label,
|
10334 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-form-label,
|
10335 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-form-label {
|
10336 |
-
color: #fff;
|
10337 |
-
}
|
10338 |
-
.bc-root .bc-uk-light .bc-uk-form-icon,
|
10339 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-form-icon,
|
10340 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-form-icon,
|
10341 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-form-icon,
|
10342 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-form-icon,
|
10343 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-form-icon,
|
10344 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-form-icon,
|
10345 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-form-icon,
|
10346 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-form-icon,
|
10347 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-form-icon,
|
10348 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-form-icon {
|
10349 |
-
color: rgba(255, 255, 255, 0.5);
|
10350 |
-
}
|
10351 |
-
.bc-root .bc-uk-light .bc-uk-form-icon:hover,
|
10352 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-form-icon:hover,
|
10353 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-form-icon:hover,
|
10354 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-form-icon:hover,
|
10355 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-form-icon:hover,
|
10356 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-form-icon:hover,
|
10357 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-form-icon:hover,
|
10358 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-form-icon:hover,
|
10359 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-form-icon:hover,
|
10360 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-form-icon:hover,
|
10361 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-form-icon:hover {
|
10362 |
-
color: rgba(255, 255, 255, 0.7);
|
10363 |
-
}
|
10364 |
-
.bc-root .bc-uk-light .bc-uk-button-default,
|
10365 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-default,
|
10366 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-default,
|
10367 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-default,
|
10368 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-default,
|
10369 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-default,
|
10370 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-button-default,
|
10371 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-default,
|
10372 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-button-default,
|
10373 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-button-default,
|
10374 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-button-default {
|
10375 |
-
background-color: transparent;
|
10376 |
-
color: #fff;
|
10377 |
-
border-color: rgba(255, 255, 255, 0.7);
|
10378 |
-
}
|
10379 |
-
.bc-root .bc-uk-light .bc-uk-button-default:hover,
|
10380 |
-
.bc-root .bc-uk-light .bc-uk-button-default:focus,
|
10381 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-default:hover,
|
10382 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-default:focus,
|
10383 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-default:hover,
|
10384 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-default:focus,
|
10385 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-default:hover,
|
10386 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-default:focus,
|
10387 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-default:hover,
|
10388 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-default:focus,
|
10389 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-default:hover,
|
10390 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-default:focus,
|
10391 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-button-default:hover,
|
10392 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-button-default:focus,
|
10393 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-default:hover,
|
10394 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-default:focus,
|
10395 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-button-default:hover,
|
10396 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-button-default:focus,
|
10397 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-button-default:hover,
|
10398 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-button-default:focus,
|
10399 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-button-default:hover,
|
10400 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-button-default:focus {
|
10401 |
-
background-color: transparent;
|
10402 |
-
color: #fff;
|
10403 |
-
border-color: #fff;
|
10404 |
-
}
|
10405 |
-
.bc-root .bc-uk-light .bc-uk-button-default:active,
|
10406 |
-
.bc-root .bc-uk-light .bc-uk-button-default.bc-uk-active,
|
10407 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-default:active,
|
10408 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-default.bc-uk-active,
|
10409 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-default:active,
|
10410 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-default.bc-uk-active,
|
10411 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-default:active,
|
10412 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-default.bc-uk-active,
|
10413 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-default:active,
|
10414 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-default.bc-uk-active,
|
10415 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-default:active,
|
10416 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-default.bc-uk-active,
|
10417 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-button-default:active,
|
10418 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-button-default.bc-uk-active,
|
10419 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-default:active,
|
10420 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-default.bc-uk-active,
|
10421 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-button-default:active,
|
10422 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-button-default.bc-uk-active,
|
10423 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-button-default:active,
|
10424 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-button-default.bc-uk-active,
|
10425 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-button-default:active,
|
10426 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-button-default.bc-uk-active {
|
10427 |
-
background-color: transparent;
|
10428 |
-
color: #fff;
|
10429 |
-
border-color: #fff;
|
10430 |
-
}
|
10431 |
-
.bc-root .bc-uk-light .bc-uk-button-primary,
|
10432 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-primary,
|
10433 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-primary,
|
10434 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-primary,
|
10435 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-primary,
|
10436 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-primary,
|
10437 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-button-primary,
|
10438 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-primary,
|
10439 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-button-primary,
|
10440 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-button-primary,
|
10441 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-button-primary {
|
10442 |
-
background-color: #fff;
|
10443 |
-
color: #666;
|
10444 |
-
}
|
10445 |
-
.bc-root .bc-uk-light .bc-uk-button-primary:hover,
|
10446 |
-
.bc-root .bc-uk-light .bc-uk-button-primary:focus,
|
10447 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-primary:hover,
|
10448 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-primary:focus,
|
10449 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-primary:hover,
|
10450 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-primary:focus,
|
10451 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-primary:hover,
|
10452 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-primary:focus,
|
10453 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-primary:hover,
|
10454 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-primary:focus,
|
10455 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-primary:hover,
|
10456 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-primary:focus,
|
10457 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-button-primary:hover,
|
10458 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-button-primary:focus,
|
10459 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-primary:hover,
|
10460 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-primary:focus,
|
10461 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-button-primary:hover,
|
10462 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-button-primary:focus,
|
10463 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-button-primary:hover,
|
10464 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-button-primary:focus,
|
10465 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-button-primary:hover,
|
10466 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-button-primary:focus {
|
10467 |
-
background-color: #f2f2f2;
|
10468 |
-
color: #666;
|
10469 |
-
}
|
10470 |
-
.bc-root .bc-uk-light .bc-uk-button-primary:active,
|
10471 |
-
.bc-root .bc-uk-light .bc-uk-button-primary.bc-uk-active,
|
10472 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-primary:active,
|
10473 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-primary.bc-uk-active,
|
10474 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-primary:active,
|
10475 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-primary.bc-uk-active,
|
10476 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-primary:active,
|
10477 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-primary.bc-uk-active,
|
10478 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-primary:active,
|
10479 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-primary.bc-uk-active,
|
10480 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-primary:active,
|
10481 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-primary.bc-uk-active,
|
10482 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-button-primary:active,
|
10483 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-button-primary.bc-uk-active,
|
10484 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-primary:active,
|
10485 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-primary.bc-uk-active,
|
10486 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-button-primary:active,
|
10487 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-button-primary.bc-uk-active,
|
10488 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-button-primary:active,
|
10489 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-button-primary.bc-uk-active,
|
10490 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-button-primary:active,
|
10491 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-button-primary.bc-uk-active {
|
10492 |
-
background-color: #e6e6e6;
|
10493 |
-
color: #666;
|
10494 |
-
}
|
10495 |
-
.bc-root .bc-uk-light .bc-uk-button-secondary,
|
10496 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-secondary,
|
10497 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-secondary,
|
10498 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-secondary,
|
10499 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-secondary,
|
10500 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-secondary,
|
10501 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-button-secondary,
|
10502 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-secondary,
|
10503 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-button-secondary,
|
10504 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-button-secondary,
|
10505 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-button-secondary {
|
10506 |
-
background-color: #fff;
|
10507 |
-
color: #666;
|
10508 |
-
}
|
10509 |
-
.bc-root .bc-uk-light .bc-uk-button-secondary:hover,
|
10510 |
-
.bc-root .bc-uk-light .bc-uk-button-secondary:focus,
|
10511 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-secondary:hover,
|
10512 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-secondary:focus,
|
10513 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-secondary:hover,
|
10514 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-secondary:focus,
|
10515 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-secondary:hover,
|
10516 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-secondary:focus,
|
10517 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-secondary:hover,
|
10518 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-secondary:focus,
|
10519 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-secondary:hover,
|
10520 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-secondary:focus,
|
10521 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-button-secondary:hover,
|
10522 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-button-secondary:focus,
|
10523 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-secondary:hover,
|
10524 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-secondary:focus,
|
10525 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-button-secondary:hover,
|
10526 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-button-secondary:focus,
|
10527 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-button-secondary:hover,
|
10528 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-button-secondary:focus,
|
10529 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-button-secondary:hover,
|
10530 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-button-secondary:focus {
|
10531 |
-
background-color: #f2f2f2;
|
10532 |
-
color: #666;
|
10533 |
-
}
|
10534 |
-
.bc-root .bc-uk-light .bc-uk-button-secondary:active,
|
10535 |
-
.bc-root .bc-uk-light .bc-uk-button-secondary.bc-uk-active,
|
10536 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-secondary:active,
|
10537 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-secondary.bc-uk-active,
|
10538 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-secondary:active,
|
10539 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-secondary.bc-uk-active,
|
10540 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-secondary:active,
|
10541 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-secondary.bc-uk-active,
|
10542 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-secondary:active,
|
10543 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-secondary.bc-uk-active,
|
10544 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-secondary:active,
|
10545 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-secondary.bc-uk-active,
|
10546 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-button-secondary:active,
|
10547 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-button-secondary.bc-uk-active,
|
10548 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-secondary:active,
|
10549 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-secondary.bc-uk-active,
|
10550 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-button-secondary:active,
|
10551 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-button-secondary.bc-uk-active,
|
10552 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-button-secondary:active,
|
10553 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-button-secondary.bc-uk-active,
|
10554 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-button-secondary:active,
|
10555 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-button-secondary.bc-uk-active {
|
10556 |
-
background-color: #e6e6e6;
|
10557 |
-
color: #666;
|
10558 |
-
}
|
10559 |
-
.bc-root .bc-uk-light .bc-uk-button-text,
|
10560 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-text,
|
10561 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-text,
|
10562 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-text,
|
10563 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-text,
|
10564 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-text,
|
10565 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-button-text,
|
10566 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-text,
|
10567 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-button-text,
|
10568 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-button-text,
|
10569 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-button-text {
|
10570 |
-
color: #fff;
|
10571 |
-
}
|
10572 |
-
.bc-root .bc-uk-light .bc-uk-button-text::before,
|
10573 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-text::before,
|
10574 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-text::before,
|
10575 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-text::before,
|
10576 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-text::before,
|
10577 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-text::before,
|
10578 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-button-text::before,
|
10579 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-text::before,
|
10580 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-button-text::before,
|
10581 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-button-text::before,
|
10582 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-button-text::before {
|
10583 |
-
border-bottom-color: #fff;
|
10584 |
-
}
|
10585 |
-
.bc-root .bc-uk-light .bc-uk-button-text:hover,
|
10586 |
-
.bc-root .bc-uk-light .bc-uk-button-text:focus,
|
10587 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-text:hover,
|
10588 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-text:focus,
|
10589 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-text:hover,
|
10590 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-text:focus,
|
10591 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-text:hover,
|
10592 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-text:focus,
|
10593 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-text:hover,
|
10594 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-text:focus,
|
10595 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-text:hover,
|
10596 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-text:focus,
|
10597 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-button-text:hover,
|
10598 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-button-text:focus,
|
10599 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-text:hover,
|
10600 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-text:focus,
|
10601 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-button-text:hover,
|
10602 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-button-text:focus,
|
10603 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-button-text:hover,
|
10604 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-button-text:focus,
|
10605 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-button-text:hover,
|
10606 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-button-text:focus {
|
10607 |
-
color: #fff;
|
10608 |
-
}
|
10609 |
-
.bc-root .bc-uk-light .bc-uk-button-text:disabled,
|
10610 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-text:disabled,
|
10611 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-text:disabled,
|
10612 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-text:disabled,
|
10613 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-text:disabled,
|
10614 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-text:disabled,
|
10615 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-button-text:disabled,
|
10616 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-text:disabled,
|
10617 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-button-text:disabled,
|
10618 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-button-text:disabled,
|
10619 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-button-text:disabled {
|
10620 |
-
color: rgba(255, 255, 255, 0.5);
|
10621 |
-
}
|
10622 |
-
.bc-root .bc-uk-light .bc-uk-button-link,
|
10623 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-link,
|
10624 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-link,
|
10625 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-link,
|
10626 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-link,
|
10627 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-link,
|
10628 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-button-link,
|
10629 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-link,
|
10630 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-button-link,
|
10631 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-button-link,
|
10632 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-button-link {
|
10633 |
-
color: rgba(255, 255, 255, 0.5);
|
10634 |
-
}
|
10635 |
-
.bc-root .bc-uk-light .bc-uk-button-link:hover,
|
10636 |
-
.bc-root .bc-uk-light .bc-uk-button-link:focus,
|
10637 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-link:hover,
|
10638 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-link:focus,
|
10639 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-link:hover,
|
10640 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-link:focus,
|
10641 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-link:hover,
|
10642 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-link:focus,
|
10643 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-link:hover,
|
10644 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-link:focus,
|
10645 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-link:hover,
|
10646 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-link:focus,
|
10647 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-button-link:hover,
|
10648 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-button-link:focus,
|
10649 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-link:hover,
|
10650 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-link:focus,
|
10651 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-button-link:hover,
|
10652 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-button-link:focus,
|
10653 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-button-link:hover,
|
10654 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-button-link:focus,
|
10655 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-button-link:hover,
|
10656 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-button-link:focus {
|
10657 |
-
color: rgba(255, 255, 255, 0.7);
|
10658 |
-
}
|
10659 |
-
.bc-root .bc-uk-light .bc-uk-grid-divider > :not(.bc-uk-first-column)::before,
|
10660 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-grid-divider > :not(.bc-uk-first-column)::before,
|
10661 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-grid-divider > :not(.bc-uk-first-column)::before,
|
10662 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-grid-divider > :not(.bc-uk-first-column)::before,
|
10663 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-grid-divider > :not(.bc-uk-first-column)::before,
|
10664 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-grid-divider > :not(.bc-uk-first-column)::before,
|
10665 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-grid-divider > :not(.bc-uk-first-column)::before,
|
10666 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-grid-divider > :not(.bc-uk-first-column)::before,
|
10667 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-grid-divider > :not(.bc-uk-first-column)::before,
|
10668 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-grid-divider > :not(.bc-uk-first-column)::before,
|
10669 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-grid-divider > :not(.bc-uk-first-column)::before {
|
10670 |
-
border-left-color: rgba(255, 255, 255, 0.2);
|
10671 |
-
}
|
10672 |
-
.bc-root .bc-uk-light .bc-uk-grid-divider.bc-uk-grid-stack > .bc-uk-grid-margin::before,
|
10673 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-grid-divider.bc-uk-grid-stack > .bc-uk-grid-margin::before,
|
10674 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-grid-divider.bc-uk-grid-stack > .bc-uk-grid-margin::before,
|
10675 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-grid-divider.bc-uk-grid-stack > .bc-uk-grid-margin::before,
|
10676 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-grid-divider.bc-uk-grid-stack > .bc-uk-grid-margin::before,
|
10677 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-grid-divider.bc-uk-grid-stack > .bc-uk-grid-margin::before,
|
10678 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-grid-divider.bc-uk-grid-stack > .bc-uk-grid-margin::before,
|
10679 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-grid-divider.bc-uk-grid-stack > .bc-uk-grid-margin::before,
|
10680 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-grid-divider.bc-uk-grid-stack > .bc-uk-grid-margin::before,
|
10681 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-grid-divider.bc-uk-grid-stack > .bc-uk-grid-margin::before,
|
10682 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-grid-divider.bc-uk-grid-stack > .bc-uk-grid-margin::before {
|
10683 |
-
border-top-color: rgba(255, 255, 255, 0.2);
|
10684 |
-
}
|
10685 |
-
.bc-root .bc-uk-light .bc-uk-close,
|
10686 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-close,
|
10687 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-close,
|
10688 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-close,
|
10689 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-close,
|
10690 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-close,
|
10691 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-close,
|
10692 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-close,
|
10693 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-close,
|
10694 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-close,
|
10695 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-close {
|
10696 |
-
color: rgba(255, 255, 255, 0.5);
|
10697 |
-
}
|
10698 |
-
.bc-root .bc-uk-light .bc-uk-close:hover,
|
10699 |
-
.bc-root .bc-uk-light .bc-uk-close:focus,
|
10700 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-close:hover,
|
10701 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-close:focus,
|
10702 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-close:hover,
|
10703 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-close:focus,
|
10704 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-close:hover,
|
10705 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-close:focus,
|
10706 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-close:hover,
|
10707 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-close:focus,
|
10708 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-close:hover,
|
10709 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-close:focus,
|
10710 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-close:hover,
|
10711 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-close:focus,
|
10712 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-close:hover,
|
10713 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-close:focus,
|
10714 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-close:hover,
|
10715 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-close:focus,
|
10716 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-close:hover,
|
10717 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-close:focus,
|
10718 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-close:hover,
|
10719 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-close:focus {
|
10720 |
-
color: rgba(255, 255, 255, 0.7);
|
10721 |
-
}
|
10722 |
-
.bc-root .bc-uk-light .bc-uk-totop,
|
10723 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-totop,
|
10724 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-totop,
|
10725 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-totop,
|
10726 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-totop,
|
10727 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-totop,
|
10728 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-totop,
|
10729 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-totop,
|
10730 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-totop,
|
10731 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-totop,
|
10732 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-totop {
|
10733 |
-
color: rgba(255, 255, 255, 0.5);
|
10734 |
-
}
|
10735 |
-
.bc-root .bc-uk-light .bc-uk-totop:hover,
|
10736 |
-
.bc-root .bc-uk-light .bc-uk-totop:focus,
|
10737 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-totop:hover,
|
10738 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-totop:focus,
|
10739 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-totop:hover,
|
10740 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-totop:focus,
|
10741 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-totop:hover,
|
10742 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-totop:focus,
|
10743 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-totop:hover,
|
10744 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-totop:focus,
|
10745 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-totop:hover,
|
10746 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-totop:focus,
|
10747 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-totop:hover,
|
10748 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-totop:focus,
|
10749 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-totop:hover,
|
10750 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-totop:focus,
|
10751 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-totop:hover,
|
10752 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-totop:focus,
|
10753 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-totop:hover,
|
10754 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-totop:focus,
|
10755 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-totop:hover,
|
10756 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-totop:focus {
|
10757 |
-
color: rgba(255, 255, 255, 0.7);
|
10758 |
-
}
|
10759 |
-
.bc-root .bc-uk-light .bc-uk-totop:active,
|
10760 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-totop:active,
|
10761 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-totop:active,
|
10762 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-totop:active,
|
10763 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-totop:active,
|
10764 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-totop:active,
|
10765 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-totop:active,
|
10766 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-totop:active,
|
10767 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-totop:active,
|
10768 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-totop:active,
|
10769 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-totop:active {
|
10770 |
-
color: #fff;
|
10771 |
-
}
|
10772 |
-
.bc-root .bc-uk-light .bc-uk-marker,
|
10773 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-marker,
|
10774 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-marker,
|
10775 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-marker,
|
10776 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-marker,
|
10777 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-marker,
|
10778 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-marker,
|
10779 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-marker,
|
10780 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-marker,
|
10781 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-marker,
|
10782 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-marker {
|
10783 |
-
background: #f8f8f8;
|
10784 |
-
color: #666;
|
10785 |
-
}
|
10786 |
-
.bc-root .bc-uk-light .bc-uk-marker:hover,
|
10787 |
-
.bc-root .bc-uk-light .bc-uk-marker:focus,
|
10788 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-marker:hover,
|
10789 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-marker:focus,
|
10790 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-marker:hover,
|
10791 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-marker:focus,
|
10792 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-marker:hover,
|
10793 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-marker:focus,
|
10794 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-marker:hover,
|
10795 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-marker:focus,
|
10796 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-marker:hover,
|
10797 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-marker:focus,
|
10798 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-marker:hover,
|
10799 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-marker:focus,
|
10800 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-marker:hover,
|
10801 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-marker:focus,
|
10802 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-marker:hover,
|
10803 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-marker:focus,
|
10804 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-marker:hover,
|
10805 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-marker:focus,
|
10806 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-marker:hover,
|
10807 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-marker:focus {
|
10808 |
-
color: #666;
|
10809 |
-
}
|
10810 |
-
.bc-root .bc-uk-light .bc-uk-badge,
|
10811 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-badge,
|
10812 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-badge,
|
10813 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-badge,
|
10814 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-badge,
|
10815 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-badge,
|
10816 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-badge,
|
10817 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-badge,
|
10818 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-badge,
|
10819 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-badge,
|
10820 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-badge {
|
10821 |
-
background-color: #fff;
|
10822 |
-
color: #666;
|
10823 |
-
}
|
10824 |
-
.bc-root .bc-uk-light .bc-uk-badge:hover,
|
10825 |
-
.bc-root .bc-uk-light .bc-uk-badge:focus,
|
10826 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-badge:hover,
|
10827 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-badge:focus,
|
10828 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-badge:hover,
|
10829 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-badge:focus,
|
10830 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-badge:hover,
|
10831 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-badge:focus,
|
10832 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-badge:hover,
|
10833 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-badge:focus,
|
10834 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-badge:hover,
|
10835 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-badge:focus,
|
10836 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-badge:hover,
|
10837 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-badge:focus,
|
10838 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-badge:hover,
|
10839 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-badge:focus,
|
10840 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-badge:hover,
|
10841 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-badge:focus,
|
10842 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-badge:hover,
|
10843 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-badge:focus,
|
10844 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-badge:hover,
|
10845 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-badge:focus {
|
10846 |
-
color: #666;
|
10847 |
-
}
|
10848 |
-
.bc-root .bc-uk-light .bc-uk-label,
|
10849 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-label,
|
10850 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-label,
|
10851 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-label,
|
10852 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-label,
|
10853 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-label,
|
10854 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-label,
|
10855 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-label,
|
10856 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-label,
|
10857 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-label,
|
10858 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-label {
|
10859 |
-
background-color: #fff;
|
10860 |
-
color: #666;
|
10861 |
-
}
|
10862 |
-
.bc-root .bc-uk-light .bc-uk-article-meta,
|
10863 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-article-meta,
|
10864 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-article-meta,
|
10865 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-article-meta,
|
10866 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-article-meta,
|
10867 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-article-meta,
|
10868 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-article-meta,
|
10869 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-article-meta,
|
10870 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-article-meta,
|
10871 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-article-meta,
|
10872 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-article-meta {
|
10873 |
-
color: rgba(255, 255, 255, 0.5);
|
10874 |
-
}
|
10875 |
-
.bc-root .bc-uk-light .bc-uk-search-input,
|
10876 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-search-input,
|
10877 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-search-input,
|
10878 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-search-input,
|
10879 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-search-input,
|
10880 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-search-input,
|
10881 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-search-input,
|
10882 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-search-input,
|
10883 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-search-input,
|
10884 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-search-input,
|
10885 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-search-input {
|
10886 |
-
color: rgba(255, 255, 255, 0.7);
|
10887 |
-
}
|
10888 |
-
.bc-root .bc-uk-light .bc-uk-search-input:-ms-input-placeholder,
|
10889 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-search-input:-ms-input-placeholder,
|
10890 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-search-input:-ms-input-placeholder,
|
10891 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-search-input:-ms-input-placeholder,
|
10892 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-search-input:-ms-input-placeholder,
|
10893 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-search-input:-ms-input-placeholder,
|
10894 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-search-input:-ms-input-placeholder,
|
10895 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-search-input:-ms-input-placeholder,
|
10896 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-search-input:-ms-input-placeholder,
|
10897 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-search-input:-ms-input-placeholder,
|
10898 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-search-input:-ms-input-placeholder {
|
10899 |
-
color: rgba(255, 255, 255, 0.5) !important;
|
10900 |
-
}
|
10901 |
-
.bc-root .bc-uk-light .bc-uk-search-input::placeholder,
|
10902 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-search-input::placeholder,
|
10903 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-search-input::placeholder,
|
10904 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-search-input::placeholder,
|
10905 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-search-input::placeholder,
|
10906 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-search-input::placeholder,
|
10907 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-search-input::placeholder,
|
10908 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-search-input::placeholder,
|
10909 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-search-input::placeholder,
|
10910 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-search-input::placeholder,
|
10911 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-search-input::placeholder {
|
10912 |
-
color: rgba(255, 255, 255, 0.5);
|
10913 |
-
}
|
10914 |
-
.bc-root .bc-uk-light .bc-uk-search .bc-uk-search-icon,
|
10915 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-search .bc-uk-search-icon,
|
10916 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-search .bc-uk-search-icon,
|
10917 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-search .bc-uk-search-icon,
|
10918 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-search .bc-uk-search-icon,
|
10919 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-search .bc-uk-search-icon,
|
10920 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-search .bc-uk-search-icon,
|
10921 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-search .bc-uk-search-icon,
|
10922 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-search .bc-uk-search-icon,
|
10923 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-search .bc-uk-search-icon,
|
10924 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-search .bc-uk-search-icon {
|
10925 |
-
color: rgba(255, 255, 255, 0.5);
|
10926 |
-
}
|
10927 |
-
.bc-root .bc-uk-light .bc-uk-search .bc-uk-search-icon:hover,
|
10928 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-search .bc-uk-search-icon:hover,
|
10929 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-search .bc-uk-search-icon:hover,
|
10930 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-search .bc-uk-search-icon:hover,
|
10931 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-search .bc-uk-search-icon:hover,
|
10932 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-search .bc-uk-search-icon:hover,
|
10933 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-search .bc-uk-search-icon:hover,
|
10934 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-search .bc-uk-search-icon:hover,
|
10935 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-search .bc-uk-search-icon:hover,
|
10936 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-search .bc-uk-search-icon:hover,
|
10937 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-search .bc-uk-search-icon:hover {
|
10938 |
-
color: rgba(255, 255, 255, 0.5);
|
10939 |
-
}
|
10940 |
-
.bc-root .bc-uk-light .bc-uk-search-default .bc-uk-search-input,
|
10941 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-search-default .bc-uk-search-input,
|
10942 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-search-default .bc-uk-search-input,
|
10943 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-search-default .bc-uk-search-input,
|
10944 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-search-default .bc-uk-search-input,
|
10945 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-search-default .bc-uk-search-input,
|
10946 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-search-default .bc-uk-search-input,
|
10947 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-search-default .bc-uk-search-input,
|
10948 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-search-default .bc-uk-search-input,
|
10949 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-search-default .bc-uk-search-input,
|
10950 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-search-default .bc-uk-search-input {
|
10951 |
-
background-color: transparent;
|
10952 |
-
border-color: rgba(255, 255, 255, 0.2);
|
10953 |
-
}
|
10954 |
-
.bc-root .bc-uk-light .bc-uk-search-default .bc-uk-search-input:focus,
|
10955 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-search-default .bc-uk-search-input:focus,
|
10956 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-search-default .bc-uk-search-input:focus,
|
10957 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-search-default .bc-uk-search-input:focus,
|
10958 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-search-default .bc-uk-search-input:focus,
|
10959 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-search-default .bc-uk-search-input:focus,
|
10960 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-search-default .bc-uk-search-input:focus,
|
10961 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-search-default .bc-uk-search-input:focus,
|
10962 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-search-default .bc-uk-search-input:focus,
|
10963 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-search-default .bc-uk-search-input:focus,
|
10964 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-search-default .bc-uk-search-input:focus {
|
10965 |
-
background-color: transparent;
|
10966 |
-
}
|
10967 |
-
.bc-root .bc-uk-light .bc-uk-search-navbar .bc-uk-search-input,
|
10968 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-search-navbar .bc-uk-search-input,
|
10969 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-search-navbar .bc-uk-search-input,
|
10970 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-search-navbar .bc-uk-search-input,
|
10971 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-search-navbar .bc-uk-search-input,
|
10972 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-search-navbar .bc-uk-search-input,
|
10973 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-search-navbar .bc-uk-search-input,
|
10974 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-search-navbar .bc-uk-search-input,
|
10975 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-search-navbar .bc-uk-search-input,
|
10976 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-search-navbar .bc-uk-search-input,
|
10977 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-search-navbar .bc-uk-search-input {
|
10978 |
-
background-color: transparent;
|
10979 |
-
}
|
10980 |
-
.bc-root .bc-uk-light .bc-uk-search-large .bc-uk-search-input,
|
10981 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-search-large .bc-uk-search-input,
|
10982 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-search-large .bc-uk-search-input,
|
10983 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-search-large .bc-uk-search-input,
|
10984 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-search-large .bc-uk-search-input,
|
10985 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-search-large .bc-uk-search-input,
|
10986 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-search-large .bc-uk-search-input,
|
10987 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-search-large .bc-uk-search-input,
|
10988 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-search-large .bc-uk-search-input,
|
10989 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-search-large .bc-uk-search-input,
|
10990 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-search-large .bc-uk-search-input {
|
10991 |
-
background-color: transparent;
|
10992 |
-
}
|
10993 |
-
.bc-root .bc-uk-light .bc-uk-search-toggle,
|
10994 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-search-toggle,
|
10995 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-search-toggle,
|
10996 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-search-toggle,
|
10997 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-search-toggle,
|
10998 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-search-toggle,
|
10999 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-search-toggle,
|
11000 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-search-toggle,
|
11001 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-search-toggle,
|
11002 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-search-toggle,
|
11003 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-search-toggle {
|
11004 |
-
color: rgba(255, 255, 255, 0.5);
|
11005 |
-
}
|
11006 |
-
.bc-root .bc-uk-light .bc-uk-search-toggle:hover,
|
11007 |
-
.bc-root .bc-uk-light .bc-uk-search-toggle:focus,
|
11008 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-search-toggle:hover,
|
11009 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-search-toggle:focus,
|
11010 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-search-toggle:hover,
|
11011 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-search-toggle:focus,
|
11012 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-search-toggle:hover,
|
11013 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-search-toggle:focus,
|
11014 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-search-toggle:hover,
|
11015 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-search-toggle:focus,
|
11016 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-search-toggle:hover,
|
11017 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-search-toggle:focus,
|
11018 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-search-toggle:hover,
|
11019 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-search-toggle:focus,
|
11020 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-search-toggle:hover,
|
11021 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-search-toggle:focus,
|
11022 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-search-toggle:hover,
|
11023 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-search-toggle:focus,
|
11024 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-search-toggle:hover,
|
11025 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-search-toggle:focus,
|
11026 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-search-toggle:hover,
|
11027 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-search-toggle:focus {
|
11028 |
-
color: rgba(255, 255, 255, 0.7);
|
11029 |
-
}
|
11030 |
-
.bc-root .bc-uk-light .bc-uk-nav-parent-icon > .bc-uk-parent > a::after,
|
11031 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-parent-icon > .bc-uk-parent > a::after,
|
11032 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-parent-icon > .bc-uk-parent > a::after,
|
11033 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-parent-icon > .bc-uk-parent > a::after,
|
11034 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-parent-icon > .bc-uk-parent > a::after,
|
11035 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-parent-icon > .bc-uk-parent > a::after,
|
11036 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-nav-parent-icon > .bc-uk-parent > a::after,
|
11037 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-parent-icon > .bc-uk-parent > a::after,
|
11038 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-nav-parent-icon > .bc-uk-parent > a::after,
|
11039 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-nav-parent-icon > .bc-uk-parent > a::after,
|
11040 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-parent-icon > .bc-uk-parent > a::after {
|
11041 |
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20stroke-width%3D%221.1%22%20points%3D%2210%201%204%207%2010%2013%22%20%2F%3E%0A%3C%2Fsvg%3E");
|
11042 |
-
}
|
11043 |
-
.bc-root .bc-uk-light .bc-uk-nav-parent-icon > .bc-uk-parent.bc-uk-open > a::after,
|
11044 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-parent-icon > .bc-uk-parent.bc-uk-open > a::after,
|
11045 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-parent-icon > .bc-uk-parent.bc-uk-open > a::after,
|
11046 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-parent-icon > .bc-uk-parent.bc-uk-open > a::after,
|
11047 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-parent-icon > .bc-uk-parent.bc-uk-open > a::after,
|
11048 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-parent-icon > .bc-uk-parent.bc-uk-open > a::after,
|
11049 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-nav-parent-icon > .bc-uk-parent.bc-uk-open > a::after,
|
11050 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-parent-icon > .bc-uk-parent.bc-uk-open > a::after,
|
11051 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-nav-parent-icon > .bc-uk-parent.bc-uk-open > a::after,
|
11052 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-nav-parent-icon > .bc-uk-parent.bc-uk-open > a::after,
|
11053 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-parent-icon > .bc-uk-parent.bc-uk-open > a::after {
|
11054 |
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20stroke-width%3D%221.1%22%20points%3D%221%204%207%2010%2013%204%22%20%2F%3E%0A%3C%2Fsvg%3E");
|
11055 |
-
}
|
11056 |
-
.bc-root .bc-uk-light .bc-uk-nav-default > li > a,
|
11057 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default > li > a,
|
11058 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default > li > a,
|
11059 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default > li > a,
|
11060 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default > li > a,
|
11061 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-default > li > a,
|
11062 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-nav-default > li > a,
|
11063 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-default > li > a,
|
11064 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-nav-default > li > a,
|
11065 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-nav-default > li > a,
|
11066 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-default > li > a {
|
11067 |
-
color: rgba(255, 255, 255, 0.5);
|
11068 |
-
}
|
11069 |
-
.bc-root .bc-uk-light .bc-uk-nav-default > li > a:hover,
|
11070 |
-
.bc-root .bc-uk-light .bc-uk-nav-default > li > a:focus,
|
11071 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default > li > a:hover,
|
11072 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default > li > a:focus,
|
11073 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default > li > a:hover,
|
11074 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default > li > a:focus,
|
11075 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default > li > a:hover,
|
11076 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default > li > a:focus,
|
11077 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default > li > a:hover,
|
11078 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default > li > a:focus,
|
11079 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-default > li > a:hover,
|
11080 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-default > li > a:focus,
|
11081 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-nav-default > li > a:hover,
|
11082 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-nav-default > li > a:focus,
|
11083 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-default > li > a:hover,
|
11084 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-default > li > a:focus,
|
11085 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-nav-default > li > a:hover,
|
11086 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-nav-default > li > a:focus,
|
11087 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-nav-default > li > a:hover,
|
11088 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-nav-default > li > a:focus,
|
11089 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-default > li > a:hover,
|
11090 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-default > li > a:focus {
|
11091 |
-
color: rgba(255, 255, 255, 0.7);
|
11092 |
-
}
|
11093 |
-
.bc-root .bc-uk-light .bc-uk-nav-default > li.bc-uk-active > a,
|
11094 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default > li.bc-uk-active > a,
|
11095 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default > li.bc-uk-active > a,
|
11096 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default > li.bc-uk-active > a,
|
11097 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default > li.bc-uk-active > a,
|
11098 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-default > li.bc-uk-active > a,
|
11099 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-nav-default > li.bc-uk-active > a,
|
11100 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-default > li.bc-uk-active > a,
|
11101 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-nav-default > li.bc-uk-active > a,
|
11102 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-nav-default > li.bc-uk-active > a,
|
11103 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-default > li.bc-uk-active > a {
|
11104 |
-
color: #fff;
|
11105 |
-
}
|
11106 |
-
.bc-root .bc-uk-light .bc-uk-nav-default .bc-uk-nav-header,
|
11107 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-header,
|
11108 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-header,
|
11109 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-header,
|
11110 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-header,
|
11111 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-header,
|
11112 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-nav-default .bc-uk-nav-header,
|
11113 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-header,
|
11114 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-nav-default .bc-uk-nav-header,
|
11115 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-nav-default .bc-uk-nav-header,
|
11116 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-default .bc-uk-nav-header {
|
11117 |
-
color: #fff;
|
11118 |
-
}
|
11119 |
-
.bc-root .bc-uk-light .bc-uk-nav-default .bc-uk-nav-divider,
|
11120 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-divider,
|
11121 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-divider,
|
11122 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-divider,
|
11123 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-divider,
|
11124 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-divider,
|
11125 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-nav-default .bc-uk-nav-divider,
|
11126 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-divider,
|
11127 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-nav-default .bc-uk-nav-divider,
|
11128 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-nav-default .bc-uk-nav-divider,
|
11129 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-default .bc-uk-nav-divider {
|
11130 |
-
border-top-color: rgba(255, 255, 255, 0.2);
|
11131 |
-
}
|
11132 |
-
.bc-root .bc-uk-light .bc-uk-nav-default .bc-uk-nav-sub a,
|
11133 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub a,
|
11134 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub a,
|
11135 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub a,
|
11136 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub a,
|
11137 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-sub a,
|
11138 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-nav-default .bc-uk-nav-sub a,
|
11139 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-sub a,
|
11140 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-nav-default .bc-uk-nav-sub a,
|
11141 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-nav-default .bc-uk-nav-sub a,
|
11142 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-default .bc-uk-nav-sub a {
|
11143 |
-
color: rgba(255, 255, 255, 0.5);
|
11144 |
-
}
|
11145 |
-
.bc-root .bc-uk-light .bc-uk-nav-default .bc-uk-nav-sub a:hover,
|
11146 |
-
.bc-root .bc-uk-light .bc-uk-nav-default .bc-uk-nav-sub a:focus,
|
11147 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub a:hover,
|
11148 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub a:focus,
|
11149 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub a:hover,
|
11150 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub a:focus,
|
11151 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub a:hover,
|
11152 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub a:focus,
|
11153 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub a:hover,
|
11154 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub a:focus,
|
11155 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-sub a:hover,
|
11156 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-sub a:focus,
|
11157 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-nav-default .bc-uk-nav-sub a:hover,
|
11158 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-nav-default .bc-uk-nav-sub a:focus,
|
11159 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-sub a:hover,
|
11160 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-sub a:focus,
|
11161 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-nav-default .bc-uk-nav-sub a:hover,
|
11162 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-nav-default .bc-uk-nav-sub a:focus,
|
11163 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-nav-default .bc-uk-nav-sub a:hover,
|
11164 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-nav-default .bc-uk-nav-sub a:focus,
|
11165 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-default .bc-uk-nav-sub a:hover,
|
11166 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-default .bc-uk-nav-sub a:focus {
|
11167 |
-
color: rgba(255, 255, 255, 0.7);
|
11168 |
-
}
|
11169 |
-
.bc-root .bc-uk-light .bc-uk-nav-default .bc-uk-nav-sub li.bc-uk-active > a,
|
11170 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub li.bc-uk-active > a,
|
11171 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub li.bc-uk-active > a,
|
11172 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub li.bc-uk-active > a,
|
11173 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub li.bc-uk-active > a,
|
11174 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-sub li.bc-uk-active > a,
|
11175 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-nav-default .bc-uk-nav-sub li.bc-uk-active > a,
|
11176 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-sub li.bc-uk-active > a,
|
11177 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-nav-default .bc-uk-nav-sub li.bc-uk-active > a,
|
11178 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-nav-default .bc-uk-nav-sub li.bc-uk-active > a,
|
11179 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-default .bc-uk-nav-sub li.bc-uk-active > a {
|
11180 |
-
color: #fff;
|
11181 |
-
}
|
11182 |
-
.bc-root .bc-uk-light .bc-uk-nav-primary > li > a,
|
11183 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary > li > a,
|
11184 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary > li > a,
|
11185 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary > li > a,
|
11186 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary > li > a,
|
11187 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-primary > li > a,
|
11188 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-nav-primary > li > a,
|
11189 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-primary > li > a,
|
11190 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-nav-primary > li > a,
|
11191 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-nav-primary > li > a,
|
11192 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-primary > li > a {
|
11193 |
-
color: rgba(255, 255, 255, 0.5);
|
11194 |
-
}
|
11195 |
-
.bc-root .bc-uk-light .bc-uk-nav-primary > li > a:hover,
|
11196 |
-
.bc-root .bc-uk-light .bc-uk-nav-primary > li > a:focus,
|
11197 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary > li > a:hover,
|
11198 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary > li > a:focus,
|
11199 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary > li > a:hover,
|
11200 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary > li > a:focus,
|
11201 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary > li > a:hover,
|
11202 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary > li > a:focus,
|
11203 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary > li > a:hover,
|
11204 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary > li > a:focus,
|
11205 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-primary > li > a:hover,
|
11206 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-primary > li > a:focus,
|
11207 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-nav-primary > li > a:hover,
|
11208 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-nav-primary > li > a:focus,
|
11209 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-primary > li > a:hover,
|
11210 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-primary > li > a:focus,
|
11211 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-nav-primary > li > a:hover,
|
11212 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-nav-primary > li > a:focus,
|
11213 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-nav-primary > li > a:hover,
|
11214 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-nav-primary > li > a:focus,
|
11215 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-primary > li > a:hover,
|
11216 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-primary > li > a:focus {
|
11217 |
-
color: rgba(255, 255, 255, 0.7);
|
11218 |
-
}
|
11219 |
-
.bc-root .bc-uk-light .bc-uk-nav-primary > li.bc-uk-active > a,
|
11220 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary > li.bc-uk-active > a,
|
11221 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary > li.bc-uk-active > a,
|
11222 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary > li.bc-uk-active > a,
|
11223 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary > li.bc-uk-active > a,
|
11224 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-primary > li.bc-uk-active > a,
|
11225 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-nav-primary > li.bc-uk-active > a,
|
11226 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-primary > li.bc-uk-active > a,
|
11227 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-nav-primary > li.bc-uk-active > a,
|
11228 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-nav-primary > li.bc-uk-active > a,
|
11229 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-primary > li.bc-uk-active > a {
|
11230 |
-
color: #fff;
|
11231 |
-
}
|
11232 |
-
.bc-root .bc-uk-light .bc-uk-nav-primary .bc-uk-nav-header,
|
11233 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-header,
|
11234 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-header,
|
11235 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-header,
|
11236 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-header,
|
11237 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-primary .bc-uk-nav-header,
|
11238 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-nav-primary .bc-uk-nav-header,
|
11239 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-primary .bc-uk-nav-header,
|
11240 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-nav-primary .bc-uk-nav-header,
|
11241 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-nav-primary .bc-uk-nav-header,
|
11242 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-primary .bc-uk-nav-header {
|
11243 |
-
color: #fff;
|
11244 |
-
}
|
11245 |
-
.bc-root .bc-uk-light .bc-uk-nav-primary .bc-uk-nav-divider,
|
11246 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-divider,
|
11247 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-divider,
|
11248 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-divider,
|
11249 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-divider,
|
11250 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-primary .bc-uk-nav-divider,
|
11251 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-nav-primary .bc-uk-nav-divider,
|
11252 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-primary .bc-uk-nav-divider,
|
11253 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-nav-primary .bc-uk-nav-divider,
|
11254 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-nav-primary .bc-uk-nav-divider,
|
11255 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-primary .bc-uk-nav-divider {
|
11256 |
-
border-top-color: rgba(255, 255, 255, 0.2);
|
11257 |
-
}
|
11258 |
-
.bc-root .bc-uk-light .bc-uk-nav-primary .bc-uk-nav-sub a,
|
11259 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub a,
|
11260 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub a,
|
11261 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub a,
|
11262 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub a,
|
11263 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-primary .bc-uk-nav-sub a,
|
11264 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-nav-primary .bc-uk-nav-sub a,
|
11265 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-primary .bc-uk-nav-sub a,
|
11266 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-nav-primary .bc-uk-nav-sub a,
|
11267 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-nav-primary .bc-uk-nav-sub a,
|
11268 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-primary .bc-uk-nav-sub a {
|
11269 |
-
color: rgba(255, 255, 255, 0.5);
|
11270 |
-
}
|
11271 |
-
.bc-root .bc-uk-light .bc-uk-nav-primary .bc-uk-nav-sub a:hover,
|
11272 |
-
.bc-root .bc-uk-light .bc-uk-nav-primary .bc-uk-nav-sub a:focus,
|
11273 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub a:hover,
|
11274 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub a:focus,
|
11275 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub a:hover,
|
11276 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub a:focus,
|
11277 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub a:hover,
|
11278 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub a:focus,
|
11279 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub a:hover,
|
11280 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub a:focus,
|
11281 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-primary .bc-uk-nav-sub a:hover,
|
11282 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-primary .bc-uk-nav-sub a:focus,
|
11283 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-nav-primary .bc-uk-nav-sub a:hover,
|
11284 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-nav-primary .bc-uk-nav-sub a:focus,
|
11285 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-primary .bc-uk-nav-sub a:hover,
|
11286 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-primary .bc-uk-nav-sub a:focus,
|
11287 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-nav-primary .bc-uk-nav-sub a:hover,
|
11288 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-nav-primary .bc-uk-nav-sub a:focus,
|
11289 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-nav-primary .bc-uk-nav-sub a:hover,
|
11290 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-nav-primary .bc-uk-nav-sub a:focus,
|
11291 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-primary .bc-uk-nav-sub a:hover,
|
11292 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-primary .bc-uk-nav-sub a:focus {
|
11293 |
-
color: rgba(255, 255, 255, 0.7);
|
11294 |
-
}
|
11295 |
-
.bc-root .bc-uk-light .bc-uk-nav-primary .bc-uk-nav-sub li.bc-uk-active > a,
|
11296 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub li.bc-uk-active > a,
|
11297 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub li.bc-uk-active > a,
|
11298 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub li.bc-uk-active > a,
|
11299 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub li.bc-uk-active > a,
|
11300 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-primary .bc-uk-nav-sub li.bc-uk-active > a,
|
11301 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-nav-primary .bc-uk-nav-sub li.bc-uk-active > a,
|
11302 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-primary .bc-uk-nav-sub li.bc-uk-active > a,
|
11303 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-nav-primary .bc-uk-nav-sub li.bc-uk-active > a,
|
11304 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-nav-primary .bc-uk-nav-sub li.bc-uk-active > a,
|
11305 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-primary .bc-uk-nav-sub li.bc-uk-active > a {
|
11306 |
-
color: #fff;
|
11307 |
-
}
|
11308 |
-
.bc-root .bc-uk-light .bc-uk-navbar-nav > li > a,
|
11309 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav > li > a,
|
11310 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav > li > a,
|
11311 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav > li > a,
|
11312 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav > li > a,
|
11313 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-navbar-nav > li > a,
|
11314 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-navbar-nav > li > a,
|
11315 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-navbar-nav > li > a,
|
11316 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-navbar-nav > li > a,
|
11317 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-navbar-nav > li > a,
|
11318 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-navbar-nav > li > a {
|
11319 |
-
color: rgba(255, 255, 255, 0.5);
|
11320 |
-
}
|
11321 |
-
.bc-root .bc-uk-light .bc-uk-navbar-nav > li:hover > a,
|
11322 |
-
.bc-root .bc-uk-light .bc-uk-navbar-nav > li > a:focus,
|
11323 |
-
.bc-root .bc-uk-light .bc-uk-navbar-nav > li > a.bc-uk-open,
|
11324 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav > li:hover > a,
|
11325 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav > li > a:focus,
|
11326 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav > li > a.bc-uk-open,
|
11327 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav > li:hover > a,
|
11328 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav > li > a:focus,
|
11329 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav > li > a.bc-uk-open,
|
11330 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav > li:hover > a,
|
11331 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav > li > a:focus,
|
11332 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav > li > a.bc-uk-open,
|
11333 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav > li:hover > a,
|
11334 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav > li > a:focus,
|
11335 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav > li > a.bc-uk-open,
|
11336 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-navbar-nav > li:hover > a,
|
11337 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-navbar-nav > li > a:focus,
|
11338 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-navbar-nav > li > a.bc-uk-open,
|
11339 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-navbar-nav > li:hover > a,
|
11340 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-navbar-nav > li > a:focus,
|
11341 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-navbar-nav > li > a.bc-uk-open,
|
11342 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-navbar-nav > li:hover > a,
|
11343 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-navbar-nav > li > a:focus,
|
11344 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-navbar-nav > li > a.bc-uk-open,
|
11345 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-navbar-nav > li:hover > a,
|
11346 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-navbar-nav > li > a:focus,
|
11347 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-navbar-nav > li > a.bc-uk-open,
|
11348 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-navbar-nav > li:hover > a,
|
11349 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-navbar-nav > li > a:focus,
|
11350 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-navbar-nav > li > a.bc-uk-open,
|
11351 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-navbar-nav > li:hover > a,
|
11352 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-navbar-nav > li > a:focus,
|
11353 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-navbar-nav > li > a.bc-uk-open {
|
11354 |
-
color: rgba(255, 255, 255, 0.7);
|
11355 |
-
}
|
11356 |
-
.bc-root .bc-uk-light .bc-uk-navbar-nav > li > a:active,
|
11357 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav > li > a:active,
|
11358 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav > li > a:active,
|
11359 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav > li > a:active,
|
11360 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav > li > a:active,
|
11361 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-navbar-nav > li > a:active,
|
11362 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-navbar-nav > li > a:active,
|
11363 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-navbar-nav > li > a:active,
|
11364 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-navbar-nav > li > a:active,
|
11365 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-navbar-nav > li > a:active,
|
11366 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-navbar-nav > li > a:active {
|
11367 |
-
color: #fff;
|
11368 |
-
}
|
11369 |
-
.bc-root .bc-uk-light .bc-uk-navbar-nav > li.bc-uk-active > a,
|
11370 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav > li.bc-uk-active > a,
|
11371 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav > li.bc-uk-active > a,
|
11372 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav > li.bc-uk-active > a,
|
11373 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav > li.bc-uk-active > a,
|
11374 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-navbar-nav > li.bc-uk-active > a,
|
11375 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-navbar-nav > li.bc-uk-active > a,
|
11376 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-navbar-nav > li.bc-uk-active > a,
|
11377 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-navbar-nav > li.bc-uk-active > a,
|
11378 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-navbar-nav > li.bc-uk-active > a,
|
11379 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-navbar-nav > li.bc-uk-active > a {
|
11380 |
-
color: #fff;
|
11381 |
-
}
|
11382 |
-
.bc-root .bc-uk-light .bc-uk-navbar-item,
|
11383 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-item,
|
11384 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-item,
|
11385 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-item,
|
11386 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-item,
|
11387 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-navbar-item,
|
11388 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-navbar-item,
|
11389 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-navbar-item,
|
11390 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-navbar-item,
|
11391 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-navbar-item,
|
11392 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-navbar-item {
|
11393 |
-
color: rgba(255, 255, 255, 0.7);
|
11394 |
-
}
|
11395 |
-
.bc-root .bc-uk-light .bc-uk-navbar-toggle,
|
11396 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle,
|
11397 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle,
|
11398 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle,
|
11399 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle,
|
11400 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-navbar-toggle,
|
11401 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-navbar-toggle,
|
11402 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-navbar-toggle,
|
11403 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-navbar-toggle,
|
11404 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-navbar-toggle,
|
11405 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-navbar-toggle {
|
11406 |
-
color: rgba(255, 255, 255, 0.5);
|
11407 |
-
}
|
11408 |
-
.bc-root .bc-uk-light .bc-uk-navbar-toggle:hover,
|
11409 |
-
.bc-root .bc-uk-light .bc-uk-navbar-toggle:focus,
|
11410 |
-
.bc-root .bc-uk-light .bc-uk-navbar-toggle.bc-uk-open,
|
11411 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle:hover,
|
11412 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle:focus,
|
11413 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle.bc-uk-open,
|
11414 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle:hover,
|
11415 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle:focus,
|
11416 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle.bc-uk-open,
|
11417 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle:hover,
|
11418 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle:focus,
|
11419 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle.bc-uk-open,
|
11420 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle:hover,
|
11421 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle:focus,
|
11422 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle.bc-uk-open,
|
11423 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-navbar-toggle:hover,
|
11424 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-navbar-toggle:focus,
|
11425 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-navbar-toggle.bc-uk-open,
|
11426 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-navbar-toggle:hover,
|
11427 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-navbar-toggle:focus,
|
11428 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-navbar-toggle.bc-uk-open,
|
11429 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-navbar-toggle:hover,
|
11430 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-navbar-toggle:focus,
|
11431 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-navbar-toggle.bc-uk-open,
|
11432 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-navbar-toggle:hover,
|
11433 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-navbar-toggle:focus,
|
11434 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-navbar-toggle.bc-uk-open,
|
11435 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-navbar-toggle:hover,
|
11436 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-navbar-toggle:focus,
|
11437 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-navbar-toggle.bc-uk-open,
|
11438 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-navbar-toggle:hover,
|
11439 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-navbar-toggle:focus,
|
11440 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-navbar-toggle.bc-uk-open {
|
11441 |
-
color: rgba(255, 255, 255, 0.7);
|
11442 |
-
}
|
11443 |
-
.bc-root .bc-uk-light .bc-uk-subnav > * > :first-child,
|
11444 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-subnav > * > :first-child,
|
11445 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav > * > :first-child,
|
11446 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-subnav > * > :first-child,
|
11447 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav > * > :first-child,
|
11448 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-subnav > * > :first-child,
|
11449 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-subnav > * > :first-child,
|
11450 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-subnav > * > :first-child,
|
11451 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-subnav > * > :first-child,
|
11452 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-subnav > * > :first-child,
|
11453 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-subnav > * > :first-child {
|
11454 |
-
color: rgba(255, 255, 255, 0.5);
|
11455 |
-
}
|
11456 |
-
.bc-root .bc-uk-light .bc-uk-subnav > * > a:hover,
|
11457 |
-
.bc-root .bc-uk-light .bc-uk-subnav > * > a:focus,
|
11458 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-subnav > * > a:hover,
|
11459 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-subnav > * > a:focus,
|
11460 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav > * > a:hover,
|
11461 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav > * > a:focus,
|
11462 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-subnav > * > a:hover,
|
11463 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-subnav > * > a:focus,
|
11464 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav > * > a:hover,
|
11465 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav > * > a:focus,
|
11466 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-subnav > * > a:hover,
|
11467 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-subnav > * > a:focus,
|
11468 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-subnav > * > a:hover,
|
11469 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-subnav > * > a:focus,
|
11470 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-subnav > * > a:hover,
|
11471 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-subnav > * > a:focus,
|
11472 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-subnav > * > a:hover,
|
11473 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-subnav > * > a:focus,
|
11474 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-subnav > * > a:hover,
|
11475 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-subnav > * > a:focus,
|
11476 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-subnav > * > a:hover,
|
11477 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-subnav > * > a:focus {
|
11478 |
-
color: rgba(255, 255, 255, 0.7);
|
11479 |
-
}
|
11480 |
-
.bc-root .bc-uk-light .bc-uk-subnav > .bc-uk-active > a,
|
11481 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-subnav > .bc-uk-active > a,
|
11482 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav > .bc-uk-active > a,
|
11483 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-subnav > .bc-uk-active > a,
|
11484 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav > .bc-uk-active > a,
|
11485 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-subnav > .bc-uk-active > a,
|
11486 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-subnav > .bc-uk-active > a,
|
11487 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-subnav > .bc-uk-active > a,
|
11488 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-subnav > .bc-uk-active > a,
|
11489 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-subnav > .bc-uk-active > a,
|
11490 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-subnav > .bc-uk-active > a {
|
11491 |
-
color: #fff;
|
11492 |
-
}
|
11493 |
-
.bc-root .bc-uk-light .bc-uk-subnav-divider > :nth-child(n+2):not(.bc-uk-first-column)::before,
|
11494 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-subnav-divider > :nth-child(n+2):not(.bc-uk-first-column)::before,
|
11495 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav-divider > :nth-child(n+2):not(.bc-uk-first-column)::before,
|
11496 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-subnav-divider > :nth-child(n+2):not(.bc-uk-first-column)::before,
|
11497 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav-divider > :nth-child(n+2):not(.bc-uk-first-column)::before,
|
11498 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-subnav-divider > :nth-child(n+2):not(.bc-uk-first-column)::before,
|
11499 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-subnav-divider > :nth-child(n+2):not(.bc-uk-first-column)::before,
|
11500 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-subnav-divider > :nth-child(n+2):not(.bc-uk-first-column)::before,
|
11501 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-subnav-divider > :nth-child(n+2):not(.bc-uk-first-column)::before,
|
11502 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-subnav-divider > :nth-child(n+2):not(.bc-uk-first-column)::before,
|
11503 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-subnav-divider > :nth-child(n+2):not(.bc-uk-first-column)::before {
|
11504 |
-
border-left-color: rgba(255, 255, 255, 0.2);
|
11505 |
-
}
|
11506 |
-
.bc-root .bc-uk-light .bc-uk-subnav-pill > * > :first-child,
|
11507 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill > * > :first-child,
|
11508 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill > * > :first-child,
|
11509 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill > * > :first-child,
|
11510 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill > * > :first-child,
|
11511 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-subnav-pill > * > :first-child,
|
11512 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-subnav-pill > * > :first-child,
|
11513 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-subnav-pill > * > :first-child,
|
11514 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-subnav-pill > * > :first-child,
|
11515 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-subnav-pill > * > :first-child,
|
11516 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-subnav-pill > * > :first-child {
|
11517 |
-
background-color: transparent;
|
11518 |
-
color: rgba(255, 255, 255, 0.5);
|
11519 |
-
}
|
11520 |
-
.bc-root .bc-uk-light .bc-uk-subnav-pill > * > a:hover,
|
11521 |
-
.bc-root .bc-uk-light .bc-uk-subnav-pill > * > a:focus,
|
11522 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill > * > a:hover,
|
11523 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill > * > a:focus,
|
11524 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill > * > a:hover,
|
11525 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill > * > a:focus,
|
11526 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill > * > a:hover,
|
11527 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill > * > a:focus,
|
11528 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill > * > a:hover,
|
11529 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill > * > a:focus,
|
11530 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-subnav-pill > * > a:hover,
|
11531 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-subnav-pill > * > a:focus,
|
11532 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-subnav-pill > * > a:hover,
|
11533 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-subnav-pill > * > a:focus,
|
11534 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-subnav-pill > * > a:hover,
|
11535 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-subnav-pill > * > a:focus,
|
11536 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-subnav-pill > * > a:hover,
|
11537 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-subnav-pill > * > a:focus,
|
11538 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-subnav-pill > * > a:hover,
|
11539 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-subnav-pill > * > a:focus,
|
11540 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-subnav-pill > * > a:hover,
|
11541 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-subnav-pill > * > a:focus {
|
11542 |
-
background-color: rgba(255, 255, 255, 0.1);
|
11543 |
-
color: rgba(255, 255, 255, 0.7);
|
11544 |
-
}
|
11545 |
-
.bc-root .bc-uk-light .bc-uk-subnav-pill > * > a:active,
|
11546 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill > * > a:active,
|
11547 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill > * > a:active,
|
11548 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill > * > a:active,
|
11549 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill > * > a:active,
|
11550 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-subnav-pill > * > a:active,
|
11551 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-subnav-pill > * > a:active,
|
11552 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-subnav-pill > * > a:active,
|
11553 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-subnav-pill > * > a:active,
|
11554 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-subnav-pill > * > a:active,
|
11555 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-subnav-pill > * > a:active {
|
11556 |
-
background-color: rgba(255, 255, 255, 0.1);
|
11557 |
-
color: rgba(255, 255, 255, 0.7);
|
11558 |
-
}
|
11559 |
-
.bc-root .bc-uk-light .bc-uk-subnav-pill > .bc-uk-active > a,
|
11560 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill > .bc-uk-active > a,
|
11561 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill > .bc-uk-active > a,
|
11562 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill > .bc-uk-active > a,
|
11563 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill > .bc-uk-active > a,
|
11564 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-subnav-pill > .bc-uk-active > a,
|
11565 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-subnav-pill > .bc-uk-active > a,
|
11566 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-subnav-pill > .bc-uk-active > a,
|
11567 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-subnav-pill > .bc-uk-active > a,
|
11568 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-subnav-pill > .bc-uk-active > a,
|
11569 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-subnav-pill > .bc-uk-active > a {
|
11570 |
-
background-color: #fff;
|
11571 |
-
color: #666;
|
11572 |
-
}
|
11573 |
-
.bc-root .bc-uk-light .bc-uk-subnav > .bc-uk-disabled > a,
|
11574 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-subnav > .bc-uk-disabled > a,
|
11575 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav > .bc-uk-disabled > a,
|
11576 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-subnav > .bc-uk-disabled > a,
|
11577 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav > .bc-uk-disabled > a,
|
11578 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-subnav > .bc-uk-disabled > a,
|
11579 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-subnav > .bc-uk-disabled > a,
|
11580 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-subnav > .bc-uk-disabled > a,
|
11581 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-subnav > .bc-uk-disabled > a,
|
11582 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-subnav > .bc-uk-disabled > a,
|
11583 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-subnav > .bc-uk-disabled > a {
|
11584 |
-
color: rgba(255, 255, 255, 0.5);
|
11585 |
-
}
|
11586 |
-
.bc-root .bc-uk-light .bc-uk-breadcrumb > * > *,
|
11587 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb > * > *,
|
11588 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb > * > *,
|
11589 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb > * > *,
|
11590 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb > * > *,
|
11591 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-breadcrumb > * > *,
|
11592 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-breadcrumb > * > *,
|
11593 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-breadcrumb > * > *,
|
11594 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-breadcrumb > * > *,
|
11595 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-breadcrumb > * > *,
|
11596 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-breadcrumb > * > * {
|
11597 |
-
color: rgba(255, 255, 255, 0.5);
|
11598 |
-
}
|
11599 |
-
.bc-root .bc-uk-light .bc-uk-breadcrumb > * > :hover,
|
11600 |
-
.bc-root .bc-uk-light .bc-uk-breadcrumb > * > :focus,
|
11601 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb > * > :hover,
|
11602 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb > * > :focus,
|
11603 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb > * > :hover,
|
11604 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb > * > :focus,
|
11605 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb > * > :hover,
|
11606 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb > * > :focus,
|
11607 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb > * > :hover,
|
11608 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb > * > :focus,
|
11609 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-breadcrumb > * > :hover,
|
11610 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-breadcrumb > * > :focus,
|
11611 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-breadcrumb > * > :hover,
|
11612 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-breadcrumb > * > :focus,
|
11613 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-breadcrumb > * > :hover,
|
11614 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-breadcrumb > * > :focus,
|
11615 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-breadcrumb > * > :hover,
|
11616 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-breadcrumb > * > :focus,
|
11617 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-breadcrumb > * > :hover,
|
11618 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-breadcrumb > * > :focus,
|
11619 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-breadcrumb > * > :hover,
|
11620 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-breadcrumb > * > :focus {
|
11621 |
-
color: rgba(255, 255, 255, 0.7);
|
11622 |
-
}
|
11623 |
-
.bc-root .bc-uk-light .bc-uk-breadcrumb > :last-child > *,
|
11624 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb > :last-child > *,
|
11625 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb > :last-child > *,
|
11626 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb > :last-child > *,
|
11627 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb > :last-child > *,
|
11628 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-breadcrumb > :last-child > *,
|
11629 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-breadcrumb > :last-child > *,
|
11630 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-breadcrumb > :last-child > *,
|
11631 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-breadcrumb > :last-child > *,
|
11632 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-breadcrumb > :last-child > *,
|
11633 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-breadcrumb > :last-child > * {
|
11634 |
-
color: rgba(255, 255, 255, 0.7);
|
11635 |
-
}
|
11636 |
-
.bc-root .bc-uk-light .bc-uk-breadcrumb > :nth-child(n+2):not(.bc-uk-first-column)::before,
|
11637 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb > :nth-child(n+2):not(.bc-uk-first-column)::before,
|
11638 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb > :nth-child(n+2):not(.bc-uk-first-column)::before,
|
11639 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb > :nth-child(n+2):not(.bc-uk-first-column)::before,
|
11640 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb > :nth-child(n+2):not(.bc-uk-first-column)::before,
|
11641 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-breadcrumb > :nth-child(n+2):not(.bc-uk-first-column)::before,
|
11642 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-breadcrumb > :nth-child(n+2):not(.bc-uk-first-column)::before,
|
11643 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-breadcrumb > :nth-child(n+2):not(.bc-uk-first-column)::before,
|
11644 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-breadcrumb > :nth-child(n+2):not(.bc-uk-first-column)::before,
|
11645 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-breadcrumb > :nth-child(n+2):not(.bc-uk-first-column)::before,
|
11646 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-breadcrumb > :nth-child(n+2):not(.bc-uk-first-column)::before {
|
11647 |
-
color: rgba(255, 255, 255, 0.5);
|
11648 |
-
}
|
11649 |
-
.bc-root .bc-uk-light .bc-uk-pagination > * > *,
|
11650 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-pagination > * > *,
|
11651 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-pagination > * > *,
|
11652 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-pagination > * > *,
|
11653 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-pagination > * > *,
|
11654 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-pagination > * > *,
|
11655 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-pagination > * > *,
|
11656 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-pagination > * > *,
|
11657 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-pagination > * > *,
|
11658 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-pagination > * > *,
|
11659 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-pagination > * > * {
|
11660 |
-
color: rgba(255, 255, 255, 0.5);
|
11661 |
-
}
|
11662 |
-
.bc-root .bc-uk-light .bc-uk-pagination > * > :hover,
|
11663 |
-
.bc-root .bc-uk-light .bc-uk-pagination > * > :focus,
|
11664 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-pagination > * > :hover,
|
11665 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-pagination > * > :focus,
|
11666 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-pagination > * > :hover,
|
11667 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-pagination > * > :focus,
|
11668 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-pagination > * > :hover,
|
11669 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-pagination > * > :focus,
|
11670 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-pagination > * > :hover,
|
11671 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-pagination > * > :focus,
|
11672 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-pagination > * > :hover,
|
11673 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-pagination > * > :focus,
|
11674 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-pagination > * > :hover,
|
11675 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-pagination > * > :focus,
|
11676 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-pagination > * > :hover,
|
11677 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-pagination > * > :focus,
|
11678 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-pagination > * > :hover,
|
11679 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-pagination > * > :focus,
|
11680 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-pagination > * > :hover,
|
11681 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-pagination > * > :focus,
|
11682 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-pagination > * > :hover,
|
11683 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-pagination > * > :focus {
|
11684 |
-
color: rgba(255, 255, 255, 0.7);
|
11685 |
-
}
|
11686 |
-
.bc-root .bc-uk-light .bc-uk-pagination > .bc-uk-active > *,
|
11687 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-pagination > .bc-uk-active > *,
|
11688 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-pagination > .bc-uk-active > *,
|
11689 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-pagination > .bc-uk-active > *,
|
11690 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-pagination > .bc-uk-active > *,
|
11691 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-pagination > .bc-uk-active > *,
|
11692 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-pagination > .bc-uk-active > *,
|
11693 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-pagination > .bc-uk-active > *,
|
11694 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-pagination > .bc-uk-active > *,
|
11695 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-pagination > .bc-uk-active > *,
|
11696 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-pagination > .bc-uk-active > * {
|
11697 |
-
color: rgba(255, 255, 255, 0.7);
|
11698 |
-
}
|
11699 |
-
.bc-root .bc-uk-light .bc-uk-pagination > .bc-uk-disabled > *,
|
11700 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-pagination > .bc-uk-disabled > *,
|
11701 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-pagination > .bc-uk-disabled > *,
|
11702 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-pagination > .bc-uk-disabled > *,
|
11703 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-pagination > .bc-uk-disabled > *,
|
11704 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-pagination > .bc-uk-disabled > *,
|
11705 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-pagination > .bc-uk-disabled > *,
|
11706 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-pagination > .bc-uk-disabled > *,
|
11707 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-pagination > .bc-uk-disabled > *,
|
11708 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-pagination > .bc-uk-disabled > *,
|
11709 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-pagination > .bc-uk-disabled > * {
|
11710 |
-
color: rgba(255, 255, 255, 0.5);
|
11711 |
-
}
|
11712 |
-
.bc-root .bc-uk-light .bc-uk-tab::before,
|
11713 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-tab::before,
|
11714 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-tab::before,
|
11715 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-tab::before,
|
11716 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-tab::before,
|
11717 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-tab::before,
|
11718 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-tab::before,
|
11719 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-tab::before,
|
11720 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-tab::before,
|
11721 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-tab::before,
|
11722 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-tab::before {
|
11723 |
-
border-color: rgba(255, 255, 255, 0.2);
|
11724 |
-
}
|
11725 |
-
.bc-root .bc-uk-light .bc-uk-tab > * > a,
|
11726 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-tab > * > a,
|
11727 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-tab > * > a,
|
11728 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-tab > * > a,
|
11729 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-tab > * > a,
|
11730 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-tab > * > a,
|
11731 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-tab > * > a,
|
11732 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-tab > * > a,
|
11733 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-tab > * > a,
|
11734 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-tab > * > a,
|
11735 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-tab > * > a {
|
11736 |
-
color: rgba(255, 255, 255, 0.5);
|
11737 |
-
}
|
11738 |
-
.bc-root .bc-uk-light .bc-uk-tab > * > a:hover,
|
11739 |
-
.bc-root .bc-uk-light .bc-uk-tab > * > a:focus,
|
11740 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-tab > * > a:hover,
|
11741 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-tab > * > a:focus,
|
11742 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-tab > * > a:hover,
|
11743 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-tab > * > a:focus,
|
11744 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-tab > * > a:hover,
|
11745 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-tab > * > a:focus,
|
11746 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-tab > * > a:hover,
|
11747 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-tab > * > a:focus,
|
11748 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-tab > * > a:hover,
|
11749 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-tab > * > a:focus,
|
11750 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-tab > * > a:hover,
|
11751 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-tab > * > a:focus,
|
11752 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-tab > * > a:hover,
|
11753 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-tab > * > a:focus,
|
11754 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-tab > * > a:hover,
|
11755 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-tab > * > a:focus,
|
11756 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-tab > * > a:hover,
|
11757 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-tab > * > a:focus,
|
11758 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-tab > * > a:hover,
|
11759 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-tab > * > a:focus {
|
11760 |
-
color: rgba(255, 255, 255, 0.7);
|
11761 |
-
}
|
11762 |
-
.bc-root .bc-uk-light .bc-uk-tab > .bc-uk-active > a,
|
11763 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-tab > .bc-uk-active > a,
|
11764 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-tab > .bc-uk-active > a,
|
11765 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-tab > .bc-uk-active > a,
|
11766 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-tab > .bc-uk-active > a,
|
11767 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-tab > .bc-uk-active > a,
|
11768 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-tab > .bc-uk-active > a,
|
11769 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-tab > .bc-uk-active > a,
|
11770 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-tab > .bc-uk-active > a,
|
11771 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-tab > .bc-uk-active > a,
|
11772 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-tab > .bc-uk-active > a {
|
11773 |
-
color: #fff;
|
11774 |
-
border-color: #fff;
|
11775 |
-
}
|
11776 |
-
.bc-root .bc-uk-light .bc-uk-tab > .bc-uk-disabled > a,
|
11777 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-tab > .bc-uk-disabled > a,
|
11778 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-tab > .bc-uk-disabled > a,
|
11779 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-tab > .bc-uk-disabled > a,
|
11780 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-tab > .bc-uk-disabled > a,
|
11781 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-tab > .bc-uk-disabled > a,
|
11782 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-tab > .bc-uk-disabled > a,
|
11783 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-tab > .bc-uk-disabled > a,
|
11784 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-tab > .bc-uk-disabled > a,
|
11785 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-tab > .bc-uk-disabled > a,
|
11786 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-tab > .bc-uk-disabled > a {
|
11787 |
-
color: rgba(255, 255, 255, 0.5);
|
11788 |
-
}
|
11789 |
-
.bc-root .bc-uk-light .bc-uk-slidenav,
|
11790 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-slidenav,
|
11791 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-slidenav,
|
11792 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-slidenav,
|
11793 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-slidenav,
|
11794 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-slidenav,
|
11795 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-slidenav,
|
11796 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-slidenav,
|
11797 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-slidenav,
|
11798 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-slidenav,
|
11799 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-slidenav {
|
11800 |
-
color: rgba(255, 255, 255, 0.7);
|
11801 |
-
}
|
11802 |
-
.bc-root .bc-uk-light .bc-uk-slidenav:hover,
|
11803 |
-
.bc-root .bc-uk-light .bc-uk-slidenav:focus,
|
11804 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-slidenav:hover,
|
11805 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-slidenav:focus,
|
11806 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-slidenav:hover,
|
11807 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-slidenav:focus,
|
11808 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-slidenav:hover,
|
11809 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-slidenav:focus,
|
11810 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-slidenav:hover,
|
11811 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-slidenav:focus,
|
11812 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-slidenav:hover,
|
11813 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-slidenav:focus,
|
11814 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-slidenav:hover,
|
11815 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-slidenav:focus,
|
11816 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-slidenav:hover,
|
11817 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-slidenav:focus,
|
11818 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-slidenav:hover,
|
11819 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-slidenav:focus,
|
11820 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-slidenav:hover,
|
11821 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-slidenav:focus,
|
11822 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-slidenav:hover,
|
11823 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-slidenav:focus {
|
11824 |
-
color: rgba(255, 255, 255, 0.95);
|
11825 |
-
}
|
11826 |
-
.bc-root .bc-uk-light .bc-uk-slidenav:active,
|
11827 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-slidenav:active,
|
11828 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-slidenav:active,
|
11829 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-slidenav:active,
|
11830 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-slidenav:active,
|
11831 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-slidenav:active,
|
11832 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-slidenav:active,
|
11833 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-slidenav:active,
|
11834 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-slidenav:active,
|
11835 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-slidenav:active,
|
11836 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-slidenav:active {
|
11837 |
-
color: rgba(255, 255, 255, 0.7);
|
11838 |
-
}
|
11839 |
-
.bc-root .bc-uk-light .bc-uk-dotnav > * > *,
|
11840 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-dotnav > * > *,
|
11841 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-dotnav > * > *,
|
11842 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-dotnav > * > *,
|
11843 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-dotnav > * > *,
|
11844 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-dotnav > * > *,
|
11845 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-dotnav > * > *,
|
11846 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-dotnav > * > *,
|
11847 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-dotnav > * > *,
|
11848 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-dotnav > * > *,
|
11849 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-dotnav > * > * {
|
11850 |
-
background-color: transparent;
|
11851 |
-
border-color: rgba(255, 255, 255, 0.9);
|
11852 |
-
}
|
11853 |
-
.bc-root .bc-uk-light .bc-uk-dotnav > * > :hover,
|
11854 |
-
.bc-root .bc-uk-light .bc-uk-dotnav > * > :focus,
|
11855 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-dotnav > * > :hover,
|
11856 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-dotnav > * > :focus,
|
11857 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-dotnav > * > :hover,
|
11858 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-dotnav > * > :focus,
|
11859 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-dotnav > * > :hover,
|
11860 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-dotnav > * > :focus,
|
11861 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-dotnav > * > :hover,
|
11862 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-dotnav > * > :focus,
|
11863 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-dotnav > * > :hover,
|
11864 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-dotnav > * > :focus,
|
11865 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-dotnav > * > :hover,
|
11866 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-dotnav > * > :focus,
|
11867 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-dotnav > * > :hover,
|
11868 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-dotnav > * > :focus,
|
11869 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-dotnav > * > :hover,
|
11870 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-dotnav > * > :focus,
|
11871 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-dotnav > * > :hover,
|
11872 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-dotnav > * > :focus,
|
11873 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-dotnav > * > :hover,
|
11874 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-dotnav > * > :focus {
|
11875 |
-
background-color: rgba(255, 255, 255, 0.9);
|
11876 |
-
border-color: transparent;
|
11877 |
-
}
|
11878 |
-
.bc-root .bc-uk-light .bc-uk-dotnav > * > :active,
|
11879 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-dotnav > * > :active,
|
11880 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-dotnav > * > :active,
|
11881 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-dotnav > * > :active,
|
11882 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-dotnav > * > :active,
|
11883 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-dotnav > * > :active,
|
11884 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-dotnav > * > :active,
|
11885 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-dotnav > * > :active,
|
11886 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-dotnav > * > :active,
|
11887 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-dotnav > * > :active,
|
11888 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-dotnav > * > :active {
|
11889 |
-
background-color: rgba(255, 255, 255, 0.5);
|
11890 |
-
border-color: transparent;
|
11891 |
-
}
|
11892 |
-
.bc-root .bc-uk-light .bc-uk-dotnav > .bc-uk-active > *,
|
11893 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-dotnav > .bc-uk-active > *,
|
11894 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-dotnav > .bc-uk-active > *,
|
11895 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-dotnav > .bc-uk-active > *,
|
11896 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-dotnav > .bc-uk-active > *,
|
11897 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-dotnav > .bc-uk-active > *,
|
11898 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-dotnav > .bc-uk-active > *,
|
11899 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-dotnav > .bc-uk-active > *,
|
11900 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-dotnav > .bc-uk-active > *,
|
11901 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-dotnav > .bc-uk-active > *,
|
11902 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-dotnav > .bc-uk-active > * {
|
11903 |
-
background-color: rgba(255, 255, 255, 0.9);
|
11904 |
-
border-color: transparent;
|
11905 |
-
}
|
11906 |
-
.bc-root .bc-uk-light .bc-uk-accordion-title,
|
11907 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-accordion-title,
|
11908 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-accordion-title,
|
11909 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-accordion-title,
|
11910 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-accordion-title,
|
11911 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-accordion-title,
|
11912 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-accordion-title,
|
11913 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-accordion-title,
|
11914 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-accordion-title,
|
11915 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-accordion-title,
|
11916 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-accordion-title {
|
11917 |
-
color: #fff;
|
11918 |
-
}
|
11919 |
-
.bc-root .bc-uk-light .bc-uk-accordion-title:hover,
|
11920 |
-
.bc-root .bc-uk-light .bc-uk-accordion-title:focus,
|
11921 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-accordion-title:hover,
|
11922 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-accordion-title:focus,
|
11923 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-accordion-title:hover,
|
11924 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-accordion-title:focus,
|
11925 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-accordion-title:hover,
|
11926 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-accordion-title:focus,
|
11927 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-accordion-title:hover,
|
11928 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-accordion-title:focus,
|
11929 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-accordion-title:hover,
|
11930 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-accordion-title:focus,
|
11931 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-accordion-title:hover,
|
11932 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-accordion-title:focus,
|
11933 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-accordion-title:hover,
|
11934 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-accordion-title:focus,
|
11935 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-accordion-title:hover,
|
11936 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-accordion-title:focus,
|
11937 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-accordion-title:hover,
|
11938 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-accordion-title:focus,
|
11939 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-accordion-title:hover,
|
11940 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-accordion-title:focus {
|
11941 |
-
color: rgba(255, 255, 255, 0.7);
|
11942 |
-
}
|
11943 |
-
.bc-root .bc-uk-light .bc-uk-iconnav > * > a,
|
11944 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-iconnav > * > a,
|
11945 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-iconnav > * > a,
|
11946 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-iconnav > * > a,
|
11947 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-iconnav > * > a,
|
11948 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-iconnav > * > a,
|
11949 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-iconnav > * > a,
|
11950 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-iconnav > * > a,
|
11951 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-iconnav > * > a,
|
11952 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-iconnav > * > a,
|
11953 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-iconnav > * > a {
|
11954 |
-
color: rgba(255, 255, 255, 0.5);
|
11955 |
-
}
|
11956 |
-
.bc-root .bc-uk-light .bc-uk-iconnav > * > a:hover,
|
11957 |
-
.bc-root .bc-uk-light .bc-uk-iconnav > * > a:focus,
|
11958 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-iconnav > * > a:hover,
|
11959 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-iconnav > * > a:focus,
|
11960 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-iconnav > * > a:hover,
|
11961 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-iconnav > * > a:focus,
|
11962 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-iconnav > * > a:hover,
|
11963 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-iconnav > * > a:focus,
|
11964 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-iconnav > * > a:hover,
|
11965 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-iconnav > * > a:focus,
|
11966 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-iconnav > * > a:hover,
|
11967 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-iconnav > * > a:focus,
|
11968 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-iconnav > * > a:hover,
|
11969 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-iconnav > * > a:focus,
|
11970 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-iconnav > * > a:hover,
|
11971 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-iconnav > * > a:focus,
|
11972 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-iconnav > * > a:hover,
|
11973 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-iconnav > * > a:focus,
|
11974 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-iconnav > * > a:hover,
|
11975 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-iconnav > * > a:focus,
|
11976 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-iconnav > * > a:hover,
|
11977 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-iconnav > * > a:focus {
|
11978 |
-
color: rgba(255, 255, 255, 0.7);
|
11979 |
-
}
|
11980 |
-
.bc-root .bc-uk-light .bc-uk-iconnav > .bc-uk-active > a,
|
11981 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-iconnav > .bc-uk-active > a,
|
11982 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-iconnav > .bc-uk-active > a,
|
11983 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-iconnav > .bc-uk-active > a,
|
11984 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-iconnav > .bc-uk-active > a,
|
11985 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-iconnav > .bc-uk-active > a,
|
11986 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-iconnav > .bc-uk-active > a,
|
11987 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-iconnav > .bc-uk-active > a,
|
11988 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-iconnav > .bc-uk-active > a,
|
11989 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-iconnav > .bc-uk-active > a,
|
11990 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-iconnav > .bc-uk-active > a {
|
11991 |
-
color: rgba(255, 255, 255, 0.7);
|
11992 |
-
}
|
11993 |
-
.bc-root .bc-uk-light .bc-uk-text-lead,
|
11994 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-text-lead,
|
11995 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-text-lead,
|
11996 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-text-lead,
|
11997 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-text-lead,
|
11998 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-text-lead,
|
11999 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-text-lead,
|
12000 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-text-lead,
|
12001 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-text-lead,
|
12002 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-text-lead,
|
12003 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-text-lead {
|
12004 |
-
color: rgba(255, 255, 255, 0.7);
|
12005 |
-
}
|
12006 |
-
.bc-root .bc-uk-light .bc-uk-text-meta,
|
12007 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-text-meta,
|
12008 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-text-meta,
|
12009 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-text-meta,
|
12010 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-text-meta,
|
12011 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-text-meta,
|
12012 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-text-meta,
|
12013 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-text-meta,
|
12014 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-text-meta,
|
12015 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-text-meta,
|
12016 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-text-meta {
|
12017 |
-
color: rgba(255, 255, 255, 0.5);
|
12018 |
-
}
|
12019 |
-
.bc-root .bc-uk-light .bc-uk-text-muted,
|
12020 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-text-muted,
|
12021 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-text-muted,
|
12022 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-text-muted,
|
12023 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-text-muted,
|
12024 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-text-muted,
|
12025 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-text-muted,
|
12026 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-text-muted,
|
12027 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-text-muted,
|
12028 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-text-muted,
|
12029 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-text-muted {
|
12030 |
-
color: rgba(255, 255, 255, 0.5) !important;
|
12031 |
-
}
|
12032 |
-
.bc-root .bc-uk-light .bc-uk-text-emphasis,
|
12033 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-text-emphasis,
|
12034 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-text-emphasis,
|
12035 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-text-emphasis,
|
12036 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-text-emphasis,
|
12037 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-text-emphasis,
|
12038 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-text-emphasis,
|
12039 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-text-emphasis,
|
12040 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-text-emphasis,
|
12041 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-text-emphasis,
|
12042 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-text-emphasis {
|
12043 |
-
color: #fff !important;
|
12044 |
-
}
|
12045 |
-
.bc-root .bc-uk-light .bc-uk-text-primary,
|
12046 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-text-primary,
|
12047 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-text-primary,
|
12048 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-text-primary,
|
12049 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-text-primary,
|
12050 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-text-primary,
|
12051 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-text-primary,
|
12052 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-text-primary,
|
12053 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-text-primary,
|
12054 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-text-primary,
|
12055 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-text-primary {
|
12056 |
-
color: #fff !important;
|
12057 |
-
}
|
12058 |
-
.bc-root .bc-uk-light .bc-uk-text-secondary,
|
12059 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-text-secondary,
|
12060 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-text-secondary,
|
12061 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-text-secondary,
|
12062 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-text-secondary,
|
12063 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-text-secondary,
|
12064 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-text-secondary,
|
12065 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-text-secondary,
|
12066 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-text-secondary,
|
12067 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-text-secondary,
|
12068 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-text-secondary {
|
12069 |
-
color: #fff !important;
|
12070 |
-
}
|
12071 |
-
.bc-root .bc-uk-light .bc-uk-column-divider,
|
12072 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-column-divider,
|
12073 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-column-divider,
|
12074 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-column-divider,
|
12075 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-column-divider,
|
12076 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-column-divider,
|
12077 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-column-divider,
|
12078 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-column-divider,
|
12079 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-column-divider,
|
12080 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-column-divider,
|
12081 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-column-divider {
|
12082 |
-
column-rule-color: rgba(255, 255, 255, 0.2);
|
12083 |
-
}
|
12084 |
-
.bc-root .bc-uk-light .bc-uk-logo,
|
12085 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-logo,
|
12086 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-logo,
|
12087 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-logo,
|
12088 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-logo,
|
12089 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-logo,
|
12090 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-logo,
|
12091 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-logo,
|
12092 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-logo,
|
12093 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-logo,
|
12094 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-logo {
|
12095 |
-
color: rgba(255, 255, 255, 0.7);
|
12096 |
-
}
|
12097 |
-
.bc-root .bc-uk-light .bc-uk-logo:hover,
|
12098 |
-
.bc-root .bc-uk-light .bc-uk-logo:focus,
|
12099 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-logo:hover,
|
12100 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-logo:focus,
|
12101 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-logo:hover,
|
12102 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-logo:focus,
|
12103 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-logo:hover,
|
12104 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-logo:focus,
|
12105 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-logo:hover,
|
12106 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-logo:focus,
|
12107 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-logo:hover,
|
12108 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-logo:focus,
|
12109 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-logo:hover,
|
12110 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-logo:focus,
|
12111 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-logo:hover,
|
12112 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-logo:focus,
|
12113 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-logo:hover,
|
12114 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-logo:focus,
|
12115 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-logo:hover,
|
12116 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-logo:focus,
|
12117 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-logo:hover,
|
12118 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-logo:focus {
|
12119 |
-
color: rgba(255, 255, 255, 0.7);
|
12120 |
-
}
|
12121 |
-
.bc-root .bc-uk-light .bc-uk-logo > :not(.bc-uk-logo-inverse):not(:only-of-type),
|
12122 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-logo > :not(.bc-uk-logo-inverse):not(:only-of-type),
|
12123 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-logo > :not(.bc-uk-logo-inverse):not(:only-of-type),
|
12124 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-logo > :not(.bc-uk-logo-inverse):not(:only-of-type),
|
12125 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-logo > :not(.bc-uk-logo-inverse):not(:only-of-type),
|
12126 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-logo > :not(.bc-uk-logo-inverse):not(:only-of-type),
|
12127 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-logo > :not(.bc-uk-logo-inverse):not(:only-of-type),
|
12128 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-logo > :not(.bc-uk-logo-inverse):not(:only-of-type),
|
12129 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-logo > :not(.bc-uk-logo-inverse):not(:only-of-type),
|
12130 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-logo > :not(.bc-uk-logo-inverse):not(:only-of-type),
|
12131 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-logo > :not(.bc-uk-logo-inverse):not(:only-of-type) {
|
12132 |
-
display: none;
|
12133 |
-
}
|
12134 |
-
.bc-root .bc-uk-light .bc-uk-logo-inverse,
|
12135 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-logo-inverse,
|
12136 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-logo-inverse,
|
12137 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-logo-inverse,
|
12138 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-logo-inverse,
|
12139 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-logo-inverse,
|
12140 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-logo-inverse,
|
12141 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-logo-inverse,
|
12142 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-logo-inverse,
|
12143 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-logo-inverse,
|
12144 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-logo-inverse {
|
12145 |
-
display: inline;
|
12146 |
-
}
|
12147 |
-
.bc-root .bc-uk-light .bc-uk-accordion-title::before,
|
12148 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-accordion-title::before,
|
12149 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-accordion-title::before,
|
12150 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-accordion-title::before,
|
12151 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-accordion-title::before,
|
12152 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-accordion-title::before,
|
12153 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-accordion-title::before,
|
12154 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-accordion-title::before,
|
12155 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-accordion-title::before,
|
12156 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-accordion-title::before,
|
12157 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-accordion-title::before {
|
12158 |
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%20%20%20%20%3Crect%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20width%3D%221%22%20height%3D%2213%22%20x%3D%226%22%20y%3D%220%22%20%2F%3E%0A%3C%2Fsvg%3E");
|
12159 |
-
}
|
12160 |
-
.bc-root .bc-uk-light .bc-uk-open > .bc-uk-accordion-title::before,
|
12161 |
-
.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-open > .bc-uk-accordion-title::before,
|
12162 |
-
.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-open > .bc-uk-accordion-title::before,
|
12163 |
-
.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-open > .bc-uk-accordion-title::before,
|
12164 |
-
.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-open > .bc-uk-accordion-title::before,
|
12165 |
-
.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-open > .bc-uk-accordion-title::before,
|
12166 |
-
.bc-root .bc-uk-card-primary > :not([class*=uk-card-media]) .bc-uk-open > .bc-uk-accordion-title::before,
|
12167 |
-
.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-open > .bc-uk-accordion-title::before,
|
12168 |
-
.bc-root .bc-uk-card-secondary > :not([class*=uk-card-media]) .bc-uk-open > .bc-uk-accordion-title::before,
|
12169 |
-
.bc-root .bc-uk-overlay-primary .bc-uk-open > .bc-uk-accordion-title::before,
|
12170 |
-
.bc-root .bc-uk-offcanvas-bar .bc-uk-open > .bc-uk-accordion-title::before {
|
12171 |
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%3C%2Fsvg%3E");
|
12172 |
-
}
|
12173 |
-
@media print {
|
12174 |
-
.bc-root *,
|
12175 |
-
.bc-root *::before,
|
12176 |
-
.bc-root *::after {
|
12177 |
-
background: transparent !important;
|
12178 |
-
color: black !important;
|
12179 |
-
box-shadow: none !important;
|
12180 |
-
text-shadow: none !important;
|
12181 |
-
}
|
12182 |
-
.bc-root a,
|
12183 |
-
.bc-root a:visited {
|
12184 |
-
text-decoration: underline;
|
12185 |
-
}
|
12186 |
-
.bc-root pre,
|
12187 |
-
.bc-root blockquote {
|
12188 |
-
border: 1px solid #999;
|
12189 |
-
page-break-inside: avoid;
|
12190 |
-
}
|
12191 |
-
.bc-root thead {
|
12192 |
-
display: table-header-group;
|
12193 |
-
}
|
12194 |
-
.bc-root tr,
|
12195 |
-
.bc-root img {
|
12196 |
-
page-break-inside: avoid;
|
12197 |
-
}
|
12198 |
-
.bc-root img {
|
12199 |
-
max-width: 100% !important;
|
12200 |
-
}
|
12201 |
-
@page {
|
12202 |
-
.bc-root {
|
12203 |
-
margin: 0.5cm;
|
12204 |
-
}
|
12205 |
-
}
|
12206 |
-
.bc-root p,
|
12207 |
-
.bc-root h2,
|
12208 |
-
.bc-root h3 {
|
12209 |
-
orphans: 3;
|
12210 |
-
widows: 3;
|
12211 |
-
}
|
12212 |
-
.bc-root h2,
|
12213 |
-
.bc-root h3 {
|
12214 |
-
page-break-after: avoid;
|
12215 |
-
}
|
12216 |
-
}
|
12217 |
-
|
12218 |
-
/**
|
12219 |
-
* Lightcase - jQuery Plugin
|
12220 |
-
* The smart and flexible Lightbox Plugin.
|
12221 |
-
*
|
12222 |
-
* @author Cornel Boppart <cornel@bopp-art.com>
|
12223 |
-
* @copyright Author
|
12224 |
-
*
|
12225 |
-
* @version 2.5.0 (11/03/2018)
|
12226 |
-
*/
|
12227 |
-
/**
|
12228 |
-
* Lightcase settings
|
12229 |
-
*
|
12230 |
-
* Note: Override default settings for your project without touching this source code by simply
|
12231 |
-
* defining those variables within a SASS map called '$lightcase-custom'.
|
12232 |
-
*
|
12233 |
-
* // Example usage
|
12234 |
-
* $lightcase-custom: (
|
12235 |
-
* 'breakpoint': 768px
|
12236 |
-
* );
|
12237 |
-
*/
|
12238 |
-
@font-face {
|
12239 |
-
font-family: "lightcase";
|
12240 |
-
src: url("../css/fonts/lightcase.eot?55356177");
|
12241 |
-
src: url("../css/fonts/lightcase.eot?55356177#iefix") format("embedded-opentype"), url("../fonts/lightcase.woff?55356177") format("woff"), url("../fonts/lightcase.ttf?55356177") format("truetype"), url("../fonts/lightcase.svg?55356177#lightcase") format("svg");
|
12242 |
-
font-weight: normal;
|
12243 |
-
font-style: normal;
|
12244 |
-
}
|
12245 |
-
/* line 12, ../scss/components/fonts/_font-lightcase.scss */
|
12246 |
-
[class*=lightcase-icon-]:before {
|
12247 |
-
font-family: "lightcase", sans-serif;
|
12248 |
-
font-style: normal;
|
12249 |
-
font-weight: normal;
|
12250 |
-
speak: none;
|
12251 |
-
display: inline-block;
|
12252 |
-
text-decoration: inherit;
|
12253 |
-
width: 1em;
|
12254 |
-
text-align: center;
|
12255 |
-
/* For safety - reset parent styles, that can break glyph codes*/
|
12256 |
-
font-variant: normal;
|
12257 |
-
text-transform: none;
|
12258 |
-
/* fix buttons height, for twitter bootstrap */
|
12259 |
-
line-height: 1em;
|
12260 |
-
/* Uncomment for 3D effect */
|
12261 |
-
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
|
12262 |
-
}
|
12263 |
-
|
12264 |
-
/* Codes */
|
12265 |
-
/* line 35, ../scss/components/fonts/_font-lightcase.scss */
|
12266 |
-
.lightcase-icon-play:before {
|
12267 |
-
content: "";
|
12268 |
-
}
|
12269 |
-
|
12270 |
-
/* line 36, ../scss/components/fonts/_font-lightcase.scss */
|
12271 |
-
.lightcase-icon-pause:before {
|
12272 |
-
content: "";
|
12273 |
-
}
|
12274 |
-
|
12275 |
-
/* line 37, ../scss/components/fonts/_font-lightcase.scss */
|
12276 |
-
.lightcase-icon-close:before {
|
12277 |
-
content: "";
|
12278 |
-
}
|
12279 |
-
|
12280 |
-
/* line 38, ../scss/components/fonts/_font-lightcase.scss */
|
12281 |
-
.lightcase-icon-prev:before {
|
12282 |
-
content: "";
|
12283 |
-
}
|
12284 |
-
|
12285 |
-
/* line 39, ../scss/components/fonts/_font-lightcase.scss */
|
12286 |
-
.lightcase-icon-next:before {
|
12287 |
-
content: "";
|
12288 |
-
}
|
12289 |
-
|
12290 |
-
/* line 40, ../scss/components/fonts/_font-lightcase.scss */
|
12291 |
-
.lightcase-icon-spin:before {
|
12292 |
-
content: "";
|
12293 |
-
}
|
12294 |
-
|
12295 |
-
/**
|
12296 |
-
* Mixin providing icon defaults to be used on top of font-lightcase.
|
12297 |
-
*
|
12298 |
-
* Example usage:
|
12299 |
-
* @include icon(#e9e9e9)
|
12300 |
-
*/
|
12301 |
-
/**
|
12302 |
-
* Mixin providing icon defaults including a hover status to be used
|
12303 |
-
* on top of font-lightcase.
|
12304 |
-
*
|
12305 |
-
* Example usage:
|
12306 |
-
* @include icon-hover(#e9e9e9, #fff)
|
12307 |
-
*/
|
12308 |
-
/**
|
12309 |
-
* Provides natural content overflow behavior and scrolling support
|
12310 |
-
* even so for touch devices.
|
12311 |
-
*
|
12312 |
-
* Example usage:
|
12313 |
-
* @include overflow()
|
12314 |
-
*/
|
12315 |
-
/**
|
12316 |
-
* Neutralizes/resets dimensions including width, height, position as well as margins,
|
12317 |
-
* paddings and styles. Used to enforce a neutral and unstyled look and behavoir!
|
12318 |
-
*
|
12319 |
-
* Example usage:
|
12320 |
-
* @include clear(true)
|
12321 |
-
*
|
12322 |
-
* @param boolean $important
|
12323 |
-
*/
|
12324 |
-
@-webkit-keyframes lightcase-spin {
|
12325 |
-
0% {
|
12326 |
-
-webkit-transform: rotate(0deg);
|
12327 |
-
-moz-transform: rotate(0deg);
|
12328 |
-
-o-transform: rotate(0deg);
|
12329 |
-
transform: rotate(0deg);
|
12330 |
-
}
|
12331 |
-
100% {
|
12332 |
-
-webkit-transform: rotate(359deg);
|
12333 |
-
-moz-transform: rotate(359deg);
|
12334 |
-
-o-transform: rotate(359deg);
|
12335 |
-
transform: rotate(359deg);
|
12336 |
-
}
|
12337 |
-
}
|
12338 |
-
@-moz-keyframes lightcase-spin {
|
12339 |
-
0% {
|
12340 |
-
-webkit-transform: rotate(0deg);
|
12341 |
-
-moz-transform: rotate(0deg);
|
12342 |
-
-o-transform: rotate(0deg);
|
12343 |
-
transform: rotate(0deg);
|
12344 |
-
}
|
12345 |
-
100% {
|
12346 |
-
-webkit-transform: rotate(359deg);
|
12347 |
-
-moz-transform: rotate(359deg);
|
12348 |
-
-o-transform: rotate(359deg);
|
12349 |
-
transform: rotate(359deg);
|
12350 |
-
}
|
12351 |
-
}
|
12352 |
-
@-o-keyframes lightcase-spin {
|
12353 |
-
0% {
|
12354 |
-
-webkit-transform: rotate(0deg);
|
12355 |
-
-moz-transform: rotate(0deg);
|
12356 |
-
-o-transform: rotate(0deg);
|
12357 |
-
transform: rotate(0deg);
|
12358 |
-
}
|
12359 |
-
100% {
|
12360 |
-
-webkit-transform: rotate(359deg);
|
12361 |
-
-moz-transform: rotate(359deg);
|
12362 |
-
-o-transform: rotate(359deg);
|
12363 |
-
transform: rotate(359deg);
|
12364 |
-
}
|
12365 |
-
}
|
12366 |
-
@-ms-keyframes lightcase-spin {
|
12367 |
-
0% {
|
12368 |
-
-webkit-transform: rotate(0deg);
|
12369 |
-
-moz-transform: rotate(0deg);
|
12370 |
-
-o-transform: rotate(0deg);
|
12371 |
-
transform: rotate(0deg);
|
12372 |
-
}
|
12373 |
-
100% {
|
12374 |
-
-webkit-transform: rotate(359deg);
|
12375 |
-
-moz-transform: rotate(359deg);
|
12376 |
-
-o-transform: rotate(359deg);
|
12377 |
-
transform: rotate(359deg);
|
12378 |
-
}
|
12379 |
-
}
|
12380 |
-
@keyframes lightcase-spin {
|
12381 |
-
0% {
|
12382 |
-
-webkit-transform: rotate(0deg);
|
12383 |
-
-moz-transform: rotate(0deg);
|
12384 |
-
-o-transform: rotate(0deg);
|
12385 |
-
transform: rotate(0deg);
|
12386 |
-
}
|
12387 |
-
100% {
|
12388 |
-
-webkit-transform: rotate(359deg);
|
12389 |
-
-moz-transform: rotate(359deg);
|
12390 |
-
-o-transform: rotate(359deg);
|
12391 |
-
transform: rotate(359deg);
|
12392 |
-
}
|
12393 |
-
}
|
12394 |
-
/* line 1, ../scss/components/modules/_case.scss */
|
12395 |
-
#lightcase-case {
|
12396 |
-
display: none;
|
12397 |
-
position: fixed;
|
12398 |
-
z-index: 2002;
|
12399 |
-
top: 50%;
|
12400 |
-
left: 50%;
|
12401 |
-
font-family: arial, sans-serif;
|
12402 |
-
font-size: 13px;
|
12403 |
-
line-height: 1.5;
|
12404 |
-
text-align: left;
|
12405 |
-
text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
12406 |
-
}
|
12407 |
-
|
12408 |
-
@media screen and (max-width: 640px) {
|
12409 |
-
/* line 16, ../scss/components/modules/_case.scss */
|
12410 |
-
html[data-lc-type=inline] #lightcase-case, html[data-lc-type=ajax] #lightcase-case {
|
12411 |
-
position: fixed !important;
|
12412 |
-
top: 0 !important;
|
12413 |
-
left: 0 !important;
|
12414 |
-
right: 0 !important;
|
12415 |
-
bottom: 0 !important;
|
12416 |
-
margin: 0 !important;
|
12417 |
-
padding: 55px 0 70px 0;
|
12418 |
-
width: 100% !important;
|
12419 |
-
height: 100% !important;
|
12420 |
-
overflow: auto !important;
|
12421 |
-
}
|
12422 |
-
}
|
12423 |
-
@media screen and (min-width: 641px) {
|
12424 |
-
/* line 4, ../scss/components/modules/_content.scss */
|
12425 |
-
html:not([data-lc-type=error]) #lightcase-content {
|
12426 |
-
position: relative;
|
12427 |
-
z-index: 1;
|
12428 |
-
text-shadow: none;
|
12429 |
-
background-color: #fff;
|
12430 |
-
-webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
|
12431 |
-
-moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
|
12432 |
-
-o-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
|
12433 |
-
box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
|
12434 |
-
-webkit-backface-visibility: hidden;
|
12435 |
-
}
|
12436 |
-
}
|
12437 |
-
@media screen and (min-width: 641px) {
|
12438 |
-
/* line 23, ../scss/components/modules/_content.scss */
|
12439 |
-
html[data-lc-type=image] #lightcase-content, html[data-lc-type=video] #lightcase-content {
|
12440 |
-
background-color: #333;
|
12441 |
-
}
|
12442 |
-
}
|
12443 |
-
/* line 31, ../scss/components/modules/_content.scss */
|
12444 |
-
html[data-lc-type=inline] #lightcase-content, html[data-lc-type=ajax] #lightcase-content, html[data-lc-type=error] #lightcase-content {
|
12445 |
-
-webkit-box-shadow: none;
|
12446 |
-
-moz-box-shadow: none;
|
12447 |
-
-o-box-shadow: none;
|
12448 |
-
box-shadow: none;
|
12449 |
-
}
|
12450 |
-
|
12451 |
-
@media screen and (max-width: 640px) {
|
12452 |
-
/* line 31, ../scss/components/modules/_content.scss */
|
12453 |
-
html[data-lc-type=inline] #lightcase-content, html[data-lc-type=ajax] #lightcase-content, html[data-lc-type=error] #lightcase-content {
|
12454 |
-
position: relative !important;
|
12455 |
-
top: auto !important;
|
12456 |
-
left: auto !important;
|
12457 |
-
width: auto !important;
|
12458 |
-
height: auto !important;
|
12459 |
-
margin: 0 !important;
|
12460 |
-
padding: 0 !important;
|
12461 |
-
border: none !important;
|
12462 |
-
background: none !important;
|
12463 |
-
}
|
12464 |
-
}
|
12465 |
-
/* line 43, ../scss/components/modules/_content.scss */
|
12466 |
-
html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
|
12467 |
-
-webkit-box-sizing: border-box;
|
12468 |
-
-moz-box-sizing: border-box;
|
12469 |
-
-o-box-sizing: border-box;
|
12470 |
-
box-sizing: border-box;
|
12471 |
-
}
|
12472 |
-
|
12473 |
-
@media screen and (max-width: 640px) {
|
12474 |
-
/* line 43, ../scss/components/modules/_content.scss */
|
12475 |
-
html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
|
12476 |
-
padding: 15px;
|
12477 |
-
}
|
12478 |
-
|
12479 |
-
/* line 52, ../scss/components/modules/_content.scss */
|
12480 |
-
html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *, html[data-lc-type=error] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner > * {
|
12481 |
-
width: 100% !important;
|
12482 |
-
max-width: none !important;
|
12483 |
-
}
|
12484 |
-
|
12485 |
-
/* line 59, ../scss/components/modules/_content.scss */
|
12486 |
-
html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *:not(iframe), html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *:not(iframe), html[data-lc-type=error] #lightcase-content .lightcase-contentInner > *:not(iframe) {
|
12487 |
-
height: auto !important;
|
12488 |
-
max-height: none !important;
|
12489 |
-
}
|
12490 |
-
}
|
12491 |
-
@media screen and (max-width: 640px) {
|
12492 |
-
/* line 70, ../scss/components/modules/_content.scss */
|
12493 |
-
html.lightcase-isMobileDevice[data-lc-type=iframe] #lightcase-content .lightcase-contentInner iframe {
|
12494 |
-
overflow: auto;
|
12495 |
-
-webkit-overflow-scrolling: touch;
|
12496 |
-
}
|
12497 |
-
}
|
12498 |
-
@media screen and (max-width: 640px) and (min-width: 641px) {
|
12499 |
-
/* line 74, ../scss/components/modules/_content.scss */
|
12500 |
-
html[data-lc-type=image] #lightcase-content .lightcase-contentInner, html[data-lc-type=video] #lightcase-content .lightcase-contentInner {
|
12501 |
-
line-height: 0.75;
|
12502 |
-
}
|
12503 |
-
}
|
12504 |
-
/* line 82, ../scss/components/modules/_content.scss */
|
12505 |
-
html[data-lc-type=image] #lightcase-content .lightcase-contentInner {
|
12506 |
-
position: relative;
|
12507 |
-
overflow: hidden !important;
|
12508 |
-
}
|
12509 |
-
|
12510 |
-
@media screen and (max-width: 640px) {
|
12511 |
-
/* line 91, ../scss/components/modules/_content.scss */
|
12512 |
-
html[data-lc-type=inline] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap, html[data-lc-type=error] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
|
12513 |
-
position: relative !important;
|
12514 |
-
top: auto !important;
|
12515 |
-
left: auto !important;
|
12516 |
-
width: auto !important;
|
12517 |
-
height: auto !important;
|
12518 |
-
margin: 0 !important;
|
12519 |
-
padding: 0 !important;
|
12520 |
-
border: none !important;
|
12521 |
-
background: none !important;
|
12522 |
-
}
|
12523 |
-
}
|
12524 |
-
@media screen and (min-width: 641px) {
|
12525 |
-
/* line 100, ../scss/components/modules/_content.scss */
|
12526 |
-
html:not([data-lc-type=error]) #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
|
12527 |
-
padding: 30px;
|
12528 |
-
overflow: auto;
|
12529 |
-
-webkit-box-sizing: border-box;
|
12530 |
-
-moz-box-sizing: border-box;
|
12531 |
-
-o-box-sizing: border-box;
|
12532 |
-
box-sizing: border-box;
|
12533 |
-
}
|
12534 |
-
}
|
12535 |
-
@media screen and (max-width: 640px) {
|
12536 |
-
/* line 117, ../scss/components/modules/_content.scss */
|
12537 |
-
#lightcase-content h1, #lightcase-content h2, #lightcase-content h3, #lightcase-content h4, #lightcase-content h5, #lightcase-content h6, #lightcase-content p {
|
12538 |
-
color: #aaa;
|
12539 |
-
}
|
12540 |
-
}
|
12541 |
-
@media screen and (min-width: 641px) {
|
12542 |
-
/* line 117, ../scss/components/modules/_content.scss */
|
12543 |
-
#lightcase-content h1, #lightcase-content h2, #lightcase-content h3, #lightcase-content h4, #lightcase-content h5, #lightcase-content h6, #lightcase-content p {
|
12544 |
-
color: #333;
|
12545 |
-
}
|
12546 |
-
}
|
12547 |
-
/* line 3, ../scss/components/modules/_error.scss */
|
12548 |
-
#lightcase-case p.lightcase-error {
|
12549 |
-
margin: 0;
|
12550 |
-
font-size: 17px;
|
12551 |
-
text-align: center;
|
12552 |
-
white-space: nowrap;
|
12553 |
-
overflow: hidden;
|
12554 |
-
text-overflow: ellipsis;
|
12555 |
-
color: #aaa;
|
12556 |
-
}
|
12557 |
-
|
12558 |
-
@media screen and (max-width: 640px) {
|
12559 |
-
/* line 3, ../scss/components/modules/_error.scss */
|
12560 |
-
#lightcase-case p.lightcase-error {
|
12561 |
-
padding: 30px 0;
|
12562 |
-
}
|
12563 |
-
}
|
12564 |
-
@media screen and (min-width: 641px) {
|
12565 |
-
/* line 3, ../scss/components/modules/_error.scss */
|
12566 |
-
#lightcase-case p.lightcase-error {
|
12567 |
-
padding: 0;
|
12568 |
-
}
|
12569 |
-
}
|
12570 |
-
/* line 4, ../scss/components/modules/_global.scss */
|
12571 |
-
.lightcase-open body {
|
12572 |
-
overflow: hidden;
|
12573 |
-
}
|
12574 |
-
|
12575 |
-
/* line 8, ../scss/components/modules/_global.scss */
|
12576 |
-
.lightcase-isMobileDevice .lightcase-open body {
|
12577 |
-
max-width: 100%;
|
12578 |
-
max-height: 100%;
|
12579 |
-
}
|
12580 |
-
|
12581 |
-
/* line 1, ../scss/components/modules/_info.scss */
|
12582 |
-
#lightcase-info {
|
12583 |
-
position: absolute;
|
12584 |
-
padding-top: 15px;
|
12585 |
-
}
|
12586 |
-
|
12587 |
-
/* line 9, ../scss/components/modules/_info.scss */
|
12588 |
-
#lightcase-info #lightcase-title,
|
12589 |
-
#lightcase-info #lightcase-caption {
|
12590 |
-
margin: 0;
|
12591 |
-
padding: 0;
|
12592 |
-
line-height: 1.5;
|
12593 |
-
font-weight: normal;
|
12594 |
-
text-overflow: ellipsis;
|
12595 |
-
}
|
12596 |
-
|
12597 |
-
/* line 19, ../scss/components/modules/_info.scss */
|
12598 |
-
#lightcase-info #lightcase-title {
|
12599 |
-
font-size: 17px;
|
12600 |
-
color: #aaa;
|
12601 |
-
}
|
12602 |
-
|
12603 |
-
@media screen and (max-width: 640px) {
|
12604 |
-
/* line 19, ../scss/components/modules/_info.scss */
|
12605 |
-
#lightcase-info #lightcase-title {
|
12606 |
-
position: fixed;
|
12607 |
-
top: 10px;
|
12608 |
-
left: 0;
|
12609 |
-
max-width: 87.5%;
|
12610 |
-
padding: 5px 15px;
|
12611 |
-
background: #333;
|
12612 |
-
}
|
12613 |
-
}
|
12614 |
-
/* line 33, ../scss/components/modules/_info.scss */
|
12615 |
-
#lightcase-info #lightcase-caption {
|
12616 |
-
clear: both;
|
12617 |
-
font-size: 13px;
|
12618 |
-
color: #aaa;
|
12619 |
-
}
|
12620 |
-
|
12621 |
-
/* line 39, ../scss/components/modules/_info.scss */
|
12622 |
-
#lightcase-info #lightcase-sequenceInfo {
|
12623 |
-
font-size: 11px;
|
12624 |
-
color: #aaa;
|
12625 |
-
}
|
12626 |
-
|
12627 |
-
@media screen and (max-width: 640px) {
|
12628 |
-
/* line 45, ../scss/components/modules/_info.scss */
|
12629 |
-
.lightcase-fullScreenMode #lightcase-info {
|
12630 |
-
padding-left: 15px;
|
12631 |
-
padding-right: 15px;
|
12632 |
-
}
|
12633 |
-
|
12634 |
-
/* line 51, ../scss/components/modules/_info.scss */
|
12635 |
-
html:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #lightcase-info {
|
12636 |
-
position: static;
|
12637 |
-
}
|
12638 |
-
}
|
12639 |
-
/* line 1, ../scss/components/modules/_loading.scss */
|
12640 |
-
#lightcase-loading {
|
12641 |
-
position: fixed;
|
12642 |
-
z-index: 9999;
|
12643 |
-
width: 1.123em;
|
12644 |
-
height: auto;
|
12645 |
-
font-size: 38px;
|
12646 |
-
line-height: 1;
|
12647 |
-
text-align: center;
|
12648 |
-
text-shadow: none;
|
12649 |
-
position: fixed;
|
12650 |
-
z-index: 2001;
|
12651 |
-
top: 50%;
|
12652 |
-
left: 50%;
|
12653 |
-
margin-top: -0.5em;
|
12654 |
-
margin-left: -0.5em;
|
12655 |
-
opacity: 1;
|
12656 |
-
font-size: 32px;
|
12657 |
-
text-shadow: 0 0 15px #fff;
|
12658 |
-
-moz-transform-origin: 50% 53%;
|
12659 |
-
-webkit-animation: lightcase-spin 0.5s infinite linear;
|
12660 |
-
-moz-animation: lightcase-spin 0.5s infinite linear;
|
12661 |
-
-o-animation: lightcase-spin 0.5s infinite linear;
|
12662 |
-
animation: lightcase-spin 0.5s infinite linear;
|
12663 |
-
}
|
12664 |
-
|
12665 |
-
/* line 20, ../scss/components/mixins/_presets.scss */
|
12666 |
-
#lightcase-loading, #lightcase-loading:focus {
|
12667 |
-
text-decoration: none;
|
12668 |
-
color: #fff;
|
12669 |
-
-webkit-tap-highlight-color: transparent;
|
12670 |
-
-webkit-transition: color, opacity, ease-in-out 0.25s;
|
12671 |
-
-moz-transition: color, opacity, ease-in-out 0.25s;
|
12672 |
-
-o-transition: color, opacity, ease-in-out 0.25s;
|
12673 |
-
transition: color, opacity, ease-in-out 0.25s;
|
12674 |
-
}
|
12675 |
-
|
12676 |
-
/* line 32, ../scss/components/mixins/_presets.scss */
|
12677 |
-
#lightcase-loading > span {
|
12678 |
-
display: inline-block;
|
12679 |
-
text-indent: -9999px;
|
12680 |
-
}
|
12681 |
-
|
12682 |
-
/* line 2, ../scss/components/modules/_navigation.scss */
|
12683 |
-
a[class*=lightcase-icon-] {
|
12684 |
-
position: fixed;
|
12685 |
-
z-index: 9999;
|
12686 |
-
width: 1.123em;
|
12687 |
-
height: auto;
|
12688 |
-
font-size: 38px;
|
12689 |
-
line-height: 1;
|
12690 |
-
text-align: center;
|
12691 |
-
text-shadow: none;
|
12692 |
-
outline: none;
|
12693 |
-
cursor: pointer;
|
12694 |
-
}
|
12695 |
-
|
12696 |
-
/* line 20, ../scss/components/mixins/_presets.scss */
|
12697 |
-
a[class*=lightcase-icon-], a[class*=lightcase-icon-]:focus {
|
12698 |
-
text-decoration: none;
|
12699 |
-
color: rgba(255, 255, 255, 0.6);
|
12700 |
-
-webkit-tap-highlight-color: transparent;
|
12701 |
-
-webkit-transition: color, opacity, ease-in-out 0.25s;
|
12702 |
-
-moz-transition: color, opacity, ease-in-out 0.25s;
|
12703 |
-
-o-transition: color, opacity, ease-in-out 0.25s;
|
12704 |
-
transition: color, opacity, ease-in-out 0.25s;
|
12705 |
-
}
|
12706 |
-
|
12707 |
-
/* line 32, ../scss/components/mixins/_presets.scss */
|
12708 |
-
a[class*=lightcase-icon-] > span {
|
12709 |
-
display: inline-block;
|
12710 |
-
text-indent: -9999px;
|
12711 |
-
}
|
12712 |
-
|
12713 |
-
/* line 49, ../scss/components/mixins/_presets.scss */
|
12714 |
-
a[class*=lightcase-icon-]:hover {
|
12715 |
-
color: white;
|
12716 |
-
text-shadow: 0 0 15px white;
|
12717 |
-
}
|
12718 |
-
|
12719 |
-
/* line 10, ../scss/components/modules/_navigation.scss */
|
12720 |
-
.lightcase-isMobileDevice a[class*=lightcase-icon-]:hover {
|
12721 |
-
color: #aaa;
|
12722 |
-
text-shadow: none;
|
12723 |
-
}
|
12724 |
-
|
12725 |
-
/* line 17, ../scss/components/modules/_navigation.scss */
|
12726 |
-
a[class*=lightcase-icon-].lightcase-icon-close {
|
12727 |
-
position: fixed;
|
12728 |
-
top: 15px;
|
12729 |
-
right: 15px;
|
12730 |
-
bottom: auto;
|
12731 |
-
margin: 0;
|
12732 |
-
opacity: 0;
|
12733 |
-
outline: none;
|
12734 |
-
}
|
12735 |
-
|
12736 |
-
/* line 28, ../scss/components/modules/_navigation.scss */
|
12737 |
-
a[class*=lightcase-icon-].lightcase-icon-prev {
|
12738 |
-
left: 15px;
|
12739 |
-
}
|
12740 |
-
|
12741 |
-
/* line 33, ../scss/components/modules/_navigation.scss */
|
12742 |
-
a[class*=lightcase-icon-].lightcase-icon-next {
|
12743 |
-
right: 15px;
|
12744 |
-
}
|
12745 |
-
|
12746 |
-
/* line 38, ../scss/components/modules/_navigation.scss */
|
12747 |
-
a[class*=lightcase-icon-].lightcase-icon-pause, a[class*=lightcase-icon-].lightcase-icon-play {
|
12748 |
-
left: 50%;
|
12749 |
-
margin-left: -0.5em;
|
12750 |
-
}
|
12751 |
-
|
12752 |
-
@media screen and (min-width: 641px) {
|
12753 |
-
/* line 38, ../scss/components/modules/_navigation.scss */
|
12754 |
-
a[class*=lightcase-icon-].lightcase-icon-pause, a[class*=lightcase-icon-].lightcase-icon-play {
|
12755 |
-
opacity: 0;
|
12756 |
-
}
|
12757 |
-
}
|
12758 |
-
@media screen and (max-width: 640px) {
|
12759 |
-
/* line 2, ../scss/components/modules/_navigation.scss */
|
12760 |
-
a[class*=lightcase-icon-] {
|
12761 |
-
bottom: 15px;
|
12762 |
-
font-size: 24px;
|
12763 |
-
}
|
12764 |
-
}
|
12765 |
-
@media screen and (min-width: 641px) {
|
12766 |
-
/* line 2, ../scss/components/modules/_navigation.scss */
|
12767 |
-
a[class*=lightcase-icon-] {
|
12768 |
-
bottom: 50%;
|
12769 |
-
margin-bottom: -0.5em;
|
12770 |
-
}
|
12771 |
-
|
12772 |
-
/* line 57, ../scss/components/modules/_navigation.scss */
|
12773 |
-
a[class*=lightcase-icon-]:hover, #lightcase-case:hover ~ a[class*=lightcase-icon-] {
|
12774 |
-
opacity: 1;
|
12775 |
-
}
|
12776 |
-
}
|
12777 |
-
/* line 1, ../scss/components/modules/_overlay.scss */
|
12778 |
-
#lightcase-overlay {
|
12779 |
-
display: none;
|
12780 |
-
width: 100%;
|
12781 |
-
min-height: 100%;
|
12782 |
-
position: fixed;
|
12783 |
-
z-index: 2000;
|
12784 |
-
top: -9999px;
|
12785 |
-
bottom: -9999px;
|
12786 |
-
left: 0;
|
12787 |
-
background: #333;
|
12788 |
-
}
|
12789 |
-
|
12790 |
-
@media screen and (max-width: 640px) {
|
12791 |
-
/* line 1, ../scss/components/modules/_overlay.scss */
|
12792 |
-
#lightcase-overlay {
|
12793 |
-
opacity: 1 !important;
|
12794 |
-
}
|
12795 |
-
}
|
12796 |
-
body.stop-scrolling {
|
12797 |
-
height: 100%;
|
12798 |
-
overflow: hidden;
|
12799 |
-
}
|
12800 |
-
|
12801 |
-
.sweet-overlay {
|
12802 |
-
background-color: black;
|
12803 |
-
/* IE8 */
|
12804 |
-
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
|
12805 |
-
/* IE8 */
|
12806 |
-
background-color: rgba(0, 0, 0, 0.4);
|
12807 |
-
position: fixed;
|
12808 |
-
left: 0;
|
12809 |
-
right: 0;
|
12810 |
-
top: 0;
|
12811 |
-
bottom: 0;
|
12812 |
-
display: none;
|
12813 |
-
z-index: 10000;
|
12814 |
-
}
|
12815 |
-
|
12816 |
-
.sweet-alert {
|
12817 |
-
background-color: white;
|
12818 |
-
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
12819 |
-
width: 478px;
|
12820 |
-
padding: 17px;
|
12821 |
-
border-radius: 5px;
|
12822 |
-
text-align: center;
|
12823 |
-
position: fixed;
|
12824 |
-
left: 50%;
|
12825 |
-
top: 50%;
|
12826 |
-
margin-left: -256px;
|
12827 |
-
margin-top: -200px;
|
12828 |
-
overflow: hidden;
|
12829 |
-
display: none;
|
12830 |
-
z-index: 99999;
|
12831 |
-
}
|
12832 |
-
|
12833 |
-
@media all and (max-width: 540px) {
|
12834 |
-
.sweet-alert {
|
12835 |
-
width: auto;
|
12836 |
-
margin-left: 0;
|
12837 |
-
margin-right: 0;
|
12838 |
-
left: 15px;
|
12839 |
-
right: 15px;
|
12840 |
-
}
|
12841 |
-
}
|
12842 |
-
.sweet-alert h2 {
|
12843 |
-
color: #575757;
|
12844 |
-
font-size: 30px;
|
12845 |
-
text-align: center;
|
12846 |
-
font-weight: 600;
|
12847 |
-
text-transform: none;
|
12848 |
-
position: relative;
|
12849 |
-
margin: 25px 0;
|
12850 |
-
padding: 0;
|
12851 |
-
line-height: 40px;
|
12852 |
-
display: block;
|
12853 |
-
}
|
12854 |
-
|
12855 |
-
.sweet-alert p {
|
12856 |
-
color: #797979;
|
12857 |
-
font-size: 16px;
|
12858 |
-
text-align: center;
|
12859 |
-
font-weight: 300;
|
12860 |
-
position: relative;
|
12861 |
-
text-align: inherit;
|
12862 |
-
float: none;
|
12863 |
-
margin: 0;
|
12864 |
-
padding: 0;
|
12865 |
-
line-height: normal;
|
12866 |
-
}
|
12867 |
-
|
12868 |
-
.sweet-alert fieldset {
|
12869 |
-
border: none;
|
12870 |
-
position: relative;
|
12871 |
-
}
|
12872 |
-
|
12873 |
-
.sweet-alert .sa-error-container {
|
12874 |
-
background-color: #f1f1f1;
|
12875 |
-
margin-left: -17px;
|
12876 |
-
margin-right: -17px;
|
12877 |
-
overflow: hidden;
|
12878 |
-
padding: 0 10px;
|
12879 |
-
max-height: 0;
|
12880 |
-
webkit-transition: padding 0.15s, max-height 0.15s;
|
12881 |
-
transition: padding 0.15s, max-height 0.15s;
|
12882 |
-
}
|
12883 |
-
|
12884 |
-
.sweet-alert .sa-error-container.show {
|
12885 |
-
padding: 10px 0;
|
12886 |
-
max-height: 100px;
|
12887 |
-
webkit-transition: padding 0.2s, max-height 0.2s;
|
12888 |
-
transition: padding 0.25s, max-height 0.25s;
|
12889 |
-
}
|
12890 |
-
|
12891 |
-
.sweet-alert .sa-error-container .icon {
|
12892 |
-
display: inline-block;
|
12893 |
-
width: 24px;
|
12894 |
-
height: 24px;
|
12895 |
-
border-radius: 50%;
|
12896 |
-
background-color: #ea7d7d;
|
12897 |
-
color: white;
|
12898 |
-
line-height: 24px;
|
12899 |
-
text-align: center;
|
12900 |
-
margin-right: 3px;
|
12901 |
-
}
|
12902 |
-
|
12903 |
-
.sweet-alert .sa-error-container p {
|
12904 |
-
display: inline-block;
|
12905 |
-
}
|
12906 |
-
|
12907 |
-
.sweet-alert .sa-input-error {
|
12908 |
-
position: absolute;
|
12909 |
-
top: 29px;
|
12910 |
-
right: 26px;
|
12911 |
-
width: 20px;
|
12912 |
-
height: 20px;
|
12913 |
-
opacity: 0;
|
12914 |
-
-webkit-transform: scale(0.5);
|
12915 |
-
transform: scale(0.5);
|
12916 |
-
-webkit-transform-origin: 50% 50%;
|
12917 |
-
transform-origin: 50% 50%;
|
12918 |
-
-webkit-transition: all 0.1s;
|
12919 |
-
transition: all 0.1s;
|
12920 |
-
}
|
12921 |
-
|
12922 |
-
.sweet-alert .sa-input-error::before, .sweet-alert .sa-input-error::after {
|
12923 |
-
content: "";
|
12924 |
-
width: 20px;
|
12925 |
-
height: 6px;
|
12926 |
-
background-color: #f06e57;
|
12927 |
-
border-radius: 3px;
|
12928 |
-
position: absolute;
|
12929 |
-
top: 50%;
|
12930 |
-
margin-top: -4px;
|
12931 |
-
left: 50%;
|
12932 |
-
margin-left: -9px;
|
12933 |
-
}
|
12934 |
-
|
12935 |
-
.sweet-alert .sa-input-error::before {
|
12936 |
-
-webkit-transform: rotate(-45deg);
|
12937 |
-
transform: rotate(-45deg);
|
12938 |
-
}
|
12939 |
-
|
12940 |
-
.sweet-alert .sa-input-error::after {
|
12941 |
-
-webkit-transform: rotate(45deg);
|
12942 |
-
transform: rotate(45deg);
|
12943 |
-
}
|
12944 |
-
|
12945 |
-
.sweet-alert .sa-input-error.show {
|
12946 |
-
opacity: 1;
|
12947 |
-
-webkit-transform: scale(1);
|
12948 |
-
transform: scale(1);
|
12949 |
-
}
|
12950 |
-
|
12951 |
-
.sweet-alert input {
|
12952 |
-
width: 100%;
|
12953 |
-
box-sizing: border-box;
|
12954 |
-
border-radius: 3px;
|
12955 |
-
border: 1px solid #d7d7d7;
|
12956 |
-
height: 43px;
|
12957 |
-
margin-top: 10px;
|
12958 |
-
margin-bottom: 17px;
|
12959 |
-
font-size: 18px;
|
12960 |
-
box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.06);
|
12961 |
-
padding: 0 12px;
|
12962 |
-
display: none;
|
12963 |
-
-webkit-transition: all 0.3s;
|
12964 |
-
transition: all 0.3s;
|
12965 |
-
}
|
12966 |
-
|
12967 |
-
.sweet-alert input:focus {
|
12968 |
-
outline: none;
|
12969 |
-
box-shadow: 0px 0px 3px #c4e6f5;
|
12970 |
-
border: 1px solid #b4dbed;
|
12971 |
-
}
|
12972 |
-
|
12973 |
-
.sweet-alert input:focus::-moz-placeholder {
|
12974 |
-
transition: opacity 0.3s 0.03s ease;
|
12975 |
-
opacity: 0.5;
|
12976 |
-
}
|
12977 |
-
|
12978 |
-
.sweet-alert input:focus:-ms-input-placeholder {
|
12979 |
-
transition: opacity 0.3s 0.03s ease;
|
12980 |
-
opacity: 0.5;
|
12981 |
-
}
|
12982 |
-
|
12983 |
-
.sweet-alert input:focus::-webkit-input-placeholder {
|
12984 |
-
transition: opacity 0.3s 0.03s ease;
|
12985 |
-
opacity: 0.5;
|
12986 |
-
}
|
12987 |
-
|
12988 |
-
.sweet-alert input::-moz-placeholder {
|
12989 |
-
color: #bdbdbd;
|
12990 |
-
}
|
12991 |
-
|
12992 |
-
.sweet-alert input:-ms-input-placeholder {
|
12993 |
-
color: #bdbdbd;
|
12994 |
-
}
|
12995 |
-
|
12996 |
-
.sweet-alert input::-webkit-input-placeholder {
|
12997 |
-
color: #bdbdbd;
|
12998 |
-
}
|
12999 |
-
|
13000 |
-
.sweet-alert.show-input input {
|
13001 |
-
display: block;
|
13002 |
-
}
|
13003 |
-
|
13004 |
-
.sweet-alert .sa-confirm-button-container {
|
13005 |
-
display: inline-block;
|
13006 |
-
position: relative;
|
13007 |
-
}
|
13008 |
-
|
13009 |
-
.sweet-alert .la-ball-fall {
|
13010 |
-
position: absolute;
|
13011 |
-
left: 50%;
|
13012 |
-
top: 50%;
|
13013 |
-
margin-left: -27px;
|
13014 |
-
margin-top: 4px;
|
13015 |
-
opacity: 0;
|
13016 |
-
visibility: hidden;
|
13017 |
-
}
|
13018 |
-
|
13019 |
-
.sweet-alert button {
|
13020 |
-
background-color: #8CD4F5;
|
13021 |
-
color: white;
|
13022 |
-
border: none;
|
13023 |
-
box-shadow: none;
|
13024 |
-
font-size: 17px;
|
13025 |
-
font-weight: 500;
|
13026 |
-
-webkit-border-radius: 4px;
|
13027 |
-
border-radius: 5px;
|
13028 |
-
padding: 10px 32px;
|
13029 |
-
margin: 26px 5px 0 5px;
|
13030 |
-
cursor: pointer;
|
13031 |
-
}
|
13032 |
-
|
13033 |
-
.sweet-alert button:focus {
|
13034 |
-
outline: none;
|
13035 |
-
box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
|
13036 |
-
}
|
13037 |
-
|
13038 |
-
.sweet-alert button:hover {
|
13039 |
-
background-color: #7ecff4;
|
13040 |
-
}
|
13041 |
-
|
13042 |
-
.sweet-alert button:active {
|
13043 |
-
background-color: #5dc2f1;
|
13044 |
-
}
|
13045 |
-
|
13046 |
-
.sweet-alert button.cancel {
|
13047 |
-
background-color: #C1C1C1;
|
13048 |
-
}
|
13049 |
-
|
13050 |
-
.sweet-alert button.cancel:hover {
|
13051 |
-
background-color: #b9b9b9;
|
13052 |
-
}
|
13053 |
-
|
13054 |
-
.sweet-alert button.cancel:active {
|
13055 |
-
background-color: #a8a8a8;
|
13056 |
-
}
|
13057 |
-
|
13058 |
-
.sweet-alert button.cancel:focus {
|
13059 |
-
box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.0470588) 0px 0px 0px 1px inset !important;
|
13060 |
-
}
|
13061 |
-
|
13062 |
-
.sweet-alert button[disabled] {
|
13063 |
-
opacity: 0.6;
|
13064 |
-
cursor: default;
|
13065 |
-
}
|
13066 |
-
|
13067 |
-
.sweet-alert button.confirm[disabled] {
|
13068 |
-
color: transparent;
|
13069 |
-
}
|
13070 |
-
|
13071 |
-
.sweet-alert button.confirm[disabled] ~ .la-ball-fall {
|
13072 |
-
opacity: 1;
|
13073 |
-
visibility: visible;
|
13074 |
-
transition-delay: 0s;
|
13075 |
-
}
|
13076 |
-
|
13077 |
-
.sweet-alert button::-moz-focus-inner {
|
13078 |
-
border: 0;
|
13079 |
-
}
|
13080 |
-
|
13081 |
-
.sweet-alert[data-has-cancel-button=false] button {
|
13082 |
-
box-shadow: none !important;
|
13083 |
-
}
|
13084 |
-
|
13085 |
-
.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
|
13086 |
-
padding-bottom: 40px;
|
13087 |
-
}
|
13088 |
-
|
13089 |
-
.sweet-alert .sa-icon {
|
13090 |
-
width: 80px;
|
13091 |
-
height: 80px;
|
13092 |
-
border: 4px solid gray;
|
13093 |
-
-webkit-border-radius: 40px;
|
13094 |
-
border-radius: 40px;
|
13095 |
-
border-radius: 50%;
|
13096 |
-
margin: 20px auto;
|
13097 |
-
padding: 0;
|
13098 |
-
position: relative;
|
13099 |
-
box-sizing: content-box;
|
13100 |
-
}
|
13101 |
-
|
13102 |
-
.sweet-alert .sa-icon.sa-error {
|
13103 |
-
border-color: #F27474;
|
13104 |
-
}
|
13105 |
-
|
13106 |
-
.sweet-alert .sa-icon.sa-error .sa-x-mark {
|
13107 |
-
position: relative;
|
13108 |
-
display: block;
|
13109 |
-
}
|
13110 |
-
|
13111 |
-
.sweet-alert .sa-icon.sa-error .sa-line {
|
13112 |
-
position: absolute;
|
13113 |
-
height: 5px;
|
13114 |
-
width: 47px;
|
13115 |
-
background-color: #F27474;
|
13116 |
-
display: block;
|
13117 |
-
top: 37px;
|
13118 |
-
border-radius: 2px;
|
13119 |
-
}
|
13120 |
-
|
13121 |
-
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
|
13122 |
-
-webkit-transform: rotate(45deg);
|
13123 |
-
transform: rotate(45deg);
|
13124 |
-
left: 17px;
|
13125 |
-
}
|
13126 |
-
|
13127 |
-
.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
|
13128 |
-
-webkit-transform: rotate(-45deg);
|
13129 |
-
transform: rotate(-45deg);
|
13130 |
-
right: 16px;
|
13131 |
-
}
|
13132 |
-
|
13133 |
-
.sweet-alert .sa-icon.sa-warning {
|
13134 |
-
border-color: #F8BB86;
|
13135 |
-
}
|
13136 |
-
|
13137 |
-
.sweet-alert .sa-icon.sa-warning .sa-body {
|
13138 |
-
position: absolute;
|
13139 |
-
width: 5px;
|
13140 |
-
height: 47px;
|
13141 |
-
left: 50%;
|
13142 |
-
top: 10px;
|
13143 |
-
-webkit-border-radius: 2px;
|
13144 |
-
border-radius: 2px;
|
13145 |
-
margin-left: -2px;
|
13146 |
-
background-color: #F8BB86;
|
13147 |
-
}
|
13148 |
-
|
13149 |
-
.sweet-alert .sa-icon.sa-warning .sa-dot {
|
13150 |
-
position: absolute;
|
13151 |
-
width: 7px;
|
13152 |
-
height: 7px;
|
13153 |
-
-webkit-border-radius: 50%;
|
13154 |
-
border-radius: 50%;
|
13155 |
-
margin-left: -3px;
|
13156 |
-
left: 50%;
|
13157 |
-
bottom: 10px;
|
13158 |
-
background-color: #F8BB86;
|
13159 |
-
}
|
13160 |
-
|
13161 |
-
.sweet-alert .sa-icon.sa-info {
|
13162 |
-
border-color: #C9DAE1;
|
13163 |
-
}
|
13164 |
-
|
13165 |
-
.sweet-alert .sa-icon.sa-info::before {
|
13166 |
-
content: "";
|
13167 |
-
position: absolute;
|
13168 |
-
width: 5px;
|
13169 |
-
height: 29px;
|
13170 |
-
left: 50%;
|
13171 |
-
bottom: 17px;
|
13172 |
-
border-radius: 2px;
|
13173 |
-
margin-left: -2px;
|
13174 |
-
background-color: #C9DAE1;
|
13175 |
-
}
|
13176 |
-
|
13177 |
-
.sweet-alert .sa-icon.sa-info::after {
|
13178 |
-
content: "";
|
13179 |
-
position: absolute;
|
13180 |
-
width: 7px;
|
13181 |
-
height: 7px;
|
13182 |
-
border-radius: 50%;
|
13183 |
-
margin-left: -3px;
|
13184 |
-
top: 19px;
|
13185 |
-
background-color: #C9DAE1;
|
13186 |
-
}
|
13187 |
-
|
13188 |
-
.sweet-alert .sa-icon.sa-success {
|
13189 |
-
border-color: #A5DC86;
|
13190 |
-
}
|
13191 |
-
|
13192 |
-
.sweet-alert .sa-icon.sa-success::before, .sweet-alert .sa-icon.sa-success::after {
|
13193 |
-
content: "";
|
13194 |
-
-webkit-border-radius: 40px;
|
13195 |
-
border-radius: 40px;
|
13196 |
-
border-radius: 50%;
|
13197 |
-
position: absolute;
|
13198 |
-
width: 60px;
|
13199 |
-
height: 120px;
|
13200 |
-
background: white;
|
13201 |
-
-webkit-transform: rotate(45deg);
|
13202 |
-
transform: rotate(45deg);
|
13203 |
-
}
|
13204 |
-
|
13205 |
-
.sweet-alert .sa-icon.sa-success::before {
|
13206 |
-
-webkit-border-radius: 120px 0 0 120px;
|
13207 |
-
border-radius: 120px 0 0 120px;
|
13208 |
-
top: -7px;
|
13209 |
-
left: -33px;
|
13210 |
-
-webkit-transform: rotate(-45deg);
|
13211 |
-
transform: rotate(-45deg);
|
13212 |
-
-webkit-transform-origin: 60px 60px;
|
13213 |
-
transform-origin: 60px 60px;
|
13214 |
-
}
|
13215 |
-
|
13216 |
-
.sweet-alert .sa-icon.sa-success::after {
|
13217 |
-
-webkit-border-radius: 0 120px 120px 0;
|
13218 |
-
border-radius: 0 120px 120px 0;
|
13219 |
-
top: -11px;
|
13220 |
-
left: 30px;
|
13221 |
-
-webkit-transform: rotate(-45deg);
|
13222 |
-
transform: rotate(-45deg);
|
13223 |
-
-webkit-transform-origin: 0px 60px;
|
13224 |
-
transform-origin: 0px 60px;
|
13225 |
-
}
|
13226 |
-
|
13227 |
-
.sweet-alert .sa-icon.sa-success .sa-placeholder {
|
13228 |
-
width: 80px;
|
13229 |
-
height: 80px;
|
13230 |
-
border: 4px solid rgba(165, 220, 134, 0.2);
|
13231 |
-
-webkit-border-radius: 40px;
|
13232 |
-
border-radius: 40px;
|
13233 |
-
border-radius: 50%;
|
13234 |
-
box-sizing: content-box;
|
13235 |
-
position: absolute;
|
13236 |
-
left: -4px;
|
13237 |
-
top: -4px;
|
13238 |
-
z-index: 2;
|
13239 |
-
}
|
13240 |
-
|
13241 |
-
.sweet-alert .sa-icon.sa-success .sa-fix {
|
13242 |
-
width: 5px;
|
13243 |
-
height: 90px;
|
13244 |
-
background-color: white;
|
13245 |
-
position: absolute;
|
13246 |
-
left: 28px;
|
13247 |
-
top: 8px;
|
13248 |
-
z-index: 1;
|
13249 |
-
-webkit-transform: rotate(-45deg);
|
13250 |
-
transform: rotate(-45deg);
|
13251 |
-
}
|
13252 |
-
|
13253 |
-
.sweet-alert .sa-icon.sa-success .sa-line {
|
13254 |
-
height: 5px;
|
13255 |
-
background-color: #A5DC86;
|
13256 |
-
display: block;
|
13257 |
-
border-radius: 2px;
|
13258 |
-
position: absolute;
|
13259 |
-
z-index: 2;
|
13260 |
-
}
|
13261 |
-
|
13262 |
-
.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
|
13263 |
-
width: 25px;
|
13264 |
-
left: 14px;
|
13265 |
-
top: 46px;
|
13266 |
-
-webkit-transform: rotate(45deg);
|
13267 |
-
transform: rotate(45deg);
|
13268 |
-
}
|
13269 |
-
|
13270 |
-
.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
|
13271 |
-
width: 47px;
|
13272 |
-
right: 8px;
|
13273 |
-
top: 38px;
|
13274 |
-
-webkit-transform: rotate(-45deg);
|
13275 |
-
transform: rotate(-45deg);
|
13276 |
-
}
|
13277 |
-
|
13278 |
-
.sweet-alert .sa-icon.sa-custom {
|
13279 |
-
background-size: contain;
|
13280 |
-
border-radius: 0;
|
13281 |
-
border: none;
|
13282 |
-
background-position: center center;
|
13283 |
-
background-repeat: no-repeat;
|
13284 |
-
}
|
13285 |
-
|
13286 |
-
/*
|
13287 |
-
* Animations
|
13288 |
-
*/
|
13289 |
-
@-webkit-keyframes showSweetAlert {
|
13290 |
-
0% {
|
13291 |
-
transform: scale(0.7);
|
13292 |
-
-webkit-transform: scale(0.7);
|
13293 |
-
}
|
13294 |
-
45% {
|
13295 |
-
transform: scale(1.05);
|
13296 |
-
-webkit-transform: scale(1.05);
|
13297 |
-
}
|
13298 |
-
80% {
|
13299 |
-
transform: scale(0.95);
|
13300 |
-
-webkit-transform: scale(0.95);
|
13301 |
-
}
|
13302 |
-
100% {
|
13303 |
-
transform: scale(1);
|
13304 |
-
-webkit-transform: scale(1);
|
13305 |
-
}
|
13306 |
-
}
|
13307 |
-
@keyframes showSweetAlert {
|
13308 |
-
0% {
|
13309 |
-
transform: scale(0.7);
|
13310 |
-
-webkit-transform: scale(0.7);
|
13311 |
-
}
|
13312 |
-
45% {
|
13313 |
-
transform: scale(1.05);
|
13314 |
-
-webkit-transform: scale(1.05);
|
13315 |
-
}
|
13316 |
-
80% {
|
13317 |
-
transform: scale(0.95);
|
13318 |
-
-webkit-transform: scale(0.95);
|
13319 |
-
}
|
13320 |
-
100% {
|
13321 |
-
transform: scale(1);
|
13322 |
-
-webkit-transform: scale(1);
|
13323 |
-
}
|
13324 |
-
}
|
13325 |
-
@-webkit-keyframes hideSweetAlert {
|
13326 |
-
0% {
|
13327 |
-
transform: scale(1);
|
13328 |
-
-webkit-transform: scale(1);
|
13329 |
-
}
|
13330 |
-
100% {
|
13331 |
-
transform: scale(0.5);
|
13332 |
-
-webkit-transform: scale(0.5);
|
13333 |
-
}
|
13334 |
-
}
|
13335 |
-
@keyframes hideSweetAlert {
|
13336 |
-
0% {
|
13337 |
-
transform: scale(1);
|
13338 |
-
-webkit-transform: scale(1);
|
13339 |
-
}
|
13340 |
-
100% {
|
13341 |
-
transform: scale(0.5);
|
13342 |
-
-webkit-transform: scale(0.5);
|
13343 |
-
}
|
13344 |
-
}
|
13345 |
-
@-webkit-keyframes slideFromTop {
|
13346 |
-
0% {
|
13347 |
-
top: 0%;
|
13348 |
-
}
|
13349 |
-
100% {
|
13350 |
-
top: 50%;
|
13351 |
-
}
|
13352 |
-
}
|
13353 |
-
@keyframes slideFromTop {
|
13354 |
-
0% {
|
13355 |
-
top: 0%;
|
13356 |
-
}
|
13357 |
-
100% {
|
13358 |
-
top: 50%;
|
13359 |
-
}
|
13360 |
-
}
|
13361 |
-
@-webkit-keyframes slideToTop {
|
13362 |
-
0% {
|
13363 |
-
top: 50%;
|
13364 |
-
}
|
13365 |
-
100% {
|
13366 |
-
top: 0%;
|
13367 |
-
}
|
13368 |
-
}
|
13369 |
-
@keyframes slideToTop {
|
13370 |
-
0% {
|
13371 |
-
top: 50%;
|
13372 |
-
}
|
13373 |
-
100% {
|
13374 |
-
top: 0%;
|
13375 |
-
}
|
13376 |
-
}
|
13377 |
-
@-webkit-keyframes slideFromBottom {
|
13378 |
-
0% {
|
13379 |
-
top: 70%;
|
13380 |
-
}
|
13381 |
-
100% {
|
13382 |
-
top: 50%;
|
13383 |
-
}
|
13384 |
-
}
|
13385 |
-
@keyframes slideFromBottom {
|
13386 |
-
0% {
|
13387 |
-
top: 70%;
|
13388 |
-
}
|
13389 |
-
100% {
|
13390 |
-
top: 50%;
|
13391 |
-
}
|
13392 |
-
}
|
13393 |
-
@-webkit-keyframes slideToBottom {
|
13394 |
-
0% {
|
13395 |
-
top: 50%;
|
13396 |
-
}
|
13397 |
-
100% {
|
13398 |
-
top: 70%;
|
13399 |
-
}
|
13400 |
-
}
|
13401 |
-
@keyframes slideToBottom {
|
13402 |
-
0% {
|
13403 |
-
top: 50%;
|
13404 |
-
}
|
13405 |
-
100% {
|
13406 |
-
top: 70%;
|
13407 |
-
}
|
13408 |
-
}
|
13409 |
-
.showSweetAlert[data-animation=pop] {
|
13410 |
-
-webkit-animation: showSweetAlert 0.3s;
|
13411 |
-
animation: showSweetAlert 0.3s;
|
13412 |
-
}
|
13413 |
-
|
13414 |
-
.showSweetAlert[data-animation=none] {
|
13415 |
-
-webkit-animation: none;
|
13416 |
-
animation: none;
|
13417 |
-
}
|
13418 |
-
|
13419 |
-
.showSweetAlert[data-animation=slide-from-top] {
|
13420 |
-
-webkit-animation: slideFromTop 0.3s;
|
13421 |
-
animation: slideFromTop 0.3s;
|
13422 |
-
}
|
13423 |
-
|
13424 |
-
.showSweetAlert[data-animation=slide-from-bottom] {
|
13425 |
-
-webkit-animation: slideFromBottom 0.3s;
|
13426 |
-
animation: slideFromBottom 0.3s;
|
13427 |
-
}
|
13428 |
-
|
13429 |
-
.hideSweetAlert[data-animation=pop] {
|
13430 |
-
-webkit-animation: hideSweetAlert 0.2s;
|
13431 |
-
animation: hideSweetAlert 0.2s;
|
13432 |
-
}
|
13433 |
-
|
13434 |
-
.hideSweetAlert[data-animation=none] {
|
13435 |
-
-webkit-animation: none;
|
13436 |
-
animation: none;
|
13437 |
-
}
|
13438 |
-
|
13439 |
-
.hideSweetAlert[data-animation=slide-from-top] {
|
13440 |
-
-webkit-animation: slideToTop 0.4s;
|
13441 |
-
animation: slideToTop 0.4s;
|
13442 |
-
}
|
13443 |
-
|
13444 |
-
.hideSweetAlert[data-animation=slide-from-bottom] {
|
13445 |
-
-webkit-animation: slideToBottom 0.3s;
|
13446 |
-
animation: slideToBottom 0.3s;
|
13447 |
-
}
|
13448 |
-
|
13449 |
-
@-webkit-keyframes animateSuccessTip {
|
13450 |
-
0% {
|
13451 |
-
width: 0;
|
13452 |
-
left: 1px;
|
13453 |
-
top: 19px;
|
13454 |
-
}
|
13455 |
-
54% {
|
13456 |
-
width: 0;
|
13457 |
-
left: 1px;
|
13458 |
-
top: 19px;
|
13459 |
-
}
|
13460 |
-
70% {
|
13461 |
-
width: 50px;
|
13462 |
-
left: -8px;
|
13463 |
-
top: 37px;
|
13464 |
-
}
|
13465 |
-
84% {
|
13466 |
-
width: 17px;
|
13467 |
-
left: 21px;
|
13468 |
-
top: 48px;
|
13469 |
-
}
|
13470 |
-
100% {
|
13471 |
-
width: 25px;
|
13472 |
-
left: 14px;
|
13473 |
-
top: 45px;
|
13474 |
-
}
|
13475 |
-
}
|
13476 |
-
@keyframes animateSuccessTip {
|
13477 |
-
0% {
|
13478 |
-
width: 0;
|
13479 |
-
left: 1px;
|
13480 |
-
top: 19px;
|
13481 |
-
}
|
13482 |
-
54% {
|
13483 |
-
width: 0;
|
13484 |
-
left: 1px;
|
13485 |
-
top: 19px;
|
13486 |
-
}
|
13487 |
-
70% {
|
13488 |
-
width: 50px;
|
13489 |
-
left: -8px;
|
13490 |
-
top: 37px;
|
13491 |
-
}
|
13492 |
-
84% {
|
13493 |
-
width: 17px;
|
13494 |
-
left: 21px;
|
13495 |
-
top: 48px;
|
13496 |
-
}
|
13497 |
-
100% {
|
13498 |
-
width: 25px;
|
13499 |
-
left: 14px;
|
13500 |
-
top: 45px;
|
13501 |
-
}
|
13502 |
-
}
|
13503 |
-
@-webkit-keyframes animateSuccessLong {
|
13504 |
-
0% {
|
13505 |
-
width: 0;
|
13506 |
-
right: 46px;
|
13507 |
-
top: 54px;
|
13508 |
-
}
|
13509 |
-
65% {
|
13510 |
-
width: 0;
|
13511 |
-
right: 46px;
|
13512 |
-
top: 54px;
|
13513 |
-
}
|
13514 |
-
84% {
|
13515 |
-
width: 55px;
|
13516 |
-
right: 0px;
|
13517 |
-
top: 35px;
|
13518 |
-
}
|
13519 |
-
100% {
|
13520 |
-
width: 47px;
|
13521 |
-
right: 8px;
|
13522 |
-
top: 38px;
|
13523 |
-
}
|
13524 |
-
}
|
13525 |
-
@keyframes animateSuccessLong {
|
13526 |
-
0% {
|
13527 |
-
width: 0;
|
13528 |
-
right: 46px;
|
13529 |
-
top: 54px;
|
13530 |
-
}
|
13531 |
-
65% {
|
13532 |
-
width: 0;
|
13533 |
-
right: 46px;
|
13534 |
-
top: 54px;
|
13535 |
-
}
|
13536 |
-
84% {
|
13537 |
-
width: 55px;
|
13538 |
-
right: 0px;
|
13539 |
-
top: 35px;
|
13540 |
-
}
|
13541 |
-
100% {
|
13542 |
-
width: 47px;
|
13543 |
-
right: 8px;
|
13544 |
-
top: 38px;
|
13545 |
-
}
|
13546 |
-
}
|
13547 |
-
@-webkit-keyframes rotatePlaceholder {
|
13548 |
-
0% {
|
13549 |
-
transform: rotate(-45deg);
|
13550 |
-
-webkit-transform: rotate(-45deg);
|
13551 |
-
}
|
13552 |
-
5% {
|
13553 |
-
transform: rotate(-45deg);
|
13554 |
-
-webkit-transform: rotate(-45deg);
|
13555 |
-
}
|
13556 |
-
12% {
|
13557 |
-
transform: rotate(-405deg);
|
13558 |
-
-webkit-transform: rotate(-405deg);
|
13559 |
-
}
|
13560 |
-
100% {
|
13561 |
-
transform: rotate(-405deg);
|
13562 |
-
-webkit-transform: rotate(-405deg);
|
13563 |
-
}
|
13564 |
-
}
|
13565 |
-
@keyframes rotatePlaceholder {
|
13566 |
-
0% {
|
13567 |
-
transform: rotate(-45deg);
|
13568 |
-
-webkit-transform: rotate(-45deg);
|
13569 |
-
}
|
13570 |
-
5% {
|
13571 |
-
transform: rotate(-45deg);
|
13572 |
-
-webkit-transform: rotate(-45deg);
|
13573 |
-
}
|
13574 |
-
12% {
|
13575 |
-
transform: rotate(-405deg);
|
13576 |
-
-webkit-transform: rotate(-405deg);
|
13577 |
-
}
|
13578 |
-
100% {
|
13579 |
-
transform: rotate(-405deg);
|
13580 |
-
-webkit-transform: rotate(-405deg);
|
13581 |
-
}
|
13582 |
-
}
|
13583 |
-
.animateSuccessTip {
|
13584 |
-
-webkit-animation: animateSuccessTip 0.75s;
|
13585 |
-
animation: animateSuccessTip 0.75s;
|
13586 |
-
}
|
13587 |
-
|
13588 |
-
.animateSuccessLong {
|
13589 |
-
-webkit-animation: animateSuccessLong 0.75s;
|
13590 |
-
animation: animateSuccessLong 0.75s;
|
13591 |
-
}
|
13592 |
-
|
13593 |
-
.sa-icon.sa-success.animate::after {
|
13594 |
-
-webkit-animation: rotatePlaceholder 4.25s ease-in;
|
13595 |
-
animation: rotatePlaceholder 4.25s ease-in;
|
13596 |
-
}
|
13597 |
-
|
13598 |
-
@-webkit-keyframes animateErrorIcon {
|
13599 |
-
0% {
|
13600 |
-
transform: rotateX(100deg);
|
13601 |
-
-webkit-transform: rotateX(100deg);
|
13602 |
-
opacity: 0;
|
13603 |
-
}
|
13604 |
-
100% {
|
13605 |
-
transform: rotateX(0deg);
|
13606 |
-
-webkit-transform: rotateX(0deg);
|
13607 |
-
opacity: 1;
|
13608 |
-
}
|
13609 |
-
}
|
13610 |
-
@keyframes animateErrorIcon {
|
13611 |
-
0% {
|
13612 |
-
transform: rotateX(100deg);
|
13613 |
-
-webkit-transform: rotateX(100deg);
|
13614 |
-
opacity: 0;
|
13615 |
-
}
|
13616 |
-
100% {
|
13617 |
-
transform: rotateX(0deg);
|
13618 |
-
-webkit-transform: rotateX(0deg);
|
13619 |
-
opacity: 1;
|
13620 |
-
}
|
13621 |
-
}
|
13622 |
-
.animateErrorIcon {
|
13623 |
-
-webkit-animation: animateErrorIcon 0.5s;
|
13624 |
-
animation: animateErrorIcon 0.5s;
|
13625 |
-
}
|
13626 |
-
|
13627 |
-
@-webkit-keyframes animateXMark {
|
13628 |
-
0% {
|
13629 |
-
transform: scale(0.4);
|
13630 |
-
-webkit-transform: scale(0.4);
|
13631 |
-
margin-top: 26px;
|
13632 |
-
opacity: 0;
|
13633 |
-
}
|
13634 |
-
50% {
|
13635 |
-
transform: scale(0.4);
|
13636 |
-
-webkit-transform: scale(0.4);
|
13637 |
-
margin-top: 26px;
|
13638 |
-
opacity: 0;
|
13639 |
-
}
|
13640 |
-
80% {
|
13641 |
-
transform: scale(1.15);
|
13642 |
-
-webkit-transform: scale(1.15);
|
13643 |
-
margin-top: -6px;
|
13644 |
-
}
|
13645 |
-
100% {
|
13646 |
-
transform: scale(1);
|
13647 |
-
-webkit-transform: scale(1);
|
13648 |
-
margin-top: 0;
|
13649 |
-
opacity: 1;
|
13650 |
-
}
|
13651 |
-
}
|
13652 |
-
@keyframes animateXMark {
|
13653 |
-
0% {
|
13654 |
-
transform: scale(0.4);
|
13655 |
-
-webkit-transform: scale(0.4);
|
13656 |
-
margin-top: 26px;
|
13657 |
-
opacity: 0;
|
13658 |
-
}
|
13659 |
-
50% {
|
13660 |
-
transform: scale(0.4);
|
13661 |
-
-webkit-transform: scale(0.4);
|
13662 |
-
margin-top: 26px;
|
13663 |
-
opacity: 0;
|
13664 |
-
}
|
13665 |
-
80% {
|
13666 |
-
transform: scale(1.15);
|
13667 |
-
-webkit-transform: scale(1.15);
|
13668 |
-
margin-top: -6px;
|
13669 |
-
}
|
13670 |
-
100% {
|
13671 |
-
transform: scale(1);
|
13672 |
-
-webkit-transform: scale(1);
|
13673 |
-
margin-top: 0;
|
13674 |
-
opacity: 1;
|
13675 |
-
}
|
13676 |
-
}
|
13677 |
-
.animateXMark {
|
13678 |
-
-webkit-animation: animateXMark 0.5s;
|
13679 |
-
animation: animateXMark 0.5s;
|
13680 |
-
}
|
13681 |
-
|
13682 |
-
@-webkit-keyframes pulseWarning {
|
13683 |
-
0% {
|
13684 |
-
border-color: #F8D486;
|
13685 |
-
}
|
13686 |
-
100% {
|
13687 |
-
border-color: #F8BB86;
|
13688 |
-
}
|
13689 |
-
}
|
13690 |
-
@keyframes pulseWarning {
|
13691 |
-
0% {
|
13692 |
-
border-color: #F8D486;
|
13693 |
-
}
|
13694 |
-
100% {
|
13695 |
-
border-color: #F8BB86;
|
13696 |
-
}
|
13697 |
-
}
|
13698 |
-
.pulseWarning {
|
13699 |
-
-webkit-animation: pulseWarning 0.75s infinite alternate;
|
13700 |
-
animation: pulseWarning 0.75s infinite alternate;
|
13701 |
-
}
|
13702 |
-
|
13703 |
-
@-webkit-keyframes pulseWarningIns {
|
13704 |
-
0% {
|
13705 |
-
background-color: #F8D486;
|
13706 |
-
}
|
13707 |
-
100% {
|
13708 |
-
background-color: #F8BB86;
|
13709 |
-
}
|
13710 |
-
}
|
13711 |
-
@keyframes pulseWarningIns {
|
13712 |
-
0% {
|
13713 |
-
background-color: #F8D486;
|
13714 |
-
}
|
13715 |
-
100% {
|
13716 |
-
background-color: #F8BB86;
|
13717 |
-
}
|
13718 |
-
}
|
13719 |
-
.pulseWarningIns {
|
13720 |
-
-webkit-animation: pulseWarningIns 0.75s infinite alternate;
|
13721 |
-
animation: pulseWarningIns 0.75s infinite alternate;
|
13722 |
-
}
|
13723 |
-
|
13724 |
-
@-webkit-keyframes rotate-loading {
|
13725 |
-
0% {
|
13726 |
-
transform: rotate(0deg);
|
13727 |
-
}
|
13728 |
-
100% {
|
13729 |
-
transform: rotate(360deg);
|
13730 |
-
}
|
13731 |
-
}
|
13732 |
-
@keyframes rotate-loading {
|
13733 |
-
0% {
|
13734 |
-
transform: rotate(0deg);
|
13735 |
-
}
|
13736 |
-
100% {
|
13737 |
-
transform: rotate(360deg);
|
13738 |
-
}
|
13739 |
-
}
|
13740 |
-
/* Internet Explorer 9 has some special quirks that are fixed here */
|
13741 |
-
/* The icons are not animated. */
|
13742 |
-
/* This file is automatically merged into sweet-alert.min.js through Gulp */
|
13743 |
-
/* Error icon */
|
13744 |
-
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
|
13745 |
-
-ms-transform: rotate(45deg) \9 ;
|
13746 |
-
}
|
13747 |
-
|
13748 |
-
.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
|
13749 |
-
-ms-transform: rotate(-45deg) \9 ;
|
13750 |
-
}
|
13751 |
-
|
13752 |
-
/* Success icon */
|
13753 |
-
.sweet-alert .sa-icon.sa-success {
|
13754 |
-
border-color: transparent\9 ;
|
13755 |
-
}
|
13756 |
-
|
13757 |
-
.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
|
13758 |
-
-ms-transform: rotate(45deg) \9 ;
|
13759 |
-
}
|
13760 |
-
|
13761 |
-
.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
|
13762 |
-
-ms-transform: rotate(-45deg) \9 ;
|
13763 |
-
}
|
13764 |
-
|
13765 |
-
/*!
|
13766 |
* Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
|
13767 |
* Copyright 2015 Daniel Cardoso <@DanielCardoso>
|
13768 |
* Licensed under MIT
|
13769 |
-
*/
|
13770 |
-
.la-ball-fall,
|
13771 |
-
.la-ball-fall > div {
|
13772 |
-
position: relative;
|
13773 |
-
-webkit-box-sizing: border-box;
|
13774 |
-
-moz-box-sizing: border-box;
|
13775 |
-
box-sizing: border-box;
|
13776 |
-
}
|
13777 |
-
|
13778 |
-
.la-ball-fall {
|
13779 |
-
display: block;
|
13780 |
-
font-size: 0;
|
13781 |
-
color: #fff;
|
13782 |
-
}
|
13783 |
-
|
13784 |
-
.la-ball-fall.la-dark {
|
13785 |
-
color: #333;
|
13786 |
-
}
|
13787 |
-
|
13788 |
-
.la-ball-fall > div {
|
13789 |
-
display: inline-block;
|
13790 |
-
float: none;
|
13791 |
-
background-color: currentColor;
|
13792 |
-
border: 0 solid currentColor;
|
13793 |
-
}
|
13794 |
-
|
13795 |
-
.la-ball-fall {
|
13796 |
-
width: 54px;
|
13797 |
-
height: 18px;
|
13798 |
-
}
|
13799 |
-
|
13800 |
-
.la-ball-fall > div {
|
13801 |
-
width: 10px;
|
13802 |
-
height: 10px;
|
13803 |
-
margin: 4px;
|
13804 |
-
border-radius: 100%;
|
13805 |
-
opacity: 0;
|
13806 |
-
-webkit-animation: ball-fall 1s ease-in-out infinite;
|
13807 |
-
-moz-animation: ball-fall 1s ease-in-out infinite;
|
13808 |
-
-o-animation: ball-fall 1s ease-in-out infinite;
|
13809 |
-
animation: ball-fall 1s ease-in-out infinite;
|
13810 |
-
}
|
13811 |
-
|
13812 |
-
.la-ball-fall > div:nth-child(1) {
|
13813 |
-
-webkit-animation-delay: -200ms;
|
13814 |
-
-moz-animation-delay: -200ms;
|
13815 |
-
-o-animation-delay: -200ms;
|
13816 |
-
animation-delay: -200ms;
|
13817 |
-
}
|
13818 |
-
|
13819 |
-
.la-ball-fall > div:nth-child(2) {
|
13820 |
-
-webkit-animation-delay: -100ms;
|
13821 |
-
-moz-animation-delay: -100ms;
|
13822 |
-
-o-animation-delay: -100ms;
|
13823 |
-
animation-delay: -100ms;
|
13824 |
-
}
|
13825 |
-
|
13826 |
-
.la-ball-fall > div:nth-child(3) {
|
13827 |
-
-webkit-animation-delay: 0ms;
|
13828 |
-
-moz-animation-delay: 0ms;
|
13829 |
-
-o-animation-delay: 0ms;
|
13830 |
-
animation-delay: 0ms;
|
13831 |
-
}
|
13832 |
-
|
13833 |
-
.la-ball-fall.la-sm {
|
13834 |
-
width: 26px;
|
13835 |
-
height: 8px;
|
13836 |
-
}
|
13837 |
-
|
13838 |
-
.la-ball-fall.la-sm > div {
|
13839 |
-
width: 4px;
|
13840 |
-
height: 4px;
|
13841 |
-
margin: 2px;
|
13842 |
-
}
|
13843 |
-
|
13844 |
-
.la-ball-fall.la-2x {
|
13845 |
-
width: 108px;
|
13846 |
-
height: 36px;
|
13847 |
-
}
|
13848 |
-
|
13849 |
-
.la-ball-fall.la-2x > div {
|
13850 |
-
width: 20px;
|
13851 |
-
height: 20px;
|
13852 |
-
margin: 8px;
|
13853 |
-
}
|
13854 |
-
|
13855 |
-
.la-ball-fall.la-3x {
|
13856 |
-
width: 162px;
|
13857 |
-
height: 54px;
|
13858 |
-
}
|
13859 |
-
|
13860 |
-
.la-ball-fall.la-3x > div {
|
13861 |
-
width: 30px;
|
13862 |
-
height: 30px;
|
13863 |
-
margin: 12px;
|
13864 |
-
}
|
13865 |
-
|
13866 |
-
/*
|
13867 |
-
* Animation
|
13868 |
-
*/
|
13869 |
-
@-webkit-keyframes ball-fall {
|
13870 |
-
0% {
|
13871 |
-
opacity: 0;
|
13872 |
-
-webkit-transform: translateY(-145%);
|
13873 |
-
transform: translateY(-145%);
|
13874 |
-
}
|
13875 |
-
10% {
|
13876 |
-
opacity: 0.5;
|
13877 |
-
}
|
13878 |
-
20% {
|
13879 |
-
opacity: 1;
|
13880 |
-
-webkit-transform: translateY(0);
|
13881 |
-
transform: translateY(0);
|
13882 |
-
}
|
13883 |
-
80% {
|
13884 |
-
opacity: 1;
|
13885 |
-
-webkit-transform: translateY(0);
|
13886 |
-
transform: translateY(0);
|
13887 |
-
}
|
13888 |
-
90% {
|
13889 |
-
opacity: 0.5;
|
13890 |
-
}
|
13891 |
-
100% {
|
13892 |
-
opacity: 0;
|
13893 |
-
-webkit-transform: translateY(145%);
|
13894 |
-
transform: translateY(145%);
|
13895 |
-
}
|
13896 |
-
}
|
13897 |
-
@-moz-keyframes ball-fall {
|
13898 |
-
0% {
|
13899 |
-
opacity: 0;
|
13900 |
-
-moz-transform: translateY(-145%);
|
13901 |
-
transform: translateY(-145%);
|
13902 |
-
}
|
13903 |
-
10% {
|
13904 |
-
opacity: 0.5;
|
13905 |
-
}
|
13906 |
-
20% {
|
13907 |
-
opacity: 1;
|
13908 |
-
-moz-transform: translateY(0);
|
13909 |
-
transform: translateY(0);
|
13910 |
-
}
|
13911 |
-
80% {
|
13912 |
-
opacity: 1;
|
13913 |
-
-moz-transform: translateY(0);
|
13914 |
-
transform: translateY(0);
|
13915 |
-
}
|
13916 |
-
90% {
|
13917 |
-
opacity: 0.5;
|
13918 |
-
}
|
13919 |
-
100% {
|
13920 |
-
opacity: 0;
|
13921 |
-
-moz-transform: translateY(145%);
|
13922 |
-
transform: translateY(145%);
|
13923 |
-
}
|
13924 |
-
}
|
13925 |
-
@-o-keyframes ball-fall {
|
13926 |
-
0% {
|
13927 |
-
opacity: 0;
|
13928 |
-
-o-transform: translateY(-145%);
|
13929 |
-
transform: translateY(-145%);
|
13930 |
-
}
|
13931 |
-
10% {
|
13932 |
-
opacity: 0.5;
|
13933 |
-
}
|
13934 |
-
20% {
|
13935 |
-
opacity: 1;
|
13936 |
-
-o-transform: translateY(0);
|
13937 |
-
transform: translateY(0);
|
13938 |
-
}
|
13939 |
-
80% {
|
13940 |
-
opacity: 1;
|
13941 |
-
-o-transform: translateY(0);
|
13942 |
-
transform: translateY(0);
|
13943 |
-
}
|
13944 |
-
90% {
|
13945 |
-
opacity: 0.5;
|
13946 |
-
}
|
13947 |
-
100% {
|
13948 |
-
opacity: 0;
|
13949 |
-
-o-transform: translateY(145%);
|
13950 |
-
transform: translateY(145%);
|
13951 |
-
}
|
13952 |
-
}
|
13953 |
-
@keyframes ball-fall {
|
13954 |
-
0% {
|
13955 |
-
opacity: 0;
|
13956 |
-
-webkit-transform: translateY(-145%);
|
13957 |
-
-moz-transform: translateY(-145%);
|
13958 |
-
-o-transform: translateY(-145%);
|
13959 |
-
transform: translateY(-145%);
|
13960 |
-
}
|
13961 |
-
10% {
|
13962 |
-
opacity: 0.5;
|
13963 |
-
}
|
13964 |
-
20% {
|
13965 |
-
opacity: 1;
|
13966 |
-
-webkit-transform: translateY(0);
|
13967 |
-
-moz-transform: translateY(0);
|
13968 |
-
-o-transform: translateY(0);
|
13969 |
-
transform: translateY(0);
|
13970 |
-
}
|
13971 |
-
80% {
|
13972 |
-
opacity: 1;
|
13973 |
-
-webkit-transform: translateY(0);
|
13974 |
-
-moz-transform: translateY(0);
|
13975 |
-
-o-transform: translateY(0);
|
13976 |
-
transform: translateY(0);
|
13977 |
-
}
|
13978 |
-
90% {
|
13979 |
-
opacity: 0.5;
|
13980 |
-
}
|
13981 |
-
100% {
|
13982 |
-
opacity: 0;
|
13983 |
-
-webkit-transform: translateY(145%);
|
13984 |
-
-moz-transform: translateY(145%);
|
13985 |
-
-o-transform: translateY(145%);
|
13986 |
-
transform: translateY(145%);
|
13987 |
-
}
|
13988 |
-
}
|
13989 |
-
.bc-doc {
|
13990 |
-
font-family: "Roboto", sans-serif;
|
13991 |
-
font-weight: 300;
|
13992 |
-
}
|
13993 |
-
.bc-doc .bc-uk-card {
|
13994 |
-
margin-bottom: 20px;
|
13995 |
-
}
|
13996 |
-
.bc-doc .bc-doc-heading-1 {
|
13997 |
-
font-size: 38px;
|
13998 |
-
margin-top: 0;
|
13999 |
-
margin-bottom: 20px;
|
14000 |
-
line-height: 45.6px;
|
14001 |
-
border-bottom: 3px solid #ddd;
|
14002 |
-
}
|
14003 |
-
.bc-doc .bc-doc-heading-2 {
|
14004 |
-
font-size: 24px;
|
14005 |
-
margin: 20px 0;
|
14006 |
-
font-weight: 300;
|
14007 |
-
line-height: 33.6px;
|
14008 |
-
border-bottom: 2px solid #dde;
|
14009 |
-
}
|
14010 |
-
.bc-doc .bc-doc-heading-3 {
|
14011 |
-
font-size: 20px;
|
14012 |
-
line-height: 28.6px;
|
14013 |
-
margin: 20px 10px 5px;
|
14014 |
-
border-bottom: 1px solid #ddd;
|
14015 |
-
}
|
14016 |
-
.bc-doc .bc-doc-heading-3 + table, .bc-doc .bc-doc-heading-3 + div {
|
14017 |
-
margin-left: 10px;
|
14018 |
-
}
|
14019 |
-
.bc-doc .bc-doc-label {
|
14020 |
-
font-size: 1rem;
|
14021 |
-
line-height: 22.4px;
|
14022 |
-
margin: 20px 0 5px;
|
14023 |
-
}
|
14024 |
-
.bc-doc .bc-doc__image-picker-button {
|
14025 |
-
display: block;
|
14026 |
-
}
|
14027 |
-
|
14028 |
-
@font-face {
|
14029 |
-
font-family: "fontello2";
|
14030 |
-
src: url("font/fontello.eot?58687625");
|
14031 |
-
src: url("font/fontello.eot?58687625#iefix") format("embedded-opentype"), url("font/fontello.woff2?58687625") format("woff2"), url("font/fontello.woff?58687625") format("woff"), url("font/fontello.ttf?58687625") format("truetype"), url("font/fontello.svg?58687625#fontello2") format("svg");
|
14032 |
-
font-weight: normal;
|
14033 |
-
font-style: normal;
|
14034 |
-
}
|
14035 |
-
.bc-root, .bc-mnc {
|
14036 |
-
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
|
14037 |
-
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
|
14038 |
-
/*
|
14039 |
-
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
14040 |
-
@font-face {
|
14041 |
-
font-family: 'fontello';
|
14042 |
-
src: url('../font/fontello.svg?58687625#fontello') format('svg');
|
14043 |
-
}
|
14044 |
-
}
|
14045 |
-
*/
|
14046 |
-
/* '' */
|
14047 |
-
/* '' */
|
14048 |
-
/* '' */
|
14049 |
-
/* '' */
|
14050 |
-
/* '' */
|
14051 |
-
/* '' */
|
14052 |
-
/* '' */
|
14053 |
-
/* '' */
|
14054 |
-
/* '' */
|
14055 |
-
/* '' */
|
14056 |
-
/* '' */
|
14057 |
-
/* '' */
|
14058 |
-
/* '' */
|
14059 |
-
/* '' */
|
14060 |
-
/* '' */
|
14061 |
-
/* '' */
|
14062 |
-
/* '' */
|
14063 |
-
/* '' */
|
14064 |
-
/* '' */
|
14065 |
-
/* '' */
|
14066 |
-
/* '' */
|
14067 |
-
/* '' */
|
14068 |
-
/* '' */
|
14069 |
-
/* '' */
|
14070 |
-
/* '' */
|
14071 |
-
/* '' */
|
14072 |
-
/* '' */
|
14073 |
-
/* '' */
|
14074 |
-
/* '' */
|
14075 |
-
/* '' */
|
14076 |
-
/* '' */
|
14077 |
-
/* '' */
|
14078 |
-
/* '' */
|
14079 |
-
/* '' */
|
14080 |
-
/* '' */
|
14081 |
-
/* '' */
|
14082 |
-
/* '' */
|
14083 |
-
/* '' */
|
14084 |
-
/* '' */
|
14085 |
-
/* '' */
|
14086 |
-
/* '' */
|
14087 |
-
/* '' */
|
14088 |
-
/* '' */
|
14089 |
-
/* '' */
|
14090 |
-
/* '' */
|
14091 |
-
/* '' */
|
14092 |
-
/* '' */
|
14093 |
-
/* '' */
|
14094 |
-
/* '' */
|
14095 |
-
/* '' */
|
14096 |
-
/* '' */
|
14097 |
-
/* '' */
|
14098 |
-
/* '' */
|
14099 |
-
/* '' */
|
14100 |
-
/* '' */
|
14101 |
-
/* '' */
|
14102 |
-
/* '' */
|
14103 |
-
/* '' */
|
14104 |
-
/* '' */
|
14105 |
-
/* '' */
|
14106 |
-
/* '' */
|
14107 |
-
/* '' */
|
14108 |
-
/* '' */
|
14109 |
-
}
|
14110 |
-
.bc-root [class^=icon-]:before, .bc-root [class*=" icon-"]:before, .bc-mnc [class^=icon-]:before, .bc-mnc [class*=" icon-"]:before {
|
14111 |
-
font-family: "fontello2";
|
14112 |
-
font-style: normal;
|
14113 |
-
font-weight: normal;
|
14114 |
-
speak: none;
|
14115 |
-
display: inline-block;
|
14116 |
-
text-decoration: inherit;
|
14117 |
-
width: 1em;
|
14118 |
-
margin-right: 0.2em;
|
14119 |
-
text-align: center;
|
14120 |
-
/* opacity: .8; */
|
14121 |
-
/* For safety - reset parent styles, that can break glyph codes*/
|
14122 |
-
font-variant: normal;
|
14123 |
-
text-transform: none;
|
14124 |
-
/* fix buttons height, for twitter bootstrap */
|
14125 |
-
line-height: 1em;
|
14126 |
-
/* Animation center compensation - margins should be symmetric */
|
14127 |
-
/* remove if not needed */
|
14128 |
-
margin-left: 0.2em;
|
14129 |
-
/* you can be more comfortable with increased icons size */
|
14130 |
-
/* font-size: 120%; */
|
14131 |
-
/* Font smoothing. That was taken from TWBS */
|
14132 |
-
-webkit-font-smoothing: antialiased;
|
14133 |
-
-moz-osx-font-smoothing: grayscale;
|
14134 |
-
/* Uncomment for 3D effect */
|
14135 |
-
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
|
14136 |
-
}
|
14137 |
-
.bc-root .icon-cart-01:before, .bc-mnc .icon-cart-01:before {
|
14138 |
-
content: "";
|
14139 |
-
}
|
14140 |
-
.bc-root .icon-cart-02:before, .bc-mnc .icon-cart-02:before {
|
14141 |
-
content: "";
|
14142 |
-
}
|
14143 |
-
.bc-root .icon-cart-05:before, .bc-mnc .icon-cart-05:before {
|
14144 |
-
content: "";
|
14145 |
-
}
|
14146 |
-
.bc-root .icon-cart-08:before, .bc-mnc .icon-cart-08:before {
|
14147 |
-
content: "";
|
14148 |
-
}
|
14149 |
-
.bc-root .icon-cart-11:before, .bc-mnc .icon-cart-11:before {
|
14150 |
-
content: "";
|
14151 |
-
}
|
14152 |
-
.bc-root .icon-cart-03:before, .bc-mnc .icon-cart-03:before {
|
14153 |
-
content: "";
|
14154 |
-
}
|
14155 |
-
.bc-root .icon-cart-06:before, .bc-mnc .icon-cart-06:before {
|
14156 |
-
content: "";
|
14157 |
-
}
|
14158 |
-
.bc-root .icon-cart-09:before, .bc-mnc .icon-cart-09:before {
|
14159 |
-
content: "";
|
14160 |
-
}
|
14161 |
-
.bc-root .icon-cart-12:before, .bc-mnc .icon-cart-12:before {
|
14162 |
-
content: "";
|
14163 |
-
}
|
14164 |
-
.bc-root .icon-trash-01:before, .bc-mnc .icon-trash-01:before {
|
14165 |
-
content: "";
|
14166 |
-
}
|
14167 |
-
.bc-root .icon-edit-01:before, .bc-mnc .icon-edit-01:before {
|
14168 |
-
content: "";
|
14169 |
-
}
|
14170 |
-
.bc-root .icon-close-03:before, .bc-mnc .icon-close-03:before {
|
14171 |
-
content: "";
|
14172 |
-
}
|
14173 |
-
.bc-root .icon-close-06:before, .bc-mnc .icon-close-06:before {
|
14174 |
-
content: "";
|
14175 |
-
}
|
14176 |
-
.bc-root .icon-wallet:before, .bc-mnc .icon-wallet:before {
|
14177 |
-
content: "";
|
14178 |
-
}
|
14179 |
-
.bc-root .icon-close-01:before, .bc-mnc .icon-close-01:before {
|
14180 |
-
content: "";
|
14181 |
-
}
|
14182 |
-
.bc-root .icon-close-04:before, .bc-mnc .icon-close-04:before {
|
14183 |
-
content: "";
|
14184 |
-
}
|
14185 |
-
.bc-root .icon-close-05:before, .bc-mnc .icon-close-05:before {
|
14186 |
-
content: "";
|
14187 |
-
}
|
14188 |
-
.bc-root .icon-trash-03:before, .bc-mnc .icon-trash-03:before {
|
14189 |
-
content: "";
|
14190 |
-
}
|
14191 |
-
.bc-root .icon-help-01:before, .bc-mnc .icon-help-01:before {
|
14192 |
-
content: "";
|
14193 |
-
}
|
14194 |
-
.bc-root .icon-close-11:before, .bc-mnc .icon-close-11:before {
|
14195 |
-
content: "";
|
14196 |
-
}
|
14197 |
-
.bc-root .icon-close-12:before, .bc-mnc .icon-close-12:before {
|
14198 |
-
content: "";
|
14199 |
-
}
|
14200 |
-
.bc-root .icon-close-07:before, .bc-mnc .icon-close-07:before {
|
14201 |
-
content: "";
|
14202 |
-
}
|
14203 |
-
.bc-root .icon-close-08:before, .bc-mnc .icon-close-08:before {
|
14204 |
-
content: "";
|
14205 |
-
}
|
14206 |
-
.bc-root .icon-help-02:before, .bc-mnc .icon-help-02:before {
|
14207 |
-
content: "";
|
14208 |
-
}
|
14209 |
-
.bc-root .icon-save-01:before, .bc-mnc .icon-save-01:before {
|
14210 |
-
content: "";
|
14211 |
-
}
|
14212 |
-
.bc-root .icon-upload-cloud:before, .bc-mnc .icon-upload-cloud:before {
|
14213 |
-
content: "";
|
14214 |
-
}
|
14215 |
-
.bc-root .icon-up-02:before, .bc-mnc .icon-up-02:before {
|
14216 |
-
content: "";
|
14217 |
-
}
|
14218 |
-
.bc-root .icon-close-10:before, .bc-mnc .icon-close-10:before {
|
14219 |
-
content: "";
|
14220 |
-
}
|
14221 |
-
.bc-root .icon-close-09:before, .bc-mnc .icon-close-09:before {
|
14222 |
-
content: "";
|
14223 |
-
}
|
14224 |
-
.bc-root .icon-up-03:before, .bc-mnc .icon-up-03:before {
|
14225 |
-
content: "";
|
14226 |
-
}
|
14227 |
-
.bc-root .icon-down-02:before, .bc-mnc .icon-down-02:before {
|
14228 |
-
content: "";
|
14229 |
-
}
|
14230 |
-
.bc-root .icon-minus-03:before, .bc-mnc .icon-minus-03:before {
|
14231 |
-
content: "";
|
14232 |
-
}
|
14233 |
-
.bc-root .icon-minus-01:before, .bc-mnc .icon-minus-01:before {
|
14234 |
-
content: "";
|
14235 |
-
}
|
14236 |
-
.bc-root .icon-plus-04:before, .bc-mnc .icon-plus-04:before {
|
14237 |
-
content: "";
|
14238 |
-
}
|
14239 |
-
.bc-root .icon-plus-01:before, .bc-mnc .icon-plus-01:before {
|
14240 |
-
content: "";
|
14241 |
-
}
|
14242 |
-
.bc-root .icon-plus-02:before, .bc-mnc .icon-plus-02:before {
|
14243 |
-
content: "";
|
14244 |
-
}
|
14245 |
-
.bc-root .icon-plus-03:before, .bc-mnc .icon-plus-03:before {
|
14246 |
-
content: "";
|
14247 |
-
}
|
14248 |
-
.bc-root .icon-right-03:before, .bc-mnc .icon-right-03:before {
|
14249 |
-
content: "";
|
14250 |
-
}
|
14251 |
-
.bc-root .icon-right-01:before, .bc-mnc .icon-right-01:before {
|
14252 |
-
content: "";
|
14253 |
-
}
|
14254 |
-
.bc-root .icon-right-02:before, .bc-mnc .icon-right-02:before {
|
14255 |
-
content: "";
|
14256 |
-
}
|
14257 |
-
.bc-root .icon-left-02:before, .bc-mnc .icon-left-02:before {
|
14258 |
-
content: "";
|
14259 |
-
}
|
14260 |
-
.bc-root .icon-left-03:before, .bc-mnc .icon-left-03:before {
|
14261 |
-
content: "";
|
14262 |
-
}
|
14263 |
-
.bc-root .icon-left-01:before, .bc-mnc .icon-left-01:before {
|
14264 |
-
content: "";
|
14265 |
-
}
|
14266 |
-
.bc-root .icon-minus-02:before, .bc-mnc .icon-minus-02:before {
|
14267 |
-
content: "";
|
14268 |
-
}
|
14269 |
-
.bc-root .icon-loading-01:before, .bc-mnc .icon-loading-01:before {
|
14270 |
-
content: "";
|
14271 |
-
}
|
14272 |
-
.bc-root .icon-spin2:before, .bc-mnc .icon-spin2:before {
|
14273 |
-
content: "";
|
14274 |
-
}
|
14275 |
-
.bc-root .icon-icon-loading-04:before, .bc-mnc .icon-icon-loading-04:before {
|
14276 |
-
content: "";
|
14277 |
-
}
|
14278 |
-
.bc-root .icon-loading-03:before, .bc-mnc .icon-loading-03:before {
|
14279 |
-
content: "";
|
14280 |
-
}
|
14281 |
-
.bc-root .icon-cart-15:before, .bc-mnc .icon-cart-15:before {
|
14282 |
-
content: "";
|
14283 |
-
}
|
14284 |
-
.bc-root .icon-loading-02:before, .bc-mnc .icon-loading-02:before {
|
14285 |
-
content: "";
|
14286 |
-
}
|
14287 |
-
.bc-root .icon-close-02:before, .bc-mnc .icon-close-02:before {
|
14288 |
-
content: "";
|
14289 |
-
}
|
14290 |
-
.bc-root .icon-copy-01:before, .bc-mnc .icon-copy-01:before {
|
14291 |
-
content: "";
|
14292 |
-
}
|
14293 |
-
.bc-root .icon-money-01:before, .bc-mnc .icon-money-01:before {
|
14294 |
-
content: "";
|
14295 |
-
}
|
14296 |
-
.bc-root .icon-download-01:before, .bc-mnc .icon-download-01:before {
|
14297 |
-
content: "";
|
14298 |
-
}
|
14299 |
-
.bc-root .icon-upload-01:before, .bc-mnc .icon-upload-01:before {
|
14300 |
-
content: "";
|
14301 |
-
}
|
14302 |
-
.bc-root .icon-up-01:before, .bc-mnc .icon-up-01:before {
|
14303 |
-
content: "";
|
14304 |
-
}
|
14305 |
-
.bc-root .icon-down-01:before, .bc-mnc .icon-down-01:before {
|
14306 |
-
content: "";
|
14307 |
-
}
|
14308 |
-
.bc-root .icon-trash-02:before, .bc-mnc .icon-trash-02:before {
|
14309 |
-
content: "";
|
14310 |
-
}
|
14311 |
-
.bc-root .icon-cart-04:before, .bc-mnc .icon-cart-04:before {
|
14312 |
-
content: "";
|
14313 |
-
}
|
14314 |
-
.bc-root .icon-cart-07:before, .bc-mnc .icon-cart-07:before {
|
14315 |
-
content: "";
|
14316 |
-
}
|
14317 |
-
.bc-root .icon-cart-10:before, .bc-mnc .icon-cart-10:before {
|
14318 |
-
content: "";
|
14319 |
-
}
|
14320 |
-
.bc-root .icon-cart-14:before, .bc-mnc .icon-cart-14:before {
|
14321 |
-
content: "";
|
14322 |
-
}
|
14323 |
-
.bc-root .icon-cart-13:before, .bc-mnc .icon-cart-13:before {
|
14324 |
-
content: "";
|
14325 |
-
}
|
14326 |
-
|
14327 |
-
#wpcontent {
|
14328 |
-
background: #fff;
|
14329 |
-
}
|
14330 |
-
|
14331 |
-
.bc-root select.bc-uk-select, .bc-root input.bc-uk-input {
|
14332 |
-
width: 200px;
|
14333 |
-
}
|
14334 |
-
.bc-root .bc-uk-form label {
|
14335 |
-
display: block;
|
14336 |
-
}
|
14337 |
-
.bc-root :disabled {
|
14338 |
-
opacity: 0.5;
|
14339 |
-
cursor: not-allowed;
|
14340 |
-
}
|
14341 |
-
.bc-root .bc_headline_dot {
|
14342 |
-
display: block;
|
14343 |
-
margin: auto;
|
14344 |
-
text-align: center;
|
14345 |
-
width: 40px;
|
14346 |
-
height: 40px;
|
14347 |
-
color: #fff;
|
14348 |
-
font-size: 20px;
|
14349 |
-
padding: 0;
|
14350 |
-
line-height: 30px;
|
14351 |
-
background: #0c93e4;
|
14352 |
-
-webkit-border-radius: 50%;
|
14353 |
-
-moz-border-radius: 50%;
|
14354 |
-
border-radius: 50%;
|
14355 |
-
}
|
14356 |
-
.bc-root input[type=submit] {
|
14357 |
-
height: unset;
|
14358 |
-
}
|
14359 |
-
.bc-root .bc_image_preview {
|
14360 |
-
max-width: 200px;
|
14361 |
-
max-height: 80px;
|
14362 |
-
display: block;
|
14363 |
-
}
|
14364 |
-
|
14365 |
-
/*# sourceMappingURL=backend.css.map */
|
1 |
+
/*! UIkit 3.1.4 | http://www.getuikit.com | (c) 2014 - 2018 YOOtheme | MIT License */@import"https://fonts.googleapis.com/css?family=Roboto:300,400&display=swap";.bc-root{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";font-size:16px;font-weight:normal;line-height:1.5;-webkit-text-size-adjust:100%;background:#fff;color:#666}.bc-root a{-webkit-text-decoration-skip:objects}.bc-root a:active,.bc-root a:hover{outline:none}.bc-root a,.bc-root .bc-uk-link{color:#1e87f0;text-decoration:none;cursor:pointer}.bc-root a:hover,.bc-root .bc-uk-link:hover{color:#0f6ecd;text-decoration:underline}.bc-root abbr[title]{text-decoration:underline;-webkit-text-decoration-style:dotted}.bc-root b,.bc-root strong{font-weight:bolder}.bc-root :not(pre)>code,.bc-root :not(pre)>kbd,.bc-root :not(pre)>samp{font-family:Consolas,monaco,monospace;font-size:.875rem;color:#f0506e;white-space:nowrap;padding:2px 6px;background:#f8f8f8}.bc-root em{color:#f0506e}.bc-root ins{background:#ffd;color:#666;text-decoration:none}.bc-root mark{background:#ffd;color:#666}.bc-root q{font-style:italic}.bc-root small{font-size:80%}.bc-root sub,.bc-root sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.bc-root sup{top:-0.5em}.bc-root sub{bottom:-0.25em}.bc-root audio,.bc-root canvas,.bc-root iframe,.bc-root img,.bc-root svg,.bc-root video{vertical-align:middle}.bc-root canvas,.bc-root img,.bc-root video{max-width:100%;height:auto;box-sizing:border-box}@supports(display: block){.bc-root svg{max-width:100%;height:auto;box-sizing:border-box}}.bc-root svg:not(:root){overflow:hidden}.bc-root img:not([src]){visibility:hidden}.bc-root iframe{border:0}.bc-root p,.bc-root ul,.bc-root ol,.bc-root dl,.bc-root pre,.bc-root address,.bc-root fieldset,.bc-root figure{margin:0 0 20px 0}.bc-root *+p,.bc-root *+ul,.bc-root *+ol,.bc-root *+dl,.bc-root *+pre,.bc-root *+address,.bc-root *+fieldset,.bc-root *+figure{margin-top:20px}.bc-root h1,.bc-root .bc-uk-h1,.bc-root h2,.bc-root .bc-uk-h2,.bc-root h3,.bc-root .bc-uk-h3,.bc-root h4,.bc-root .bc-uk-h4,.bc-root h5,.bc-root .bc-uk-h5,.bc-root h6,.bc-root .bc-uk-h6,.bc-root .bc-uk-heading-small,.bc-root .bc-uk-heading-medium,.bc-root .bc-uk-heading-large,.bc-root .bc-uk-heading-xlarge,.bc-root .bc-uk-heading-2xlarge{margin:0 0 20px 0;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";font-weight:normal;color:#333;text-transform:none}.bc-root *+h1,.bc-root *+.bc-uk-h1,.bc-root *+h2,.bc-root *+.bc-uk-h2,.bc-root *+h3,.bc-root *+.bc-uk-h3,.bc-root *+h4,.bc-root *+.bc-uk-h4,.bc-root *+h5,.bc-root *+.bc-uk-h5,.bc-root *+h6,.bc-root *+.bc-uk-h6,.bc-root *+.bc-uk-heading-small,.bc-root *+.bc-uk-heading-medium,.bc-root *+.bc-uk-heading-large,.bc-root *+.bc-uk-heading-xlarge,.bc-root *+.bc-uk-heading-2xlarge{margin-top:40px}.bc-root h1,.bc-root .bc-uk-h1{font-size:2.23125rem;line-height:1.2}.bc-root h2,.bc-root .bc-uk-h2{font-size:1.7rem;line-height:1.3}.bc-root h3,.bc-root .bc-uk-h3{font-size:1.5rem;line-height:1.4}.bc-root h4,.bc-root .bc-uk-h4{font-size:1.25rem;line-height:1.4}.bc-root h5,.bc-root .bc-uk-h5{font-size:16px;line-height:1.4}.bc-root h6,.bc-root .bc-uk-h6{font-size:.875rem;line-height:1.4}@media(min-width: 960px){.bc-root h1,.bc-root .bc-uk-h1{font-size:2.625rem}.bc-root h2,.bc-root .bc-uk-h2{font-size:2rem}}.bc-root ul,.bc-root ol{padding-left:30px}.bc-root ul>li>ul,.bc-root ul>li>ol,.bc-root ol>li>ol,.bc-root ol>li>ul{margin:0}.bc-root dt{font-weight:bold}.bc-root dd{margin-left:0}.bc-root hr,.bc-root .bc-uk-hr{box-sizing:content-box;height:0;overflow:visible;text-align:inherit;margin:0 0 20px 0;border:0;border-top:1px solid #e5e5e5}.bc-root *+hr,.bc-root *+.bc-uk-hr{margin-top:20px}.bc-root address{font-style:normal}.bc-root blockquote{margin:0 0 20px 0;font-size:1.25rem;line-height:1.5;font-style:italic;color:#333}.bc-root *+blockquote{margin-top:20px}.bc-root blockquote p:last-of-type{margin-bottom:0}.bc-root blockquote footer{margin-top:10px;font-size:.875rem;line-height:1.5;color:#666}.bc-root blockquote footer::before{content:"— "}.bc-root pre{font:.875rem/1.5 Consolas,monaco,monospace;color:#666;-moz-tab-size:4;tab-size:4;overflow:auto;padding:10px;border:1px solid #e5e5e5;border-radius:3px;background:#fff}.bc-root pre code{font-family:Consolas,monaco,monospace}.bc-root ::selection{background:#39f;color:#fff;text-shadow:none}.bc-root details,.bc-root main{display:block}.bc-root summary{display:list-item}.bc-root template{display:none}.bc-root .bc-uk-breakpoint-s::before{content:"640px"}.bc-root .bc-uk-breakpoint-m::before{content:"960px"}.bc-root .bc-uk-breakpoint-l::before{content:"1200px"}.bc-root .bc-uk-breakpoint-xl::before{content:"1600px"}.bc-root :root{--uk-breakpoint-s: 640px;--uk-breakpoint-m: 960px;--uk-breakpoint-l: 1200px;--uk-breakpoint-xl: 1600px}.bc-root a.bc-uk-link-muted,.bc-root .bc-uk-link-muted a{color:#999}.bc-root a.bc-uk-link-muted:hover,.bc-root .bc-uk-link-muted a:hover{color:#666}.bc-root a.bc-uk-link-text:not(:hover),.bc-root .bc-uk-link-text a:not(:hover){color:inherit}.bc-root a.bc-uk-link-text:hover,.bc-root .bc-uk-link-text a:hover{color:#999}.bc-root a.bc-uk-link-heading:not(:hover),.bc-root .bc-uk-link-heading a:not(:hover){color:inherit}.bc-root a.bc-uk-link-heading:hover,.bc-root .bc-uk-link-heading a:hover{color:#1e87f0;text-decoration:none}.bc-root a.bc-uk-link-reset,.bc-root a.bc-uk-link-reset:hover,.bc-root .bc-uk-link-reset a,.bc-root .bc-uk-link-reset a:hover{color:inherit !important;text-decoration:none !important}.bc-root .bc-uk-heading-small{font-size:2.6rem;line-height:1.2}.bc-root .bc-uk-heading-medium{font-size:2.8875rem;line-height:1.1}.bc-root .bc-uk-heading-large{font-size:3.4rem;line-height:1.1}.bc-root .bc-uk-heading-xlarge{font-size:4rem;line-height:1}.bc-root .bc-uk-heading-2xlarge{font-size:6rem;line-height:1}@media(min-width: 960px){.bc-root .bc-uk-heading-small{font-size:3.25rem}.bc-root .bc-uk-heading-medium{font-size:3.5rem}.bc-root .bc-uk-heading-large{font-size:4rem}.bc-root .bc-uk-heading-xlarge{font-size:6rem}.bc-root .bc-uk-heading-2xlarge{font-size:8rem}}@media(min-width: 1200px){.bc-root .bc-uk-heading-medium{font-size:4rem}.bc-root .bc-uk-heading-large{font-size:6rem}.bc-root .bc-uk-heading-xlarge{font-size:8rem}.bc-root .bc-uk-heading-2xlarge{font-size:11rem}}.bc-root .bc-uk-heading-divider{padding-bottom:calc(10px + 0.1em);border-bottom:calc(0.2px + 0.05em) solid #e5e5e5}.bc-root .bc-uk-heading-bullet{position:relative}.bc-root .bc-uk-heading-bullet::before{content:"";display:inline-block;position:relative;top:calc(-0.1 * 1em);vertical-align:middle;height:calc(4px + 0.7em);margin-right:calc(5px + 0.2em);border-left:calc(5px + 0.1em) solid #e5e5e5}.bc-root .bc-uk-heading-line{overflow:hidden}.bc-root .bc-uk-heading-line>*{display:inline-block;position:relative}.bc-root .bc-uk-heading-line>::before,.bc-root .bc-uk-heading-line>::after{content:"";position:absolute;top:calc(50% - ((0.2px + 0.05em) / 2));width:2000px;border-bottom:calc(0.2px + 0.05em) solid #e5e5e5}.bc-root .bc-uk-heading-line>::before{right:100%;margin-right:calc(5px + 0.3em)}.bc-root .bc-uk-heading-line>::after{left:100%;margin-left:calc(5px + 0.3em)}.bc-root [class*=uk-divider]{border:none;margin-bottom:20px}.bc-root *+[class*=uk-divider]{margin-top:20px}.bc-root .bc-uk-divider-icon{position:relative;height:20px;background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22none%22%20stroke%3D%22%23e5e5e5%22%20stroke-width%3D%222%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%227%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");background-repeat:no-repeat;background-position:50% 50%}.bc-root .bc-uk-divider-icon::before,.bc-root .bc-uk-divider-icon::after{content:"";position:absolute;top:50%;max-width:calc(50% - (50px / 2));border-bottom:1px solid #e5e5e5}.bc-root .bc-uk-divider-icon::before{right:calc(50% + (50px / 2));width:100%}.bc-root .bc-uk-divider-icon::after{left:calc(50% + (50px / 2));width:100%}.bc-root .bc-uk-divider-small{height:1px}.bc-root .bc-uk-divider-small::after{content:"";display:inline-block;width:100px;max-width:100%;border-top:1px solid #e5e5e5;vertical-align:top}.bc-root .bc-uk-divider-vertical{width:1px;height:100px;margin-left:auto;margin-right:auto;border-left:1px solid #e5e5e5}.bc-root .bc-uk-list{padding:0;list-style:none}.bc-root .bc-uk-list>li::before,.bc-root .bc-uk-list>li::after{content:"";display:table}.bc-root .bc-uk-list>li::after{clear:both}.bc-root .bc-uk-list>li>:last-child{margin-bottom:0}.bc-root .bc-uk-list ul{margin:0;padding-left:30px;list-style:none}.bc-root .bc-uk-list>li:nth-child(n+2),.bc-root .bc-uk-list>li>ul{margin-top:10px}.bc-root .bc-uk-list-divider>li:nth-child(n+2){margin-top:10px;padding-top:10px;border-top:1px solid #e5e5e5}.bc-root .bc-uk-list-striped>li{padding:10px 10px}.bc-root .bc-uk-list-striped>li:nth-of-type(odd){border-top:1px solid #e5e5e5;border-bottom:1px solid #e5e5e5}.bc-root .bc-uk-list-striped>li:nth-of-type(odd){background:#f8f8f8}.bc-root .bc-uk-list-striped>li:nth-child(n+2){margin-top:0}.bc-root .bc-uk-list-bullet>li{position:relative;padding-left:calc(1.5em + 10px)}.bc-root .bc-uk-list-bullet>li::before{content:"";position:absolute;top:0;left:0;width:1.5em;height:1.5em;background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%226%22%20height%3D%226%22%20viewBox%3D%220%200%206%206%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23666%22%20cx%3D%223%22%20cy%3D%223%22%20r%3D%223%22%20%2F%3E%0A%3C%2Fsvg%3E");background-repeat:no-repeat;background-position:50% 50%;display:block}.bc-root .bc-uk-list-large>li:nth-child(n+2),.bc-root .bc-uk-list-large>li>ul{margin-top:20px}.bc-root .bc-uk-list-large.bc-uk-list-divider>li:nth-child(n+2){margin-top:20px;padding-top:20px}.bc-root .bc-uk-list-large.bc-uk-list-striped>li{padding:20px 10px}.bc-root .bc-uk-list-large.bc-uk-list-striped>li:nth-of-type(odd){border-top:1px solid #e5e5e5;border-bottom:1px solid #e5e5e5}.bc-root .bc-uk-list-large.bc-uk-list-striped>li:nth-child(n+2){margin-top:0}.bc-root .bc-uk-description-list>dt{color:#333;font-size:.875rem;font-weight:normal;text-transform:uppercase}.bc-root .bc-uk-description-list>dt:nth-child(n+2){margin-top:20px}.bc-root .bc-uk-description-list-divider>dt:nth-child(n+2){margin-top:20px;padding-top:20px;border-top:1px solid #e5e5e5}.bc-root .bc-uk-table{border-collapse:collapse;border-spacing:0;width:100%;margin-bottom:20px}.bc-root *+.bc-uk-table{margin-top:20px}.bc-root .bc-uk-table th{padding:16px 12px;text-align:left;vertical-align:bottom;font-size:.875rem;font-weight:normal;color:#999;text-transform:uppercase}.bc-root .bc-uk-table td{padding:16px 12px;vertical-align:top}.bc-root .bc-uk-table td>:last-child{margin-bottom:0}.bc-root .bc-uk-table tfoot{font-size:.875rem}.bc-root .bc-uk-table caption{font-size:.875rem;text-align:left;color:#999}.bc-root .bc-uk-table-middle,.bc-root .bc-uk-table-middle td{vertical-align:middle !important}.bc-root .bc-uk-table-divider>tr:not(:first-child),.bc-root .bc-uk-table-divider>:not(:first-child)>tr,.bc-root .bc-uk-table-divider>:first-child>tr:not(:first-child){border-top:1px solid #e5e5e5}.bc-root .bc-uk-table-striped>tr:nth-of-type(odd),.bc-root .bc-uk-table-striped tbody tr:nth-of-type(odd){background:#f8f8f8;border-top:1px solid #e5e5e5;border-bottom:1px solid #e5e5e5}.bc-root .bc-uk-table-hover>tr:hover,.bc-root .bc-uk-table-hover tbody tr:hover{background:#ffd}.bc-root .bc-uk-table>tr.bc-uk-active,.bc-root .bc-uk-table tbody tr.bc-uk-active{background:#ffd}.bc-root .bc-uk-table-small th,.bc-root .bc-uk-table-small td{padding:10px 12px}.bc-root .bc-uk-table-large th,.bc-root .bc-uk-table-large td{padding:22px 12px}.bc-root .bc-uk-table-justify th:first-child,.bc-root .bc-uk-table-justify td:first-child{padding-left:0}.bc-root .bc-uk-table-justify th:last-child,.bc-root .bc-uk-table-justify td:last-child{padding-right:0}.bc-root .bc-uk-table-shrink{width:1px}.bc-root .bc-uk-table-expand{min-width:150px}.bc-root .bc-uk-table-link{padding:0 !important}.bc-root .bc-uk-table-link>a{display:block;padding:16px 12px}.bc-root .bc-uk-table-small .bc-uk-table-link>a{padding:10px 12px}@media(max-width: 959px){.bc-root .bc-uk-table-responsive,.bc-root .bc-uk-table-responsive tbody,.bc-root .bc-uk-table-responsive th,.bc-root .bc-uk-table-responsive td,.bc-root .bc-uk-table-responsive tr{display:block}.bc-root .bc-uk-table-responsive thead{display:none}.bc-root .bc-uk-table-responsive th,.bc-root .bc-uk-table-responsive td{width:auto !important;max-width:none !important;min-width:0 !important;overflow:visible !important;white-space:normal !important}.bc-root .bc-uk-table-responsive th:not(:first-child):not(.bc-uk-table-link),.bc-root .bc-uk-table-responsive td:not(:first-child):not(.bc-uk-table-link),.bc-root .bc-uk-table-responsive .bc-uk-table-link:not(:first-child)>a{padding-top:5px !important}.bc-root .bc-uk-table-responsive th:not(:last-child):not(.bc-uk-table-link),.bc-root .bc-uk-table-responsive td:not(:last-child):not(.bc-uk-table-link),.bc-root .bc-uk-table-responsive .bc-uk-table-link:not(:last-child)>a{padding-bottom:5px !important}.bc-root .bc-uk-table-justify.bc-uk-table-responsive th,.bc-root .bc-uk-table-justify.bc-uk-table-responsive td{padding-left:0;padding-right:0}}.bc-root .bc-uk-table tbody tr{transition:background-color .1s linear}.bc-root .bc-uk-icon{margin:0;border:none;border-radius:0;overflow:visible;font:inherit;color:inherit;text-transform:none;padding:0;background-color:transparent;display:inline-block;fill:currentcolor;line-height:0}.bc-root button.bc-uk-icon:not(:disabled){cursor:pointer}.bc-root .bc-uk-icon::-moz-focus-inner{border:0;padding:0}.bc-root .bc-uk-icon:not(.bc-uk-preserve) [fill*="#"]:not(.bc-uk-preserve){fill:currentcolor}.bc-root .bc-uk-icon:not(.bc-uk-preserve) [stroke*="#"]:not(.bc-uk-preserve){stroke:currentcolor}.bc-root .bc-uk-icon>*{transform:translate(0, 0)}.bc-root .bc-uk-icon-image{width:20px;height:20px;background-position:50% 50%;background-repeat:no-repeat;background-size:contain;vertical-align:middle}.bc-root .bc-uk-icon-link{color:#999}.bc-root .bc-uk-icon-link:hover,.bc-root .bc-uk-icon-link:focus{color:#666;outline:none}.bc-root .bc-uk-icon-link:active,.bc-root .bc-uk-active>.bc-uk-icon-link{color:#595959}.bc-root .bc-uk-icon-button{box-sizing:border-box;width:36px;height:36px;border-radius:500px;background:#f8f8f8;color:#999;vertical-align:middle;display:inline-flex;justify-content:center;align-items:center;transition:.1s ease-in-out;transition-property:color,background-color}.bc-root .bc-uk-icon-button:hover,.bc-root .bc-uk-icon-button:focus{background-color:#ebebeb;color:#666;outline:none}.bc-root .bc-uk-icon-button:active,.bc-root .bc-uk-active>.bc-uk-icon-button{background-color:#dfdfdf;color:#666}.bc-root .bc-uk-range{box-sizing:border-box;margin:0;vertical-align:middle;max-width:100%;width:100%;-webkit-appearance:none;background:transparent;padding:0}.bc-root .bc-uk-range:focus{outline:none}.bc-root .bc-uk-range::-moz-focus-outer{border:none}.bc-root .bc-uk-range::-ms-track{height:15px;background:transparent;border-color:transparent;color:transparent}.bc-root .bc-uk-range:not(:disabled)::-webkit-slider-thumb{cursor:pointer}.bc-root .bc-uk-range:not(:disabled)::-moz-range-thumb{cursor:pointer}.bc-root .bc-uk-range:not(:disabled)::-ms-thumb{cursor:pointer}.bc-root .bc-uk-range::-webkit-slider-thumb{-webkit-appearance:none;margin-top:-7px;height:15px;width:15px;border-radius:500px;background:#fff;border:1px solid #ccc}.bc-root .bc-uk-range::-moz-range-thumb{border:none;height:15px;width:15px;border-radius:500px;background:#fff;border:1px solid #ccc}.bc-root .bc-uk-range::-ms-thumb{margin-top:0}.bc-root .bc-uk-range::-ms-thumb{border:none;height:15px;width:15px;border-radius:500px;background:#fff;border:1px solid #ccc}.bc-root .bc-uk-range::-ms-tooltip{display:none}.bc-root .bc-uk-range::-webkit-slider-runnable-track{height:3px;background:#ebebeb;border-radius:500px}.bc-root .bc-uk-range:focus::-webkit-slider-runnable-track,.bc-root .bc-uk-range:active::-webkit-slider-runnable-track{background:#d2d2d2}.bc-root .bc-uk-range::-moz-range-track{height:3px;background:#ebebeb;border-radius:500px}.bc-root .bc-uk-range:focus::-moz-range-track{background:#d2d2d2}.bc-root .bc-uk-range::-ms-fill-lower,.bc-root .bc-uk-range::-ms-fill-upper{height:3px;background:#ebebeb;border-radius:500px}.bc-root .bc-uk-range:focus::-ms-fill-lower,.bc-root .bc-uk-range:focus::-ms-fill-upper{background:#d2d2d2}.bc-root .bc-uk-input,.bc-root .bc-uk-select,.bc-root .bc-uk-textarea,.bc-root .bc-uk-radio,.bc-root .bc-uk-checkbox{box-sizing:border-box;margin:0;border-radius:0;font:inherit}.bc-root .bc-uk-input{overflow:visible}.bc-root .bc-uk-select{text-transform:none}.bc-root .bc-uk-select optgroup{font:inherit;font-weight:bold}.bc-root .bc-uk-textarea{overflow:auto}.bc-root .bc-uk-input[type=search]::-webkit-search-cancel-button,.bc-root .bc-uk-input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.bc-root .bc-uk-input[type=number]::-webkit-inner-spin-button,.bc-root .bc-uk-input[type=number]::-webkit-outer-spin-button{height:auto}.bc-root .bc-uk-input::-moz-placeholder,.bc-root .bc-uk-textarea::-moz-placeholder{opacity:1}.bc-root .bc-uk-radio:not(:disabled),.bc-root .bc-uk-checkbox:not(:disabled){cursor:pointer}.bc-root .bc-uk-fieldset{border:none;margin:0;padding:0}.bc-root .bc-uk-input,.bc-root .bc-uk-textarea{-webkit-appearance:none}.bc-root .bc-uk-input,.bc-root .bc-uk-select,.bc-root .bc-uk-textarea{max-width:100%;width:100%;border:0 none;padding:0 10px;background:#fff;color:#666;border:1px solid #e5e5e5;transition:.2s ease-in-out;transition-property:color,background-color,border}.bc-root .bc-uk-input,.bc-root .bc-uk-select:not([multiple]):not([size]){height:40px;vertical-align:middle;display:inline-block}.bc-root .bc-uk-input:not(input),.bc-root .bc-uk-select:not(select){line-height:38px}.bc-root .bc-uk-select[multiple],.bc-root .bc-uk-select[size],.bc-root .bc-uk-textarea{padding-top:4px;padding-bottom:4px;vertical-align:top}.bc-root .bc-uk-input:focus,.bc-root .bc-uk-select:focus,.bc-root .bc-uk-textarea:focus{outline:none;background-color:#fff;color:#666;border-color:#1e87f0}.bc-root .bc-uk-input:disabled,.bc-root .bc-uk-select:disabled,.bc-root .bc-uk-textarea:disabled{background-color:#f8f8f8;color:#999;border-color:#e5e5e5}.bc-root .bc-uk-input::-ms-input-placeholder{color:#999 !important}.bc-root .bc-uk-input::placeholder{color:#999}.bc-root .bc-uk-textarea::-ms-input-placeholder{color:#999 !important}.bc-root .bc-uk-textarea::placeholder{color:#999}.bc-root .bc-uk-form-small{font-size:.875rem}.bc-root .bc-uk-form-small:not(textarea):not([multiple]):not([size]){height:30px;padding-left:8px;padding-right:8px}.bc-root .bc-uk-form-small:not(select):not(input):not(textarea){line-height:28px}.bc-root .bc-uk-form-large{font-size:1.25rem}.bc-root .bc-uk-form-large:not(textarea):not([multiple]):not([size]){height:55px;padding-left:12px;padding-right:12px}.bc-root .bc-uk-form-large:not(select):not(input):not(textarea){line-height:53px}.bc-root .bc-uk-form-danger,.bc-root .bc-uk-form-danger:focus{color:#f0506e;border-color:#f0506e}.bc-root .bc-uk-form-success,.bc-root .bc-uk-form-success:focus{color:#32d296;border-color:#32d296}.bc-root .bc-uk-form-blank{background:none;border-color:transparent}.bc-root .bc-uk-form-blank:focus{border-color:#e5e5e5;border-style:dashed}.bc-root input.bc-uk-form-width-xsmall{width:50px}.bc-root select.bc-uk-form-width-xsmall{width:75px}.bc-root .bc-uk-form-width-small{width:130px}.bc-root .bc-uk-form-width-medium{width:200px}.bc-root .bc-uk-form-width-large{width:500px}.bc-root .bc-uk-select:not([multiple]):not([size]){-webkit-appearance:none;-moz-appearance:none;padding-right:20px;background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");background-repeat:no-repeat;background-position:100% 50%}.bc-root .bc-uk-select:not([multiple]):not([size])::-ms-expand{display:none}.bc-root .bc-uk-select:not([multiple]):not([size]) option{color:#444}.bc-root .bc-uk-select:not([multiple]):not([size]):disabled{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A")}.bc-root .bc-uk-radio,.bc-root .bc-uk-checkbox{display:inline-block;height:16px;width:16px;overflow:hidden;margin-top:-4px;vertical-align:middle;-webkit-appearance:none;-moz-appearance:none;background-color:transparent;background-repeat:no-repeat;background-position:50% 50%;border:1px solid #ccc;transition:.2s ease-in-out;transition-property:background-color,border}.bc-root .bc-uk-radio:checked:before,.bc-root .bc-uk-checkbox:checked:before{content:unset;text-indent:unset;line-height:unset}.bc-root .bc-uk-radio{border-radius:50%}.bc-root .bc-uk-radio:checked:before{content:unset;text-indent:unset;line-height:unset}.bc-root .bc-uk-radio:focus,.bc-root .bc-uk-checkbox:focus{outline:none;border-color:#1e87f0}.bc-root .bc-uk-radio:checked,.bc-root .bc-uk-checkbox:checked,.bc-root .bc-uk-checkbox:indeterminate{background-color:#1e87f0;border-color:transparent}.bc-root .bc-uk-radio:checked:focus,.bc-root .bc-uk-checkbox:checked:focus,.bc-root .bc-uk-checkbox:indeterminate:focus{background-color:#0e6dcd}.bc-root .bc-uk-radio:checked{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23fff%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E")}.bc-root .bc-uk-checkbox:checked{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23fff%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A")}.bc-root .bc-uk-checkbox:indeterminate{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23fff%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E")}.bc-root .bc-uk-radio:disabled,.bc-root .bc-uk-checkbox:disabled{background-color:#f8f8f8;border-color:#e5e5e5}.bc-root .bc-uk-radio:disabled:checked{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23999%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E")}.bc-root .bc-uk-checkbox:disabled:checked{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A")}.bc-root .bc-uk-checkbox:disabled:indeterminate{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23999%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E")}.bc-root .bc-uk-legend{width:100%;color:inherit;padding:0;font-size:1.5rem;line-height:1.4}.bc-root .bc-uk-form-custom{display:inline-block;position:relative;max-width:100%;vertical-align:middle}.bc-root .bc-uk-form-custom select,.bc-root .bc-uk-form-custom input[type=file]{position:absolute;top:0;z-index:1;width:100%;height:100%;left:0;-webkit-appearance:none;opacity:0;cursor:pointer}.bc-root .bc-uk-form-custom input[type=file]{font-size:500px;overflow:hidden}.bc-root .bc-uk-form-label{color:#333;font-size:.875rem}.bc-root .bc-uk-form-stacked .bc-uk-form-label{display:block;margin-bottom:5px}@media(max-width: 959px){.bc-root .bc-uk-form-horizontal .bc-uk-form-label{display:block;margin-bottom:5px}}@media(min-width: 960px){.bc-root .bc-uk-form-horizontal .bc-uk-form-label{width:200px;margin-top:7px;float:left}.bc-root .bc-uk-form-horizontal .bc-uk-form-controls{margin-left:215px}.bc-root .bc-uk-form-horizontal .bc-uk-form-controls-text{padding-top:7px}}.bc-root .bc-uk-form-icon{position:absolute;top:0;bottom:0;left:0;width:40px;display:inline-flex;justify-content:center;align-items:center;color:#999}.bc-root .bc-uk-form-icon:hover{color:#666}.bc-root .bc-uk-form-icon:not(a):not(button):not(input){pointer-events:none}.bc-root .bc-uk-form-icon:not(.bc-uk-form-icon-flip)~.bc-uk-input{padding-left:40px !important}.bc-root .bc-uk-form-icon-flip{right:0;left:auto}.bc-root .bc-uk-form-icon-flip~.bc-uk-input{padding-right:40px !important}.bc-root .bc-uk-button{margin:0;border:none;overflow:visible;font:inherit;color:inherit;text-transform:none;display:inline-block;box-sizing:border-box;padding:0 30px;vertical-align:middle;font-size:.875rem;line-height:38px;text-align:center;text-decoration:none;text-transform:uppercase;transition:.1s ease-in-out;transition-property:color,background-color,border-color}.bc-root .bc-uk-button:not(:disabled){cursor:pointer}.bc-root .bc-uk-button::-moz-focus-inner{border:0;padding:0}.bc-root .bc-uk-button:hover{text-decoration:none}.bc-root .bc-uk-button:focus{outline:none}.bc-root .bc-uk-button-default{background-color:transparent;color:#333;border:1px solid #e5e5e5}.bc-root .bc-uk-button-default:hover,.bc-root .bc-uk-button-default:focus{background-color:transparent;color:#333;border-color:#b2b2b2}.bc-root .bc-uk-button-default:active,.bc-root .bc-uk-button-default.bc-uk-active{background-color:transparent;color:#333;border-color:#999}.bc-root .bc-uk-button-primary{background-color:#1e87f0;color:#fff;border:1px solid transparent}.bc-root .bc-uk-button-primary:hover,.bc-root .bc-uk-button-primary:focus{background-color:#0f7ae5;color:#fff}.bc-root .bc-uk-button-primary:active,.bc-root .bc-uk-button-primary.bc-uk-active{background-color:#0e6dcd;color:#fff}.bc-root .bc-uk-button-secondary{background-color:#222;color:#fff;border:1px solid transparent}.bc-root .bc-uk-button-secondary:hover,.bc-root .bc-uk-button-secondary:focus{background-color:#151515;color:#fff}.bc-root .bc-uk-button-secondary:active,.bc-root .bc-uk-button-secondary.bc-uk-active{background-color:#080808;color:#fff}.bc-root .bc-uk-button-danger{background-color:#f0506e;color:#fff;border:1px solid transparent}.bc-root .bc-uk-button-danger:hover,.bc-root .bc-uk-button-danger:focus{background-color:#ee395b;color:#fff}.bc-root .bc-uk-button-danger:active,.bc-root .bc-uk-button-danger.bc-uk-active{background-color:#ec2147;color:#fff}.bc-root .bc-uk-button-default:disabled,.bc-root .bc-uk-button-primary:disabled,.bc-root .bc-uk-button-secondary:disabled,.bc-root .bc-uk-button-danger:disabled{background-color:transparent;color:#999;border-color:#e5e5e5}.bc-root .bc-uk-button-small{padding:0 15px;line-height:28px;font-size:.875rem}.bc-root .bc-uk-button-large{padding:0 40px;line-height:53px;font-size:.875rem}.bc-root .bc-uk-button-text{padding:0;line-height:1.5;background:none;color:#333;position:relative}.bc-root .bc-uk-button-text::before{content:"";position:absolute;bottom:0;left:0;right:100%;border-bottom:1px solid #333;transition:right .3s ease-out}.bc-root .bc-uk-button-text:hover,.bc-root .bc-uk-button-text:focus{color:#333}.bc-root .bc-uk-button-text:hover::before,.bc-root .bc-uk-button-text:focus::before{right:0}.bc-root .bc-uk-button-text:disabled{color:#999}.bc-root .bc-uk-button-text:disabled::before{display:none}.bc-root .bc-uk-button-link{padding:0;line-height:1.5;background:none;color:#1e87f0}.bc-root .bc-uk-button-link:hover,.bc-root .bc-uk-button-link:focus{color:#0f6ecd;text-decoration:underline}.bc-root .bc-uk-button-link:disabled{color:#999;text-decoration:none}.bc-root .bc-uk-button-group{display:inline-flex;vertical-align:middle;position:relative}.bc-root .bc-uk-button-group>.bc-uk-button:nth-child(n+2),.bc-root .bc-uk-button-group>div:nth-child(n+2) .bc-uk-button{margin-left:-1px}.bc-root .bc-uk-button-group .bc-uk-button:hover,.bc-root .bc-uk-button-group .bc-uk-button:focus,.bc-root .bc-uk-button-group .bc-uk-button:active,.bc-root .bc-uk-button-group .bc-uk-button.bc-uk-active{position:relative;z-index:1}.bc-root .bc-uk-section{box-sizing:border-box;padding-top:40px;padding-bottom:40px}@media(min-width: 960px){.bc-root .bc-uk-section{padding-top:70px;padding-bottom:70px}}.bc-root .bc-uk-section::before,.bc-root .bc-uk-section::after{content:"";display:table}.bc-root .bc-uk-section::after{clear:both}.bc-root .bc-uk-section>:last-child{margin-bottom:0}.bc-root .bc-uk-section-xsmall{padding-top:20px;padding-bottom:20px}.bc-root .bc-uk-section-small{padding-top:40px;padding-bottom:40px}.bc-root .bc-uk-section-large{padding-top:70px;padding-bottom:70px}@media(min-width: 960px){.bc-root .bc-uk-section-large{padding-top:140px;padding-bottom:140px}}.bc-root .bc-uk-section-xlarge{padding-top:140px;padding-bottom:140px}@media(min-width: 960px){.bc-root .bc-uk-section-xlarge{padding-top:210px;padding-bottom:210px}}.bc-root .bc-uk-section-default{background:#fff}.bc-root .bc-uk-section-muted{background:#f8f8f8}.bc-root .bc-uk-section-primary{background:#1e87f0}.bc-root .bc-uk-section-secondary{background:#222}.bc-root .bc-uk-container{box-sizing:content-box;max-width:1200px;margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px}@media(min-width: 640px){.bc-root .bc-uk-container{padding-left:30px;padding-right:30px}}@media(min-width: 960px){.bc-root .bc-uk-container{padding-left:40px;padding-right:40px}}.bc-root .bc-uk-container::before,.bc-root .bc-uk-container::after{content:"";display:table}.bc-root .bc-uk-container::after{clear:both}.bc-root .bc-uk-container>:last-child{margin-bottom:0}.bc-root .bc-uk-container .bc-uk-container{padding-left:0;padding-right:0}.bc-root .bc-uk-container-xsmall{max-width:750px}.bc-root .bc-uk-container-small{max-width:900px}.bc-root .bc-uk-container-large{max-width:1600px}.bc-root .bc-uk-container-expand{max-width:none}.bc-root .bc-uk-container-expand-left{margin-left:0}.bc-root .bc-uk-container-expand-right{margin-right:0}@media(min-width: 640px){.bc-root .bc-uk-container-expand-left.bc-uk-container-xsmall,.bc-root .bc-uk-container-expand-right.bc-uk-container-xsmall{max-width:calc(50% + (750px / 2) - 30px)}.bc-root .bc-uk-container-expand-left.bc-uk-container-small,.bc-root .bc-uk-container-expand-right.bc-uk-container-small{max-width:calc(50% + (900px / 2) - 30px)}}@media(min-width: 960px){.bc-root .bc-uk-container-expand-left,.bc-root .bc-uk-container-expand-right{max-width:calc(50% + (1200px / 2) - 40px)}.bc-root .bc-uk-container-expand-left.bc-uk-container-xsmall,.bc-root .bc-uk-container-expand-right.bc-uk-container-xsmall{max-width:calc(50% + (750px / 2) - 40px)}.bc-root .bc-uk-container-expand-left.bc-uk-container-small,.bc-root .bc-uk-container-expand-right.bc-uk-container-small{max-width:calc(50% + (900px / 2) - 40px)}.bc-root .bc-uk-container-expand-left.bc-uk-container-large,.bc-root .bc-uk-container-expand-right.bc-uk-container-large{max-width:calc(50% + (1600px / 2) - 40px)}}.bc-root .bc-uk-container-item-padding-remove-left,.bc-root .bc-uk-container-item-padding-remove-right{width:calc(100% + 15px)}.bc-root .bc-uk-container-item-padding-remove-left{margin-left:-15px}.bc-root .bc-uk-container-item-padding-remove-right{margin-right:-15px}@media(min-width: 640px){.bc-root .bc-uk-container-item-padding-remove-left,.bc-root .bc-uk-container-item-padding-remove-right{width:calc(100% + 30px)}.bc-root .bc-uk-container-item-padding-remove-left{margin-left:-30px}.bc-root .bc-uk-container-item-padding-remove-right{margin-right:-30px}}@media(min-width: 960px){.bc-root .bc-uk-container-item-padding-remove-left,.bc-root .bc-uk-container-item-padding-remove-right{width:calc(100% + 40px)}.bc-root .bc-uk-container-item-padding-remove-left{margin-left:-40px}.bc-root .bc-uk-container-item-padding-remove-right{margin-right:-40px}}.bc-root .bc-uk-grid{display:flex;flex-wrap:wrap;margin:0;padding:0;list-style:none}.bc-root .bc-uk-grid>*{margin:0}.bc-root .bc-uk-grid>*>:last-child{margin-bottom:0}.bc-root .bc-uk-grid{margin-left:-30px}.bc-root .bc-uk-grid>*{padding-left:30px}.bc-root .bc-uk-grid+.bc-uk-grid,.bc-root .bc-uk-grid>.bc-uk-grid-margin,.bc-root *+.bc-uk-grid-margin{margin-top:30px}@media(min-width: 1200px){.bc-root .bc-uk-grid{margin-left:-40px}.bc-root .bc-uk-grid>*{padding-left:40px}.bc-root .bc-uk-grid+.bc-uk-grid,.bc-root .bc-uk-grid>.bc-uk-grid-margin,.bc-root *+.bc-uk-grid-margin{margin-top:40px}}.bc-root .bc-uk-grid-small{margin-left:-15px}.bc-root .bc-uk-grid-small>*{padding-left:15px}.bc-root .bc-uk-grid+.bc-uk-grid-small,.bc-root .bc-uk-grid-small>.bc-uk-grid-margin,.bc-root *+.bc-uk-grid-margin-small{margin-top:15px}.bc-root .bc-uk-grid-medium{margin-left:-30px}.bc-root .bc-uk-grid-medium>*{padding-left:30px}.bc-root .bc-uk-grid+.bc-uk-grid-medium,.bc-root .bc-uk-grid-medium>.bc-uk-grid-margin,.bc-root *+.bc-uk-grid-margin-medium{margin-top:30px}.bc-root .bc-uk-grid-large{margin-left:-40px}.bc-root .bc-uk-grid-large>*{padding-left:40px}.bc-root .bc-uk-grid+.bc-uk-grid-large,.bc-root .bc-uk-grid-large>.bc-uk-grid-margin,.bc-root *+.bc-uk-grid-margin-large{margin-top:40px}@media(min-width: 1200px){.bc-root .bc-uk-grid-large{margin-left:-70px}.bc-root .bc-uk-grid-large>*{padding-left:70px}.bc-root .bc-uk-grid+.bc-uk-grid-large,.bc-root .bc-uk-grid-large>.bc-uk-grid-margin,.bc-root *+.bc-uk-grid-margin-large{margin-top:70px}}.bc-root .bc-uk-grid-collapse{margin-left:0}.bc-root .bc-uk-grid-collapse>*{padding-left:0}.bc-root .bc-uk-grid+.bc-uk-grid-collapse,.bc-root .bc-uk-grid-collapse>.bc-uk-grid-margin{margin-top:0}.bc-root .bc-uk-grid-divider>*{position:relative}.bc-root .bc-uk-grid-divider>:not(.bc-uk-first-column)::before{content:"";position:absolute;top:0;bottom:0;border-left:1px solid #e5e5e5}.bc-root .bc-uk-grid-divider.bc-uk-grid-stack>.bc-uk-grid-margin::before{content:"";position:absolute;left:0;right:0;border-top:1px solid #e5e5e5}.bc-root .bc-uk-grid-divider{margin-left:-60px}.bc-root .bc-uk-grid-divider>*{padding-left:60px}.bc-root .bc-uk-grid-divider>:not(.bc-uk-first-column)::before{left:30px}.bc-root .bc-uk-grid-divider.bc-uk-grid-stack>.bc-uk-grid-margin{margin-top:60px}.bc-root .bc-uk-grid-divider.bc-uk-grid-stack>.bc-uk-grid-margin::before{top:-30px;left:60px}@media(min-width: 1200px){.bc-root .bc-uk-grid-divider{margin-left:-80px}.bc-root .bc-uk-grid-divider>*{padding-left:80px}.bc-root .bc-uk-grid-divider>:not(.bc-uk-first-column)::before{left:40px}.bc-root .bc-uk-grid-divider.bc-uk-grid-stack>.bc-uk-grid-margin{margin-top:80px}.bc-root .bc-uk-grid-divider.bc-uk-grid-stack>.bc-uk-grid-margin::before{top:-40px;left:80px}}.bc-root .bc-uk-grid-divider.bc-uk-grid-small{margin-left:-30px}.bc-root .bc-uk-grid-divider.bc-uk-grid-small>*{padding-left:30px}.bc-root .bc-uk-grid-divider.bc-uk-grid-small>:not(.bc-uk-first-column)::before{left:15px}.bc-root .bc-uk-grid-divider.bc-uk-grid-small.bc-uk-grid-stack>.bc-uk-grid-margin{margin-top:30px}.bc-root .bc-uk-grid-divider.bc-uk-grid-small.bc-uk-grid-stack>.bc-uk-grid-margin::before{top:-15px;left:30px}.bc-root .bc-uk-grid-divider.bc-uk-grid-medium{margin-left:-60px}.bc-root .bc-uk-grid-divider.bc-uk-grid-medium>*{padding-left:60px}.bc-root .bc-uk-grid-divider.bc-uk-grid-medium>:not(.bc-uk-first-column)::before{left:30px}.bc-root .bc-uk-grid-divider.bc-uk-grid-medium.bc-uk-grid-stack>.bc-uk-grid-margin{margin-top:60px}.bc-root .bc-uk-grid-divider.bc-uk-grid-medium.bc-uk-grid-stack>.bc-uk-grid-margin::before{top:-30px;left:60px}.bc-root .bc-uk-grid-divider.bc-uk-grid-large{margin-left:-80px}.bc-root .bc-uk-grid-divider.bc-uk-grid-large>*{padding-left:80px}.bc-root .bc-uk-grid-divider.bc-uk-grid-large>:not(.bc-uk-first-column)::before{left:40px}.bc-root .bc-uk-grid-divider.bc-uk-grid-large.bc-uk-grid-stack>.bc-uk-grid-margin{margin-top:80px}.bc-root .bc-uk-grid-divider.bc-uk-grid-large.bc-uk-grid-stack>.bc-uk-grid-margin::before{top:-40px;left:80px}@media(min-width: 1200px){.bc-root .bc-uk-grid-divider.bc-uk-grid-large{margin-left:-140px}.bc-root .bc-uk-grid-divider.bc-uk-grid-large>*{padding-left:140px}.bc-root .bc-uk-grid-divider.bc-uk-grid-large>:not(.bc-uk-first-column)::before{left:70px}.bc-root .bc-uk-grid-divider.bc-uk-grid-large.bc-uk-grid-stack>.bc-uk-grid-margin{margin-top:140px}.bc-root .bc-uk-grid-divider.bc-uk-grid-large.bc-uk-grid-stack>.bc-uk-grid-margin::before{top:-70px;left:140px}}.bc-root .bc-uk-grid-match>*,.bc-root .bc-uk-grid-item-match{display:flex;flex-wrap:wrap}.bc-root .bc-uk-grid-match>*>:not([class*=uk-width]),.bc-root .bc-uk-grid-item-match>:not([class*=uk-width]){box-sizing:border-box;width:100%;flex:auto}.bc-root .bc-uk-tile{position:relative;box-sizing:border-box;padding-left:15px;padding-right:15px;padding-top:40px;padding-bottom:40px}@media(min-width: 640px){.bc-root .bc-uk-tile{padding-left:30px;padding-right:30px}}@media(min-width: 960px){.bc-root .bc-uk-tile{padding-left:40px;padding-right:40px;padding-top:70px;padding-bottom:70px}}.bc-root .bc-uk-tile::before,.bc-root .bc-uk-tile::after{content:"";display:table}.bc-root .bc-uk-tile::after{clear:both}.bc-root .bc-uk-tile>:last-child{margin-bottom:0}.bc-root .bc-uk-tile-xsmall{padding-top:20px;padding-bottom:20px}.bc-root .bc-uk-tile-small{padding-top:40px;padding-bottom:40px}.bc-root .bc-uk-tile-large{padding-top:70px;padding-bottom:70px}@media(min-width: 960px){.bc-root .bc-uk-tile-large{padding-top:140px;padding-bottom:140px}}.bc-root .bc-uk-tile-xlarge{padding-top:140px;padding-bottom:140px}@media(min-width: 960px){.bc-root .bc-uk-tile-xlarge{padding-top:210px;padding-bottom:210px}}.bc-root .bc-uk-tile-default{background:#fff}.bc-root .bc-uk-tile-muted{background:#f8f8f8}.bc-root .bc-uk-tile-primary{background:#1e87f0}.bc-root .bc-uk-tile-secondary{background:#222}.bc-root .bc-uk-card{position:relative;box-sizing:border-box;transition:box-shadow .1s ease-in-out}.bc-root .bc-uk-card-body{padding:30px 30px}.bc-root .bc-uk-card-header{padding:15px 30px}.bc-root .bc-uk-card-footer{padding:15px 30px}@media(min-width: 1200px){.bc-root .bc-uk-card-body{padding:40px 40px}.bc-root .bc-uk-card-header{padding:20px 40px}.bc-root .bc-uk-card-footer{padding:20px 40px}}.bc-root .bc-uk-card-body::before,.bc-root .bc-uk-card-body::after,.bc-root .bc-uk-card-header::before,.bc-root .bc-uk-card-header::after,.bc-root .bc-uk-card-footer::before,.bc-root .bc-uk-card-footer::after{content:"";display:table}.bc-root .bc-uk-card-body::after,.bc-root .bc-uk-card-header::after,.bc-root .bc-uk-card-footer::after{clear:both}.bc-root .bc-uk-card-body>:last-child,.bc-root .bc-uk-card-header>:last-child,.bc-root .bc-uk-card-footer>:last-child{margin-bottom:0}.bc-root .bc-uk-card-title{font-size:1.5rem;line-height:1.4}.bc-root .bc-uk-card-badge{position:absolute;top:30px;right:30px;z-index:1}.bc-root .bc-uk-card-badge:first-child+*{margin-top:0}.bc-root .bc-uk-card-hover:not(.bc-uk-card-default):not(.bc-uk-card-primary):not(.bc-uk-card-secondary):hover{background:#fff;box-shadow:0 14px 25px rgba(0,0,0,.16)}.bc-root .bc-uk-card-default{background:#fff;color:#666;box-shadow:0 5px 15px rgba(0,0,0,.08)}.bc-root .bc-uk-card-default .bc-uk-card-title{color:#333}.bc-root .bc-uk-card-default.bc-uk-card-hover:hover{background-color:#fff;box-shadow:0 14px 25px rgba(0,0,0,.16)}.bc-root .bc-uk-card-default .bc-uk-card-header{border-bottom:1px solid #e5e5e5}.bc-root .bc-uk-card-default .bc-uk-card-footer{border-top:1px solid #e5e5e5}.bc-root .bc-uk-card-primary{background:#1e87f0;color:#fff;box-shadow:0 5px 15px rgba(0,0,0,.08)}.bc-root .bc-uk-card-primary .bc-uk-card-title{color:#fff}.bc-root .bc-uk-card-primary.bc-uk-card-hover:hover{background-color:#1e87f0;box-shadow:0 14px 25px rgba(0,0,0,.16)}.bc-root .bc-uk-card-secondary{background:#222;color:#fff;box-shadow:0 5px 15px rgba(0,0,0,.08)}.bc-root .bc-uk-card-secondary .bc-uk-card-title{color:#fff}.bc-root .bc-uk-card-secondary.bc-uk-card-hover:hover{background-color:#222;box-shadow:0 14px 25px rgba(0,0,0,.16)}.bc-root .bc-uk-card-small.bc-uk-card-body,.bc-root .bc-uk-card-small .bc-uk-card-body{padding:20px 20px}.bc-root .bc-uk-card-small .bc-uk-card-header{padding:13px 20px}.bc-root .bc-uk-card-small .bc-uk-card-footer{padding:13px 20px}@media(min-width: 1200px){.bc-root .bc-uk-card-large.bc-uk-card-body,.bc-root .bc-uk-card-large .bc-uk-card-body{padding:70px 70px}.bc-root .bc-uk-card-large .bc-uk-card-header{padding:35px 70px}.bc-root .bc-uk-card-large .bc-uk-card-footer{padding:35px 70px}}.bc-root .bc-uk-card-body>.bc-uk-nav-default{margin-left:-30px;margin-right:-30px}.bc-root .bc-uk-card-body>.bc-uk-nav-default:only-child{margin-top:-15px;margin-bottom:-15px}.bc-root .bc-uk-card-body .bc-uk-nav-default>li>a,.bc-root .bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-header,.bc-root .bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-divider{padding-left:30px;padding-right:30px}.bc-root .bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-sub{padding-left:45px}@media(min-width: 1200px){.bc-root .bc-uk-card-body>.bc-uk-nav-default{margin-left:-40px;margin-right:-40px}.bc-root .bc-uk-card-body>.bc-uk-nav-default:only-child{margin-top:-25px;margin-bottom:-25px}.bc-root .bc-uk-card-body .bc-uk-nav-default>li>a,.bc-root .bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-header,.bc-root .bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-divider{padding-left:40px;padding-right:40px}.bc-root .bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-sub{padding-left:55px}}.bc-root .bc-uk-card-small>.bc-uk-nav-default{margin-left:-20px;margin-right:-20px}.bc-root .bc-uk-card-small>.bc-uk-nav-default:only-child{margin-top:-5px;margin-bottom:-5px}.bc-root .bc-uk-card-small .bc-uk-nav-default>li>a,.bc-root .bc-uk-card-small .bc-uk-nav-default .bc-uk-nav-header,.bc-root .bc-uk-card-small .bc-uk-nav-default .bc-uk-nav-divider{padding-left:20px;padding-right:20px}.bc-root .bc-uk-card-small .bc-uk-nav-default .bc-uk-nav-sub{padding-left:35px}@media(min-width: 1200px){.bc-root .bc-uk-card-large>.bc-uk-nav-default{margin:0}.bc-root .bc-uk-card-large>.bc-uk-nav-default:only-child{margin:0}.bc-root .bc-uk-card-large .bc-uk-nav-default>li>a,.bc-root .bc-uk-card-large .bc-uk-nav-default .bc-uk-nav-header,.bc-root .bc-uk-card-large .bc-uk-nav-default .bc-uk-nav-divider{padding-left:0;padding-right:0}.bc-root .bc-uk-card-large .bc-uk-nav-default .bc-uk-nav-sub{padding-left:15px}}.bc-root .bc-uk-close{color:#999;transition:.1s ease-in-out;transition-property:color,opacity}.bc-root .bc-uk-close:hover,.bc-root .bc-uk-close:focus{color:#666;outline:none}.bc-root .bc-uk-spinner>*{animation:uk-spinner-rotate 1.4s linear infinite}@keyframes uk-spinner-rotate{0%{transform:rotate(0deg)}100%{transform:rotate(270deg)}}.bc-root .bc-uk-spinner>*>*{stroke-dasharray:88px;stroke-dashoffset:0;transform-origin:center;animation:uk-spinner-dash 1.4s ease-in-out infinite;stroke-width:1;stroke-linecap:round}@keyframes uk-spinner-dash{0%{stroke-dashoffset:88px}50%{stroke-dashoffset:22px;transform:rotate(135deg)}100%{stroke-dashoffset:88px;transform:rotate(450deg)}}.bc-root .bc-uk-totop{padding:5px;color:#999;transition:color .1s ease-in-out}.bc-root .bc-uk-totop:hover,.bc-root .bc-uk-totop:focus{color:#666;outline:none}.bc-root .bc-uk-totop:active{color:#333}.bc-root .bc-uk-marker{padding:5px;background:#222;color:#fff;border-radius:500px}.bc-root .bc-uk-marker:hover,.bc-root .bc-uk-marker:focus{color:#fff;outline:none}.bc-root .bc-uk-alert{position:relative;margin-bottom:20px;padding:15px 29px 15px 15px;background:#f8f8f8;color:#666}.bc-root *+.bc-uk-alert{margin-top:20px}.bc-root .bc-uk-alert>:last-child{margin-bottom:0}.bc-root .bc-uk-alert-close{position:absolute;top:20px;right:15px;color:inherit;opacity:.4}.bc-root .bc-uk-alert-close:first-child+*{margin-top:0}.bc-root .bc-uk-alert-close:hover,.bc-root .bc-uk-alert-close:focus{color:inherit;opacity:.8}.bc-root .bc-uk-alert-primary{background:#d8eafc;color:#1e87f0}.bc-root .bc-uk-alert-success{background:#edfbf6;color:#32d296}.bc-root .bc-uk-alert-warning{background:#fff6ee;color:#faa05a}.bc-root .bc-uk-alert-danger{background:#fef4f6;color:#f0506e}.bc-root .bc-uk-alert h1,.bc-root .bc-uk-alert h2,.bc-root .bc-uk-alert h3,.bc-root .bc-uk-alert h4,.bc-root .bc-uk-alert h5,.bc-root .bc-uk-alert h6{color:inherit}.bc-root .bc-uk-alert a:not([class]){color:inherit;text-decoration:underline}.bc-root .bc-uk-alert a:not([class]):hover{color:inherit;text-decoration:underline}.bc-root .bc-uk-badge{box-sizing:border-box;min-width:22px;height:22px;padding:0 5px;border-radius:500px;vertical-align:middle;background:#1e87f0;color:#fff;font-size:.875rem;display:inline-flex;justify-content:center;align-items:center}.bc-root .bc-uk-badge:hover,.bc-root .bc-uk-badge:focus{color:#fff;text-decoration:none;outline:none}.bc-root .bc-uk-label{display:inline-block;padding:0 10px;background:#1e87f0;line-height:1.5;font-size:.875rem;color:#fff;vertical-align:middle;white-space:nowrap;border-radius:2px;text-transform:uppercase}.bc-root .bc-uk-label-success{background-color:#32d296;color:#fff}.bc-root .bc-uk-label-warning{background-color:#faa05a;color:#fff}.bc-root .bc-uk-label-danger{background-color:#f0506e;color:#fff}.bc-root .bc-uk-overlay{padding:30px 30px}.bc-root .bc-uk-overlay>:last-child{margin-bottom:0}.bc-root .bc-uk-overlay-default{background:rgba(255,255,255,.8)}.bc-root .bc-uk-overlay-primary{background:rgba(34,34,34,.8)}.bc-root .bc-uk-article::before,.bc-root .bc-uk-article::after{content:"";display:table}.bc-root .bc-uk-article::after{clear:both}.bc-root .bc-uk-article>:last-child{margin-bottom:0}.bc-root .bc-uk-article+.bc-uk-article{margin-top:70px}.bc-root .bc-uk-article-title{font-size:2.23125rem;line-height:1.2}@media(min-width: 960px){.bc-root .bc-uk-article-title{font-size:2.625rem}}.bc-root .bc-uk-article-meta{font-size:.875rem;line-height:1.4;color:#999}.bc-root .bc-uk-article-meta a{color:#999}.bc-root .bc-uk-article-meta a:hover{color:#666;text-decoration:none}.bc-root .bc-uk-comment-body{overflow-wrap:break-word;word-wrap:break-word}.bc-root .bc-uk-comment-header{margin-bottom:20px}.bc-root .bc-uk-comment-body::before,.bc-root .bc-uk-comment-body::after,.bc-root .bc-uk-comment-header::before,.bc-root .bc-uk-comment-header::after{content:"";display:table}.bc-root .bc-uk-comment-body::after,.bc-root .bc-uk-comment-header::after{clear:both}.bc-root .bc-uk-comment-body>:last-child,.bc-root .bc-uk-comment-header>:last-child{margin-bottom:0}.bc-root .bc-uk-comment-title{font-size:1.25rem;line-height:1.4}.bc-root .bc-uk-comment-meta{font-size:.875rem;line-height:1.4;color:#999}.bc-root .bc-uk-comment-list{padding:0;list-style:none}.bc-root .bc-uk-comment-list>:nth-child(n+2){margin-top:70px}.bc-root .bc-uk-comment-list .bc-uk-comment~ul{margin:70px 0 0 0;padding-left:30px;list-style:none}@media(min-width: 960px){.bc-root .bc-uk-comment-list .bc-uk-comment~ul{padding-left:100px}}.bc-root .bc-uk-comment-list .bc-uk-comment~ul>:nth-child(n+2){margin-top:70px}.bc-root .bc-uk-comment-primary{padding:30px;background-color:#f8f8f8}.bc-root .bc-uk-search{display:inline-block;position:relative;max-width:100%;margin:0}.bc-root .bc-uk-search-input::-webkit-search-cancel-button,.bc-root .bc-uk-search-input::-webkit-search-decoration{-webkit-appearance:none}.bc-root .bc-uk-search-input::-moz-placeholder{opacity:1}.bc-root .bc-uk-search-input{box-sizing:border-box;margin:0;border-radius:0;font:inherit;overflow:visible;-webkit-appearance:none;vertical-align:middle;width:100%;border:none;color:#666}.bc-root .bc-uk-search-input:focus{outline:none}.bc-root .bc-uk-search-input:-ms-input-placeholder{color:#999 !important}.bc-root .bc-uk-search-input::placeholder{color:#999}.bc-root .bc-uk-search-icon:focus{outline:none}.bc-root .bc-uk-search .bc-uk-search-icon{position:absolute;top:0;bottom:0;left:0;display:inline-flex;justify-content:center;align-items:center;color:#999}.bc-root .bc-uk-search .bc-uk-search-icon:hover{color:#999}.bc-root .bc-uk-search .bc-uk-search-icon:not(a):not(button):not(input){pointer-events:none}.bc-root .bc-uk-search .bc-uk-search-icon-flip{right:0;left:auto}.bc-root .bc-uk-search-default{width:180px}.bc-root .bc-uk-search-default .bc-uk-search-input{height:40px;padding-left:6px;padding-right:6px;background:transparent;border:1px solid #e5e5e5}.bc-root .bc-uk-search-default .bc-uk-search-input:focus{background-color:transparent}.bc-root .bc-uk-search-default .bc-uk-search-icon{width:40px}.bc-root .bc-uk-search-default .bc-uk-search-icon:not(.bc-uk-search-icon-flip)~.bc-uk-search-input{padding-left:40px}.bc-root .bc-uk-search-default .bc-uk-search-icon-flip~.bc-uk-search-input{padding-right:40px}.bc-root .bc-uk-search-navbar{width:400px}.bc-root .bc-uk-search-navbar .bc-uk-search-input{height:40px;background:transparent;font-size:1.5rem}.bc-root .bc-uk-search-navbar .bc-uk-search-icon{width:40px}.bc-root .bc-uk-search-navbar .bc-uk-search-icon:not(.bc-uk-search-icon-flip)~.bc-uk-search-input{padding-left:40px}.bc-root .bc-uk-search-navbar .bc-uk-search-icon-flip~.bc-uk-search-input{padding-right:40px}.bc-root .bc-uk-search-large{width:500px}.bc-root .bc-uk-search-large .bc-uk-search-input{height:80px;background:transparent;font-size:2.625rem}.bc-root .bc-uk-search-large .bc-uk-search-icon{width:80px}.bc-root .bc-uk-search-large .bc-uk-search-icon:not(.bc-uk-search-icon-flip)~.bc-uk-search-input{padding-left:80px}.bc-root .bc-uk-search-large .bc-uk-search-icon-flip~.bc-uk-search-input{padding-right:80px}.bc-root .bc-uk-search-toggle{color:#999}.bc-root .bc-uk-search-toggle:hover,.bc-root .bc-uk-search-toggle:focus{color:#666}.bc-root .bc-uk-nav,.bc-root .bc-uk-nav ul{margin:0;padding:0;list-style:none}.bc-root .bc-uk-nav li>a{display:block;text-decoration:none}.bc-root .bc-uk-nav li>a:focus{outline:none}.bc-root .bc-uk-nav>li>a{padding:5px 0}.bc-root ul.bc-uk-nav-sub{padding:5px 0 5px 15px}.bc-root .bc-uk-nav-sub ul{padding-left:15px}.bc-root .bc-uk-nav-sub a{padding:2px 0}.bc-root .bc-uk-nav-parent-icon>.bc-uk-parent>a::after{content:"";width:1.5em;height:1.5em;float:right;background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23666%22%20stroke-width%3D%221.1%22%20points%3D%2210%201%204%207%2010%2013%22%20%2F%3E%0A%3C%2Fsvg%3E");background-repeat:no-repeat;background-position:50% 50%}.bc-root .bc-uk-nav-parent-icon>.bc-uk-parent.bc-uk-open>a::after{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23666%22%20stroke-width%3D%221.1%22%20points%3D%221%204%207%2010%2013%204%22%20%2F%3E%0A%3C%2Fsvg%3E")}.bc-root .bc-uk-nav-header{padding:5px 0;text-transform:uppercase;font-size:.875rem}.bc-root .bc-uk-nav-header:not(:first-child){margin-top:20px}.bc-root .bc-uk-nav-divider{margin:5px 0}.bc-root .bc-uk-nav-default{font-size:.875rem}.bc-root .bc-uk-nav-default>li>a{color:#999}.bc-root .bc-uk-nav-default>li>a:hover,.bc-root .bc-uk-nav-default>li>a:focus{color:#666}.bc-root .bc-uk-nav-default>li.bc-uk-active>a{color:#333}.bc-root .bc-uk-nav-default .bc-uk-nav-header{color:#333}.bc-root .bc-uk-nav-default .bc-uk-nav-divider{border-top:1px solid #e5e5e5}.bc-root .bc-uk-nav-default .bc-uk-nav-sub a{color:#999}.bc-root .bc-uk-nav-default .bc-uk-nav-sub a:hover,.bc-root .bc-uk-nav-default .bc-uk-nav-sub a:focus{color:#666}.bc-root .bc-uk-nav-default .bc-uk-nav-sub li.bc-uk-active>a{color:#333}.bc-root .bc-uk-nav-primary>li>a{font-size:1.5rem;line-height:1.5;color:#999}.bc-root .bc-uk-nav-primary>li>a:hover,.bc-root .bc-uk-nav-primary>li>a:focus{color:#666}.bc-root .bc-uk-nav-primary>li.bc-uk-active>a{color:#333}.bc-root .bc-uk-nav-primary .bc-uk-nav-header{color:#333}.bc-root .bc-uk-nav-primary .bc-uk-nav-divider{border-top:1px solid #e5e5e5}.bc-root .bc-uk-nav-primary .bc-uk-nav-sub a{color:#999}.bc-root .bc-uk-nav-primary .bc-uk-nav-sub a:hover,.bc-root .bc-uk-nav-primary .bc-uk-nav-sub a:focus{color:#666}.bc-root .bc-uk-nav-primary .bc-uk-nav-sub li.bc-uk-active>a{color:#333}.bc-root .bc-uk-nav-center{text-align:center}.bc-root .bc-uk-nav-center .bc-uk-nav-sub,.bc-root .bc-uk-nav-center .bc-uk-nav-sub ul{padding-left:0}.bc-root .bc-uk-nav-center.bc-uk-nav-parent-icon>.bc-uk-parent>a::after{position:absolute}.bc-root .bc-uk-navbar{display:flex;position:relative}.bc-root .bc-uk-navbar-container:not(.bc-uk-navbar-transparent){background:#f8f8f8}.bc-root .bc-uk-navbar-container>::before,.bc-root .bc-uk-navbar-container>::after{display:none !important}.bc-root .bc-uk-navbar-left,.bc-root .bc-uk-navbar-right,.bc-root .bc-uk-navbar-center,.bc-root .bc-uk-navbar-center-left>*,.bc-root .bc-uk-navbar-center-right>*{display:flex;align-items:center}.bc-root .bc-uk-navbar-right{margin-left:auto}.bc-root .bc-uk-navbar-center:only-child{margin-left:auto;margin-right:auto;position:relative}.bc-root .bc-uk-navbar-center:not(:only-child){position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);z-index:990}.bc-root .bc-uk-navbar-center:not(:only-child) .bc-uk-navbar-nav>li>a,.bc-root .bc-uk-navbar-center:not(:only-child) .bc-uk-navbar-item,.bc-root .bc-uk-navbar-center:not(:only-child) .bc-uk-navbar-toggle{white-space:nowrap}.bc-root .bc-uk-navbar-center-left,.bc-root .bc-uk-navbar-center-right{position:absolute;top:0}.bc-root .bc-uk-navbar-center-left{right:100%}.bc-root .bc-uk-navbar-center-right{left:100%}.bc-root [class*=uk-navbar-center-] .bc-uk-navbar-nav>li>a,.bc-root [class*=uk-navbar-center-] .bc-uk-navbar-item,.bc-root [class*=uk-navbar-center-] .bc-uk-navbar-toggle{white-space:nowrap}.bc-root .bc-uk-navbar-nav{display:flex;margin:0;padding:0;list-style:none}.bc-root .bc-uk-navbar-left,.bc-root .bc-uk-navbar-right,.bc-root .bc-uk-navbar-center:only-child{flex-wrap:wrap}.bc-root .bc-uk-navbar-nav>li>a,.bc-root .bc-uk-navbar-item,.bc-root .bc-uk-navbar-toggle{display:flex;justify-content:center;align-items:center;box-sizing:border-box;min-height:80px;padding:0 15px;font-size:.875rem;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";text-decoration:none}.bc-root .bc-uk-navbar-nav>li>a{color:#999;text-transform:uppercase;transition:.1s ease-in-out;transition-property:color,background-color}.bc-root .bc-uk-navbar-nav>li:hover>a,.bc-root .bc-uk-navbar-nav>li>a:focus,.bc-root .bc-uk-navbar-nav>li>a.bc-uk-open{color:#666;outline:none}.bc-root .bc-uk-navbar-nav>li>a:active{color:#333}.bc-root .bc-uk-navbar-nav>li.bc-uk-active>a{color:#333}.bc-root .bc-uk-navbar-item{color:#666}.bc-root .bc-uk-navbar-toggle{color:#999}.bc-root .bc-uk-navbar-toggle:hover,.bc-root .bc-uk-navbar-toggle:focus,.bc-root .bc-uk-navbar-toggle.bc-uk-open{color:#666;outline:none;text-decoration:none}.bc-root .bc-uk-navbar-subtitle{font-size:.875rem}.bc-root .bc-uk-navbar-dropdown{display:none;position:absolute;z-index:1020;box-sizing:border-box;width:200px;padding:25px;background:#fff;color:#666;box-shadow:0 5px 12px rgba(0,0,0,.15)}.bc-root .bc-uk-navbar-dropdown.bc-uk-open{display:block}.bc-root [class*=uk-navbar-dropdown-top]{margin-top:-15px}.bc-root [class*=uk-navbar-dropdown-bottom]{margin-top:15px}.bc-root [class*=uk-navbar-dropdown-left]{margin-left:-15px}.bc-root [class*=uk-navbar-dropdown-right]{margin-left:15px}.bc-root .bc-uk-navbar-dropdown-grid{margin-left:-50px}.bc-root .bc-uk-navbar-dropdown-grid>*{padding-left:50px}.bc-root .bc-uk-navbar-dropdown-grid>.bc-uk-grid-margin{margin-top:50px}.bc-root .bc-uk-navbar-dropdown-stack .bc-uk-navbar-dropdown-grid>*{width:100% !important}.bc-root .bc-uk-navbar-dropdown-width-2:not(.bc-uk-navbar-dropdown-stack){width:400px}.bc-root .bc-uk-navbar-dropdown-width-3:not(.bc-uk-navbar-dropdown-stack){width:600px}.bc-root .bc-uk-navbar-dropdown-width-4:not(.bc-uk-navbar-dropdown-stack){width:800px}.bc-root .bc-uk-navbar-dropdown-width-5:not(.bc-uk-navbar-dropdown-stack){width:1000px}.bc-root .bc-uk-navbar-dropdown-dropbar{margin-top:0;margin-bottom:0;box-shadow:none}.bc-root .bc-uk-navbar-dropdown-nav{font-size:.875rem}.bc-root .bc-uk-navbar-dropdown-nav>li>a{color:#999}.bc-root .bc-uk-navbar-dropdown-nav>li>a:hover,.bc-root .bc-uk-navbar-dropdown-nav>li>a:focus{color:#666}.bc-root .bc-uk-navbar-dropdown-nav>li.bc-uk-active>a{color:#333}.bc-root .bc-uk-navbar-dropdown-nav .bc-uk-nav-header{color:#333}.bc-root .bc-uk-navbar-dropdown-nav .bc-uk-nav-divider{border-top:1px solid #e5e5e5}.bc-root .bc-uk-navbar-dropdown-nav .bc-uk-nav-sub a{color:#999}.bc-root .bc-uk-navbar-dropdown-nav .bc-uk-nav-sub a:hover,.bc-root .bc-uk-navbar-dropdown-nav .bc-uk-nav-sub a:focus{color:#666}.bc-root .bc-uk-navbar-dropdown-nav .bc-uk-nav-sub li.bc-uk-active>a{color:#333}.bc-root .bc-uk-navbar-dropbar{background:#fff}.bc-root .bc-uk-navbar-dropbar-slide{position:absolute;z-index:980;left:0;right:0;box-shadow:0 5px 7px rgba(0,0,0,.05)}.bc-root .bc-uk-navbar-container>.bc-uk-container .bc-uk-navbar-left{margin-left:-15px;margin-right:-15px}.bc-root .bc-uk-navbar-container>.bc-uk-container .bc-uk-navbar-right{margin-right:-15px}.bc-root .bc-uk-navbar-dropdown-grid>*{position:relative}.bc-root .bc-uk-navbar-dropdown-grid>:not(.bc-uk-first-column)::before{content:"";position:absolute;top:0;bottom:0;left:25px;border-left:1px solid #e5e5e5}.bc-root .bc-uk-navbar-dropdown-grid.bc-uk-grid-stack>.bc-uk-grid-margin::before{content:"";position:absolute;top:-25px;left:50px;right:0;border-top:1px solid #e5e5e5}.bc-root .bc-uk-subnav{display:flex;flex-wrap:wrap;margin-left:-20px;padding:0;list-style:none}.bc-root .bc-uk-subnav>*{flex:none;padding-left:20px;position:relative}.bc-root .bc-uk-subnav>*>:first-child{display:block;color:#999;font-size:.875rem;text-transform:uppercase;transition:.1s ease-in-out;transition-property:color,background-color}.bc-root .bc-uk-subnav>*>a:hover,.bc-root .bc-uk-subnav>*>a:focus{color:#666;text-decoration:none;outline:none}.bc-root .bc-uk-subnav>.bc-uk-active>a{color:#333}.bc-root .bc-uk-subnav-divider>*{display:flex;align-items:center}.bc-root .bc-uk-subnav-divider>:nth-child(n+2):not(.bc-uk-first-column)::before{content:"";height:1.5em;margin-left:0px;margin-right:20px;border-left:1px solid #e5e5e5}.bc-root .bc-uk-subnav-pill>*>:first-child{padding:5px 10px;background:transparent;color:#999}.bc-root .bc-uk-subnav-pill>*>a:hover,.bc-root .bc-uk-subnav-pill>*>a:focus{background-color:#f8f8f8;color:#666}.bc-root .bc-uk-subnav-pill>*>a:active{background-color:#f8f8f8;color:#666}.bc-root .bc-uk-subnav-pill>.bc-uk-active>a{background-color:#1e87f0;color:#fff}.bc-root .bc-uk-subnav>.bc-uk-disabled>a{color:#999}.bc-root .bc-uk-breadcrumb{display:flex;flex-wrap:wrap;padding:0;list-style:none}.bc-root .bc-uk-breadcrumb>*{flex:none}.bc-root .bc-uk-breadcrumb>*>*{display:inline-block;font-size:.875rem;color:#999}.bc-root .bc-uk-breadcrumb>*>:hover,.bc-root .bc-uk-breadcrumb>*>:focus{color:#666;text-decoration:none}.bc-root .bc-uk-breadcrumb>:last-child>*{color:#666}.bc-root .bc-uk-breadcrumb>:nth-child(n+2):not(.bc-uk-first-column)::before{content:"/";display:inline-block;margin:0 20px;color:#999}.bc-root .bc-uk-pagination{display:flex;flex-wrap:wrap;margin-left:-20px;padding:0;list-style:none}.bc-root .bc-uk-pagination>*{flex:none;padding-left:20px;position:relative}.bc-root .bc-uk-pagination>*>*{display:block;color:#999;transition:color .1s ease-in-out}.bc-root .bc-uk-pagination>*>:hover,.bc-root .bc-uk-pagination>*>:focus{color:#666;text-decoration:none}.bc-root .bc-uk-pagination>.bc-uk-active>*{color:#666}.bc-root .bc-uk-pagination>.bc-uk-disabled>*{color:#999}.bc-root .bc-uk-tab{display:flex;flex-wrap:wrap;margin-left:-20px;padding:0;list-style:none;position:relative}.bc-root .bc-uk-tab li{margin-bottom:0}.bc-root .bc-uk-tab::before{content:"";position:absolute;bottom:0;left:20px;right:0;border-bottom:1px solid #e5e5e5}.bc-root .bc-uk-tab>*{flex:none;padding-left:20px;position:relative}.bc-root .bc-uk-tab>*>a{display:block;text-align:center;padding:5px 10px;color:#999;border-bottom:1px solid transparent;font-size:.875rem;text-transform:uppercase;transition:color .1s ease-in-out}.bc-root .bc-uk-tab>*>a:hover,.bc-root .bc-uk-tab>*>a:focus{color:#666;text-decoration:none}.bc-root .bc-uk-tab>.bc-uk-active>a{color:#333;border-color:#1e87f0}.bc-root .bc-uk-tab>.bc-uk-disabled>a{color:#999}.bc-root .bc-uk-tab-bottom::before{top:0;bottom:auto}.bc-root .bc-uk-tab-bottom>*>a{border-top:1px solid transparent;border-bottom:none}.bc-root .bc-uk-tab-left,.bc-root .bc-uk-tab-right{flex-direction:column;margin-left:0}.bc-root .bc-uk-tab-left>*,.bc-root .bc-uk-tab-right>*{padding-left:0}.bc-root .bc-uk-tab-left::before{top:0;bottom:0;left:auto;right:0;border-left:1px solid #e5e5e5;border-bottom:none}.bc-root .bc-uk-tab-right::before{top:0;bottom:0;left:0;right:auto;border-left:1px solid #e5e5e5;border-bottom:none}.bc-root .bc-uk-tab-left>*>a{text-align:left;border-right:1px solid transparent;border-bottom:none}.bc-root .bc-uk-tab-right>*>a{text-align:left;border-left:1px solid transparent;border-bottom:none}.bc-root .bc-uk-tab .bc-uk-dropdown{margin-left:30px}.bc-root .bc-uk-slidenav{padding:5px 10px;color:rgba(102,102,102,.5);transition:color .1s ease-in-out}.bc-root .bc-uk-slidenav:hover,.bc-root .bc-uk-slidenav:focus{color:rgba(102,102,102,.9);outline:none}.bc-root .bc-uk-slidenav:active{color:rgba(102,102,102,.5)}.bc-root .bc-uk-slidenav-large{padding:10px 10px}.bc-root .bc-uk-slidenav-container{display:flex}.bc-root .bc-uk-dotnav{display:flex;flex-wrap:wrap;margin:0;padding:0;list-style:none;margin-left:-12px}.bc-root .bc-uk-dotnav>*{flex:none;padding-left:12px}.bc-root .bc-uk-dotnav>*>*{display:block;box-sizing:border-box;width:10px;height:10px;border-radius:50%;background:transparent;text-indent:100%;overflow:hidden;white-space:nowrap;border:1px solid rgba(102,102,102,.4);transition:.2s ease-in-out;transition-property:background-color,border-color}.bc-root .bc-uk-dotnav>*>:hover,.bc-root .bc-uk-dotnav>*>:focus{background-color:rgba(102,102,102,.6);outline:none;border-color:transparent}.bc-root .bc-uk-dotnav>*>:active{background-color:rgba(102,102,102,.2);border-color:transparent}.bc-root .bc-uk-dotnav>.bc-uk-active>*{background-color:rgba(102,102,102,.6);border-color:transparent}.bc-root .bc-uk-dotnav-vertical{flex-direction:column;margin-left:0;margin-top:-12px}.bc-root .bc-uk-dotnav-vertical>*{padding-left:0;padding-top:12px}.bc-root .bc-uk-thumbnav{display:flex;flex-wrap:wrap;margin:0;padding:0;list-style:none;margin-left:-15px}.bc-root .bc-uk-thumbnav>*{padding-left:15px}.bc-root .bc-uk-thumbnav>*>*{display:inline-block;position:relative}.bc-root .bc-uk-thumbnav>*>*::after{content:"";position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(255,255,255,.4);transition:background-color .1s ease-in-out}.bc-root .bc-uk-thumbnav>*>:hover,.bc-root .bc-uk-thumbnav>*>:focus{outline:none}.bc-root .bc-uk-thumbnav>*>:hover::after,.bc-root .bc-uk-thumbnav>*>:focus::after{background-color:transparent}.bc-root .bc-uk-thumbnav>.bc-uk-active>*::after{background-color:transparent}.bc-root .bc-uk-thumbnav-vertical{flex-direction:column;margin-left:0;margin-top:-15px}.bc-root .bc-uk-thumbnav-vertical>*{padding-left:0;padding-top:15px}.bc-root .bc-uk-accordion{padding:0;list-style:none}.bc-root .bc-uk-accordion>:nth-child(n+2){margin-top:20px}.bc-root .bc-uk-accordion-title{display:block;font-size:1.25rem;line-height:1.4;color:#333;overflow:hidden}.bc-root .bc-uk-accordion-title::before{content:"";width:1.4em;height:1.4em;margin-left:10px;float:right;background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%221%22%20height%3D%2213%22%20x%3D%226%22%20y%3D%220%22%20%2F%3E%0A%3C%2Fsvg%3E");background-repeat:no-repeat;background-position:50% 50%}.bc-root .bc-uk-open>.bc-uk-accordion-title::before{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%3C%2Fsvg%3E")}.bc-root .bc-uk-accordion-title:hover,.bc-root .bc-uk-accordion-title:focus{color:#666;text-decoration:none;outline:none}.bc-root .bc-uk-accordion-content{margin-top:20px}.bc-root .bc-uk-accordion-content::before,.bc-root .bc-uk-accordion-content::after{content:"";display:table}.bc-root .bc-uk-accordion-content::after{clear:both}.bc-root .bc-uk-accordion-content>:last-child{margin-bottom:0}.bc-root .bc-uk-drop{display:none;position:absolute;z-index:1020;box-sizing:border-box;width:300px}.bc-root .bc-uk-drop.bc-uk-open{display:block}.bc-root [class*=uk-drop-top]{margin-top:-20px}.bc-root [class*=uk-drop-bottom]{margin-top:20px}.bc-root [class*=uk-drop-left]{margin-left:-20px}.bc-root [class*=uk-drop-right]{margin-left:20px}.bc-root .bc-uk-drop-stack .bc-uk-drop-grid>*{width:100% !important}.bc-root .bc-uk-dropdown{display:none;position:absolute;z-index:1020;box-sizing:border-box;min-width:200px;padding:25px;background:#fff;color:#666;box-shadow:0 5px 12px rgba(0,0,0,.15)}.bc-root .bc-uk-dropdown.bc-uk-open{display:block}.bc-root .bc-uk-dropdown-nav{white-space:nowrap;font-size:.875rem}.bc-root .bc-uk-dropdown-nav>li>a{color:#999}.bc-root .bc-uk-dropdown-nav>li>a:hover,.bc-root .bc-uk-dropdown-nav>li>a:focus,.bc-root .bc-uk-dropdown-nav>li.bc-uk-active>a{color:#666}.bc-root .bc-uk-dropdown-nav .bc-uk-nav-header{color:#333}.bc-root .bc-uk-dropdown-nav .bc-uk-nav-divider{border-top:1px solid #e5e5e5}.bc-root .bc-uk-dropdown-nav .bc-uk-nav-sub a{color:#999}.bc-root .bc-uk-dropdown-nav .bc-uk-nav-sub a:hover,.bc-root .bc-uk-dropdown-nav .bc-uk-nav-sub a:focus,.bc-root .bc-uk-dropdown-nav .bc-uk-nav-sub li.bc-uk-active>a{color:#666}.bc-root [class*=uk-dropdown-top]{margin-top:-10px}.bc-root [class*=uk-dropdown-bottom]{margin-top:10px}.bc-root [class*=uk-dropdown-left]{margin-left:-10px}.bc-root [class*=uk-dropdown-right]{margin-left:10px}.bc-root .bc-uk-dropdown-stack .bc-uk-dropdown-grid>*{width:100% !important}.bc-root .bc-uk-modal{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1010;overflow-y:auto;-webkit-overflow-scrolling:touch;padding:15px 15px;background:rgba(0,0,0,.6);opacity:0;transition:opacity .15s linear}@media(min-width: 640px){.bc-root .bc-uk-modal{padding:50px 30px}}@media(min-width: 960px){.bc-root .bc-uk-modal{padding-left:40px;padding-right:40px}}.bc-root .bc-uk-modal.bc-uk-open{opacity:1}.bc-root .bc-uk-modal-page{overflow:hidden}.bc-root .bc-uk-modal-dialog{position:relative;box-sizing:border-box;margin:0 auto;width:600px;max-width:calc(100% - 0.01px) !important;background:#fff;opacity:0;transform:translateY(-100px);transition:.3s linear;transition-property:opacity,transform}.bc-root .bc-uk-open>.bc-uk-modal-dialog{opacity:1;transform:translateY(0)}.bc-root .bc-uk-modal-container .bc-uk-modal-dialog{width:1200px}.bc-root .bc-uk-modal-full{padding:0;background:none}.bc-root .bc-uk-modal-full .bc-uk-modal-dialog{margin:0;width:100%;max-width:100%;transform:translateY(0)}.bc-root .bc-uk-modal-body{padding:30px 30px}.bc-root .bc-uk-modal-header{padding:15px 30px;background:#fff;border-bottom:1px solid #e5e5e5}.bc-root .bc-uk-modal-footer{padding:15px 30px;background:#fff;border-top:1px solid #e5e5e5}.bc-root .bc-uk-modal-body::before,.bc-root .bc-uk-modal-body::after,.bc-root .bc-uk-modal-header::before,.bc-root .bc-uk-modal-header::after,.bc-root .bc-uk-modal-footer::before,.bc-root .bc-uk-modal-footer::after{content:"";display:table}.bc-root .bc-uk-modal-body::after,.bc-root .bc-uk-modal-header::after,.bc-root .bc-uk-modal-footer::after{clear:both}.bc-root .bc-uk-modal-body>:last-child,.bc-root .bc-uk-modal-header>:last-child,.bc-root .bc-uk-modal-footer>:last-child{margin-bottom:0}.bc-root .bc-uk-modal-title{font-size:2rem;line-height:1.3}.bc-root [class*=uk-modal-close-]{position:absolute;z-index:1010;top:10px;right:10px;padding:5px}.bc-root [class*=uk-modal-close-]:first-child+*{margin-top:0}.bc-root .bc-uk-modal-close-outside{top:0;right:-5px;transform:translate(0, -100%);color:#fff}.bc-root .bc-uk-modal-close-outside:hover{color:#fff}@media(min-width: 960px){.bc-root .bc-uk-modal-close-outside{right:0;transform:translate(100%, -100%)}}.bc-root .bc-uk-modal-close-full{top:0;right:0;padding:20px;background:#fff}.bc-root .bc-uk-lightbox{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1010;background:#000;opacity:0;transition:opacity .15s linear}.bc-root .bc-uk-lightbox.bc-uk-open{display:block;opacity:1}.bc-root .bc-uk-lightbox-page{overflow:hidden}.bc-root .bc-uk-lightbox-items>*{position:absolute;top:0;right:0;bottom:0;left:0;display:none;justify-content:center;align-items:center;color:rgba(255,255,255,.7);will-change:transform,opacity}.bc-root .bc-uk-lightbox-items>*>*{max-width:100vw;max-height:100vh}.bc-root .bc-uk-lightbox-items>:focus{outline:none}.bc-root .bc-uk-lightbox-items>*>:not(iframe){width:auto;height:auto}.bc-root .bc-uk-lightbox-items>.bc-uk-active{display:flex}.bc-root .bc-uk-lightbox-toolbar{padding:10px 10px;background:rgba(0,0,0,.3);color:rgba(255,255,255,.7)}.bc-root .bc-uk-lightbox-toolbar>*{color:rgba(255,255,255,.7)}.bc-root .bc-uk-lightbox-toolbar-icon{padding:5px;color:rgba(255,255,255,.7)}.bc-root .bc-uk-lightbox-toolbar-icon:hover{color:#fff}.bc-root .bc-uk-lightbox-button{box-sizing:border-box;width:50px;height:50px;background:rgba(0,0,0,.3);color:rgba(255,255,255,.7);display:inline-flex;justify-content:center;align-items:center}.bc-root .bc-uk-lightbox-button:hover{color:#fff}.bc-root .bc-uk-lightbox-iframe{width:80%;height:80%}.bc-root .bc-uk-slideshow{-webkit-tap-highlight-color:transparent}.bc-root .bc-uk-slideshow-items{position:relative;z-index:0;margin:0;padding:0;list-style:none;overflow:hidden;-webkit-touch-callout:none}.bc-root .bc-uk-slideshow-items>*{position:absolute;top:0;left:0;right:0;bottom:0;overflow:hidden;will-change:transform,opacity;touch-action:pan-y}.bc-root .bc-uk-slideshow-items>:focus{outline:none}.bc-root .bc-uk-slideshow-items>:not(.bc-uk-active){display:none}.bc-root .bc-uk-slider{-webkit-tap-highlight-color:transparent}.bc-root .bc-uk-slider-container{overflow:hidden}.bc-root .bc-uk-slider-items{will-change:transform;position:relative}.bc-root .bc-uk-slider-items:not(.bc-uk-grid){display:flex;margin:0;padding:0;list-style:none;-webkit-touch-callout:none}.bc-root .bc-uk-slider-items.bc-uk-grid{flex-wrap:nowrap}.bc-root .bc-uk-slider-items>*{flex:none;position:relative;touch-action:pan-y}.bc-root .bc-uk-slider-items>:focus{outline:none}.bc-root .bc-uk-sticky-fixed{z-index:980;box-sizing:border-box;margin:0 !important;-webkit-backface-visibility:hidden;backface-visibility:hidden}.bc-root .bc-uk-sticky[class*=uk-animation-]{animation-duration:.2s}.bc-root .bc-uk-sticky.bc-uk-animation-reverse{animation-duration:.2s}.bc-root .bc-uk-offcanvas{display:none;position:fixed;top:0;bottom:0;left:0;z-index:1000}.bc-root .bc-uk-offcanvas-flip .bc-uk-offcanvas{right:0;left:auto}.bc-root .bc-uk-offcanvas-bar{position:absolute;top:0;bottom:0;left:-270px;box-sizing:border-box;width:270px;padding:20px 20px;background:#222;overflow-y:auto;-webkit-overflow-scrolling:touch}@media(min-width: 960px){.bc-root .bc-uk-offcanvas-bar{left:-350px;width:350px;padding:40px 40px}}.bc-root .bc-uk-offcanvas-flip .bc-uk-offcanvas-bar{left:auto;right:-270px}@media(min-width: 960px){.bc-root .bc-uk-offcanvas-flip .bc-uk-offcanvas-bar{right:-350px}}.bc-root .bc-uk-open>.bc-uk-offcanvas-bar{left:0}.bc-root .bc-uk-offcanvas-flip .bc-uk-open>.bc-uk-offcanvas-bar{left:auto;right:0}.bc-root .bc-uk-offcanvas-bar-animation{transition:left .3s ease-out}.bc-root .bc-uk-offcanvas-flip .bc-uk-offcanvas-bar-animation{transition-property:right}.bc-root .bc-uk-offcanvas-reveal{position:absolute;top:0;bottom:0;left:0;width:0;overflow:hidden;transition:width .3s ease-out}.bc-root .bc-uk-offcanvas-reveal .bc-uk-offcanvas-bar{left:0}.bc-root .bc-uk-offcanvas-flip .bc-uk-offcanvas-reveal .bc-uk-offcanvas-bar{left:auto;right:0}.bc-root .bc-uk-open>.bc-uk-offcanvas-reveal{width:270px}@media(min-width: 960px){.bc-root .bc-uk-open>.bc-uk-offcanvas-reveal{width:350px}}.bc-root .bc-uk-offcanvas-flip .bc-uk-offcanvas-reveal{right:0;left:auto}.bc-root .bc-uk-offcanvas-close{position:absolute;z-index:1000;top:20px;right:20px;padding:5px}.bc-root .bc-uk-offcanvas-overlay{width:100vw;touch-action:none}.bc-root .bc-uk-offcanvas-overlay::before{content:"";position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(0,0,0,.1);opacity:0;transition:opacity .15s linear}.bc-root .bc-uk-offcanvas-overlay.bc-uk-open::before{opacity:1}.bc-root .bc-uk-offcanvas-page,.bc-root .bc-uk-offcanvas-container{overflow-x:hidden}.bc-root .bc-uk-offcanvas-container{position:relative;left:0;transition:left .3s ease-out;box-sizing:border-box;width:100%}.bc-root :not(.bc-uk-offcanvas-flip).bc-uk-offcanvas-container-animation{left:270px}.bc-root .bc-uk-offcanvas-flip.bc-uk-offcanvas-container-animation{left:-270px}@media(min-width: 960px){.bc-root :not(.bc-uk-offcanvas-flip).bc-uk-offcanvas-container-animation{left:350px}.bc-root .bc-uk-offcanvas-flip.bc-uk-offcanvas-container-animation{left:-350px}}.bc-root .bc-uk-switcher{margin:0;padding:0;list-style:none}.bc-root .bc-uk-switcher>:not(.bc-uk-active){display:none}.bc-root .bc-uk-switcher>*>:last-child{margin-bottom:0}.bc-root .bc-uk-leader{overflow:hidden}.bc-root .bc-uk-leader-fill::after{display:inline-block;margin-left:15px;width:0;content:attr(data-fill);white-space:nowrap}.bc-root .bc-uk-leader-fill.bc-uk-leader-hide::after{display:none}.bc-root .bc-uk-leader-fill-content::before{content:"."}.bc-root .bc-uk-iconnav{display:flex;flex-wrap:wrap;margin:0;padding:0;list-style:none;margin-left:-10px}.bc-root .bc-uk-iconnav>*{padding-left:10px}.bc-root .bc-uk-iconnav>*>a{display:block;color:#999}.bc-root .bc-uk-iconnav>*>a:hover,.bc-root .bc-uk-iconnav>*>a:focus{color:#666;outline:none}.bc-root .bc-uk-iconnav>.bc-uk-active>a{color:#666}.bc-root .bc-uk-iconnav-vertical{flex-direction:column;margin-left:0;margin-top:-10px}.bc-root .bc-uk-iconnav-vertical>*{padding-left:0;padding-top:10px}.bc-root .bc-uk-notification{position:fixed;top:10px;left:10px;z-index:1040;box-sizing:border-box;width:350px}.bc-root .bc-uk-notification-top-right,.bc-root .bc-uk-notification-bottom-right{left:auto;right:10px}.bc-root .bc-uk-notification-top-center,.bc-root .bc-uk-notification-bottom-center{left:50%;margin-left:-175px}.bc-root .bc-uk-notification-bottom-left,.bc-root .bc-uk-notification-bottom-right,.bc-root .bc-uk-notification-bottom-center{top:auto;bottom:10px}@media(max-width: 639px){.bc-root .bc-uk-notification{left:10px;right:10px;width:auto;margin:0}}.bc-root .bc-uk-notification-message{position:relative;padding:15px;background:#f8f8f8;color:#666;font-size:1.25rem;line-height:1.4;cursor:pointer}.bc-root *+.bc-uk-notification-message{margin-top:10px}.bc-root .bc-uk-notification-close{display:none;position:absolute;top:20px;right:15px}.bc-root .bc-uk-notification-message:hover .bc-uk-notification-close{display:block}.bc-root .bc-uk-notification-message-primary{color:#1e87f0}.bc-root .bc-uk-notification-message-success{color:#32d296}.bc-root .bc-uk-notification-message-warning{color:#faa05a}.bc-root .bc-uk-notification-message-danger{color:#f0506e}.bc-root .bc-uk-tooltip{display:none;position:absolute;z-index:1030;box-sizing:border-box;max-width:200px;padding:3px 6px;background:#666;border-radius:2px;color:#fff;font-size:12px}.bc-root .bc-uk-tooltip.bc-uk-active{display:block}.bc-root [class*=uk-tooltip-top]{margin-top:-10px}.bc-root [class*=uk-tooltip-bottom]{margin-top:10px}.bc-root [class*=uk-tooltip-left]{margin-left:-10px}.bc-root [class*=uk-tooltip-right]{margin-left:10px}.bc-root .bc-uk-placeholder{margin-bottom:20px;padding:30px 30px;background:transparent;border:1px dashed #e5e5e5}.bc-root *+.bc-uk-placeholder{margin-top:20px}.bc-root .bc-uk-placeholder>:last-child{margin-bottom:0}.bc-root .bc-uk-progress{vertical-align:baseline;-webkit-appearance:none;-moz-appearance:none;display:block;width:100%;border:0;background-color:#f8f8f8;margin-bottom:20px;height:15px;border-radius:500px;overflow:hidden}.bc-root *+.bc-uk-progress{margin-top:20px}.bc-root .bc-uk-progress:indeterminate{color:transparent}.bc-root .bc-uk-progress::-webkit-progress-bar{background-color:#f8f8f8;border-radius:500px;overflow:hidden}.bc-root .bc-uk-progress:indeterminate::-moz-progress-bar{width:0}.bc-root .bc-uk-progress::-webkit-progress-value{background-color:#1e87f0;transition:width .6s ease}.bc-root .bc-uk-progress::-moz-progress-bar{background-color:#1e87f0}.bc-root .bc-uk-progress::-ms-fill{background-color:#1e87f0;transition:width .6s ease;border:0}.bc-root .bc-uk-sortable{position:relative}.bc-root .bc-uk-sortable svg{pointer-events:none}.bc-root .bc-uk-sortable>:last-child{margin-bottom:0}.bc-root .bc-uk-sortable-drag{position:absolute !important;z-index:1050 !important;pointer-events:none}.bc-root .bc-uk-sortable-placeholder{opacity:0}.bc-root .bc-uk-sortable-empty{min-height:50px}.bc-root .bc-uk-sortable-handle:hover{cursor:move}.bc-root .bc-uk-countdown-number,.bc-root .bc-uk-countdown-separator{line-height:70px}.bc-root .bc-uk-countdown-number{font-size:2rem}@media(min-width: 640px){.bc-root .bc-uk-countdown-number{font-size:4rem}}@media(min-width: 960px){.bc-root .bc-uk-countdown-number{font-size:6rem}}.bc-root .bc-uk-countdown-separator{font-size:1rem}@media(min-width: 640px){.bc-root .bc-uk-countdown-separator{font-size:2rem}}@media(min-width: 960px){.bc-root .bc-uk-countdown-separator{font-size:3rem}}.bc-root [class*=uk-animation-]{animation-duration:.5s;animation-timing-function:ease-out;animation-fill-mode:both}.bc-root .bc-uk-animation-fade{animation-name:uk-fade;animation-duration:.8s;animation-timing-function:linear}.bc-root .bc-uk-animation-scale-up{animation-name:uk-fade-scale-02}.bc-root .bc-uk-animation-scale-down{animation-name:uk-fade-scale-18}.bc-root .bc-uk-animation-slide-top{animation-name:uk-fade-top}.bc-root .bc-uk-animation-slide-bottom{animation-name:uk-fade-bottom}.bc-root .bc-uk-animation-slide-left{animation-name:uk-fade-left}.bc-root .bc-uk-animation-slide-right{animation-name:uk-fade-right}.bc-root .bc-uk-animation-slide-top-small{animation-name:uk-fade-top-small}.bc-root .bc-uk-animation-slide-bottom-small{animation-name:uk-fade-bottom-small}.bc-root .bc-uk-animation-slide-left-small{animation-name:uk-fade-left-small}.bc-root .bc-uk-animation-slide-right-small{animation-name:uk-fade-right-small}.bc-root .bc-uk-animation-slide-top-medium{animation-name:uk-fade-top-medium}.bc-root .bc-uk-animation-slide-bottom-medium{animation-name:uk-fade-bottom-medium}.bc-root .bc-uk-animation-slide-left-medium{animation-name:uk-fade-left-medium}.bc-root .bc-uk-animation-slide-right-medium{animation-name:uk-fade-right-medium}.bc-root .bc-uk-animation-kenburns{animation-name:uk-scale-kenburns;animation-duration:15s}.bc-root .bc-uk-animation-shake{animation-name:uk-shake}.bc-root .bc-uk-animation-stroke{animation-name:uk-stroke;stroke-dasharray:var(--uk-animation-stroke);animation-duration:2s}.bc-root .bc-uk-animation-reverse{animation-direction:reverse;animation-timing-function:ease-in}.bc-root .bc-uk-animation-fast{animation-duration:.1s}.bc-root .bc-uk-animation-toggle:not(:hover):not(:focus) [class*=uk-animation-]{animation-name:none}.bc-root .bc-uk-animation-toggle{-webkit-tap-highlight-color:transparent}.bc-root .bc-uk-animation-toggle:focus{outline:none}@keyframes uk-fade{0%{opacity:0}100%{opacity:1}}@keyframes uk-fade-top{0%{opacity:0;transform:translateY(-100%)}100%{opacity:1;transform:translateY(0)}}@keyframes uk-fade-bottom{0%{opacity:0;transform:translateY(100%)}100%{opacity:1;transform:translateY(0)}}@keyframes uk-fade-left{0%{opacity:0;transform:translateX(-100%)}100%{opacity:1;transform:translateX(0)}}@keyframes uk-fade-right{0%{opacity:0;transform:translateX(100%)}100%{opacity:1;transform:translateX(0)}}@keyframes uk-fade-top-small{0%{opacity:0;transform:translateY(-10px)}100%{opacity:1;transform:translateY(0)}}@keyframes uk-fade-bottom-small{0%{opacity:0;transform:translateY(10px)}100%{opacity:1;transform:translateY(0)}}@keyframes uk-fade-left-small{0%{opacity:0;transform:translateX(-10px)}100%{opacity:1;transform:translateX(0)}}@keyframes uk-fade-right-small{0%{opacity:0;transform:translateX(10px)}100%{opacity:1;transform:translateX(0)}}@keyframes uk-fade-top-medium{0%{opacity:0;transform:translateY(-50px)}100%{opacity:1;transform:translateY(0)}}@keyframes uk-fade-bottom-medium{0%{opacity:0;transform:translateY(50px)}100%{opacity:1;transform:translateY(0)}}@keyframes uk-fade-left-medium{0%{opacity:0;transform:translateX(-50px)}100%{opacity:1;transform:translateX(0)}}@keyframes uk-fade-right-medium{0%{opacity:0;transform:translateX(50px)}100%{opacity:1;transform:translateX(0)}}@keyframes uk-fade-scale-02{0%{opacity:0;transform:scale(0.2)}100%{opacity:1;transform:scale(1)}}@keyframes uk-fade-scale-18{0%{opacity:0;transform:scale(1.8)}100%{opacity:1;transform:scale(1)}}@keyframes uk-scale-kenburns{0%{transform:scale(1)}100%{transform:scale(1.2)}}@keyframes uk-shake{0%,100%{transform:translateX(0)}10%{transform:translateX(-9px)}20%{transform:translateX(8px)}30%{transform:translateX(-7px)}40%{transform:translateX(6px)}50%{transform:translateX(-5px)}60%{transform:translateX(4px)}70%{transform:translateX(-3px)}80%{transform:translateX(2px)}90%{transform:translateX(-1px)}}@keyframes uk-stroke{0%{stroke-dashoffset:var(--uk-animation-stroke)}100%{stroke-dashoffset:0}}.bc-root [class*=uk-child-width]>*{box-sizing:border-box;width:100%}.bc-root .bc-uk-child-width-1-2>*{width:50%}.bc-root .bc-uk-child-width-1-3>*{width:calc(100% * 1 / 3.001)}.bc-root .bc-uk-child-width-1-4>*{width:25%}.bc-root .bc-uk-child-width-1-5>*{width:20%}.bc-root .bc-uk-child-width-1-6>*{width:calc(100% * 1 / 6.001)}.bc-root .bc-uk-child-width-auto>*{width:auto}.bc-root .bc-uk-child-width-expand>:not([class*=uk-width]){flex:1;min-width:1px}@media(min-width: 640px){.bc-root .bc-uk-child-width-1-1\@s>*{width:100%}.bc-root .bc-uk-child-width-1-2\@s>*{width:50%}.bc-root .bc-uk-child-width-1-3\@s>*{width:calc(100% * 1 / 3.001)}.bc-root .bc-uk-child-width-1-4\@s>*{width:25%}.bc-root .bc-uk-child-width-1-5\@s>*{width:20%}.bc-root .bc-uk-child-width-1-6\@s>*{width:calc(100% * 1 / 6.001)}.bc-root .bc-uk-child-width-auto\@s>*{width:auto}.bc-root .bc-uk-child-width-expand\@s>:not([class*=uk-width]){flex:1;min-width:1px}}@media(min-width: 960px){.bc-root .bc-uk-child-width-1-1\@m>*{width:100%}.bc-root .bc-uk-child-width-1-2\@m>*{width:50%}.bc-root .bc-uk-child-width-1-3\@m>*{width:calc(100% * 1 / 3.001)}.bc-root .bc-uk-child-width-1-4\@m>*{width:25%}.bc-root .bc-uk-child-width-1-5\@m>*{width:20%}.bc-root .bc-uk-child-width-1-6\@m>*{width:calc(100% * 1 / 6.001)}.bc-root .bc-uk-child-width-auto\@m>*{width:auto}.bc-root .bc-uk-child-width-expand\@m>:not([class*=uk-width]){flex:1;min-width:1px}}@media(min-width: 1200px){.bc-root .bc-uk-child-width-1-1\@l>*{width:100%}.bc-root .bc-uk-child-width-1-2\@l>*{width:50%}.bc-root .bc-uk-child-width-1-3\@l>*{width:calc(100% * 1 / 3.001)}.bc-root .bc-uk-child-width-1-4\@l>*{width:25%}.bc-root .bc-uk-child-width-1-5\@l>*{width:20%}.bc-root .bc-uk-child-width-1-6\@l>*{width:calc(100% * 1 / 6.001)}.bc-root .bc-uk-child-width-auto\@l>*{width:auto}.bc-root .bc-uk-child-width-expand\@l>:not([class*=uk-width]){flex:1;min-width:1px}}@media(min-width: 1600px){.bc-root .bc-uk-child-width-1-1\@xl>*{width:100%}.bc-root .bc-uk-child-width-1-2\@xl>*{width:50%}.bc-root .bc-uk-child-width-1-3\@xl>*{width:calc(100% * 1 / 3.001)}.bc-root .bc-uk-child-width-1-4\@xl>*{width:25%}.bc-root .bc-uk-child-width-1-5\@xl>*{width:20%}.bc-root .bc-uk-child-width-1-6\@xl>*{width:calc(100% * 1 / 6.001)}.bc-root .bc-uk-child-width-auto\@xl>*{width:auto}.bc-root .bc-uk-child-width-expand\@xl>:not([class*=uk-width]){flex:1;min-width:1px}}.bc-root [class*=uk-width]{box-sizing:border-box;width:100%;max-width:100%}.bc-root .bc-uk-width-1-2{width:50%}.bc-root .bc-uk-width-1-3{width:calc(100% * 1 / 3.001)}.bc-root .bc-uk-width-2-3{width:calc(100% * 2 / 3.001)}.bc-root .bc-uk-width-1-4{width:25%}.bc-root .bc-uk-width-3-4{width:75%}.bc-root .bc-uk-width-1-5{width:20%}.bc-root .bc-uk-width-2-5{width:40%}.bc-root .bc-uk-width-3-5{width:60%}.bc-root .bc-uk-width-4-5{width:80%}.bc-root .bc-uk-width-1-6{width:calc(100% * 1 / 6.001)}.bc-root .bc-uk-width-5-6{width:calc(100% * 5 / 6.001)}.bc-root .bc-uk-width-small{width:150px}.bc-root .bc-uk-width-medium{width:300px}.bc-root .bc-uk-width-large{width:450px}.bc-root .bc-uk-width-xlarge{width:600px}.bc-root .bc-uk-width-xxlarge{width:750px}.bc-root .bc-uk-width-auto{width:auto}.bc-root .bc-uk-width-expand{flex:1;min-width:1px}@media(min-width: 640px){.bc-root .bc-uk-width-1-1\@s{width:100%}.bc-root .bc-uk-width-1-2\@s{width:50%}.bc-root .bc-uk-width-1-3\@s{width:calc(100% * 1 / 3.001)}.bc-root .bc-uk-width-2-3\@s{width:calc(100% * 2 / 3.001)}.bc-root .bc-uk-width-1-4\@s{width:25%}.bc-root .bc-uk-width-3-4\@s{width:75%}.bc-root .bc-uk-width-1-5\@s{width:20%}.bc-root .bc-uk-width-2-5\@s{width:40%}.bc-root .bc-uk-width-3-5\@s{width:60%}.bc-root .bc-uk-width-4-5\@s{width:80%}.bc-root .bc-uk-width-1-6\@s{width:calc(100% * 1 / 6.001)}.bc-root .bc-uk-width-5-6\@s{width:calc(100% * 5 / 6.001)}.bc-root .bc-uk-width-small\@s{width:150px}.bc-root .bc-uk-width-medium\@s{width:300px}.bc-root .bc-uk-width-large\@s{width:450px}.bc-root .bc-uk-width-xlarge\@s{width:600px}.bc-root .bc-uk-width-xxlarge\@s{width:750px}.bc-root .bc-uk-width-auto\@s{width:auto}.bc-root .bc-uk-width-expand\@s{flex:1;min-width:1px}}@media(min-width: 960px){.bc-root .bc-uk-width-1-1\@m{width:100%}.bc-root .bc-uk-width-1-2\@m{width:50%}.bc-root .bc-uk-width-1-3\@m{width:calc(100% * 1 / 3.001)}.bc-root .bc-uk-width-2-3\@m{width:calc(100% * 2 / 3.001)}.bc-root .bc-uk-width-1-4\@m{width:25%}.bc-root .bc-uk-width-3-4\@m{width:75%}.bc-root .bc-uk-width-1-5\@m{width:20%}.bc-root .bc-uk-width-2-5\@m{width:40%}.bc-root .bc-uk-width-3-5\@m{width:60%}.bc-root .bc-uk-width-4-5\@m{width:80%}.bc-root .bc-uk-width-1-6\@m{width:calc(100% * 1 / 6.001)}.bc-root .bc-uk-width-5-6\@m{width:calc(100% * 5 / 6.001)}.bc-root .bc-uk-width-small\@m{width:150px}.bc-root .bc-uk-width-medium\@m{width:300px}.bc-root .bc-uk-width-large\@m{width:450px}.bc-root .bc-uk-width-xlarge\@m{width:600px}.bc-root .bc-uk-width-xxlarge\@m{width:750px}.bc-root .bc-uk-width-auto\@m{width:auto}.bc-root .bc-uk-width-expand\@m{flex:1;min-width:1px}}@media(min-width: 1200px){.bc-root .bc-uk-width-1-1\@l{width:100%}.bc-root .bc-uk-width-1-2\@l{width:50%}.bc-root .bc-uk-width-1-3\@l{width:calc(100% * 1 / 3.001)}.bc-root .bc-uk-width-2-3\@l{width:calc(100% * 2 / 3.001)}.bc-root .bc-uk-width-1-4\@l{width:25%}.bc-root .bc-uk-width-3-4\@l{width:75%}.bc-root .bc-uk-width-1-5\@l{width:20%}.bc-root .bc-uk-width-2-5\@l{width:40%}.bc-root .bc-uk-width-3-5\@l{width:60%}.bc-root .bc-uk-width-4-5\@l{width:80%}.bc-root .bc-uk-width-1-6\@l{width:calc(100% * 1 / 6.001)}.bc-root .bc-uk-width-5-6\@l{width:calc(100% * 5 / 6.001)}.bc-root .bc-uk-width-small\@l{width:150px}.bc-root .bc-uk-width-medium\@l{width:300px}.bc-root .bc-uk-width-large\@l{width:450px}.bc-root .bc-uk-width-xlarge\@l{width:600px}.bc-root .bc-uk-width-xxlarge\@l{width:750px}.bc-root .bc-uk-width-auto\@l{width:auto}.bc-root .bc-uk-width-expand\@l{flex:1;min-width:1px}}@media(min-width: 1600px){.bc-root .bc-uk-width-1-1\@xl{width:100%}.bc-root .bc-uk-width-1-2\@xl{width:50%}.bc-root .bc-uk-width-1-3\@xl{width:calc(100% * 1 / 3.001)}.bc-root .bc-uk-width-2-3\@xl{width:calc(100% * 2 / 3.001)}.bc-root .bc-uk-width-1-4\@xl{width:25%}.bc-root .bc-uk-width-3-4\@xl{width:75%}.bc-root .bc-uk-width-1-5\@xl{width:20%}.bc-root .bc-uk-width-2-5\@xl{width:40%}.bc-root .bc-uk-width-3-5\@xl{width:60%}.bc-root .bc-uk-width-4-5\@xl{width:80%}.bc-root .bc-uk-width-1-6\@xl{width:calc(100% * 1 / 6.001)}.bc-root .bc-uk-width-5-6\@xl{width:calc(100% * 5 / 6.001)}.bc-root .bc-uk-width-small\@xl{width:150px}.bc-root .bc-uk-width-medium\@xl{width:300px}.bc-root .bc-uk-width-large\@xl{width:450px}.bc-root .bc-uk-width-xlarge\@xl{width:600px}.bc-root .bc-uk-width-xxlarge\@xl{width:750px}.bc-root .bc-uk-width-auto\@xl{width:auto}.bc-root .bc-uk-width-expand\@xl{flex:1;min-width:1px}}.bc-root [class*=uk-height]{box-sizing:border-box}.bc-root .bc-uk-height-1-1{height:100%}.bc-root .bc-uk-height-viewport{min-height:100vh}.bc-root .bc-uk-height-small{height:150px}.bc-root .bc-uk-height-medium{height:300px}.bc-root .bc-uk-height-large{height:450px}.bc-root .bc-uk-height-max-small{max-height:150px}.bc-root .bc-uk-height-max-medium{max-height:300px}.bc-root .bc-uk-height-max-large{max-height:450px}.bc-root .bc-uk-text-lead{font-size:1.5rem;line-height:1.5;color:#333}.bc-root .bc-uk-text-meta{font-size:.875rem;line-height:1.4;color:#999}.bc-root .bc-uk-text-meta a{color:#999}.bc-root .bc-uk-text-meta a:hover{color:#666;text-decoration:none}.bc-root .bc-uk-text-small{font-size:.875rem;line-height:1.5}.bc-root .bc-uk-text-large{font-size:1.5rem;line-height:1.5}.bc-root .bc-uk-text-bold{font-weight:bolder}.bc-root .bc-uk-text-uppercase{text-transform:uppercase !important}.bc-root .bc-uk-text-capitalize{text-transform:capitalize !important}.bc-root .bc-uk-text-lowercase{text-transform:lowercase !important}.bc-root .bc-uk-text-muted{color:#999 !important}.bc-root .bc-uk-text-emphasis{color:#333 !important}.bc-root .bc-uk-text-primary{color:#1e87f0 !important}.bc-root .bc-uk-text-secondary{color:#222 !important}.bc-root .bc-uk-text-success{color:#32d296 !important}.bc-root .bc-uk-text-warning{color:#faa05a !important}.bc-root .bc-uk-text-danger{color:#f0506e !important}.bc-root .bc-uk-text-background{-webkit-background-clip:text;-webkit-text-fill-color:transparent;display:inline-block;color:#1e87f0 !important}@supports(-webkit-background-clip: text){.bc-root .bc-uk-text-background{background-color:#1e87f0}}.bc-root .bc-uk-text-left{text-align:left !important}.bc-root .bc-uk-text-right{text-align:right !important}.bc-root .bc-uk-text-center{text-align:center !important}.bc-root .bc-uk-text-justify{text-align:justify !important}@media(min-width: 640px){.bc-root .bc-uk-text-left\@s{text-align:left !important}.bc-root .bc-uk-text-right\@s{text-align:right !important}.bc-root .bc-uk-text-center\@s{text-align:center !important}}@media(min-width: 960px){.bc-root .bc-uk-text-left\@m{text-align:left !important}.bc-root .bc-uk-text-right\@m{text-align:right !important}.bc-root .bc-uk-text-center\@m{text-align:center !important}}@media(min-width: 1200px){.bc-root .bc-uk-text-left\@l{text-align:left !important}.bc-root .bc-uk-text-right\@l{text-align:right !important}.bc-root .bc-uk-text-center\@l{text-align:center !important}}@media(min-width: 1600px){.bc-root .bc-uk-text-left\@xl{text-align:left !important}.bc-root .bc-uk-text-right\@xl{text-align:right !important}.bc-root .bc-uk-text-center\@xl{text-align:center !important}}.bc-root .bc-uk-text-top{vertical-align:top !important}.bc-root .bc-uk-text-middle{vertical-align:middle !important}.bc-root .bc-uk-text-bottom{vertical-align:bottom !important}.bc-root .bc-uk-text-baseline{vertical-align:baseline !important}.bc-root .bc-uk-text-nowrap{white-space:nowrap}.bc-root .bc-uk-text-truncate{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bc-root th.bc-uk-text-truncate,.bc-root td.bc-uk-text-truncate{max-width:0}.bc-root .bc-uk-text-break{overflow-wrap:break-word;word-wrap:break-word}.bc-root th.bc-uk-text-break,.bc-root td.bc-uk-text-break{word-break:break-all}.bc-root [class*=uk-column-]{column-gap:30px}@media(min-width: 1200px){.bc-root [class*=uk-column-]{column-gap:40px}}.bc-root [class*=uk-column-] img{transform:translate3d(0, 0, 0)}.bc-root .bc-uk-column-divider{column-rule:1px solid #e5e5e5;column-gap:60px}@media(min-width: 1200px){.bc-root .bc-uk-column-divider{column-gap:80px}}.bc-root .bc-uk-column-1-2{column-count:2}.bc-root .bc-uk-column-1-3{column-count:3}.bc-root .bc-uk-column-1-4{column-count:4}.bc-root .bc-uk-column-1-5{column-count:5}.bc-root .bc-uk-column-1-6{column-count:6}@media(min-width: 640px){.bc-root .bc-uk-column-1-2\@s{column-count:2}.bc-root .bc-uk-column-1-3\@s{column-count:3}.bc-root .bc-uk-column-1-4\@s{column-count:4}.bc-root .bc-uk-column-1-5\@s{column-count:5}.bc-root .bc-uk-column-1-6\@s{column-count:6}}@media(min-width: 960px){.bc-root .bc-uk-column-1-2\@m{column-count:2}.bc-root .bc-uk-column-1-3\@m{column-count:3}.bc-root .bc-uk-column-1-4\@m{column-count:4}.bc-root .bc-uk-column-1-5\@m{column-count:5}.bc-root .bc-uk-column-1-6\@m{column-count:6}}@media(min-width: 1200px){.bc-root .bc-uk-column-1-2\@l{column-count:2}.bc-root .bc-uk-column-1-3\@l{column-count:3}.bc-root .bc-uk-column-1-4\@l{column-count:4}.bc-root .bc-uk-column-1-5\@l{column-count:5}.bc-root .bc-uk-column-1-6\@l{column-count:6}}@media(min-width: 1600px){.bc-root .bc-uk-column-1-2\@xl{column-count:2}.bc-root .bc-uk-column-1-3\@xl{column-count:3}.bc-root .bc-uk-column-1-4\@xl{column-count:4}.bc-root .bc-uk-column-1-5\@xl{column-count:5}.bc-root .bc-uk-column-1-6\@xl{column-count:6}}.bc-root .bc-uk-column-span{column-span:all}.bc-root .bc-uk-cover{max-width:none;position:absolute;left:50%;top:50%;transform:translate(-50%, -50%)}.bc-root iframe.bc-uk-cover{pointer-events:none}.bc-root .bc-uk-cover-container{overflow:hidden;position:relative}.bc-root .bc-uk-background-default{background-color:#fff}.bc-root .bc-uk-background-muted{background-color:#f8f8f8}.bc-root .bc-uk-background-primary{background-color:#1e87f0}.bc-root .bc-uk-background-secondary{background-color:#222}.bc-root .bc-uk-background-cover,.bc-root .bc-uk-background-contain{background-position:50% 50%;background-repeat:no-repeat}.bc-root .bc-uk-background-cover{background-size:cover}.bc-root .bc-uk-background-contain{background-size:contain}.bc-root .bc-uk-background-top-left{background-position:0 0}.bc-root .bc-uk-background-top-center{background-position:50% 0}.bc-root .bc-uk-background-top-right{background-position:100% 0}.bc-root .bc-uk-background-center-left{background-position:0 50%}.bc-root .bc-uk-background-center-center{background-position:50% 50%}.bc-root .bc-uk-background-center-right{background-position:100% 50%}.bc-root .bc-uk-background-bottom-left{background-position:0 100%}.bc-root .bc-uk-background-bottom-center{background-position:50% 100%}.bc-root .bc-uk-background-bottom-right{background-position:100% 100%}.bc-root .bc-uk-background-norepeat{background-repeat:no-repeat}.bc-root .bc-uk-background-fixed{background-attachment:fixed;backface-visibility:hidden}@media(pointer: coarse){.bc-root .bc-uk-background-fixed{background-attachment:scroll}}@media(max-width: 639px){.bc-root .bc-uk-background-image\@s{background-image:none !important}}@media(max-width: 959px){.bc-root .bc-uk-background-image\@m{background-image:none !important}}@media(max-width: 1199px){.bc-root .bc-uk-background-image\@l{background-image:none !important}}@media(max-width: 1599px){.bc-root .bc-uk-background-image\@xl{background-image:none !important}}.bc-root .bc-uk-background-blend-multiply{background-blend-mode:multiply}.bc-root .bc-uk-background-blend-screen{background-blend-mode:screen}.bc-root .bc-uk-background-blend-overlay{background-blend-mode:overlay}.bc-root .bc-uk-background-blend-darken{background-blend-mode:darken}.bc-root .bc-uk-background-blend-lighten{background-blend-mode:lighten}.bc-root .bc-uk-background-blend-color-dodge{background-blend-mode:color-dodge}.bc-root .bc-uk-background-blend-color-burn{background-blend-mode:color-burn}.bc-root .bc-uk-background-blend-hard-light{background-blend-mode:hard-light}.bc-root .bc-uk-background-blend-soft-light{background-blend-mode:soft-light}.bc-root .bc-uk-background-blend-difference{background-blend-mode:difference}.bc-root .bc-uk-background-blend-exclusion{background-blend-mode:exclusion}.bc-root .bc-uk-background-blend-hue{background-blend-mode:hue}.bc-root .bc-uk-background-blend-saturation{background-blend-mode:saturation}.bc-root .bc-uk-background-blend-color{background-blend-mode:color}.bc-root .bc-uk-background-blend-luminosity{background-blend-mode:luminosity}.bc-root [class*=uk-align]{display:block;margin-bottom:30px}.bc-root *+[class*=uk-align]{margin-top:30px}.bc-root .bc-uk-align-center{margin-left:auto;margin-right:auto}.bc-root .bc-uk-align-left{margin-top:0;margin-right:30px;float:left}.bc-root .bc-uk-align-right{margin-top:0;margin-left:30px;float:right}@media(min-width: 640px){.bc-root .bc-uk-align-left\@s{margin-top:0;margin-right:30px;float:left}.bc-root .bc-uk-align-right\@s{margin-top:0;margin-left:30px;float:right}}@media(min-width: 960px){.bc-root .bc-uk-align-left\@m{margin-top:0;margin-right:30px;float:left}.bc-root .bc-uk-align-right\@m{margin-top:0;margin-left:30px;float:right}}@media(min-width: 1200px){.bc-root .bc-uk-align-left\@l{margin-top:0;float:left}.bc-root .bc-uk-align-right\@l{margin-top:0;float:right}.bc-root .bc-uk-align-left,.bc-root .bc-uk-align-left\@s,.bc-root .bc-uk-align-left\@m,.bc-root .bc-uk-align-left\@l{margin-right:40px}.bc-root .bc-uk-align-right,.bc-root .bc-uk-align-right\@s,.bc-root .bc-uk-align-right\@m,.bc-root .bc-uk-align-right\@l{margin-left:40px}}@media(min-width: 1600px){.bc-root .bc-uk-align-left\@xl{margin-top:0;margin-right:40px;float:left}.bc-root .bc-uk-align-right\@xl{margin-top:0;margin-left:40px;float:right}}.bc-root .bc-uk-svg,.bc-root .bc-uk-svg:not(.bc-uk-preserve) [fill*="#"]:not(.bc-uk-preserve){fill:currentcolor}.bc-root .bc-uk-svg:not(.bc-uk-preserve) [stroke*="#"]:not(.bc-uk-preserve){stroke:currentcolor}.bc-root .bc-uk-svg{transform:translate(0, 0)}.bc-root .bc-uk-panel{position:relative;box-sizing:border-box}.bc-root .bc-uk-panel::before,.bc-root .bc-uk-panel::after{content:"";display:table}.bc-root .bc-uk-panel::after{clear:both}.bc-root .bc-uk-panel>:last-child{margin-bottom:0}.bc-root .bc-uk-panel-scrollable{height:170px;padding:10px;border:1px solid #e5e5e5;overflow:auto;-webkit-overflow-scrolling:touch;resize:both}.bc-root .bc-uk-clearfix::before{content:"";display:table-cell}.bc-root .bc-uk-clearfix::after{content:"";display:table;clear:both}.bc-root .bc-uk-float-left{float:left}.bc-root .bc-uk-float-right{float:right}.bc-root [class*=uk-float-]{max-width:100%}.bc-root .bc-uk-overflow-hidden{overflow:hidden}.bc-root .bc-uk-overflow-auto{overflow:auto;-webkit-overflow-scrolling:touch}.bc-root .bc-uk-overflow-auto>:last-child{margin-bottom:0}.bc-root .bc-uk-resize{resize:both}.bc-root .bc-uk-resize-vertical{resize:vertical}.bc-root .bc-uk-display-block{display:block !important}.bc-root .bc-uk-display-inline{display:inline !important}.bc-root .bc-uk-display-inline-block{display:inline-block !important}.bc-root [class*=uk-inline]{display:inline-block;position:relative;max-width:100%;vertical-align:middle;-webkit-backface-visibility:hidden}.bc-root .bc-uk-inline-clip{overflow:hidden}.bc-root .bc-uk-preserve-width,.bc-root .bc-uk-preserve-width canvas,.bc-root .bc-uk-preserve-width img,.bc-root .bc-uk-preserve-width svg,.bc-root .bc-uk-preserve-width video{max-width:none}.bc-root .bc-uk-responsive-width,.bc-root .bc-uk-responsive-height{box-sizing:border-box}.bc-root .bc-uk-responsive-width{max-width:100% !important;height:auto}.bc-root .bc-uk-responsive-height{max-height:100%;width:auto;max-width:none}.bc-root .bc-uk-border-circle{border-radius:50%}.bc-root .bc-uk-border-pill{border-radius:500px}.bc-root .bc-uk-border-rounded{border-radius:5px}.bc-root .bc-uk-inline-clip[class*=uk-border-]{-webkit-transform:translateZ(0)}.bc-root .bc-uk-box-shadow-small{box-shadow:0 2px 8px rgba(0,0,0,.08)}.bc-root .bc-uk-box-shadow-medium{box-shadow:0 5px 15px rgba(0,0,0,.08)}.bc-root .bc-uk-box-shadow-large{box-shadow:0 14px 25px rgba(0,0,0,.16)}.bc-root .bc-uk-box-shadow-xlarge{box-shadow:0 28px 50px rgba(0,0,0,.16)}.bc-root [class*=uk-box-shadow-hover]{transition:box-shadow .1s ease-in-out}.bc-root .bc-uk-box-shadow-hover-small:hover{box-shadow:0 2px 8px rgba(0,0,0,.08)}.bc-root .bc-uk-box-shadow-hover-medium:hover{box-shadow:0 5px 15px rgba(0,0,0,.08)}.bc-root .bc-uk-box-shadow-hover-large:hover{box-shadow:0 14px 25px rgba(0,0,0,.16)}.bc-root .bc-uk-box-shadow-hover-xlarge:hover{box-shadow:0 28px 50px rgba(0,0,0,.16)}@supports(filter: blur(0)){.bc-root .bc-uk-box-shadow-bottom{display:inline-block;position:relative;max-width:100%;vertical-align:middle}.bc-root .bc-uk-box-shadow-bottom::before{content:"";position:absolute;bottom:-30px;left:0;right:0;height:30px;border-radius:100%;background:#444;filter:blur(20px)}.bc-root .bc-uk-box-shadow-bottom>*{position:relative}}.bc-root .bc-uk-dropcap::first-letter,.bc-root .bc-uk-dropcap>p:first-of-type::first-letter{display:block;margin-right:10px;float:left;font-size:4.5em;line-height:1;margin-bottom:-2px}@-moz-document url-prefix(){.bc-root .bc-uk-dropcap::first-letter,.bc-root .bc-uk-dropcap>p:first-of-type::first-letter{margin-top:1.1%}}@supports(-ms-ime-align: auto){.bc-root .bc-uk-dropcap>p:first-of-type::first-letter{font-size:1em}}.bc-root .bc-uk-logo{font-size:1.5rem;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";color:#666;text-decoration:none}.bc-root .bc-uk-logo:hover,.bc-root .bc-uk-logo:focus{color:#666;outline:none;text-decoration:none}.bc-root .bc-uk-logo-inverse{display:none}.bc-root .bc-uk-disabled{pointer-events:none}.bc-root .bc-uk-drag,.bc-root .bc-uk-drag *{cursor:move}.bc-root .bc-uk-drag iframe{pointer-events:none}.bc-root .bc-uk-dragover{box-shadow:0 0 20px rgba(100,100,100,.3)}.bc-root .bc-uk-blend-multiply{mix-blend-mode:multiply}.bc-root .bc-uk-blend-screen{mix-blend-mode:screen}.bc-root .bc-uk-blend-overlay{mix-blend-mode:overlay}.bc-root .bc-uk-blend-darken{mix-blend-mode:darken}.bc-root .bc-uk-blend-lighten{mix-blend-mode:lighten}.bc-root .bc-uk-blend-color-dodge{mix-blend-mode:color-dodge}.bc-root .bc-uk-blend-color-burn{mix-blend-mode:color-burn}.bc-root .bc-uk-blend-hard-light{mix-blend-mode:hard-light}.bc-root .bc-uk-blend-soft-light{mix-blend-mode:soft-light}.bc-root .bc-uk-blend-difference{mix-blend-mode:difference}.bc-root .bc-uk-blend-exclusion{mix-blend-mode:exclusion}.bc-root .bc-uk-blend-hue{mix-blend-mode:hue}.bc-root .bc-uk-blend-saturation{mix-blend-mode:saturation}.bc-root .bc-uk-blend-color{mix-blend-mode:color}.bc-root .bc-uk-blend-luminosity{mix-blend-mode:luminosity}.bc-root .bc-uk-transform-center{transform:translate(-50%, -50%)}.bc-root .bc-uk-transform-origin-top-left{transform-origin:0 0}.bc-root .bc-uk-transform-origin-top-center{transform-origin:50% 0}.bc-root .bc-uk-transform-origin-top-right{transform-origin:100% 0}.bc-root .bc-uk-transform-origin-center-left{transform-origin:0 50%}.bc-root .bc-uk-transform-origin-center-right{transform-origin:100% 50%}.bc-root .bc-uk-transform-origin-bottom-left{transform-origin:0 100%}.bc-root .bc-uk-transform-origin-bottom-center{transform-origin:50% 100%}.bc-root .bc-uk-transform-origin-bottom-right{transform-origin:100% 100%}.bc-root .bc-uk-flex{display:flex}.bc-root .bc-uk-flex-inline{display:inline-flex}.bc-root .bc-uk-flex::before,.bc-root .bc-uk-flex::after,.bc-root .bc-uk-flex-inline::before,.bc-root .bc-uk-flex-inline::after{display:none}.bc-root .bc-uk-flex-left{justify-content:flex-start}.bc-root .bc-uk-flex-center{justify-content:center}.bc-root .bc-uk-flex-right{justify-content:flex-end}.bc-root .bc-uk-flex-between{justify-content:space-between}.bc-root .bc-uk-flex-around{justify-content:space-around}@media(min-width: 640px){.bc-root .bc-uk-flex-left\@s{justify-content:flex-start}.bc-root .bc-uk-flex-center\@s{justify-content:center}.bc-root .bc-uk-flex-right\@s{justify-content:flex-end}.bc-root .bc-uk-flex-between\@s{justify-content:space-between}.bc-root .bc-uk-flex-around\@s{justify-content:space-around}}@media(min-width: 960px){.bc-root .bc-uk-flex-left\@m{justify-content:flex-start}.bc-root .bc-uk-flex-center\@m{justify-content:center}.bc-root .bc-uk-flex-right\@m{justify-content:flex-end}.bc-root .bc-uk-flex-between\@m{justify-content:space-between}.bc-root .bc-uk-flex-around\@m{justify-content:space-around}}@media(min-width: 1200px){.bc-root .bc-uk-flex-left\@l{justify-content:flex-start}.bc-root .bc-uk-flex-center\@l{justify-content:center}.bc-root .bc-uk-flex-right\@l{justify-content:flex-end}.bc-root .bc-uk-flex-between\@l{justify-content:space-between}.bc-root .bc-uk-flex-around\@l{justify-content:space-around}}@media(min-width: 1600px){.bc-root .bc-uk-flex-left\@xl{justify-content:flex-start}.bc-root .bc-uk-flex-center\@xl{justify-content:center}.bc-root .bc-uk-flex-right\@xl{justify-content:flex-end}.bc-root .bc-uk-flex-between\@xl{justify-content:space-between}.bc-root .bc-uk-flex-around\@xl{justify-content:space-around}}.bc-root .bc-uk-flex-stretch{align-items:stretch}.bc-root .bc-uk-flex-top{align-items:flex-start}.bc-root .bc-uk-flex-middle{align-items:center}.bc-root .bc-uk-flex-bottom{align-items:flex-end}.bc-root .bc-uk-flex-row{flex-direction:row}.bc-root .bc-uk-flex-row-reverse{flex-direction:row-reverse}.bc-root .bc-uk-flex-column{flex-direction:column}.bc-root .bc-uk-flex-column-reverse{flex-direction:column-reverse}.bc-root .bc-uk-flex-nowrap{flex-wrap:nowrap}.bc-root .bc-uk-flex-wrap{flex-wrap:wrap}.bc-root .bc-uk-flex-wrap-reverse{flex-wrap:wrap-reverse}.bc-root .bc-uk-flex-wrap-stretch{align-content:stretch}.bc-root .bc-uk-flex-wrap-top{align-content:flex-start}.bc-root .bc-uk-flex-wrap-middle{align-content:center}.bc-root .bc-uk-flex-wrap-bottom{align-content:flex-end}.bc-root .bc-uk-flex-wrap-between{align-content:space-between}.bc-root .bc-uk-flex-wrap-around{align-content:space-around}.bc-root .bc-uk-flex-first{order:-1}.bc-root .bc-uk-flex-last{order:99}@media(min-width: 640px){.bc-root .bc-uk-flex-first\@s{order:-1}.bc-root .bc-uk-flex-last\@s{order:99}}@media(min-width: 960px){.bc-root .bc-uk-flex-first\@m{order:-1}.bc-root .bc-uk-flex-last\@m{order:99}}@media(min-width: 1200px){.bc-root .bc-uk-flex-first\@l{order:-1}.bc-root .bc-uk-flex-last\@l{order:99}}@media(min-width: 1600px){.bc-root .bc-uk-flex-first\@xl{order:-1}.bc-root .bc-uk-flex-last\@xl{order:99}}.bc-root .bc-uk-flex-none{flex:none}.bc-root .bc-uk-flex-auto{flex:auto}.bc-root .bc-uk-flex-1{flex:1}.bc-root .bc-uk-margin{margin-bottom:20px}.bc-root *+.bc-uk-margin{margin-top:20px !important}.bc-root .bc-uk-margin-top{margin-top:20px !important}.bc-root .bc-uk-margin-bottom{margin-bottom:20px !important}.bc-root .bc-uk-margin-left{margin-left:20px !important}.bc-root .bc-uk-margin-right{margin-right:20px !important}.bc-root .bc-uk-margin-small{margin-bottom:10px}.bc-root *+.bc-uk-margin-small{margin-top:10px !important}.bc-root .bc-uk-margin-small-top{margin-top:10px !important}.bc-root .bc-uk-margin-small-bottom{margin-bottom:10px !important}.bc-root .bc-uk-margin-small-left{margin-left:10px !important}.bc-root .bc-uk-margin-small-right{margin-right:10px !important}.bc-root .bc-uk-margin-medium{margin-bottom:40px}.bc-root *+.bc-uk-margin-medium{margin-top:40px !important}.bc-root .bc-uk-margin-medium-top{margin-top:40px !important}.bc-root .bc-uk-margin-medium-bottom{margin-bottom:40px !important}.bc-root .bc-uk-margin-medium-left{margin-left:40px !important}.bc-root .bc-uk-margin-medium-right{margin-right:40px !important}.bc-root .bc-uk-margin-large{margin-bottom:40px}.bc-root *+.bc-uk-margin-large{margin-top:40px !important}.bc-root .bc-uk-margin-large-top{margin-top:40px !important}.bc-root .bc-uk-margin-large-bottom{margin-bottom:40px !important}.bc-root .bc-uk-margin-large-left{margin-left:40px !important}.bc-root .bc-uk-margin-large-right{margin-right:40px !important}@media(min-width: 1200px){.bc-root .bc-uk-margin-large{margin-bottom:70px}.bc-root *+.bc-uk-margin-large{margin-top:70px !important}.bc-root .bc-uk-margin-large-top{margin-top:70px !important}.bc-root .bc-uk-margin-large-bottom{margin-bottom:70px !important}.bc-root .bc-uk-margin-large-left{margin-left:70px !important}.bc-root .bc-uk-margin-large-right{margin-right:70px !important}}.bc-root .bc-uk-margin-xlarge{margin-bottom:70px}.bc-root *+.bc-uk-margin-xlarge{margin-top:70px !important}.bc-root .bc-uk-margin-xlarge-top{margin-top:70px !important}.bc-root .bc-uk-margin-xlarge-bottom{margin-bottom:70px !important}.bc-root .bc-uk-margin-xlarge-left{margin-left:70px !important}.bc-root .bc-uk-margin-xlarge-right{margin-right:70px !important}@media(min-width: 1200px){.bc-root .bc-uk-margin-xlarge{margin-bottom:140px}.bc-root *+.bc-uk-margin-xlarge{margin-top:140px !important}.bc-root .bc-uk-margin-xlarge-top{margin-top:140px !important}.bc-root .bc-uk-margin-xlarge-bottom{margin-bottom:140px !important}.bc-root .bc-uk-margin-xlarge-left{margin-left:140px !important}.bc-root .bc-uk-margin-xlarge-right{margin-right:140px !important}}.bc-root .bc-uk-margin-remove{margin:0 !important}.bc-root .bc-uk-margin-remove-top{margin-top:0 !important}.bc-root .bc-uk-margin-remove-bottom{margin-bottom:0 !important}.bc-root .bc-uk-margin-remove-left{margin-left:0 !important}.bc-root .bc-uk-margin-remove-right{margin-right:0 !important}.bc-root .bc-uk-margin-remove-vertical{margin-top:0 !important;margin-bottom:0 !important}.bc-root .bc-uk-margin-remove-adjacent+*,.bc-root .bc-uk-margin-remove-first-child>:first-child{margin-top:0 !important}.bc-root .bc-uk-margin-auto{margin-left:auto !important;margin-right:auto !important}.bc-root .bc-uk-margin-auto-top{margin-top:auto !important}.bc-root .bc-uk-margin-auto-bottom{margin-bottom:auto !important}.bc-root .bc-uk-margin-auto-left{margin-left:auto !important}.bc-root .bc-uk-margin-auto-right{margin-right:auto !important}.bc-root .bc-uk-margin-auto-vertical{margin-top:auto !important;margin-bottom:auto !important}.bc-root .bc-uk-padding{padding:30px}@media(min-width: 1200px){.bc-root .bc-uk-padding{padding:40px}}.bc-root .bc-uk-padding-small{padding:15px}.bc-root .bc-uk-padding-large{padding:30px}@media(min-width: 1200px){.bc-root .bc-uk-padding-large{padding:70px}}.bc-root .bc-uk-padding-remove{padding:0 !important}.bc-root .bc-uk-padding-remove-top{padding-top:0 !important}.bc-root .bc-uk-padding-remove-bottom{padding-bottom:0 !important}.bc-root .bc-uk-padding-remove-left{padding-left:0 !important}.bc-root .bc-uk-padding-remove-right{padding-right:0 !important}.bc-root .bc-uk-padding-remove-vertical{padding-top:0 !important;padding-bottom:0 !important}.bc-root .bc-uk-padding-remove-horizontal{padding-left:0 !important;padding-right:0 !important}.bc-root [class*=uk-position-top],.bc-root [class*=uk-position-bottom],.bc-root [class*=uk-position-left],.bc-root [class*=uk-position-right],.bc-root [class*=uk-position-center]{position:absolute !important}.bc-root .bc-uk-position-top{top:0;left:0;right:0}.bc-root .bc-uk-position-bottom{bottom:0;left:0;right:0}.bc-root .bc-uk-position-left{top:0;bottom:0;left:0}.bc-root .bc-uk-position-right{top:0;bottom:0;right:0}.bc-root .bc-uk-position-top-left{top:0;left:0}.bc-root .bc-uk-position-top-right{top:0;right:0}.bc-root .bc-uk-position-bottom-left{bottom:0;left:0}.bc-root .bc-uk-position-bottom-right{bottom:0;right:0}.bc-root .bc-uk-position-center{top:50%;left:50%;transform:translate(-50%, -50%);width:max-content;max-width:100%;box-sizing:border-box}.bc-root [class*=uk-position-center-left],.bc-root [class*=uk-position-center-right]{top:50%;transform:translateY(-50%)}.bc-root .bc-uk-position-center-left{left:0}.bc-root .bc-uk-position-center-right{right:0}.bc-root .bc-uk-position-center-left-out{right:100%;width:max-content}.bc-root .bc-uk-position-center-right-out{left:100%;width:max-content}.bc-root .bc-uk-position-top-center,.bc-root .bc-uk-position-bottom-center{left:50%;transform:translateX(-50%);width:max-content;max-width:100%;box-sizing:border-box}.bc-root .bc-uk-position-top-center{top:0}.bc-root .bc-uk-position-bottom-center{bottom:0}.bc-root .bc-uk-position-cover{position:absolute;top:0;bottom:0;left:0;right:0}.bc-root .bc-uk-position-relative{position:relative !important}.bc-root .bc-uk-position-absolute{position:absolute !important}.bc-root .bc-uk-position-fixed{position:fixed !important}.bc-root .bc-uk-position-z-index{z-index:1}.bc-root .bc-uk-position-small{max-width:calc(100% - (15px * 2));margin:15px}.bc-root .bc-uk-position-small.bc-uk-position-center{transform:translate(-50%, -50%) translate(-15px, -15px)}.bc-root .bc-uk-position-small[class*=uk-position-center-left],.bc-root .bc-uk-position-small[class*=uk-position-center-right]{transform:translateY(-50%) translateY(-15px)}.bc-root .bc-uk-position-small.bc-uk-position-top-center,.bc-root .bc-uk-position-small.bc-uk-position-bottom-center{transform:translateX(-50%) translateX(-15px)}.bc-root .bc-uk-position-medium{max-width:calc(100% - (30px * 2));margin:30px}.bc-root .bc-uk-position-medium.bc-uk-position-center{transform:translate(-50%, -50%) translate(-30px, -30px)}.bc-root .bc-uk-position-medium[class*=uk-position-center-left],.bc-root .bc-uk-position-medium[class*=uk-position-center-right]{transform:translateY(-50%) translateY(-30px)}.bc-root .bc-uk-position-medium.bc-uk-position-top-center,.bc-root .bc-uk-position-medium.bc-uk-position-bottom-center{transform:translateX(-50%) translateX(-30px)}.bc-root .bc-uk-position-large{max-width:calc(100% - (30px * 2));margin:30px}.bc-root .bc-uk-position-large.bc-uk-position-center{transform:translate(-50%, -50%) translate(-30px, -30px)}.bc-root .bc-uk-position-large[class*=uk-position-center-left],.bc-root .bc-uk-position-large[class*=uk-position-center-right]{transform:translateY(-50%) translateY(-30px)}.bc-root .bc-uk-position-large.bc-uk-position-top-center,.bc-root .bc-uk-position-large.bc-uk-position-bottom-center{transform:translateX(-50%) translateX(-30px)}@media(min-width: 1200px){.bc-root .bc-uk-position-large{max-width:calc(100% - (50px * 2));margin:50px}.bc-root .bc-uk-position-large.bc-uk-position-center{transform:translate(-50%, -50%) translate(-50px, -50px)}.bc-root .bc-uk-position-large[class*=uk-position-center-left],.bc-root .bc-uk-position-large[class*=uk-position-center-right]{transform:translateY(-50%) translateY(-50px)}.bc-root .bc-uk-position-large.bc-uk-position-top-center,.bc-root .bc-uk-position-large.bc-uk-position-bottom-center{transform:translateX(-50%) translateX(-50px)}}.bc-root .bc-uk-transition-toggle{-webkit-tap-highlight-color:transparent}.bc-root .bc-uk-transition-toggle:focus{outline:none}.bc-root .bc-uk-transition-fade,.bc-root [class*=uk-transition-scale],.bc-root [class*=uk-transition-slide]{transition:.3s ease-out;transition-property:opacity,transform,filter;opacity:0}.bc-root .bc-uk-transition-toggle:hover .bc-uk-transition-fade,.bc-root .bc-uk-transition-toggle:focus .bc-uk-transition-fade,.bc-root .bc-uk-transition-active.bc-uk-active .bc-uk-transition-fade{opacity:1}.bc-root .bc-uk-transition-scale-up{transform:scale(1, 1)}.bc-root .bc-uk-transition-scale-down{transform:scale(1.1, 1.1)}.bc-root .bc-uk-transition-toggle:hover .bc-uk-transition-scale-up,.bc-root .bc-uk-transition-toggle:focus .bc-uk-transition-scale-up,.bc-root .bc-uk-transition-active.bc-uk-active .bc-uk-transition-scale-up{opacity:1;transform:scale(1.1, 1.1)}.bc-root .bc-uk-transition-toggle:hover .bc-uk-transition-scale-down,.bc-root .bc-uk-transition-toggle:focus .bc-uk-transition-scale-down,.bc-root .bc-uk-transition-active.bc-uk-active .bc-uk-transition-scale-down{opacity:1;transform:scale(1, 1)}.bc-root .bc-uk-transition-slide-top{transform:translateY(-100%)}.bc-root .bc-uk-transition-slide-bottom{transform:translateY(100%)}.bc-root .bc-uk-transition-slide-left{transform:translateX(-100%)}.bc-root .bc-uk-transition-slide-right{transform:translateX(100%)}.bc-root .bc-uk-transition-slide-top-small{transform:translateY(-10px)}.bc-root .bc-uk-transition-slide-bottom-small{transform:translateY(10px)}.bc-root .bc-uk-transition-slide-left-small{transform:translateX(-10px)}.bc-root .bc-uk-transition-slide-right-small{transform:translateX(10px)}.bc-root .bc-uk-transition-slide-top-medium{transform:translateY(-50px)}.bc-root .bc-uk-transition-slide-bottom-medium{transform:translateY(50px)}.bc-root .bc-uk-transition-slide-left-medium{transform:translateX(-50px)}.bc-root .bc-uk-transition-slide-right-medium{transform:translateX(50px)}.bc-root .bc-uk-transition-toggle:hover [class*=uk-transition-slide],.bc-root .bc-uk-transition-toggle:focus [class*=uk-transition-slide],.bc-root .bc-uk-transition-active.bc-uk-active [class*=uk-transition-slide]{opacity:1;transform:translate(0, 0)}.bc-root .bc-uk-transition-opaque{opacity:1}.bc-root .bc-uk-transition-slow{transition-duration:.7s}.bc-root [hidden],.bc-root .bc-uk-hidden{display:none !important}@media(min-width: 640px){.bc-root .bc-uk-hidden\@s{display:none !important}}@media(min-width: 960px){.bc-root .bc-uk-hidden\@m{display:none !important}}@media(min-width: 1200px){.bc-root .bc-uk-hidden\@l{display:none !important}}@media(min-width: 1600px){.bc-root .bc-uk-hidden\@xl{display:none !important}}@media(max-width: 639px){.bc-root .bc-uk-visible\@s{display:none !important}}@media(max-width: 959px){.bc-root .bc-uk-visible\@m{display:none !important}}@media(max-width: 1199px){.bc-root .bc-uk-visible\@l{display:none !important}}@media(max-width: 1599px){.bc-root .bc-uk-visible\@xl{display:none !important}}.bc-root .bc-uk-invisible{visibility:hidden !important}.bc-root .bc-uk-visible-toggle:not(:hover):not(:focus) .bc-uk-hidden-hover:not(:focus-within){position:absolute !important;width:0 !important;height:0 !important;padding:0 !important;margin:0 !important;overflow:hidden !important}.bc-root .bc-uk-visible-toggle:not(:hover):not(:focus) .bc-uk-invisible-hover:not(:focus-within){opacity:0 !important}.bc-root .bc-uk-visible-toggle{-webkit-tap-highlight-color:transparent}.bc-root .bc-uk-visible-toggle:focus{outline:none}@media(pointer: coarse){.bc-root .bc-uk-hidden-touch{display:none !important}}.bc-root .bc-uk-hidden-notouch{display:none !important}@media(pointer: coarse){.bc-root .bc-uk-hidden-notouch{display:block !important}}.bc-root .bc-uk-light,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color),.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color),.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color),.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color),.bc-root .bc-uk-card-primary.bc-uk-card-body,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]),.bc-root .bc-uk-card-secondary.bc-uk-card-body,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]),.bc-root .bc-uk-overlay-primary,.bc-root .bc-uk-offcanvas-bar{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light a,.bc-root .bc-uk-light .bc-uk-link,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) a,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-link,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) a,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-link,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) a,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-link,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) a,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-link,.bc-root .bc-uk-card-primary.bc-uk-card-body a,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-link,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) a,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-link,.bc-root .bc-uk-card-secondary.bc-uk-card-body a,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-link,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) a,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-link,.bc-root .bc-uk-overlay-primary a,.bc-root .bc-uk-overlay-primary .bc-uk-link,.bc-root .bc-uk-offcanvas-bar a,.bc-root .bc-uk-offcanvas-bar .bc-uk-link{color:#fff}.bc-root .bc-uk-light a:hover,.bc-root .bc-uk-light .bc-uk-link:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) a:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-link:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) a:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-link:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) a:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-link:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) a:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-link:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body a:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-link:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) a:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-link:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body a:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-link:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) a:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-link:hover,.bc-root .bc-uk-overlay-primary a:hover,.bc-root .bc-uk-overlay-primary .bc-uk-link:hover,.bc-root .bc-uk-offcanvas-bar a:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-link:hover{color:#fff}.bc-root .bc-uk-light :not(pre)>code,.bc-root .bc-uk-light :not(pre)>kbd,.bc-root .bc-uk-light :not(pre)>samp,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) :not(pre)>code,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) :not(pre)>kbd,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) :not(pre)>samp,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) :not(pre)>code,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) :not(pre)>kbd,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) :not(pre)>samp,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) :not(pre)>code,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) :not(pre)>kbd,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) :not(pre)>samp,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) :not(pre)>code,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) :not(pre)>kbd,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) :not(pre)>samp,.bc-root .bc-uk-card-primary.bc-uk-card-body :not(pre)>code,.bc-root .bc-uk-card-primary.bc-uk-card-body :not(pre)>kbd,.bc-root .bc-uk-card-primary.bc-uk-card-body :not(pre)>samp,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) :not(pre)>code,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) :not(pre)>kbd,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) :not(pre)>samp,.bc-root .bc-uk-card-secondary.bc-uk-card-body :not(pre)>code,.bc-root .bc-uk-card-secondary.bc-uk-card-body :not(pre)>kbd,.bc-root .bc-uk-card-secondary.bc-uk-card-body :not(pre)>samp,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) :not(pre)>code,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) :not(pre)>kbd,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) :not(pre)>samp,.bc-root .bc-uk-overlay-primary :not(pre)>code,.bc-root .bc-uk-overlay-primary :not(pre)>kbd,.bc-root .bc-uk-overlay-primary :not(pre)>samp,.bc-root .bc-uk-offcanvas-bar :not(pre)>code,.bc-root .bc-uk-offcanvas-bar :not(pre)>kbd,.bc-root .bc-uk-offcanvas-bar :not(pre)>samp{color:rgba(255,255,255,.7);background:rgba(255,255,255,.1)}.bc-root .bc-uk-light em,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) em,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) em,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) em,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) em,.bc-root .bc-uk-card-primary.bc-uk-card-body em,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) em,.bc-root .bc-uk-card-secondary.bc-uk-card-body em,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) em,.bc-root .bc-uk-overlay-primary em,.bc-root .bc-uk-offcanvas-bar em{color:#fff}.bc-root .bc-uk-light h1,.bc-root .bc-uk-light .bc-uk-h1,.bc-root .bc-uk-light h2,.bc-root .bc-uk-light .bc-uk-h2,.bc-root .bc-uk-light h3,.bc-root .bc-uk-light .bc-uk-h3,.bc-root .bc-uk-light h4,.bc-root .bc-uk-light .bc-uk-h4,.bc-root .bc-uk-light h5,.bc-root .bc-uk-light .bc-uk-h5,.bc-root .bc-uk-light h6,.bc-root .bc-uk-light .bc-uk-h6,.bc-root .bc-uk-light .bc-uk-heading-small,.bc-root .bc-uk-light .bc-uk-heading-medium,.bc-root .bc-uk-light .bc-uk-heading-large,.bc-root .bc-uk-light .bc-uk-heading-xlarge,.bc-root .bc-uk-light .bc-uk-heading-2xlarge,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) h1,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-h1,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) h2,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-h2,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) h3,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-h3,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) h4,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-h4,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) h5,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-h5,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) h6,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-h6,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-heading-small,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-heading-medium,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-heading-large,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-heading-xlarge,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-heading-2xlarge,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) h1,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-h1,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) h2,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-h2,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) h3,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-h3,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) h4,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-h4,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) h5,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-h5,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) h6,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-h6,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-small,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-medium,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-large,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-xlarge,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-2xlarge,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) h1,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-h1,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) h2,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-h2,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) h3,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-h3,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) h4,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-h4,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) h5,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-h5,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) h6,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-h6,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-heading-small,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-heading-medium,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-heading-large,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-heading-xlarge,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-heading-2xlarge,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) h1,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-h1,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) h2,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-h2,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) h3,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-h3,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) h4,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-h4,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) h5,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-h5,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) h6,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-h6,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-small,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-medium,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-large,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-xlarge,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-2xlarge,.bc-root .bc-uk-card-primary.bc-uk-card-body h1,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-h1,.bc-root .bc-uk-card-primary.bc-uk-card-body h2,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-h2,.bc-root .bc-uk-card-primary.bc-uk-card-body h3,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-h3,.bc-root .bc-uk-card-primary.bc-uk-card-body h4,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-h4,.bc-root .bc-uk-card-primary.bc-uk-card-body h5,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-h5,.bc-root .bc-uk-card-primary.bc-uk-card-body h6,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-h6,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-heading-small,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-heading-medium,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-heading-large,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-heading-xlarge,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-heading-2xlarge,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) h1,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-h1,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) h2,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-h2,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) h3,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-h3,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) h4,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-h4,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) h5,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-h5,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) h6,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-h6,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-heading-small,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-heading-medium,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-heading-large,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-heading-xlarge,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-heading-2xlarge,.bc-root .bc-uk-card-secondary.bc-uk-card-body h1,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-h1,.bc-root .bc-uk-card-secondary.bc-uk-card-body h2,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-h2,.bc-root .bc-uk-card-secondary.bc-uk-card-body h3,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-h3,.bc-root .bc-uk-card-secondary.bc-uk-card-body h4,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-h4,.bc-root .bc-uk-card-secondary.bc-uk-card-body h5,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-h5,.bc-root .bc-uk-card-secondary.bc-uk-card-body h6,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-h6,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-heading-small,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-heading-medium,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-heading-large,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-heading-xlarge,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-heading-2xlarge,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) h1,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-h1,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) h2,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-h2,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) h3,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-h3,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) h4,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-h4,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) h5,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-h5,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) h6,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-h6,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-heading-small,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-heading-medium,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-heading-large,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-heading-xlarge,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-heading-2xlarge,.bc-root .bc-uk-overlay-primary h1,.bc-root .bc-uk-overlay-primary .bc-uk-h1,.bc-root .bc-uk-overlay-primary h2,.bc-root .bc-uk-overlay-primary .bc-uk-h2,.bc-root .bc-uk-overlay-primary h3,.bc-root .bc-uk-overlay-primary .bc-uk-h3,.bc-root .bc-uk-overlay-primary h4,.bc-root .bc-uk-overlay-primary .bc-uk-h4,.bc-root .bc-uk-overlay-primary h5,.bc-root .bc-uk-overlay-primary .bc-uk-h5,.bc-root .bc-uk-overlay-primary h6,.bc-root .bc-uk-overlay-primary .bc-uk-h6,.bc-root .bc-uk-overlay-primary .bc-uk-heading-small,.bc-root .bc-uk-overlay-primary .bc-uk-heading-medium,.bc-root .bc-uk-overlay-primary .bc-uk-heading-large,.bc-root .bc-uk-overlay-primary .bc-uk-heading-xlarge,.bc-root .bc-uk-overlay-primary .bc-uk-heading-2xlarge,.bc-root .bc-uk-offcanvas-bar h1,.bc-root .bc-uk-offcanvas-bar .bc-uk-h1,.bc-root .bc-uk-offcanvas-bar h2,.bc-root .bc-uk-offcanvas-bar .bc-uk-h2,.bc-root .bc-uk-offcanvas-bar h3,.bc-root .bc-uk-offcanvas-bar .bc-uk-h3,.bc-root .bc-uk-offcanvas-bar h4,.bc-root .bc-uk-offcanvas-bar .bc-uk-h4,.bc-root .bc-uk-offcanvas-bar h5,.bc-root .bc-uk-offcanvas-bar .bc-uk-h5,.bc-root .bc-uk-offcanvas-bar h6,.bc-root .bc-uk-offcanvas-bar .bc-uk-h6,.bc-root .bc-uk-offcanvas-bar .bc-uk-heading-small,.bc-root .bc-uk-offcanvas-bar .bc-uk-heading-medium,.bc-root .bc-uk-offcanvas-bar .bc-uk-heading-large,.bc-root .bc-uk-offcanvas-bar .bc-uk-heading-xlarge,.bc-root .bc-uk-offcanvas-bar .bc-uk-heading-2xlarge{color:#fff}.bc-root .bc-uk-light blockquote,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) blockquote,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) blockquote,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) blockquote,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) blockquote,.bc-root .bc-uk-card-primary.bc-uk-card-body blockquote,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) blockquote,.bc-root .bc-uk-card-secondary.bc-uk-card-body blockquote,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) blockquote,.bc-root .bc-uk-overlay-primary blockquote,.bc-root .bc-uk-offcanvas-bar blockquote{color:#fff}.bc-root .bc-uk-light blockquote footer,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) blockquote footer,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) blockquote footer,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) blockquote footer,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) blockquote footer,.bc-root .bc-uk-card-primary.bc-uk-card-body blockquote footer,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) blockquote footer,.bc-root .bc-uk-card-secondary.bc-uk-card-body blockquote footer,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) blockquote footer,.bc-root .bc-uk-overlay-primary blockquote footer,.bc-root .bc-uk-offcanvas-bar blockquote footer{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light hr,.bc-root .bc-uk-light .bc-uk-hr,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) hr,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-hr,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) hr,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-hr,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) hr,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-hr,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) hr,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-hr,.bc-root .bc-uk-card-primary.bc-uk-card-body hr,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-hr,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) hr,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-hr,.bc-root .bc-uk-card-secondary.bc-uk-card-body hr,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-hr,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) hr,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-hr,.bc-root .bc-uk-overlay-primary hr,.bc-root .bc-uk-overlay-primary .bc-uk-hr,.bc-root .bc-uk-offcanvas-bar hr,.bc-root .bc-uk-offcanvas-bar .bc-uk-hr{border-top-color:rgba(255,255,255,.2)}.bc-root .bc-uk-light a.bc-uk-link-muted,.bc-root .bc-uk-light .bc-uk-link-muted a,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) a.bc-uk-link-muted,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-link-muted a,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) a.bc-uk-link-muted,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-link-muted a,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) a.bc-uk-link-muted,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-link-muted a,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) a.bc-uk-link-muted,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-link-muted a,.bc-root .bc-uk-card-primary.bc-uk-card-body a.bc-uk-link-muted,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-link-muted a,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) a.bc-uk-link-muted,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-link-muted a,.bc-root .bc-uk-card-secondary.bc-uk-card-body a.bc-uk-link-muted,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-link-muted a,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) a.bc-uk-link-muted,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-link-muted a,.bc-root .bc-uk-overlay-primary a.bc-uk-link-muted,.bc-root .bc-uk-overlay-primary .bc-uk-link-muted a,.bc-root .bc-uk-offcanvas-bar a.bc-uk-link-muted,.bc-root .bc-uk-offcanvas-bar .bc-uk-link-muted a{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light a.bc-uk-link-muted:hover,.bc-root .bc-uk-light .bc-uk-link-muted a:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) a.bc-uk-link-muted:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-link-muted a:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) a.bc-uk-link-muted:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-link-muted a:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) a.bc-uk-link-muted:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-link-muted a:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) a.bc-uk-link-muted:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-link-muted a:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body a.bc-uk-link-muted:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-link-muted a:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) a.bc-uk-link-muted:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-link-muted a:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body a.bc-uk-link-muted:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-link-muted a:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) a.bc-uk-link-muted:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-link-muted a:hover,.bc-root .bc-uk-overlay-primary a.bc-uk-link-muted:hover,.bc-root .bc-uk-overlay-primary .bc-uk-link-muted a:hover,.bc-root .bc-uk-offcanvas-bar a.bc-uk-link-muted:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-link-muted a:hover{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light a.bc-uk-link-text:hover,.bc-root .bc-uk-light .bc-uk-link-text a:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) a.bc-uk-link-text:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-link-text a:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) a.bc-uk-link-text:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-link-text a:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) a.bc-uk-link-text:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-link-text a:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) a.bc-uk-link-text:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-link-text a:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body a.bc-uk-link-text:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-link-text a:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) a.bc-uk-link-text:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-link-text a:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body a.bc-uk-link-text:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-link-text a:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) a.bc-uk-link-text:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-link-text a:hover,.bc-root .bc-uk-overlay-primary a.bc-uk-link-text:hover,.bc-root .bc-uk-overlay-primary .bc-uk-link-text a:hover,.bc-root .bc-uk-offcanvas-bar a.bc-uk-link-text:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-link-text a:hover{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light a.bc-uk-link-heading:hover,.bc-root .bc-uk-light .bc-uk-link-heading a:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) a.bc-uk-link-heading:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-link-heading a:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) a.bc-uk-link-heading:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-link-heading a:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) a.bc-uk-link-heading:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-link-heading a:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) a.bc-uk-link-heading:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-link-heading a:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body a.bc-uk-link-heading:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-link-heading a:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) a.bc-uk-link-heading:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-link-heading a:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body a.bc-uk-link-heading:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-link-heading a:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) a.bc-uk-link-heading:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-link-heading a:hover,.bc-root .bc-uk-overlay-primary a.bc-uk-link-heading:hover,.bc-root .bc-uk-overlay-primary .bc-uk-link-heading a:hover,.bc-root .bc-uk-offcanvas-bar a.bc-uk-link-heading:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-link-heading a:hover{color:#fff}.bc-root .bc-uk-light .bc-uk-heading-divider,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-heading-divider,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-divider,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-heading-divider,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-divider,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-heading-divider,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-heading-divider,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-heading-divider,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-heading-divider,.bc-root .bc-uk-overlay-primary .bc-uk-heading-divider,.bc-root .bc-uk-offcanvas-bar .bc-uk-heading-divider{border-bottom-color:rgba(255,255,255,.2)}.bc-root .bc-uk-light .bc-uk-heading-bullet::before,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-heading-bullet::before,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-bullet::before,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-heading-bullet::before,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-bullet::before,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-heading-bullet::before,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-heading-bullet::before,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-heading-bullet::before,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-heading-bullet::before,.bc-root .bc-uk-overlay-primary .bc-uk-heading-bullet::before,.bc-root .bc-uk-offcanvas-bar .bc-uk-heading-bullet::before{border-left-color:rgba(255,255,255,.2)}.bc-root .bc-uk-light .bc-uk-heading-line>::before,.bc-root .bc-uk-light .bc-uk-heading-line>::after,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-heading-line>::before,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-heading-line>::after,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-line>::before,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-line>::after,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-heading-line>::before,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-heading-line>::after,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-line>::before,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-heading-line>::after,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-heading-line>::before,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-heading-line>::after,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-heading-line>::before,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-heading-line>::after,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-heading-line>::before,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-heading-line>::after,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-heading-line>::before,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-heading-line>::after,.bc-root .bc-uk-overlay-primary .bc-uk-heading-line>::before,.bc-root .bc-uk-overlay-primary .bc-uk-heading-line>::after,.bc-root .bc-uk-offcanvas-bar .bc-uk-heading-line>::before,.bc-root .bc-uk-offcanvas-bar .bc-uk-heading-line>::after{border-bottom-color:rgba(255,255,255,.2)}.bc-root .bc-uk-light .bc-uk-divider-icon,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-divider-icon,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-divider-icon,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-divider-icon,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-divider-icon,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-divider-icon,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-divider-icon,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-divider-icon,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-divider-icon,.bc-root .bc-uk-overlay-primary .bc-uk-divider-icon,.bc-root .bc-uk-offcanvas-bar .bc-uk-divider-icon{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22none%22%20stroke%3D%22rgba%28255,%20255,%20255,%200.2%29%22%20stroke-width%3D%222%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%227%22%20%2F%3E%0A%3C%2Fsvg%3E%0A")}.bc-root .bc-uk-light .bc-uk-divider-icon::before,.bc-root .bc-uk-light .bc-uk-divider-icon::after,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-divider-icon::before,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-divider-icon::after,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-divider-icon::before,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-divider-icon::after,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-divider-icon::before,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-divider-icon::after,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-divider-icon::before,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-divider-icon::after,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-divider-icon::before,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-divider-icon::after,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-divider-icon::before,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-divider-icon::after,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-divider-icon::before,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-divider-icon::after,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-divider-icon::before,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-divider-icon::after,.bc-root .bc-uk-overlay-primary .bc-uk-divider-icon::before,.bc-root .bc-uk-overlay-primary .bc-uk-divider-icon::after,.bc-root .bc-uk-offcanvas-bar .bc-uk-divider-icon::before,.bc-root .bc-uk-offcanvas-bar .bc-uk-divider-icon::after{border-bottom-color:rgba(255,255,255,.2)}.bc-root .bc-uk-light .bc-uk-divider-small::after,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-divider-small::after,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-divider-small::after,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-divider-small::after,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-divider-small::after,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-divider-small::after,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-divider-small::after,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-divider-small::after,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-divider-small::after,.bc-root .bc-uk-overlay-primary .bc-uk-divider-small::after,.bc-root .bc-uk-offcanvas-bar .bc-uk-divider-small::after{border-top-color:rgba(255,255,255,.2)}.bc-root .bc-uk-light .bc-uk-divider-vertical::after,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-divider-vertical::after,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-divider-vertical::after,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-divider-vertical::after,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-divider-vertical::after,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-divider-vertical::after,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-divider-vertical::after,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-divider-vertical::after,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-divider-vertical::after,.bc-root .bc-uk-overlay-primary .bc-uk-divider-vertical::after,.bc-root .bc-uk-offcanvas-bar .bc-uk-divider-vertical::after{border-left-color:rgba(255,255,255,.2)}.bc-root .bc-uk-light .bc-uk-list-divider>li:nth-child(n+2),.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-list-divider>li:nth-child(n+2),.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-list-divider>li:nth-child(n+2),.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-list-divider>li:nth-child(n+2),.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-list-divider>li:nth-child(n+2),.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-list-divider>li:nth-child(n+2),.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-list-divider>li:nth-child(n+2),.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-list-divider>li:nth-child(n+2),.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-list-divider>li:nth-child(n+2),.bc-root .bc-uk-overlay-primary .bc-uk-list-divider>li:nth-child(n+2),.bc-root .bc-uk-offcanvas-bar .bc-uk-list-divider>li:nth-child(n+2){border-top-color:rgba(255,255,255,.2)}.bc-root .bc-uk-light .bc-uk-list-striped>li:nth-of-type(odd),.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-list-striped>li:nth-of-type(odd),.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-list-striped>li:nth-of-type(odd),.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-list-striped>li:nth-of-type(odd),.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-list-striped>li:nth-of-type(odd),.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-list-striped>li:nth-of-type(odd),.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-list-striped>li:nth-of-type(odd),.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-list-striped>li:nth-of-type(odd),.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-list-striped>li:nth-of-type(odd),.bc-root .bc-uk-overlay-primary .bc-uk-list-striped>li:nth-of-type(odd),.bc-root .bc-uk-offcanvas-bar .bc-uk-list-striped>li:nth-of-type(odd){border-top-color:rgba(255,255,255,.2);border-bottom-color:rgba(255,255,255,.2)}.bc-root .bc-uk-light .bc-uk-list-striped>li:nth-of-type(odd),.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-list-striped>li:nth-of-type(odd),.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-list-striped>li:nth-of-type(odd),.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-list-striped>li:nth-of-type(odd),.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-list-striped>li:nth-of-type(odd),.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-list-striped>li:nth-of-type(odd),.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-list-striped>li:nth-of-type(odd),.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-list-striped>li:nth-of-type(odd),.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-list-striped>li:nth-of-type(odd),.bc-root .bc-uk-overlay-primary .bc-uk-list-striped>li:nth-of-type(odd),.bc-root .bc-uk-offcanvas-bar .bc-uk-list-striped>li:nth-of-type(odd){background-color:rgba(255,255,255,.1)}.bc-root .bc-uk-light .bc-uk-list-bullet>li::before,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-list-bullet>li::before,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-list-bullet>li::before,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-list-bullet>li::before,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-list-bullet>li::before,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-list-bullet>li::before,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-list-bullet>li::before,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-list-bullet>li::before,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-list-bullet>li::before,.bc-root .bc-uk-overlay-primary .bc-uk-list-bullet>li::before,.bc-root .bc-uk-offcanvas-bar .bc-uk-list-bullet>li::before{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%226%22%20height%3D%226%22%20viewBox%3D%220%200%206%206%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20cx%3D%223%22%20cy%3D%223%22%20r%3D%223%22%20%2F%3E%0A%3C%2Fsvg%3E")}.bc-root .bc-uk-light .bc-uk-table th,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-table th,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-table th,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-table th,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-table th,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-table th,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-table th,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-table th,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-table th,.bc-root .bc-uk-overlay-primary .bc-uk-table th,.bc-root .bc-uk-offcanvas-bar .bc-uk-table th{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-table caption,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-table caption,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-table caption,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-table caption,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-table caption,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-table caption,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-table caption,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-table caption,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-table caption,.bc-root .bc-uk-overlay-primary .bc-uk-table caption,.bc-root .bc-uk-offcanvas-bar .bc-uk-table caption{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-table>tr.bc-uk-active,.bc-root .bc-uk-light .bc-uk-table tbody tr.bc-uk-active,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-table>tr.bc-uk-active,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-table tbody tr.bc-uk-active,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-table>tr.bc-uk-active,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-table tbody tr.bc-uk-active,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-table>tr.bc-uk-active,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-table tbody tr.bc-uk-active,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-table>tr.bc-uk-active,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-table tbody tr.bc-uk-active,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-table>tr.bc-uk-active,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-table tbody tr.bc-uk-active,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-table>tr.bc-uk-active,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-table tbody tr.bc-uk-active,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-table>tr.bc-uk-active,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-table tbody tr.bc-uk-active,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-table>tr.bc-uk-active,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-table tbody tr.bc-uk-active,.bc-root .bc-uk-overlay-primary .bc-uk-table>tr.bc-uk-active,.bc-root .bc-uk-overlay-primary .bc-uk-table tbody tr.bc-uk-active,.bc-root .bc-uk-offcanvas-bar .bc-uk-table>tr.bc-uk-active,.bc-root .bc-uk-offcanvas-bar .bc-uk-table tbody tr.bc-uk-active{background:rgba(255,255,255,.08)}.bc-root .bc-uk-light .bc-uk-table-divider>tr:not(:first-child),.bc-root .bc-uk-light .bc-uk-table-divider>:not(:first-child)>tr,.bc-root .bc-uk-light .bc-uk-table-divider>:first-child>tr:not(:first-child),.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-table-divider>tr:not(:first-child),.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-table-divider>:not(:first-child)>tr,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-table-divider>:first-child>tr:not(:first-child),.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-table-divider>tr:not(:first-child),.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-table-divider>:not(:first-child)>tr,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-table-divider>:first-child>tr:not(:first-child),.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-table-divider>tr:not(:first-child),.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-table-divider>:not(:first-child)>tr,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-table-divider>:first-child>tr:not(:first-child),.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-table-divider>tr:not(:first-child),.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-table-divider>:not(:first-child)>tr,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-table-divider>:first-child>tr:not(:first-child),.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-table-divider>tr:not(:first-child),.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-table-divider>:not(:first-child)>tr,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-table-divider>:first-child>tr:not(:first-child),.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-table-divider>tr:not(:first-child),.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-table-divider>:not(:first-child)>tr,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-table-divider>:first-child>tr:not(:first-child),.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-table-divider>tr:not(:first-child),.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-table-divider>:not(:first-child)>tr,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-table-divider>:first-child>tr:not(:first-child),.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-table-divider>tr:not(:first-child),.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-table-divider>:not(:first-child)>tr,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-table-divider>:first-child>tr:not(:first-child),.bc-root .bc-uk-overlay-primary .bc-uk-table-divider>tr:not(:first-child),.bc-root .bc-uk-overlay-primary .bc-uk-table-divider>:not(:first-child)>tr,.bc-root .bc-uk-overlay-primary .bc-uk-table-divider>:first-child>tr:not(:first-child),.bc-root .bc-uk-offcanvas-bar .bc-uk-table-divider>tr:not(:first-child),.bc-root .bc-uk-offcanvas-bar .bc-uk-table-divider>:not(:first-child)>tr,.bc-root .bc-uk-offcanvas-bar .bc-uk-table-divider>:first-child>tr:not(:first-child){border-top-color:rgba(255,255,255,.2)}.bc-root .bc-uk-light .bc-uk-table-striped>tr:nth-of-type(odd),.bc-root .bc-uk-light .bc-uk-table-striped tbody tr:nth-of-type(odd),.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-table-striped>tr:nth-of-type(odd),.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-table-striped tbody tr:nth-of-type(odd),.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-table-striped>tr:nth-of-type(odd),.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-table-striped tbody tr:nth-of-type(odd),.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-table-striped>tr:nth-of-type(odd),.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-table-striped tbody tr:nth-of-type(odd),.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-table-striped>tr:nth-of-type(odd),.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-table-striped tbody tr:nth-of-type(odd),.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-table-striped>tr:nth-of-type(odd),.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-table-striped tbody tr:nth-of-type(odd),.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-table-striped>tr:nth-of-type(odd),.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-table-striped tbody tr:nth-of-type(odd),.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-table-striped>tr:nth-of-type(odd),.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-table-striped tbody tr:nth-of-type(odd),.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-table-striped>tr:nth-of-type(odd),.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-table-striped tbody tr:nth-of-type(odd),.bc-root .bc-uk-overlay-primary .bc-uk-table-striped>tr:nth-of-type(odd),.bc-root .bc-uk-overlay-primary .bc-uk-table-striped tbody tr:nth-of-type(odd),.bc-root .bc-uk-offcanvas-bar .bc-uk-table-striped>tr:nth-of-type(odd),.bc-root .bc-uk-offcanvas-bar .bc-uk-table-striped tbody tr:nth-of-type(odd){background:rgba(255,255,255,.1);border-top-color:rgba(255,255,255,.2);border-bottom-color:rgba(255,255,255,.2)}.bc-root .bc-uk-light .bc-uk-table-hover>tr:hover,.bc-root .bc-uk-light .bc-uk-table-hover tbody tr:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-table-hover>tr:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-table-hover tbody tr:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-table-hover>tr:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-table-hover tbody tr:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-table-hover>tr:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-table-hover tbody tr:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-table-hover>tr:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-table-hover tbody tr:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-table-hover>tr:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-table-hover tbody tr:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-table-hover>tr:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-table-hover tbody tr:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-table-hover>tr:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-table-hover tbody tr:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-table-hover>tr:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-table-hover tbody tr:hover,.bc-root .bc-uk-overlay-primary .bc-uk-table-hover>tr:hover,.bc-root .bc-uk-overlay-primary .bc-uk-table-hover tbody tr:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-table-hover>tr:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-table-hover tbody tr:hover{background:rgba(255,255,255,.08)}.bc-root .bc-uk-light .bc-uk-icon-link,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-icon-link,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-link,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-icon-link,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-link,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-icon-link,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-icon-link,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-icon-link,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-icon-link,.bc-root .bc-uk-overlay-primary .bc-uk-icon-link,.bc-root .bc-uk-offcanvas-bar .bc-uk-icon-link{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-icon-link:hover,.bc-root .bc-uk-light .bc-uk-icon-link:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-icon-link:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-icon-link:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-link:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-link:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-icon-link:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-icon-link:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-link:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-link:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-icon-link:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-icon-link:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-icon-link:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-icon-link:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-icon-link:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-icon-link:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-icon-link:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-icon-link:focus,.bc-root .bc-uk-overlay-primary .bc-uk-icon-link:hover,.bc-root .bc-uk-overlay-primary .bc-uk-icon-link:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-icon-link:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-icon-link:focus{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-icon-link:active,.bc-root .bc-uk-light .bc-uk-active>.bc-uk-icon-link,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-icon-link:active,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-active>.bc-uk-icon-link,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-link:active,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-active>.bc-uk-icon-link,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-icon-link:active,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-active>.bc-uk-icon-link,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-link:active,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-active>.bc-uk-icon-link,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-icon-link:active,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-active>.bc-uk-icon-link,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-icon-link:active,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-active>.bc-uk-icon-link,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-icon-link:active,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-active>.bc-uk-icon-link,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-icon-link:active,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-active>.bc-uk-icon-link,.bc-root .bc-uk-overlay-primary .bc-uk-icon-link:active,.bc-root .bc-uk-overlay-primary .bc-uk-active>.bc-uk-icon-link,.bc-root .bc-uk-offcanvas-bar .bc-uk-icon-link:active,.bc-root .bc-uk-offcanvas-bar .bc-uk-active>.bc-uk-icon-link{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-icon-button,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-icon-button,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-button,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-icon-button,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-button,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-icon-button,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-icon-button,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-icon-button,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-icon-button,.bc-root .bc-uk-overlay-primary .bc-uk-icon-button,.bc-root .bc-uk-offcanvas-bar .bc-uk-icon-button{background-color:rgba(255,255,255,.1);color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-icon-button:hover,.bc-root .bc-uk-light .bc-uk-icon-button:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-icon-button:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-icon-button:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-button:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-button:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-icon-button:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-icon-button:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-button:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-button:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-icon-button:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-icon-button:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-icon-button:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-icon-button:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-icon-button:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-icon-button:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-icon-button:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-icon-button:focus,.bc-root .bc-uk-overlay-primary .bc-uk-icon-button:hover,.bc-root .bc-uk-overlay-primary .bc-uk-icon-button:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-icon-button:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-icon-button:focus{background-color:rgba(242,242,242,.1);color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-icon-button:active,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-icon-button:active,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-button:active,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-icon-button:active,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-icon-button:active,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-icon-button:active,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-icon-button:active,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-icon-button:active,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-icon-button:active,.bc-root .bc-uk-overlay-primary .bc-uk-icon-button:active,.bc-root .bc-uk-offcanvas-bar .bc-uk-icon-button:active{background-color:rgba(230,230,230,.1);color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-input,.bc-root .bc-uk-light .bc-uk-select,.bc-root .bc-uk-light .bc-uk-textarea,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-input,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-select,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-textarea,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-input,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-select,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-textarea,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-input,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-select,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-textarea,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-input,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-select,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-textarea,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-input,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-select,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-textarea,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-input,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-select,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-textarea,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-input,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-select,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-textarea,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-input,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-select,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-textarea,.bc-root .bc-uk-overlay-primary .bc-uk-input,.bc-root .bc-uk-overlay-primary .bc-uk-select,.bc-root .bc-uk-overlay-primary .bc-uk-textarea,.bc-root .bc-uk-offcanvas-bar .bc-uk-input,.bc-root .bc-uk-offcanvas-bar .bc-uk-select,.bc-root .bc-uk-offcanvas-bar .bc-uk-textarea{background-color:rgba(255,255,255,.1);color:rgba(255,255,255,.7);background-clip:padding-box;border-color:rgba(255,255,255,.2)}.bc-root .bc-uk-light .bc-uk-input:focus,.bc-root .bc-uk-light .bc-uk-select:focus,.bc-root .bc-uk-light .bc-uk-textarea:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-input:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-select:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-textarea:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-input:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-select:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-textarea:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-input:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-select:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-textarea:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-input:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-select:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-textarea:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-input:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-select:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-textarea:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-input:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-select:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-textarea:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-input:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-select:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-textarea:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-input:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-select:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-textarea:focus,.bc-root .bc-uk-overlay-primary .bc-uk-input:focus,.bc-root .bc-uk-overlay-primary .bc-uk-select:focus,.bc-root .bc-uk-overlay-primary .bc-uk-textarea:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-input:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-select:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-textarea:focus{background-color:rgba(255,255,255,.1);color:rgba(255,255,255,.7);border-color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-input::-ms-input-placeholder,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-input::-ms-input-placeholder,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-input::-ms-input-placeholder,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-input::-ms-input-placeholder,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-input::-ms-input-placeholder,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-input::-ms-input-placeholder,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-input::-ms-input-placeholder,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-input::-ms-input-placeholder,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-input::-ms-input-placeholder,.bc-root .bc-uk-overlay-primary .bc-uk-input::-ms-input-placeholder,.bc-root .bc-uk-offcanvas-bar .bc-uk-input::-ms-input-placeholder{color:rgba(255,255,255,.5) !important}.bc-root .bc-uk-light .bc-uk-input::placeholder,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-input::placeholder,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-input::placeholder,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-input::placeholder,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-input::placeholder,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-input::placeholder,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-input::placeholder,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-input::placeholder,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-input::placeholder,.bc-root .bc-uk-overlay-primary .bc-uk-input::placeholder,.bc-root .bc-uk-offcanvas-bar .bc-uk-input::placeholder{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-textarea::-ms-input-placeholder,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-textarea::-ms-input-placeholder,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-textarea::-ms-input-placeholder,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-textarea::-ms-input-placeholder,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-textarea::-ms-input-placeholder,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-textarea::-ms-input-placeholder,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-textarea::-ms-input-placeholder,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-textarea::-ms-input-placeholder,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-textarea::-ms-input-placeholder,.bc-root .bc-uk-overlay-primary .bc-uk-textarea::-ms-input-placeholder,.bc-root .bc-uk-offcanvas-bar .bc-uk-textarea::-ms-input-placeholder{color:rgba(255,255,255,.5) !important}.bc-root .bc-uk-light .bc-uk-textarea::placeholder,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-textarea::placeholder,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-textarea::placeholder,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-textarea::placeholder,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-textarea::placeholder,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-textarea::placeholder,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-textarea::placeholder,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-textarea::placeholder,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-textarea::placeholder,.bc-root .bc-uk-overlay-primary .bc-uk-textarea::placeholder,.bc-root .bc-uk-offcanvas-bar .bc-uk-textarea::placeholder{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-select:not([multiple]):not([size]),.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-select:not([multiple]):not([size]),.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-select:not([multiple]):not([size]),.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-select:not([multiple]):not([size]),.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-select:not([multiple]):not([size]),.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-select:not([multiple]):not([size]),.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-select:not([multiple]):not([size]),.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-select:not([multiple]):not([size]),.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-select:not([multiple]):not([size]),.bc-root .bc-uk-overlay-primary .bc-uk-select:not([multiple]):not([size]),.bc-root .bc-uk-offcanvas-bar .bc-uk-select:not([multiple]):not([size]){background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A")}.bc-root .bc-uk-light .bc-uk-radio,.bc-root .bc-uk-light .bc-uk-checkbox,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-radio,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-radio,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-radio,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-radio,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-radio,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-checkbox,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-radio,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-checkbox,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-radio,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-checkbox,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-radio,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-checkbox,.bc-root .bc-uk-overlay-primary .bc-uk-radio,.bc-root .bc-uk-overlay-primary .bc-uk-checkbox,.bc-root .bc-uk-offcanvas-bar .bc-uk-radio,.bc-root .bc-uk-offcanvas-bar .bc-uk-checkbox{background-color:rgba(242,242,242,.1);border-color:rgba(255,255,255,.2)}.bc-root .bc-uk-light .bc-uk-radio:focus,.bc-root .bc-uk-light .bc-uk-checkbox:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-radio:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-radio:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-radio:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-radio:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-radio:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-checkbox:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-radio:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-checkbox:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-radio:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-checkbox:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-radio:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-checkbox:focus,.bc-root .bc-uk-overlay-primary .bc-uk-radio:focus,.bc-root .bc-uk-overlay-primary .bc-uk-checkbox:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-radio:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-checkbox:focus{border-color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-radio:checked,.bc-root .bc-uk-light .bc-uk-checkbox:checked,.bc-root .bc-uk-light .bc-uk-checkbox:indeterminate,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-radio:checked,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:checked,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:indeterminate,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-radio:checked,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:checked,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:indeterminate,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-radio:checked,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:checked,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:indeterminate,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-radio:checked,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:checked,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:indeterminate,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-radio:checked,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-checkbox:checked,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-checkbox:indeterminate,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-radio:checked,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-checkbox:checked,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-checkbox:indeterminate,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-radio:checked,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-checkbox:checked,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-checkbox:indeterminate,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-radio:checked,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-checkbox:checked,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-checkbox:indeterminate,.bc-root .bc-uk-overlay-primary .bc-uk-radio:checked,.bc-root .bc-uk-overlay-primary .bc-uk-checkbox:checked,.bc-root .bc-uk-overlay-primary .bc-uk-checkbox:indeterminate,.bc-root .bc-uk-offcanvas-bar .bc-uk-radio:checked,.bc-root .bc-uk-offcanvas-bar .bc-uk-checkbox:checked,.bc-root .bc-uk-offcanvas-bar .bc-uk-checkbox:indeterminate{background-color:#fff;border-color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-radio:checked:focus,.bc-root .bc-uk-light .bc-uk-checkbox:checked:focus,.bc-root .bc-uk-light .bc-uk-checkbox:indeterminate:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-radio:checked:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:checked:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:indeterminate:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-radio:checked:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:checked:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:indeterminate:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-radio:checked:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:checked:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:indeterminate:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-radio:checked:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:checked:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:indeterminate:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-radio:checked:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-checkbox:checked:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-checkbox:indeterminate:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-radio:checked:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-checkbox:checked:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-checkbox:indeterminate:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-radio:checked:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-checkbox:checked:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-checkbox:indeterminate:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-radio:checked:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-checkbox:checked:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-checkbox:indeterminate:focus,.bc-root .bc-uk-overlay-primary .bc-uk-radio:checked:focus,.bc-root .bc-uk-overlay-primary .bc-uk-checkbox:checked:focus,.bc-root .bc-uk-overlay-primary .bc-uk-checkbox:indeterminate:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-radio:checked:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-checkbox:checked:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-checkbox:indeterminate:focus{background-color:#e6e6e6}.bc-root .bc-uk-light .bc-uk-radio:checked,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-radio:checked,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-radio:checked,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-radio:checked,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-radio:checked,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-radio:checked,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-radio:checked,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-radio:checked,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-radio:checked,.bc-root .bc-uk-overlay-primary .bc-uk-radio:checked,.bc-root .bc-uk-offcanvas-bar .bc-uk-radio:checked{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23666%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E")}.bc-root .bc-uk-light .bc-uk-checkbox:checked,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:checked,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:checked,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:checked,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:checked,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-checkbox:checked,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-checkbox:checked,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-checkbox:checked,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-checkbox:checked,.bc-root .bc-uk-overlay-primary .bc-uk-checkbox:checked,.bc-root .bc-uk-offcanvas-bar .bc-uk-checkbox:checked{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A")}.bc-root .bc-uk-light .bc-uk-checkbox:indeterminate,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:indeterminate,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:indeterminate,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-checkbox:indeterminate,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-checkbox:indeterminate,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-checkbox:indeterminate,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-checkbox:indeterminate,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-checkbox:indeterminate,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-checkbox:indeterminate,.bc-root .bc-uk-overlay-primary .bc-uk-checkbox:indeterminate,.bc-root .bc-uk-offcanvas-bar .bc-uk-checkbox:indeterminate{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E")}.bc-root .bc-uk-light .bc-uk-form-label,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-form-label,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-form-label,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-form-label,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-form-label,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-form-label,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-form-label,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-form-label,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-form-label,.bc-root .bc-uk-overlay-primary .bc-uk-form-label,.bc-root .bc-uk-offcanvas-bar .bc-uk-form-label{color:#fff}.bc-root .bc-uk-light .bc-uk-form-icon,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-form-icon,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-form-icon,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-form-icon,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-form-icon,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-form-icon,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-form-icon,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-form-icon,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-form-icon,.bc-root .bc-uk-overlay-primary .bc-uk-form-icon,.bc-root .bc-uk-offcanvas-bar .bc-uk-form-icon{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-form-icon:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-form-icon:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-form-icon:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-form-icon:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-form-icon:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-form-icon:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-form-icon:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-form-icon:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-form-icon:hover,.bc-root .bc-uk-overlay-primary .bc-uk-form-icon:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-form-icon:hover{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-button-default,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-default,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-default,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-default,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-default,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-default,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-button-default,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-default,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-button-default,.bc-root .bc-uk-overlay-primary .bc-uk-button-default,.bc-root .bc-uk-offcanvas-bar .bc-uk-button-default{background-color:transparent;color:#fff;border-color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-button-default:hover,.bc-root .bc-uk-light .bc-uk-button-default:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-default:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-default:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-default:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-default:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-default:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-default:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-default:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-default:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-default:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-default:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-button-default:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-button-default:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-default:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-default:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-button-default:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-button-default:focus,.bc-root .bc-uk-overlay-primary .bc-uk-button-default:hover,.bc-root .bc-uk-overlay-primary .bc-uk-button-default:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-button-default:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-button-default:focus{background-color:transparent;color:#fff;border-color:#fff}.bc-root .bc-uk-light .bc-uk-button-default:active,.bc-root .bc-uk-light .bc-uk-button-default.bc-uk-active,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-default:active,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-default.bc-uk-active,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-default:active,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-default.bc-uk-active,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-default:active,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-default.bc-uk-active,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-default:active,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-default.bc-uk-active,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-default:active,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-default.bc-uk-active,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-button-default:active,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-button-default.bc-uk-active,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-default:active,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-default.bc-uk-active,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-button-default:active,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-button-default.bc-uk-active,.bc-root .bc-uk-overlay-primary .bc-uk-button-default:active,.bc-root .bc-uk-overlay-primary .bc-uk-button-default.bc-uk-active,.bc-root .bc-uk-offcanvas-bar .bc-uk-button-default:active,.bc-root .bc-uk-offcanvas-bar .bc-uk-button-default.bc-uk-active{background-color:transparent;color:#fff;border-color:#fff}.bc-root .bc-uk-light .bc-uk-button-primary,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-primary,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-primary,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-primary,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-primary,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-primary,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-button-primary,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-primary,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-button-primary,.bc-root .bc-uk-overlay-primary .bc-uk-button-primary,.bc-root .bc-uk-offcanvas-bar .bc-uk-button-primary{background-color:#fff;color:#666}.bc-root .bc-uk-light .bc-uk-button-primary:hover,.bc-root .bc-uk-light .bc-uk-button-primary:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-primary:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-primary:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-primary:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-primary:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-primary:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-primary:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-primary:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-primary:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-primary:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-primary:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-button-primary:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-button-primary:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-primary:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-primary:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-button-primary:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-button-primary:focus,.bc-root .bc-uk-overlay-primary .bc-uk-button-primary:hover,.bc-root .bc-uk-overlay-primary .bc-uk-button-primary:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-button-primary:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-button-primary:focus{background-color:#f2f2f2;color:#666}.bc-root .bc-uk-light .bc-uk-button-primary:active,.bc-root .bc-uk-light .bc-uk-button-primary.bc-uk-active,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-primary:active,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-primary.bc-uk-active,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-primary:active,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-primary.bc-uk-active,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-primary:active,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-primary.bc-uk-active,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-primary:active,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-primary.bc-uk-active,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-primary:active,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-primary.bc-uk-active,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-button-primary:active,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-button-primary.bc-uk-active,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-primary:active,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-primary.bc-uk-active,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-button-primary:active,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-button-primary.bc-uk-active,.bc-root .bc-uk-overlay-primary .bc-uk-button-primary:active,.bc-root .bc-uk-overlay-primary .bc-uk-button-primary.bc-uk-active,.bc-root .bc-uk-offcanvas-bar .bc-uk-button-primary:active,.bc-root .bc-uk-offcanvas-bar .bc-uk-button-primary.bc-uk-active{background-color:#e6e6e6;color:#666}.bc-root .bc-uk-light .bc-uk-button-secondary,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-secondary,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-secondary,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-secondary,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-secondary,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-secondary,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-button-secondary,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-secondary,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-button-secondary,.bc-root .bc-uk-overlay-primary .bc-uk-button-secondary,.bc-root .bc-uk-offcanvas-bar .bc-uk-button-secondary{background-color:#fff;color:#666}.bc-root .bc-uk-light .bc-uk-button-secondary:hover,.bc-root .bc-uk-light .bc-uk-button-secondary:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-secondary:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-secondary:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-secondary:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-secondary:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-secondary:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-secondary:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-secondary:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-secondary:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-secondary:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-secondary:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-button-secondary:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-button-secondary:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-secondary:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-secondary:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-button-secondary:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-button-secondary:focus,.bc-root .bc-uk-overlay-primary .bc-uk-button-secondary:hover,.bc-root .bc-uk-overlay-primary .bc-uk-button-secondary:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-button-secondary:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-button-secondary:focus{background-color:#f2f2f2;color:#666}.bc-root .bc-uk-light .bc-uk-button-secondary:active,.bc-root .bc-uk-light .bc-uk-button-secondary.bc-uk-active,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-secondary:active,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-secondary.bc-uk-active,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-secondary:active,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-secondary.bc-uk-active,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-secondary:active,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-secondary.bc-uk-active,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-secondary:active,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-secondary.bc-uk-active,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-secondary:active,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-secondary.bc-uk-active,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-button-secondary:active,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-button-secondary.bc-uk-active,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-secondary:active,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-secondary.bc-uk-active,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-button-secondary:active,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-button-secondary.bc-uk-active,.bc-root .bc-uk-overlay-primary .bc-uk-button-secondary:active,.bc-root .bc-uk-overlay-primary .bc-uk-button-secondary.bc-uk-active,.bc-root .bc-uk-offcanvas-bar .bc-uk-button-secondary:active,.bc-root .bc-uk-offcanvas-bar .bc-uk-button-secondary.bc-uk-active{background-color:#e6e6e6;color:#666}.bc-root .bc-uk-light .bc-uk-button-text,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-text,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-text,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-text,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-text,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-text,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-button-text,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-text,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-button-text,.bc-root .bc-uk-overlay-primary .bc-uk-button-text,.bc-root .bc-uk-offcanvas-bar .bc-uk-button-text{color:#fff}.bc-root .bc-uk-light .bc-uk-button-text::before,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-text::before,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-text::before,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-text::before,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-text::before,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-text::before,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-button-text::before,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-text::before,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-button-text::before,.bc-root .bc-uk-overlay-primary .bc-uk-button-text::before,.bc-root .bc-uk-offcanvas-bar .bc-uk-button-text::before{border-bottom-color:#fff}.bc-root .bc-uk-light .bc-uk-button-text:hover,.bc-root .bc-uk-light .bc-uk-button-text:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-text:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-text:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-text:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-text:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-text:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-text:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-text:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-text:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-text:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-text:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-button-text:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-button-text:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-text:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-text:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-button-text:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-button-text:focus,.bc-root .bc-uk-overlay-primary .bc-uk-button-text:hover,.bc-root .bc-uk-overlay-primary .bc-uk-button-text:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-button-text:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-button-text:focus{color:#fff}.bc-root .bc-uk-light .bc-uk-button-text:disabled,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-text:disabled,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-text:disabled,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-text:disabled,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-text:disabled,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-text:disabled,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-button-text:disabled,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-text:disabled,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-button-text:disabled,.bc-root .bc-uk-overlay-primary .bc-uk-button-text:disabled,.bc-root .bc-uk-offcanvas-bar .bc-uk-button-text:disabled{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-button-link,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-link,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-link,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-link,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-link,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-link,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-button-link,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-link,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-button-link,.bc-root .bc-uk-overlay-primary .bc-uk-button-link,.bc-root .bc-uk-offcanvas-bar .bc-uk-button-link{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-button-link:hover,.bc-root .bc-uk-light .bc-uk-button-link:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-link:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-button-link:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-link:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-button-link:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-link:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-button-link:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-link:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-button-link:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-link:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-button-link:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-button-link:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-button-link:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-link:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-button-link:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-button-link:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-button-link:focus,.bc-root .bc-uk-overlay-primary .bc-uk-button-link:hover,.bc-root .bc-uk-overlay-primary .bc-uk-button-link:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-button-link:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-button-link:focus{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-grid-divider>:not(.bc-uk-first-column)::before,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-grid-divider>:not(.bc-uk-first-column)::before,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-grid-divider>:not(.bc-uk-first-column)::before,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-grid-divider>:not(.bc-uk-first-column)::before,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-grid-divider>:not(.bc-uk-first-column)::before,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-grid-divider>:not(.bc-uk-first-column)::before,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-grid-divider>:not(.bc-uk-first-column)::before,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-grid-divider>:not(.bc-uk-first-column)::before,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-grid-divider>:not(.bc-uk-first-column)::before,.bc-root .bc-uk-overlay-primary .bc-uk-grid-divider>:not(.bc-uk-first-column)::before,.bc-root .bc-uk-offcanvas-bar .bc-uk-grid-divider>:not(.bc-uk-first-column)::before{border-left-color:rgba(255,255,255,.2)}.bc-root .bc-uk-light .bc-uk-grid-divider.bc-uk-grid-stack>.bc-uk-grid-margin::before,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-grid-divider.bc-uk-grid-stack>.bc-uk-grid-margin::before,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-grid-divider.bc-uk-grid-stack>.bc-uk-grid-margin::before,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-grid-divider.bc-uk-grid-stack>.bc-uk-grid-margin::before,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-grid-divider.bc-uk-grid-stack>.bc-uk-grid-margin::before,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-grid-divider.bc-uk-grid-stack>.bc-uk-grid-margin::before,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-grid-divider.bc-uk-grid-stack>.bc-uk-grid-margin::before,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-grid-divider.bc-uk-grid-stack>.bc-uk-grid-margin::before,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-grid-divider.bc-uk-grid-stack>.bc-uk-grid-margin::before,.bc-root .bc-uk-overlay-primary .bc-uk-grid-divider.bc-uk-grid-stack>.bc-uk-grid-margin::before,.bc-root .bc-uk-offcanvas-bar .bc-uk-grid-divider.bc-uk-grid-stack>.bc-uk-grid-margin::before{border-top-color:rgba(255,255,255,.2)}.bc-root .bc-uk-light .bc-uk-close,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-close,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-close,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-close,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-close,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-close,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-close,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-close,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-close,.bc-root .bc-uk-overlay-primary .bc-uk-close,.bc-root .bc-uk-offcanvas-bar .bc-uk-close{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-close:hover,.bc-root .bc-uk-light .bc-uk-close:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-close:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-close:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-close:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-close:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-close:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-close:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-close:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-close:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-close:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-close:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-close:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-close:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-close:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-close:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-close:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-close:focus,.bc-root .bc-uk-overlay-primary .bc-uk-close:hover,.bc-root .bc-uk-overlay-primary .bc-uk-close:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-close:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-close:focus{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-totop,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-totop,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-totop,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-totop,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-totop,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-totop,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-totop,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-totop,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-totop,.bc-root .bc-uk-overlay-primary .bc-uk-totop,.bc-root .bc-uk-offcanvas-bar .bc-uk-totop{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-totop:hover,.bc-root .bc-uk-light .bc-uk-totop:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-totop:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-totop:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-totop:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-totop:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-totop:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-totop:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-totop:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-totop:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-totop:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-totop:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-totop:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-totop:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-totop:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-totop:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-totop:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-totop:focus,.bc-root .bc-uk-overlay-primary .bc-uk-totop:hover,.bc-root .bc-uk-overlay-primary .bc-uk-totop:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-totop:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-totop:focus{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-totop:active,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-totop:active,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-totop:active,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-totop:active,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-totop:active,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-totop:active,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-totop:active,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-totop:active,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-totop:active,.bc-root .bc-uk-overlay-primary .bc-uk-totop:active,.bc-root .bc-uk-offcanvas-bar .bc-uk-totop:active{color:#fff}.bc-root .bc-uk-light .bc-uk-marker,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-marker,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-marker,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-marker,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-marker,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-marker,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-marker,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-marker,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-marker,.bc-root .bc-uk-overlay-primary .bc-uk-marker,.bc-root .bc-uk-offcanvas-bar .bc-uk-marker{background:#f8f8f8;color:#666}.bc-root .bc-uk-light .bc-uk-marker:hover,.bc-root .bc-uk-light .bc-uk-marker:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-marker:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-marker:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-marker:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-marker:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-marker:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-marker:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-marker:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-marker:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-marker:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-marker:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-marker:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-marker:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-marker:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-marker:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-marker:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-marker:focus,.bc-root .bc-uk-overlay-primary .bc-uk-marker:hover,.bc-root .bc-uk-overlay-primary .bc-uk-marker:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-marker:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-marker:focus{color:#666}.bc-root .bc-uk-light .bc-uk-badge,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-badge,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-badge,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-badge,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-badge,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-badge,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-badge,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-badge,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-badge,.bc-root .bc-uk-overlay-primary .bc-uk-badge,.bc-root .bc-uk-offcanvas-bar .bc-uk-badge{background-color:#fff;color:#666}.bc-root .bc-uk-light .bc-uk-badge:hover,.bc-root .bc-uk-light .bc-uk-badge:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-badge:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-badge:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-badge:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-badge:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-badge:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-badge:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-badge:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-badge:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-badge:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-badge:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-badge:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-badge:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-badge:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-badge:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-badge:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-badge:focus,.bc-root .bc-uk-overlay-primary .bc-uk-badge:hover,.bc-root .bc-uk-overlay-primary .bc-uk-badge:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-badge:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-badge:focus{color:#666}.bc-root .bc-uk-light .bc-uk-label,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-label,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-label,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-label,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-label,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-label,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-label,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-label,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-label,.bc-root .bc-uk-overlay-primary .bc-uk-label,.bc-root .bc-uk-offcanvas-bar .bc-uk-label{background-color:#fff;color:#666}.bc-root .bc-uk-light .bc-uk-article-meta,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-article-meta,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-article-meta,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-article-meta,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-article-meta,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-article-meta,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-article-meta,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-article-meta,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-article-meta,.bc-root .bc-uk-overlay-primary .bc-uk-article-meta,.bc-root .bc-uk-offcanvas-bar .bc-uk-article-meta{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-search-input,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-search-input,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-search-input,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-search-input,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-search-input,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-search-input,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-search-input,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-search-input,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-search-input,.bc-root .bc-uk-overlay-primary .bc-uk-search-input,.bc-root .bc-uk-offcanvas-bar .bc-uk-search-input{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-search-input:-ms-input-placeholder,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-search-input:-ms-input-placeholder,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-search-input:-ms-input-placeholder,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-search-input:-ms-input-placeholder,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-search-input:-ms-input-placeholder,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-search-input:-ms-input-placeholder,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-search-input:-ms-input-placeholder,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-search-input:-ms-input-placeholder,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-search-input:-ms-input-placeholder,.bc-root .bc-uk-overlay-primary .bc-uk-search-input:-ms-input-placeholder,.bc-root .bc-uk-offcanvas-bar .bc-uk-search-input:-ms-input-placeholder{color:rgba(255,255,255,.5) !important}.bc-root .bc-uk-light .bc-uk-search-input::placeholder,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-search-input::placeholder,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-search-input::placeholder,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-search-input::placeholder,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-search-input::placeholder,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-search-input::placeholder,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-search-input::placeholder,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-search-input::placeholder,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-search-input::placeholder,.bc-root .bc-uk-overlay-primary .bc-uk-search-input::placeholder,.bc-root .bc-uk-offcanvas-bar .bc-uk-search-input::placeholder{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-search .bc-uk-search-icon,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-search .bc-uk-search-icon,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-search .bc-uk-search-icon,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-search .bc-uk-search-icon,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-search .bc-uk-search-icon,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-search .bc-uk-search-icon,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-search .bc-uk-search-icon,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-search .bc-uk-search-icon,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-search .bc-uk-search-icon,.bc-root .bc-uk-overlay-primary .bc-uk-search .bc-uk-search-icon,.bc-root .bc-uk-offcanvas-bar .bc-uk-search .bc-uk-search-icon{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-search .bc-uk-search-icon:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-search .bc-uk-search-icon:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-search .bc-uk-search-icon:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-search .bc-uk-search-icon:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-search .bc-uk-search-icon:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-search .bc-uk-search-icon:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-search .bc-uk-search-icon:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-search .bc-uk-search-icon:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-search .bc-uk-search-icon:hover,.bc-root .bc-uk-overlay-primary .bc-uk-search .bc-uk-search-icon:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-search .bc-uk-search-icon:hover{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-search-default .bc-uk-search-input,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-search-default .bc-uk-search-input,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-search-default .bc-uk-search-input,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-search-default .bc-uk-search-input,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-search-default .bc-uk-search-input,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-search-default .bc-uk-search-input,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-search-default .bc-uk-search-input,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-search-default .bc-uk-search-input,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-search-default .bc-uk-search-input,.bc-root .bc-uk-overlay-primary .bc-uk-search-default .bc-uk-search-input,.bc-root .bc-uk-offcanvas-bar .bc-uk-search-default .bc-uk-search-input{background-color:transparent;border-color:rgba(255,255,255,.2)}.bc-root .bc-uk-light .bc-uk-search-default .bc-uk-search-input:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-search-default .bc-uk-search-input:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-search-default .bc-uk-search-input:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-search-default .bc-uk-search-input:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-search-default .bc-uk-search-input:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-search-default .bc-uk-search-input:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-search-default .bc-uk-search-input:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-search-default .bc-uk-search-input:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-search-default .bc-uk-search-input:focus,.bc-root .bc-uk-overlay-primary .bc-uk-search-default .bc-uk-search-input:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-search-default .bc-uk-search-input:focus{background-color:transparent}.bc-root .bc-uk-light .bc-uk-search-navbar .bc-uk-search-input,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-search-navbar .bc-uk-search-input,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-search-navbar .bc-uk-search-input,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-search-navbar .bc-uk-search-input,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-search-navbar .bc-uk-search-input,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-search-navbar .bc-uk-search-input,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-search-navbar .bc-uk-search-input,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-search-navbar .bc-uk-search-input,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-search-navbar .bc-uk-search-input,.bc-root .bc-uk-overlay-primary .bc-uk-search-navbar .bc-uk-search-input,.bc-root .bc-uk-offcanvas-bar .bc-uk-search-navbar .bc-uk-search-input{background-color:transparent}.bc-root .bc-uk-light .bc-uk-search-large .bc-uk-search-input,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-search-large .bc-uk-search-input,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-search-large .bc-uk-search-input,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-search-large .bc-uk-search-input,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-search-large .bc-uk-search-input,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-search-large .bc-uk-search-input,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-search-large .bc-uk-search-input,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-search-large .bc-uk-search-input,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-search-large .bc-uk-search-input,.bc-root .bc-uk-overlay-primary .bc-uk-search-large .bc-uk-search-input,.bc-root .bc-uk-offcanvas-bar .bc-uk-search-large .bc-uk-search-input{background-color:transparent}.bc-root .bc-uk-light .bc-uk-search-toggle,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-search-toggle,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-search-toggle,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-search-toggle,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-search-toggle,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-search-toggle,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-search-toggle,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-search-toggle,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-search-toggle,.bc-root .bc-uk-overlay-primary .bc-uk-search-toggle,.bc-root .bc-uk-offcanvas-bar .bc-uk-search-toggle{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-search-toggle:hover,.bc-root .bc-uk-light .bc-uk-search-toggle:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-search-toggle:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-search-toggle:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-search-toggle:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-search-toggle:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-search-toggle:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-search-toggle:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-search-toggle:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-search-toggle:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-search-toggle:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-search-toggle:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-search-toggle:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-search-toggle:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-search-toggle:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-search-toggle:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-search-toggle:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-search-toggle:focus,.bc-root .bc-uk-overlay-primary .bc-uk-search-toggle:hover,.bc-root .bc-uk-overlay-primary .bc-uk-search-toggle:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-search-toggle:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-search-toggle:focus{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-nav-parent-icon>.bc-uk-parent>a::after,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-parent-icon>.bc-uk-parent>a::after,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-parent-icon>.bc-uk-parent>a::after,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-parent-icon>.bc-uk-parent>a::after,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-parent-icon>.bc-uk-parent>a::after,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-parent-icon>.bc-uk-parent>a::after,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-nav-parent-icon>.bc-uk-parent>a::after,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-parent-icon>.bc-uk-parent>a::after,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-nav-parent-icon>.bc-uk-parent>a::after,.bc-root .bc-uk-overlay-primary .bc-uk-nav-parent-icon>.bc-uk-parent>a::after,.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-parent-icon>.bc-uk-parent>a::after{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20stroke-width%3D%221.1%22%20points%3D%2210%201%204%207%2010%2013%22%20%2F%3E%0A%3C%2Fsvg%3E")}.bc-root .bc-uk-light .bc-uk-nav-parent-icon>.bc-uk-parent.bc-uk-open>a::after,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-parent-icon>.bc-uk-parent.bc-uk-open>a::after,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-parent-icon>.bc-uk-parent.bc-uk-open>a::after,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-parent-icon>.bc-uk-parent.bc-uk-open>a::after,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-parent-icon>.bc-uk-parent.bc-uk-open>a::after,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-parent-icon>.bc-uk-parent.bc-uk-open>a::after,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-nav-parent-icon>.bc-uk-parent.bc-uk-open>a::after,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-parent-icon>.bc-uk-parent.bc-uk-open>a::after,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-nav-parent-icon>.bc-uk-parent.bc-uk-open>a::after,.bc-root .bc-uk-overlay-primary .bc-uk-nav-parent-icon>.bc-uk-parent.bc-uk-open>a::after,.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-parent-icon>.bc-uk-parent.bc-uk-open>a::after{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20stroke-width%3D%221.1%22%20points%3D%221%204%207%2010%2013%204%22%20%2F%3E%0A%3C%2Fsvg%3E")}.bc-root .bc-uk-light .bc-uk-nav-default>li>a,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default>li>a,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default>li>a,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default>li>a,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default>li>a,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-default>li>a,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-nav-default>li>a,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-default>li>a,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-nav-default>li>a,.bc-root .bc-uk-overlay-primary .bc-uk-nav-default>li>a,.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-default>li>a{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-nav-default>li>a:hover,.bc-root .bc-uk-light .bc-uk-nav-default>li>a:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default>li>a:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default>li>a:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default>li>a:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default>li>a:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default>li>a:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default>li>a:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default>li>a:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default>li>a:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-default>li>a:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-default>li>a:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-nav-default>li>a:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-nav-default>li>a:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-default>li>a:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-default>li>a:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-nav-default>li>a:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-nav-default>li>a:focus,.bc-root .bc-uk-overlay-primary .bc-uk-nav-default>li>a:hover,.bc-root .bc-uk-overlay-primary .bc-uk-nav-default>li>a:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-default>li>a:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-default>li>a:focus{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-nav-default>li.bc-uk-active>a,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default>li.bc-uk-active>a,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default>li.bc-uk-active>a,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default>li.bc-uk-active>a,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default>li.bc-uk-active>a,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-default>li.bc-uk-active>a,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-nav-default>li.bc-uk-active>a,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-default>li.bc-uk-active>a,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-nav-default>li.bc-uk-active>a,.bc-root .bc-uk-overlay-primary .bc-uk-nav-default>li.bc-uk-active>a,.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-default>li.bc-uk-active>a{color:#fff}.bc-root .bc-uk-light .bc-uk-nav-default .bc-uk-nav-header,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-header,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-header,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-header,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-header,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-header,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-nav-default .bc-uk-nav-header,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-header,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-nav-default .bc-uk-nav-header,.bc-root .bc-uk-overlay-primary .bc-uk-nav-default .bc-uk-nav-header,.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-default .bc-uk-nav-header{color:#fff}.bc-root .bc-uk-light .bc-uk-nav-default .bc-uk-nav-divider,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-divider,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-divider,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-divider,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-divider,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-divider,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-nav-default .bc-uk-nav-divider,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-divider,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-nav-default .bc-uk-nav-divider,.bc-root .bc-uk-overlay-primary .bc-uk-nav-default .bc-uk-nav-divider,.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-default .bc-uk-nav-divider{border-top-color:rgba(255,255,255,.2)}.bc-root .bc-uk-light .bc-uk-nav-default .bc-uk-nav-sub a,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub a,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub a,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub a,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub a,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-sub a,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-nav-default .bc-uk-nav-sub a,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-sub a,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-nav-default .bc-uk-nav-sub a,.bc-root .bc-uk-overlay-primary .bc-uk-nav-default .bc-uk-nav-sub a,.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-default .bc-uk-nav-sub a{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-nav-default .bc-uk-nav-sub a:hover,.bc-root .bc-uk-light .bc-uk-nav-default .bc-uk-nav-sub a:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub a:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub a:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub a:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub a:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub a:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub a:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub a:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub a:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-sub a:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-sub a:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-nav-default .bc-uk-nav-sub a:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-nav-default .bc-uk-nav-sub a:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-sub a:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-sub a:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-nav-default .bc-uk-nav-sub a:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-nav-default .bc-uk-nav-sub a:focus,.bc-root .bc-uk-overlay-primary .bc-uk-nav-default .bc-uk-nav-sub a:hover,.bc-root .bc-uk-overlay-primary .bc-uk-nav-default .bc-uk-nav-sub a:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-default .bc-uk-nav-sub a:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-default .bc-uk-nav-sub a:focus{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-nav-default .bc-uk-nav-sub li.bc-uk-active>a,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub li.bc-uk-active>a,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub li.bc-uk-active>a,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub li.bc-uk-active>a,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-default .bc-uk-nav-sub li.bc-uk-active>a,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-sub li.bc-uk-active>a,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-nav-default .bc-uk-nav-sub li.bc-uk-active>a,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-default .bc-uk-nav-sub li.bc-uk-active>a,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-nav-default .bc-uk-nav-sub li.bc-uk-active>a,.bc-root .bc-uk-overlay-primary .bc-uk-nav-default .bc-uk-nav-sub li.bc-uk-active>a,.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-default .bc-uk-nav-sub li.bc-uk-active>a{color:#fff}.bc-root .bc-uk-light .bc-uk-nav-primary>li>a,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary>li>a,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary>li>a,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary>li>a,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary>li>a,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-primary>li>a,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-nav-primary>li>a,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-primary>li>a,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-nav-primary>li>a,.bc-root .bc-uk-overlay-primary .bc-uk-nav-primary>li>a,.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-primary>li>a{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-nav-primary>li>a:hover,.bc-root .bc-uk-light .bc-uk-nav-primary>li>a:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary>li>a:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary>li>a:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary>li>a:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary>li>a:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary>li>a:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary>li>a:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary>li>a:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary>li>a:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-primary>li>a:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-primary>li>a:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-nav-primary>li>a:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-nav-primary>li>a:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-primary>li>a:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-primary>li>a:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-nav-primary>li>a:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-nav-primary>li>a:focus,.bc-root .bc-uk-overlay-primary .bc-uk-nav-primary>li>a:hover,.bc-root .bc-uk-overlay-primary .bc-uk-nav-primary>li>a:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-primary>li>a:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-primary>li>a:focus{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-nav-primary>li.bc-uk-active>a,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary>li.bc-uk-active>a,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary>li.bc-uk-active>a,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary>li.bc-uk-active>a,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary>li.bc-uk-active>a,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-primary>li.bc-uk-active>a,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-nav-primary>li.bc-uk-active>a,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-primary>li.bc-uk-active>a,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-nav-primary>li.bc-uk-active>a,.bc-root .bc-uk-overlay-primary .bc-uk-nav-primary>li.bc-uk-active>a,.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-primary>li.bc-uk-active>a{color:#fff}.bc-root .bc-uk-light .bc-uk-nav-primary .bc-uk-nav-header,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-header,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-header,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-header,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-header,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-primary .bc-uk-nav-header,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-nav-primary .bc-uk-nav-header,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-primary .bc-uk-nav-header,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-nav-primary .bc-uk-nav-header,.bc-root .bc-uk-overlay-primary .bc-uk-nav-primary .bc-uk-nav-header,.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-primary .bc-uk-nav-header{color:#fff}.bc-root .bc-uk-light .bc-uk-nav-primary .bc-uk-nav-divider,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-divider,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-divider,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-divider,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-divider,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-primary .bc-uk-nav-divider,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-nav-primary .bc-uk-nav-divider,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-primary .bc-uk-nav-divider,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-nav-primary .bc-uk-nav-divider,.bc-root .bc-uk-overlay-primary .bc-uk-nav-primary .bc-uk-nav-divider,.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-primary .bc-uk-nav-divider{border-top-color:rgba(255,255,255,.2)}.bc-root .bc-uk-light .bc-uk-nav-primary .bc-uk-nav-sub a,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub a,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub a,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub a,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub a,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-primary .bc-uk-nav-sub a,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-nav-primary .bc-uk-nav-sub a,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-primary .bc-uk-nav-sub a,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-nav-primary .bc-uk-nav-sub a,.bc-root .bc-uk-overlay-primary .bc-uk-nav-primary .bc-uk-nav-sub a,.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-primary .bc-uk-nav-sub a{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-nav-primary .bc-uk-nav-sub a:hover,.bc-root .bc-uk-light .bc-uk-nav-primary .bc-uk-nav-sub a:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub a:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub a:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub a:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub a:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub a:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub a:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub a:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub a:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-primary .bc-uk-nav-sub a:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-primary .bc-uk-nav-sub a:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-nav-primary .bc-uk-nav-sub a:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-nav-primary .bc-uk-nav-sub a:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-primary .bc-uk-nav-sub a:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-primary .bc-uk-nav-sub a:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-nav-primary .bc-uk-nav-sub a:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-nav-primary .bc-uk-nav-sub a:focus,.bc-root .bc-uk-overlay-primary .bc-uk-nav-primary .bc-uk-nav-sub a:hover,.bc-root .bc-uk-overlay-primary .bc-uk-nav-primary .bc-uk-nav-sub a:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-primary .bc-uk-nav-sub a:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-primary .bc-uk-nav-sub a:focus{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-nav-primary .bc-uk-nav-sub li.bc-uk-active>a,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub li.bc-uk-active>a,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub li.bc-uk-active>a,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub li.bc-uk-active>a,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-nav-primary .bc-uk-nav-sub li.bc-uk-active>a,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-nav-primary .bc-uk-nav-sub li.bc-uk-active>a,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-nav-primary .bc-uk-nav-sub li.bc-uk-active>a,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-nav-primary .bc-uk-nav-sub li.bc-uk-active>a,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-nav-primary .bc-uk-nav-sub li.bc-uk-active>a,.bc-root .bc-uk-overlay-primary .bc-uk-nav-primary .bc-uk-nav-sub li.bc-uk-active>a,.bc-root .bc-uk-offcanvas-bar .bc-uk-nav-primary .bc-uk-nav-sub li.bc-uk-active>a{color:#fff}.bc-root .bc-uk-light .bc-uk-navbar-nav>li>a,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav>li>a,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav>li>a,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav>li>a,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav>li>a,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-navbar-nav>li>a,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-navbar-nav>li>a,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-navbar-nav>li>a,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-navbar-nav>li>a,.bc-root .bc-uk-overlay-primary .bc-uk-navbar-nav>li>a,.bc-root .bc-uk-offcanvas-bar .bc-uk-navbar-nav>li>a{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-navbar-nav>li:hover>a,.bc-root .bc-uk-light .bc-uk-navbar-nav>li>a:focus,.bc-root .bc-uk-light .bc-uk-navbar-nav>li>a.bc-uk-open,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav>li:hover>a,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav>li>a:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav>li>a.bc-uk-open,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav>li:hover>a,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav>li>a:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav>li>a.bc-uk-open,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav>li:hover>a,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav>li>a:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav>li>a.bc-uk-open,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav>li:hover>a,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav>li>a:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav>li>a.bc-uk-open,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-navbar-nav>li:hover>a,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-navbar-nav>li>a:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-navbar-nav>li>a.bc-uk-open,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-navbar-nav>li:hover>a,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-navbar-nav>li>a:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-navbar-nav>li>a.bc-uk-open,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-navbar-nav>li:hover>a,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-navbar-nav>li>a:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-navbar-nav>li>a.bc-uk-open,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-navbar-nav>li:hover>a,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-navbar-nav>li>a:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-navbar-nav>li>a.bc-uk-open,.bc-root .bc-uk-overlay-primary .bc-uk-navbar-nav>li:hover>a,.bc-root .bc-uk-overlay-primary .bc-uk-navbar-nav>li>a:focus,.bc-root .bc-uk-overlay-primary .bc-uk-navbar-nav>li>a.bc-uk-open,.bc-root .bc-uk-offcanvas-bar .bc-uk-navbar-nav>li:hover>a,.bc-root .bc-uk-offcanvas-bar .bc-uk-navbar-nav>li>a:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-navbar-nav>li>a.bc-uk-open{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-navbar-nav>li>a:active,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav>li>a:active,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav>li>a:active,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav>li>a:active,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav>li>a:active,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-navbar-nav>li>a:active,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-navbar-nav>li>a:active,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-navbar-nav>li>a:active,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-navbar-nav>li>a:active,.bc-root .bc-uk-overlay-primary .bc-uk-navbar-nav>li>a:active,.bc-root .bc-uk-offcanvas-bar .bc-uk-navbar-nav>li>a:active{color:#fff}.bc-root .bc-uk-light .bc-uk-navbar-nav>li.bc-uk-active>a,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav>li.bc-uk-active>a,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav>li.bc-uk-active>a,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav>li.bc-uk-active>a,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-nav>li.bc-uk-active>a,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-navbar-nav>li.bc-uk-active>a,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-navbar-nav>li.bc-uk-active>a,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-navbar-nav>li.bc-uk-active>a,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-navbar-nav>li.bc-uk-active>a,.bc-root .bc-uk-overlay-primary .bc-uk-navbar-nav>li.bc-uk-active>a,.bc-root .bc-uk-offcanvas-bar .bc-uk-navbar-nav>li.bc-uk-active>a{color:#fff}.bc-root .bc-uk-light .bc-uk-navbar-item,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-item,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-item,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-item,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-item,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-navbar-item,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-navbar-item,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-navbar-item,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-navbar-item,.bc-root .bc-uk-overlay-primary .bc-uk-navbar-item,.bc-root .bc-uk-offcanvas-bar .bc-uk-navbar-item{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-navbar-toggle,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-navbar-toggle,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-navbar-toggle,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-navbar-toggle,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-navbar-toggle,.bc-root .bc-uk-overlay-primary .bc-uk-navbar-toggle,.bc-root .bc-uk-offcanvas-bar .bc-uk-navbar-toggle{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-navbar-toggle:hover,.bc-root .bc-uk-light .bc-uk-navbar-toggle:focus,.bc-root .bc-uk-light .bc-uk-navbar-toggle.bc-uk-open,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle.bc-uk-open,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle.bc-uk-open,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle.bc-uk-open,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-navbar-toggle.bc-uk-open,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-navbar-toggle:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-navbar-toggle:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-navbar-toggle.bc-uk-open,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-navbar-toggle:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-navbar-toggle:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-navbar-toggle.bc-uk-open,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-navbar-toggle:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-navbar-toggle:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-navbar-toggle.bc-uk-open,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-navbar-toggle:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-navbar-toggle:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-navbar-toggle.bc-uk-open,.bc-root .bc-uk-overlay-primary .bc-uk-navbar-toggle:hover,.bc-root .bc-uk-overlay-primary .bc-uk-navbar-toggle:focus,.bc-root .bc-uk-overlay-primary .bc-uk-navbar-toggle.bc-uk-open,.bc-root .bc-uk-offcanvas-bar .bc-uk-navbar-toggle:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-navbar-toggle:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-navbar-toggle.bc-uk-open{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-subnav>*>:first-child,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-subnav>*>:first-child,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav>*>:first-child,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-subnav>*>:first-child,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav>*>:first-child,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-subnav>*>:first-child,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-subnav>*>:first-child,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-subnav>*>:first-child,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-subnav>*>:first-child,.bc-root .bc-uk-overlay-primary .bc-uk-subnav>*>:first-child,.bc-root .bc-uk-offcanvas-bar .bc-uk-subnav>*>:first-child{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-subnav>*>a:hover,.bc-root .bc-uk-light .bc-uk-subnav>*>a:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-subnav>*>a:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-subnav>*>a:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav>*>a:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav>*>a:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-subnav>*>a:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-subnav>*>a:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav>*>a:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav>*>a:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-subnav>*>a:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-subnav>*>a:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-subnav>*>a:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-subnav>*>a:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-subnav>*>a:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-subnav>*>a:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-subnav>*>a:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-subnav>*>a:focus,.bc-root .bc-uk-overlay-primary .bc-uk-subnav>*>a:hover,.bc-root .bc-uk-overlay-primary .bc-uk-subnav>*>a:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-subnav>*>a:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-subnav>*>a:focus{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-subnav>.bc-uk-active>a,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-subnav>.bc-uk-active>a,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav>.bc-uk-active>a,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-subnav>.bc-uk-active>a,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav>.bc-uk-active>a,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-subnav>.bc-uk-active>a,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-subnav>.bc-uk-active>a,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-subnav>.bc-uk-active>a,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-subnav>.bc-uk-active>a,.bc-root .bc-uk-overlay-primary .bc-uk-subnav>.bc-uk-active>a,.bc-root .bc-uk-offcanvas-bar .bc-uk-subnav>.bc-uk-active>a{color:#fff}.bc-root .bc-uk-light .bc-uk-subnav-divider>:nth-child(n+2):not(.bc-uk-first-column)::before,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-subnav-divider>:nth-child(n+2):not(.bc-uk-first-column)::before,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav-divider>:nth-child(n+2):not(.bc-uk-first-column)::before,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-subnav-divider>:nth-child(n+2):not(.bc-uk-first-column)::before,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav-divider>:nth-child(n+2):not(.bc-uk-first-column)::before,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-subnav-divider>:nth-child(n+2):not(.bc-uk-first-column)::before,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-subnav-divider>:nth-child(n+2):not(.bc-uk-first-column)::before,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-subnav-divider>:nth-child(n+2):not(.bc-uk-first-column)::before,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-subnav-divider>:nth-child(n+2):not(.bc-uk-first-column)::before,.bc-root .bc-uk-overlay-primary .bc-uk-subnav-divider>:nth-child(n+2):not(.bc-uk-first-column)::before,.bc-root .bc-uk-offcanvas-bar .bc-uk-subnav-divider>:nth-child(n+2):not(.bc-uk-first-column)::before{border-left-color:rgba(255,255,255,.2)}.bc-root .bc-uk-light .bc-uk-subnav-pill>*>:first-child,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill>*>:first-child,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill>*>:first-child,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill>*>:first-child,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill>*>:first-child,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-subnav-pill>*>:first-child,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-subnav-pill>*>:first-child,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-subnav-pill>*>:first-child,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-subnav-pill>*>:first-child,.bc-root .bc-uk-overlay-primary .bc-uk-subnav-pill>*>:first-child,.bc-root .bc-uk-offcanvas-bar .bc-uk-subnav-pill>*>:first-child{background-color:transparent;color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-subnav-pill>*>a:hover,.bc-root .bc-uk-light .bc-uk-subnav-pill>*>a:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill>*>a:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill>*>a:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill>*>a:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill>*>a:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill>*>a:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill>*>a:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill>*>a:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill>*>a:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-subnav-pill>*>a:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-subnav-pill>*>a:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-subnav-pill>*>a:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-subnav-pill>*>a:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-subnav-pill>*>a:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-subnav-pill>*>a:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-subnav-pill>*>a:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-subnav-pill>*>a:focus,.bc-root .bc-uk-overlay-primary .bc-uk-subnav-pill>*>a:hover,.bc-root .bc-uk-overlay-primary .bc-uk-subnav-pill>*>a:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-subnav-pill>*>a:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-subnav-pill>*>a:focus{background-color:rgba(255,255,255,.1);color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-subnav-pill>*>a:active,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill>*>a:active,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill>*>a:active,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill>*>a:active,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill>*>a:active,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-subnav-pill>*>a:active,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-subnav-pill>*>a:active,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-subnav-pill>*>a:active,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-subnav-pill>*>a:active,.bc-root .bc-uk-overlay-primary .bc-uk-subnav-pill>*>a:active,.bc-root .bc-uk-offcanvas-bar .bc-uk-subnav-pill>*>a:active{background-color:rgba(255,255,255,.1);color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-subnav-pill>.bc-uk-active>a,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill>.bc-uk-active>a,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill>.bc-uk-active>a,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill>.bc-uk-active>a,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav-pill>.bc-uk-active>a,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-subnav-pill>.bc-uk-active>a,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-subnav-pill>.bc-uk-active>a,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-subnav-pill>.bc-uk-active>a,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-subnav-pill>.bc-uk-active>a,.bc-root .bc-uk-overlay-primary .bc-uk-subnav-pill>.bc-uk-active>a,.bc-root .bc-uk-offcanvas-bar .bc-uk-subnav-pill>.bc-uk-active>a{background-color:#fff;color:#666}.bc-root .bc-uk-light .bc-uk-subnav>.bc-uk-disabled>a,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-subnav>.bc-uk-disabled>a,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav>.bc-uk-disabled>a,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-subnav>.bc-uk-disabled>a,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-subnav>.bc-uk-disabled>a,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-subnav>.bc-uk-disabled>a,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-subnav>.bc-uk-disabled>a,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-subnav>.bc-uk-disabled>a,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-subnav>.bc-uk-disabled>a,.bc-root .bc-uk-overlay-primary .bc-uk-subnav>.bc-uk-disabled>a,.bc-root .bc-uk-offcanvas-bar .bc-uk-subnav>.bc-uk-disabled>a{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-breadcrumb>*>*,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb>*>*,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb>*>*,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb>*>*,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb>*>*,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-breadcrumb>*>*,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-breadcrumb>*>*,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-breadcrumb>*>*,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-breadcrumb>*>*,.bc-root .bc-uk-overlay-primary .bc-uk-breadcrumb>*>*,.bc-root .bc-uk-offcanvas-bar .bc-uk-breadcrumb>*>*{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-breadcrumb>*>:hover,.bc-root .bc-uk-light .bc-uk-breadcrumb>*>:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb>*>:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb>*>:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb>*>:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb>*>:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb>*>:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb>*>:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb>*>:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb>*>:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-breadcrumb>*>:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-breadcrumb>*>:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-breadcrumb>*>:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-breadcrumb>*>:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-breadcrumb>*>:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-breadcrumb>*>:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-breadcrumb>*>:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-breadcrumb>*>:focus,.bc-root .bc-uk-overlay-primary .bc-uk-breadcrumb>*>:hover,.bc-root .bc-uk-overlay-primary .bc-uk-breadcrumb>*>:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-breadcrumb>*>:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-breadcrumb>*>:focus{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-breadcrumb>:last-child>*,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb>:last-child>*,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb>:last-child>*,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb>:last-child>*,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb>:last-child>*,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-breadcrumb>:last-child>*,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-breadcrumb>:last-child>*,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-breadcrumb>:last-child>*,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-breadcrumb>:last-child>*,.bc-root .bc-uk-overlay-primary .bc-uk-breadcrumb>:last-child>*,.bc-root .bc-uk-offcanvas-bar .bc-uk-breadcrumb>:last-child>*{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-breadcrumb>:nth-child(n+2):not(.bc-uk-first-column)::before,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb>:nth-child(n+2):not(.bc-uk-first-column)::before,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb>:nth-child(n+2):not(.bc-uk-first-column)::before,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb>:nth-child(n+2):not(.bc-uk-first-column)::before,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-breadcrumb>:nth-child(n+2):not(.bc-uk-first-column)::before,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-breadcrumb>:nth-child(n+2):not(.bc-uk-first-column)::before,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-breadcrumb>:nth-child(n+2):not(.bc-uk-first-column)::before,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-breadcrumb>:nth-child(n+2):not(.bc-uk-first-column)::before,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-breadcrumb>:nth-child(n+2):not(.bc-uk-first-column)::before,.bc-root .bc-uk-overlay-primary .bc-uk-breadcrumb>:nth-child(n+2):not(.bc-uk-first-column)::before,.bc-root .bc-uk-offcanvas-bar .bc-uk-breadcrumb>:nth-child(n+2):not(.bc-uk-first-column)::before{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-pagination>*>*,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-pagination>*>*,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-pagination>*>*,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-pagination>*>*,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-pagination>*>*,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-pagination>*>*,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-pagination>*>*,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-pagination>*>*,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-pagination>*>*,.bc-root .bc-uk-overlay-primary .bc-uk-pagination>*>*,.bc-root .bc-uk-offcanvas-bar .bc-uk-pagination>*>*{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-pagination>*>:hover,.bc-root .bc-uk-light .bc-uk-pagination>*>:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-pagination>*>:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-pagination>*>:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-pagination>*>:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-pagination>*>:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-pagination>*>:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-pagination>*>:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-pagination>*>:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-pagination>*>:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-pagination>*>:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-pagination>*>:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-pagination>*>:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-pagination>*>:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-pagination>*>:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-pagination>*>:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-pagination>*>:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-pagination>*>:focus,.bc-root .bc-uk-overlay-primary .bc-uk-pagination>*>:hover,.bc-root .bc-uk-overlay-primary .bc-uk-pagination>*>:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-pagination>*>:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-pagination>*>:focus{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-pagination>.bc-uk-active>*,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-pagination>.bc-uk-active>*,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-pagination>.bc-uk-active>*,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-pagination>.bc-uk-active>*,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-pagination>.bc-uk-active>*,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-pagination>.bc-uk-active>*,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-pagination>.bc-uk-active>*,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-pagination>.bc-uk-active>*,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-pagination>.bc-uk-active>*,.bc-root .bc-uk-overlay-primary .bc-uk-pagination>.bc-uk-active>*,.bc-root .bc-uk-offcanvas-bar .bc-uk-pagination>.bc-uk-active>*{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-pagination>.bc-uk-disabled>*,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-pagination>.bc-uk-disabled>*,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-pagination>.bc-uk-disabled>*,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-pagination>.bc-uk-disabled>*,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-pagination>.bc-uk-disabled>*,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-pagination>.bc-uk-disabled>*,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-pagination>.bc-uk-disabled>*,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-pagination>.bc-uk-disabled>*,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-pagination>.bc-uk-disabled>*,.bc-root .bc-uk-overlay-primary .bc-uk-pagination>.bc-uk-disabled>*,.bc-root .bc-uk-offcanvas-bar .bc-uk-pagination>.bc-uk-disabled>*{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-tab::before,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-tab::before,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-tab::before,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-tab::before,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-tab::before,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-tab::before,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-tab::before,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-tab::before,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-tab::before,.bc-root .bc-uk-overlay-primary .bc-uk-tab::before,.bc-root .bc-uk-offcanvas-bar .bc-uk-tab::before{border-color:rgba(255,255,255,.2)}.bc-root .bc-uk-light .bc-uk-tab>*>a,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-tab>*>a,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-tab>*>a,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-tab>*>a,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-tab>*>a,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-tab>*>a,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-tab>*>a,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-tab>*>a,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-tab>*>a,.bc-root .bc-uk-overlay-primary .bc-uk-tab>*>a,.bc-root .bc-uk-offcanvas-bar .bc-uk-tab>*>a{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-tab>*>a:hover,.bc-root .bc-uk-light .bc-uk-tab>*>a:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-tab>*>a:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-tab>*>a:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-tab>*>a:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-tab>*>a:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-tab>*>a:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-tab>*>a:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-tab>*>a:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-tab>*>a:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-tab>*>a:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-tab>*>a:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-tab>*>a:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-tab>*>a:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-tab>*>a:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-tab>*>a:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-tab>*>a:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-tab>*>a:focus,.bc-root .bc-uk-overlay-primary .bc-uk-tab>*>a:hover,.bc-root .bc-uk-overlay-primary .bc-uk-tab>*>a:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-tab>*>a:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-tab>*>a:focus{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-tab>.bc-uk-active>a,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-tab>.bc-uk-active>a,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-tab>.bc-uk-active>a,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-tab>.bc-uk-active>a,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-tab>.bc-uk-active>a,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-tab>.bc-uk-active>a,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-tab>.bc-uk-active>a,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-tab>.bc-uk-active>a,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-tab>.bc-uk-active>a,.bc-root .bc-uk-overlay-primary .bc-uk-tab>.bc-uk-active>a,.bc-root .bc-uk-offcanvas-bar .bc-uk-tab>.bc-uk-active>a{color:#fff;border-color:#fff}.bc-root .bc-uk-light .bc-uk-tab>.bc-uk-disabled>a,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-tab>.bc-uk-disabled>a,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-tab>.bc-uk-disabled>a,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-tab>.bc-uk-disabled>a,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-tab>.bc-uk-disabled>a,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-tab>.bc-uk-disabled>a,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-tab>.bc-uk-disabled>a,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-tab>.bc-uk-disabled>a,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-tab>.bc-uk-disabled>a,.bc-root .bc-uk-overlay-primary .bc-uk-tab>.bc-uk-disabled>a,.bc-root .bc-uk-offcanvas-bar .bc-uk-tab>.bc-uk-disabled>a{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-slidenav,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-slidenav,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-slidenav,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-slidenav,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-slidenav,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-slidenav,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-slidenav,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-slidenav,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-slidenav,.bc-root .bc-uk-overlay-primary .bc-uk-slidenav,.bc-root .bc-uk-offcanvas-bar .bc-uk-slidenav{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-slidenav:hover,.bc-root .bc-uk-light .bc-uk-slidenav:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-slidenav:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-slidenav:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-slidenav:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-slidenav:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-slidenav:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-slidenav:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-slidenav:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-slidenav:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-slidenav:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-slidenav:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-slidenav:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-slidenav:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-slidenav:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-slidenav:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-slidenav:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-slidenav:focus,.bc-root .bc-uk-overlay-primary .bc-uk-slidenav:hover,.bc-root .bc-uk-overlay-primary .bc-uk-slidenav:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-slidenav:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-slidenav:focus{color:rgba(255,255,255,.95)}.bc-root .bc-uk-light .bc-uk-slidenav:active,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-slidenav:active,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-slidenav:active,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-slidenav:active,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-slidenav:active,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-slidenav:active,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-slidenav:active,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-slidenav:active,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-slidenav:active,.bc-root .bc-uk-overlay-primary .bc-uk-slidenav:active,.bc-root .bc-uk-offcanvas-bar .bc-uk-slidenav:active{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-dotnav>*>*,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-dotnav>*>*,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-dotnav>*>*,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-dotnav>*>*,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-dotnav>*>*,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-dotnav>*>*,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-dotnav>*>*,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-dotnav>*>*,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-dotnav>*>*,.bc-root .bc-uk-overlay-primary .bc-uk-dotnav>*>*,.bc-root .bc-uk-offcanvas-bar .bc-uk-dotnav>*>*{background-color:transparent;border-color:rgba(255,255,255,.9)}.bc-root .bc-uk-light .bc-uk-dotnav>*>:hover,.bc-root .bc-uk-light .bc-uk-dotnav>*>:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-dotnav>*>:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-dotnav>*>:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-dotnav>*>:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-dotnav>*>:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-dotnav>*>:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-dotnav>*>:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-dotnav>*>:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-dotnav>*>:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-dotnav>*>:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-dotnav>*>:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-dotnav>*>:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-dotnav>*>:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-dotnav>*>:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-dotnav>*>:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-dotnav>*>:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-dotnav>*>:focus,.bc-root .bc-uk-overlay-primary .bc-uk-dotnav>*>:hover,.bc-root .bc-uk-overlay-primary .bc-uk-dotnav>*>:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-dotnav>*>:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-dotnav>*>:focus{background-color:rgba(255,255,255,.9);border-color:transparent}.bc-root .bc-uk-light .bc-uk-dotnav>*>:active,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-dotnav>*>:active,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-dotnav>*>:active,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-dotnav>*>:active,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-dotnav>*>:active,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-dotnav>*>:active,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-dotnav>*>:active,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-dotnav>*>:active,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-dotnav>*>:active,.bc-root .bc-uk-overlay-primary .bc-uk-dotnav>*>:active,.bc-root .bc-uk-offcanvas-bar .bc-uk-dotnav>*>:active{background-color:rgba(255,255,255,.5);border-color:transparent}.bc-root .bc-uk-light .bc-uk-dotnav>.bc-uk-active>*,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-dotnav>.bc-uk-active>*,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-dotnav>.bc-uk-active>*,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-dotnav>.bc-uk-active>*,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-dotnav>.bc-uk-active>*,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-dotnav>.bc-uk-active>*,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-dotnav>.bc-uk-active>*,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-dotnav>.bc-uk-active>*,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-dotnav>.bc-uk-active>*,.bc-root .bc-uk-overlay-primary .bc-uk-dotnav>.bc-uk-active>*,.bc-root .bc-uk-offcanvas-bar .bc-uk-dotnav>.bc-uk-active>*{background-color:rgba(255,255,255,.9);border-color:transparent}.bc-root .bc-uk-light .bc-uk-accordion-title,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-accordion-title,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-accordion-title,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-accordion-title,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-accordion-title,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-accordion-title,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-accordion-title,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-accordion-title,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-accordion-title,.bc-root .bc-uk-overlay-primary .bc-uk-accordion-title,.bc-root .bc-uk-offcanvas-bar .bc-uk-accordion-title{color:#fff}.bc-root .bc-uk-light .bc-uk-accordion-title:hover,.bc-root .bc-uk-light .bc-uk-accordion-title:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-accordion-title:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-accordion-title:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-accordion-title:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-accordion-title:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-accordion-title:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-accordion-title:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-accordion-title:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-accordion-title:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-accordion-title:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-accordion-title:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-accordion-title:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-accordion-title:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-accordion-title:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-accordion-title:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-accordion-title:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-accordion-title:focus,.bc-root .bc-uk-overlay-primary .bc-uk-accordion-title:hover,.bc-root .bc-uk-overlay-primary .bc-uk-accordion-title:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-accordion-title:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-accordion-title:focus{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-iconnav>*>a,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-iconnav>*>a,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-iconnav>*>a,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-iconnav>*>a,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-iconnav>*>a,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-iconnav>*>a,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-iconnav>*>a,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-iconnav>*>a,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-iconnav>*>a,.bc-root .bc-uk-overlay-primary .bc-uk-iconnav>*>a,.bc-root .bc-uk-offcanvas-bar .bc-uk-iconnav>*>a{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-iconnav>*>a:hover,.bc-root .bc-uk-light .bc-uk-iconnav>*>a:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-iconnav>*>a:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-iconnav>*>a:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-iconnav>*>a:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-iconnav>*>a:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-iconnav>*>a:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-iconnav>*>a:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-iconnav>*>a:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-iconnav>*>a:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-iconnav>*>a:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-iconnav>*>a:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-iconnav>*>a:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-iconnav>*>a:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-iconnav>*>a:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-iconnav>*>a:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-iconnav>*>a:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-iconnav>*>a:focus,.bc-root .bc-uk-overlay-primary .bc-uk-iconnav>*>a:hover,.bc-root .bc-uk-overlay-primary .bc-uk-iconnav>*>a:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-iconnav>*>a:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-iconnav>*>a:focus{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-iconnav>.bc-uk-active>a,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-iconnav>.bc-uk-active>a,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-iconnav>.bc-uk-active>a,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-iconnav>.bc-uk-active>a,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-iconnav>.bc-uk-active>a,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-iconnav>.bc-uk-active>a,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-iconnav>.bc-uk-active>a,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-iconnav>.bc-uk-active>a,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-iconnav>.bc-uk-active>a,.bc-root .bc-uk-overlay-primary .bc-uk-iconnav>.bc-uk-active>a,.bc-root .bc-uk-offcanvas-bar .bc-uk-iconnav>.bc-uk-active>a{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-text-lead,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-text-lead,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-text-lead,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-text-lead,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-text-lead,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-text-lead,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-text-lead,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-text-lead,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-text-lead,.bc-root .bc-uk-overlay-primary .bc-uk-text-lead,.bc-root .bc-uk-offcanvas-bar .bc-uk-text-lead{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-text-meta,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-text-meta,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-text-meta,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-text-meta,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-text-meta,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-text-meta,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-text-meta,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-text-meta,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-text-meta,.bc-root .bc-uk-overlay-primary .bc-uk-text-meta,.bc-root .bc-uk-offcanvas-bar .bc-uk-text-meta{color:rgba(255,255,255,.5)}.bc-root .bc-uk-light .bc-uk-text-muted,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-text-muted,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-text-muted,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-text-muted,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-text-muted,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-text-muted,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-text-muted,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-text-muted,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-text-muted,.bc-root .bc-uk-overlay-primary .bc-uk-text-muted,.bc-root .bc-uk-offcanvas-bar .bc-uk-text-muted{color:rgba(255,255,255,.5) !important}.bc-root .bc-uk-light .bc-uk-text-emphasis,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-text-emphasis,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-text-emphasis,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-text-emphasis,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-text-emphasis,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-text-emphasis,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-text-emphasis,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-text-emphasis,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-text-emphasis,.bc-root .bc-uk-overlay-primary .bc-uk-text-emphasis,.bc-root .bc-uk-offcanvas-bar .bc-uk-text-emphasis{color:#fff !important}.bc-root .bc-uk-light .bc-uk-text-primary,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-text-primary,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-text-primary,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-text-primary,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-text-primary,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-text-primary,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-text-primary,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-text-primary,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-text-primary,.bc-root .bc-uk-overlay-primary .bc-uk-text-primary,.bc-root .bc-uk-offcanvas-bar .bc-uk-text-primary{color:#fff !important}.bc-root .bc-uk-light .bc-uk-text-secondary,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-text-secondary,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-text-secondary,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-text-secondary,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-text-secondary,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-text-secondary,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-text-secondary,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-text-secondary,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-text-secondary,.bc-root .bc-uk-overlay-primary .bc-uk-text-secondary,.bc-root .bc-uk-offcanvas-bar .bc-uk-text-secondary{color:#fff !important}.bc-root .bc-uk-light .bc-uk-column-divider,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-column-divider,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-column-divider,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-column-divider,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-column-divider,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-column-divider,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-column-divider,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-column-divider,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-column-divider,.bc-root .bc-uk-overlay-primary .bc-uk-column-divider,.bc-root .bc-uk-offcanvas-bar .bc-uk-column-divider{column-rule-color:rgba(255,255,255,.2)}.bc-root .bc-uk-light .bc-uk-logo,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-logo,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-logo,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-logo,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-logo,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-logo,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-logo,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-logo,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-logo,.bc-root .bc-uk-overlay-primary .bc-uk-logo,.bc-root .bc-uk-offcanvas-bar .bc-uk-logo{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-logo:hover,.bc-root .bc-uk-light .bc-uk-logo:focus,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-logo:hover,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-logo:focus,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-logo:hover,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-logo:focus,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-logo:hover,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-logo:focus,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-logo:hover,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-logo:focus,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-logo:hover,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-logo:focus,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-logo:hover,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-logo:focus,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-logo:hover,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-logo:focus,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-logo:hover,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-logo:focus,.bc-root .bc-uk-overlay-primary .bc-uk-logo:hover,.bc-root .bc-uk-overlay-primary .bc-uk-logo:focus,.bc-root .bc-uk-offcanvas-bar .bc-uk-logo:hover,.bc-root .bc-uk-offcanvas-bar .bc-uk-logo:focus{color:rgba(255,255,255,.7)}.bc-root .bc-uk-light .bc-uk-logo>:not(.bc-uk-logo-inverse):not(:only-of-type),.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-logo>:not(.bc-uk-logo-inverse):not(:only-of-type),.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-logo>:not(.bc-uk-logo-inverse):not(:only-of-type),.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-logo>:not(.bc-uk-logo-inverse):not(:only-of-type),.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-logo>:not(.bc-uk-logo-inverse):not(:only-of-type),.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-logo>:not(.bc-uk-logo-inverse):not(:only-of-type),.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-logo>:not(.bc-uk-logo-inverse):not(:only-of-type),.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-logo>:not(.bc-uk-logo-inverse):not(:only-of-type),.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-logo>:not(.bc-uk-logo-inverse):not(:only-of-type),.bc-root .bc-uk-overlay-primary .bc-uk-logo>:not(.bc-uk-logo-inverse):not(:only-of-type),.bc-root .bc-uk-offcanvas-bar .bc-uk-logo>:not(.bc-uk-logo-inverse):not(:only-of-type){display:none}.bc-root .bc-uk-light .bc-uk-logo-inverse,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-logo-inverse,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-logo-inverse,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-logo-inverse,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-logo-inverse,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-logo-inverse,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-logo-inverse,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-logo-inverse,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-logo-inverse,.bc-root .bc-uk-overlay-primary .bc-uk-logo-inverse,.bc-root .bc-uk-offcanvas-bar .bc-uk-logo-inverse{display:inline}.bc-root .bc-uk-light .bc-uk-accordion-title::before,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-accordion-title::before,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-accordion-title::before,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-accordion-title::before,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-accordion-title::before,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-accordion-title::before,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-accordion-title::before,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-accordion-title::before,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-accordion-title::before,.bc-root .bc-uk-overlay-primary .bc-uk-accordion-title::before,.bc-root .bc-uk-offcanvas-bar .bc-uk-accordion-title::before{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%20%20%20%20%3Crect%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20width%3D%221%22%20height%3D%2213%22%20x%3D%226%22%20y%3D%220%22%20%2F%3E%0A%3C%2Fsvg%3E")}.bc-root .bc-uk-light .bc-uk-open>.bc-uk-accordion-title::before,.bc-root .bc-uk-section-primary:not(.bc-uk-preserve-color) .bc-uk-open>.bc-uk-accordion-title::before,.bc-root .bc-uk-section-secondary:not(.bc-uk-preserve-color) .bc-uk-open>.bc-uk-accordion-title::before,.bc-root .bc-uk-tile-primary:not(.bc-uk-preserve-color) .bc-uk-open>.bc-uk-accordion-title::before,.bc-root .bc-uk-tile-secondary:not(.bc-uk-preserve-color) .bc-uk-open>.bc-uk-accordion-title::before,.bc-root .bc-uk-card-primary.bc-uk-card-body .bc-uk-open>.bc-uk-accordion-title::before,.bc-root .bc-uk-card-primary>:not([class*=uk-card-media]) .bc-uk-open>.bc-uk-accordion-title::before,.bc-root .bc-uk-card-secondary.bc-uk-card-body .bc-uk-open>.bc-uk-accordion-title::before,.bc-root .bc-uk-card-secondary>:not([class*=uk-card-media]) .bc-uk-open>.bc-uk-accordion-title::before,.bc-root .bc-uk-overlay-primary .bc-uk-open>.bc-uk-accordion-title::before,.bc-root .bc-uk-offcanvas-bar .bc-uk-open>.bc-uk-accordion-title::before{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%3C%2Fsvg%3E")}@media print{.bc-root *,.bc-root *::before,.bc-root *::after{background:transparent !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important}.bc-root a,.bc-root a:visited{text-decoration:underline}.bc-root pre,.bc-root blockquote{border:1px solid #999;page-break-inside:avoid}.bc-root thead{display:table-header-group}.bc-root tr,.bc-root img{page-break-inside:avoid}.bc-root img{max-width:100% !important}@page{.bc-root{margin:.5cm}}.bc-root p,.bc-root h2,.bc-root h3{orphans:3;widows:3}.bc-root h2,.bc-root h3{page-break-after:avoid}}@font-face{font-family:"lightcase";src:url("../css/fonts/lightcase.eot?55356177");src:url("../css/fonts/lightcase.eot?55356177#iefix") format("embedded-opentype"),url("../fonts/lightcase.woff?55356177") format("woff"),url("../fonts/lightcase.ttf?55356177") format("truetype"),url("../fonts/lightcase.svg?55356177#lightcase") format("svg");font-weight:normal;font-style:normal}[class*=lightcase-icon-]:before{font-family:"lightcase",sans-serif;font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;text-align:center;font-variant:normal;text-transform:none;line-height:1em}.lightcase-icon-play:before{content:""}.lightcase-icon-pause:before{content:""}.lightcase-icon-close:before{content:""}.lightcase-icon-prev:before{content:""}.lightcase-icon-next:before{content:""}.lightcase-icon-spin:before{content:""}@-webkit-keyframes lightcase-spin{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);-moz-transform:rotate(359deg);-o-transform:rotate(359deg);transform:rotate(359deg)}}@-moz-keyframes lightcase-spin{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);-moz-transform:rotate(359deg);-o-transform:rotate(359deg);transform:rotate(359deg)}}@-o-keyframes lightcase-spin{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);-moz-transform:rotate(359deg);-o-transform:rotate(359deg);transform:rotate(359deg)}}@-ms-keyframes lightcase-spin{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);-moz-transform:rotate(359deg);-o-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes lightcase-spin{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);-moz-transform:rotate(359deg);-o-transform:rotate(359deg);transform:rotate(359deg)}}#lightcase-case{display:none;position:fixed;z-index:2002;top:50%;left:50%;font-family:arial,sans-serif;font-size:13px;line-height:1.5;text-align:left;text-shadow:0 0 10px rgba(0,0,0,.5)}@media screen and (max-width: 640px){html[data-lc-type=inline] #lightcase-case,html[data-lc-type=ajax] #lightcase-case{position:fixed !important;top:0 !important;left:0 !important;right:0 !important;bottom:0 !important;margin:0 !important;padding:55px 0 70px 0;width:100% !important;height:100% !important;overflow:auto !important}}@media screen and (min-width: 641px){html:not([data-lc-type=error]) #lightcase-content{position:relative;z-index:1;text-shadow:none;background-color:#fff;-webkit-box-shadow:0 0 30px rgba(0,0,0,.5);-moz-box-shadow:0 0 30px rgba(0,0,0,.5);-o-box-shadow:0 0 30px rgba(0,0,0,.5);box-shadow:0 0 30px rgba(0,0,0,.5);-webkit-backface-visibility:hidden}}@media screen and (min-width: 641px){html[data-lc-type=image] #lightcase-content,html[data-lc-type=video] #lightcase-content{background-color:#333}}html[data-lc-type=inline] #lightcase-content,html[data-lc-type=ajax] #lightcase-content,html[data-lc-type=error] #lightcase-content{-webkit-box-shadow:none;-moz-box-shadow:none;-o-box-shadow:none;box-shadow:none}@media screen and (max-width: 640px){html[data-lc-type=inline] #lightcase-content,html[data-lc-type=ajax] #lightcase-content,html[data-lc-type=error] #lightcase-content{position:relative !important;top:auto !important;left:auto !important;width:auto !important;height:auto !important;margin:0 !important;padding:0 !important;border:none !important;background:none !important}}html[data-lc-type=inline] #lightcase-content .lightcase-contentInner,html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner,html[data-lc-type=error] #lightcase-content .lightcase-contentInner{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box}@media screen and (max-width: 640px){html[data-lc-type=inline] #lightcase-content .lightcase-contentInner,html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner,html[data-lc-type=error] #lightcase-content .lightcase-contentInner{padding:15px}html[data-lc-type=inline] #lightcase-content .lightcase-contentInner,html[data-lc-type=inline] #lightcase-content .lightcase-contentInner>*,html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner,html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner>*,html[data-lc-type=error] #lightcase-content .lightcase-contentInner,html[data-lc-type=error] #lightcase-content .lightcase-contentInner>*{width:100% !important;max-width:none !important}html[data-lc-type=inline] #lightcase-content .lightcase-contentInner>*:not(iframe),html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner>*:not(iframe),html[data-lc-type=error] #lightcase-content .lightcase-contentInner>*:not(iframe){height:auto !important;max-height:none !important}}@media screen and (max-width: 640px){html.lightcase-isMobileDevice[data-lc-type=iframe] #lightcase-content .lightcase-contentInner iframe{overflow:auto;-webkit-overflow-scrolling:touch}}@media screen and (max-width: 640px)and (min-width: 641px){html[data-lc-type=image] #lightcase-content .lightcase-contentInner,html[data-lc-type=video] #lightcase-content .lightcase-contentInner{line-height:.75}}html[data-lc-type=image] #lightcase-content .lightcase-contentInner{position:relative;overflow:hidden !important}@media screen and (max-width: 640px){html[data-lc-type=inline] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap,html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap,html[data-lc-type=error] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap{position:relative !important;top:auto !important;left:auto !important;width:auto !important;height:auto !important;margin:0 !important;padding:0 !important;border:none !important;background:none !important}}@media screen and (min-width: 641px){html:not([data-lc-type=error]) #lightcase-content .lightcase-contentInner .lightcase-inlineWrap{padding:30px;overflow:auto;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box}}@media screen and (max-width: 640px){#lightcase-content h1,#lightcase-content h2,#lightcase-content h3,#lightcase-content h4,#lightcase-content h5,#lightcase-content h6,#lightcase-content p{color:#aaa}}@media screen and (min-width: 641px){#lightcase-content h1,#lightcase-content h2,#lightcase-content h3,#lightcase-content h4,#lightcase-content h5,#lightcase-content h6,#lightcase-content p{color:#333}}#lightcase-case p.lightcase-error{margin:0;font-size:17px;text-align:center;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#aaa}@media screen and (max-width: 640px){#lightcase-case p.lightcase-error{padding:30px 0}}@media screen and (min-width: 641px){#lightcase-case p.lightcase-error{padding:0}}.lightcase-open body{overflow:hidden}.lightcase-isMobileDevice .lightcase-open body{max-width:100%;max-height:100%}#lightcase-info{position:absolute;padding-top:15px}#lightcase-info #lightcase-title,#lightcase-info #lightcase-caption{margin:0;padding:0;line-height:1.5;font-weight:normal;text-overflow:ellipsis}#lightcase-info #lightcase-title{font-size:17px;color:#aaa}@media screen and (max-width: 640px){#lightcase-info #lightcase-title{position:fixed;top:10px;left:0;max-width:87.5%;padding:5px 15px;background:#333}}#lightcase-info #lightcase-caption{clear:both;font-size:13px;color:#aaa}#lightcase-info #lightcase-sequenceInfo{font-size:11px;color:#aaa}@media screen and (max-width: 640px){.lightcase-fullScreenMode #lightcase-info{padding-left:15px;padding-right:15px}html:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #lightcase-info{position:static}}#lightcase-loading{position:fixed;z-index:9999;width:1.123em;height:auto;font-size:38px;line-height:1;text-align:center;text-shadow:none;position:fixed;z-index:2001;top:50%;left:50%;margin-top:-0.5em;margin-left:-0.5em;opacity:1;font-size:32px;text-shadow:0 0 15px #fff;-moz-transform-origin:50% 53%;-webkit-animation:lightcase-spin .5s infinite linear;-moz-animation:lightcase-spin .5s infinite linear;-o-animation:lightcase-spin .5s infinite linear;animation:lightcase-spin .5s infinite linear}#lightcase-loading,#lightcase-loading:focus{text-decoration:none;color:#fff;-webkit-tap-highlight-color:transparent;-webkit-transition:color,opacity,ease-in-out .25s;-moz-transition:color,opacity,ease-in-out .25s;-o-transition:color,opacity,ease-in-out .25s;transition:color,opacity,ease-in-out .25s}#lightcase-loading>span{display:inline-block;text-indent:-9999px}a[class*=lightcase-icon-]{position:fixed;z-index:9999;width:1.123em;height:auto;font-size:38px;line-height:1;text-align:center;text-shadow:none;outline:none;cursor:pointer}a[class*=lightcase-icon-],a[class*=lightcase-icon-]:focus{text-decoration:none;color:rgba(255,255,255,.6);-webkit-tap-highlight-color:transparent;-webkit-transition:color,opacity,ease-in-out .25s;-moz-transition:color,opacity,ease-in-out .25s;-o-transition:color,opacity,ease-in-out .25s;transition:color,opacity,ease-in-out .25s}a[class*=lightcase-icon-]>span{display:inline-block;text-indent:-9999px}a[class*=lightcase-icon-]:hover{color:#fff;text-shadow:0 0 15px #fff}.lightcase-isMobileDevice a[class*=lightcase-icon-]:hover{color:#aaa;text-shadow:none}a[class*=lightcase-icon-].lightcase-icon-close{position:fixed;top:15px;right:15px;bottom:auto;margin:0;opacity:0;outline:none}a[class*=lightcase-icon-].lightcase-icon-prev{left:15px}a[class*=lightcase-icon-].lightcase-icon-next{right:15px}a[class*=lightcase-icon-].lightcase-icon-pause,a[class*=lightcase-icon-].lightcase-icon-play{left:50%;margin-left:-0.5em}@media screen and (min-width: 641px){a[class*=lightcase-icon-].lightcase-icon-pause,a[class*=lightcase-icon-].lightcase-icon-play{opacity:0}}@media screen and (max-width: 640px){a[class*=lightcase-icon-]{bottom:15px;font-size:24px}}@media screen and (min-width: 641px){a[class*=lightcase-icon-]{bottom:50%;margin-bottom:-0.5em}a[class*=lightcase-icon-]:hover,#lightcase-case:hover~a[class*=lightcase-icon-]{opacity:1}}#lightcase-overlay{display:none;width:100%;min-height:100%;position:fixed;z-index:2000;top:-9999px;bottom:-9999px;left:0;background:#333}@media screen and (max-width: 640px){#lightcase-overlay{opacity:1 !important}}body.stop-scrolling{height:100%;overflow:hidden}.sweet-overlay{background-color:#000;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";background-color:rgba(0,0,0,.4);position:fixed;left:0;right:0;top:0;bottom:0;display:none;z-index:10000}.sweet-alert{background-color:#fff;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;width:478px;padding:17px;border-radius:5px;text-align:center;position:fixed;left:50%;top:50%;margin-left:-256px;margin-top:-200px;overflow:hidden;display:none;z-index:99999}@media all and (max-width: 540px){.sweet-alert{width:auto;margin-left:0;margin-right:0;left:15px;right:15px}}.sweet-alert h2{color:#575757;font-size:30px;text-align:center;font-weight:600;text-transform:none;position:relative;margin:25px 0;padding:0;line-height:40px;display:block}.sweet-alert p{color:#797979;font-size:16px;text-align:center;font-weight:300;position:relative;text-align:inherit;float:none;margin:0;padding:0;line-height:normal}.sweet-alert fieldset{border:none;position:relative}.sweet-alert .sa-error-container{background-color:#f1f1f1;margin-left:-17px;margin-right:-17px;overflow:hidden;padding:0 10px;max-height:0;webkit-transition:padding .15s,max-height .15s;transition:padding .15s,max-height .15s}.sweet-alert .sa-error-container.show{padding:10px 0;max-height:100px;webkit-transition:padding .2s,max-height .2s;transition:padding .25s,max-height .25s}.sweet-alert .sa-error-container .icon{display:inline-block;width:24px;height:24px;border-radius:50%;background-color:#ea7d7d;color:#fff;line-height:24px;text-align:center;margin-right:3px}.sweet-alert .sa-error-container p{display:inline-block}.sweet-alert .sa-input-error{position:absolute;top:29px;right:26px;width:20px;height:20px;opacity:0;-webkit-transform:scale(0.5);transform:scale(0.5);-webkit-transform-origin:50% 50%;transform-origin:50% 50%;-webkit-transition:all .1s;transition:all .1s}.sweet-alert .sa-input-error::before,.sweet-alert .sa-input-error::after{content:"";width:20px;height:6px;background-color:#f06e57;border-radius:3px;position:absolute;top:50%;margin-top:-4px;left:50%;margin-left:-9px}.sweet-alert .sa-input-error::before{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.sweet-alert .sa-input-error::after{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.sweet-alert .sa-input-error.show{opacity:1;-webkit-transform:scale(1);transform:scale(1)}.sweet-alert input{width:100%;box-sizing:border-box;border-radius:3px;border:1px solid #d7d7d7;height:43px;margin-top:10px;margin-bottom:17px;font-size:18px;box-shadow:inset 0px 1px 1px rgba(0,0,0,.06);padding:0 12px;display:none;-webkit-transition:all .3s;transition:all .3s}.sweet-alert input:focus{outline:none;box-shadow:0px 0px 3px #c4e6f5;border:1px solid #b4dbed}.sweet-alert input:focus::-moz-placeholder{transition:opacity .3s .03s ease;opacity:.5}.sweet-alert input:focus:-ms-input-placeholder{transition:opacity .3s .03s ease;opacity:.5}.sweet-alert input:focus::-webkit-input-placeholder{transition:opacity .3s .03s ease;opacity:.5}.sweet-alert input::-moz-placeholder{color:#bdbdbd}.sweet-alert input:-ms-input-placeholder{color:#bdbdbd}.sweet-alert input::-webkit-input-placeholder{color:#bdbdbd}.sweet-alert.show-input input{display:block}.sweet-alert .sa-confirm-button-container{display:inline-block;position:relative}.sweet-alert .la-ball-fall{position:absolute;left:50%;top:50%;margin-left:-27px;margin-top:4px;opacity:0;visibility:hidden}.sweet-alert button{background-color:#8cd4f5;color:#fff;border:none;box-shadow:none;font-size:17px;font-weight:500;-webkit-border-radius:4px;border-radius:5px;padding:10px 32px;margin:26px 5px 0 5px;cursor:pointer}.sweet-alert button:focus{outline:none;box-shadow:0 0 2px rgba(128,179,235,.5),inset 0 0 0 1px rgba(0,0,0,.05)}.sweet-alert button:hover{background-color:#7ecff4}.sweet-alert button:active{background-color:#5dc2f1}.sweet-alert button.cancel{background-color:#c1c1c1}.sweet-alert button.cancel:hover{background-color:#b9b9b9}.sweet-alert button.cancel:active{background-color:#a8a8a8}.sweet-alert button.cancel:focus{box-shadow:rgba(197,205,211,.8) 0px 0px 2px,rgba(0,0,0,.0470588) 0px 0px 0px 1px inset !important}.sweet-alert button[disabled]{opacity:.6;cursor:default}.sweet-alert button.confirm[disabled]{color:transparent}.sweet-alert button.confirm[disabled]~.la-ball-fall{opacity:1;visibility:visible;transition-delay:0s}.sweet-alert button::-moz-focus-inner{border:0}.sweet-alert[data-has-cancel-button=false] button{box-shadow:none !important}.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false]{padding-bottom:40px}.sweet-alert .sa-icon{width:80px;height:80px;border:4px solid gray;-webkit-border-radius:40px;border-radius:40px;border-radius:50%;margin:20px auto;padding:0;position:relative;box-sizing:content-box}.sweet-alert .sa-icon.sa-error{border-color:#f27474}.sweet-alert .sa-icon.sa-error .sa-x-mark{position:relative;display:block}.sweet-alert .sa-icon.sa-error .sa-line{position:absolute;height:5px;width:47px;background-color:#f27474;display:block;top:37px;border-radius:2px}.sweet-alert .sa-icon.sa-error .sa-line.sa-left{-webkit-transform:rotate(45deg);transform:rotate(45deg);left:17px}.sweet-alert .sa-icon.sa-error .sa-line.sa-right{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);right:16px}.sweet-alert .sa-icon.sa-warning{border-color:#f8bb86}.sweet-alert .sa-icon.sa-warning .sa-body{position:absolute;width:5px;height:47px;left:50%;top:10px;-webkit-border-radius:2px;border-radius:2px;margin-left:-2px;background-color:#f8bb86}.sweet-alert .sa-icon.sa-warning .sa-dot{position:absolute;width:7px;height:7px;-webkit-border-radius:50%;border-radius:50%;margin-left:-3px;left:50%;bottom:10px;background-color:#f8bb86}.sweet-alert .sa-icon.sa-info{border-color:#c9dae1}.sweet-alert .sa-icon.sa-info::before{content:"";position:absolute;width:5px;height:29px;left:50%;bottom:17px;border-radius:2px;margin-left:-2px;background-color:#c9dae1}.sweet-alert .sa-icon.sa-info::after{content:"";position:absolute;width:7px;height:7px;border-radius:50%;margin-left:-3px;top:19px;background-color:#c9dae1}.sweet-alert .sa-icon.sa-success{border-color:#a5dc86}.sweet-alert .sa-icon.sa-success::before,.sweet-alert .sa-icon.sa-success::after{content:"";-webkit-border-radius:40px;border-radius:40px;border-radius:50%;position:absolute;width:60px;height:120px;background:#fff;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.sweet-alert .sa-icon.sa-success::before{-webkit-border-radius:120px 0 0 120px;border-radius:120px 0 0 120px;top:-7px;left:-33px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:60px 60px;transform-origin:60px 60px}.sweet-alert .sa-icon.sa-success::after{-webkit-border-radius:0 120px 120px 0;border-radius:0 120px 120px 0;top:-11px;left:30px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:0px 60px;transform-origin:0px 60px}.sweet-alert .sa-icon.sa-success .sa-placeholder{width:80px;height:80px;border:4px solid rgba(165,220,134,.2);-webkit-border-radius:40px;border-radius:40px;border-radius:50%;box-sizing:content-box;position:absolute;left:-4px;top:-4px;z-index:2}.sweet-alert .sa-icon.sa-success .sa-fix{width:5px;height:90px;background-color:#fff;position:absolute;left:28px;top:8px;z-index:1;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.sweet-alert .sa-icon.sa-success .sa-line{height:5px;background-color:#a5dc86;display:block;border-radius:2px;position:absolute;z-index:2}.sweet-alert .sa-icon.sa-success .sa-line.sa-tip{width:25px;left:14px;top:46px;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.sweet-alert .sa-icon.sa-success .sa-line.sa-long{width:47px;right:8px;top:38px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.sweet-alert .sa-icon.sa-custom{background-size:contain;border-radius:0;border:none;background-position:center center;background-repeat:no-repeat}@-webkit-keyframes showSweetAlert{0%{transform:scale(0.7);-webkit-transform:scale(0.7)}45%{transform:scale(1.05);-webkit-transform:scale(1.05)}80%{transform:scale(0.95);-webkit-transform:scale(0.95)}100%{transform:scale(1);-webkit-transform:scale(1)}}@keyframes showSweetAlert{0%{transform:scale(0.7);-webkit-transform:scale(0.7)}45%{transform:scale(1.05);-webkit-transform:scale(1.05)}80%{transform:scale(0.95);-webkit-transform:scale(0.95)}100%{transform:scale(1);-webkit-transform:scale(1)}}@-webkit-keyframes hideSweetAlert{0%{transform:scale(1);-webkit-transform:scale(1)}100%{transform:scale(0.5);-webkit-transform:scale(0.5)}}@keyframes hideSweetAlert{0%{transform:scale(1);-webkit-transform:scale(1)}100%{transform:scale(0.5);-webkit-transform:scale(0.5)}}@-webkit-keyframes slideFromTop{0%{top:0%}100%{top:50%}}@keyframes slideFromTop{0%{top:0%}100%{top:50%}}@-webkit-keyframes slideToTop{0%{top:50%}100%{top:0%}}@keyframes slideToTop{0%{top:50%}100%{top:0%}}@-webkit-keyframes slideFromBottom{0%{top:70%}100%{top:50%}}@keyframes slideFromBottom{0%{top:70%}100%{top:50%}}@-webkit-keyframes slideToBottom{0%{top:50%}100%{top:70%}}@keyframes slideToBottom{0%{top:50%}100%{top:70%}}.showSweetAlert[data-animation=pop]{-webkit-animation:showSweetAlert .3s;animation:showSweetAlert .3s}.showSweetAlert[data-animation=none]{-webkit-animation:none;animation:none}.showSweetAlert[data-animation=slide-from-top]{-webkit-animation:slideFromTop .3s;animation:slideFromTop .3s}.showSweetAlert[data-animation=slide-from-bottom]{-webkit-animation:slideFromBottom .3s;animation:slideFromBottom .3s}.hideSweetAlert[data-animation=pop]{-webkit-animation:hideSweetAlert .2s;animation:hideSweetAlert .2s}.hideSweetAlert[data-animation=none]{-webkit-animation:none;animation:none}.hideSweetAlert[data-animation=slide-from-top]{-webkit-animation:slideToTop .4s;animation:slideToTop .4s}.hideSweetAlert[data-animation=slide-from-bottom]{-webkit-animation:slideToBottom .3s;animation:slideToBottom .3s}@-webkit-keyframes animateSuccessTip{0%{width:0;left:1px;top:19px}54%{width:0;left:1px;top:19px}70%{width:50px;left:-8px;top:37px}84%{width:17px;left:21px;top:48px}100%{width:25px;left:14px;top:45px}}@keyframes animateSuccessTip{0%{width:0;left:1px;top:19px}54%{width:0;left:1px;top:19px}70%{width:50px;left:-8px;top:37px}84%{width:17px;left:21px;top:48px}100%{width:25px;left:14px;top:45px}}@-webkit-keyframes animateSuccessLong{0%{width:0;right:46px;top:54px}65%{width:0;right:46px;top:54px}84%{width:55px;right:0px;top:35px}100%{width:47px;right:8px;top:38px}}@keyframes animateSuccessLong{0%{width:0;right:46px;top:54px}65%{width:0;right:46px;top:54px}84%{width:55px;right:0px;top:35px}100%{width:47px;right:8px;top:38px}}@-webkit-keyframes rotatePlaceholder{0%{transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}5%{transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}12%{transform:rotate(-405deg);-webkit-transform:rotate(-405deg)}100%{transform:rotate(-405deg);-webkit-transform:rotate(-405deg)}}@keyframes rotatePlaceholder{0%{transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}5%{transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}12%{transform:rotate(-405deg);-webkit-transform:rotate(-405deg)}100%{transform:rotate(-405deg);-webkit-transform:rotate(-405deg)}}.animateSuccessTip{-webkit-animation:animateSuccessTip .75s;animation:animateSuccessTip .75s}.animateSuccessLong{-webkit-animation:animateSuccessLong .75s;animation:animateSuccessLong .75s}.sa-icon.sa-success.animate::after{-webkit-animation:rotatePlaceholder 4.25s ease-in;animation:rotatePlaceholder 4.25s ease-in}@-webkit-keyframes animateErrorIcon{0%{transform:rotateX(100deg);-webkit-transform:rotateX(100deg);opacity:0}100%{transform:rotateX(0deg);-webkit-transform:rotateX(0deg);opacity:1}}@keyframes animateErrorIcon{0%{transform:rotateX(100deg);-webkit-transform:rotateX(100deg);opacity:0}100%{transform:rotateX(0deg);-webkit-transform:rotateX(0deg);opacity:1}}.animateErrorIcon{-webkit-animation:animateErrorIcon .5s;animation:animateErrorIcon .5s}@-webkit-keyframes animateXMark{0%{transform:scale(0.4);-webkit-transform:scale(0.4);margin-top:26px;opacity:0}50%{transform:scale(0.4);-webkit-transform:scale(0.4);margin-top:26px;opacity:0}80%{transform:scale(1.15);-webkit-transform:scale(1.15);margin-top:-6px}100%{transform:scale(1);-webkit-transform:scale(1);margin-top:0;opacity:1}}@keyframes animateXMark{0%{transform:scale(0.4);-webkit-transform:scale(0.4);margin-top:26px;opacity:0}50%{transform:scale(0.4);-webkit-transform:scale(0.4);margin-top:26px;opacity:0}80%{transform:scale(1.15);-webkit-transform:scale(1.15);margin-top:-6px}100%{transform:scale(1);-webkit-transform:scale(1);margin-top:0;opacity:1}}.animateXMark{-webkit-animation:animateXMark .5s;animation:animateXMark .5s}@-webkit-keyframes pulseWarning{0%{border-color:#f8d486}100%{border-color:#f8bb86}}@keyframes pulseWarning{0%{border-color:#f8d486}100%{border-color:#f8bb86}}.pulseWarning{-webkit-animation:pulseWarning .75s infinite alternate;animation:pulseWarning .75s infinite alternate}@-webkit-keyframes pulseWarningIns{0%{background-color:#f8d486}100%{background-color:#f8bb86}}@keyframes pulseWarningIns{0%{background-color:#f8d486}100%{background-color:#f8bb86}}.pulseWarningIns{-webkit-animation:pulseWarningIns .75s infinite alternate;animation:pulseWarningIns .75s infinite alternate}@-webkit-keyframes rotate-loading{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes rotate-loading{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.sweet-alert .sa-icon.sa-error .sa-line.sa-left{-ms-transform:rotate(45deg) \9 }.sweet-alert .sa-icon.sa-error .sa-line.sa-right{-ms-transform:rotate(-45deg) \9 }.sweet-alert .sa-icon.sa-success{border-color:transparent\9 }.sweet-alert .sa-icon.sa-success .sa-line.sa-tip{-ms-transform:rotate(45deg) \9 }.sweet-alert .sa-icon.sa-success .sa-line.sa-long{-ms-transform:rotate(-45deg) \9 }/*!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
* Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
|
3 |
* Copyright 2015 Daniel Cardoso <@DanielCardoso>
|
4 |
* Licensed under MIT
|
5 |
+
*/.la-ball-fall,.la-ball-fall>div{position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.la-ball-fall{display:block;font-size:0;color:#fff}.la-ball-fall.la-dark{color:#333}.la-ball-fall>div{display:inline-block;float:none;background-color:currentColor;border:0 solid currentColor}.la-ball-fall{width:54px;height:18px}.la-ball-fall>div{width:10px;height:10px;margin:4px;border-radius:100%;opacity:0;-webkit-animation:ball-fall 1s ease-in-out infinite;-moz-animation:ball-fall 1s ease-in-out infinite;-o-animation:ball-fall 1s ease-in-out infinite;animation:ball-fall 1s ease-in-out infinite}.la-ball-fall>div:nth-child(1){-webkit-animation-delay:-200ms;-moz-animation-delay:-200ms;-o-animation-delay:-200ms;animation-delay:-200ms}.la-ball-fall>div:nth-child(2){-webkit-animation-delay:-100ms;-moz-animation-delay:-100ms;-o-animation-delay:-100ms;animation-delay:-100ms}.la-ball-fall>div:nth-child(3){-webkit-animation-delay:0ms;-moz-animation-delay:0ms;-o-animation-delay:0ms;animation-delay:0ms}.la-ball-fall.la-sm{width:26px;height:8px}.la-ball-fall.la-sm>div{width:4px;height:4px;margin:2px}.la-ball-fall.la-2x{width:108px;height:36px}.la-ball-fall.la-2x>div{width:20px;height:20px;margin:8px}.la-ball-fall.la-3x{width:162px;height:54px}.la-ball-fall.la-3x>div{width:30px;height:30px;margin:12px}@-webkit-keyframes ball-fall{0%{opacity:0;-webkit-transform:translateY(-145%);transform:translateY(-145%)}10%{opacity:.5}20%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}80%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}90%{opacity:.5}100%{opacity:0;-webkit-transform:translateY(145%);transform:translateY(145%)}}@-moz-keyframes ball-fall{0%{opacity:0;-moz-transform:translateY(-145%);transform:translateY(-145%)}10%{opacity:.5}20%{opacity:1;-moz-transform:translateY(0);transform:translateY(0)}80%{opacity:1;-moz-transform:translateY(0);transform:translateY(0)}90%{opacity:.5}100%{opacity:0;-moz-transform:translateY(145%);transform:translateY(145%)}}@-o-keyframes ball-fall{0%{opacity:0;-o-transform:translateY(-145%);transform:translateY(-145%)}10%{opacity:.5}20%{opacity:1;-o-transform:translateY(0);transform:translateY(0)}80%{opacity:1;-o-transform:translateY(0);transform:translateY(0)}90%{opacity:.5}100%{opacity:0;-o-transform:translateY(145%);transform:translateY(145%)}}@keyframes ball-fall{0%{opacity:0;-webkit-transform:translateY(-145%);-moz-transform:translateY(-145%);-o-transform:translateY(-145%);transform:translateY(-145%)}10%{opacity:.5}20%{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}80%{opacity:1;-webkit-transform:translateY(0);-moz-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}90%{opacity:.5}100%{opacity:0;-webkit-transform:translateY(145%);-moz-transform:translateY(145%);-o-transform:translateY(145%);transform:translateY(145%)}}.bc-doc{font-family:"Roboto",sans-serif;font-weight:300}.bc-doc .bc-uk-card{margin-bottom:20px}.bc-doc .bc-doc-heading-1{font-size:38px;margin-top:0;margin-bottom:20px;line-height:45.6px;border-bottom:3px solid #ddd}.bc-doc .bc-doc-heading-2{font-size:24px;margin:20px 0;font-weight:300;line-height:33.6px;border-bottom:2px solid #dde}.bc-doc .bc-doc-heading-3{font-size:20px;line-height:28.6px;margin:20px 10px 5px;border-bottom:1px solid #ddd}.bc-doc .bc-doc-heading-3+table,.bc-doc .bc-doc-heading-3+div{margin-left:10px}.bc-doc .bc-doc-label{font-size:1rem;line-height:22.4px;margin:20px 0 5px}.bc-doc .bc-doc__image-picker-button{display:block}@font-face{font-family:"fontello2";src:url("font/fontello.eot?58687625");src:url("font/fontello.eot?58687625#iefix") format("embedded-opentype"),url("font/fontello.woff2?58687625") format("woff2"),url("font/fontello.woff?58687625") format("woff"),url("font/fontello.ttf?58687625") format("truetype"),url("font/fontello.svg?58687625#fontello2") format("svg");font-weight:normal;font-style:normal}.bc-root [class^=icon-]:before,.bc-root [class*=" icon-"]:before,.bc-mnc [class^=icon-]:before,.bc-mnc [class*=" icon-"]:before{font-family:"fontello2";font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.bc-root .icon-cart-01:before,.bc-mnc .icon-cart-01:before{content:""}.bc-root .icon-cart-02:before,.bc-mnc .icon-cart-02:before{content:""}.bc-root .icon-cart-05:before,.bc-mnc .icon-cart-05:before{content:""}.bc-root .icon-cart-08:before,.bc-mnc .icon-cart-08:before{content:""}.bc-root .icon-cart-11:before,.bc-mnc .icon-cart-11:before{content:""}.bc-root .icon-cart-03:before,.bc-mnc .icon-cart-03:before{content:""}.bc-root .icon-cart-06:before,.bc-mnc .icon-cart-06:before{content:""}.bc-root .icon-cart-09:before,.bc-mnc .icon-cart-09:before{content:""}.bc-root .icon-cart-12:before,.bc-mnc .icon-cart-12:before{content:""}.bc-root .icon-trash-01:before,.bc-mnc .icon-trash-01:before{content:""}.bc-root .icon-edit-01:before,.bc-mnc .icon-edit-01:before{content:""}.bc-root .icon-close-03:before,.bc-mnc .icon-close-03:before{content:""}.bc-root .icon-close-06:before,.bc-mnc .icon-close-06:before{content:""}.bc-root .icon-wallet:before,.bc-mnc .icon-wallet:before{content:""}.bc-root .icon-close-01:before,.bc-mnc .icon-close-01:before{content:""}.bc-root .icon-close-04:before,.bc-mnc .icon-close-04:before{content:""}.bc-root .icon-close-05:before,.bc-mnc .icon-close-05:before{content:""}.bc-root .icon-trash-03:before,.bc-mnc .icon-trash-03:before{content:""}.bc-root .icon-help-01:before,.bc-mnc .icon-help-01:before{content:""}.bc-root .icon-close-11:before,.bc-mnc .icon-close-11:before{content:""}.bc-root .icon-close-12:before,.bc-mnc .icon-close-12:before{content:""}.bc-root .icon-close-07:before,.bc-mnc .icon-close-07:before{content:""}.bc-root .icon-close-08:before,.bc-mnc .icon-close-08:before{content:""}.bc-root .icon-help-02:before,.bc-mnc .icon-help-02:before{content:""}.bc-root .icon-save-01:before,.bc-mnc .icon-save-01:before{content:""}.bc-root .icon-upload-cloud:before,.bc-mnc .icon-upload-cloud:before{content:""}.bc-root .icon-up-02:before,.bc-mnc .icon-up-02:before{content:""}.bc-root .icon-close-10:before,.bc-mnc .icon-close-10:before{content:""}.bc-root .icon-close-09:before,.bc-mnc .icon-close-09:before{content:""}.bc-root .icon-up-03:before,.bc-mnc .icon-up-03:before{content:""}.bc-root .icon-down-02:before,.bc-mnc .icon-down-02:before{content:""}.bc-root .icon-minus-03:before,.bc-mnc .icon-minus-03:before{content:""}.bc-root .icon-minus-01:before,.bc-mnc .icon-minus-01:before{content:""}.bc-root .icon-plus-04:before,.bc-mnc .icon-plus-04:before{content:""}.bc-root .icon-plus-01:before,.bc-mnc .icon-plus-01:before{content:""}.bc-root .icon-plus-02:before,.bc-mnc .icon-plus-02:before{content:""}.bc-root .icon-plus-03:before,.bc-mnc .icon-plus-03:before{content:""}.bc-root .icon-right-03:before,.bc-mnc .icon-right-03:before{content:""}.bc-root .icon-right-01:before,.bc-mnc .icon-right-01:before{content:""}.bc-root .icon-right-02:before,.bc-mnc .icon-right-02:before{content:""}.bc-root .icon-left-02:before,.bc-mnc .icon-left-02:before{content:""}.bc-root .icon-left-03:before,.bc-mnc .icon-left-03:before{content:""}.bc-root .icon-left-01:before,.bc-mnc .icon-left-01:before{content:""}.bc-root .icon-minus-02:before,.bc-mnc .icon-minus-02:before{content:""}.bc-root .icon-loading-01:before,.bc-mnc .icon-loading-01:before{content:""}.bc-root .icon-spin2:before,.bc-mnc .icon-spin2:before{content:""}.bc-root .icon-icon-loading-04:before,.bc-mnc .icon-icon-loading-04:before{content:""}.bc-root .icon-loading-03:before,.bc-mnc .icon-loading-03:before{content:""}.bc-root .icon-cart-15:before,.bc-mnc .icon-cart-15:before{content:""}.bc-root .icon-loading-02:before,.bc-mnc .icon-loading-02:before{content:""}.bc-root .icon-close-02:before,.bc-mnc .icon-close-02:before{content:""}.bc-root .icon-copy-01:before,.bc-mnc .icon-copy-01:before{content:""}.bc-root .icon-money-01:before,.bc-mnc .icon-money-01:before{content:""}.bc-root .icon-download-01:before,.bc-mnc .icon-download-01:before{content:""}.bc-root .icon-upload-01:before,.bc-mnc .icon-upload-01:before{content:""}.bc-root .icon-up-01:before,.bc-mnc .icon-up-01:before{content:""}.bc-root .icon-down-01:before,.bc-mnc .icon-down-01:before{content:""}.bc-root .icon-trash-02:before,.bc-mnc .icon-trash-02:before{content:""}.bc-root .icon-cart-04:before,.bc-mnc .icon-cart-04:before{content:""}.bc-root .icon-cart-07:before,.bc-mnc .icon-cart-07:before{content:""}.bc-root .icon-cart-10:before,.bc-mnc .icon-cart-10:before{content:""}.bc-root .icon-cart-14:before,.bc-mnc .icon-cart-14:before{content:""}.bc-root .icon-cart-13:before,.bc-mnc .icon-cart-13:before{content:""}#wpcontent{background:#fff}.bc-root select.bc-uk-select,.bc-root input.bc-uk-input{width:200px}.bc-root .bc-uk-form label{display:block}.bc-root :disabled{opacity:.5;cursor:not-allowed}.bc-root .bc_headline_dot{display:block;margin:auto;text-align:center;width:40px;height:40px;color:#fff;font-size:20px;padding:0;line-height:30px;background:#0c93e4;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%}.bc-root input[type=submit]{height:unset}.bc-root .bc_image_preview{max-width:200px;max-height:80px;display:block}/*# sourceMappingURL=backend.css.map */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bundle/css/frontend.css
CHANGED
@@ -1,988 +1 @@
|
|
1 |
-
@charset "UTF-8";
|
2 |
-
@font-face {
|
3 |
-
font-family: "fontello2";
|
4 |
-
src: url("font/fontello.eot?58687625");
|
5 |
-
src: url("font/fontello.eot?58687625#iefix") format("embedded-opentype"), url("font/fontello.woff2?58687625") format("woff2"), url("font/fontello.woff?58687625") format("woff"), url("font/fontello.ttf?58687625") format("truetype"), url("font/fontello.svg?58687625#fontello2") format("svg");
|
6 |
-
font-weight: normal;
|
7 |
-
font-style: normal;
|
8 |
-
}
|
9 |
-
.bc-root, .bc-mnc {
|
10 |
-
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
|
11 |
-
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
|
12 |
-
/*
|
13 |
-
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
14 |
-
@font-face {
|
15 |
-
font-family: 'fontello';
|
16 |
-
src: url('../font/fontello.svg?58687625#fontello') format('svg');
|
17 |
-
}
|
18 |
-
}
|
19 |
-
*/
|
20 |
-
/* '' */
|
21 |
-
/* '' */
|
22 |
-
/* '' */
|
23 |
-
/* '' */
|
24 |
-
/* '' */
|
25 |
-
/* '' */
|
26 |
-
/* '' */
|
27 |
-
/* '' */
|
28 |
-
/* '' */
|
29 |
-
/* '' */
|
30 |
-
/* '' */
|
31 |
-
/* '' */
|
32 |
-
/* '' */
|
33 |
-
/* '' */
|
34 |
-
/* '' */
|
35 |
-
/* '' */
|
36 |
-
/* '' */
|
37 |
-
/* '' */
|
38 |
-
/* '' */
|
39 |
-
/* '' */
|
40 |
-
/* '' */
|
41 |
-
/* '' */
|
42 |
-
/* '' */
|
43 |
-
/* '' */
|
44 |
-
/* '' */
|
45 |
-
/* '' */
|
46 |
-
/* '' */
|
47 |
-
/* '' */
|
48 |
-
/* '' */
|
49 |
-
/* '' */
|
50 |
-
/* '' */
|
51 |
-
/* '' */
|
52 |
-
/* '' */
|
53 |
-
/* '' */
|
54 |
-
/* '' */
|
55 |
-
/* '' */
|
56 |
-
/* '' */
|
57 |
-
/* '' */
|
58 |
-
/* '' */
|
59 |
-
/* '' */
|
60 |
-
/* '' */
|
61 |
-
/* '' */
|
62 |
-
/* '' */
|
63 |
-
/* '' */
|
64 |
-
/* '' */
|
65 |
-
/* '' */
|
66 |
-
/* '' */
|
67 |
-
/* '' */
|
68 |
-
/* '' */
|
69 |
-
/* '' */
|
70 |
-
/* '' */
|
71 |
-
/* '' */
|
72 |
-
/* '' */
|
73 |
-
/* '' */
|
74 |
-
/* '' */
|
75 |
-
/* '' */
|
76 |
-
/* '' */
|
77 |
-
/* '' */
|
78 |
-
/* '' */
|
79 |
-
/* '' */
|
80 |
-
/* '' */
|
81 |
-
/* '' */
|
82 |
-
/* '' */
|
83 |
-
}
|
84 |
-
.bc-root [class^=icon-]:before, .bc-root [class*=" icon-"]:before, .bc-mnc [class^=icon-]:before, .bc-mnc [class*=" icon-"]:before {
|
85 |
-
font-family: "fontello2";
|
86 |
-
font-style: normal;
|
87 |
-
font-weight: normal;
|
88 |
-
speak: none;
|
89 |
-
display: inline-block;
|
90 |
-
text-decoration: inherit;
|
91 |
-
width: 1em;
|
92 |
-
margin-right: 0.2em;
|
93 |
-
text-align: center;
|
94 |
-
/* opacity: .8; */
|
95 |
-
/* For safety - reset parent styles, that can break glyph codes*/
|
96 |
-
font-variant: normal;
|
97 |
-
text-transform: none;
|
98 |
-
/* fix buttons height, for twitter bootstrap */
|
99 |
-
line-height: 1em;
|
100 |
-
/* Animation center compensation - margins should be symmetric */
|
101 |
-
/* remove if not needed */
|
102 |
-
margin-left: 0.2em;
|
103 |
-
/* you can be more comfortable with increased icons size */
|
104 |
-
/* font-size: 120%; */
|
105 |
-
/* Font smoothing. That was taken from TWBS */
|
106 |
-
-webkit-font-smoothing: antialiased;
|
107 |
-
-moz-osx-font-smoothing: grayscale;
|
108 |
-
/* Uncomment for 3D effect */
|
109 |
-
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
|
110 |
-
}
|
111 |
-
.bc-root .icon-cart-01:before, .bc-mnc .icon-cart-01:before {
|
112 |
-
content: "";
|
113 |
-
}
|
114 |
-
.bc-root .icon-cart-02:before, .bc-mnc .icon-cart-02:before {
|
115 |
-
content: "";
|
116 |
-
}
|
117 |
-
.bc-root .icon-cart-05:before, .bc-mnc .icon-cart-05:before {
|
118 |
-
content: "";
|
119 |
-
}
|
120 |
-
.bc-root .icon-cart-08:before, .bc-mnc .icon-cart-08:before {
|
121 |
-
content: "";
|
122 |
-
}
|
123 |
-
.bc-root .icon-cart-11:before, .bc-mnc .icon-cart-11:before {
|
124 |
-
content: "";
|
125 |
-
}
|
126 |
-
.bc-root .icon-cart-03:before, .bc-mnc .icon-cart-03:before {
|
127 |
-
content: "";
|
128 |
-
}
|
129 |
-
.bc-root .icon-cart-06:before, .bc-mnc .icon-cart-06:before {
|
130 |
-
content: "";
|
131 |
-
}
|
132 |
-
.bc-root .icon-cart-09:before, .bc-mnc .icon-cart-09:before {
|
133 |
-
content: "";
|
134 |
-
}
|
135 |
-
.bc-root .icon-cart-12:before, .bc-mnc .icon-cart-12:before {
|
136 |
-
content: "";
|
137 |
-
}
|
138 |
-
.bc-root .icon-trash-01:before, .bc-mnc .icon-trash-01:before {
|
139 |
-
content: "";
|
140 |
-
}
|
141 |
-
.bc-root .icon-edit-01:before, .bc-mnc .icon-edit-01:before {
|
142 |
-
content: "";
|
143 |
-
}
|
144 |
-
.bc-root .icon-close-03:before, .bc-mnc .icon-close-03:before {
|
145 |
-
content: "";
|
146 |
-
}
|
147 |
-
.bc-root .icon-close-06:before, .bc-mnc .icon-close-06:before {
|
148 |
-
content: "";
|
149 |
-
}
|
150 |
-
.bc-root .icon-wallet:before, .bc-mnc .icon-wallet:before {
|
151 |
-
content: "";
|
152 |
-
}
|
153 |
-
.bc-root .icon-close-01:before, .bc-mnc .icon-close-01:before {
|
154 |
-
content: "";
|
155 |
-
}
|
156 |
-
.bc-root .icon-close-04:before, .bc-mnc .icon-close-04:before {
|
157 |
-
content: "";
|
158 |
-
}
|
159 |
-
.bc-root .icon-close-05:before, .bc-mnc .icon-close-05:before {
|
160 |
-
content: "";
|
161 |
-
}
|
162 |
-
.bc-root .icon-trash-03:before, .bc-mnc .icon-trash-03:before {
|
163 |
-
content: "";
|
164 |
-
}
|
165 |
-
.bc-root .icon-help-01:before, .bc-mnc .icon-help-01:before {
|
166 |
-
content: "";
|
167 |
-
}
|
168 |
-
.bc-root .icon-close-11:before, .bc-mnc .icon-close-11:before {
|
169 |
-
content: "";
|
170 |
-
}
|
171 |
-
.bc-root .icon-close-12:before, .bc-mnc .icon-close-12:before {
|
172 |
-
content: "";
|
173 |
-
}
|
174 |
-
.bc-root .icon-close-07:before, .bc-mnc .icon-close-07:before {
|
175 |
-
content: "";
|
176 |
-
}
|
177 |
-
.bc-root .icon-close-08:before, .bc-mnc .icon-close-08:before {
|
178 |
-
content: "";
|
179 |
-
}
|
180 |
-
.bc-root .icon-help-02:before, .bc-mnc .icon-help-02:before {
|
181 |
-
content: "";
|
182 |
-
}
|
183 |
-
.bc-root .icon-save-01:before, .bc-mnc .icon-save-01:before {
|
184 |
-
content: "";
|
185 |
-
}
|
186 |
-
.bc-root .icon-upload-cloud:before, .bc-mnc .icon-upload-cloud:before {
|
187 |
-
content: "";
|
188 |
-
}
|
189 |
-
.bc-root .icon-up-02:before, .bc-mnc .icon-up-02:before {
|
190 |
-
content: "";
|
191 |
-
}
|
192 |
-
.bc-root .icon-close-10:before, .bc-mnc .icon-close-10:before {
|
193 |
-
content: "";
|
194 |
-
}
|
195 |
-
.bc-root .icon-close-09:before, .bc-mnc .icon-close-09:before {
|
196 |
-
content: "";
|
197 |
-
}
|
198 |
-
.bc-root .icon-up-03:before, .bc-mnc .icon-up-03:before {
|
199 |
-
content: "";
|
200 |
-
}
|
201 |
-
.bc-root .icon-down-02:before, .bc-mnc .icon-down-02:before {
|
202 |
-
content: "";
|
203 |
-
}
|
204 |
-
.bc-root .icon-minus-03:before, .bc-mnc .icon-minus-03:before {
|
205 |
-
content: "";
|
206 |
-
}
|
207 |
-
.bc-root .icon-minus-01:before, .bc-mnc .icon-minus-01:before {
|
208 |
-
content: "";
|
209 |
-
}
|
210 |
-
.bc-root .icon-plus-04:before, .bc-mnc .icon-plus-04:before {
|
211 |
-
content: "";
|
212 |
-
}
|
213 |
-
.bc-root .icon-plus-01:before, .bc-mnc .icon-plus-01:before {
|
214 |
-
content: "";
|
215 |
-
}
|
216 |
-
.bc-root .icon-plus-02:before, .bc-mnc .icon-plus-02:before {
|
217 |
-
content: "";
|
218 |
-
}
|
219 |
-
.bc-root .icon-plus-03:before, .bc-mnc .icon-plus-03:before {
|
220 |
-
content: "";
|
221 |
-
}
|
222 |
-
.bc-root .icon-right-03:before, .bc-mnc .icon-right-03:before {
|
223 |
-
content: "";
|
224 |
-
}
|
225 |
-
.bc-root .icon-right-01:before, .bc-mnc .icon-right-01:before {
|
226 |
-
content: "";
|
227 |
-
}
|
228 |
-
.bc-root .icon-right-02:before, .bc-mnc .icon-right-02:before {
|
229 |
-
content: "";
|
230 |
-
}
|
231 |
-
.bc-root .icon-left-02:before, .bc-mnc .icon-left-02:before {
|
232 |
-
content: "";
|
233 |
-
}
|
234 |
-
.bc-root .icon-left-03:before, .bc-mnc .icon-left-03:before {
|
235 |
-
content: "";
|
236 |
-
}
|
237 |
-
.bc-root .icon-left-01:before, .bc-mnc .icon-left-01:before {
|
238 |
-
content: "";
|
239 |
-
}
|
240 |
-
.bc-root .icon-minus-02:before, .bc-mnc .icon-minus-02:before {
|
241 |
-
content: "";
|
242 |
-
}
|
243 |
-
.bc-root .icon-loading-01:before, .bc-mnc .icon-loading-01:before {
|
244 |
-
content: "";
|
245 |
-
}
|
246 |
-
.bc-root .icon-spin2:before, .bc-mnc .icon-spin2:before {
|
247 |
-
content: "";
|
248 |
-
}
|
249 |
-
.bc-root .icon-icon-loading-04:before, .bc-mnc .icon-icon-loading-04:before {
|
250 |
-
content: "";
|
251 |
-
}
|
252 |
-
.bc-root .icon-loading-03:before, .bc-mnc .icon-loading-03:before {
|
253 |
-
content: "";
|
254 |
-
}
|
255 |
-
.bc-root .icon-cart-15:before, .bc-mnc .icon-cart-15:before {
|
256 |
-
content: "";
|
257 |
-
}
|
258 |
-
.bc-root .icon-loading-02:before, .bc-mnc .icon-loading-02:before {
|
259 |
-
content: "";
|
260 |
-
}
|
261 |
-
.bc-root .icon-close-02:before, .bc-mnc .icon-close-02:before {
|
262 |
-
content: "";
|
263 |
-
}
|
264 |
-
.bc-root .icon-copy-01:before, .bc-mnc .icon-copy-01:before {
|
265 |
-
content: "";
|
266 |
-
}
|
267 |
-
.bc-root .icon-money-01:before, .bc-mnc .icon-money-01:before {
|
268 |
-
content: "";
|
269 |
-
}
|
270 |
-
.bc-root .icon-download-01:before, .bc-mnc .icon-download-01:before {
|
271 |
-
content: "";
|
272 |
-
}
|
273 |
-
.bc-root .icon-upload-01:before, .bc-mnc .icon-upload-01:before {
|
274 |
-
content: "";
|
275 |
-
}
|
276 |
-
.bc-root .icon-up-01:before, .bc-mnc .icon-up-01:before {
|
277 |
-
content: "";
|
278 |
-
}
|
279 |
-
.bc-root .icon-down-01:before, .bc-mnc .icon-down-01:before {
|
280 |
-
content: "";
|
281 |
-
}
|
282 |
-
.bc-root .icon-trash-02:before, .bc-mnc .icon-trash-02:before {
|
283 |
-
content: "";
|
284 |
-
}
|
285 |
-
.bc-root .icon-cart-04:before, .bc-mnc .icon-cart-04:before {
|
286 |
-
content: "";
|
287 |
-
}
|
288 |
-
.bc-root .icon-cart-07:before, .bc-mnc .icon-cart-07:before {
|
289 |
-
content: "";
|
290 |
-
}
|
291 |
-
.bc-root .icon-cart-10:before, .bc-mnc .icon-cart-10:before {
|
292 |
-
content: "";
|
293 |
-
}
|
294 |
-
.bc-root .icon-cart-14:before, .bc-mnc .icon-cart-14:before {
|
295 |
-
content: "";
|
296 |
-
}
|
297 |
-
.bc-root .icon-cart-13:before, .bc-mnc .icon-cart-13:before {
|
298 |
-
content: "";
|
299 |
-
}
|
300 |
-
|
301 |
-
@-webkit-keyframes spin {
|
302 |
-
to {
|
303 |
-
-webkit-transform: rotate(360deg);
|
304 |
-
}
|
305 |
-
}
|
306 |
-
@-moz-keyframes spin {
|
307 |
-
to {
|
308 |
-
-moz-transform: rotate(360deg);
|
309 |
-
}
|
310 |
-
}
|
311 |
-
.bc-loading {
|
312 |
-
background: url(images/spinner-loading.gif) no-repeat !important;
|
313 |
-
background-size: contain !important;
|
314 |
-
background-position: center !important;
|
315 |
-
opacity: 0.5;
|
316 |
-
}
|
317 |
-
|
318 |
-
.bc-mnc {
|
319 |
-
line-height: 150%;
|
320 |
-
}
|
321 |
-
.bc-mnc.bc-mnc__float-left {
|
322 |
-
float: left;
|
323 |
-
}
|
324 |
-
.bc-mnc.bc-mnc__float-right {
|
325 |
-
float: right;
|
326 |
-
}
|
327 |
-
.bc-mnc.bc-mnc__float-none {
|
328 |
-
float: none;
|
329 |
-
}
|
330 |
-
.bc-mnc .bc-mnc__cart-link--container {
|
331 |
-
line-height: 100%;
|
332 |
-
cursor: pointer;
|
333 |
-
display: inline-block;
|
334 |
-
}
|
335 |
-
.bc-mnc .bc-mnc__cart-link--container .bc-mnc__cart-link--count-circle {
|
336 |
-
border-radius: 50%;
|
337 |
-
text-align: center;
|
338 |
-
}
|
339 |
-
.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-01 {
|
340 |
-
position: relative;
|
341 |
-
}
|
342 |
-
.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-01 .bc-mnc__cart-link--count-circle {
|
343 |
-
position: absolute;
|
344 |
-
top: 0;
|
345 |
-
right: 0;
|
346 |
-
margin-top: -15%;
|
347 |
-
margin-right: -15%;
|
348 |
-
}
|
349 |
-
.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-02 .bc-mnc__cart-link--cart-icon {
|
350 |
-
float: left;
|
351 |
-
margin-right: 10px;
|
352 |
-
}
|
353 |
-
.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-02 .bc-menu-cart-text-container {
|
354 |
-
float: right;
|
355 |
-
}
|
356 |
-
.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-02 .bc-menu-cart-text-container:after {
|
357 |
-
float: none;
|
358 |
-
clear: both;
|
359 |
-
}
|
360 |
-
.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-02 .bc-menu-cart-hr {
|
361 |
-
margin: 0;
|
362 |
-
}
|
363 |
-
.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-03 .bc-mnc__cart-link--cart-icon {
|
364 |
-
float: left;
|
365 |
-
margin-right: 10px;
|
366 |
-
}
|
367 |
-
.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-03 .bc-menu-cart-text-container {
|
368 |
-
float: right;
|
369 |
-
}
|
370 |
-
.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-03 .bc-menu-cart-text-container:after {
|
371 |
-
float: none;
|
372 |
-
clear: both;
|
373 |
-
}
|
374 |
-
.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-03 .bc-menu-cart-hr {
|
375 |
-
margin: 0;
|
376 |
-
}
|
377 |
-
.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-04 .bc-mnc__cart-link--cart-icon {
|
378 |
-
float: left;
|
379 |
-
margin-right: 10px;
|
380 |
-
}
|
381 |
-
.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-04 .bc-menu-cart-text-container {
|
382 |
-
float: right;
|
383 |
-
}
|
384 |
-
.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-04 .bc-menu-cart-text-container:after {
|
385 |
-
float: none;
|
386 |
-
clear: both;
|
387 |
-
}
|
388 |
-
.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-04 .bc-menu-cart-hr {
|
389 |
-
margin: 0;
|
390 |
-
}
|
391 |
-
.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-05 .bc-mnc__cart-link--cart-icon {
|
392 |
-
float: left;
|
393 |
-
margin-right: 10px;
|
394 |
-
}
|
395 |
-
.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-05 .bc-mnc__cart-link--count-circle {
|
396 |
-
float: right;
|
397 |
-
}
|
398 |
-
.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-05:after {
|
399 |
-
content: "";
|
400 |
-
clear: both;
|
401 |
-
display: table;
|
402 |
-
}
|
403 |
-
.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-06 .bc-mnc__cart-details--cart-total__amount {
|
404 |
-
float: left;
|
405 |
-
color: #333333;
|
406 |
-
font-size: 16px;
|
407 |
-
margin-right: 10px;
|
408 |
-
}
|
409 |
-
.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-06 .bc-mnc__cart-details--cart-items-count {
|
410 |
-
float: right;
|
411 |
-
font-size: 14px;
|
412 |
-
color: #9a9a9a !important;
|
413 |
-
margin-top: 3px;
|
414 |
-
}
|
415 |
-
.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-06:after {
|
416 |
-
content: "";
|
417 |
-
clear: both;
|
418 |
-
display: table;
|
419 |
-
}
|
420 |
-
|
421 |
-
.bc-mnc, #mainmenu .bc-mnc {
|
422 |
-
list-style: none;
|
423 |
-
position: relative;
|
424 |
-
}
|
425 |
-
.bc-mnc.bc-mnc__mobile-logged-in .bc-mnc__cart-details .bc-mnc__cart-details--items-section, #mainmenu .bc-mnc.bc-mnc__mobile-logged-in .bc-mnc__cart-details .bc-mnc__cart-details--items-section {
|
426 |
-
margin-top: 46px !important;
|
427 |
-
}
|
428 |
-
.bc-mnc .bc-mnc__cart-details, #mainmenu .bc-mnc .bc-mnc__cart-details {
|
429 |
-
-webkit-transition: all 0.5s ease;
|
430 |
-
-moz-transition: all 0.5s ease;
|
431 |
-
-o-transition: all 0.5s ease;
|
432 |
-
transition: all 0.5s ease;
|
433 |
-
display: none;
|
434 |
-
position: absolute;
|
435 |
-
top: 100%;
|
436 |
-
right: 0;
|
437 |
-
background: #fff;
|
438 |
-
max-height: 100vh;
|
439 |
-
overflow-y: auto;
|
440 |
-
overflow-x: hidden;
|
441 |
-
padding: 20px 10px;
|
442 |
-
margin: auto;
|
443 |
-
z-index: 9000000;
|
444 |
-
/** RESET STYLES **/
|
445 |
-
/** END RESET STYLES **/
|
446 |
-
}
|
447 |
-
.bc-mnc .bc-mnc__cart-details *, #mainmenu .bc-mnc .bc-mnc__cart-details * {
|
448 |
-
box-sizing: border-box;
|
449 |
-
}
|
450 |
-
@media (max-width: 480px) {
|
451 |
-
.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section, #mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section {
|
452 |
-
width: 100%;
|
453 |
-
max-width: 100%;
|
454 |
-
position: fixed;
|
455 |
-
margin: auto;
|
456 |
-
top: 0;
|
457 |
-
right: 0;
|
458 |
-
bottom: 0;
|
459 |
-
left: 0;
|
460 |
-
overflow-x: hidden;
|
461 |
-
}
|
462 |
-
}
|
463 |
-
.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--close-button, #mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--close-button {
|
464 |
-
position: absolute;
|
465 |
-
top: 15px;
|
466 |
-
right: 15px;
|
467 |
-
cursor: pointer;
|
468 |
-
}
|
469 |
-
.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items, #mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items {
|
470 |
-
max-height: 50vh;
|
471 |
-
overflow-y: scroll;
|
472 |
-
overflow-x: hidden;
|
473 |
-
-ms-overflow-style: none;
|
474 |
-
scrollbar-width: none;
|
475 |
-
}
|
476 |
-
.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items::-webkit-scrollbar, #mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items::-webkit-scrollbar {
|
477 |
-
width: 0 !important;
|
478 |
-
background: transparent;
|
479 |
-
/* make scrollbar transparent */
|
480 |
-
}
|
481 |
-
.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item, #mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item {
|
482 |
-
justify-content: space-between;
|
483 |
-
position: relative;
|
484 |
-
padding: 0;
|
485 |
-
margin: 0;
|
486 |
-
}
|
487 |
-
.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon, #mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon {
|
488 |
-
cursor: pointer;
|
489 |
-
}
|
490 |
-
.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info .bc-mnc__cart-details--single-item__info--title, #mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info .bc-mnc__cart-details--single-item__info--title {
|
491 |
-
color: #222;
|
492 |
-
line-height: 150%;
|
493 |
-
text-transform: none;
|
494 |
-
text-decoration: none;
|
495 |
-
}
|
496 |
-
.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info .bc-mnc__cart-details--single-item__info--title a, #mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info .bc-mnc__cart-details--single-item__info--title a {
|
497 |
-
padding: 0;
|
498 |
-
}
|
499 |
-
.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity .bc-mnc__cart-details--single-item__product-quantity--increase, #mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity .bc-mnc__cart-details--single-item__product-quantity--increase {
|
500 |
-
cursor: pointer;
|
501 |
-
}
|
502 |
-
.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity .bc-mnc__cart-details--single-item__product-quantity--decrease, #mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity .bc-mnc__cart-details--single-item__product-quantity--decrease {
|
503 |
-
cursor: pointer;
|
504 |
-
}
|
505 |
-
.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-image, #mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-image {
|
506 |
-
padding: 0;
|
507 |
-
margin: 0;
|
508 |
-
border: 0;
|
509 |
-
}
|
510 |
-
.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container, #mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container {
|
511 |
-
width: 100%;
|
512 |
-
}
|
513 |
-
.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button, .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button, #mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button, #mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button {
|
514 |
-
max-width: 100%;
|
515 |
-
text-decoration: none;
|
516 |
-
text-transform: none;
|
517 |
-
padding: 0;
|
518 |
-
margin: 0;
|
519 |
-
}
|
520 |
-
.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button a, .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button a, #mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button a, #mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button a {
|
521 |
-
padding: 0;
|
522 |
-
color: #fff;
|
523 |
-
}
|
524 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 {
|
525 |
-
text-align: left;
|
526 |
-
min-width: unset;
|
527 |
-
width: 350px;
|
528 |
-
padding: 20px;
|
529 |
-
-webkit-border-radius: 10px;
|
530 |
-
-moz-border-radius: 10px;
|
531 |
-
border-radius: 10px;
|
532 |
-
box-shadow: 0 0.46875rem 2.1875rem rgba(90, 97, 105, 0.1), 0 0.9375rem 1.40625rem rgba(90, 97, 105, 0.1), 0 0.25rem 0.53125rem rgba(90, 97, 105, 0.12), 0 0.125rem 0.1875rem rgba(90, 97, 105, 0.1);
|
533 |
-
-webkit-box-shadow: 0 0.46875rem 2.1875rem rgba(90, 97, 105, 0.1), 0 0.9375rem 1.40625rem rgba(90, 97, 105, 0.1), 0 0.25rem 0.53125rem rgba(90, 97, 105, 0.12), 0 0.125rem 0.1875rem rgba(90, 97, 105, 0.1);
|
534 |
-
-moz-box-shadow: 0 0.46875rem 2.1875rem rgba(90, 97, 105, 0.1), 0 0.9375rem 1.40625rem rgba(90, 97, 105, 0.1), 0 0.25rem 0.53125rem rgba(90, 97, 105, 0.12), 0 0.125rem 0.1875rem rgba(90, 97, 105, 0.1);
|
535 |
-
-o-box-shadow: 0 0.46875rem 2.1875rem rgba(90, 97, 105, 0.1), 0 0.9375rem 1.40625rem rgba(90, 97, 105, 0.1), 0 0.25rem 0.53125rem rgba(90, 97, 105, 0.12), 0 0.125rem 0.1875rem rgba(90, 97, 105, 0.1);
|
536 |
-
}
|
537 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1.cart-details-show, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1.cart-details-show {
|
538 |
-
display: block;
|
539 |
-
}
|
540 |
-
@media (max-width: 480px) {
|
541 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 {
|
542 |
-
width: 100%;
|
543 |
-
max-width: 100%;
|
544 |
-
position: fixed;
|
545 |
-
margin: auto;
|
546 |
-
top: 0;
|
547 |
-
right: 0;
|
548 |
-
bottom: 0;
|
549 |
-
left: 0;
|
550 |
-
padding: 20px;
|
551 |
-
overflow-x: hidden;
|
552 |
-
overflow-y: scroll;
|
553 |
-
}
|
554 |
-
}
|
555 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section {
|
556 |
-
visibility: visible;
|
557 |
-
opacity: 1;
|
558 |
-
box-sizing: border-box;
|
559 |
-
display: block;
|
560 |
-
background: #fff;
|
561 |
-
position: relative;
|
562 |
-
list-style-type: none;
|
563 |
-
margin: unset;
|
564 |
-
left: unset;
|
565 |
-
right: 0;
|
566 |
-
z-index: 10;
|
567 |
-
max-height: 90vh;
|
568 |
-
overflow-y: auto;
|
569 |
-
overflow-x: hidden;
|
570 |
-
}
|
571 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--header, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--header {
|
572 |
-
font-size: 24px;
|
573 |
-
}
|
574 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--header, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--header {
|
575 |
-
font-size: 20px;
|
576 |
-
font-weight: bold;
|
577 |
-
}
|
578 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--close-button, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--close-button {
|
579 |
-
position: absolute;
|
580 |
-
cursor: pointer;
|
581 |
-
top: 15px;
|
582 |
-
right: 15px;
|
583 |
-
color: #B4B0B3;
|
584 |
-
transition: all ease-in 0.5s;
|
585 |
-
}
|
586 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--close-button:hover, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--close-button:hover {
|
587 |
-
color: #F74726;
|
588 |
-
}
|
589 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item {
|
590 |
-
padding: 10px;
|
591 |
-
border-bottom: 1px solid #e0e4e2;
|
592 |
-
float: none;
|
593 |
-
display: flex;
|
594 |
-
background: #fff;
|
595 |
-
width: 100%;
|
596 |
-
font-size: 16px;
|
597 |
-
}
|
598 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title a.bc-mnc__product-title, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title a.bc-mnc__product-title {
|
599 |
-
white-space: initial;
|
600 |
-
padding: 0;
|
601 |
-
margin-bottom: 10px;
|
602 |
-
line-height: 130%;
|
603 |
-
display: block;
|
604 |
-
font-size: 16px;
|
605 |
-
color: #222 !important;
|
606 |
-
}
|
607 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title a.bc-mnc__product-title:hover, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title a.bc-mnc__product-title:hover {
|
608 |
-
color: #447397;
|
609 |
-
}
|
610 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon {
|
611 |
-
cursor: pointer;
|
612 |
-
transition: all ease-in 0.5s;
|
613 |
-
}
|
614 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon:hover, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon:hover {
|
615 |
-
color: #F74726;
|
616 |
-
}
|
617 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-image, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-image {
|
618 |
-
padding: 5px 10px;
|
619 |
-
}
|
620 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--order-total, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--order-total {
|
621 |
-
font-size: 14px;
|
622 |
-
opacity: 0.7;
|
623 |
-
color: #666;
|
624 |
-
}
|
625 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--cart-total, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--cart-total {
|
626 |
-
padding: 20px 0;
|
627 |
-
}
|
628 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container {
|
629 |
-
width: 100%;
|
630 |
-
}
|
631 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button, .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button {
|
632 |
-
width: 100%;
|
633 |
-
}
|
634 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button a, .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button a, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button a, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button a {
|
635 |
-
max-width: 100%;
|
636 |
-
display: block;
|
637 |
-
text-decoration: none;
|
638 |
-
color: #fff;
|
639 |
-
padding: 10px;
|
640 |
-
font-size: 16px;
|
641 |
-
width: 100%;
|
642 |
-
text-align: center;
|
643 |
-
}
|
644 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button {
|
645 |
-
margin-right: 10px;
|
646 |
-
}
|
647 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button {
|
648 |
-
margin-left: 10px;
|
649 |
-
}
|
650 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 {
|
651 |
-
width: 400px;
|
652 |
-
padding: 20px 35px;
|
653 |
-
-webkit-box-shadow: 0px 0px 7px 1px rgba(84, 79, 85, 0.51);
|
654 |
-
-moz-box-shadow: 0px 0px 7px 1px rgba(84, 79, 85, 0.51);
|
655 |
-
box-shadow: 0px 0px 7px 1px rgba(84, 79, 85, 0.51);
|
656 |
-
text-align: left;
|
657 |
-
}
|
658 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2.cart-details-show, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2.cart-details-show {
|
659 |
-
display: block;
|
660 |
-
}
|
661 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--header, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--header {
|
662 |
-
font-size: 24px;
|
663 |
-
}
|
664 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--close-button:hover, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--close-button:hover {
|
665 |
-
transform: scale(1.5);
|
666 |
-
}
|
667 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item {
|
668 |
-
padding: 20px;
|
669 |
-
float: none;
|
670 |
-
display: flex;
|
671 |
-
background: #fff;
|
672 |
-
width: 100%;
|
673 |
-
-webkit-box-shadow: 0 0 25px rgba(40, 47, 60, 0.05), 0 20px 25px rgba(40, 47, 60, 0.05), 0 3px 4px rgba(40, 47, 60, 0.05);
|
674 |
-
-moz-box-shadow: 0 0 25px rgba(40, 47, 60, 0.05), 0 20px 25px rgba(40, 47, 60, 0.05), 0 3px 4px rgba(40, 47, 60, 0.05);
|
675 |
-
box-shadow: 0 0 25px rgba(40, 47, 60, 0.05), 0 20px 25px rgba(40, 47, 60, 0.05), 0 3px 4px rgba(40, 47, 60, 0.05);
|
676 |
-
background: #fff;
|
677 |
-
margin-bottom: 20px;
|
678 |
-
font-size: 16px;
|
679 |
-
}
|
680 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title {
|
681 |
-
font-size: 14px;
|
682 |
-
padding-bottom: 15px;
|
683 |
-
}
|
684 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title a.bc-mnc__product-title, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title a.bc-mnc__product-title {
|
685 |
-
line-height: 150%;
|
686 |
-
}
|
687 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--order-total, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--order-total {
|
688 |
-
font-size: 14px;
|
689 |
-
opacity: 0.7;
|
690 |
-
color: #666;
|
691 |
-
}
|
692 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon {
|
693 |
-
position: absolute;
|
694 |
-
top: 10px;
|
695 |
-
left: 10px;
|
696 |
-
transition: ease all 0.3s;
|
697 |
-
}
|
698 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon:hover, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon:hover {
|
699 |
-
transform: scale(1.3);
|
700 |
-
}
|
701 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-image, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-image {
|
702 |
-
padding: 10px;
|
703 |
-
}
|
704 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--cart-total, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--cart-total {
|
705 |
-
margin: 15px auto;
|
706 |
-
}
|
707 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container {
|
708 |
-
width: 100%;
|
709 |
-
}
|
710 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button, .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button {
|
711 |
-
width: 100%;
|
712 |
-
}
|
713 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button a, .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button a, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button a, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button a {
|
714 |
-
max-width: 100%;
|
715 |
-
display: block;
|
716 |
-
text-decoration: none;
|
717 |
-
color: #fff;
|
718 |
-
padding: 10px;
|
719 |
-
font-size: 16px;
|
720 |
-
width: 100%;
|
721 |
-
text-align: center;
|
722 |
-
}
|
723 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button {
|
724 |
-
margin-right: 10px;
|
725 |
-
-webkit-box-shadow: 0px 0px 6px 5px rgba(209, 209, 209, 0.46);
|
726 |
-
-moz-box-shadow: 0px 0px 6px 5px rgba(209, 209, 209, 0.46);
|
727 |
-
box-shadow: 0px 0px 6px 5px rgba(209, 209, 209, 0.46);
|
728 |
-
}
|
729 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button {
|
730 |
-
margin-left: 10px;
|
731 |
-
-webkit-box-shadow: 0px 0px 6px 5px rgba(209, 209, 209, 0.46);
|
732 |
-
-moz-box-shadow: 0px 0px 6px 5px rgba(209, 209, 209, 0.46);
|
733 |
-
box-shadow: 0px 0px 6px 5px rgba(209, 209, 209, 0.46);
|
734 |
-
}
|
735 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 {
|
736 |
-
width: 400px;
|
737 |
-
padding: 20px;
|
738 |
-
-webkit-box-shadow: 0px 0px 7px 1px rgba(84, 79, 85, 0.51);
|
739 |
-
-moz-box-shadow: 0px 0px 7px 1px rgba(84, 79, 85, 0.51);
|
740 |
-
box-shadow: 0px 0px 7px 1px rgba(84, 79, 85, 0.51);
|
741 |
-
text-align: left;
|
742 |
-
}
|
743 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3.cart-details-show, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3.cart-details-show {
|
744 |
-
display: block;
|
745 |
-
}
|
746 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--header, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--header {
|
747 |
-
font-size: 24px;
|
748 |
-
}
|
749 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--close-button:hover, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--close-button:hover {
|
750 |
-
transform: scale(1.5);
|
751 |
-
}
|
752 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items {
|
753 |
-
padding: 20px;
|
754 |
-
}
|
755 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item {
|
756 |
-
padding: 10px 20px;
|
757 |
-
-webkit-border-radius: 10px;
|
758 |
-
-moz-border-radius: 10px;
|
759 |
-
border-radius: 10px;
|
760 |
-
float: none;
|
761 |
-
display: flex;
|
762 |
-
background: #fff;
|
763 |
-
width: 100%;
|
764 |
-
-webkit-box-shadow: 0 0 25px rgba(40, 47, 60, 0.05), 0 20px 25px rgba(40, 47, 60, 0.05), 0 3px 4px rgba(40, 47, 60, 0.05);
|
765 |
-
-moz-box-shadow: 0 0 25px rgba(40, 47, 60, 0.05), 0 20px 25px rgba(40, 47, 60, 0.05), 0 3px 4px rgba(40, 47, 60, 0.05);
|
766 |
-
box-shadow: 0 0 25px rgba(40, 47, 60, 0.05), 0 20px 25px rgba(40, 47, 60, 0.05), 0 3px 4px rgba(40, 47, 60, 0.05);
|
767 |
-
background: #fff;
|
768 |
-
margin-bottom: 20px;
|
769 |
-
font-size: 16px;
|
770 |
-
}
|
771 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title {
|
772 |
-
font-size: 14px;
|
773 |
-
padding-bottom: 15px;
|
774 |
-
}
|
775 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title a.bc-mnc__product-title, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title a.bc-mnc__product-title {
|
776 |
-
line-height: 150%;
|
777 |
-
}
|
778 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--order-total, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--order-total {
|
779 |
-
font-size: 14px;
|
780 |
-
opacity: 0.7;
|
781 |
-
color: #666;
|
782 |
-
}
|
783 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon {
|
784 |
-
position: absolute;
|
785 |
-
top: 10px;
|
786 |
-
left: 10px;
|
787 |
-
transition: ease all 0.3s;
|
788 |
-
}
|
789 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon:hover, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon:hover {
|
790 |
-
transform: scale(1.3);
|
791 |
-
}
|
792 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-image, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-image {
|
793 |
-
padding: 10px;
|
794 |
-
}
|
795 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity {
|
796 |
-
display: flex;
|
797 |
-
flex-direction: column-reverse;
|
798 |
-
align-content: center;
|
799 |
-
justify-content: space-between;
|
800 |
-
text-align: center;
|
801 |
-
}
|
802 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity .bc-mnc__cart-details--single-item__product-quantity--increase:hover, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity .bc-mnc__cart-details--single-item__product-quantity--increase:hover {
|
803 |
-
-webkit-transform: scale(1.2);
|
804 |
-
-moz-transform: scale(1.2);
|
805 |
-
-ms-transform: scale(1.2);
|
806 |
-
-o-transform: scale(1.2);
|
807 |
-
transform: scale(1.2);
|
808 |
-
}
|
809 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity .bc-mnc__cart-details--single-item__product-quantity--decrease:hover, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity .bc-mnc__cart-details--single-item__product-quantity--decrease:hover {
|
810 |
-
-webkit-transform: scale(1.2);
|
811 |
-
-moz-transform: scale(1.2);
|
812 |
-
-ms-transform: scale(1.2);
|
813 |
-
-o-transform: scale(1.2);
|
814 |
-
transform: scale(1.2);
|
815 |
-
}
|
816 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--cart-total, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--cart-total {
|
817 |
-
margin: 15px auto;
|
818 |
-
}
|
819 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container {
|
820 |
-
width: 100%;
|
821 |
-
}
|
822 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button, .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button {
|
823 |
-
width: 100%;
|
824 |
-
}
|
825 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button a, .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button a, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button a, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button a {
|
826 |
-
max-width: 100%;
|
827 |
-
display: block;
|
828 |
-
text-decoration: none;
|
829 |
-
color: #fff;
|
830 |
-
padding: 10px;
|
831 |
-
font-size: 16px;
|
832 |
-
width: 100%;
|
833 |
-
text-align: center;
|
834 |
-
}
|
835 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button {
|
836 |
-
margin-right: 10px;
|
837 |
-
-webkit-box-shadow: 0px 0px 6px 5px rgba(209, 209, 209, 0.46);
|
838 |
-
-moz-box-shadow: 0px 0px 6px 5px rgba(209, 209, 209, 0.46);
|
839 |
-
box-shadow: 0px 0px 6px 5px rgba(209, 209, 209, 0.46);
|
840 |
-
}
|
841 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button {
|
842 |
-
margin-left: 10px;
|
843 |
-
-webkit-box-shadow: 0px 0px 6px 5px rgba(209, 209, 209, 0.46);
|
844 |
-
-moz-box-shadow: 0px 0px 6px 5px rgba(209, 209, 209, 0.46);
|
845 |
-
box-shadow: 0px 0px 6px 5px rgba(209, 209, 209, 0.46);
|
846 |
-
}
|
847 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 {
|
848 |
-
display: block;
|
849 |
-
transition: ease all 0.5s;
|
850 |
-
width: 400px;
|
851 |
-
padding: 20px;
|
852 |
-
-webkit-box-shadow: 0px 0px 7px 1px rgba(84, 79, 85, 0.51);
|
853 |
-
-moz-box-shadow: 0px 0px 7px 1px rgba(84, 79, 85, 0.51);
|
854 |
-
box-shadow: 0px 0px 7px 1px rgba(84, 79, 85, 0.51);
|
855 |
-
text-align: left;
|
856 |
-
height: 100vh;
|
857 |
-
position: fixed;
|
858 |
-
top: 0;
|
859 |
-
right: -400px;
|
860 |
-
}
|
861 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4.cart-details-show, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4.cart-details-show {
|
862 |
-
right: 0;
|
863 |
-
}
|
864 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section {
|
865 |
-
display: flex;
|
866 |
-
flex-direction: column;
|
867 |
-
justify-content: space-between;
|
868 |
-
max-height: 100%;
|
869 |
-
}
|
870 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--header, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--header {
|
871 |
-
font-size: 24px;
|
872 |
-
}
|
873 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--close-button:hover, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--close-button:hover {
|
874 |
-
transform: scale(1.5);
|
875 |
-
}
|
876 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items {
|
877 |
-
padding: 20px;
|
878 |
-
max-height: unset;
|
879 |
-
}
|
880 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item {
|
881 |
-
padding: 10px 20px;
|
882 |
-
-webkit-border-radius: 10px;
|
883 |
-
-moz-border-radius: 10px;
|
884 |
-
border-radius: 10px;
|
885 |
-
float: none;
|
886 |
-
flex-grow: 2;
|
887 |
-
display: flex;
|
888 |
-
background: #fff;
|
889 |
-
width: 100%;
|
890 |
-
-webkit-box-shadow: 0 0 25px rgba(40, 47, 60, 0.05), 0 20px 25px rgba(40, 47, 60, 0.05), 0 3px 4px rgba(40, 47, 60, 0.05);
|
891 |
-
-moz-box-shadow: 0 0 25px rgba(40, 47, 60, 0.05), 0 20px 25px rgba(40, 47, 60, 0.05), 0 3px 4px rgba(40, 47, 60, 0.05);
|
892 |
-
box-shadow: 0 0 25px rgba(40, 47, 60, 0.05), 0 20px 25px rgba(40, 47, 60, 0.05), 0 3px 4px rgba(40, 47, 60, 0.05);
|
893 |
-
background: #fff;
|
894 |
-
margin-bottom: 20px;
|
895 |
-
font-size: 16px;
|
896 |
-
}
|
897 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title {
|
898 |
-
font-size: 14px;
|
899 |
-
padding-bottom: 15px;
|
900 |
-
}
|
901 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title a.bc-mnc__product-title, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title a.bc-mnc__product-title {
|
902 |
-
line-height: 150%;
|
903 |
-
}
|
904 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--order-total, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--order-total {
|
905 |
-
font-size: 14px;
|
906 |
-
opacity: 0.7;
|
907 |
-
color: #666;
|
908 |
-
}
|
909 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon {
|
910 |
-
position: absolute;
|
911 |
-
top: 10px;
|
912 |
-
left: 10px;
|
913 |
-
transition: ease all 0.3s;
|
914 |
-
}
|
915 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon:hover, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon:hover {
|
916 |
-
transform: scale(1.3);
|
917 |
-
}
|
918 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-image, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-image {
|
919 |
-
padding: 10px;
|
920 |
-
}
|
921 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity {
|
922 |
-
display: flex;
|
923 |
-
flex-direction: column-reverse;
|
924 |
-
align-content: center;
|
925 |
-
justify-content: space-between;
|
926 |
-
text-align: center;
|
927 |
-
}
|
928 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity .bc-mnc__cart-details--single-item__product-quantity--increase:hover, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity .bc-mnc__cart-details--single-item__product-quantity--increase:hover {
|
929 |
-
-webkit-transform: scale(1.2);
|
930 |
-
-moz-transform: scale(1.2);
|
931 |
-
-ms-transform: scale(1.2);
|
932 |
-
-o-transform: scale(1.2);
|
933 |
-
transform: scale(1.2);
|
934 |
-
}
|
935 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity .bc-mnc__cart-details--single-item__product-quantity--decrease:hover, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity .bc-mnc__cart-details--single-item__product-quantity--decrease:hover {
|
936 |
-
-webkit-transform: scale(1.2);
|
937 |
-
-moz-transform: scale(1.2);
|
938 |
-
-ms-transform: scale(1.2);
|
939 |
-
-o-transform: scale(1.2);
|
940 |
-
transform: scale(1.2);
|
941 |
-
}
|
942 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--cart-total, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--cart-total {
|
943 |
-
margin: 15px;
|
944 |
-
bottom: 0;
|
945 |
-
}
|
946 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container {
|
947 |
-
width: 100%;
|
948 |
-
}
|
949 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button, .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button {
|
950 |
-
width: 100%;
|
951 |
-
}
|
952 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button a, .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button a, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button a, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button a {
|
953 |
-
max-width: 100%;
|
954 |
-
display: block;
|
955 |
-
text-decoration: none;
|
956 |
-
color: #fff;
|
957 |
-
padding: 10px;
|
958 |
-
font-size: 16px;
|
959 |
-
width: 100%;
|
960 |
-
text-align: center;
|
961 |
-
}
|
962 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button {
|
963 |
-
margin-right: 10px;
|
964 |
-
-webkit-box-shadow: 0px 0px 6px 5px rgba(209, 209, 209, 0.46);
|
965 |
-
-moz-box-shadow: 0px 0px 6px 5px rgba(209, 209, 209, 0.46);
|
966 |
-
box-shadow: 0px 0px 6px 5px rgba(209, 209, 209, 0.46);
|
967 |
-
}
|
968 |
-
.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button, #mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button {
|
969 |
-
margin-left: 10px;
|
970 |
-
-webkit-box-shadow: 0px 0px 6px 5px rgba(209, 209, 209, 0.46);
|
971 |
-
-moz-box-shadow: 0px 0px 6px 5px rgba(209, 209, 209, 0.46);
|
972 |
-
box-shadow: 0px 0px 6px 5px rgba(209, 209, 209, 0.46);
|
973 |
-
}
|
974 |
-
|
975 |
-
.bc-mnc .bc-uk-flex {
|
976 |
-
display: flex;
|
977 |
-
}
|
978 |
-
.bc-mnc .bc-uk-flex-between {
|
979 |
-
justify-content: space-between;
|
980 |
-
}
|
981 |
-
.bc-mnc .bc_menu_bar_cart-display-right {
|
982 |
-
float: right;
|
983 |
-
}
|
984 |
-
.bc-mnc .bc_menu_bar_cart-display-left {
|
985 |
-
float: left;
|
986 |
-
}
|
987 |
-
|
988 |
-
/*# sourceMappingURL=frontend.css.map */
|
1 |
+
@font-face{font-family:"fontello2";src:url("font/fontello.eot?58687625");src:url("font/fontello.eot?58687625#iefix") format("embedded-opentype"),url("font/fontello.woff2?58687625") format("woff2"),url("font/fontello.woff?58687625") format("woff"),url("font/fontello.ttf?58687625") format("truetype"),url("font/fontello.svg?58687625#fontello2") format("svg");font-weight:normal;font-style:normal}.bc-root [class^=icon-]:before,.bc-root [class*=" icon-"]:before,.bc-mnc [class^=icon-]:before,.bc-mnc [class*=" icon-"]:before{font-family:"fontello2";font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.bc-root .icon-cart-01:before,.bc-mnc .icon-cart-01:before{content:""}.bc-root .icon-cart-02:before,.bc-mnc .icon-cart-02:before{content:""}.bc-root .icon-cart-05:before,.bc-mnc .icon-cart-05:before{content:""}.bc-root .icon-cart-08:before,.bc-mnc .icon-cart-08:before{content:""}.bc-root .icon-cart-11:before,.bc-mnc .icon-cart-11:before{content:""}.bc-root .icon-cart-03:before,.bc-mnc .icon-cart-03:before{content:""}.bc-root .icon-cart-06:before,.bc-mnc .icon-cart-06:before{content:""}.bc-root .icon-cart-09:before,.bc-mnc .icon-cart-09:before{content:""}.bc-root .icon-cart-12:before,.bc-mnc .icon-cart-12:before{content:""}.bc-root .icon-trash-01:before,.bc-mnc .icon-trash-01:before{content:""}.bc-root .icon-edit-01:before,.bc-mnc .icon-edit-01:before{content:""}.bc-root .icon-close-03:before,.bc-mnc .icon-close-03:before{content:""}.bc-root .icon-close-06:before,.bc-mnc .icon-close-06:before{content:""}.bc-root .icon-wallet:before,.bc-mnc .icon-wallet:before{content:""}.bc-root .icon-close-01:before,.bc-mnc .icon-close-01:before{content:""}.bc-root .icon-close-04:before,.bc-mnc .icon-close-04:before{content:""}.bc-root .icon-close-05:before,.bc-mnc .icon-close-05:before{content:""}.bc-root .icon-trash-03:before,.bc-mnc .icon-trash-03:before{content:""}.bc-root .icon-help-01:before,.bc-mnc .icon-help-01:before{content:""}.bc-root .icon-close-11:before,.bc-mnc .icon-close-11:before{content:""}.bc-root .icon-close-12:before,.bc-mnc .icon-close-12:before{content:""}.bc-root .icon-close-07:before,.bc-mnc .icon-close-07:before{content:""}.bc-root .icon-close-08:before,.bc-mnc .icon-close-08:before{content:""}.bc-root .icon-help-02:before,.bc-mnc .icon-help-02:before{content:""}.bc-root .icon-save-01:before,.bc-mnc .icon-save-01:before{content:""}.bc-root .icon-upload-cloud:before,.bc-mnc .icon-upload-cloud:before{content:""}.bc-root .icon-up-02:before,.bc-mnc .icon-up-02:before{content:""}.bc-root .icon-close-10:before,.bc-mnc .icon-close-10:before{content:""}.bc-root .icon-close-09:before,.bc-mnc .icon-close-09:before{content:""}.bc-root .icon-up-03:before,.bc-mnc .icon-up-03:before{content:""}.bc-root .icon-down-02:before,.bc-mnc .icon-down-02:before{content:""}.bc-root .icon-minus-03:before,.bc-mnc .icon-minus-03:before{content:""}.bc-root .icon-minus-01:before,.bc-mnc .icon-minus-01:before{content:""}.bc-root .icon-plus-04:before,.bc-mnc .icon-plus-04:before{content:""}.bc-root .icon-plus-01:before,.bc-mnc .icon-plus-01:before{content:""}.bc-root .icon-plus-02:before,.bc-mnc .icon-plus-02:before{content:""}.bc-root .icon-plus-03:before,.bc-mnc .icon-plus-03:before{content:""}.bc-root .icon-right-03:before,.bc-mnc .icon-right-03:before{content:""}.bc-root .icon-right-01:before,.bc-mnc .icon-right-01:before{content:""}.bc-root .icon-right-02:before,.bc-mnc .icon-right-02:before{content:""}.bc-root .icon-left-02:before,.bc-mnc .icon-left-02:before{content:""}.bc-root .icon-left-03:before,.bc-mnc .icon-left-03:before{content:""}.bc-root .icon-left-01:before,.bc-mnc .icon-left-01:before{content:""}.bc-root .icon-minus-02:before,.bc-mnc .icon-minus-02:before{content:""}.bc-root .icon-loading-01:before,.bc-mnc .icon-loading-01:before{content:""}.bc-root .icon-spin2:before,.bc-mnc .icon-spin2:before{content:""}.bc-root .icon-icon-loading-04:before,.bc-mnc .icon-icon-loading-04:before{content:""}.bc-root .icon-loading-03:before,.bc-mnc .icon-loading-03:before{content:""}.bc-root .icon-cart-15:before,.bc-mnc .icon-cart-15:before{content:""}.bc-root .icon-loading-02:before,.bc-mnc .icon-loading-02:before{content:""}.bc-root .icon-close-02:before,.bc-mnc .icon-close-02:before{content:""}.bc-root .icon-copy-01:before,.bc-mnc .icon-copy-01:before{content:""}.bc-root .icon-money-01:before,.bc-mnc .icon-money-01:before{content:""}.bc-root .icon-download-01:before,.bc-mnc .icon-download-01:before{content:""}.bc-root .icon-upload-01:before,.bc-mnc .icon-upload-01:before{content:""}.bc-root .icon-up-01:before,.bc-mnc .icon-up-01:before{content:""}.bc-root .icon-down-01:before,.bc-mnc .icon-down-01:before{content:""}.bc-root .icon-trash-02:before,.bc-mnc .icon-trash-02:before{content:""}.bc-root .icon-cart-04:before,.bc-mnc .icon-cart-04:before{content:""}.bc-root .icon-cart-07:before,.bc-mnc .icon-cart-07:before{content:""}.bc-root .icon-cart-10:before,.bc-mnc .icon-cart-10:before{content:""}.bc-root .icon-cart-14:before,.bc-mnc .icon-cart-14:before{content:""}.bc-root .icon-cart-13:before,.bc-mnc .icon-cart-13:before{content:""}@-webkit-keyframes spin{to{-webkit-transform:rotate(360deg)}}@-moz-keyframes spin{to{-moz-transform:rotate(360deg)}}.bc-loading{background:url(images/spinner-loading.gif) no-repeat !important;background-size:contain !important;background-position:center !important;opacity:.5}.bc-mnc{line-height:150%}.bc-mnc.bc-mnc__float-left{float:left}.bc-mnc.bc-mnc__float-right{float:right}.bc-mnc.bc-mnc__float-none{float:none}.bc-mnc .bc-mnc__cart-link{text-indent:0;display:flex;align-items:center;align-content:center;align-self:center;justify-content:center}.bc-mnc .bc-mnc__cart-link--container{line-height:100%;cursor:pointer;display:flex}.bc-mnc .bc-mnc__cart-link--container .bc-mnc__cart-link--count-circle{border-radius:50%;text-align:center}.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-01{position:relative}.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-01 .bc-mnc__cart-link--count-circle{position:absolute;top:0;right:0;margin-top:-15%;margin-right:-15%}.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-02 .bc-mnc__cart-link--cart-icon{float:left;margin-right:10px}.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-02 .bc-menu-cart-text-container{float:right}.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-02 .bc-menu-cart-text-container:after{float:none;clear:both}.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-02 .bc-menu-cart-hr{margin:0}.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-03 .bc-mnc__cart-link--cart-icon{float:left;margin-right:10px}.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-03 .bc-menu-cart-text-container{float:right}.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-03 .bc-menu-cart-text-container:after{float:none;clear:both}.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-03 .bc-menu-cart-hr{margin:0}.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-04 .bc-mnc__cart-link--cart-icon{float:left;margin-right:10px}.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-04 .bc-menu-cart-text-container{float:right}.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-04 .bc-menu-cart-text-container:after{float:none;clear:both}.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-04 .bc-menu-cart-hr{margin:0}.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-05 .bc-mnc__cart-link--cart-icon{float:left;margin-right:10px}.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-05 .bc-mnc__cart-link--count-circle{float:right}.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-05:after{content:"";clear:both;display:table}.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-06 .bc-mnc__cart-details--cart-total__amount{float:left;color:#333;font-size:16px;margin-right:10px}.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-06 .bc-mnc__cart-details--cart-items-count{float:right;font-size:14px;color:#9a9a9a !important;margin-top:3px}.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-06:after{content:"";clear:both;display:table}.bc-mnc,#mainmenu .bc-mnc{align-self:center;list-style:none;position:relative}.bc-mnc.bc-mnc__mobile-logged-in .bc-mnc__cart-details .bc-mnc__cart-details--items-section,#mainmenu .bc-mnc.bc-mnc__mobile-logged-in .bc-mnc__cart-details .bc-mnc__cart-details--items-section{margin-top:46px !important}.bc-mnc .bc-mnc__cart-details,#mainmenu .bc-mnc .bc-mnc__cart-details{-webkit-transition:all .5s ease;-moz-transition:all .5s ease;-o-transition:all .5s ease;transition:all .5s ease;display:none;position:absolute;top:100%;right:0;background:#fff;max-height:100vh;overflow-y:auto;overflow-x:hidden;padding:20px 10px;margin:auto;z-index:9000000}.bc-mnc .bc-mnc__cart-details *,#mainmenu .bc-mnc .bc-mnc__cart-details *{box-sizing:border-box}@media(max-width: 480px){.bc-mnc .bc-mnc__cart-details,#mainmenu .bc-mnc .bc-mnc__cart-details{max-width:100% !important}}@media(max-width: 480px){.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section,#mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section{width:100%;max-width:100%;margin:auto;height:100vh;top:0;right:0;bottom:0;left:0;overflow-x:hidden}}.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--close-button,#mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--close-button{position:absolute;top:15px;right:15px;cursor:pointer}.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items,#mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items{max-height:50vh;overflow-y:scroll;overflow-x:hidden;-ms-overflow-style:none;scrollbar-width:none}.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items::-webkit-scrollbar,#mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items::-webkit-scrollbar{width:0 !important;background:transparent}.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item,#mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item{justify-content:space-between;position:relative;padding:0;margin:0}.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon,#mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon{cursor:pointer}.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info .bc-mnc__cart-details--single-item__info--title,#mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info .bc-mnc__cart-details--single-item__info--title{color:#222;line-height:150%;text-transform:none;text-decoration:none}.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info .bc-mnc__cart-details--single-item__info--title a,#mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info .bc-mnc__cart-details--single-item__info--title a{padding:0}.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity .bc-mnc__cart-details--single-item__product-quantity--increase,#mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity .bc-mnc__cart-details--single-item__product-quantity--increase{cursor:pointer}.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity .bc-mnc__cart-details--single-item__product-quantity--decrease,#mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity .bc-mnc__cart-details--single-item__product-quantity--decrease{cursor:pointer}.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-image,#mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-image{padding:0;margin:0;border:0;max-height:100%;max-width:100%}.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container,#mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container{width:100%}.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button,.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button,#mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button,#mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button{max-width:100%;text-decoration:none;text-transform:none;padding:0;margin:0}.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button a,.bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button a,#mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button a,#mainmenu .bc-mnc .bc-mnc__cart-details section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button a{padding:0;color:#fff}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1{text-align:left;min-width:unset;width:350px;left:-3000px;position:absolute;padding:20px;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;box-shadow:0 .46875rem 2.1875rem rgba(90,97,105,.1),0 .9375rem 1.40625rem rgba(90,97,105,.1),0 .25rem .53125rem rgba(90,97,105,.12),0 .125rem .1875rem rgba(90,97,105,.1);-webkit-box-shadow:0 .46875rem 2.1875rem rgba(90,97,105,.1),0 .9375rem 1.40625rem rgba(90,97,105,.1),0 .25rem .53125rem rgba(90,97,105,.12),0 .125rem .1875rem rgba(90,97,105,.1);-moz-box-shadow:0 .46875rem 2.1875rem rgba(90,97,105,.1),0 .9375rem 1.40625rem rgba(90,97,105,.1),0 .25rem .53125rem rgba(90,97,105,.12),0 .125rem .1875rem rgba(90,97,105,.1);-o-box-shadow:0 .46875rem 2.1875rem rgba(90,97,105,.1),0 .9375rem 1.40625rem rgba(90,97,105,.1),0 .25rem .53125rem rgba(90,97,105,.12),0 .125rem .1875rem rgba(90,97,105,.1)}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1.cart-details-show,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1.cart-details-show{display:block;left:unset}@media(max-width: 480px){.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1.cart-details-show,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1.cart-details-show{display:block;left:unset;position:fixed;z-index:9000;right:0;max-width:100%}}@media(max-width: 480px){.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1{width:100%;max-width:100%;position:fixed;margin:auto;top:0;right:0;bottom:0;left:0;padding:20px;overflow-x:hidden;overflow-y:scroll}}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section{visibility:visible;opacity:1;box-sizing:border-box;display:block;background:#fff;position:relative;list-style-type:none;margin:unset;left:unset;right:0;z-index:10;max-height:90vh;overflow-y:auto;overflow-x:hidden}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--header,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--header{font-size:24px}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--header,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--header{font-size:20px;font-weight:bold}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--close-button,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--close-button{position:absolute;cursor:pointer;top:15px;right:15px;color:#b4b0b3;transition:all ease-in .5s}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--close-button:hover,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--close-button:hover{color:#f74726}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item{padding:10px;border-bottom:1px solid #e0e4e2;float:none;display:flex;background:#fff;width:100%;font-size:16px}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title a.bc-mnc__product-title,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title a.bc-mnc__product-title{white-space:initial;padding:0;margin-bottom:10px;line-height:130%;display:block;font-size:16px;color:#222 !important}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title a.bc-mnc__product-title:hover,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title a.bc-mnc__product-title:hover{color:#447397}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon{cursor:pointer;transition:all ease-in .5s}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon:hover,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon:hover{color:#f74726}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-image,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-image{padding:5px 10px}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--order-total,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--order-total{font-size:14px;opacity:.7;color:#666}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--cart-total,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--cart-total{padding:20px 0}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container{width:100%}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button,.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button{width:100%}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button a,.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button a,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button a,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button a{max-width:100%;display:block;text-decoration:none;color:#fff;padding:10px;font-size:16px;width:100%;text-align:center}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button{margin-right:10px}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-1 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button{margin-left:10px}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2{width:400px;position:absolute;left:-3000px;padding:20px 35px;-webkit-box-shadow:0px 0px 7px 1px rgba(84,79,85,.51);-moz-box-shadow:0px 0px 7px 1px rgba(84,79,85,.51);box-shadow:0px 0px 7px 1px rgba(84,79,85,.51);text-align:left}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2.cart-details-show,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2.cart-details-show{display:block;left:unset}@media(max-width: 480px){.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2.cart-details-show,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2.cart-details-show{display:block;left:unset;position:fixed;z-index:9000;right:0;max-width:100%}}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--header,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--header{font-size:24px}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--close-button:hover,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--close-button:hover{transform:scale(1.5)}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item{padding:20px;float:none;display:flex;background:#fff;width:100%;-webkit-box-shadow:0 0 25px rgba(40,47,60,.05),0 20px 25px rgba(40,47,60,.05),0 3px 4px rgba(40,47,60,.05);-moz-box-shadow:0 0 25px rgba(40,47,60,.05),0 20px 25px rgba(40,47,60,.05),0 3px 4px rgba(40,47,60,.05);box-shadow:0 0 25px rgba(40,47,60,.05),0 20px 25px rgba(40,47,60,.05),0 3px 4px rgba(40,47,60,.05);background:#fff;margin-bottom:20px;font-size:16px}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title{font-size:14px;padding-bottom:15px}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title a.bc-mnc__product-title,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title a.bc-mnc__product-title{line-height:150%}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--order-total,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--order-total{font-size:14px;opacity:.7;color:#666}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon{position:absolute;top:10px;left:10px;transition:ease all .3s}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon:hover,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon:hover{transform:scale(1.3)}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-image,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-image{padding:10px}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--cart-total,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--cart-total{margin:15px auto}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container{width:100%}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button,.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button{width:100%}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button a,.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button a,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button a,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button a{max-width:100%;display:block;text-decoration:none;color:#fff;padding:10px;font-size:16px;width:100%;text-align:center}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button{margin-right:10px;-webkit-box-shadow:0px 0px 6px 5px rgba(209,209,209,.46);-moz-box-shadow:0px 0px 6px 5px rgba(209,209,209,.46);box-shadow:0px 0px 6px 5px rgba(209,209,209,.46)}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-2 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button{margin-left:10px;-webkit-box-shadow:0px 0px 6px 5px rgba(209,209,209,.46);-moz-box-shadow:0px 0px 6px 5px rgba(209,209,209,.46);box-shadow:0px 0px 6px 5px rgba(209,209,209,.46)}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3{width:400px;padding:20px;-webkit-box-shadow:0px 0px 7px 1px rgba(84,79,85,.51);-moz-box-shadow:0px 0px 7px 1px rgba(84,79,85,.51);box-shadow:0px 0px 7px 1px rgba(84,79,85,.51);text-align:left}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3.cart-details-show,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3.cart-details-show{display:block}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--header,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--header{font-size:24px}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--close-button:hover,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--close-button:hover{transform:scale(1.5)}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items{padding:20px}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item{padding:10px 20px;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;float:none;display:flex;background:#fff;width:100%;-webkit-box-shadow:0 0 25px rgba(40,47,60,.05),0 20px 25px rgba(40,47,60,.05),0 3px 4px rgba(40,47,60,.05);-moz-box-shadow:0 0 25px rgba(40,47,60,.05),0 20px 25px rgba(40,47,60,.05),0 3px 4px rgba(40,47,60,.05);box-shadow:0 0 25px rgba(40,47,60,.05),0 20px 25px rgba(40,47,60,.05),0 3px 4px rgba(40,47,60,.05);background:#fff;margin-bottom:20px;font-size:16px}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title{font-size:14px;padding-bottom:15px}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title a.bc-mnc__product-title,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title a.bc-mnc__product-title{line-height:150%}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--order-total,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--order-total{font-size:14px;opacity:.7;color:#666}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon{top:10px;left:10px;transition:ease all .3s}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon:hover,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon:hover{transform:scale(1.3)}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-image,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-image{padding:10px}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity{display:flex;flex-direction:column-reverse;align-content:center;justify-content:space-between;text-align:center}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity .bc-mnc__cart-details--single-item__product-quantity--increase:hover,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity .bc-mnc__cart-details--single-item__product-quantity--increase:hover{-webkit-transform:scale(1.2);-moz-transform:scale(1.2);-ms-transform:scale(1.2);-o-transform:scale(1.2);transform:scale(1.2)}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity .bc-mnc__cart-details--single-item__product-quantity--decrease:hover,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity .bc-mnc__cart-details--single-item__product-quantity--decrease:hover{-webkit-transform:scale(1.2);-moz-transform:scale(1.2);-ms-transform:scale(1.2);-o-transform:scale(1.2);transform:scale(1.2)}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--cart-total,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--cart-total{margin:15px auto}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container{width:100%}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button,.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button{width:100%}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button a,.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button a,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button a,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button a{max-width:100%;display:block;text-decoration:none;color:#fff;padding:10px;font-size:16px;width:100%;text-align:center}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button{margin-right:10px;-webkit-box-shadow:0px 0px 6px 5px rgba(209,209,209,.46);-moz-box-shadow:0px 0px 6px 5px rgba(209,209,209,.46);box-shadow:0px 0px 6px 5px rgba(209,209,209,.46)}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-3 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button{margin-left:10px;-webkit-box-shadow:0px 0px 6px 5px rgba(209,209,209,.46);-moz-box-shadow:0px 0px 6px 5px rgba(209,209,209,.46);box-shadow:0px 0px 6px 5px rgba(209,209,209,.46)}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4{display:block;transition:ease all .5s;width:400px;padding:20px;-webkit-box-shadow:0px 0px 7px 1px rgba(84,79,85,.51);-moz-box-shadow:0px 0px 7px 1px rgba(84,79,85,.51);box-shadow:0px 0px 7px 1px rgba(84,79,85,.51);text-align:left;height:100vh;position:fixed;top:0;right:-400px}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4.cart-details-show,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4.cart-details-show{right:0}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section{display:flex;flex-direction:column;justify-content:space-between;max-height:100%}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--header,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--header{font-size:24px}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--close-button:hover,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--close-button:hover{transform:scale(1.5)}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items{padding:20px;max-height:unset}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item{padding:10px 20px;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;float:none;flex-grow:2;display:flex;background:#fff;width:100%;-webkit-box-shadow:0 0 25px rgba(40,47,60,.05),0 20px 25px rgba(40,47,60,.05),0 3px 4px rgba(40,47,60,.05);-moz-box-shadow:0 0 25px rgba(40,47,60,.05),0 20px 25px rgba(40,47,60,.05),0 3px 4px rgba(40,47,60,.05);box-shadow:0 0 25px rgba(40,47,60,.05),0 20px 25px rgba(40,47,60,.05),0 3px 4px rgba(40,47,60,.05);background:#fff;margin-bottom:20px;font-size:16px}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title{font-size:14px;padding-bottom:15px}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title a.bc-mnc__product-title,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--title a.bc-mnc__product-title{line-height:150%}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--order-total,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__info--order-total{font-size:14px;opacity:.7;color:#666}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon{top:10px;left:10px;transition:ease all .3s}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon:hover,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--remove-product-icon:hover{transform:scale(1.3)}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-image,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-image{padding:10px}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity{display:flex;flex-direction:column-reverse;align-content:center;justify-content:space-between;text-align:center}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity .bc-mnc__cart-details--single-item__product-quantity--increase:hover,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity .bc-mnc__cart-details--single-item__product-quantity--increase:hover{-webkit-transform:scale(1.2);-moz-transform:scale(1.2);-ms-transform:scale(1.2);-o-transform:scale(1.2);transform:scale(1.2)}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity .bc-mnc__cart-details--single-item__product-quantity--decrease:hover,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--all-items .bc-mnc__cart-details--single-item .bc-mnc__cart-details--single-item__product-quantity .bc-mnc__cart-details--single-item__product-quantity--decrease:hover{-webkit-transform:scale(1.2);-moz-transform:scale(1.2);-ms-transform:scale(1.2);-o-transform:scale(1.2);transform:scale(1.2)}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--cart-total,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-details--cart-total{margin:15px;bottom:0}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container{width:100%}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button,.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button{width:100%}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button a,.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button a,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button a,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button a{max-width:100%;display:block;text-decoration:none;color:#fff;padding:10px;font-size:16px;width:100%;text-align:center}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-cart-button{margin-right:10px;-webkit-box-shadow:0px 0px 6px 5px rgba(209,209,209,.46);-moz-box-shadow:0px 0px 6px 5px rgba(209,209,209,.46);box-shadow:0px 0px 6px 5px rgba(209,209,209,.46)}.bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button,#mainmenu .bc-mnc .bc-mnc__cart-details.bc-mnc__cart-details-style-4 section.bc-mnc__cart-details--items-section .bc-mnc__cart-checkout-container .bc-mnc__cart-details--to-checkout-button{margin-left:10px;-webkit-box-shadow:0px 0px 6px 5px rgba(209,209,209,.46);-moz-box-shadow:0px 0px 6px 5px rgba(209,209,209,.46);box-shadow:0px 0px 6px 5px rgba(209,209,209,.46)}.bc-mnc .bc-uk-flex{display:flex}.bc-mnc .bc-uk-flex-between{justify-content:space-between}.bc-mnc .bc_menu_bar_cart-display-right{float:right}.bc-mnc .bc_menu_bar_cart-display-left{float:left}/*# sourceMappingURL=frontend.css.map */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bundle/js/frontend-bundle.min.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define("BCkit",e):(t=t||self).BCkit=e()}(this,function(){"use strict";function t(t,e){return function(i){var n=arguments.length;return n?n>1?t.apply(e,arguments):t.call(e,i):t.call(e)}}var e=Object.prototype,i=e.hasOwnProperty;function n(t,e){return i.call(t,e)}var r={},o=/([a-z\d])([A-Z])/g;function s(t){return t in r||(r[t]=t.replace(o,"$1-$2").toLowerCase()),r[t]}var a=/-(\w)/g;function c(t){return t.replace(a,h)}function h(t,e){return e?e.toUpperCase():""}function l(t){return t.length?h(0,t.charAt(0))+t.slice(1):""}var u=String.prototype,d=u.startsWith||function(t){return 0===this.lastIndexOf(t,0)};function f(t,e){return d.call(t,e)}var p=u.endsWith||function(t){return this.substr(-t.length)===t};function m(t,e){return p.call(t,e)}var g=Array.prototype,v=function(t,e){return~this.indexOf(t,e)},b=u.includes||v,w=g.includes||v;function y(t,e){return t&&(B(t)?b:w).call(t,e)}var x=g.findIndex||function(t){for(var e=arguments,i=0;i<this.length;i++)if(t.call(e[1],this[i],i,this))return i;return-1};function k(t,e){return x.call(t,e)}var $=Array.isArray;function _(t){return"function"==typeof t}function I(t){return null!==t&&"object"==typeof t}function S(t){return I(t)&&Object.getPrototypeOf(t)===e}function T(t){return I(t)&&t===t.window}function E(t){return I(t)&&9===t.nodeType}function A(t){return I(t)&&!!t.jquery}function C(t){return t instanceof Node||I(t)&&t.nodeType>=1}var N=e.toString;function M(t){return N.call(t).match(/^\[object (NodeList|HTMLCollection)\]$/)}function O(t){return"boolean"==typeof t}function B(t){return"string"==typeof t}function D(t){return"number"==typeof t}function z(t){return D(t)||B(t)&&!isNaN(t-parseFloat(t))}function P(t){return!($(t)?t.length:I(t)&&Object.keys(t).length)}function H(t){return void 0===t}function L(t){return O(t)?t:"true"===t||"1"===t||""===t||"false"!==t&&"0"!==t&&t}function j(t){var e=Number(t);return!isNaN(e)&&e}function F(t){return parseFloat(t)||0}function W(t){return C(t)||T(t)||E(t)?t:M(t)||A(t)?t[0]:$(t)?W(t[0]):null}function V(t){return C(t)?[t]:M(t)?g.slice.call(t):$(t)?t.map(W).filter(Boolean):A(t)?t.toArray():[]}function q(t){return $(t)?t:B(t)?t.split(/,(?![^(]*\))/).map(function(t){return z(t)?j(t):L(t.trim())}):[t]}function Y(t){return t?m(t,"ms")?F(t):1e3*F(t):0}function R(t,e){return t===e||I(t)&&I(e)&&Object.keys(t).length===Object.keys(e).length&&K(t,function(t,i){return t===e[i]})}function U(t,e,i){return t.replace(new RegExp(e+"|"+i,"mg"),function(t){return t===e?i:e})}var X=Object.assign||function(t){for(var e=[],i=arguments.length-1;i-- >0;)e[i]=arguments[i+1];t=Object(t);for(var r=0;r<e.length;r++){var o=e[r];if(null!==o)for(var s in o)n(o,s)&&(t[s]=o[s])}return t};function K(t,e){for(var i in t)if(!1===e(t[i],i))return!1;return!0}function G(t,e){return t.sort(function(t,i){var n=t[e];void 0===n&&(n=0);var r=i[e];return void 0===r&&(r=0),n>r?1:r>n?-1:0})}function J(t,e){var i=new Set;return t.filter(function(t){var n=t[e];return!i.has(n)&&(i.add(n)||!0)})}function Q(t,e,i){return void 0===e&&(e=0),void 0===i&&(i=1),Math.min(Math.max(j(t)||0,e),i)}function Z(){}function tt(t,e){return t.left<e.right&&t.right>e.left&&t.top<e.bottom&&t.bottom>e.top}function et(t,e){return t.x<=e.right&&t.x>=e.left&&t.y<=e.bottom&&t.y>=e.top}var it={ratio:function(t,e,i){var n,r="width"===e?"height":"width";return(n={})[r]=t[e]?Math.round(i*t[r]/t[e]):t[r],n[e]=i,n},contain:function(t,e){var i=this;return K(t=X({},t),function(n,r){return t=t[r]>e[r]?i.ratio(t,r,e[r]):t}),t},cover:function(t,e){var i=this;return K(t=this.contain(t,e),function(n,r){return t=t[r]<e[r]?i.ratio(t,r,e[r]):t}),t}};function nt(t,e,i){if(I(e))for(var n in e)nt(t,n,e[n]);else{if(H(i))return(t=W(t))&&t.getAttribute(e);V(t).forEach(function(t){_(i)&&(i=i.call(t,nt(t,e))),null===i?ot(t,e):t.setAttribute(e,i)})}}function rt(t,e){return V(t).some(function(t){return t.hasAttribute(e)})}function ot(t,e){t=V(t),e.split(" ").forEach(function(e){return t.forEach(function(t){return t.hasAttribute(e)&&t.removeAttribute(e)})})}function st(t,e){for(var i=0,n=[e,"data-"+e];i<n.length;i++)if(rt(t,n[i]))return nt(t,n[i])}function at(t,e){return W(t)||lt(t,ht(t,e))}function ct(t,e){var i=V(t);return i.length&&i||ut(t,ht(t,e))}function ht(t,e){return void 0===e&&(e=document),mt(t)||E(e)?e:e.ownerDocument}function lt(t,e){return W(dt(t,e,"querySelector"))}function ut(t,e){return V(dt(t,e,"querySelectorAll"))}function dt(t,e,i){if(void 0===e&&(e=document),!t||!B(t))return null;var n;mt(t=t.replace(pt,"$1 *"))&&(n=[],t=function(t){return t.match(gt).map(function(t){return t.replace(/,$/,"").trim()})}(t).map(function(t,i){var r=e;if("!"===t[0]){var o=t.substr(1).trim().split(" ");r=xt(e.parentNode,o[0]),t=o.slice(1).join(" ").trim()}if("-"===t[0]){var s=t.substr(1).trim().split(" "),a=(r||e).previousElementSibling;r=wt(a,t.substr(1))?a:null,t=s.slice(1).join(" ")}return r?(r.id||(r.id="uk-"+Date.now()+i,n.push(function(){return ot(r,"id")})),"#"+_t(r.id)+" "+t):null}).filter(Boolean).join(","),e=document);try{return e[i](t)}catch(t){return null}finally{n&&n.forEach(function(t){return t()})}}var ft=/(^|[^\\],)\s*[!>+~-]/,pt=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g;function mt(t){return B(t)&&t.match(ft)}var gt=/.*?[^\\](?:,|$)/g;var vt=Element.prototype,bt=vt.matches||vt.webkitMatchesSelector||vt.msMatchesSelector;function wt(t,e){return V(t).some(function(t){return bt.call(t,e)})}var yt=vt.closest||function(t){var e=this;do{if(wt(e,t))return e;e=e.parentNode}while(e&&1===e.nodeType)};function xt(t,e){return f(e,">")&&(e=e.slice(1)),C(t)?t.parentNode&&yt.call(t,e):V(t).map(function(t){return xt(t,e)}).filter(Boolean)}function kt(t,e){for(var i=[],n=W(t).parentNode;n&&1===n.nodeType;)wt(n,e)&&i.push(n),n=n.parentNode;return i}var $t=window.CSS&&CSS.escape||function(t){return t.replace(/([^\x7f-\uFFFF\w-])/g,function(t){return"\\"+t})};function _t(t){return B(t)?$t.call(null,t):""}var It={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,menuitem:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0};function St(t){return V(t).some(function(t){return It[t.tagName.toLowerCase()]})}function Tt(t){return V(t).some(function(t){return t.offsetWidth||t.offsetHeight||t.getClientRects().length})}var Et="input,select,textarea,button";function At(t){return V(t).some(function(t){return wt(t,Et)})}function Ct(t,e){return V(t).filter(function(t){return wt(t,e)})}function Nt(t,e){return B(e)?wt(t,e)||xt(t,e):t===e||(E(e)?e.documentElement:W(e)).contains(W(t))}function Mt(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];var i=Pt(t),n=i[0],r=i[1],o=i[2],s=i[3],a=i[4];return n=jt(n),o&&(s=function(t,e,i){var n=this;return function(r){t.forEach(function(t){var o=">"===e[0]?ut(e,t).reverse().filter(function(t){return Nt(r.target,t)})[0]:xt(r.target,e);o&&(r.delegate=t,r.current=o,i.call(n,r))})}}(n,o,s)),s.length>1&&(s=function(t){return function(e){return $(e.detail)?t.apply(void 0,[e].concat(e.detail)):t(e)}}(s)),r.split(" ").forEach(function(t){return n.forEach(function(e){return e.addEventListener(t,s,a)})}),function(){return Ot(n,r,s,a)}}function Ot(t,e,i,n){void 0===n&&(n=!1),t=jt(t),e.split(" ").forEach(function(e){return t.forEach(function(t){return t.removeEventListener(e,i,n)})})}function Bt(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];var i=Pt(t),n=i[0],r=i[1],o=i[2],s=i[3],a=i[4],c=i[5],h=Mt(n,r,o,function(t){var e=!c||c(t);e&&(h(),s(t,e))},a);return h}function Dt(t,e,i){return jt(t).reduce(function(t,n){return t&&n.dispatchEvent(zt(e,!0,!0,i))},!0)}function zt(t,e,i,n){if(void 0===e&&(e=!0),void 0===i&&(i=!1),B(t)){var r=document.createEvent("CustomEvent");r.initCustomEvent(t,e,i,n),t=r}return t}function Pt(t){return _(t[2])&&t.splice(2,0,!1),t}function Ht(t){return t&&"addEventListener"in t}function Lt(t){return Ht(t)?t:W(t)}function jt(t){return $(t)?t.map(Lt).filter(Boolean):B(t)?ut(t):Ht(t)?[t]:V(t)}function Ft(t){return"touch"===t.pointerType||t.touches}function Wt(t,e){void 0===e&&(e="client");var i=t.touches,n=t.changedTouches,r=i&&i[0]||n&&n[0]||t;return{x:r[e+"X"],y:r[e+"Y"]}}var Vt="Promise"in window?window.Promise:Ut,qt=function(){var t=this;this.promise=new Vt(function(e,i){t.reject=i,t.resolve=e})},Yt=2,Rt="setImmediate"in window?setImmediate:setTimeout;function Ut(t){this.state=Yt,this.value=void 0,this.deferred=[];var e=this;try{t(function(t){e.resolve(t)},function(t){e.reject(t)})}catch(t){e.reject(t)}}Ut.reject=function(t){return new Ut(function(e,i){i(t)})},Ut.resolve=function(t){return new Ut(function(e,i){e(t)})},Ut.all=function(t){return new Ut(function(e,i){var n=[],r=0;function o(i){return function(o){n[i]=o,(r+=1)===t.length&&e(n)}}0===t.length&&e(n);for(var s=0;s<t.length;s+=1)Ut.resolve(t[s]).then(o(s),i)})},Ut.race=function(t){return new Ut(function(e,i){for(var n=0;n<t.length;n+=1)Ut.resolve(t[n]).then(e,i)})};var Xt=Ut.prototype;function Kt(t,e){return new Vt(function(i,n){var r=X({data:null,method:"GET",headers:{},xhr:new XMLHttpRequest,beforeSend:Z,responseType:""},e);r.beforeSend(r);var o=r.xhr;for(var s in r)if(s in o)try{o[s]=r[s]}catch(t){}for(var a in o.open(r.method.toUpperCase(),t),r.headers)o.setRequestHeader(a,r.headers[a]);Mt(o,"load",function(){0===o.status||o.status>=200&&o.status<300||304===o.status?i(o):n(X(Error(o.statusText),{xhr:o,status:o.status}))}),Mt(o,"error",function(){return n(X(Error("Network Error"),{xhr:o}))}),Mt(o,"timeout",function(){return n(X(Error("Network Timeout"),{xhr:o}))}),o.send(r.data)})}function Gt(t,e,i){return new Vt(function(n,r){var o=new Image;o.onerror=r,o.onload=function(){return n(o)},i&&(o.sizes=i),e&&(o.srcset=e),o.src=t})}Xt.resolve=function(t){var e=this;if(e.state===Yt){if(t===e)throw new TypeError("Promise settled with itself.");var i=!1;try{var n=t&&t.then;if(null!==t&&I(t)&&_(n))return void n.call(t,function(t){i||e.resolve(t),i=!0},function(t){i||e.reject(t),i=!0})}catch(t){return void(i||e.reject(t))}e.state=0,e.value=t,e.notify()}},Xt.reject=function(t){if(this.state===Yt){if(t===this)throw new TypeError("Promise settled with itself.");this.state=1,this.value=t,this.notify()}},Xt.notify=function(){var t=this;Rt(function(){if(t.state!==Yt)for(;t.deferred.length;){var e=t.deferred.shift(),i=e[0],n=e[1],r=e[2],o=e[3];try{0===t.state?_(i)?r(i.call(void 0,t.value)):r(t.value):1===t.state&&(_(n)?r(n.call(void 0,t.value)):o(t.value))}catch(t){o(t)}}})},Xt.then=function(t,e){var i=this;return new Ut(function(n,r){i.deferred.push([t,e,n,r]),i.notify()})},Xt.catch=function(t){return this.then(void 0,t)};var Jt=/msie|trident/i.test(window.navigator.userAgent),Qt="rtl"===nt(document.documentElement,"dir"),Zt="ontouchstart"in window,te=window.PointerEvent,ee=Zt||window.DocumentTouch&&document instanceof DocumentTouch||navigator.maxTouchPoints,ie=te?"pointerdown":Zt?"touchstart":"mousedown",ne=te?"pointermove":Zt?"touchmove":"mousemove",re=te?"pointerup":Zt?"touchend":"mouseup",oe=te?"pointerenter":Zt?"":"mouseenter",se=te?"pointerleave":Zt?"":"mouseleave",ae=te?"pointercancel":"touchcancel";function ce(t){if("loading"===document.readyState)var e=Mt(document,"DOMContentLoaded",function(){e(),t()});else t()}function he(t,e){return e?V(t).indexOf(W(e)):V((t=W(t))&&t.parentNode.children).indexOf(t)}function le(t,e,i,n){void 0===i&&(i=0),void 0===n&&(n=!1);var r=(e=V(e)).length;return t=z(t)?j(t):"next"===t?i+1:"previous"===t?i-1:he(e,t),n?Q(t,0,r-1):(t%=r)<0?t+r:t}function ue(t){return(t=Ie(t)).innerHTML="",t}function de(t,e){return t=Ie(t),H(e)?t.innerHTML:fe(t.hasChildNodes()?ue(t):t,e)}function fe(t,e){return t=Ie(t),ge(e,function(e){return t.appendChild(e)})}function pe(t,e){return t=Ie(t),ge(e,function(e){return t.parentNode.insertBefore(e,t)})}function me(t,e){return t=Ie(t),ge(e,function(e){return t.nextSibling?pe(t.nextSibling,e):fe(t.parentNode,e)})}function ge(t,e){return(t=B(t)?$e(t):t)?"length"in t?V(t).map(e):e(t):null}function ve(t){V(t).map(function(t){return t.parentNode&&t.parentNode.removeChild(t)})}function be(t,e){for(e=W(pe(t,e));e.firstChild;)e=e.firstChild;return fe(e,t),e}function we(t,e){return V(V(t).map(function(t){return t.hasChildNodes?be(V(t.childNodes),e):fe(t,e)}))}function ye(t){V(t).map(function(t){return t.parentNode}).filter(function(t,e,i){return i.indexOf(t)===e}).forEach(function(t){pe(t,t.childNodes),ve(t)})}var xe=/^\s*<(\w+|!)[^>]*>/,ke=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;function $e(t){var e=ke.exec(t);if(e)return document.createElement(e[1]);var i=document.createElement("div");return xe.test(t)?i.insertAdjacentHTML("beforeend",t.trim()):i.textContent=t,i.childNodes.length>1?V(i.childNodes):i.firstChild}function _e(t,e){if(t&&1===t.nodeType)for(e(t),t=t.firstElementChild;t;)_e(t,e),t=t.nextElementSibling}function Ie(t,e){return B(t)?Te(t)?W($e(t)):lt(t,e):W(t)}function Se(t,e){return B(t)?Te(t)?V($e(t)):ut(t,e):V(t)}function Te(t){return"<"===t[0]||t.match(/^\s*</)}function Ee(t){for(var e=[],i=arguments.length-1;i-- >0;)e[i]=arguments[i+1];Be(t,e,"add")}function Ae(t){for(var e=[],i=arguments.length-1;i-- >0;)e[i]=arguments[i+1];Be(t,e,"remove")}function Ce(t,e){nt(t,"class",function(t){return(t||"").replace(new RegExp("\\b"+e+"\\b","g"),"")})}function Ne(t){for(var e=[],i=arguments.length-1;i-- >0;)e[i]=arguments[i+1];e[0]&&Ae(t,e[0]),e[1]&&Ee(t,e[1])}function Me(t,e){return e&&V(t).some(function(t){return t.classList.contains(e.split(" ")[0])})}function Oe(t){for(var e=[],i=arguments.length-1;i-- >0;)e[i]=arguments[i+1];if(e.length){var n=B((e=De(e))[e.length-1])?[]:e.pop();e=e.filter(Boolean),V(t).forEach(function(t){for(var i=t.classList,r=0;r<e.length;r++)ze.Force?i.toggle.apply(i,[e[r]].concat(n)):i[(H(n)?!i.contains(e[r]):n)?"add":"remove"](e[r])})}}function Be(t,e,i){(e=De(e).filter(Boolean)).length&&V(t).forEach(function(t){var n=t.classList;ze.Multiple?n[i].apply(n,e):e.forEach(function(t){return n[i](t)})})}function De(t){return t.reduce(function(t,e){return t.concat.call(t,B(e)&&y(e," ")?e.trim().split(" "):e)},[])}var ze={get Multiple(){return this.get("_multiple")},get Force(){return this.get("_force")},get:function(t){if(!n(this,t)){var e=document.createElement("_").classList;e.add("a","b"),e.toggle("c",!1),this._multiple=e.contains("b"),this._force=!e.contains("c")}return this[t]}},Pe={"animation-iteration-count":!0,"column-count":!0,"fill-opacity":!0,"flex-grow":!0,"flex-shrink":!0,"font-weight":!0,"line-height":!0,opacity:!0,order:!0,orphans:!0,"stroke-dasharray":!0,"stroke-dashoffset":!0,widows:!0,"z-index":!0,zoom:!0};function He(t,e,i){return V(t).map(function(t){if(B(e)){if(e=qe(e),H(i))return je(t,e);i||D(i)?t.style[e]=z(i)&&!Pe[e]?i+"px":i:t.style.removeProperty(e)}else{if($(e)){var n=Le(t);return e.reduce(function(t,e){return t[e]=n[qe(e)],t},{})}I(e)&&K(e,function(e,i){return He(t,i,e)})}return t})[0]}function Le(t,e){return(t=W(t)).ownerDocument.defaultView.getComputedStyle(t,e)}function je(t,e,i){return Le(t,i)[e]}var Fe={};function We(t){var e=document.documentElement;if(!Jt)return Le(e).getPropertyValue("--uk-"+t);if(!(t in Fe)){var i=fe(e,document.createElement("div"));Ee(i,"uk-"+t),Fe[t]=je(i,"content",":before").replace(/^["'](.*)["']$/,"$1"),ve(i)}return Fe[t]}var Ve={};function qe(t){var e=Ve[t];return e||(e=Ve[t]=function(t){t=s(t);var e=document.documentElement.style;if(t in e)return t;var i,n=Ye.length;for(;n--;)if((i="-"+Ye[n]+"-"+t)in e)return i}(t)||t),e}var Ye=["webkit","moz","ms"];function Re(t,e,i,n){return void 0===i&&(i=400),void 0===n&&(n="linear"),Vt.all(V(t).map(function(t){return new Vt(function(r,o){for(var s in e){var a=He(t,s);""===a&&He(t,s,a)}var c=setTimeout(function(){return Dt(t,"transitionend")},i);Bt(t,"transitionend transitioncanceled",function(e){var i=e.type;clearTimeout(c),Ae(t,"bc-uk-transition"),He(t,{"transition-property":"","transition-duration":"","transition-timing-function":""}),"transitioncanceled"===i?o():r()},!1,function(e){var i=e.target;return t===i}),Ee(t,"bc-uk-transition"),He(t,X({"transition-property":Object.keys(e).map(qe).join(","),"transition-duration":i+"ms","transition-timing-function":n},e))})}))}var Ue={start:Re,stop:function(t){return Dt(t,"transitionend"),Vt.resolve()},cancel:function(t){Dt(t,"transitioncanceled")},inProgress:function(t){return Me(t,"bc-uk-transition")}},Xe="bc-uk-animation-",Ke="bc-uk-cancel-animation";function Ge(t,e,i,n,r){var o=arguments;return void 0===i&&(i=200),Vt.all(V(t).map(function(t){return new Vt(function(s,a){if(Me(t,Ke))requestAnimationFrame(function(){return Vt.resolve().then(function(){return Ge.apply(void 0,o).then(s,a)})});else{var c=e+" "+Xe+(r?"leave":"enter");f(e,Xe)&&(n&&(c+=" uk-transform-origin-"+n),r&&(c+=" "+Xe+"reverse")),h(),Bt(t,"animationend animationcancel",function(e){var i=!1;"animationcancel"===e.type?(a(),h()):(s(),Vt.resolve().then(function(){i=!0,h()})),requestAnimationFrame(function(){i||(Ee(t,Ke),requestAnimationFrame(function(){return Ae(t,Ke)}))})},!1,function(e){var i=e.target;return t===i}),He(t,"animationDuration",i+"ms"),Ee(t,c)}function h(){He(t,"animationDuration",""),Ce(t,Xe+"\\S*")}})}))}var Je=new RegExp(Xe+"(enter|leave)"),Qe={in:function(t,e,i,n){return Ge(t,e,i,n,!1)},out:function(t,e,i,n){return Ge(t,e,i,n,!0)},inProgress:function(t){return Je.test(nt(t,"class"))},cancel:function(t){Dt(t,"animationcancel")}},Ze={width:["x","left","right"],height:["y","top","bottom"]};function ti(t,e,i,n,r,o,s,a){i=hi(i),n=hi(n);var c={element:i,target:n};if(!t||!e)return c;var h=ii(t),l=ii(e),u=l;if(ci(u,i,h,-1),ci(u,n,l,1),r=li(r,h.width,h.height),o=li(o,l.width,l.height),r.x+=o.x,r.y+=o.y,u.left+=r.x,u.top+=r.y,s){var d=[ii(bi(t))];a&&d.unshift(ii(a)),K(Ze,function(t,e){var o=t[0],a=t[1],f=t[2];(!0===s||y(s,o))&&d.some(function(t){var s=i[o]===a?-h[e]:i[o]===f?h[e]:0,d=n[o]===a?l[e]:n[o]===f?-l[e]:0;if(u[a]<t[a]||u[a]+h[e]>t[f]){var p=h[e]/2,m="center"===n[o]?-l[e]/2:0;return"center"===i[o]&&(g(p,m)||g(-p,-m))||g(s,d)}function g(i,n){var s=u[a]+i+n-2*r[o];if(s>=t[a]&&s+h[e]<=t[f])return u[a]=s,["element","target"].forEach(function(t){c[t][o]=i?c[t][o]===Ze[e][1]?Ze[e][2]:Ze[e][1]:c[t][o]}),!0}})})}return ei(t,u),c}function ei(t,e){if(t=W(t),!e)return ii(t);var i=ei(t),n=He(t,"position");["left","top"].forEach(function(r){if(r in e){var o=He(t,r);He(t,r,e[r]-i[r]+F("absolute"===n&&"auto"===o?ni(t)[r]:o))}})}function ii(t){var e,i,n=bi(t=W(t)),r=n.pageYOffset,o=n.pageXOffset;if(T(t)){var s=t.innerHeight,a=t.innerWidth;return{top:r,left:o,height:s,width:a,bottom:r+s,right:o+a}}Tt(t)||"none"!==He(t,"display")||(e=nt(t,"style"),i=nt(t,"hidden"),nt(t,{style:(e||"")+";display:block !important;",hidden:null}));var c=t.getBoundingClientRect();return H(e)||nt(t,{style:e,hidden:i}),{height:c.height,width:c.width,top:c.top+r,left:c.left+o,bottom:c.bottom+r,right:c.right+o}}function ni(t){var e=(t=W(t)).offsetParent||function(t){return wi(t).documentElement}(t),i=ei(e),n=["top","left"].reduce(function(n,r){var o=l(r);return n[r]-=i[r]+F(He(t,"margin"+o))+F(He(e,"border"+o+"Width")),n},ei(t));return{top:n.top,left:n.left}}var ri=si("height"),oi=si("width");function si(t){var e=l(t);return function(i,n){if(i=W(i),H(n)){if(T(i))return i["inner"+e];if(E(i)){var r=i.documentElement;return Math.max(r["offset"+e],r["scroll"+e])}return(n="auto"===(n=He(i,t))?i["offset"+e]:F(n)||0)-ai(t,i)}He(i,t,n||0===n?+n+ai(t,i)+"px":"")}}function ai(t,e,i){return void 0===i&&(i="border-box"),He(e,"boxSizing")===i?Ze[t].slice(1).map(l).reduce(function(t,i){return t+F(He(e,"padding"+i))+F(He(e,"border"+i+"Width"))},0):0}function ci(t,e,i,n){K(Ze,function(r,o){var s=r[0],a=r[1],c=r[2];e[s]===c?t[a]+=i[o]*n:"center"===e[s]&&(t[a]+=i[o]*n/2)})}function hi(t){var e=/left|center|right/,i=/top|center|bottom/;return 1===(t=(t||"").split(" ")).length&&(t=e.test(t[0])?t.concat(["center"]):i.test(t[0])?["center"].concat(t):["center","center"]),{x:e.test(t[0])?t[0]:"center",y:i.test(t[1])?t[1]:"center"}}function li(t,e,i){var n=(t||"").split(" "),r=n[0],o=n[1];return{x:r?F(r)*(m(r,"%")?e/100:1):0,y:o?F(o)*(m(o,"%")?i/100:1):0}}function ui(t){switch(t){case"left":return"right";case"right":return"left";case"top":return"bottom";case"bottom":return"top";default:return t}}function di(t,e,i){if(void 0===e&&(e=0),void 0===i&&(i=0),!Tt(t))return!1;var n=bi(t=W(t)),r=t.getBoundingClientRect(),o={top:-e,left:-i,bottom:e+ri(n),right:i+oi(n)};return tt(r,o)||et({x:r.left,y:r.top},o)}function fi(t,e){if(void 0===e&&(e=0),!Tt(t))return 0;var i=bi(t=W(t)),n=wi(t),r=t.offsetHeight+e,o=mi(t)[0],s=ri(i),a=s+Math.min(0,o-s),c=Math.max(0,s-(ri(n)+e-(o+r)));return Q((a+i.pageYOffset-o)/((a+(r-(c<s?c:0)))/100)/100)}function pi(t,e){if(T(t=W(t))||E(t)){var i=bi(t);(0,i.scrollTo)(i.pageXOffset,e)}else t.scrollTop=e}function mi(t){var e=[0,0];do{if(e[0]+=t.offsetTop,e[1]+=t.offsetLeft,"fixed"===He(t,"position")){var i=bi(t);return e[0]+=i.pageYOffset,e[1]+=i.pageXOffset,e}}while(t=t.offsetParent);return e}function gi(t,e,i){return void 0===e&&(e="width"),void 0===i&&(i=window),z(t)?+t:m(t,"vh")?vi(ri(bi(i)),t):m(t,"vw")?vi(oi(bi(i)),t):m(t,"%")?vi(ii(i)[e],t):F(t)}function vi(t,e){return t*F(e)/100}function bi(t){return T(t)?t:wi(t).defaultView}function wi(t){return W(t).ownerDocument}var yi={reads:[],writes:[],read:function(t){return this.reads.push(t),xi(),t},write:function(t){return this.writes.push(t),xi(),t},clear:function(t){return $i(this.reads,t)||$i(this.writes,t)},flush:function(){ki(this.reads),ki(this.writes.splice(0,this.writes.length)),this.scheduled=!1,(this.reads.length||this.writes.length)&&xi()}};function xi(){yi.scheduled||(yi.scheduled=!0,requestAnimationFrame(yi.flush.bind(yi)))}function ki(t){for(var e;e=t.shift();)e()}function $i(t,e){var i=t.indexOf(e);return!!~i&&!!t.splice(i,1)}function _i(){}function Ii(t,e){return(e.y-t.y)/(e.x-t.x)}_i.prototype={positions:[],position:null,init:function(){var t=this;this.positions=[],this.position=null;var e=!1;this.unbind=Mt(document,"mousemove",function(i){e||(setTimeout(function(){var n=Date.now(),r=t.positions.length;r&&n-t.positions[r-1].time>100&&t.positions.splice(0,r),t.positions.push({time:n,x:i.pageX,y:i.pageY}),t.positions.length>5&&t.positions.shift(),e=!1},5),e=!0)})},cancel:function(){this.unbind&&this.unbind()},movesTo:function(t){if(this.positions.length<2)return!1;var e=ei(t),i=this.positions[this.positions.length-1],n=this.positions[0];if(e.left<=i.x&&i.x<=e.right&&e.top<=i.y&&i.y<=e.bottom)return!1;var r=[[{x:e.left,y:e.top},{x:e.right,y:e.bottom}],[{x:e.right,y:e.top},{x:e.left,y:e.bottom}]];return e.right<=i.x||(e.left>=i.x?(r[0].reverse(),r[1].reverse()):e.bottom<=i.y?r[0].reverse():e.top>=i.y&&r[1].reverse()),!!r.reduce(function(t,e){return t+(Ii(n,e[0])<Ii(i,e[0])&&Ii(n,e[1])>Ii(i,e[1]))},0)}};var Si={};function Ti(t,e,i){return Si.computed(_(t)?t.call(i,i):t,_(e)?e.call(i,i):e)}function Ei(t,e){return t=t&&!$(t)?[t]:t,e?t?t.concat(e):$(e)?e:[e]:t}function Ai(t,e,i){var r={};if(_(e)&&(e=e.options),e.extends&&(t=Ai(t,e.extends,i)),e.mixins)for(var o=0,s=e.mixins.length;o<s;o++)t=Ai(t,e.mixins[o],i);for(var a in t)h(a);for(var c in e)n(t,c)||h(c);function h(n){r[n]=(Si[n]||function(t,e){return H(e)?t:e})(t[n],e[n],i)}return r}function Ci(t,e){var i;void 0===e&&(e=[]);try{return t?f(t,"{")?JSON.parse(t):e.length&&!y(t,":")?((i={})[e[0]]=t,i):t.split(";").reduce(function(t,e){var i=e.split(/:(.*)/),n=i[0],r=i[1];return n&&!H(r)&&(t[n.trim()]=r.trim()),t},{}):{}}catch(t){return{}}}Si.events=Si.created=Si.beforeConnect=Si.connected=Si.beforeDisconnect=Si.disconnected=Si.destroy=Ei,Si.args=function(t,e){return Ei(e||t)},Si.update=function(t,e){return G(Ei(t,_(e)?{read:e}:e),"order")},Si.props=function(t,e){return $(e)&&(e=e.reduce(function(t,e){return t[e]=String,t},{})),Si.methods(t,e)},Si.computed=Si.methods=function(t,e){return e?t?X({},t,e):e:t},Si.data=function(t,e,i){return i?Ti(t,e,i):e?t?function(i){return Ti(t,e,i)}:e:t};var Ni=0,Mi=function(t){this.id=++Ni,this.el=W(t)};function Oi(t,e){try{t.contentWindow.postMessage(JSON.stringify(X({event:"command"},e)),"*")}catch(t){}}Mi.prototype.isVideo=function(){return this.isYoutube()||this.isVimeo()||this.isHTML5()},Mi.prototype.isHTML5=function(){return"VIDEO"===this.el.tagName},Mi.prototype.isIFrame=function(){return"IFRAME"===this.el.tagName},Mi.prototype.isYoutube=function(){return this.isIFrame()&&!!this.el.src.match(/\/\/.*?youtube(-nocookie)?\.[a-z]+\/(watch\?v=[^&\s]+|embed)|youtu\.be\/.*/)},Mi.prototype.isVimeo=function(){return this.isIFrame()&&!!this.el.src.match(/vimeo\.com\/video\/.*/)},Mi.prototype.enableApi=function(){var t=this;if(this.ready)return this.ready;var e,i=this.isYoutube(),n=this.isVimeo();return i||n?this.ready=new Vt(function(r){var o;Bt(t.el,"load",function(){if(i){var n=function(){return Oi(t.el,{event:"listening",id:t.id})};e=setInterval(n,100),n()}}),(o=function(e){return i&&e.id===t.id&&"onReady"===e.event||n&&Number(e.player_id)===t.id},new Vt(function(t){Bt(window,"message",function(e,i){return t(i)},!1,function(t){var e=t.data;if(e&&B(e)){try{e=JSON.parse(e)}catch(t){return}return e&&o(e)}})})).then(function(){r(),e&&clearInterval(e)}),nt(t.el,"src",t.el.src+(y(t.el.src,"?")?"&":"?")+(i?"enablejsapi=1":"api=1&player_id="+t.id))}):Vt.resolve()},Mi.prototype.play=function(){var t=this;if(this.isVideo())if(this.isIFrame())this.enableApi().then(function(){return Oi(t.el,{func:"playVideo",method:"play"})});else if(this.isHTML5())try{var e=this.el.play();e&&e.catch(Z)}catch(t){}},Mi.prototype.pause=function(){var t=this;this.isVideo()&&(this.isIFrame()?this.enableApi().then(function(){return Oi(t.el,{func:"pauseVideo",method:"pause"})}):this.isHTML5()&&this.el.pause())},Mi.prototype.mute=function(){var t=this;this.isVideo()&&(this.isIFrame()?this.enableApi().then(function(){return Oi(t.el,{func:"mute",method:"setVolume",value:0})}):this.isHTML5()&&(this.el.muted=!0,nt(this.el,"muted","")))};var Bi="IntersectionObserver"in window?window.IntersectionObserver:function(){function t(t,e){var i=this;void 0===e&&(e={});var n=e.rootMargin;void 0===n&&(n="0 0"),this.targets=[];var r,o=(n||"0 0").split(" ").map(F),s=o[0],a=o[1];this.offsetTop=s,this.offsetLeft=a,this.apply=function(){r||(r=requestAnimationFrame(function(){return setTimeout(function(){var e=i.takeRecords();e.length&&t(e,i),r=!1})}))},this.off=Mt(window,"scroll resize load",this.apply,{passive:!0,capture:!0})}return t.prototype.takeRecords=function(){var t=this;return this.targets.filter(function(e){var i=di(e.target,t.offsetTop,t.offsetLeft);if(null===e.isIntersecting||i^e.isIntersecting)return e.isIntersecting=i,!0})},t.prototype.observe=function(t){this.targets.push({target:t,isIntersecting:null}),this.apply()},t.prototype.disconnect=function(){this.targets=[],this.off()},t}();function Di(t){return!(!f(t,"bc-uk-")&&!f(t,"data-uk-"))&&c(t.replace("data-uk-","").replace("bc-uk-",""))}var zi=function(t){this._init(t)};zi.util=Object.freeze({ajax:Kt,getImage:Gt,transition:Re,Transition:Ue,animate:Ge,Animation:Qe,attr:nt,hasAttr:rt,removeAttr:ot,data:st,addClass:Ee,removeClass:Ae,removeClasses:Ce,replaceClass:Ne,hasClass:Me,toggleClass:Oe,positionAt:ti,offset:ei,position:ni,height:ri,width:oi,boxModelAdjust:ai,flipPosition:ui,isInView:di,scrolledOver:fi,scrollTop:pi,offsetPosition:mi,toPx:gi,ready:ce,index:he,getIndex:le,empty:ue,html:de,prepend:function(t,e){return(t=Ie(t)).hasChildNodes()?ge(e,function(e){return t.insertBefore(e,t.firstChild)}):fe(t,e)},append:fe,before:pe,after:me,remove:ve,wrapAll:be,wrapInner:we,unwrap:ye,fragment:$e,apply:_e,$:Ie,$$:Se,isIE:Jt,isRtl:Qt,hasTouch:ee,pointerDown:ie,pointerMove:ne,pointerUp:re,pointerEnter:oe,pointerLeave:se,pointerCancel:ae,on:Mt,off:Ot,once:Bt,trigger:Dt,createEvent:zt,toEventTargets:jt,isTouch:Ft,getEventPos:Wt,fastdom:yi,isVoidElement:St,isVisible:Tt,selInput:Et,isInput:At,filter:Ct,within:Nt,bind:t,hasOwn:n,hyphenate:s,camelize:c,ucfirst:l,startsWith:f,endsWith:m,includes:y,findIndex:k,isArray:$,isFunction:_,isObject:I,isPlainObject:S,isWindow:T,isDocument:E,isJQuery:A,isNode:C,isNodeCollection:M,isBoolean:O,isString:B,isNumber:D,isNumeric:z,isEmpty:P,isUndefined:H,toBoolean:L,toNumber:j,toFloat:F,toNode:W,toNodes:V,toList:q,toMs:Y,isEqual:R,swap:U,assign:X,each:K,sortBy:G,uniqueBy:J,clamp:Q,noop:Z,intersectRect:tt,pointInRect:et,Dimensions:it,MouseTracker:_i,mergeOptions:Ai,parseOptions:Ci,Player:Mi,Promise:Vt,Deferred:qt,IntersectionObserver:Bi,query:at,queryAll:ct,find:lt,findAll:ut,matches:wt,closest:xt,parents:kt,escape:_t,css:He,getStyles:Le,getStyle:je,getCssVar:We,propName:qe}),zi.data="__BCkit__",zi.prefix="bc-uk-",zi.options={},function(t){var e,i=t.data;function n(t,e){if(t)for(var i in t)t[i]._connected&&t[i]._callUpdate(e)}t.use=function(t){if(!t.installed)return t.call(null,this),t.installed=!0,this},t.mixin=function(e,i){(i=(B(i)?t.component(i):i)||this).options=Ai(i.options,e)},t.extend=function(t){t=t||{};var e=function(t){this._init(t)};return(e.prototype=Object.create(this.prototype)).constructor=e,e.options=Ai(this.options,t),e.super=this,e.extend=this.extend,e},t.update=function(t,e){(function t(e,i){e&&e!==document.body&&e.parentNode&&(t(e.parentNode,i),i(e.parentNode))})(t=t?W(t):document.body,function(t){return n(t[i],e)}),_e(t,function(t){return n(t[i],e)})},Object.defineProperty(t,"container",{get:function(){return e||document.body},set:function(t){e=Ie(t)}})}(zi),function(t){t.prototype._callHook=function(t){var e=this,i=this.$options[t];i&&i.forEach(function(t){return t.call(e)})},t.prototype._callConnected=function(){this._connected||(this._data={},this._computeds={},this._initProps(),this._callHook("beforeConnect"),this._connected=!0,this._initEvents(),this._initObserver(),this._callHook("connected"),this._callUpdate())},t.prototype._callDisconnected=function(){this._connected&&(this._callHook("beforeDisconnect"),this._observer&&(this._observer.disconnect(),this._observer=null),this._unbindEvents(),this._callHook("disconnected"),this._connected=!1)},t.prototype._callUpdate=function(t){var e=this;void 0===t&&(t="update");var i=t.type||t;y(["update","resize"],i)&&this._callWatches();var n=this.$options.update,r=this._frames,o=r.reads,s=r.writes;n&&n.forEach(function(t,n){var r=t.read,a=t.write,c=t.events;("update"===i||y(c,i))&&(r&&!y(yi.reads,o[n])&&(o[n]=yi.read(function(){var t=e._connected&&r.call(e,e._data,i);!1===t&&a?yi.clear(s[n]):S(t)&&X(e._data,t)})),a&&!y(yi.writes,s[n])&&(s[n]=yi.write(function(){return e._connected&&a.call(e,e._data,i)})))})}}(zi),function(e){var i=0;function r(t,e){var i={},n=t.args;void 0===n&&(n=[]);var r=t.props;void 0===r&&(r={});var o=t.el;if(!r)return i;for(var a in r){var h=s(a),u=st(o,h);if(!H(u)){if(u=r[a]===Boolean&&""===u||l(r[a],u),"target"===h&&(!u||f(u,"_")))continue;i[a]=u}}var d=Ci(st(o,e),n);for(var p in d){var m=c(p);void 0!==r[m]&&(i[m]=l(r[m],d[p]))}return i}function o(t,e,i){Object.defineProperty(t,e,{enumerable:!0,get:function(){var r=t._computeds,o=t.$props,s=t.$el;return n(r,e)||(r[e]=(i.get||i).call(t,o,s)),r[e]},set:function(n){var r=t._computeds;r[e]=i.set?i.set.call(t,n):n,H(r[e])&&delete r[e]}})}function a(e,i,n){S(i)||(i={name:n,handler:i});var r,o=i.name,s=i.el,c=i.handler,h=i.capture,l=i.passive,u=i.delegate,d=i.filter,f=i.self;s=_(s)?s.call(e):s||e.$el,$(s)?s.forEach(function(t){return a(e,X({},i,{el:t}),n)}):!s||d&&!d.call(e)||(r=B(c)?e[c]:t(c,e),c=function(t){return $(t.detail)?r.apply(void 0,[t].concat(t.detail)):r(t)},f&&(c=function(t){return function(e){if(e.target===e.currentTarget||e.target===e.current)return t.call(null,e)}}(c)),e._events.push(Mt(s,o,u?B(u)?u:u.call(e):null,c,O(l)?{passive:l,capture:h}:h)))}function h(t,e){return t.every(function(t){return!t||!n(t,e)})}function l(t,e){return t===Boolean?L(e):t===Number?j(e):"list"===t?q(e):t?t(e):e}e.prototype._init=function(t){(t=t||{}).data=function(t,e){var i=t.data,n=(t.el,e.args),r=e.props;if(void 0===r&&(r={}),i=$(i)?P(n)?void 0:i.slice(0,n.length).reduce(function(t,e,i){return S(e)?X(t,e):t[n[i]]=e,t},{}):i)for(var o in i)H(i[o])?delete i[o]:i[o]=r[o]?l(r[o],i[o]):i[o];return i}(t,this.constructor.options),this.$options=Ai(this.constructor.options,t,this),this.$el=null,this.$props={},this._frames={reads:{},writes:{}},this._events=[],this._uid=i++,this._initData(),this._initMethods(),this._initComputeds(),this._callHook("created"),t.el&&this.$mount(t.el)},e.prototype._initData=function(){var t=this.$options.data;for(var e in void 0===t&&(t={}),t)this.$props[e]=this[e]=t[e]},e.prototype._initMethods=function(){var e=this.$options.methods;if(e)for(var i in e)this[i]=t(e[i],this)},e.prototype._initComputeds=function(){var t=this.$options.computed;if(this._computeds={},t)for(var e in t)o(this,e,t[e])},e.prototype._callWatches=function(){var t=this.$options.computed,e=this._computeds;for(var i in e){var n=e[i];delete e[i],t[i].watch&&!R(n,this[i])&&t[i].watch.call(this,this[i],n)}},e.prototype._initProps=function(t){var e;for(e in t=t||r(this.$options,this.$name))H(t[e])||(this.$props[e]=t[e]);var i=[this.$options.computed,this.$options.methods];for(e in this.$props)e in t&&h(i,e)&&(this[e]=this.$props[e])},e.prototype._initEvents=function(){var t=this,e=this.$options.events;e&&e.forEach(function(e){if(n(e,"handler"))a(t,e);else for(var i in e)a(t,e[i],i)})},e.prototype._unbindEvents=function(){this._events.forEach(function(t){return t()}),this._events=[]},e.prototype._initObserver=function(){var t=this,e=this.$options,i=e.attrs,n=e.props,o=e.el;if(!this._observer&&n&&!1!==i){i=$(i)?i:Object.keys(n),this._observer=new MutationObserver(function(){var e=r(t.$options,t.$name);i.some(function(i){return!H(e[i])&&e[i]!==t.$props[i]})&&t.$reset()});var a=i.map(function(t){return s(t)}).concat(this.$name);this._observer.observe(o,{attributes:!0,attributeFilter:a.concat(a.map(function(t){return"data-"+t}))})}}}(zi),function(t){var e=t.data,i={};t.component=function(e,n){if(!n)return S(i[e])&&(i[e]=t.extend(i[e])),i[e];t[e]=function(i,n){for(var r=arguments.length,o=Array(r);r--;)o[r]=arguments[r];var s=t.component(e);return S(i)?new s({data:i}):s.options.functional?new s({data:[].concat(o)}):i&&i.nodeType?a(i):Se(i).map(a)[0];function a(i){var r=t.getComponent(i,e);if(r){if(!n)return r;r.$destroy()}return new s({el:i,data:n})}};var r=S(n)?X({},n):n.options;if(r.name=e,r.install&&r.install(t,r,e),t._initialized&&!r.functional){var o=s(e);yi.read(function(){return t[e]("[uk-"+o+"],[data-uk-"+o+"]")})}return i[e]=S(n)?r:n},t.getComponents=function(t){return t&&t[e]||{}},t.getComponent=function(e,i){return t.getComponents(e)[i]},t.connect=function(n){if(n[e])for(var r in n[e])n[e][r]._callConnected();for(var o=0;o<n.attributes.length;o++){var s=Di(n.attributes[o].name);s&&s in i&&t[s](n)}},t.disconnect=function(t){for(var i in t[e])t[e][i]._callDisconnected()}}(zi),function(t){var e=t.data;t.prototype.$mount=function(t){var i=this.$options.name;t[e]||(t[e]={}),t[e][i]||(t[e][i]=this,this.$el=this.$options.el=this.$options.el||t,Nt(t,document)&&this._callConnected())},t.prototype.$emit=function(t){this._callUpdate(t)},t.prototype.$reset=function(){this._callDisconnected(),this._callConnected()},t.prototype.$destroy=function(t){void 0===t&&(t=!1);var i=this.$options,n=i.el,r=i.name;n&&this._callDisconnected(),this._callHook("destroy"),n&&n[e]&&(delete n[e][r],P(n[e])||delete n[e],t&&ve(this.$el))},t.prototype.$create=function(e,i,n){return t[e](i,n)},t.prototype.$update=t.update,t.prototype.$getComponent=t.getComponent;var i={};Object.defineProperties(t.prototype,{$container:Object.getOwnPropertyDescriptor(t,"container"),$name:{get:function(){var e=this.$options.name;return i[e]||(i[e]=t.prefix+s(e)),i[e]}}})}(zi);var Pi={connected:function(){!Me(this.$el,this.$name)&&Ee(this.$el,this.$name)}},Hi={props:{cls:Boolean,animation:"list",duration:Number,origin:String,transition:String,queued:Boolean},data:{cls:!1,animation:[!1],duration:200,origin:!1,transition:"linear",queued:!1,initProps:{overflow:"",height:"",paddingTop:"",paddingBottom:"",marginTop:"",marginBottom:""},hideProps:{overflow:"hidden",height:0,paddingTop:0,paddingBottom:0,marginTop:0,marginBottom:0}},computed:{hasAnimation:function(t){return!!t.animation[0]},hasTransition:function(t){var e=t.animation;return this.hasAnimation&&!0===e[0]}},methods:{toggleElement:function(t,e,i){var n=this;return new Vt(function(r){var o,s=function(t){return Vt.all(t.map(function(t){return n._toggleElement(t,e,i)}))},a=(t=V(t)).filter(function(t){return n.isToggled(t)}),c=t.filter(function(t){return!y(a,t)});if(n.queued&&H(i)&&H(e)&&n.hasAnimation&&!(t.length<2)){var h=document.body,l=h.scrollTop,u=a[0],d=Qe.inProgress(u)&&Me(u,"bc-uk-animation-leave")||Ue.inProgress(u)&&"0px"===u.style.height;o=s(a),d||(o=o.then(function(){var t=s(c);return h.scrollTop=l,t}))}else o=s(c.concat(a));o.then(r,Z)})},toggleNow:function(t,e){var i=this;return new Vt(function(n){return Vt.all(V(t).map(function(t){return i._toggleElement(t,e,!1)})).then(n,Z)})},isToggled:function(t){var e=V(t||this.$el);return this.cls?Me(e,this.cls.split(" ")[0]):!rt(e,"hidden")},updateAria:function(t){!1===this.cls&&nt(t,"aria-hidden",!this.isToggled(t))},_toggleElement:function(t,e,i){var n=this;if(e=O(e)?e:Qe.inProgress(t)?Me(t,"bc-uk-animation-leave"):Ue.inProgress(t)?"0px"===t.style.height:!this.isToggled(t),!Dt(t,"before"+(e?"show":"hide"),[this]))return Vt.reject();var r,o,s,a,c,h,l,u=(_(i)?i:!1!==i&&this.hasAnimation?this.hasTransition?(o=(r=this).isToggled,s=r.duration,a=r.initProps,c=r.hideProps,h=r.transition,l=r._toggle,function(t,e){var i=Ue.inProgress(t),n=t.hasChildNodes?F(He(t.firstElementChild,"marginTop"))+F(He(t.lastElementChild,"marginBottom")):0,r=Tt(t)?ri(t)+(i?0:n):0;Ue.cancel(t),o(t)||l(t,!0),ri(t,""),yi.flush();var u=ri(t)+(i?0:n);return ri(t,r),(e?Ue.start(t,X({},a,{overflow:"hidden",height:u}),Math.round(s*(1-r/u)),h):Ue.start(t,c,Math.round(s*(r/u)),h).then(function(){return l(t,!1)})).then(function(){return He(t,a)})}):function(t){var e=t.animation,i=t.duration,n=t.origin,r=t._toggle;return function(t,o){return Qe.cancel(t),o?(r(t,!0),Qe.in(t,e[0],i,n)):Qe.out(t,e[1]||e[0],i,n).then(function(){return r(t,!1)})}}(this):this._toggle)(t,e);Dt(t,e?"show":"hide",[this]);var d=function(){Dt(t,e?"shown":"hidden",[n]),n.$update(t)};return u?u.then(d):Vt.resolve(d())},_toggle:function(t,e){var i;t&&(e=Boolean(e),this.cls?(i=y(this.cls," ")||e!==Me(t,this.cls))&&Oe(t,this.cls,y(this.cls," ")?void 0:e):(i=e===rt(t,"hidden"))&&nt(t,"hidden",e?null:""),Se("[autofocus]",t).some(function(t){return Tt(t)?t.focus()||!0:t.blur()}),this.updateAria(t),i&&this.$update(t))}}};var Li={mixins:[Pi,Hi],props:{targets:String,active:null,collapsible:Boolean,multiple:Boolean,toggle:String,content:String,transition:String},data:{targets:"> *",active:!1,animation:[!0],collapsible:!0,multiple:!1,clsOpen:"bc-uk-open",toggle:"> .uk-accordion-title",content:"> .uk-accordion-content",transition:"ease"},computed:{items:function(t,e){return Se(t.targets,e)}},events:[{name:"click",delegate:function(){return this.targets+" "+this.$props.toggle},handler:function(t){t.preventDefault(),this.toggle(he(Se(this.targets+" "+this.$props.toggle,this.$el),t.current))}}],connected:function(){if(!1!==this.active){var t=this.items[Number(this.active)];t&&!Me(t,this.clsOpen)&&this.toggle(t,!1)}},update:function(){var t=this;this.items.forEach(function(e){return t._toggle(Ie(t.content,e),Me(e,t.clsOpen))});var e=!this.collapsible&&!Me(this.items,this.clsOpen)&&this.items[0];e&&this.toggle(e,!1)},methods:{toggle:function(t,e){var i=this,n=le(t,this.items),r=Ct(this.items,"."+this.clsOpen);(t=this.items[n])&&[t].concat(!this.multiple&&!y(r,t)&&r||[]).forEach(function(n){var o=n===t,s=o&&!Me(n,i.clsOpen);if(s||!o||i.collapsible||!(r.length<2)){Oe(n,i.clsOpen,s);var a=n._wrapper?n._wrapper.firstElementChild:Ie(i.content,n);n._wrapper||(n._wrapper=be(a,"<div>"),nt(n._wrapper,"hidden",s?"":null)),i._toggle(a,!0),i.toggleElement(n._wrapper,s,e).then(function(){Me(n,i.clsOpen)===s&&(s||i._toggle(a,!1),n._wrapper=null,ye(a))})}})}}},ji={mixins:[Pi,Hi],args:"animation",props:{close:String},data:{animation:[!0],selClose:".uk-alert-close",duration:150,hideProps:X({opacity:0},Hi.data.hideProps)},events:[{name:"click",delegate:function(){return this.selClose},handler:function(t){t.preventDefault(),this.close()}}],methods:{close:function(){var t=this;this.toggleElement(this.$el).then(function(){return t.$destroy(!0)})}}};function Fi(t){var e;ce(function(){var e;t.update(),Mt(window,"load resize",function(){return t.update(null,"resize")}),Mt(document,"loadedmetadata load",function(e){var i=e.target;return t.update(i,"resize")},!0),Mt(window,"scroll",function(i){if(!e){e=!0,yi.write(function(){return e=!1});var n=i.target;t.update(1!==n.nodeType?document.body:n,i.type)}},{passive:!0,capture:!0});var i=0;Mt(document,"animationstart",function(t){var e=t.target;(He(e,"animationName")||"").match(/^uk-.*(left|right)/)&&(i++,He(document.body,"overflowX","hidden"),setTimeout(function(){--i||He(document.body,"overflowX","")},Y(He(e,"animationDuration"))+100))},!0)}),Mt(document,ie,function(t){if(e&&e(),Ft(t)){var i=Wt(t),n="tagName"in t.target?t.target:t.target.parentNode;e=Bt(document,re,function(t){var e=Wt(t),r=e.x,o=e.y;(n&&r&&Math.abs(i.x-r)>100||o&&Math.abs(i.y-o)>100)&&setTimeout(function(){var t,e,s,a;Dt(n,"swipe"),Dt(n,"swipe"+(t=i.x,e=i.y,s=r,a=o,Math.abs(t-s)>=Math.abs(e-a)?t-s>0?"Left":"Right":e-a>0?"Up":"Down"))})})}},{passive:!0})}var Wi,Vi,qi={args:"autoplay",props:{automute:Boolean,autoplay:Boolean},data:{automute:!1,autoplay:!0},computed:{inView:function(t){return"inview"===t.autoplay}},connected:function(){this.inView&&!rt(this.$el,"preload")&&(this.$el.preload="none"),this.player=new Mi(this.$el),this.automute&&this.player.mute()},update:{read:function(){return!!this.player&&{visible:Tt(this.$el)&&"hidden"!==He(this.$el,"visibility"),inView:this.inView&&di(this.$el)}},write:function(t){var e=t.visible,i=t.inView;!e||this.inView&&!i?this.player.pause():(!0===this.autoplay||this.inView&&i)&&this.player.play()},events:["resize","scroll"]}},Yi={mixins:[Pi,qi],props:{width:Number,height:Number},data:{automute:!0},update:{read:function(){var t=this.$el;if(!Tt(t))return!1;var e=t.parentNode;return{height:e.offsetHeight,width:e.offsetWidth}},write:function(t){var e=t.height,i=t.width,n=this.$el,r=this.width||n.naturalWidth||n.videoWidth||n.clientWidth,o=this.height||n.naturalHeight||n.videoHeight||n.clientHeight;r&&o&&He(n,it.cover({width:r,height:o},{width:i+(i%2?1:0),height:e+(e%2?1:0)}))},events:["resize"]}},Ri={props:{pos:String,offset:null,flip:Boolean,clsPos:String},data:{pos:"bottom-"+(Qt?"right":"left"),flip:!0,offset:!1,clsPos:""},computed:{pos:function(t){var e=t.pos;return(e+(y(e,"-")?"":"-center")).split("-")},dir:function(){return this.pos[0]},align:function(){return this.pos[1]}},methods:{positionAt:function(t,e,i){var n;Ce(t,this.clsPos+"-(top|bottom|left|right)(-[a-z]+)?"),He(t,{top:"",left:""});var r=this.offset,o=this.getAxis();z(r)||(r=(n=Ie(r))?ei(n)["x"===o?"left":"top"]-ei(e)["x"===o?"right":"bottom"]:0);var s=ti(t,e,"x"===o?ui(this.dir)+" "+this.align:this.align+" "+ui(this.dir),"x"===o?this.dir+" "+this.align:this.align+" "+this.dir,"x"===o?""+("left"===this.dir?-r:r):" "+("top"===this.dir?-r:r),null,this.flip,i).target,a=s.x,c=s.y;this.dir="x"===o?a:c,this.align="x"===o?c:a,Oe(t,this.clsPos+"-"+this.dir+"-"+this.align,!1===this.offset)},getAxis:function(){return"top"===this.dir||"bottom"===this.dir?"y":"x"}}},Ui={mixins:[Ri,Hi],args:"pos",props:{mode:"list",toggle:Boolean,boundary:Boolean,boundaryAlign:Boolean,delayShow:Number,delayHide:Number,clsDrop:String},data:{mode:["click","hover"],toggle:"- *",boundary:window,boundaryAlign:!1,delayShow:0,delayHide:800,clsDrop:!1,hoverIdle:200,animation:["bc-uk-animation-fade"],cls:"bc-uk-open"},computed:{boundary:function(t,e){return at(t.boundary,e)},clsDrop:function(t){return t.clsDrop||"uk-"+this.$options.name},clsPos:function(){return this.clsDrop}},created:function(){this.tracker=new _i},connected:function(){Ee(this.$el,this.clsDrop);var t=this.$props.toggle;this.toggle=t&&this.$create("toggle",at(t,this.$el),{target:this.$el,mode:this.mode}),!this.toggle&&Dt(this.$el,"updatearia")},events:[{name:"click",delegate:function(){return"."+this.clsDrop+"-close"},handler:function(t){t.preventDefault(),this.hide(!1)}},{name:"click",delegate:function(){return'a[href^="#"]'},handler:function(t){var e=t.target.hash;e||t.preventDefault(),e&&Nt(e,this.$el)||this.hide(!1)}},{name:"beforescroll",handler:function(){this.hide(!1)}},{name:"toggle",self:!0,handler:function(t,e){t.preventDefault(),this.isToggled()?this.hide(!1):this.show(e,!1)}},{name:oe,filter:function(){return y(this.mode,"hover")},handler:function(t){Ft(t)||(Wi&&Wi!==this&&Wi.toggle&&y(Wi.toggle.mode,"hover")&&!Nt(t.target,Wi.toggle.$el)&&!et({x:t.pageX,y:t.pageY},ei(Wi.$el))&&Wi.hide(!1),t.preventDefault(),this.show(this.toggle))}},{name:"toggleshow",handler:function(t,e){e&&!y(e.target,this.$el)||(t.preventDefault(),this.show(e||this.toggle))}},{name:"togglehide "+se,handler:function(t,e){Ft(t)||e&&!y(e.target,this.$el)||(t.preventDefault(),this.toggle&&y(this.toggle.mode,"hover")&&this.hide())}},{name:"beforeshow",self:!0,handler:function(){this.clearTimers(),Qe.cancel(this.$el),this.position()}},{name:"show",self:!0,handler:function(){this.tracker.init(),Dt(this.$el,"updatearia"),function(){if(Vi)return;Vi=!0,Mt(document,re,function(t){var e,i=t.target,n=t.defaultPrevented;if(!n)for(;Wi&&Wi!==e&&!Nt(i,Wi.$el)&&(!Wi.toggle||!Nt(i,Wi.toggle.$el));)e=Wi,Wi.hide(!1)})}()}},{name:"beforehide",self:!0,handler:function(){this.clearTimers()}},{name:"hide",handler:function(t){var e=t.target;this.$el===e?(Wi=this.isActive()?null:Wi,Dt(this.$el,"updatearia"),this.tracker.cancel()):Wi=null===Wi&&Nt(e,this.$el)&&this.isToggled()?this:Wi}},{name:"updatearia",self:!0,handler:function(t,e){t.preventDefault(),this.updateAria(this.$el),(e||this.toggle)&&(nt((e||this.toggle).$el,"aria-expanded",this.isToggled()?"true":"false"),Oe(this.toggle.$el,this.cls,this.isToggled()))}}],update:{write:function(){this.isToggled()&&!Qe.inProgress(this.$el)&&this.position()},events:["resize"]},methods:{show:function(t,e){var i=this;void 0===e&&(e=!0);var n=function(){return!i.isToggled()&&i.toggleElement(i.$el,!0)},r=function(){if(i.toggle=t||i.toggle,i.clearTimers(),!i.isActive())if(e&&Wi&&Wi!==i&&Wi.isDelaying)i.showTimer=setTimeout(i.show,10);else{if(i.isParentOf(Wi)){if(!Wi.hideTimer)return;Wi.hide(!1)}else if(Wi&&i.isChildOf(Wi))Wi.clearTimers();else if(Wi&&!i.isChildOf(Wi)&&!i.isParentOf(Wi))for(var r;Wi&&Wi!==r&&!i.isChildOf(Wi);)r=Wi,Wi.hide(!1);e&&i.delayShow?i.showTimer=setTimeout(n,i.delayShow):n(),Wi=i}};t&&this.toggle&&t.$el!==this.toggle.$el?(Bt(this.$el,"hide",r),this.hide(!1)):r()},hide:function(t){var e=this;void 0===t&&(t=!0);var i=function(){return e.toggleNow(e.$el,!1)};this.clearTimers(),this.isDelaying=this.tracker.movesTo(this.$el),t&&this.isDelaying?this.hideTimer=setTimeout(this.hide,this.hoverIdle):t&&this.delayHide?this.hideTimer=setTimeout(i,this.delayHide):i()},clearTimers:function(){clearTimeout(this.showTimer),clearTimeout(this.hideTimer),this.showTimer=null,this.hideTimer=null,this.isDelaying=!1},isActive:function(){return Wi===this},isChildOf:function(t){return t&&t!==this&&Nt(this.$el,t.$el)},isParentOf:function(t){return t&&t!==this&&Nt(t.$el,this.$el)},position:function(){Ce(this.$el,this.clsDrop+"-(stack|boundary)"),He(this.$el,{top:"",left:"",display:"block"}),Oe(this.$el,this.clsDrop+"-boundary",this.boundaryAlign);var t=ei(this.boundary),e=this.boundaryAlign?t:ei(this.toggle.$el);if("justify"===this.align){var i="y"===this.getAxis()?"width":"height";He(this.$el,i,e[i])}else this.$el.offsetWidth>Math.max(t.right-e.left,e.right-t.left)&&Ee(this.$el,this.clsDrop+"-stack");this.positionAt(this.$el,this.boundaryAlign?this.boundary:this.toggle.$el,this.boundary),He(this.$el,"display","")}}};var Xi={extends:Ui},Ki={mixins:[Pi],args:"target",props:{target:Boolean},data:{target:!1},computed:{input:function(t,e){return Ie(Et,e)},state:function(){return this.input.nextElementSibling},target:function(t,e){var i=t.target;return i&&(!0===i&&this.input.parentNode===e&&this.input.nextElementSibling||at(i,e))}},update:function(){var t=this.target,e=this.input;if(t){var i,n=At(t)?"value":"textContent",r=t[n],o=e.files&&e.files[0]?e.files[0].name:wt(e,"select")&&(i=Se("option",e).filter(function(t){return t.selected})[0])?i.textContent:e.value;r!==o&&(t[n]=o)}},events:{change:function(){this.$emit()}}},Gi={update:{read:function(t){var e=di(this.$el);if(!e||t.isInView===e)return!1;t.isInView=e},write:function(){this.$el.src=this.$el.src},events:["scroll","resize"]}},Ji={props:{margin:String,firstColumn:Boolean},data:{margin:"bc-uk-margin-small-top",firstColumn:"bc-uk-first-column"},update:{read:function(t){var e=this.$el.children;if(!e.length||!Tt(this.$el))return t.rows=[[]];t.rows=Qi(e),t.stacks=!t.rows.some(function(t){return t.length>1})},write:function(t){var e=this;t.rows.forEach(function(t,i){return t.forEach(function(t,n){Oe(t,e.margin,0!==i),Oe(t,e.firstColumn,0===n)})})},events:["resize"]}};function Qi(t){for(var e=[[]],i=0;i<t.length;i++){var n=t[i],r=Zi(n);if(r.height)for(var o=e.length-1;o>=0;o--){var s=e[o];if(!s[0]){s.push(n);break}var a=void 0;if(s[0].offsetParent===n.offsetParent?a=Zi(s[0]):(r=Zi(n,!0),a=Zi(s[0],!0)),r.top>=a.bottom-1){e.push([n]);break}if(r.bottom>a.top){if(r.left<a.left&&!Qt){s.unshift(n);break}s.push(n);break}if(0===o){e.unshift([n]);break}}}return e}function Zi(t,e){var i;void 0===e&&(e=!1);var n=t.offsetTop,r=t.offsetLeft,o=t.offsetHeight;return e&&(n=(i=mi(t))[0],r=i[1]),{top:n,left:r,height:o,bottom:n+o}}var tn={extends:Ji,mixins:[Pi],name:"grid",props:{masonry:Boolean,parallax:Number},data:{margin:"bc-uk-grid-margin",clsStack:"bc-uk-grid-stack",masonry:!1,parallax:0},computed:{length:function(t,e){return e.children.length},parallax:function(t){var e=t.parallax;return e&&this.length?Math.abs(e):""}},connected:function(){this.masonry&&Ee(this.$el,"bc-uk-flex-top uk-flex-wrap-top")},update:[{read:function(t){var e=t.rows;(this.masonry||this.parallax)&&(e=e.map(function(t){return G(t,"offsetLeft")}),Qt&&e.map(function(t){return t.reverse()}));var i,n,r,o,s=e.some(function(t){return t.some(Ue.inProgress)}),a=!1,c="";if(this.masonry&&this.length){var h=0;a=e.reduce(function(t,i,n){return t[n]=i.map(function(i,r){return 0===n?0:F(t[n-1][r])+(h-F(e[n-1][r]&&e[n-1][r].offsetHeight))}),h=i.reduce(function(t,e){return Math.max(t,e.offsetHeight)},0),t},[]),c=function(t){return Math.max.apply(Math,t.reduce(function(t,e){return e.forEach(function(e,i){return t[i]=(t[i]||0)+e.offsetHeight}),t},[]))}(e)+(i=this.$el,n=this.margin,r=V(i.children),F((o=r.filter(function(t){return Me(t,n)})[0])?He(o,"marginTop"):He(r[0],"paddingLeft"))*(e.length-1))}return{rows:e,translates:a,height:!s&&c}},write:function(t){var e=t.stacks,i=t.height;Oe(this.$el,this.clsStack,e),He(this.$el,"paddingBottom",this.parallax),!1!==i&&He(this.$el,"height",i)},events:["resize"]},{read:function(t){var e=t.height;return{scrolled:!!this.parallax&&fi(this.$el,e?e-ri(this.$el):0)*this.parallax}},write:function(t){var e=t.rows,i=t.scrolled,n=t.translates;(!1!==i||n)&&e.forEach(function(t,e){return t.forEach(function(t,r){return He(t,"transform",i||n?"translateY("+((n&&-n[e][r])+(i?r%2?i:i/8:0))+"px)":"")})})},events:["scroll","resize"]}]};var en=Jt?{data:{selMinHeight:!1,forceHeight:!1},computed:{elements:function(t,e){var i=t.selMinHeight;return i?Se(i,e):[e]}},update:[{read:function(){He(this.elements,"height","")},order:-5,events:["resize"]},{write:function(){var t=this;this.elements.forEach(function(e){var i=F(He(e,"minHeight"));i&&(t.forceHeight||Math.round(i+ai("height",e,"content-box"))>=e.offsetHeight)&&He(e,"height",i)})},order:5,events:["resize"]}]}:{},nn={mixins:[en],args:"target",props:{target:String,row:Boolean},data:{target:"> *",row:!0,forceHeight:!0},computed:{elements:function(t,e){return Se(t.target,e)}},update:{read:function(){return{rows:(this.row?Qi(this.elements):[this.elements]).map(rn)}},write:function(t){t.rows.forEach(function(t){var e=t.heights;return t.elements.forEach(function(t,i){return He(t,"minHeight",e[i])})})},events:["resize"]}};function rn(t){var e;if(t.length<2)return{heights:[""],elements:t};var i=on(t),n=i.heights,r=i.max,o=t.some(function(t){return t.style.minHeight}),s=t.some(function(t,e){return!t.style.minHeight&&n[e]<r});return o&&s&&(He(t,"minHeight",""),e=on(t),n=e.heights,r=e.max),{heights:n=t.map(function(t,e){return n[e]===r&&F(t.style.minHeight).toFixed(2)!==r.toFixed(2)?"":r}),elements:t}}function on(t){var e=t.map(function(t){return ei(t).height-ai("height",t,"content-box")});return{heights:e,max:Math.max.apply(null,e)}}var sn={mixins:[en],props:{expand:Boolean,offsetTop:Boolean,offsetBottom:Boolean,minHeight:Number},data:{expand:!1,offsetTop:!1,offsetBottom:!1,minHeight:0},update:{read:function(){var t="",e=ai("height",this.$el,"content-box");if(this.expand)t=ri(window)-(an(document.documentElement)-an(this.$el))-e||"";else{if(t="calc(100vh",this.offsetTop){var i=ei(this.$el).top;t+=i<ri(window)/2?" - "+i+"px":""}!0===this.offsetBottom?t+=" - "+an(this.$el.nextElementSibling)+"px":z(this.offsetBottom)?t+=" - "+this.offsetBottom+"vh":this.offsetBottom&&m(this.offsetBottom,"px")?t+=" - "+F(this.offsetBottom)+"px":B(this.offsetBottom)&&(t+=" - "+an(at(this.offsetBottom,this.$el))+"px"),t+=(e?" - "+e+"px":"")+")"}return{minHeight:t}},write:function(t){var e=t.minHeight;He(this.$el,{minHeight:e}),this.minHeight&&F(He(this.$el,"minHeight"))<this.minHeight&&He(this.$el,"minHeight",this.minHeight)},events:["resize"]}};function an(t){return t&&t.offsetHeight||0}var cn={args:"src",props:{id:Boolean,icon:String,src:String,style:String,width:Number,height:Number,ratio:Number,class:String,strokeAnimation:Boolean,attributes:"list"},data:{ratio:1,include:["style","class"],class:"",strokeAnimation:!1},connected:function(){var t,e=this;if(this.class+=" uk-svg",!this.icon&&y(this.src,"#")){var i=this.src.split("#");i.length>1&&(t=i,this.src=t[0],this.icon=t[1])}this.svg=this.getSvg().then(function(t){return e.applyAttributes(t),e.svgEl=function(t,e){if(St(e)||"CANVAS"===e.tagName){nt(e,"hidden",!0);var i=e.nextElementSibling;return fn(t,i)?i:me(e,t)}var n=e.lastElementChild;return fn(t,n)?n:fe(e,t)}(t,e.$el)},Z)},disconnected:function(){var t=this;St(this.$el)&&nt(this.$el,"hidden",null),this.svg&&this.svg.then(function(e){return(!t._connected||e!==t.svgEl)&&ve(e)},Z),this.svg=this.svgEl=null},update:{read:function(){return!!(this.strokeAnimation&&this.svgEl&&Tt(this.svgEl))},write:function(){var t,e;t=this.svgEl,(e=dn(t))&&t.style.setProperty("--uk-animation-stroke",e)},type:["resize"]},methods:{getSvg:function(){var t=this;return function(t){if(hn[t])return hn[t];return hn[t]=new Vt(function(e,i){t?f(t,"data:")?e(decodeURIComponent(t.split(",")[1])):Kt(t).then(function(t){return e(t.response)},function(){return i("SVG not found.")}):i()})}(this.src).then(function(e){return function(t,e){e&&y(t,"<symbol")&&(t=function(t,e){if(!un[t]){var i;for(un[t]={};i=ln.exec(t);)un[t][i[3]]='<svg xmlns="http://www.w3.org/2000/svg"'+i[1]+"svg>";ln.lastIndex=0}return un[t][e]}(t,e)||t);return(t=Ie(t.substr(t.indexOf("<svg"))))&&t.hasChildNodes()&&t}(e,t.icon)||Vt.reject("SVG not found.")})},applyAttributes:function(t){var e=this;for(var i in this.$options.props)this[i]&&y(this.include,i)&&nt(t,i,this[i]);for(var n in this.attributes){var r=this.attributes[n].split(":",2),o=r[0],s=r[1];nt(t,o,s)}this.id||ot(t,"id");var a=["width","height"],c=[this.width,this.height];c.some(function(t){return t})||(c=a.map(function(e){return nt(t,e)}));var h=nt(t,"viewBox");h&&!c.some(function(t){return t})&&(c=h.split(" ").slice(2)),c.forEach(function(i,n){(i=(0|i)*e.ratio)&&nt(t,a[n],i),i&&!c[1^n]&&ot(t,a[1^n])}),nt(t,"data-svg",this.icon||this.src)}}},hn={};var ln=/<symbol(.*?id=(['"])(.*?)\2[^]*?<\/)symbol>/g,un={};function dn(t){return Math.ceil(Math.max.apply(Math,Se("[stroke]",t).map(function(t){return t.getTotalLength&&t.getTotalLength()||0}).concat([0])))}function fn(t,e){return nt(t,"data-svg")===nt(e,"data-svg")}var pn={},mn={spinner:'<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" cx="15" cy="15" r="14"/></svg>',totop:'<svg width="18" height="10" viewBox="0 0 18 10" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 9 9 1 17 9 "/></svg>',marker:'<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect x="9" y="4" width="1" height="11"/><rect x="4" y="9" width="11" height="1"/></svg>',"close-icon":'<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><line fill="none" stroke="#000" stroke-width="1.1" x1="1" y1="1" x2="13" y2="13"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13" y1="1" x2="1" y2="13"/></svg>',"close-large":'<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><line fill="none" stroke="#000" stroke-width="1.4" x1="1" y1="1" x2="19" y2="19"/><line fill="none" stroke="#000" stroke-width="1.4" x1="19" y1="1" x2="1" y2="19"/></svg>',"navbar-toggle-icon":'<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect y="9" width="20" height="2"/><rect y="3" width="20" height="2"/><rect y="15" width="20" height="2"/></svg>',"overlay-icon":'<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><rect x="19" y="0" width="1" height="40"/><rect x="0" y="19" width="40" height="1"/></svg>',"pagination-next":'<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 1 6 6 1 11"/></svg>',"pagination-previous":'<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="6 1 1 6 6 11"/></svg>',"search-icon":'<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',"search-large":'<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" stroke-width="1.8" cx="17.5" cy="17.5" r="16.5"/><line fill="none" stroke="#000" stroke-width="1.8" x1="38" y1="39" x2="29" y2="30"/></svg>',"search-navbar":'<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10.5" cy="10.5" r="9.5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="23" y1="23" x2="17" y2="17"/></svg>',"slidenav-next":'<svg width="14px" height="24px" viewBox="0 0 14 24" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.4" points="1.225,23 12.775,12 1.225,1 "/></svg>',"slidenav-next-large":'<svg width="25px" height="40px" viewBox="0 0 25 40" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="2" points="4.002,38.547 22.527,20.024 4,1.5 "/></svg>',"slidenav-previous":'<svg width="14px" height="24px" viewBox="0 0 14 24" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.4" points="12.775,1 1.225,12 12.775,23 "/></svg>',"slidenav-previous-large":'<svg width="25px" height="40px" viewBox="0 0 25 40" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="2" points="20.527,1.5 2,20.024 20.525,38.547 "/></svg>'},gn={install:function(t){t.icon.add=function(e,i){var n,r=B(e)?((n={})[e]=i,n):e;K(r,function(t,e){mn[e]=t,delete pn[e]}),t._initialized&&_e(document.body,function(e){return K(t.getComponents(e),function(t){t.$options.isIcon&&t.icon in r&&t.$reset()})})}},mixins:[Pi,cn],args:"icon",props:["icon"],data:{include:[]},isIcon:!0,connected:function(){Ee(this.$el,"bc-uk-icon")},methods:{getSvg:function(){var t=function(t){if(!mn[t])return null;pn[t]||(pn[t]=Ie(mn[t].trim()));return pn[t].cloneNode(!0)}(function(t){return Qt?U(U(t,"left","right"),"previous","next"):t}(this.icon));return t?Vt.resolve(t):Vt.reject("Icon not found.")}}},vn={extends:gn,data:function(t){return{icon:s(t.constructor.options.name)}}},bn={extends:vn,connected:function(){Ee(this.$el,"bc-uk-slidenav")},computed:{icon:function(t,e){var i=t.icon;return Me(e,"bc-uk-slidenav-large")?i+"-large":i}}},wn={extends:vn,computed:{icon:function(t,e){var i=t.icon;return Me(e,"bc-uk-search-icon")&&kt(e,".uk-search-large").length?"search-large":kt(e,".uk-search-navbar").length?"search-navbar":i}}},yn={extends:vn,computed:{icon:function(){return"close-"+(Me(this.$el,"bc-uk-close-large")?"large":"icon")}}},xn={extends:vn,connected:function(){var t=this;this.svg.then(function(e){return 1!==t.ratio&&He(Ie("circle",e),"strokeWidth",1/t.ratio)},Z)}};var kn={args:"dataSrc",props:{dataSrc:String,dataSrcset:Boolean,sizes:String,width:Number,height:Number,offsetTop:String,offsetLeft:String,target:String},data:{dataSrc:"",dataSrcset:!1,sizes:!1,width:!1,height:!1,offsetTop:"50vh",offsetLeft:0,target:!1},computed:{cacheKey:function(t){var e=t.dataSrc;return this.$name+"."+e},width:function(t){var e=t.width,i=t.dataWidth;return e||i},height:function(t){var e=t.height,i=t.dataHeight;return e||i},sizes:function(t){var e=t.sizes,i=t.dataSizes;return e||i},isImg:function(t,e){return An(e)},target:{get:function(t){var e=t.target;return[this.$el].concat(ct(e,this.$el))},watch:function(){this.observe()}},offsetTop:function(t){return gi(t.offsetTop,"height")},offsetLeft:function(t){return gi(t.offsetLeft,"width")}},connected:function(){Nn[this.cacheKey]?$n(this.$el,Nn[this.cacheKey]||this.dataSrc,this.dataSrcset,this.sizes):this.isImg&&this.width&&this.height&&$n(this.$el,function(t,e,i){var n;i&&(n=it.ratio({width:t,height:e},"width",gi(In(i))),t=n.width,e=n.height);return'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="'+t+'" height="'+e+'"></svg>'}(this.width,this.height,this.sizes)),this.observer=new Bi(this.load,{rootMargin:this.offsetTop+"px "+this.offsetLeft+"px"}),requestAnimationFrame(this.observe)},disconnected:function(){this.observer.disconnect()},update:{read:function(t){var e=this,i=t.image;if(i||"complete"!==document.readyState||this.load(this.observer.takeRecords()),this.isImg)return!1;i&&i.then(function(t){return t&&""!==t.currentSrc&&$n(e.$el,Cn(t))})},write:function(t){if(this.dataSrcset&&1!==window.devicePixelRatio){var e=He(this.$el,"backgroundSize");(e.match(/^(auto\s?)+$/)||F(e)===t.bgSize)&&(t.bgSize=(i=this.dataSrcset,n=this.sizes,r=gi(In(n)),(o=(i.match(En)||[]).map(F).sort(function(t,e){return t-e})).filter(function(t){return t>=r})[0]||o.pop()||""),He(this.$el,"backgroundSize",t.bgSize+"px"))}var i,n,r,o},events:["resize"]},methods:{load:function(t){var e=this;t.some(function(t){return t.isIntersecting})&&(this._data.image=Gt(this.dataSrc,this.dataSrcset,this.sizes).then(function(t){return $n(e.$el,Cn(t),t.srcset,t.sizes),Nn[e.cacheKey]=Cn(t),t},Z),this.observer.disconnect())},observe:function(){var t=this;!this._data.image&&this._connected&&this.target.forEach(function(e){return t.observer.observe(e)})}}};function $n(t,e,i,n){if(An(t))n&&(t.sizes=n),i&&(t.srcset=i),e&&(t.src=e);else if(e){!y(t.style.backgroundImage,e)&&(He(t,"backgroundImage","url("+_t(e)+")"),Dt(t,zt("load",!1)))}}var _n=/\s*(.*?)\s*(\w+|calc\(.*?\))\s*(?:,|$)/g;function In(t){var e,i;for(_n.lastIndex=0;e=_n.exec(t);)if(!e[1]||window.matchMedia(e[1]).matches){e=f(i=e[2],"calc")?i.substring(5,i.length-1).replace(Sn,function(t){return gi(t)}).replace(/ /g,"").match(Tn).reduce(function(t,e){return t+ +e},0):i;break}return e||"100vw"}var Sn=/\d+(?:\w+|%)/g,Tn=/[+-]?(\d+)/g;var En=/\s+\d+w\s*(?:,|$)/g;function An(t){return"IMG"===t.tagName}function Cn(t){return t.currentSrc||t.src}var Nn;try{(Nn=window.sessionStorage||{}).__test__=1,delete Nn.__test__}catch(t){Nn={}}var Mn={props:{media:Boolean},data:{media:!1},computed:{matchMedia:function(){var t=function(t){if(B(t))if("@"===t[0]){var e="breakpoint-"+t.substr(1);t=F(We(e))}else if(isNaN(t))return t;return!(!t||isNaN(t))&&"(min-width: "+t+"px)"}(this.media);return!t||window.matchMedia(t).matches}}};var On,Bn,Dn={mixins:[Pi,Mn],props:{fill:String},data:{fill:"",clsWrapper:"bc-uk-leader-fill",clsHide:"bc-uk-leader-hide",attrFill:"data-fill"},computed:{fill:function(t){return t.fill||We("leader-fill-content")}},connected:function(){var t;t=we(this.$el,'<span class="'+this.clsWrapper+'">'),this.wrapper=t[0]},disconnected:function(){ye(this.wrapper.childNodes)},update:{read:function(t){var e=t.changed,i=t.width,n=i;return{width:i=Math.floor(this.$el.offsetWidth/2),fill:this.fill,changed:e||n!==i,hide:!this.matchMedia}},write:function(t){Oe(this.wrapper,this.clsHide,t.hide),t.changed&&(t.changed=!1,nt(this.wrapper,this.attrFill,new Array(t.width).join(t.fill)))},events:["resize"]}},zn={props:{container:Boolean},data:{container:!0},computed:{container:function(t){var e=t.container;return!0===e&&this.$container||e&&Ie(e)}}},Pn={mixins:[Pi,zn,Hi],props:{selPanel:String,selClose:String,escClose:Boolean,bgClose:Boolean,stack:Boolean},data:{cls:"bc-uk-open",escClose:!0,bgClose:!0,overlay:!0,stack:!1},computed:{panel:function(t,e){return Ie(t.selPanel,e)},transitionElement:function(){return this.panel},bgClose:function(t){return t.bgClose&&this.panel}},beforeDisconnect:function(){this.isToggled()&&this.toggleNow(this.$el,!1)},events:[{name:"click",delegate:function(){return this.selClose},handler:function(t){t.preventDefault(),this.hide()}},{name:"toggle",self:!0,handler:function(t){t.defaultPrevented||(t.preventDefault(),this.toggle())}},{name:"beforeshow",self:!0,handler:function(t){var e=On&&On!==this&&On;On=this,e?this.stack?this.prev=e:(On=e,e.isToggled()?e.hide().then(this.show):Bt(e.$el,"beforeshow hidden",this.show,!1,function(t){var i=t.target;return"hidden"===t.type&&i===e.$el}),t.preventDefault()):function(){if(Bn)return;Bn=[Mt(document,re,function(t){var e=t.target,i=t.defaultPrevented;!On||!On.bgClose||i||On.overlay&&!Nt(e,On.$el)||Nt(e,On.panel)||On.hide()}),Mt(document,"keydown",function(t){27===t.keyCode&&On&&On.escClose&&(t.preventDefault(),On.hide())})]}()}},{name:"show",self:!0,handler:function(){Me(document.documentElement,this.clsPage)||(this.scrollbarWidth=oi(window)-oi(document),He(document.body,"overflowY",this.scrollbarWidth&&this.overlay?"scroll":"")),Ee(document.documentElement,this.clsPage)}},{name:"hide",self:!0,handler:function(){On&&(On!==this||this.prev)||(Bn&&Bn.forEach(function(t){return t()}),Bn=null)}},{name:"hidden",self:!0,handler:function(){var t,e=this.prev;if(On=On&&On!==this&&On||e)for(;e;){if(e.clsPage===this.clsPage){t=!0;break}e=e.prev}else He(document.body,"overflowY","");t||Ae(document.documentElement,this.clsPage)}}],methods:{toggle:function(){return this.isToggled()?this.hide():this.show()},show:function(){var t=this;return this.isToggled()?Vt.resolve():this.container&&this.$el.parentNode!==this.container?(fe(this.container,this.$el),new Vt(function(e){return requestAnimationFrame(function(){return t.show().then(e)})})):this.toggleElement(this.$el,!0,Hn(this))},hide:function(){return this.isToggled()?this.toggleElement(this.$el,!1,Hn(this)):Vt.resolve()},getActive:function(){return On}}};function Hn(t){var e=t.transitionElement,i=t._toggle;return function(t,n){return new Vt(function(r,o){return Bt(t,"show hide",function(){t._reject&&t._reject(),t._reject=o,i(t,n),Y(He(e,"transitionDuration"))?Bt(e,"transitionend",r,!1,function(t){return t.target===e}):r()})})}}var Ln={install:function(t){t.modal.dialog=function(e,i){var n=t.modal(' <div class="uk-modal"> <div class="uk-modal-dialog">'+e+"</div> </div> ",i);return n.show(),Mt(n.$el,"hidden",function(t){var e=t.target,i=t.currentTarget;e===i&&Vt.resolve(function(){return n.$destroy(!0)})}),n},t.modal.alert=function(e,i){return i=X({bgClose:!1,escClose:!1,labels:t.modal.labels},i),new Vt(function(n){return Mt(t.modal.dialog(' <div class="uk-modal-body">'+(B(e)?e:de(e))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-primary uk-modal-close" autofocus>'+i.labels.ok+"</button> </div> ",i).$el,"hide",n)})},t.modal.confirm=function(e,i){return i=X({bgClose:!1,escClose:!0,labels:t.modal.labels},i),new Vt(function(n,r){var o=t.modal.dialog(' <form> <div class="uk-modal-body">'+(B(e)?e:de(e))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+i.labels.cancel+'</button> <button class="uk-button uk-button-primary" autofocus>'+i.labels.ok+"</button> </div> </form> ",i),s=!1;Mt(o.$el,"submit","form",function(t){t.preventDefault(),n(),s=!0,o.hide()}),Mt(o.$el,"hide",function(){s||r()})})},t.modal.prompt=function(e,i,n){return n=X({bgClose:!1,escClose:!0,labels:t.modal.labels},n),new Vt(function(r){var o=t.modal.dialog(' <form class="uk-form-stacked"> <div class="uk-modal-body"> <label>'+(B(e)?e:de(e))+'</label> <input class="uk-input" autofocus> </div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+n.labels.cancel+'</button> <button class="uk-button uk-button-primary">'+n.labels.ok+"</button> </div> </form> ",n),s=Ie("input",o.$el);s.value=i;var a=!1;Mt(o.$el,"submit","form",function(t){t.preventDefault(),r(s.value),a=!0,o.hide()}),Mt(o.$el,"hide",function(){a||r(null)})})},t.modal.labels={ok:"Ok",cancel:"Cancel"}},mixins:[Pn],data:{clsPage:"bc-uk-modal-page",selPanel:".uk-modal-dialog",selClose:".uk-modal-close, .uk-modal-close-default, .uk-modal-close-outside, .uk-modal-close-full"},events:[{name:"show",self:!0,handler:function(){Me(this.panel,"bc-uk-margin-auto-vertical")?Ee(this.$el,"bc-uk-flex"):He(this.$el,"display","block"),ri(this.$el)}},{name:"hidden",self:!0,handler:function(){He(this.$el,"display",""),Ae(this.$el,"bc-uk-flex")}}]};var jn={extends:Li,data:{targets:"> .uk-parent",toggle:"> a",content:"> ul"}},Fn={mixins:[Pi,en],props:{dropdown:String,mode:"list",align:String,offset:Number,boundary:Boolean,boundaryAlign:Boolean,clsDrop:String,delayShow:Number,delayHide:Number,dropbar:Boolean,dropbarMode:String,dropbarAnchor:Boolean,duration:Number},data:{dropdown:".uk-navbar-nav > li",align:Qt?"right":"left",clsDrop:"bc-uk-navbar-dropdown",mode:void 0,offset:void 0,delayShow:void 0,delayHide:void 0,boundaryAlign:void 0,flip:"x",boundary:!0,dropbar:!1,dropbarMode:"slide",dropbarAnchor:!1,duration:200,forceHeight:!0,selMinHeight:".uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle"},computed:{boundary:function(t,e){var i=t.boundary,n=t.boundaryAlign;return!0===i||n?e:i},dropbarAnchor:function(t,e){return at(t.dropbarAnchor,e)},pos:function(t){return"bottom-"+t.align},dropdowns:function(t,e){return Se(t.dropdown+" ."+t.clsDrop,e)}},beforeConnect:function(){var t=this.$props.dropbar;this.dropbar=t&&(at(t,this.$el)||Ie("+ .uk-navbar-dropbar",this.$el)||Ie("<div></div>")),this.dropbar&&(Ee(this.dropbar,"bc-uk-navbar-dropbar"),"slide"===this.dropbarMode&&Ee(this.dropbar,"bc-uk-navbar-dropbar-slide"))},disconnected:function(){this.dropbar&&ve(this.dropbar)},update:function(){var t=this;this.$create("drop",this.dropdowns.filter(function(e){return!t.getDropdown(e)}),X({},this.$props,{boundary:this.boundary,pos:this.pos,offset:this.dropbar||this.offset}))},events:[{name:"mouseover",delegate:function(){return this.dropdown},handler:function(t){var e=t.current,i=this.getActive();i&&i.toggle&&!Nt(i.toggle.$el,e)&&!i.tracker.movesTo(i.$el)&&i.hide(!1)}},{name:"mouseleave",el:function(){return this.dropbar},handler:function(){var t=this.getActive();t&&!wt(this.dropbar,":hover")&&t.hide()}},{name:"beforeshow",capture:!0,filter:function(){return this.dropbar},handler:function(){this.dropbar.parentNode||me(this.dropbarAnchor||this.$el,this.dropbar)}},{name:"show",capture:!0,filter:function(){return this.dropbar},handler:function(t,e){var i=e.$el,n=e.dir;this.clsDrop&&Ee(i,this.clsDrop+"-dropbar"),"bottom"===n&&this.transitionTo(i.offsetHeight+F(He(i,"marginTop"))+F(He(i,"marginBottom")),i)}},{name:"beforehide",filter:function(){return this.dropbar},handler:function(t,e){var i=e.$el,n=this.getActive();wt(this.dropbar,":hover")&&n&&n.$el===i&&t.preventDefault()}},{name:"hide",filter:function(){return this.dropbar},handler:function(t,e){var i=e.$el,n=this.getActive();(!n||n&&n.$el===i)&&this.transitionTo(0)}}],methods:{getActive:function(){var t=this.dropdowns.map(this.getDropdown).filter(function(t){return t&&t.isActive()})[0];return t&&y(t.mode,"hover")&&Nt(t.toggle.$el,this.$el)&&t},transitionTo:function(t,e){var i=this,n=this.dropbar,r=Tt(n)?ri(n):0;return He(e=r<t&&e,"clip","rect(0,"+e.offsetWidth+"px,"+r+"px,0)"),ri(n,r),Ue.cancel([e,n]),Vt.all([Ue.start(n,{height:t},this.duration),Ue.start(e,{clip:"rect(0,"+e.offsetWidth+"px,"+t+"px,0)"},this.duration)]).catch(Z).then(function(){He(e,{clip:""}),i.$update(n)})},getDropdown:function(t){return this.$getComponent(t,"drop")||this.$getComponent(t,"dropdown")}}},Wn={mixins:[Pn],args:"mode",props:{mode:String,flip:Boolean,overlay:Boolean},data:{mode:"slide",flip:!1,overlay:!1,clsPage:"bc-uk-offcanvas-page",clsContainer:"bc-uk-offcanvas-container",selPanel:".uk-offcanvas-bar",clsFlip:"bc-uk-offcanvas-flip",clsContainerAnimation:"bc-uk-offcanvas-container-animation",clsSidebarAnimation:"bc-uk-offcanvas-bar-animation",clsMode:"bc-uk-offcanvas",clsOverlay:"bc-uk-offcanvas-overlay",selClose:".uk-offcanvas-close"},computed:{clsFlip:function(t){var e=t.flip,i=t.clsFlip;return e?i:""},clsOverlay:function(t){var e=t.overlay,i=t.clsOverlay;return e?i:""},clsMode:function(t){var e=t.mode;return t.clsMode+"-"+e},clsSidebarAnimation:function(t){var e=t.mode,i=t.clsSidebarAnimation;return"none"===e||"reveal"===e?"":i},clsContainerAnimation:function(t){var e=t.mode,i=t.clsContainerAnimation;return"push"!==e&&"reveal"!==e?"":i},transitionElement:function(t){return"reveal"===t.mode?this.panel.parentNode:this.panel}},events:[{name:"click",delegate:function(){return'a[href^="#"]'},handler:function(t){var e=t.current;e.hash&&Ie(e.hash,document.body)&&this.hide()}},{name:"touchstart",passive:!0,el:function(){return this.panel},handler:function(t){var e=t.targetTouches;1===e.length&&(this.clientY=e[0].clientY)}},{name:"touchmove",self:!0,passive:!1,filter:function(){return this.overlay},handler:function(t){t.preventDefault()}},{name:"touchmove",passive:!1,el:function(){return this.panel},handler:function(t){if(1===t.targetTouches.length){var e=event.targetTouches[0].clientY-this.clientY,i=this.panel,n=i.scrollTop,r=i.scrollHeight,o=i.clientHeight;(o>=r||0===n&&e>0||r-n<=o&&e<0)&&t.preventDefault()}}},{name:"show",self:!0,handler:function(){"reveal"!==this.mode||Me(this.panel.parentNode,this.clsMode)||(be(this.panel,"<div>"),Ee(this.panel.parentNode,this.clsMode)),He(document.documentElement,"overflowY",this.overlay?"hidden":""),Ee(document.body,this.clsContainer,this.clsFlip),He(this.$el,"display","block"),Ee(this.$el,this.clsOverlay),Ee(this.panel,this.clsSidebarAnimation,"reveal"!==this.mode?this.clsMode:""),ri(document.body),Ee(document.body,this.clsContainerAnimation),this.clsContainerAnimation&&(Vn().content+=",user-scalable=0")}},{name:"hide",self:!0,handler:function(){Ae(document.body,this.clsContainerAnimation);var t=this.getActive();("none"===this.mode||t&&t!==this&&t!==this.prev)&&Dt(this.panel,"transitionend")}},{name:"hidden",self:!0,handler:function(){var t;this.clsContainerAnimation&&((t=Vn()).content=t.content.replace(/,user-scalable=0$/,"")),"reveal"===this.mode&&ye(this.panel),Ae(this.panel,this.clsSidebarAnimation,this.clsMode),Ae(this.$el,this.clsOverlay),He(this.$el,"display",""),Ae(document.body,this.clsContainer,this.clsFlip),He(document.documentElement,"overflowY","")}},{name:"swipeLeft swipeRight",handler:function(t){this.isToggled()&&m(t.type,"Left")^this.flip&&this.hide()}}]};function Vn(){return Ie('meta[name="viewport"]',document.head)||fe(document.head,'<meta name="viewport">')}var qn={mixins:[Pi],props:{selContainer:String,selContent:String},data:{selContainer:".uk-modal",selContent:".uk-modal-dialog"},computed:{container:function(t,e){return xt(e,t.selContainer)},content:function(t,e){return xt(e,t.selContent)}},connected:function(){He(this.$el,"minHeight",150)},update:{read:function(){return!(!this.content||!this.container)&&{current:F(He(this.$el,"maxHeight")),max:Math.max(150,ri(this.container)-(ei(this.content).height-ri(this.$el)))}},write:function(t){var e=t.current,i=t.max;He(this.$el,"maxHeight",i),Math.round(e)!==Math.round(i)&&Dt(this.$el,"resize")},events:["resize"]}},Yn={props:["width","height"],connected:function(){Ee(this.$el,"bc-uk-responsive-width")},update:{read:function(){return!!(Tt(this.$el)&&this.width&&this.height)&&{width:oi(this.$el.parentNode),height:this.height}},write:function(t){ri(this.$el,it.contain({height:this.height,width:this.width},t).height)},events:["resize"]}},Rn={props:{duration:Number,offset:Number},data:{duration:1e3,offset:0},methods:{scrollTo:function(t){var e=this;t=t&&Ie(t)||document.body;var i=ri(document),n=ri(window),r=ei(t).top-this.offset;if(r+n>i&&(r=i-n),Dt(this.$el,"beforescroll",[this,t])){var o=Date.now(),s=window.pageYOffset,a=function(){var i,n=s+(r-s)*(i=Q((Date.now()-o)/e.duration),.5*(1-Math.cos(Math.PI*i)));pi(window,n),n!==r?requestAnimationFrame(a):Dt(e.$el,"scrolled",[e,t])};a()}}},events:{click:function(t){t.defaultPrevented||(t.preventDefault(),this.scrollTo(_t(decodeURIComponent(this.$el.hash)).substr(1)))}}};var Un={args:"cls",props:{cls:String,target:String,hidden:Boolean,offsetTop:Number,offsetLeft:Number,repeat:Boolean,delay:Number},data:function(){return{cls:!1,target:!1,hidden:!0,offsetTop:0,offsetLeft:0,repeat:!1,delay:0,inViewClass:"bc-uk-scrollspy-inview"}},computed:{elements:function(t,e){var i=t.target;return i?Se(i,e):[e]}},update:[{write:function(){this.hidden&&He(Ct(this.elements,":not(."+this.inViewClass+")"),"visibility","hidden")}},{read:function(t){var e=this;t.update&&this.elements.forEach(function(t){var i=t._ukScrollspyState;i||(i={cls:st(t,"bc-uk-scrollspy-class")||e.cls}),i.show=di(t,e.offsetTop,e.offsetLeft),t._ukScrollspyState=i})},write:function(t){var e=this;if(!t.update)return this.$emit(),t.update=!0;this.elements.forEach(function(i){var n=i._ukScrollspyState,r=n.cls;if(!n.show||n.inview||n.queued){if(!n.show&&(n.inview||n.queued)&&e.repeat){if(n.abort&&n.abort(),!n.inview)return;He(i,"visibility",e.hidden?"hidden":""),Ae(i,e.inViewClass),Oe(i,r),Dt(i,"outview"),e.$update(i),n.inview=!1}}else{var o=function(){He(i,"visibility",""),Ee(i,e.inViewClass),Oe(i,r),Dt(i,"inview"),e.$update(i),n.inview=!0,n.abort&&n.abort()};e.delay?(n.queued=!0,t.promise=(t.promise||Vt.resolve()).then(function(){return!n.inview&&new Vt(function(i){var r=setTimeout(function(){o(),i()},t.promise||1===e.elements.length?e.delay:0);n.abort=function(){clearTimeout(r),i(),n.queued=!1}})})):o()}})},events:["scroll","resize"]}]},Xn={props:{cls:String,closest:String,scroll:Boolean,overflow:Boolean,offset:Number},data:{cls:"bc-uk-active",closest:!1,scroll:!1,overflow:!0,offset:0},computed:{links:function(t,e){return Se('a[href^="#"]',e).filter(function(t){return t.hash})},elements:function(t){var e=t.closest;return xt(this.links,e||"*")},targets:function(){return Se(this.links.map(function(t){return _t(t.hash).substr(1)}).join(","))}},update:[{read:function(){this.scroll&&this.$create("scroll",this.links,{offset:this.offset||0})}},{read:function(t){var e=this,i=window.pageYOffset+this.offset+1,n=ri(document)-ri(window)+this.offset;t.active=!1,this.targets.every(function(r,o){var s=ei(r).top,a=o+1===e.targets.length;if(!e.overflow&&(0===o&&s>i||a&&s+r.offsetTop<i))return!1;if(!a&&ei(e.targets[o+1]).top<=i)return!0;if(i>=n)for(var c=e.targets.length-1;c>o;c--)if(di(e.targets[c])){r=e.targets[c];break}return!(t.active=Ie(Ct(e.links,'[href="#'+r.id+'"]')))})},write:function(t){var e=t.active;this.links.forEach(function(t){return t.blur()}),Ae(this.elements,this.cls),e&&Dt(this.$el,"active",[e,Ee(this.closest?xt(e,this.closest):e,this.cls)])},events:["scroll","resize"]}]},Kn={mixins:[Pi,Mn],props:{top:null,bottom:Boolean,offset:Number,animation:String,clsActive:String,clsInactive:String,clsFixed:String,clsBelow:String,selTarget:String,widthElement:Boolean,showOnUp:Boolean,targetOffset:Number},data:{top:0,bottom:!1,offset:0,animation:"",clsActive:"bc-uk-active",clsInactive:"",clsFixed:"bc-uk-sticky-fixed",clsBelow:"bc-uk-sticky-below",selTarget:"",widthElement:!1,showOnUp:!1,targetOffset:!1},computed:{selTarget:function(t,e){var i=t.selTarget;return i&&Ie(i,e)||e},widthElement:function(t,e){return at(t.widthElement,e)||this.placeholder},isActive:{get:function(){return Me(this.selTarget,this.clsActive)},set:function(t){t&&!this.isActive?(Ne(this.selTarget,this.clsInactive,this.clsActive),Dt(this.$el,"active")):t||Me(this.selTarget,this.clsInactive)||(Ne(this.selTarget,this.clsActive,this.clsInactive),Dt(this.$el,"inactive"))}}},connected:function(){this.placeholder=Ie("+ .uk-sticky-placeholder",this.$el)||Ie('<div class="uk-sticky-placeholder"></div>'),this.isFixed=!1,this.isActive=!1},disconnected:function(){this.isFixed&&(this.hide(),Ae(this.selTarget,this.clsInactive)),ve(this.placeholder),this.placeholder=null,this.widthElement=null},events:[{name:"load hashchange popstate",el:window,handler:function(){var t=this;if(!1!==this.targetOffset&&location.hash&&window.pageYOffset>0){var e=Ie(location.hash);e&&yi.read(function(){var i=ei(e).top,n=ei(t.$el).top,r=t.$el.offsetHeight;t.isFixed&&n+r>=i&&n<=i+e.offsetHeight&&pi(window,i-r-(z(t.targetOffset)?t.targetOffset:0)-t.offset)})}}}],update:[{read:function(t,e){var i=t.height;this.isActive&&"update"!==e&&(this.hide(),i=this.$el.offsetHeight,this.show()),i=this.isActive?i:this.$el.offsetHeight,this.topOffset=ei(this.isFixed?this.placeholder:this.$el).top,this.bottomOffset=this.topOffset+i;var n=Gn("bottom",this);return this.top=Math.max(F(Gn("top",this)),this.topOffset)-this.offset,this.bottom=n&&n-i,this.inactive=!this.matchMedia,{lastScroll:!1,height:i,margins:He(this.$el,["marginTop","marginBottom","marginLeft","marginRight"])}},write:function(t){var e=t.height,i=t.margins,n=this.placeholder;He(n,X({height:e},i)),Nt(n,document)||(me(this.$el,n),nt(n,"hidden","")),this.isActive=this.isActive},events:["resize"]},{read:function(t){var e=t.scroll;return void 0===e&&(e=0),this.width=(Tt(this.widthElement)?this.widthElement:this.$el).offsetWidth,this.scroll=window.pageYOffset,{dir:e<=this.scroll?"down":"up",scroll:this.scroll,visible:Tt(this.$el),top:mi(this.placeholder)[0]}},write:function(t,e){var i=this,n=t.initTimestamp;void 0===n&&(n=0);var r=t.dir,o=t.lastDir,s=t.lastScroll,a=t.scroll,c=t.top,h=t.visible,l=performance.now();if(t.lastScroll=a,!(a<0||a===s||!h||this.disabled||this.showOnUp&&"scroll"!==e||((l-n>300||r!==o)&&(t.initScroll=a,t.initTimestamp=l),t.lastDir=r,this.showOnUp&&Math.abs(t.initScroll-a)<=30&&Math.abs(s-a)<=10)))if(this.inactive||a<this.top||this.showOnUp&&(a<=this.top||"down"===r||"up"===r&&!this.isFixed&&a<=this.bottomOffset)){if(!this.isFixed)return void(Qe.inProgress(this.$el)&&c>a&&(Qe.cancel(this.$el),this.hide()));this.isFixed=!1,this.animation&&a>this.topOffset?(Qe.cancel(this.$el),Qe.out(this.$el,this.animation).then(function(){return i.hide()},Z)):this.hide()}else this.isFixed?this.update():this.animation?(Qe.cancel(this.$el),this.show(),Qe.in(this.$el,this.animation).catch(Z)):this.show()},events:["resize","scroll"]}],methods:{show:function(){this.isFixed=!0,this.update(),nt(this.placeholder,"hidden",null)},hide:function(){this.isActive=!1,Ae(this.$el,this.clsFixed,this.clsBelow),He(this.$el,{position:"",top:"",width:""}),nt(this.placeholder,"hidden","")},update:function(){var t=0!==this.top||this.scroll>this.top,e=Math.max(0,this.offset);this.bottom&&this.scroll>this.bottom-this.offset&&(e=this.bottom-this.scroll),He(this.$el,{position:"fixed",top:e+"px",width:this.width}),this.isActive=t,Oe(this.$el,this.clsBelow,this.scroll>this.bottomOffset),Ee(this.$el,this.clsFixed)}}};function Gn(t,e){var i=e.$props,n=e.$el,r=e[t+"Offset"],o=i[t];if(o){if(z(o))return r+F(o);if(B(o)&&o.match(/^-?\d+vh$/))return ri(window)*F(o)/100;var s=!0===o?n.parentNode:at(o,n);return s?ei(s).top+s.offsetHeight:void 0}}var Jn={mixins:[Hi],args:"connect",props:{connect:String,toggle:String,active:Number,swiping:Boolean},data:{connect:"~.bc-uk-switcher",toggle:"> * > :first-child",active:0,swiping:!0,cls:"bc-uk-active",clsContainer:"bc-uk-switcher",attrItem:"bc-uk-switcher-item",queued:!0},computed:{connects:function(t,e){return ct(t.connect,e)},toggles:function(t,e){return Se(t.toggle,e)}},events:[{name:"click",delegate:function(){return this.toggle+":not(.uk-disabled)"},handler:function(t){t.preventDefault(),this.show(V(this.$el.children).filter(function(e){return Nt(t.current,e)})[0])}},{name:"click",el:function(){return this.connects},delegate:function(){return"["+this.attrItem+"],[data-"+this.attrItem+"]"},handler:function(t){t.preventDefault(),this.show(st(t.current,this.attrItem))}},{name:"swipeRight swipeLeft",filter:function(){return this.swiping},el:function(){return this.connects},handler:function(t){var e=t.type;this.show(m(e,"Left")?"next":"previous")}}],update:function(){var t=this;this.connects.forEach(function(e){return t.updateAria(e.children)});var e=this.$el.children;this.show(Ct(e,"."+this.cls)[0]||e[this.active]||e[0])},methods:{index:function(){return!P(this.connects)&&he(Ct(this.connects[0].children,"."+this.cls)[0])},show:function(t){for(var e,i,n=this,r=this.$el.children,o=r.length,s=this.index(),a=s>=0,c="previous"===t?-1:1,h=le(t,r,s),l=0;l<o;l++,h=(h+c+o)%o)if(!wt(this.toggles[h],".uk-disabled *, .uk-disabled, [disabled]")){e=this.toggles[h],i=r[h];break}!i||s>=0&&Me(i,this.cls)||s===h||(Ae(r,this.cls),Ee(i,this.cls),nt(this.toggles,"aria-expanded",!1),nt(e,"aria-expanded",!0),this.connects.forEach(function(t){a?n.toggleElement([t.children[s],t.children[h]]):n.toggleNow(t.children[h])}))}}},Qn={mixins:[Pi],extends:Jn,props:{media:Boolean},data:{media:960,attrItem:"bc-uk-tab-item"},connected:function(){var t=Me(this.$el,"bc-uk-tab-left")?"bc-uk-tab-left":!!Me(this.$el,"bc-uk-tab-right")&&"bc-uk-tab-right";t&&this.$create("toggle",this.$el,{cls:t,mode:"media",media:this.media})}},Zn={mixins:[Mn,Hi],args:"target",props:{href:String,target:null,mode:"list"},data:{href:!1,target:!1,mode:"click",queued:!0},computed:{target:function(t,e){var i=t.href,n=t.target;return(n=ct(n||i,e)).length&&n||[e]}},connected:function(){Dt(this.target,"updatearia",[this])},events:[{name:oe+" "+se,filter:function(){return y(this.mode,"hover")},handler:function(t){Ft(t)||this.toggle("toggle"+(t.type===oe?"show":"hide"))}},{name:"click",filter:function(){return y(this.mode,"click")||ee&&y(this.mode,"hover")},handler:function(t){var e;(xt(t.target,'a[href="#"], a[href=""]')||(e=xt(t.target,"a[href]"))&&(this.cls||!Tt(this.target)||e.hash&&wt(this.target,e.hash)))&&t.preventDefault(),this.toggle()}}],update:{read:function(){return!(!y(this.mode,"media")||!this.media)&&{match:this.matchMedia}},write:function(t){var e=t.match,i=this.isToggled(this.target);(e?!i:i)&&this.toggle()},events:["resize"]},methods:{toggle:function(t){Dt(this.target,t||"toggle",[this])&&this.toggleElement(this.target)}}};zi.version="3.1.4",function(t){t.component("accordion",Li),t.component("alert",ji),t.component("cover",Yi),t.component("drop",Ui),t.component("dropdown",Xi),t.component("formCustom",Ki),t.component("gif",Gi),t.component("grid",tn),t.component("heightMatch",nn),t.component("heightViewport",sn),t.component("icon",gn),t.component("img",kn),t.component("leader",Dn),t.component("margin",Ji),t.component("modal",Ln),t.component("nav",jn),t.component("navbar",Fn),t.component("offcanvas",Wn),t.component("overflowAuto",qn),t.component("responsive",Yn),t.component("scroll",Rn),t.component("scrollspy",Un),t.component("scrollspyNav",Xn),t.component("sticky",Kn),t.component("svg",cn),t.component("switcher",Jn),t.component("tab",Qn),t.component("toggle",Zn),t.component("video",qi),t.component("close",yn),t.component("marker",vn),t.component("navbarToggleIcon",vn),t.component("overlayIcon",vn),t.component("paginationNext",vn),t.component("paginationPrevious",vn),t.component("searchIcon",wn),t.component("slidenavNext",bn),t.component("slidenavPrevious",bn),t.component("spinner",xn),t.component("totop",vn),t.use(Fi)}(zi);var tr={mixins:[Pi],props:{date:String,clsWrapper:String},data:{date:"",clsWrapper:".uk-countdown-%unit%"},computed:{date:function(t){var e=t.date;return Date.parse(e)},days:function(t,e){return Ie(t.clsWrapper.replace("%unit%","days"),e)},hours:function(t,e){return Ie(t.clsWrapper.replace("%unit%","hours"),e)},minutes:function(t,e){return Ie(t.clsWrapper.replace("%unit%","minutes"),e)},seconds:function(t,e){return Ie(t.clsWrapper.replace("%unit%","seconds"),e)},units:function(){var t=this;return["days","hours","minutes","seconds"].filter(function(e){return t[e]})}},connected:function(){this.start()},disconnected:function(){var t=this;this.stop(),this.units.forEach(function(e){return ue(t[e])})},events:[{name:"visibilitychange",el:document,handler:function(){document.hidden?this.stop():this.start()}}],update:{write:function(){var t,e,i=this,n=(t=this.date,{total:e=t-Date.now(),seconds:e/1e3%60,minutes:e/1e3/60%60,hours:e/1e3/60/60%24,days:e/1e3/60/60/24});n.total<=0&&(this.stop(),n.days=n.hours=n.minutes=n.seconds=0),this.units.forEach(function(t){var e=String(Math.floor(n[t]));e=e.length<2?"0"+e:e;var r=i[t];r.textContent!==e&&((e=e.split("")).length!==r.children.length&&de(r,e.map(function(){return"<span></span>"}).join("")),e.forEach(function(t,e){return r.children[e].textContent=t}))})}},methods:{start:function(){var t=this;this.stop(),this.date&&this.units.length&&(this.$emit(),this.timer=setInterval(function(){return t.$emit()},1e3))},stop:function(){this.timer&&(clearInterval(this.timer),this.timer=null)}}};var er,ir="bc-uk-animation-target",nr={props:{animation:Number},data:{animation:150},computed:{target:function(){return this.$el}},methods:{animate:function(t){var e=this;!function(){if(er)return;(er=fe(document.head,"<style>").sheet).insertRule("."+ir+" > * {\n margin-top: 0 !important;\n transform: none !important;\n }",0)}();var i=V(this.target.children),n=i.map(function(t){return rr(t,!0)}),r=ri(this.target),o=window.pageYOffset;t(),Ue.cancel(this.target),i.forEach(Ue.cancel),or(this.target),this.$update(this.target),yi.flush();var s=ri(this.target),a=(i=i.concat(V(this.target.children).filter(function(t){return!y(i,t)}))).map(function(t,e){return!!(t.parentNode&&e in n)&&(n[e]?Tt(t)?sr(t):{opacity:0}:{opacity:Tt(t)?1:0})});return n=a.map(function(t,r){var o=i[r].parentNode===e.target&&(n[r]||rr(i[r]));if(o)if(t){if(!("opacity"in t)){o.opacity%1?t.opacity=1:delete o.opacity}}else delete o.opacity;return o}),Ee(this.target,ir),i.forEach(function(t,e){return n[e]&&He(t,n[e])}),He(this.target,"height",r),pi(window,o),Vt.all(i.map(function(t,i){return n[i]&&a[i]?Ue.start(t,a[i],e.animation,"ease"):Vt.resolve()}).concat(Ue.start(this.target,{height:s},this.animation,"ease"))).then(function(){i.forEach(function(t,e){return He(t,{display:0===a[e].opacity?"none":"",zIndex:""})}),or(e.target),e.$update(e.target),yi.flush()},Z)}}};function rr(t,e){var i=He(t,"zIndex");return!!Tt(t)&&X({display:"",opacity:e?He(t,"opacity"):"0",pointerEvents:"none",position:"absolute",zIndex:"auto"===i?he(t):i},sr(t))}function or(t){He(t.children,{height:"",left:"",opacity:"",pointerEvents:"",position:"",top:"",width:""}),Ae(t,ir),He(t,"height","")}function sr(t){var e=t.getBoundingClientRect(),i=e.height,n=e.width,r=ni(t),o=r.top,s=r.left;return{top:o+=F(He(t,"marginTop")),left:s,height:i,width:n}}var ar={mixins:[nr],args:"target",props:{target:Boolean,selActive:Boolean},data:{target:null,selActive:!1,attrItem:"bc-uk-filter-control",cls:"bc-uk-active",animation:250},computed:{toggles:{get:function(t,e){t.attrItem;return Se("["+this.attrItem+"],[data-"+this.attrItem+"]",e)},watch:function(){this.updateState()}},target:function(t,e){return Ie(t.target,e)},children:{get:function(){return V(this.target.children)},watch:function(t,e){var i,n;n=e,(i=t).length===n.length&&i.every(function(t){return~n.indexOf(t)})||this.updateState()}}},events:[{name:"click",delegate:function(){return"["+this.attrItem+"],[data-"+this.attrItem+"]"},handler:function(t){t.preventDefault(),this.apply(t.current)}}],connected:function(){var t=this;if(this.updateState(),!1!==this.selActive){var e=Se(this.selActive,this.$el);this.toggles.forEach(function(i){return Oe(i,t.cls,y(e,i))})}},methods:{apply:function(t){this.setState(hr(t,this.attrItem,this.getState()))},getState:function(){var t=this;return this.toggles.filter(function(e){return Me(e,t.cls)}).reduce(function(e,i){return hr(i,t.attrItem,e)},{filter:{"":""},sort:[]})},setState:function(t,e){var i=this;void 0===e&&(e=!0),t=X({filter:{"":""},sort:[]},t),Dt(this.$el,"beforeFilter",[this,t]);var n=this.children;this.toggles.forEach(function(e){return Oe(e,i.cls,!!function(t,e,i){var n=i.filter;void 0===n&&(n={"":""});var r=i.sort,o=r[0],s=r[1],a=cr(t,e),c=a.filter;void 0===c&&(c="");var h=a.group;void 0===h&&(h="");var l=a.sort,u=a.order;void 0===u&&(u="asc");return H(l)?h in n&&c===n[h]||!c&&h&&!(h in n)&&!n[""]:o===l&&s===u}(e,i.attrItem,t))});var r=function(){var e=function(t){var e="";return K(t.filter,function(t){return e+=t||""}),e}(t);n.forEach(function(t){return He(t,"display",e&&!wt(t,e)?"none":"")});var r=t.sort,o=r[0],s=r[1];if(o){var a=function(t,e,i){return X([],t).sort(function(t,n){return st(t,e).localeCompare(st(n,e),void 0,{numeric:!0})*("asc"===i||-1)})}(n,o,s);R(a,n)||a.forEach(function(t){return fe(i.target,t)})}};e?this.animate(r).then(function(){return Dt(i.$el,"afterFilter",[i])}):(r(),Dt(this.$el,"afterFilter",[this]))},updateState:function(){var t=this;yi.write(function(){return t.setState(t.getState(),!1)})}}};function cr(t,e){return Ci(st(t,e),["filter"])}function hr(t,e,i){var n=cr(t,e),r=n.filter,o=n.group,s=n.sort,a=n.order;return void 0===a&&(a="asc"),(r||H(s))&&(o?r?(delete i.filter[""],i.filter[o]=r):(delete i.filter[o],(P(i.filter)||""in i.filter)&&(i.filter={"":r||""})):i.filter={"":r||""}),H(s)||(i.sort=[s,a]),i}var lr={slide:{show:function(t){return[{transform:dr(-100*t)},{transform:dr()}]},percent:function(t){return ur(t)},translate:function(t,e){return[{transform:dr(-100*e*t)},{transform:dr(100*e*(1-t))}]}}};function ur(t){return Math.abs(He(t,"transform").split(",")[4]/t.offsetWidth)||0}function dr(t,e){return void 0===t&&(t=0),void 0===e&&(e="%"),"translateX("+t+(t?e:"")+")"}function fr(t){return"scale3d("+t+", "+t+", 1)"}var pr=X({},lr,{fade:{show:function(){return[{opacity:0},{opacity:1}]},percent:function(t){return 1-He(t,"opacity")},translate:function(t){return[{opacity:1-t},{opacity:t}]}},scale:{show:function(){return[{opacity:0,transform:fr(.8)},{opacity:1,transform:fr(1)}]},percent:function(t){return 1-He(t,"opacity")},translate:function(t){return[{opacity:1-t,transform:fr(1-.2*t)},{opacity:t,transform:fr(.8+.2*t)}]}}});function mr(t,e,i){Dt(t,zt(e,!1,!1,i))}var gr={mixins:[{props:{autoplay:Boolean,autoplayInterval:Number,pauseOnHover:Boolean},data:{autoplay:!1,autoplayInterval:7e3,pauseOnHover:!0},connected:function(){this.autoplay&&this.startAutoplay()},disconnected:function(){this.stopAutoplay()},update:function(){nt(this.slides,"tabindex","-1")},events:[{name:"visibilitychange",el:document,filter:function(){return this.autoplay},handler:function(){document.hidden?this.stopAutoplay():this.startAutoplay()}},{name:"mouseenter",filter:function(){return this.autoplay&&this.pauseOnHover},handler:function(){this.isHovering=!0}},{name:"mouseleave",filter:function(){return this.autoplay&&this.pauseOnHover},handler:function(){this.isHovering=!1}}],methods:{startAutoplay:function(){var t=this;this.stopAutoplay(),this.interval=setInterval(function(){return!Nt(document.activeElement,t.$el)&&!t.isHovering&&!t.stack.length&&t.show("next")},this.autoplayInterval)},stopAutoplay:function(){this.interval&&clearInterval(this.interval)}}},{props:{draggable:Boolean},data:{draggable:!0,threshold:10},created:function(){var t=this;["start","move","end"].forEach(function(e){var i=t[e];t[e]=function(e){var n=Wt(e).x*(Qt?-1:1);t.prevPos=n!==t.pos?t.pos:t.prevPos,t.pos=n,i(e)}})},events:[{name:ie,delegate:function(){return this.selSlides},handler:function(t){var e;!this.draggable||!Ft(t)&&(e=t.target,!e.children.length&&e.childNodes.length)||t.button>0||this.length<2||this.start(t)}},{name:"touchmove",passive:!1,handler:"move",delegate:function(){return this.selSlides}},{name:"dragstart",handler:function(t){t.preventDefault()}}],methods:{start:function(){var t=this;this.drag=this.pos,this._transitioner?(this.percent=this._transitioner.percent(),this.drag+=this._transitioner.getDistance()*this.percent*this.dir,this._transitioner.cancel(),this._transitioner.translate(this.percent),this.dragging=!0,this.stack=[]):this.prevIndex=this.index;var e="touchmove"!==ne?Mt(document,ne,this.move,{passive:!1}):Z;this.unbindMove=function(){e(),t.unbindMove=null},Mt(window,"scroll",this.unbindMove),Mt(document,re,this.end,!0),He(this.list,"userSelect","none")},move:function(t){var e=this;if(this.unbindMove){var i=this.pos-this.drag;if(!(0===i||this.prevPos===this.pos||!this.dragging&&Math.abs(i)<this.threshold)){He(this.list,"pointerEvents","none"),t.cancelable&&t.preventDefault(),this.dragging=!0,this.dir=i<0?1:-1;for(var n=this.slides,r=this.prevIndex,o=Math.abs(i),s=this.getIndex(r+this.dir,r),a=this._getDistance(r,s)||n[r].offsetWidth;s!==r&&o>a;)this.drag-=a*this.dir,r=s,o-=a,s=this.getIndex(r+this.dir,r),a=this._getDistance(r,s)||n[r].offsetWidth;this.percent=o/a;var c,h=n[r],l=n[s],u=this.index!==s,d=r===s;[this.index,this.prevIndex].filter(function(t){return!y([s,r],t)}).forEach(function(t){Dt(n[t],"itemhidden",[e]),d&&(c=!0,e.prevIndex=r)}),(this.index===r&&this.prevIndex!==r||c)&&Dt(n[this.index],"itemshown",[this]),u&&(this.prevIndex=r,this.index=s,!d&&Dt(h,"beforeitemhide",[this]),Dt(l,"beforeitemshow",[this])),this._transitioner=this._translate(Math.abs(this.percent),h,!d&&l),u&&(!d&&Dt(h,"itemhide",[this]),Dt(l,"itemshow",[this]))}}},end:function(){if(Ot(window,"scroll",this.unbindMove),this.unbindMove&&this.unbindMove(),Ot(document,re,this.end,!0),this.dragging)if(this.dragging=null,this.index===this.prevIndex)this.percent=1-this.percent,this.dir*=-1,this._show(!1,this.index,!0),this._transitioner=null;else{var t=(Qt?this.dir*(Qt?1:-1):this.dir)<0==this.prevPos>this.pos;this.index=t?this.index:this.prevIndex,t&&(this.percent=1-this.percent),this.show(this.dir>0&&!t||this.dir<0&&t?"next":"previous",!0)}He(this.list,{userSelect:"",pointerEvents:""}),this.drag=this.percent=null}}},{data:{selNav:!1},computed:{nav:function(t,e){return Ie(t.selNav,e)},selNavItem:function(t){var e=t.attrItem;return"["+e+"],[data-"+e+"]"},navItems:function(t,e){return Se(this.selNavItem,e)}},update:{write:function(){var t=this;this.nav&&this.length!==this.nav.children.length&&de(this.nav,this.slides.map(function(e,i){return"<li "+t.attrItem+'="'+i+'"><a href="#"></a></li>'}).join("")),Oe(Se(this.selNavItem,this.$el).concat(this.nav),"bc-uk-hidden",!this.maxIndex),this.updateNav()},events:["resize"]},events:[{name:"click",delegate:function(){return this.selNavItem},handler:function(t){t.preventDefault(),this.show(st(t.current,this.attrItem))}},{name:"itemshow",handler:"updateNav"}],methods:{updateNav:function(){var t=this,e=this.getValidIndex();this.navItems.forEach(function(i){var n=st(i,t.attrItem);Oe(i,t.clsActive,j(n)===e),Oe(i,"bc-uk-invisible",t.finite&&("previous"===n&&0===e||"next"===n&&e>=t.maxIndex))})}}}],props:{clsActivated:Boolean,easing:String,index:Number,finite:Boolean,velocity:Number},data:function(){return{easing:"ease",finite:!1,velocity:1,index:0,stack:[],percent:0,clsActive:"bc-uk-active",clsActivated:!1,Transitioner:!1,transitionOptions:{}}},computed:{duration:function(t,e){var i=t.velocity;return vr(e.offsetWidth/i)},length:function(){return this.slides.length},list:function(t,e){return Ie(t.selList,e)},maxIndex:function(){return this.length-1},selSlides:function(t){return t.selList+" > *"},slides:function(){return V(this.list.children)}},events:{itemshown:function(){this.$update(this.list)}},methods:{show:function(t,e){var i=this;if(void 0===e&&(e=!1),!this.dragging&&this.length){var n=this.stack,r=e?0:n.length,o=function(){n.splice(r,1),n.length&&i.show(n.shift(),!0)};if(n[e?"unshift":"push"](t),!e&&n.length>1)2===n.length&&this._transitioner.forward(Math.min(this.duration,200));else{var s=this.index,a=Me(this.slides,this.clsActive)&&this.slides[s],c=this.getIndex(t,this.index),h=this.slides[c];if(a!==h){if(this.dir=function(t,e){return"next"===t?1:"previous"===t?-1:t<e?-1:1}(t,s),this.prevIndex=s,this.index=c,a&&Dt(a,"beforeitemhide",[this]),!Dt(h,"beforeitemshow",[this,a]))return this.index=this.prevIndex,void o();var l=this._show(a,h,e).then(function(){return a&&Dt(a,"itemhidden",[i]),Dt(h,"itemshown",[i]),new Vt(function(t){yi.write(function(){n.shift(),n.length?i.show(n.shift(),!0):i._transitioner=null,t()})})});return a&&Dt(a,"itemhide",[this]),Dt(h,"itemshow",[this]),l}o()}}},getIndex:function(t,e){return void 0===t&&(t=this.index),void 0===e&&(e=this.index),Q(le(t,this.slides,e,this.finite),0,this.maxIndex)},getValidIndex:function(t,e){return void 0===t&&(t=this.index),void 0===e&&(e=this.prevIndex),this.getIndex(t,e)},_show:function(t,e,i){if(this._transitioner=this._getTransitioner(t,e,this.dir,X({easing:i?e.offsetWidth<600?"cubic-bezier(0.25, 0.46, 0.45, 0.94)":"cubic-bezier(0.165, 0.84, 0.44, 1)":this.easing},this.transitionOptions)),!i&&!t)return this._transitioner.translate(1),Vt.resolve();var n=this.stack.length;return this._transitioner[n>1?"forward":"show"](n>1?Math.min(this.duration,75+75/(n-1)):this.duration,this.percent)},_getDistance:function(t,e){return new this._getTransitioner(t,t!==e&&e).getDistance()},_translate:function(t,e,i){void 0===e&&(e=this.prevIndex),void 0===i&&(i=this.index);var n=this._getTransitioner(e!==i&&e,i);return n.translate(t),n},_getTransitioner:function(t,e,i,n){return void 0===t&&(t=this.prevIndex),void 0===e&&(e=this.index),void 0===i&&(i=this.dir||1),void 0===n&&(n=this.transitionOptions),new this.Transitioner(D(t)?this.slides[t]:t,D(e)?this.slides[e]:e,i*(Qt?-1:1),n)}}};function vr(t){return.5*t+300}var br={mixins:[gr],props:{animation:String},data:{animation:"slide",clsActivated:"bc-uk-transition-active",Animations:lr,Transitioner:function(t,e,i,n){var r=n.animation,o=n.easing,s=r.percent,a=r.translate,c=r.show;void 0===c&&(c=Z);var h=c(i),l=new qt;return{dir:i,show:function(n,r,s){var a=this;void 0===r&&(r=0);var c=s?"linear":o;return n-=Math.round(n*Q(r,-1,1)),this.translate(r),mr(e,"itemin",{percent:r,duration:n,timing:c,dir:i}),mr(t,"itemout",{percent:1-r,duration:n,timing:c,dir:i}),Vt.all([Ue.start(e,h[1],n,c),Ue.start(t,h[0],n,c)]).then(function(){a.reset(),l.resolve()},Z),l.promise},stop:function(){return Ue.stop([e,t])},cancel:function(){Ue.cancel([e,t])},reset:function(){for(var i in h[0])He([e,t],i,"")},forward:function(i,n){return void 0===n&&(n=this.percent()),Ue.cancel([e,t]),this.show(i,n,!0)},translate:function(n){this.reset();var r=a(n,i);He(e,r[1]),He(t,r[0]),mr(e,"itemtranslatein",{percent:n,dir:i}),mr(t,"itemtranslateout",{percent:1-n,dir:i})},percent:function(){return s(t||e,e,i)},getDistance:function(){return t&&t.offsetWidth}}}},computed:{animation:function(t){var e=t.animation,i=t.Animations;return X(e in i?i[e]:i.slide,{name:e})},transitionOptions:function(){return{animation:this.animation}}},events:{"itemshow itemhide itemshown itemhidden":function(t){var e=t.target;this.$update(e)},itemshow:function(){D(this.prevIndex)&&yi.flush()},beforeitemshow:function(t){Ee(t.target,this.clsActive)},itemshown:function(t){Ee(t.target,this.clsActivated)},itemhidden:function(t){Ae(t.target,this.clsActive,this.clsActivated)}}},wr={mixins:[zn,Pn,Hi,br],functional:!0,props:{delayControls:Number,preload:Number,videoAutoplay:Boolean,template:String},data:function(){return{preload:1,videoAutoplay:!1,delayControls:3e3,items:[],cls:"bc-uk-open",clsPage:"bc-uk-lightbox-page",selList:".uk-lightbox-items",attrItem:"bc-uk-lightbox-item",selClose:".uk-close-large",pauseOnHover:!1,velocity:2,Animations:pr,template:'<div class="uk-lightbox uk-overflow-hidden"> <ul class="uk-lightbox-items"></ul> <div class="uk-lightbox-toolbar uk-position-top uk-text-right uk-transition-slide-top uk-transition-opaque"> <button class="uk-lightbox-toolbar-icon uk-close-large" type="button" uk-close></button> </div> <a class="uk-lightbox-button uk-position-center-left uk-position-medium uk-transition-fade" href="#" uk-slidenav-previous uk-lightbox-item="previous"></a> <a class="uk-lightbox-button uk-position-center-right uk-position-medium uk-transition-fade" href="#" uk-slidenav-next uk-lightbox-item="next"></a> <div class="uk-lightbox-toolbar uk-lightbox-caption uk-position-bottom uk-text-center uk-transition-slide-bottom uk-transition-opaque"></div> </div>'}},created:function(){var t=this;this.$mount(fe(this.container,this.template)),this.caption=Ie(".uk-lightbox-caption",this.$el),this.items.forEach(function(){return fe(t.list,"<li></li>")})},events:[{name:ne+" "+ie+" keydown",handler:"showControls"},{name:"click",self:!0,delegate:function(){return this.selSlides},handler:function(t){t.defaultPrevented||this.hide()}},{name:"shown",self:!0,handler:function(){this.showControls()}},{name:"hide",self:!0,handler:function(){this.hideControls(),Ae(this.slides,this.clsActive),Ue.stop(this.slides)}},{name:"hidden",self:!0,handler:function(){this.$destroy(!0)}},{name:"keyup",el:document,handler:function(t){if(this.isToggled(this.$el))switch(t.keyCode){case 37:this.show("previous");break;case 39:this.show("next")}}},{name:"beforeitemshow",handler:function(t){this.isToggled()||(this.draggable=!1,t.preventDefault(),this.toggleNow(this.$el,!0),this.animation=pr.scale,Ae(t.target,this.clsActive),this.stack.splice(1,0,this.index))}},{name:"itemshow",handler:function(t){var e=he(t.target),i=this.getItem(e).caption;He(this.caption,"display",i?"":"none"),de(this.caption,i);for(var n=0;n<=this.preload;n++)this.loadItem(this.getIndex(e+n)),this.loadItem(this.getIndex(e-n))}},{name:"itemshown",handler:function(){this.draggable=this.$props.draggable}},{name:"itemload",handler:function(t,e){var i,n=this,r=e.source,o=e.type,s=e.alt;if(this.setItem(e,"<span uk-spinner></span>"),r)if("image"===o||r.match(/\.(jp(e)?g|png|gif|svg|webp)($|\?)/i))Gt(r).then(function(t){return n.setItem(e,'<img width="'+t.width+'" height="'+t.height+'" src="'+r+'" alt="'+(s||"")+'">')},function(){return n.setError(e)});else if("video"===o||r.match(/\.(mp4|webm|ogv)($|\?)/i)){var a=Ie("<video controls playsinline"+(e.poster?' poster="'+e.poster+'"':"")+' uk-video="'+this.videoAutoplay+'"></video>');nt(a,"src",r),Bt(a,"error loadedmetadata",function(t){"error"===t?n.setError(e):(nt(a,{width:a.videoWidth,height:a.videoHeight}),n.setItem(e,a))})}else if("iframe"===o||r.match(/\.(html|php)($|\?)/i))this.setItem(e,'<iframe class="uk-lightbox-iframe" src="'+r+'" frameborder="0" allowfullscreen></iframe>');else if(i=r.match(/\/\/.*?youtube(-nocookie)?\.[a-z]+\/watch\?v=([^&\s]+)/)||r.match(/()youtu\.be\/(.*)/)){var c=i[2],h=function(t,r){return void 0===t&&(t=640),void 0===r&&(r=450),n.setItem(e,yr("https://www.youtube"+(i[1]||"")+".com/embed/"+c,t,r,n.videoAutoplay))};Gt("https://img.youtube.com/vi/"+c+"/maxresdefault.jpg").then(function(t){var e=t.width,i=t.height;120===e&&90===i?Gt("https://img.youtube.com/vi/"+c+"/0.jpg").then(function(t){var e=t.width,i=t.height;return h(e,i)},h):h(e,i)},h)}else(i=r.match(/(\/\/.*?)vimeo\.[a-z]+\/([0-9]+).*?/))&&Kt("https://vimeo.com/api/oembed.json?maxwidth=1920&url="+encodeURI(r),{responseType:"json",withCredentials:!1}).then(function(t){var r=t.response,o=r.height,s=r.width;return n.setItem(e,yr("https://player.vimeo.com/video/"+i[2],s,o,n.videoAutoplay))},function(){return n.setError(e)})}}],methods:{loadItem:function(t){void 0===t&&(t=this.index);var e=this.getItem(t);e.content||Dt(this.$el,"itemload",[e])},getItem:function(t){return void 0===t&&(t=this.index),this.items[t]||{}},setItem:function(t,e){X(t,{content:e});var i=de(this.slides[this.items.indexOf(t)],e);Dt(this.$el,"itemloaded",[this,i]),this.$update(i)},setError:function(t){this.setItem(t,'<span uk-icon="icon: bolt; ratio: 2"></span>')},showControls:function(){clearTimeout(this.controlsTimer),this.controlsTimer=setTimeout(this.hideControls,this.delayControls),Ee(this.$el,"bc-uk-active","bc-uk-transition-active")},hideControls:function(){Ae(this.$el,"bc-uk-active","bc-uk-transition-active")}}};function yr(t,e,i,n){return'<iframe src="'+t+'" width="'+e+'" height="'+i+'" style="max-width: 100%; box-sizing: border-box;" frameborder="0" allowfullscreen uk-video="autoplay: '+n+'" uk-responsive></iframe>'}var xr,kr={install:function(t,e){t.lightboxPanel||t.component("lightboxPanel",wr);X(e.props,t.component("lightboxPanel").options.props)},props:{toggle:String},data:{toggle:"a"},computed:{toggles:{get:function(t,e){return Se(t.toggle,e)},watch:function(){this.hide()}},items:function(){return J(this.toggles.map($r),"source")}},disconnected:function(){this.hide()},events:[{name:"click",delegate:function(){return this.toggle+":not(.uk-disabled)"},handler:function(t){t.preventDefault();var e=st(t.current,"href");this.show(k(this.items,function(t){return t.source===e}))}}],methods:{show:function(t){var e=this;return this.panel=this.panel||this.$create("lightboxPanel",X({},this.$props,{items:this.items})),Mt(this.panel.$el,"hidden",function(){return e.panel=!1}),this.panel.show(t)},hide:function(){return this.panel&&this.panel.hide()}}};function $r(t){return["href","caption","type","poster","alt"].reduce(function(e,i){return e["href"===i?"source":i]=st(t,i),e},{})}var _r={},Ir={functional:!0,args:["message","status"],data:{message:"",status:"",timeout:5e3,group:null,pos:"top-center",clsClose:"bc-uk-notification-close",clsMsg:"bc-uk-notification-message"},install:function(t){t.notification.closeAll=function(e,i){_e(document.body,function(n){var r=t.getComponent(n,"notification");!r||e&&e!==r.group||r.close(i)})}},computed:{marginProp:function(t){return"margin"+(f(t.pos,"top")?"Top":"Bottom")},startProps:function(){var t;return(t={opacity:0})[this.marginProp]=-this.$el.offsetHeight,t}},created:function(){_r[this.pos]||(_r[this.pos]=fe(this.$container,'<div class="uk-notification uk-notification-'+this.pos+'"></div>'));var t=He(_r[this.pos],"display","block");this.$mount(fe(t,'<div class="'+this.clsMsg+(this.status?" "+this.clsMsg+"-"+this.status:"")+'"> <a href="#" class="'+this.clsClose+'" data-uk-close></a> <div>'+this.message+"</div> </div>"))},connected:function(){var t,e=this,i=F(He(this.$el,this.marginProp));Ue.start(He(this.$el,this.startProps),(t={opacity:1},t[this.marginProp]=i,t)).then(function(){e.timeout&&(e.timer=setTimeout(e.close,e.timeout))})},events:(xr={click:function(t){xt(t.target,'a[href="#"],a[href=""]')&&t.preventDefault(),this.close()}},xr[oe]=function(){this.timer&&clearTimeout(this.timer)},xr[se]=function(){this.timeout&&(this.timer=setTimeout(this.close,this.timeout))},xr),methods:{close:function(t){var e=this,i=function(){Dt(e.$el,"close",[e]),ve(e.$el),_r[e.pos].children.length||He(_r[e.pos],"display","none")};this.timer&&clearTimeout(this.timer),t?i():Ue.start(this.$el,this.startProps).then(i)}}};var Sr=["x","y","bgx","bgy","rotate","scale","color","backgroundColor","borderColor","opacity","blur","hue","grayscale","invert","saturate","sepia","fopacity","stroke"],Tr={mixins:[Mn],props:Sr.reduce(function(t,e){return t[e]="list",t},{}),data:Sr.reduce(function(t,e){return t[e]=void 0,t},{}),computed:{props:function(t,e){var i=this;return Sr.reduce(function(n,r){if(H(t[r]))return n;var o,s,a,c=r.match(/color/i),h=c||"opacity"===r,l=t[r].slice(0);h&&He(e,r,""),l.length<2&&l.unshift(("scale"===r?1:h?He(e,r):0)||0);var u=function(t){return t.reduce(function(t,e){return B(e)&&e.replace(/-|\d/g,"").trim()||t},"")}(l);if(c){var d=e.style.color;l=l.map(function(t){return He(He(e,"color",t),"color").split(/[(),]/g).slice(1,-1).concat(1).slice(0,4).map(F)}),e.style.color=d}else if(f(r,"bg")){var p="bgy"===r?"height":"width";if(l=l.map(function(t){return gi(t,p,i.$el)}),He(e,"background-position-"+r[2],""),s=He(e,"backgroundPosition").split(" ")["x"===r[2]?0:1],i.covers){var m=Math.min.apply(Math,l),g=Math.max.apply(Math,l),v=l.indexOf(m)<l.indexOf(g);a=g-m,l=l.map(function(t){return t-(v?m:g)}),o=(v?-a:0)+"px"}else o=s}else l=l.map(F);if("stroke"===r){if(!l.some(function(t){return t}))return n;var b=dn(i.$el);He(e,"strokeDasharray",b),"%"===u&&(l=l.map(function(t){return t*b/100})),l=l.reverse(),r="strokeDashoffset"}return n[r]={steps:l,unit:u,pos:o,bgPos:s,diff:a},n},{})},bgProps:function(){var t=this;return["bgx","bgy"].filter(function(e){return e in t.props})},covers:function(t,e){return function(t){var e=t.style.backgroundSize,i="cover"===He(He(t,"backgroundSize",""),"backgroundSize");return t.style.backgroundSize=e,i}(e)}},disconnected:function(){delete this._image},update:{read:function(t){var e=this;if(t.active=this.matchMedia,t.active){if(!t.image&&this.covers&&this.bgProps.length){var i=He(this.$el,"backgroundImage").replace(/^none|url\(["']?(.+?)["']?\)$/,"$1");if(i){var n=new Image;n.src=i,t.image=n,n.naturalWidth||(n.onload=function(){return e.$emit()})}}var r=t.image;if(r&&r.naturalWidth){var o={width:this.$el.offsetWidth,height:this.$el.offsetHeight},s={width:r.naturalWidth,height:r.naturalHeight},a=it.cover(s,o);this.bgProps.forEach(function(t){var i=e.props[t],n=i.diff,r=i.bgPos,c=i.steps,h="bgy"===t?"height":"width",l=a[h]-o[h];if(l<n)o[h]=a[h]+n-l;else if(l>n){var u=o[h]/gi(r,h,e.$el);u&&(e.props[t].steps=c.map(function(t){return t-(l-n)/u}))}a=it.cover(s,o)}),t.dim=a}}},write:function(t){var e=t.dim;t.active?e&&He(this.$el,{backgroundSize:e.width+"px "+e.height+"px",backgroundRepeat:"no-repeat"}):He(this.$el,{backgroundSize:"",backgroundRepeat:""})},events:["resize"]},methods:{reset:function(){var t=this;K(this.getCss(0),function(e,i){return He(t.$el,i,"")})},getCss:function(t){var e=this.props;return Object.keys(e).reduce(function(i,n){var r=e[n],o=r.steps,s=r.unit,a=r.pos,c=function(t,e,i){void 0===i&&(i=2);var n=Er(t,e),r=n[0],o=n[1],s=n[2];return(D(r)?r+Math.abs(r-o)*s*(r<o?1:-1):+o).toFixed(i)}(o,t);switch(n){case"x":case"y":s=s||"px",i.transform+=" translate"+l(n)+"("+F(c).toFixed("px"===s?0:2)+s+")";break;case"rotate":s=s||"deg",i.transform+=" rotate("+(c+s)+")";break;case"scale":i.transform+=" scale("+c+")";break;case"bgy":case"bgx":i["background-position-"+n[2]]="calc("+a+" + "+c+"px)";break;case"color":case"backgroundColor":case"borderColor":var h=Er(o,t),u=h[0],d=h[1],f=h[2];i[n]="rgba("+u.map(function(t,e){return t+=f*(d[e]-t),3===e?F(t):parseInt(t,10)}).join(",")+")";break;case"blur":s=s||"px",i.filter+=" blur("+(c+s)+")";break;case"hue":s=s||"deg",i.filter+=" hue-rotate("+(c+s)+")";break;case"fopacity":s=s||"%",i.filter+=" opacity("+(c+s)+")";break;case"grayscale":case"invert":case"saturate":case"sepia":s=s||"%",i.filter+=" "+n+"("+(c+s)+")";break;default:i[n]=c}return i},{transform:"",filter:""})}}};function Er(t,e){var i=t.length-1,n=Math.min(Math.floor(i*e),i-1),r=t.slice(n,n+2);return r.push(1===e?1:e%(1/i)*i),r}var Ar={mixins:[Tr],props:{target:String,viewport:Number,easing:Number},data:{target:!1,viewport:1,easing:1},computed:{target:function(t,e){var i=t.target;return function t(e){return e?"offsetTop"in e?e:t(e.parentNode):document.body}(i&&at(i,e)||e)}},update:{read:function(t,e){var i=t.percent,n=t.active;if("scroll"!==e&&(i=!1),n){var r=i;return{percent:i=function(t,e){return Q(t*(1-(e-e*t)))}(fi(this.target)/(this.viewport||1),this.easing),style:r!==i&&this.getCss(i)}}},write:function(t){var e=t.style;t.active?e&&He(this.$el,e):this.reset()},events:["scroll","resize"]}};var Cr={update:{write:function(){if(!this.stack.length&&!this.dragging){var t=this.getValidIndex();delete this.index,Ae(this.slides,this.clsActive,this.clsActivated),this.show(t)}},events:["resize"]}};function Nr(t,e,i){var n=Br(t,e);return i?n-function(t,e){return Dr(e).width/2-Dr(t).width/2}(t,e):Math.min(n,Mr(e))}function Mr(t){return Math.max(0,Or(t)-Dr(t).width)}function Or(t){return Pr(t).reduce(function(t,e){return Dr(e).width+t},0)}function Br(t,e){return(ni(t).left+(Qt?Dr(t).width-Dr(e).width:0))*(Qt?-1:1)}function Dr(t){return t.getBoundingClientRect()}function zr(t,e,i){Dt(t,zt(e,!1,!1,i))}function Pr(t){return V(t.children)}var Hr={mixins:[Pi,gr,Cr],props:{center:Boolean,sets:Boolean},data:{center:!1,sets:!1,attrItem:"bc-uk-slider-item",selList:".uk-slider-items",selNav:".uk-slider-nav",clsContainer:"bc-uk-slider-container",Transitioner:function(t,e,i,n){var r=n.center,o=n.easing,s=n.list,a=new qt,c=t?Nr(t,s,r):Nr(e,s,r)+Dr(e).width*i,h=e?Nr(e,s,r):c+Dr(t).width*i*(Qt?-1:1);return{dir:i,show:function(e,n,r){void 0===n&&(n=0);var c=r?"linear":o;return e-=Math.round(e*Q(n,-1,1)),this.translate(n),t&&this.updateTranslates(),n=t?n:Q(n,0,1),zr(this.getItemIn(),"itemin",{percent:n,duration:e,timing:c,dir:i}),t&&zr(this.getItemIn(!0),"itemout",{percent:1-n,duration:e,timing:c,dir:i}),Ue.start(s,{transform:dr(-h*(Qt?-1:1),"px")},e,c).then(a.resolve,Z),a.promise},stop:function(){return Ue.stop(s)},cancel:function(){Ue.cancel(s)},reset:function(){He(s,"transform","")},forward:function(t,e){return void 0===e&&(e=this.percent()),Ue.cancel(s),this.show(t,e,!0)},translate:function(e){var n=this.getDistance()*i*(Qt?-1:1);He(s,"transform",dr(Q(n-n*e-h,-Or(s),Dr(s).width)*(Qt?-1:1),"px")),this.updateTranslates(),t&&(e=Q(e,-1,1),zr(this.getItemIn(),"itemtranslatein",{percent:e,dir:i}),zr(this.getItemIn(!0),"itemtranslateout",{percent:1-e,dir:i}))},percent:function(){return Math.abs((He(s,"transform").split(",")[4]*(Qt?-1:1)+c)/(h-c))},getDistance:function(){return Math.abs(h-c)},getItemIn:function(e){void 0===e&&(e=!1);var n=this.getActives(),r=G(Pr(s),"offsetLeft"),o=he(r,n[i*(e?-1:1)>0?n.length-1:0]);return~o&&r[o+(t&&!e?i:0)]},getActives:function(){var i=Nr(t||e,s,r);return G(Pr(s).filter(function(t){var e=Br(t,s);return e>=i&&e+Dr(t).width<=Dr(s).width+i}),"offsetLeft")},updateTranslates:function(){var t=this.getActives();Pr(s).forEach(function(i){var n=y(t,i);zr(i,"itemtranslate"+(n?"in":"out"),{percent:n?1:0,dir:i.offsetLeft<=e.offsetLeft?1:-1})})}}}},computed:{avgWidth:function(){return Or(this.list)/this.length},finite:function(t){return t.finite||Or(this.list)<Dr(this.list).width+Pr(this.list).reduce(function(t,e){return Math.max(t,Dr(e).width)},0)+this.center},maxIndex:function(){if(!this.finite||this.center&&!this.sets)return this.length-1;if(this.center)return this.sets[this.sets.length-1];He(this.slides,"order","");for(var t=Mr(this.list),e=this.length;e--;)if(Br(this.list.children[e],this.list)<t)return Math.min(e+1,this.length-1);return 0},sets:function(t){var e=this,i=t.sets,n=Dr(this.list).width/(this.center?2:1),r=0,o=n,s=0;return!P(i=i&&this.slides.reduce(function(t,i,a){var c=Dr(i).width;if(s+c>r&&(!e.center&&a>e.maxIndex&&(a=e.maxIndex),!y(t,a))){var h=e.slides[a+1];e.center&&h&&c<o-Dr(h).width/2?o-=c:(o=n,t.push(a),r=s+n+(e.center?c/2:0))}return s+=c,t},[]))&&i},transitionOptions:function(){return{center:this.center,list:this.list}}},connected:function(){Oe(this.$el,this.clsContainer,!Ie("."+this.clsContainer,this.$el))},update:{write:function(){var t=this;Se("["+this.attrItem+"],[data-"+this.attrItem+"]",this.$el).forEach(function(e){var i=st(e,t.attrItem);t.maxIndex&&Oe(e,"bc-uk-hidden",z(i)&&(t.sets&&!y(t.sets,F(i))||i>t.maxIndex))})},events:["resize"]},events:{beforeitemshow:function(t){!this.dragging&&this.sets&&this.stack.length<2&&!y(this.sets,this.index)&&(this.index=this.getValidIndex());var e=Math.abs(this.index-this.prevIndex+(this.dir>0&&this.index<this.prevIndex||this.dir<0&&this.index>this.prevIndex?(this.maxIndex+1)*this.dir:0));if(!this.dragging&&e>1){for(var i=0;i<e;i++)this.stack.splice(1,0,this.dir>0?"next":"previous");t.preventDefault()}else this.duration=vr(this.avgWidth/this.velocity)*(Dr(this.dir<0||!this.slides[this.prevIndex]?this.slides[this.index]:this.slides[this.prevIndex]).width/this.avgWidth),this.reorder()},itemshow:function(){!H(this.prevIndex)&&Ee(this._getTransitioner().getItemIn(),this.clsActive)},itemshown:function(){var t=this,e=this._getTransitioner(this.index).getActives();this.slides.forEach(function(i){return Oe(i,t.clsActive,y(e,i))}),(!this.sets||y(this.sets,F(this.index)))&&this.slides.forEach(function(i){return Oe(i,t.clsActivated,y(e,i))})}},methods:{reorder:function(){var t=this;if(He(this.slides,"order",""),!this.finite){var e=this.dir>0&&this.slides[this.prevIndex]?this.prevIndex:this.index;if(this.slides.forEach(function(i,n){return He(i,"order",t.dir>0&&n<e?1:t.dir<0&&n>=t.index?-1:"")}),this.center)for(var i=this.slides[e],n=Dr(this.list).width/2-Dr(i).width/2,r=0;n>0;){var o=this.getIndex(--r+e,e),s=this.slides[o];He(s,"order",o>e?-2:-1),n-=Dr(s).width}}},getValidIndex:function(t,e){if(void 0===t&&(t=this.index),void 0===e&&(e=this.prevIndex),t=this.getIndex(t,e),!this.sets)return t;var i;do{if(y(this.sets,t))return t;i=t,t=this.getIndex(t+this.dir,e)}while(t!==i);return t}}},Lr={mixins:[Tr],data:{selItem:"!li"},computed:{item:function(t,e){return at(t.selItem,e)}},events:[{name:"itemshown",self:!0,el:function(){return this.item},handler:function(){He(this.$el,this.getCss(.5))}},{name:"itemin itemout",self:!0,el:function(){return this.item},handler:function(t){var e=t.type,i=t.detail,n=i.percent,r=i.duration,o=i.timing,s=i.dir;Ue.cancel(this.$el),He(this.$el,this.getCss(Fr(e,s,n))),Ue.start(this.$el,this.getCss(jr(e)?.5:s>0?1:0),r,o).catch(Z)}},{name:"transitioncanceled transitionend",self:!0,el:function(){return this.item},handler:function(){Ue.cancel(this.$el)}},{name:"itemtranslatein itemtranslateout",self:!0,el:function(){return this.item},handler:function(t){var e=t.type,i=t.detail,n=i.percent,r=i.dir;Ue.cancel(this.$el),He(this.$el,this.getCss(Fr(e,r,n)))}}]};function jr(t){return m(t,"in")}function Fr(t,e,i){return i/=2,jr(t)?e<0?1-i:i:e<0?i:1-i}var Wr,Vr=X({},lr,{fade:{show:function(){return[{opacity:0,zIndex:0},{zIndex:-1}]},percent:function(t){return 1-He(t,"opacity")},translate:function(t){return[{opacity:1-t,zIndex:0},{zIndex:-1}]}},scale:{show:function(){return[{opacity:0,transform:fr(1.5),zIndex:0},{zIndex:-1}]},percent:function(t){return 1-He(t,"opacity")},translate:function(t){return[{opacity:1-t,transform:fr(1+.5*t),zIndex:0},{zIndex:-1}]}},pull:{show:function(t){return t<0?[{transform:dr(30),zIndex:-1},{transform:dr(),zIndex:0}]:[{transform:dr(-100),zIndex:0},{transform:dr(),zIndex:-1}]},percent:function(t,e,i){return i<0?1-ur(e):ur(t)},translate:function(t,e){return e<0?[{transform:dr(30*t),zIndex:-1},{transform:dr(-100*(1-t)),zIndex:0}]:[{transform:dr(100*-t),zIndex:0},{transform:dr(30*(1-t)),zIndex:-1}]}},push:{show:function(t){return t<0?[{transform:dr(100),zIndex:0},{transform:dr(),zIndex:-1}]:[{transform:dr(-30),zIndex:-1},{transform:dr(),zIndex:0}]},percent:function(t,e,i){return i>0?1-ur(e):ur(t)},translate:function(t,e){return e<0?[{transform:dr(100*t),zIndex:0},{transform:dr(-30*(1-t)),zIndex:-1}]:[{transform:dr(-30*t),zIndex:-1},{transform:dr(100*(1-t)),zIndex:0}]}}}),qr={mixins:[Pi,br,Cr],props:{ratio:String,minHeight:Number,maxHeight:Number},data:{ratio:"16:9",minHeight:!1,maxHeight:!1,selList:".uk-slideshow-items",attrItem:"bc-uk-slideshow-item",selNav:".uk-slideshow-nav",Animations:Vr},update:{read:function(){var t=this.ratio.split(":").map(Number),e=t[0],i=t[1];return i=i*this.list.offsetWidth/e||0,this.minHeight&&(i=Math.max(this.minHeight,i)),this.maxHeight&&(i=Math.min(this.maxHeight,i)),{height:i-ai(this.list,"content-box")}},write:function(t){var e=t.height;He(this.list,"minHeight",e)},events:["resize"]}},Yr={mixins:[Pi,nr],props:{group:String,threshold:Number,clsItem:String,clsPlaceholder:String,clsDrag:String,clsDragState:String,clsBase:String,clsNoDrag:String,clsEmpty:String,clsCustom:String,handle:String},data:{group:!1,threshold:5,clsItem:"bc-uk-sortable-item",clsPlaceholder:"bc-uk-sortable-placeholder",clsDrag:"bc-uk-sortable-drag",clsDragState:"bc-uk-drag",clsBase:"bc-uk-sortable",clsNoDrag:"bc-uk-sortable-nodrag",clsEmpty:"bc-uk-sortable-empty",clsCustom:"",handle:!1},created:function(){var t=this;["init","start","move","end"].forEach(function(e){var i=t[e];t[e]=function(e){t.scrollY=window.pageYOffset;var n=Wt(e,"page"),r=n.x,o=n.y;t.pos={x:r,y:o},i(e)}})},events:{name:ie,passive:!1,handler:"init"},update:{write:function(){if(this.clsEmpty&&Oe(this.$el,this.clsEmpty,P(this.$el.children)),He(this.handle?Se(this.handle,this.$el):this.$el.children,{touchAction:"none",userSelect:"none"}),this.drag){ei(this.drag,{top:this.pos.y+this.origin.top,left:this.pos.x+this.origin.left});var t,e=ei(this.drag),i=e.top,n=i+e.height;i>0&&i<this.scrollY?t=this.scrollY-5:n<ri(document)&&n>ri(window)+this.scrollY&&(t=this.scrollY+5),t&&setTimeout(function(){return pi(window,t)},5)}}},methods:{init:function(t){var e=t.target,i=t.button,n=t.defaultPrevented,r=V(this.$el.children).filter(function(t){return Nt(e,t)})[0];!r||n||i>0||At(e)||Nt(e,"."+this.clsNoDrag)||this.handle&&!Nt(e,this.handle)||(t.preventDefault(),this.touched=[this],this.placeholder=r,this.origin=X({target:e,index:he(r)},this.pos),Mt(document,ne,this.move),Mt(document,re,this.end),Mt(window,"scroll",this.scroll),this.threshold||this.start(t))},start:function(t){this.drag=fe(this.$container,this.placeholder.outerHTML.replace(/^<li/i,"<div").replace(/li>$/i,"div>")),He(this.drag,X({boxSizing:"border-box",width:this.placeholder.offsetWidth,height:this.placeholder.offsetHeight},He(this.placeholder,["paddingLeft","paddingRight","paddingTop","paddingBottom"]))),nt(this.drag,"bc-uk-no-boot",""),Ee(this.drag,this.clsDrag,this.clsCustom),ri(this.drag.firstElementChild,ri(this.placeholder.firstElementChild));var e=ei(this.placeholder),i=e.left,n=e.top;X(this.origin,{left:i-this.pos.x,top:n-this.pos.y}),He(this.origin.target,"pointerEvents","none"),Ee(this.placeholder,this.clsPlaceholder),Ee(this.$el.children,this.clsItem),Ee(document.documentElement,this.clsDragState),Dt(this.$el,"start",[this,this.placeholder]),this.move(t)},move:function(t){if(this.drag){this.$emit();var e="mousemove"===t.type?t.target:document.elementFromPoint(this.pos.x-window.pageXOffset,this.pos.y-window.pageYOffset),i=this.getSortable(e),n=this.getSortable(this.placeholder),r=i!==n;if(i&&!Nt(e,this.placeholder)&&(!r||i.group&&i.group===n.group)){if(e=i.$el===e.parentNode&&e||V(i.$el.children).filter(function(t){return Nt(e,t)})[0],r)n.remove(this.placeholder);else if(!e)return;i.insert(this.placeholder,e),y(this.touched,i)||this.touched.push(i)}}else(Math.abs(this.pos.x-this.origin.x)>this.threshold||Math.abs(this.pos.y-this.origin.y)>this.threshold)&&this.start(t)},end:function(t){if(Ot(document,ne,this.move),Ot(document,re,this.end),Ot(window,"scroll",this.scroll),He(this.origin.target,"pointerEvents",""),this.drag){var e=this.getSortable(this.placeholder);this===e?this.origin.index!==he(this.placeholder)&&Dt(this.$el,"moved",[this,this.placeholder]):(Dt(e.$el,"added",[e,this.placeholder]),Dt(this.$el,"removed",[this,this.placeholder])),Dt(this.$el,"stop",[this,this.placeholder]),ve(this.drag),this.drag=null;var i=this.touched.map(function(t){return t.clsPlaceholder+" "+t.clsItem}).join(" ");this.touched.forEach(function(t){return Ae(t.$el.children,i)}),Ae(document.documentElement,this.clsDragState)}else"touchend"===t.type&&t.target.click()},scroll:function(){var t=window.pageYOffset;t!==this.scrollY&&(this.pos.y+=t-this.scrollY,this.scrollY=t,this.$emit())},insert:function(t,e){var i=this;Ee(this.$el.children,this.clsItem);var n=function(){e?!Nt(t,i.$el)||function(t,e){return t.parentNode===e.parentNode&&he(t)>he(e)}(t,e)?pe(e,t):me(e,t):fe(i.$el,t)};this.animation?this.animate(n):n()},remove:function(t){Nt(t,this.$el)&&(He(this.handle?Se(this.handle,t):t,{touchAction:"",userSelect:""}),this.animation?this.animate(function(){return ve(t)}):ve(t))},getSortable:function(t){return t&&(this.$getComponent(t,"sortable")||this.getSortable(t.parentNode))}}};var Rr=[],Ur={mixins:[zn,Hi,Ri],args:"title",props:{delay:Number,title:String},data:{pos:"top",title:"",delay:0,animation:["bc-uk-animation-scale-up"],duration:100,cls:"bc-uk-active",clsPos:"bc-uk-tooltip"},beforeConnect:function(){this._hasTitle=rt(this.$el,"title"),nt(this.$el,{title:"","aria-expanded":!1})},disconnected:function(){this.hide(),nt(this.$el,{title:this._hasTitle?this.title:null,"aria-expanded":null})},methods:{show:function(){var t=this;this.isActive()||(Rr.forEach(function(t){return t.hide()}),Rr.push(this),this._unbind=Mt(document,re,function(e){return!Nt(e.target,t.$el)&&t.hide()}),clearTimeout(this.showTimer),this.showTimer=setTimeout(function(){t._show(),t.hideTimer=setInterval(function(){Tt(t.$el)||t.hide()},150)},this.delay))},hide:function(){!this.isActive()||wt(this.$el,"input")&&this.$el===document.activeElement||(Rr.splice(Rr.indexOf(this),1),clearTimeout(this.showTimer),clearInterval(this.hideTimer),nt(this.$el,"aria-expanded",!1),this.toggleElement(this.tooltip,!1),this.tooltip&&ve(this.tooltip),this.tooltip=!1,this._unbind())},_show:function(){this.tooltip=fe(this.container,'<div class="'+this.clsPos+'" aria-expanded="true" aria-hidden> <div class="'+this.clsPos+'-inner">'+this.title+"</div> </div>"),this.positionAt(this.tooltip,this.$el),this.origin="y"===this.getAxis()?ui(this.dir)+"-"+this.align:this.align+"-"+ui(this.dir),this.toggleElement(this.tooltip,!0)},isActive:function(){return y(Rr,this)}},events:(Wr={focus:"show",blur:"hide"},Wr[oe+" "+se]=function(t){Ft(t)||(t.type===oe?this.show():this.hide())},Wr[ie]=function(t){Ft(t)&&(this.isActive()?this.hide():this.show())},Wr)},Xr={props:{allow:String,clsDragover:String,concurrent:Number,maxSize:Number,method:String,mime:String,msgInvalidMime:String,msgInvalidName:String,msgInvalidSize:String,multiple:Boolean,name:String,params:Object,type:String,url:String},data:{allow:!1,clsDragover:"bc-uk-dragover",concurrent:1,maxSize:0,method:"POST",mime:!1,msgInvalidMime:"Invalid File Type: %s",msgInvalidName:"Invalid File Name: %s",msgInvalidSize:"Invalid File Size: %s Kilobytes Max",multiple:!1,name:"files[]",params:{},type:"",url:"",abort:Z,beforeAll:Z,beforeSend:Z,complete:Z,completeAll:Z,error:Z,fail:Z,load:Z,loadEnd:Z,loadStart:Z,progress:Z},events:{change:function(t){wt(t.target,'input[type="file"]')&&(t.preventDefault(),t.target.files&&this.upload(t.target.files),t.target.value="")},drop:function(t){Gr(t);var e=t.dataTransfer;e&&e.files&&(Ae(this.$el,this.clsDragover),this.upload(e.files))},dragenter:function(t){Gr(t)},dragover:function(t){Gr(t),Ee(this.$el,this.clsDragover)},dragleave:function(t){Gr(t),Ae(this.$el,this.clsDragover)}},methods:{upload:function(t){var e=this;if(t.length){Dt(this.$el,"upload",[t]);for(var i=0;i<t.length;i++){if(this.maxSize&&1e3*this.maxSize<t[i].size)return void this.fail(this.msgInvalidSize.replace("%s",this.maxSize));if(this.allow&&!Kr(this.allow,t[i].name))return void this.fail(this.msgInvalidName.replace("%s",this.allow));if(this.mime&&!Kr(this.mime,t[i].type))return void this.fail(this.msgInvalidMime.replace("%s",this.mime))}this.multiple||(t=[t[0]]),this.beforeAll(this,t);var n=function(t,e){for(var i=[],n=0;n<t.length;n+=e){for(var r=[],o=0;o<e;o++)r.push(t[n+o]);i.push(r)}return i}(t,this.concurrent),r=function(t){var i=new FormData;for(var o in t.forEach(function(t){return i.append(e.name,t)}),e.params)i.append(o,e.params[o]);Kt(e.url,{data:i,method:e.method,responseType:e.type,beforeSend:function(t){var i=t.xhr;i.upload&&Mt(i.upload,"progress",e.progress),["loadStart","load","loadEnd","abort"].forEach(function(t){return Mt(i,t.toLowerCase(),e[t])}),e.beforeSend(t)}}).then(function(t){e.complete(t),n.length?r(n.shift()):e.completeAll(t)},function(t){return e.error(t)})};r(n.shift())}}}};function Kr(t,e){return e.match(new RegExp("^"+t.replace(/\//g,"\\/").replace(/\*\*/g,"(\\/[^\\/]+)*").replace(/\*/g,"[^\\/]+").replace(/((?!\\))\?/g,"$1.")+"$","i"))}function Gr(t){t.preventDefault(),t.stopPropagation()}return zi.component("countdown",tr),zi.component("filter",ar),zi.component("lightbox",kr),zi.component("lightboxPanel",wr),zi.component("notification",Ir),zi.component("parallax",Ar),zi.component("slider",Hr),zi.component("sliderParallax",Lr),zi.component("slideshow",qr),zi.component("slideshowParallax",Lr),zi.component("sortable",Yr),zi.component("tooltip",Ur),zi.component("upload",Xr),function(t){var e=t.connect,i=t.disconnect;function n(){o(document.body,e),yi.flush(),new MutationObserver(function(t){return t.forEach(r)}).observe(document,{childList:!0,subtree:!0,characterData:!0,attributes:!0}),t._initialized=!0}function r(n){var r=n.target;("attributes"!==n.type?function(t){for(var n=t.addedNodes,r=t.removedNodes,s=0;s<n.length;s++)o(n[s],e);for(var a=0;a<r.length;a++)o(r[a],i);return!0}(n):function(e){var i=e.target,n=e.attributeName;if("href"===n)return!0;var r=Di(n);if(r&&r in t){if(rt(i,n))return t[r](i),!0;var o=t.getComponent(i,r);return o?(o.$destroy(),!0):void 0}}(n))&&t.update(r)}function o(t,e){if(1===t.nodeType&&!rt(t,"bc-uk-no-boot"))for(e(t),t=t.firstElementChild;t;){var i=t.nextElementSibling;o(t,e),t=i}}"MutationObserver"in window&&(document.body?n():new MutationObserver(function(){document.body&&(this.disconnect(),n())}).observe(document,{childList:!0,subtree:!0}))}(zi),zi}),function(t){function e(t){var e=t.closest(".bc-mnc__cart-details--single-item").find(".bc-mnc__cart-details--single-item__cart-info"),i=parseInt(t.closest(".bc-mnc__cart-details").attr("data-option-id"));console.log("design id is: ",i);var n=t.closest(".bc-mnc__cart-details--single-item");return{product_id:parseInt(e.attr("data-product-id")),variation_id:parseInt(e.attr("data-variation-id")),quantity:parseInt(e.attr("data-product-quantity")),cart_key:e.attr("data-key"),cart_design_id:i,product_container:n}}function i(t){var e=parseInt(t.closest(".bc-mnc__cart-details--single-item__product-quantity").find(".bc-mnc__cart-details--single-item__product-quantity--count").text());return console.log("current amount is: ",e),e}function n(t,e){t<0||e.closest(".bc-mnc__cart-details--single-item__product-quantity").find(".bc-mnc__cart-details--single-item__product-quantity--count").text(t)}function r(e,i,n,r,o){o.addClass("bc-loading"),t.ajax({type:"POST",dataType:"json",url:wc_add_to_cart_params.ajax_url,data:{action:"bc_menu_cart_product_change_amount",product_id:n,cart_item_key:i,new_amount:e,cart_design_id:r},success:function(i){e<=0&&o.fadeOut(),_.each(i.fragments,function(e,i){t(i).replaceWith(e)})}})}t(function(){t(document).on("add_to_cart",function(t){console.log("frags are ",t)})}),t(document).on("mouseover",".bc-mnc__cart-link--show-details-on-hover",function(e){t(this).siblings(".bc-mnc__cart-details").first().addClass("cart-details-show")}),t(function(){var e=t("[data-mobile-relative-element]");console.log("menu count: ",e.length),_.each(e,function(e){console.log("we are moving one icon");var i=t(e).attr("data-mobile-position");console.log("element selector is: ",t(e).attr("data-mobile-relative-element"));var n=t(t(e).attr("data-mobile-relative-element")),r="1"===t(e).attr("data-mobile-remove-origin");t(e).removeAttr("data-mobile-position"),t(e).removeAttr("data-mobile-relative-element"),t(e).removeAttr("data-mobile-remove-origin");var o=t(e).clone();"left"===i?o.insertBefore(n):o.insertAfter(n),r&&t(e).remove()})}),t(document).on("click",".bc-mnc__cart-link--show-details-on-click",function(e){e.preventDefault(),t(this).siblings(".bc-mnc__cart-details").addClass("cart-details-show")}),t(document).on("click",".bc-mnc__cart-details--close-button",function(e){t(this).closest(".bc-mnc__cart-details").removeClass("cart-details-show")}),t(document).on("click",".bc-mnc__cart-details--remove-product-icon",function(){var i=e(t(this));r(0,i.cart_key,i.product_id,i.cart_design_id,i.product_container)}),t(document).on("click",".bc-mnc__cart-details--single-item__product-quantity--decrease",function(){var o=i(t(this)),s=e(t(this)),a=o-1;n(a,t(this)),r(a,s.cart_key,s.product_id,s.cart_design_id,s.product_container)}),t(document).on("click",".bc-mnc__cart-details--single-item__product-quantity--increase",function(){var o=i(t(this)),s=e(t(this)),a=o+1;n(a,t(this)),r(a,s.cart_key,s.product_id,s.cart_design_id,s.product_container)})}(jQuery);
|
1 |
+
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define("BCkit",e):(t=t||self).BCkit=e()}(this,function(){"use strict";function t(t,e){return function(i){var n=arguments.length;return n?n>1?t.apply(e,arguments):t.call(e,i):t.call(e)}}var e=Object.prototype,i=e.hasOwnProperty;function n(t,e){return i.call(t,e)}var r={},o=/([a-z\d])([A-Z])/g;function s(t){return t in r||(r[t]=t.replace(o,"$1-$2").toLowerCase()),r[t]}var a=/-(\w)/g;function c(t){return t.replace(a,h)}function h(t,e){return e?e.toUpperCase():""}function l(t){return t.length?h(0,t.charAt(0))+t.slice(1):""}var u=String.prototype,d=u.startsWith||function(t){return 0===this.lastIndexOf(t,0)};function f(t,e){return d.call(t,e)}var p=u.endsWith||function(t){return this.substr(-t.length)===t};function m(t,e){return p.call(t,e)}var g=Array.prototype,v=function(t,e){return~this.indexOf(t,e)},b=u.includes||v,w=g.includes||v;function y(t,e){return t&&(B(t)?b:w).call(t,e)}var x=g.findIndex||function(t){for(var e=arguments,i=0;i<this.length;i++)if(t.call(e[1],this[i],i,this))return i;return-1};function k(t,e){return x.call(t,e)}var $=Array.isArray;function _(t){return"function"==typeof t}function I(t){return null!==t&&"object"==typeof t}function S(t){return I(t)&&Object.getPrototypeOf(t)===e}function T(t){return I(t)&&t===t.window}function E(t){return I(t)&&9===t.nodeType}function A(t){return I(t)&&!!t.jquery}function C(t){return t instanceof Node||I(t)&&t.nodeType>=1}var N=e.toString;function M(t){return N.call(t).match(/^\[object (NodeList|HTMLCollection)\]$/)}function O(t){return"boolean"==typeof t}function B(t){return"string"==typeof t}function D(t){return"number"==typeof t}function z(t){return D(t)||B(t)
|