@charset "UTF-8";
/* ========================================================================
   Component: Base
 ========================================================================== */
/*
 * 1. Set `font-size` to support `rem` units
 *    Not using `font` property because a leading hyphen (e.g. -apple-system) causes the font to break in IE11 and Edge
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Style
 */
html {
  /* 1 */
  font-weight: normal;
  line-height: 1.5;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
  background: var(--bg-default);
  color: var(--base-color);
}
/*
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}
/* Links
 ========================================================================== */
/*
 * Remove the outline on focused links when they are also active or hovered
 */
a:active, a:hover {
  outline: none;
}
/*
 * Style
 */
a, .uk-link {
  color: var(--primary);
  text-decoration: none;
  cursor: pointer;
}
a:hover, .uk-link:hover, .uk-link-toggle:hover .uk-link, .uk-link-toggle:focus .uk-link {
  color: var(--link-hover-color);
  text-decoration: underline;
}
/* Text-level semantics
 ========================================================================== */
/*
 * 1. Add the correct text decoration in Edge.
 * 2. The shorthand declaration `underline dotted` is not supported in Safari.
 */
abbr[title] {
  /* 1 */
  text-decoration: underline dotted;
  /* 2 */
  -webkit-text-decoration-style: dotted;
}
/*
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b, strong {
  font-weight: bolder;
}
/*
 * 1. Consolas has a better baseline in running text compared to `Courier`
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Style
 */
:not(pre) > code, :not(pre) > kbd, :not(pre) > samp {
  /* 1 */
  font-family: Consolas, monaco, monospace;
  /* 2 */
  font-size: 0.875rem;
  /* 3 */
  color: #ff0d0d;
  white-space: nowrap;
  padding: 2px 6px;
  background: var(--bg-muted);
}
/*
 * Emphasize
 */
em {
  color: var(--base-color);
}
/*
 * Insert
 */
ins {
  background: #ffd;
  color: var(--base-color);
  text-decoration: none;
}
/*
 * Mark
 */
mark {
  background: #ffd;
  color: var(--base-color);
}
/*
 * Quote
 */
q {
  font-style: italic;
}
/*
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
 ========================================================================== */
/*
 * Remove the gap between embedded content and the bottom of their containers.
 */
audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}
/*
 * 1. Add responsiveness.
 * 2. Auto-scale the height. Only needed if `height` attribute is present.
 * 3. Corrects responsive `max-width` behavior if padding and border are used.
 * 4. Exclude SVGs for IE11 because they don't preserve their aspect ratio.
 */
canvas, img, video {
  /* 1 */
  max-width: 100%;
  /* 2 */
  height: auto;
  /* 3 */
  box-sizing: border-box;
}
/* 4 */
@supports (display: block) {
  svg {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
  }
}
/*
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}
/*
 * 1. Fix lazy loading images if parent element is set to `display: inline` and has `overflow: hidden`.
 * 2. Hide `alt` text for lazy loading images.
 * Note: Selector for background while loading img[data-src*='.jpg'][src*='data:image'] { background: grey; }
 */
img:not([src]) {
  /* 1 */
  min-width: 1px;
  /* 2 */
  visibility: hidden;
}
/*
 * Iframe
 * Remove border in all browsers
 */
iframe {
  border: 0;
}
/* Block elements
 ========================================================================== */
/*
 * Margins
 */
p, ul, ol, dl, pre, address, fieldset, figure {
  margin: 0 0 var(--gap, 20px) 0;
}
/* Add margin if adjacent element */
* + p, * + ul, * + ol, * + dl, * + pre, * + address, * + fieldset, * + figure {
  margin-top: var(--gap, 20px);
}
/* Headings
 ========================================================================== */
/* Add margin if adjacent element */
* + h1, * + .uk-h1, * + h2, * + .uk-h2, * + h3, * + .uk-h3, * + h4, * + .uk-h4, * + h5, * + .uk-h5, * + h6, * + .uk-h6, * + .uk-heading-small, * + .uk-heading-medium, * + .uk-heading-large, * + .uk-heading-xlarge, * + .uk-heading-2xlarge {
  margin-top: 40px;
}
/* Lists
 ========================================================================== */
ul, ol {
  padding-left: 30px;
}
/*
 * Reset margin for nested lists
 */
ul > li > ul, ul > li > ol, ol > li > ol, ol > li > ul {
  margin: 0;
}
/* Description lists
 ========================================================================== */
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
/* Horizontal rules
 ========================================================================== */
/*
 * 1. Show the overflow in Chrome, Edge and IE.
 * 2. Add the correct text-align in Edge and IE.
 * 3. Style
 */
hr, .uk-hr {
  /* 1 */
  overflow: visible;
  /* 2 */
  text-align: inherit;
  /* 3 */
  margin: 0 0 var(--gap, 20px) 0;
  border: 0;
  border-top: 1px solid var(--base-border-color);
}
/* Add margin if adjacent element */
* + hr, * + .uk-hr {
  margin-top: var(--gap, 20px);
}
/* Address
 ========================================================================== */
address {
  font-style: normal;
}
/* Blockquotes
 ========================================================================== */
blockquote {
  margin: 0 0 var(--gap, 20px) 0;
  font-size: 1rem;
  line-height: 1.5;
  font-style: italic;
  color: #333;
}
/* Add margin if adjacent element */
* + blockquote {
  margin-top: var(--gap, 20px);
}
/*
 * Content
 */
blockquote p:last-of-type {
  margin-bottom: 0;
}
blockquote footer {
  margin-top: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--base-color);
}
blockquote footer::before {
  content: "— ";
}
/* Preformatted text
 ========================================================================== */
/*
 * 1. Contain overflow in all browsers.
 */
pre {
  font: 0.875rem / 1.5 Consolas, monaco, monospace;
  color: var(--base-color);
  -moz-tab-size: 4;
  tab-size: 4;
  /* 1 */
  overflow: auto;
  padding: 10px;
  border: 1px solid var(--base-border-color);
  border-radius: 3px;
  background: var(--bg-default);
}
pre code {
  font-family: Consolas, monaco, monospace;
}
/* Selection pseudo-element
 ========================================================================== */
::selection {
  background: #39f;
  color: #fff;
  text-shadow: none;
}
/* HTML5 elements
 ========================================================================== */
/*
 * 1. Add the correct display in Edge, IE 10+, and Firefox.
 * 2. Add the correct display in IE.
 */
details, main {
  /* 1 */
  /* 2 */
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/*
 * Add the correct display in IE.
 */
template {
  display: none;
}
/* Pass media breakpoints to JS
 ========================================================================== */
/*
 * Breakpoints
 */
.uk-breakpoint-s::before {
  content: "640px";
}
.uk-breakpoint-m::before {
  content: "1024px";
}
.uk-breakpoint-l::before {
  content: "1280px";
}
.uk-breakpoint-xl::before {
  content: "1600px";
}
:root {
  --uk-breakpoint-s: 640px;
  --uk-breakpoint-m: 1024px;
  --uk-breakpoint-l: 1280px;
  --uk-breakpoint-xl: 1600px;
}
/* ========================================================================
   Component: Heading
 ========================================================================== */
.uk-heading-small {
  font-size: 2.6rem;
  line-height: 1.2;
}
.uk-heading-medium {
  font-size: 2.8875rem;
  line-height: 1.1;
}
.uk-heading-large {
  font-size: 3.4rem;
  line-height: 1.1;
}
.uk-heading-xlarge {
  font-size: 4rem;
  line-height: 1;
}
.uk-heading-2xlarge {
  font-size: 6rem;
  line-height: 1;
}
/* Tablet Landscape and bigger */
@media (min-width: 1024px) {
  .uk-heading-small {
    font-size: 3.25rem;
  }
  .uk-heading-medium {
    font-size: 3.5rem;
  }
  .uk-heading-large {
    font-size: 4rem;
  }
  .uk-heading-xlarge {
    font-size: 6rem;
  }
  .uk-heading-2xlarge {
    font-size: 8rem;
  }
}
/* Laptop and bigger */
@media (min-width: 1280px) {
  .uk-heading-medium {
    font-size: 4rem;
  }
  .uk-heading-large {
    font-size: 6rem;
  }
  .uk-heading-xlarge {
    font-size: 8rem;
  }
  .uk-heading-2xlarge {
    font-size: 11rem;
  }
}
/* Primary
   Deprecated: Use `uk-heading-medium` instead
 ========================================================================== */
/* Tablet landscape and bigger */
/* Desktop and bigger */
/* Hero
   Deprecated: Use `uk-heading-xlarge` instead
 ========================================================================== */
/* Tablet landscape and bigger */
/* Desktop and bigger */
/* Divider
 ========================================================================== */
.uk-heading-divider {
  padding-bottom: calc(5px + 0.1em);
  border-bottom: calc(0.2px + 0.05em) solid var(--base-border-color);
}
/* Bullet
 ========================================================================== */
.uk-heading-bullet {
  position: relative;
}
/*
 * 1. Using `inline-block` to make it work with text alignment
 * 2. Center vertically
 * 3. Style
 */
.uk-heading-bullet::before {
  content: "";
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  top: calc(-0.1 * 1em);
  vertical-align: middle;
  /* 3 */
  height: calc(4px + 0.7em);
  margin-right: calc(5px + 0.2em);
  border-left: calc(5px + 0.1em) solid var(--base-border-color);
}
/* Line
 ========================================================================== */
/*
 * Clip the child element
 */
.uk-heading-line {
  overflow: hidden;
}
/*
 * Extra markup is needed to make it work with text align
 */
.uk-heading-line > * {
  display: inline-block;
  position: relative;
}
/*
 * 1. Center vertically
 * 2. Make the element as large as possible. It's clipped by the container.
 * 3. Style
 */
.uk-heading-line > ::before, .uk-heading-line > ::after {
  content: "";
  /* 1 */
  position: absolute;
  top: calc(50% - (calc(0.2px + 0.05em) / 2));
  /* 2 */
  width: 2000px;
  /* 3 */
  border-bottom: calc(0.2px + 0.05em) solid var(--secondary);
}
.uk-heading-line > ::before {
  right: 100%;
  margin-right: calc(5px + 0.3em);
}
.uk-heading-line > ::after {
  left: 100%;
  margin-left: calc(5px + 0.3em);
}
/* ========================================================================
   Component: Icon
 ========================================================================== */
/*
 * Note: 1. - 7. is required for `button` elements. Needed for Close and Form Icon component.
 * 1. Remove margins in Chrome, Safari and Opera.
 * 2. Remove borders for `button`.
 * 3. Remove border-radius in Chrome.
 * 4. Address `overflow` set to `hidden` in IE.
 * 5. Correct `font` properties and `color` not being inherited for `button`.
 * 6. Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 7. Remove default `button` padding and background color
 * 8. Style
 * 9. Fill all SVG elements with the current text color if no `fill` attribute is set
 * 10. Let the container fit the height of the icon
 */
.uk-icon {
  /* 1 */
  margin: 0;
  /* 2 */
  border: none;
  /* 3 */
  border-radius: 0;
  /* 4 */
  overflow: visible;
  /* 5 */
  font: inherit;
  color: inherit;
  /* 6 */
  text-transform: none;
  /* 7. */
  padding: 0;
  background-color: transparent;
  /* 8 */
  display: inline-block;
  /* 9 */
  fill: currentcolor;
  /* 10 */
  line-height: 0;
}
/* Required for `button`. */
button.uk-icon:not(:disabled) {
  cursor: pointer;
}
/*
 * Remove the inner border and padding in Firefox.
 */
.uk-icon::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * Set the fill and stroke color of all SVG elements to the current text color
 */
.uk-icon:not(.uk-preserve) [fill*="#"]:not(.uk-preserve) {
  fill: currentcolor;
}
.uk-icon:not(.uk-preserve) [stroke*="#"]:not(.uk-preserve) {
  stroke: currentcolor;
}
/*
 * Fix Firefox blurry SVG rendering: https://bugzilla.mozilla.org/show_bug.cgi?id=1046835
 */
.uk-icon > * {
  transform: translate(0, 0);
}
/* Image modifier
 ========================================================================== */
/*
 * Display images in icon dimensions
 */
.uk-icon-image {
  width: 20px;
  height: 20px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
/* Style modifiers
 ========================================================================== */
/*
 * Link
 */
.uk-icon-link {
  color: #999;
}
.uk-icon-link:hover, .uk-icon-link:focus {
  color: var(--base-color);
  outline: none;
}
/* OnClick + Active */
.uk-icon-link:active, .uk-active > .uk-icon-link {
  color: var(--base-color);
}
/*
 * Button
 * 1. Center icon vertically and horizontally
 */
.uk-icon-button {
  box-sizing: border-box;
  width: 36px;
  height: 36px;
  border-radius: 500px;
  background: var(--bg-muted);
  color: #999;
  vertical-align: middle;
  /* 1 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: 0.1s ease-in-out;
  transition-property: color, background-color;
}
/* Hover + Focus */
.uk-icon-button:hover, .uk-icon-button:focus {
  background-color: var(--bg-muted);
  color: var(--base-color);
  outline: none;
}
/* OnClick + Active */
.uk-icon-button:active, .uk-active > .uk-icon-button {
  background-color: var(--bg-muted);
  color: var(--base-color);
}
/* Подключать оформление checkbox и radio */
/* ========================================================================
   Component: Form
 ========================================================================== */
/*
 * 1. Define consistent box sizing.
 *    Default is `content-box` with following exceptions set to `border-box`
 *    `select`, `input[type="checkbox"]` and `input[type="radio"]`
 *    `input[type="search"]` in Chrome, Safari and Opera
 *    `input[type="color"]` in Firefox
 * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
 * 3. Remove `border-radius` in iOS.
 * 4. Change font properties to `inherit` in all browsers.
 */
.uk-input, .fw-control-input, .uk-select, .fw-control-select, .uk-textarea, .fw-control-textarea, .uk-radio, .uk-checkbox {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  margin: 0;
  /* 3 */
  border-radius: 0;
  /* 4 */
  font: inherit;
}
/*
 * Show the overflow in Edge.
 */
.uk-input, .fw-control-input {
  overflow: visible;
}
/*
 * Remove the inheritance of text transform in Firefox.
 */
.uk-select, .fw-control-select {
  text-transform: none;
}
/*
 * 1. Change font properties to `inherit` in all browsers
 * 2. Don't inherit the `font-weight` and use `bold` instead.
 * NOTE: Both declarations don't work in Chrome, Safari and Opera.
 */
.uk-select optgroup, .fw-control-select optgroup {
  /* 1 */
  font: inherit;
  /* 2 */
  font-weight: bold;
}
/*
 * Remove the default vertical scrollbar in IE 10+.
 */
.uk-textarea, .fw-control-textarea {
  overflow: auto;
}
/*
 * Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X.
 */
.uk-input[type="search"]::-webkit-search-cancel-button, .fw-control-input[type="search"]::-webkit-search-cancel-button, .uk-input[type="search"]::-webkit-search-decoration, .fw-control-input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
.uk-input[type="number"]::-webkit-inner-spin-button, .fw-control-input[type="number"]::-webkit-inner-spin-button, .uk-input[type="number"]::-webkit-outer-spin-button, .fw-control-input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/*
 * Removes placeholder transparency in Firefox.
 */
.uk-input::-moz-placeholder, .fw-control-input::-moz-placeholder, .uk-textarea::-moz-placeholder, .fw-control-textarea::-moz-placeholder {
  opacity: 1;
}
/*
 * Improves consistency of cursor style for clickable elements
 */
.uk-radio:not(:disabled), .uk-checkbox:not(:disabled) {
  cursor: pointer;
}
/*
 * Define consistent border, margin, and padding.
 */
.uk-fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
/* Input, select and textarea
 * Allowed: `text`, `password`, `datetime`, `datetime-local`, `date`,  `month`,
            `time`, `week`, `number`, `email`, `url`, `search`, `tel`, `color`
 * Disallowed: `range`, `radio`, `checkbox`, `file`, `submit`, `reset` and `image`
 ========================================================================== */
/*
 * Remove default style in iOS.
 */
.uk-input, .fw-control-input, .uk-textarea, .fw-control-textarea {
  -webkit-appearance: none;
}
/*
 * 1. Prevent content overflow if a fixed width is used
 * 2. Take the full width
 * 3. Reset default
 * 4. Style
 */
.uk-input, .fw-control-input, .uk-select, .fw-control-select, .uk-textarea, .fw-control-textarea {
  /* 1 */
  max-width: 100%;
  /* 2 */
  width: 100%;
  /* 3 */
  border: 0 none;
  /* 4 */
  padding: 0 10px;
  background: var(--bg-default);
  color: var(--base-color);
  border-radius: 8px;
  border: 1px solid var(--base-border-color);
  transition: 0.2s ease-in-out;
  transition-property: color, background-color, border;
}
/*
 * Single-line
 * 1. Allow any element to look like an `input` or `select` element
 * 2. Make sure line-height is not larger than height
 *    Also needed to center the text vertically
 */
.uk-input, .fw-control-input, .uk-select:not([multiple]):not([size]), .fw-control-select:not([multiple]):not([size]) {
  height: calc(var(--control-line-height) + 2*var(--base-border-width));
  vertical-align: middle;
  /* 1 */
  display: inline-block;
}
/* 2 */
.uk-input:not(input), .fw-control-input:not(input), .uk-select:not(select), .fw-control-select:not(select) {
  line-height: calc(var(--control-line-height) + 2*var(--base-border-width)) - 2px;
}
/*
 * Multi-line
 */
.uk-select[multiple], .fw-control-select[multiple], .uk-select[size], .fw-control-select[size], .uk-textarea, .fw-control-textarea {
  padding-top: 4px;
  padding-bottom: 4px;
  vertical-align: top;
}
/* Focus */
.uk-input:focus, .fw-control-input:focus, .uk-select:focus, .fw-control-select:focus, .uk-textarea:focus, .fw-control-textarea:focus {
  outline: none;
  background-color: var(--bg-default);
  color: var(--base-color);
  border-color: var(--primary);
}
/* Disabled */
.uk-input:disabled, .fw-control-input:disabled, .uk-select:disabled, .fw-control-select:disabled, .uk-textarea:disabled, .fw-control-textarea:disabled {
  background-color: var(--bg-muted);
  color: #999;
  border-color: var(--base-border-color);
}
/*
 * Placeholder
 */
.uk-input::-ms-input-placeholder, .fw-control-input::-ms-input-placeholder {
  color: #999 !important;
}
.uk-input::placeholder, .fw-control-input::placeholder {
  color: #999;
}
.uk-textarea::-ms-input-placeholder, .fw-control-textarea::-ms-input-placeholder {
  color: #999 !important;
}
.uk-textarea::placeholder, .fw-control-textarea::placeholder {
  color: #999;
}
/* Style modifier (`uk-input`, `uk-select` and `uk-textarea`)
 ========================================================================== */
/*
 * Small
 */
.uk-form-small {
  font-size: 0.875rem;
}
.uk-form-small:not(textarea):not([multiple]):not([size]) {
  height: 30px;
  padding-left: 8px;
  padding-right: 8px;
}
.uk-form-small:not(select):not(input):not(textarea) {
  line-height: 28px;
}
/*
 * Large
 */
.uk-form-large {
  font-size: 1rem;
}
.uk-form-large:not(textarea):not([multiple]):not([size]) {
  height: 55px;
  padding-left: 12px;
  padding-right: 12px;
}
.uk-form-large:not(select):not(input):not(textarea) {
  line-height: 53px;
}
/* Style modifier (`uk-input`, `uk-select` and `uk-textarea`)
 ========================================================================== */
/*
 * Error
 */
.uk-form-danger, .uk-form-danger:focus {
  color: #ff0d0d;
  border-color: #ff0d0d;
}
/*
 * Success
 */
.uk-form-success, .uk-form-success:focus {
  color: var(--success);
  border-color: var(--success);
}
/*
 * Blank
 */
.uk-form-blank {
  background: none;
  border-color: transparent;
}
.uk-form-blank:focus {
  border-color: var(--base-border-color);
  border-style: dashed;
}
/* Width modifiers (`uk-input`, `uk-select` and `uk-textarea`)
 ========================================================================== */
/*
 * Fixed widths
 * Different widths for mini sized `input` and `select` elements
 */
input.uk-form-width-xsmall {
  width: 50px;
}
select.uk-form-width-xsmall {
  width: 75px;
}
.uk-form-width-small {
  width: 130px;
}
.uk-form-width-medium {
  width: 200px;
}
.uk-form-width-large {
  width: 500px;
}
/* Select
 ========================================================================== */
/*
 * 1. Remove default style. Also works in Firefox
 * 2. Style
 * 3. Remove default style in IE 10/11
 * 4. Set `color` for options in the select dropdown, because the inherited `color` might be too light.
 */
.uk-select:not([multiple]):not([size]), .fw-control-select:not([multiple]):not([size]) {
  /* 1 */
  -webkit-appearance: none;
  -moz-appearance: none;
  /* 2 */
  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%22var(--base-color)%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22var(--base-color)%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%;
}
/* 3 */
.uk-select:not([multiple]):not([size])::-ms-expand, .fw-control-select:not([multiple]):not([size])::-ms-expand {
  display: none;
}
/* 4 */
.uk-select:not([multiple]):not([size]) option, .fw-control-select:not([multiple]):not([size]) option {
  color: #444;
}
/*
 * Disabled
 */
.uk-select:not([multiple]):not([size]):disabled, .fw-control-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");
}
/* Datalist
 ========================================================================== */
/*
 * 1. Remove default style in Chrome
 */
.uk-input[list], .fw-control-input[list] {
  padding-right: 20px;
  background-repeat: no-repeat;
  background-position: 100% 50%;
}
.uk-input[list]:hover, .fw-control-input[list]:hover, .uk-input[list]:focus, .fw-control-input[list]:focus {
  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%22var(--base-color)%22%20points%3D%2212%2012%208%206%2016%206%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
/* 1 */
.uk-input[list]::-webkit-calendar-picker-indicator, .fw-control-input[list]::-webkit-calendar-picker-indicator {
  display: none;
}
/* Radio and checkbox
 * Note: Does not work in IE11
 ========================================================================== */
/*
 * 1. Style
 * 2. Make box more robust so it clips the child element
 * 3. Vertical alignment
 * 4. Remove default style
 * 5. Fix black background on iOS
 * 6. Center icons
 */
/* Legend
 ========================================================================== */
/*
 * Legend
 * 1. Behave like block element
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove padding so people aren't caught out if they zero out fieldsets.
 * 4. Style
 */
.uk-legend {
  /* 1 */
  width: 100%;
  /* 2 */
  color: inherit;
  /* 3 */
  padding: 0;
  /* 4 */
  font-size: 1.5rem;
  line-height: 1.4;
}
/* Custom controls
 ========================================================================== */
/*
 * 1. Container fits its content
 * 2. Create position context
 * 3. Prevent content overflow
 * 4. Behave like most inline-block elements
 */
.uk-form-custom {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
}
/*
 * 1. Position and resize the form control to always cover its container
 * 2. Required for Firefox for positioning to the left
 * 3. Required for Webkit to make `height` work
 * 4. Hide controle and show cursor
 * 5. Needed for the cursor
 * 6. Clip height caused by 5. Needed for Webkit only
 */
.uk-form-custom select, .uk-form-custom input[type="file"] {
  /* 1 */
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  /* 2 */
  left: 0;
  /* 3 */
  -webkit-appearance: none;
  /* 4 */
  opacity: 0;
  cursor: pointer;
}
.uk-form-custom input[type="file"] {
  /* 5 */
  font-size: 500px;
  /* 6 */
  overflow: hidden;
}
/* Label
 ========================================================================== */
.uk-form-label {
  color: #333;
  font-size: 0.875rem;
}
/* Layout
 ========================================================================== */
/*
 * Stacked
 */
.uk-form-stacked .uk-form-label {
  display: block;
  margin-bottom: 5px;
}
/*
 * Horizontal
 */
/* Tablet portrait and smaller */
@media (max-width: 1023px) {
  /* Behave like `uk-form-stacked` */
  .uk-form-horizontal .uk-form-label {
    display: block;
    margin-bottom: 5px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 1024px) {
  /* Better vertical alignment if controls are checkboxes and radio buttons with text */
  .uk-form-horizontal .uk-form-label {
    width: 200px;
    margin-top: 7px;
    float: left;
  }
  .uk-form-horizontal .uk-form-controls {
    margin-left: 215px;
  }
  .uk-form-horizontal .uk-form-controls-text {
    padding-top: 7px;
  }
}
/* Icons
 ========================================================================== */
/*
 * 1. Set position
 * 2. Set width
 * 3. Center icon vertically and horizontally
 * 4. Style
 */
.uk-form-icon {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  width: calc(var(--control-line-height) + 2*var(--base-border-width));
  /* 3 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  /* 4 */
  color: #999;
}
/*
 * Required for `a`.
 */
.uk-form-icon:hover {
  color: var(--base-color);
}
/*
 * Make `input` element clickable through icon, e.g. if it's a `span`
 */
.uk-form-icon:not(a):not(button):not(input) {
  pointer-events: none;
}
/*
 * Input padding
 */
.uk-form-icon:not(.uk-form-icon-flip) ~ .uk-input, .uk-form-icon:not(.uk-form-icon-flip) ~ .fw-control-input {
  padding-left: calc(var(--control-line-height) + 2*var(--base-border-width)) !important;
}
/*
 * Position modifier
 */
.uk-form-icon-flip {
  right: 0;
  left: auto;
}
.uk-form-icon-flip ~ .uk-input, .uk-form-icon-flip ~ .fw-control-input {
  padding-right: calc(var(--control-line-height) + 2*var(--base-border-width)) !important;
}
/* ========================================================================
   Component: Close
 ========================================================================== */
/*
 * Adopts `uk-icon`
 */
.uk-close {
  color: #999;
  transition: 0.1s ease-in-out;
  transition-property: color, opacity;
}
/* Hover + Focus */
.uk-close:hover, .uk-close:focus {
  color: var(--base-color);
  outline: none;
}
/* ========================================================================
   Component: Totop
 ========================================================================== */
/*
 * Addopts `uk-icon`
 */
.uk-totop {
  padding: 5px;
  color: #999;
  transition: color 0.1s ease-in-out;
}
/* Hover + Focus */
.uk-totop:hover, .uk-totop:focus {
  color: var(--base-color);
  outline: none;
}
/* OnClick */
.uk-totop:active {
  color: #333;
}
/* ========================================================================
   Component: Label
 ========================================================================== */
.uk-label {
  display: inline-block;
  padding: 0 10px;
  background: var(--primary);
  line-height: 1.5;
  font-size: 0.875rem;
  color: #fff;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 2px;
  text-transform: uppercase;
}
/* Color modifiers
 ========================================================================== */
/*
 * Success
 */
.uk-label-success {
  background-color: var(--success);
  color: #fff;
}
/*
 * Warning
 */
.uk-label-warning {
  background-color: #faa05a;
  color: #fff;
}
/*
 * Danger
 */
.uk-label-danger {
  background-color: #ff0d0d;
  color: #fff;
}
/* ========================================================================
   Component: Overlay
 ========================================================================== */
.uk-overlay {
  padding: 30px 30px;
}
/*
 * Remove margin from the last-child
 */
.uk-overlay > :last-child {
  margin-bottom: 0;
}
/* Icon
 ========================================================================== */
/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.uk-overlay-default {
  background: #fff;
}
/*
 * Primary
 */
.uk-overlay-primary {
  background: rgba(var(--secondary), 0.8);
}
/* ========================================================================
   Component: Accordion
 ========================================================================== */
.uk-accordion {
  padding: 0;
  list-style: none;
}
/* Item
 ========================================================================== */
.uk-accordion > :nth-child(n+2) {
  margin-top: var(--gap, 20px);
}
/* Title
 ========================================================================== */
.uk-accordion-title {
  display: block;
  font-size: var(--fs-h6);
  line-height: 1.4;
  color: var(--accent-color);
  overflow: hidden;
}
.uk-accordion-title::before {
  content: "";
  width: 1.4em;
  height: 1.4em;
  margin-left: 10px;
  float: right;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' data-svg='chevron-down'%3E%3Cpolyline fill='none' stroke='%23000' stroke-width='1.03' points='16 7 10 13 4 7'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.uk-open > .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%22var(--base-color)%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
/* Hover + Focus */
.uk-accordion-title:hover, .uk-accordion-title:focus {
  color: var(--base-color);
  text-decoration: none;
  outline: none;
}
/* Content
 ========================================================================== */
.uk-accordion-content {
  display: flow-root;
  margin-top: var(--gap, 20px);
}
/*
 * Remove margin from the last-child
 */
.uk-accordion-content > :last-child {
  margin-bottom: 0;
}
/* ========================================================================
   Component: Drop
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Set a default width
 */
.uk-drop {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1020;
  /* 3 */
  box-sizing: border-box;
  width: 300px;
}
/* Show */
.uk-drop.uk-open {
  display: block;
}
/* Direction / Alignment modifiers
 ========================================================================== */
/* Direction */
[class*="uk-drop-top"] {
  margin-top: -var(--gap, 20px);
}
[class*="uk-drop-bottom"] {
  margin-top: var(--gap, 20px);
}
[class*="uk-drop-left"] {
  margin-left: -var(--gap, 20px);
}
[class*="uk-drop-right"] {
  margin-left: var(--gap, 20px);
}
/* Grid modifiers
 ========================================================================== */
.uk-drop-stack .uk-drop-grid > * {
  width: 100% !important;
}
/* ========================================================================
   Component: Dropdown
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Set a default width
 * 4. Style
 */
.uk-dropdown {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1020;
  /* 3 */
  box-sizing: border-box;
  min-width: 200px;
  /* 4 */
  padding: 25px;
  background: var(--bg-default);
  color: var(--base-color);
  border-radius: var(--border-radius-sm);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}
/* Show */
.uk-dropdown.uk-open {
  display: block;
}
/* Nav
 * Adopts `uk-nav`
 ========================================================================== */
.uk-dropdown-nav {
  white-space: nowrap;
  font-size: 0.875rem;
}
/*
 * Items
 */
.uk-dropdown-nav > li > a {
  color: #999;
}
/* Hover + Focus + Active */
.uk-dropdown-nav > li > a:hover, .uk-dropdown-nav > li > a:focus, .uk-dropdown-nav > li.uk-active > a {
  color: var(--base-color);
}
/*
 * Header
 */
.uk-dropdown-nav .uk-nav-header {
  color: #333;
}
/*
 * Divider
 */
.uk-dropdown-nav .uk-nav-divider {
  border-top: 1px solid var(--base-border-color);
}
/*
 * Sublists
 */
.uk-dropdown-nav .uk-nav-sub a {
  color: #999;
}
.uk-dropdown-nav .uk-nav-sub a:hover, .uk-dropdown-nav .uk-nav-sub a:focus, .uk-dropdown-nav .uk-nav-sub li.uk-active > a {
  color: var(--base-color);
}
/* Direction / Alignment modifiers
 ========================================================================== */
/* Direction */
[class*="uk-dropdown-top"] {
  margin-top: -10px;
}
[class*="uk-dropdown-bottom"] {
  margin-top: 10px;
}
[class*="uk-dropdown-left"] {
  margin-left: -10px;
}
[class*="uk-dropdown-right"] {
  margin-left: 10px;
}
/* Grid modifiers
 ========================================================================== */
.uk-dropdown-stack .uk-dropdown-grid > * {
  width: 100% !important;
}
/* ========================================================================
   Component: Modal
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Allow scrolling for the modal dialog
 * 4. Horizontal padding
 * 5. Mask the background page
 * 6. Fade-in transition
 */
.uk-modal {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  padding: 15px 15px;
  /* 5 */
  background: rgba(0, 0, 0, 0.6);
  /* 6 */
  opacity: 0;
  transition: opacity 0.15s linear;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-modal {
    padding: 50px 30px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 1024px) {
  .uk-modal {
    padding-left: 40px;
    padding-right: 40px;
  }
}
/*
 * Open
 */
.uk-modal.uk-open {
  opacity: 1;
}
/* Page
 ========================================================================== */
/*
 * Prevent scrollbars
 */
.uk-modal-page {
  overflow: hidden;
}
/* Dialog
 ========================================================================== */
/*
 * 1. Create position context for spinner and close button
 * 2. Dimensions
 * 3. Fix `max-width: 100%` not working in combination with flex and responsive images in IE11
 *    `!important` needed to overwrite `uk-width-auto`. See `#modal-media-image` in tests
 * 4. Style
 * 5. Slide-in transition
 */
.uk-modal-dialog {
  /* 1 */
  position: relative;
  /* 2 */
  box-sizing: border-box;
  margin: 0 auto;
  width: 600px;
  /* 3 */
  max-width: calc(100% - 0.01px) !important;
  /* 4 */
  background: var(--bg-default);
  /* 5 */
  opacity: 0;
  transform: translateY(-20px);
  transition: 0.3s linear;
  transition-property: opacity, transform;
}
/*
 * Open
 */
.uk-open > .uk-modal-dialog {
  opacity: 1;
  transform: translateY(0);
}
/* Size modifier
 ========================================================================== */
/*
 * Container size
 * Take the same size as the Container component
 */
.uk-modal-container .uk-modal-dialog {
  width: 1200px;
}
/*
 * Full size
 * 1. Remove padding and background from modal
 * 2. Reset all default declarations from modal dialog
 */
/* 1 */
.uk-modal-full {
  padding: 0;
  background: none;
}
/* 2 */
.uk-modal-full .uk-modal-dialog {
  margin: 0;
  width: 100%;
  max-width: 100%;
  transform: translateY(0);
}
/* Sections
 ========================================================================== */
.uk-modal-body {
  display: flow-root;
  padding: 30px 30px;
}
.uk-modal-header {
  display: flow-root;
  padding: 15px 30px;
  background: var(--bg-default);
  border-bottom: 1px solid var(--base-border-color);
}
.uk-modal-footer {
  display: flow-root;
  padding: 15px 30px;
  background: var(--bg-default);
  border-top: 1px solid var(--base-border-color);
}
/*
 * Remove margin from the last-child
 */
.uk-modal-body > :last-child, .uk-modal-header > :last-child, .uk-modal-footer > :last-child {
  margin-bottom: 0;
}
/* Title
 ========================================================================== */
.uk-modal-title {
  font-size: var(--fs-h5);
  line-height: 1.3;
}
/* Close
 * Adopts `uk-close`
 ========================================================================== */
[class*="uk-modal-close-"] {
  position: absolute;
  line-height: var(--gap, 20px);
  z-index: 1010;
  top: var(--gap, 20px);
  right: var(--gap, 20px);
  padding: 5px;
}
/*
 * Remove margin from adjacent element
 */
[class*="uk-modal-close-"]:first-child + * {
  margin-top: 0;
}
/*
 * Hover
 */
/*
 * Default
 */
/*
 * Outside
 * 1. Prevent scrollbar on small devices
 */
.uk-modal-close-outside {
  top: 0;
  /* 1 */
  right: -5px;
  transform: translate(0, -100%);
  color: white;
}
.uk-modal-close-outside:hover {
  color: #fff;
}
/* Tablet landscape and bigger */
@media (min-width: 1024px) {
  /* 1 */
  .uk-modal-close-outside {
    right: 0;
    transform: translate(100%, -100%);
  }
}
/*
 * Full
 */
.uk-modal-close-full {
  top: 0;
  right: 0;
  padding: var(--gap, 20px);
  background: var(--bg-default);
}
/* ========================================================================
   Component: Slider
 ========================================================================== */
/*
 * 1. Prevent tab highlighting on iOS.
 */
.uk-slider {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}
/* Container
 ========================================================================== */
/*
 * 1. Clip child elements
 */
.uk-slider-container {
  /* 1 */
  overflow: hidden;
}
/* Items
 ========================================================================== */
/*
 * 1. Optimize animation
 * 2. Create a containing block. In Safari it's neither created by `transform` nor `will-change`.
 */
.uk-slider-items {
  /* 1 */
  will-change: transform;
  /* 2 */
  position: relative;
}
/*
 * 1. Reset list style without interfering with grid
 * 2. Prevent displaying the callout information on iOS.
 */
.uk-slider-items:not(.uk-grid) {
  display: flex;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 2 */
  -webkit-touch-callout: none;
}
.uk-slider-items.uk-grid {
  flex-wrap: nowrap;
}
/* Item
 ========================================================================== */
/*
 * 1. Let items take content dimensions (0 0 auto)
 * 2. Create position context
 * 3. Disable horizontal panning gestures in IE11 and Edge
 * 4. Suppress outline on focus
 */
.uk-slider-items > * {
  /* 1 */
  flex: none;
  /* 2 */
  position: relative;
  /* 3 */
  touch-action: pan-y;
}
/* 4 */
.uk-slider-items > :focus {
  outline: none;
}
/* ========================================================================
   Component: Sticky
 ========================================================================== */
/*
 * 1. Resolve frame rate issues on devices with lower frame rates by forcing hardware acceleration
 */
.uk-sticky-fixed {
  z-index: 980;
  box-sizing: border-box;
  margin: 0 !important;
  /* 1 */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/*
 * Faster animations
 */
.uk-sticky[class*="uk-animation-"] {
  animation-duration: 0.2s;
}
.uk-sticky.uk-animation-reverse {
  animation-duration: 0.2s;
}
/* ========================================================================
   Component: Off-canvas
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 */
.uk-offcanvas {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
}
/*
 * Flip modifier
 */
.uk-offcanvas-flip .uk-offcanvas {
  right: 0;
  left: auto;
}
/* Bar
 ========================================================================== */
/*
 * 1. Set position
 * 2. Size and style
 * 3. Allow scrolling
 */
.uk-offcanvas-bar {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: -320px;
  /* 2 */
  box-sizing: border-box;
  width: 320px;
  padding: var(--gap, 20px) var(--gap, 20px);
  background: var(--bg-default);
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
/* Tablet landscape and bigger */
@media (min-width: 1024px) {
  .uk-offcanvas-bar {
    left: -350px;
    width: 350px;
    padding: 40px 40px;
  }
}
/* Flip modifier */
.uk-offcanvas-flip .uk-offcanvas-bar {
  left: auto;
  right: -320px;
}
/* Tablet landscape and bigger */
@media (min-width: 1024px) {
  .uk-offcanvas-flip .uk-offcanvas-bar {
    right: -350px;
  }
}
/*
 * Open
 */
.uk-open > .uk-offcanvas-bar {
  left: 0;
}
.uk-offcanvas-flip .uk-open > .uk-offcanvas-bar {
  left: auto;
  right: 0;
}
/*
 * Slide Animation (Used in slide and push mode)
 */
.uk-offcanvas-bar-animation {
  transition: left 0.3s ease-out;
}
.uk-offcanvas-flip .uk-offcanvas-bar-animation {
  transition-property: right;
}
/*
 * Reveal Animation
 * 1. Set position
 * 2. Clip the bar
 * 3. Animation
 * 4. Reset position
 */
.uk-offcanvas-reveal {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  width: 0;
  overflow: hidden;
  /* 3 */
  transition: width 0.3s ease-out;
}
.uk-offcanvas-reveal .uk-offcanvas-bar {
  /* 4 */
  left: 0;
}
.uk-offcanvas-flip .uk-offcanvas-reveal .uk-offcanvas-bar {
  /* 4 */
  left: auto;
  right: 0;
}
.uk-open > .uk-offcanvas-reveal {
  width: 320px;
}
/* Tablet landscape and bigger */
@media (min-width: 1024px) {
  .uk-open > .uk-offcanvas-reveal {
    width: 350px;
  }
}
/*
 * Flip modifier
 */
.uk-offcanvas-flip .uk-offcanvas-reveal {
  right: 0;
  left: auto;
}
/* Close
 * Adopts `uk-close`
 ========================================================================== */
.uk-offcanvas-close {
  position: absolute;
  z-index: 1000;
  top: 20px;
  right: 20px;
  padding: 5px;
}
/* Overlay
 ========================================================================== */
/*
 * Overlay the whole page. Needed for the `::before`
 * 1. Using `100vw` so no modification is needed when off-canvas is flipped
 * 2. Allow for closing with swipe gesture on devices with pointer events.
 */
.uk-offcanvas-overlay {
  /* 1 */
  width: 100vw;
  /* 2 */
  touch-action: none;
}
/*
 * 1. Mask the whole page
 * 2. Fade-in transition
 */
.uk-offcanvas-overlay::before {
  /* 1 */
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.1);
  /* 2 */
  opacity: 0;
  transition: opacity 0.15s linear;
}
.uk-offcanvas-overlay.uk-open::before {
  opacity: 1;
}
/* Prevent scrolling
 ========================================================================== */
/*
 * Prevent horizontal scrollbar when the content is slide-out
 * Has to be on the `html` element too to make it work on the `body`
 */
.uk-offcanvas-page, .uk-offcanvas-container {
  overflow-x: hidden;
}
/* Container
 ========================================================================== */
/*
 * Prepare slide-out animation (Used in reveal and push mode)
 * Using `position: left` instead of `transform` because position `fixed` elements like sticky navbars
 * lose their fixed state and behaves like `absolute` within a transformed container
 * 1. Provide a fixed width and prevent shrinking
 */
.uk-offcanvas-container {
  position: relative;
  left: 0;
  transition: left 0.3s ease-out;
  /* 1 */
  box-sizing: border-box;
  width: 100%;
}
/*
 * Activate slide-out animation
 */
:not(.uk-offcanvas-flip).uk-offcanvas-container-animation {
  left: 320px;
}
.uk-offcanvas-flip.uk-offcanvas-container-animation {
  left: -320px;
}
/* Tablet landscape and bigger */
@media (min-width: 1024px) {
  :not(.uk-offcanvas-flip).uk-offcanvas-container-animation {
    left: 350px;
  }
  .uk-offcanvas-flip.uk-offcanvas-container-animation {
    left: -350px;
  }
}
/* ========================================================================
   Component: Switcher
 ========================================================================== */
/*
 * Reset list
 */
.uk-switcher {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* Items
 ========================================================================== */
/*
 * Hide not active items
 */
.uk-switcher > :not(.uk-active) {
  display: none;
}
/*
 * Remove margin from the last-child
 */
.uk-switcher > * > :last-child {
  margin-bottom: 0;
}
/* ========================================================================
   Component: Leader
 ========================================================================== */
.uk-leader {
  overflow: hidden;
}
/*
 * 1. Place element in text flow
 * 2. Never break into a new line
 * 3. Get a string back with as many repeating characters to fill the container
 * 4. Prevent wrapping. Overflowing characters will be clipped by the container
 */
.uk-leader-fill::after {
  /* 1 */
  display: inline-block;
  margin-left: var(--gap);
  /* 2 */
  width: 0;
  /* 3 */
  content: attr(data-fill);
  /* 4 */
  white-space: nowrap;
}
/*
 * Hide if media does not match
 */
.uk-leader-fill.uk-leader-hide::after {
  display: none;
}
/*
 * Pass fill character to JS
 */
.uk-leader-fill-content::before {
  content: ".";
}
:root {
  --uk-leader-fill-content: .;
}
/* ========================================================================
   Component: Pagination
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Gutter
 * 3. Reset list
 */
.uk-pagination {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin-left: 0;
  /* 3 */
  padding: 0;
  list-style: none;
}
/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 * 3. Create position context for dropdowns
 */
.uk-pagination > * {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 0;
  /* 3 */
  position: relative;
}
/* Items
 ========================================================================== */
/*
 * 1. Prevent gap if child element is `inline-block`, e.g. an icon
 * 2. Style
 */
.uk-pagination > * > * {
  /* 1 */
  display: block;
  /* 2 */
  padding: 5px 10px;
  color: #999;
  transition: color 0.1s ease-in-out;
}
/* Hover + Focus */
.uk-pagination > * > :hover, .uk-pagination > * > :focus {
  color: var(--base-color);
  text-decoration: none;
}
/* Active */
.uk-pagination > .uk-active > * {
  color: var(--base-color);
}
/* Disabled */
.uk-pagination > .uk-disabled > * {
  color: #999;
}
/* ========================================================================
   Component: Tab
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Gutter
 * 3. Reset list
 */
.uk-tab {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin-left: -20px;
  /* 3 */
  padding: 0;
  list-style: none;
  position: relative;
}
.uk-tab::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 0;
  border-bottom: 1px solid var(--base-border-color);
}
/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 * 3. Create position context for dropdowns
 */
.uk-tab > * {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 20px;
  /* 3 */
  position: relative;
}
/* Items
 ========================================================================== */
/*
 * Items must target `a` elements to exclude other elements (e.g. dropdowns)
 * 1. Center text if a width is set
 * 2. Style
 */
.uk-tab > * > a {
  /* 1 */
  display: block;
  text-align: center;
  /* 2 */
  padding: 5px 10px;
  color: #999;
  border-bottom: 1px solid transparent;
  font-size: 0.875rem;
  text-transform: uppercase;
  transition: color 0.1s ease-in-out;
}
/* Hover + Focus */
.uk-tab > * > a:hover, .uk-tab > * > a:focus {
  color: var(--base-color);
  text-decoration: none;
}
/* Active */
.uk-tab > .uk-active > a {
  color: #333;
  border-color: var(--primary);
}
/* Disabled */
.uk-tab > .uk-disabled > a {
  color: #999;
}
/* Position modifier
 ========================================================================== */
/*
 * Bottom
 */
.uk-tab-bottom::before {
  top: 0;
  bottom: auto;
}
.uk-tab-bottom > * > a {
  border-top: 1px solid transparent;
  border-bottom: none;
}
/*
 * Left + Right
 * 1. Reset Gutter
 */
.uk-tab-left, .uk-tab-right {
  flex-direction: column;
  /* 1 */
  margin-left: 0;
}
/* 1 */
.uk-tab-left > *, .uk-tab-right > * {
  padding-left: 0;
}
.uk-tab-left::before {
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  border-left: 1px solid var(--base-border-color);
  border-bottom: none;
}
.uk-tab-right::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  border-left: 1px solid var(--base-border-color);
  border-bottom: none;
}
.uk-tab-left > * > a {
  text-align: left;
  border-right: 1px solid transparent;
  border-bottom: none;
}
.uk-tab-right > * > a {
  text-align: left;
  border-left: 1px solid transparent;
  border-bottom: none;
}
.where-buy-list {
  margin-left: 0;
}
.where-buy-tab {
  padding-left: 0;
  width: 33.3%;
}
.uk-tab .uk-dropdown {
  margin-left: 30px;
}
/* ========================================================================
   Component: Thumbnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset list
 * 3. Gutter
 */
.uk-thumbnav {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  margin-left: -15px;
}
/*
 * Space is allocated based on content dimensions, but shrinks: 0 1 auto
 * 1. Gutter
 */
.uk-thumbnav > * {
  /* 1 */
  padding-left: 15px;
}
/* Items
 ========================================================================== */
/*
 * Items
 */
.uk-thumbnav > * > * {
  display: inline-block;
  position: relative;
}
.uk-thumbnav > * > *::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-default);
  transition: background-color 0.1s ease-in-out;
}
/* Hover + Focus */
.uk-thumbnav > * > :hover, .uk-thumbnav > * > :focus {
  outline: none;
}
.uk-thumbnav > * > :hover::after, .uk-thumbnav > * > :focus::after {
  background-color: transparent;
}
/* Active */
.uk-thumbnav > .uk-active > *::after {
  background-color: transparent;
}
/* Modifier: 'uk-thumbnav-vertical'
 ========================================================================== */
/*
 * 1. Change direction
 * 2. Gutter
 */
.uk-thumbnav-vertical {
  /* 1 */
  flex-direction: column;
  /* 2 */
  margin-left: 0;
  margin-top: -15px;
}
/* 2 */
.uk-thumbnav-vertical > * {
  padding-left: 0;
  padding-top: 15px;
}
/* ========================================================================
   Component: Iconnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset list
 * 3. Gutter
 */
.uk-iconnav {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  margin-left: -10px;
}
/*
 * Space is allocated based on content dimensions, but shrinks: 0 1 auto
 * 1. Gutter
 */
.uk-iconnav > * {
  /* 1 */
  padding-left: 10px;
}
/* Items
 ========================================================================== */
/*
 * Items must target `a` elements to exclude other elements (e.g. dropdowns)
 * 1. Prevent gap if child element is `inline-block`, e.g. an icon
 * 2. Style
 */
.uk-iconnav > * > a {
  /* 1 */
  display: block;
  /* 2 */
  color: #999;
}
/* Hover + Focus */
.uk-iconnav > * > a:hover, .uk-iconnav > * > a:focus {
  color: var(--base-color);
  outline: none;
}
/* Active */
.uk-iconnav > .uk-active > a {
  color: var(--base-color);
}
/* Modifier: 'uk-iconnav-vertical'
 ========================================================================== */
/*
 * 1. Change direction
 * 2. Gutter
 */
.uk-iconnav-vertical {
  /* 1 */
  flex-direction: column;
  /* 2 */
  margin-left: 0;
  margin-top: -10px;
}
/* 2 */
.uk-iconnav-vertical > * {
  padding-left: 0;
  padding-top: 10px;
}
/* ========================================================================
   Component: Lightbox
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Allow scrolling for the modal dialog
 * 4. Horizontal padding
 * 5. Mask the background page
 * 6. Fade-in transition
 * 7. Prevent cancellation of pointer events while dragging
 */
.uk-lightbox {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  /* 5 */
  background: #000;
  /* 6 */
  opacity: 0;
  transition: opacity 0.15s linear;
  /* 7 */
  touch-action: pinch-zoom;
}
/*
 * Open
 * 1. Center child
 * 2. Fade-in
 */
.uk-lightbox.uk-open {
  display: block;
  /* 2 */
  opacity: 1;
}
/* Page
 ========================================================================== */
/*
 * Prevent scrollbars
 */
.uk-lightbox-page {
  overflow: hidden;
}
/* Item
 ========================================================================== */
/*
 * 1. Center child within the viewport
 * 2. Not visible by default
 * 3. Color needed for spinner icon
 * 4. Optimize animation
 * 5. Responsiveness
 *    Using `vh` for `max-height` to fix image proportions after resize in Safari and Opera
 *    Using `vh` and `vw` to make responsive image work in IE11
 * 6. Suppress outline on focus
 */
.uk-lightbox-items > * {
  /* 1 */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  display: none;
  justify-content: center;
  align-items: center;
  /* 3 */
  color: rgba(255, 255, 255, 0.7);
  /* 4 */
  will-change: transform, opacity;
}
/* 5 */
.uk-lightbox-items > * > * {
  max-width: 100vw;
  max-height: 100vh;
}
/* 6 */
.uk-lightbox-items > :focus {
  outline: none;
}
.uk-lightbox-items > * > :not(iframe) {
  width: auto;
  height: auto;
}
.uk-lightbox-items > .uk-active {
  display: flex;
}
/* Toolbar
 ========================================================================== */
.uk-lightbox-toolbar {
  padding: 10px 10px;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.7);
}
.uk-lightbox-toolbar > * {
  color: rgba(255, 255, 255, 0.7);
}
/* Toolbar Icon (Close)
 ========================================================================== */
.uk-lightbox-toolbar-icon {
  padding: 5px;
  color: rgba(255, 255, 255, 0.7);
}
/*
 * Hover
 */
.uk-lightbox-toolbar-icon:hover {
  color: #fff;
}
/* Button (Slidenav)
 ========================================================================== */
/*
 * 1. Center icon vertically and horizontally
 */
.uk-lightbox-button {
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.7);
  /* 1 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
/* Hover + Focus */
.uk-lightbox-button:hover, .uk-lightbox-button:focus {
  color: #fff;
}
/* OnClick */
/* Caption
 ========================================================================== */
.uk-lightbox-caption:empty {
  display: none;
}
/* Iframe
 ========================================================================== */
.uk-lightbox-iframe {
  width: 80%;
  height: 80%;
}
/* ========================================================================
   Component: Text
 ========================================================================== */
/* Style modifiers
 ========================================================================== */
.uk-text-lead {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #333;
}
.uk-text-meta {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #999;
}
.uk-text-meta a {
  color: #999;
}
.uk-text-meta a:hover {
  color: var(--base-color);
  text-decoration: none;
}
/* Size modifiers
 ========================================================================== */
.uk-text-small {
  font-size: 0.875rem;
  line-height: 1.5;
}
.uk-text-large {
  font-size: 1.5rem;
  line-height: 1.5;
}
.uk-text-default {
  font-size: 16px;
  line-height: 1.5;
}
/* Weight modifier
 ========================================================================== */
.uk-text-light {
  font-weight: 300;
}
.uk-text-normal {
  font-weight: 400;
}
.uk-text-bold {
  font-weight: 700;
}
.uk-text-lighter {
  font-weight: lighter;
}
.uk-text-bolder {
  font-weight: bolder;
}
/* Style modifier
 ========================================================================== */
.uk-text-italic {
  font-style: italic;
}
/* Transform modifier
 ========================================================================== */
.uk-text-capitalize {
  text-transform: capitalize !important;
}
.uk-text-uppercase {
  text-transform: uppercase !important;
}
.uk-text-lowercase {
  text-transform: lowercase !important;
}
/* Color modifiers
 ========================================================================== */
.uk-text-muted {
  color: #999 !important;
}
.uk-text-emphasis {
  color: #333 !important;
}
.uk-text-primary {
  color: var(--primary) !important;
}
.uk-text-secondary {
  color: var(--secondary) !important;
}
.uk-text-success {
  color: var(--success) !important;
}
.uk-text-warning {
  color: #faa05a !important;
}
.uk-text-danger {
  color: #ff0d0d !important;
}
/* Background modifier
 ========================================================================== */
/*
 * 1. The background clips to the foreground text. Works in Chrome, Firefox, Safari, Edge and Opera
 *    Default color is set to transparent
 * 2. Container fits the text
 * 3. Fallback color for IE11
 */
.uk-text-background {
  /* 1 */
  -webkit-background-clip: text;
  /* 2 */
  display: inline-block;
  /* 3 */
  color: var(--primary) !important;
}
@supports (-webkit-background-clip: text) {
  .uk-text-background {
    background-color: var(--primary);
    color: transparent !important;
  }
}
/* Alignment modifiers
 ========================================================================== */
.uk-text-left {
  text-align: left !important;
}
.uk-text-right {
  text-align: right !important;
}
.uk-text-center {
  text-align: center !important;
}
.uk-text-justify {
  text-align: justify !important;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-text-left\@s {
    text-align: left !important;
  }
  .uk-text-right\@s {
    text-align: right !important;
  }
  .uk-text-center\@s {
    text-align: center !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 1024px) {
  .uk-text-left\@m {
    text-align: left !important;
  }
  .uk-text-right\@m {
    text-align: right !important;
  }
  .uk-text-center\@m {
    text-align: center !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1280px) {
  .uk-text-left\@l {
    text-align: left !important;
  }
  .uk-text-right\@l {
    text-align: right !important;
  }
  .uk-text-center\@l {
    text-align: center !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-text-left\@xl {
    text-align: left !important;
  }
  .uk-text-right\@xl {
    text-align: right !important;
  }
  .uk-text-center\@xl {
    text-align: center !important;
  }
}
/*
 * Vertical
 */
.uk-text-top {
  vertical-align: top !important;
}
.uk-text-middle {
  vertical-align: middle !important;
}
.uk-text-bottom {
  vertical-align: bottom !important;
}
.uk-text-baseline {
  vertical-align: baseline !important;
}
/* Wrap modifiers
 ========================================================================== */
/*
 * Prevent text from wrapping onto multiple lines
 */
.uk-text-nowrap {
  white-space: nowrap;
}
/*
 * 1. Make sure a max-width is set after which truncation can occur
 * 2. Prevent text from wrapping onto multiple lines, and truncate with an ellipsis
 * 3. Fix for table cells
 */
.uk-text-truncate {
  /* 1 */
  max-width: 100%;
  /* 2 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 2 */
th.uk-text-truncate, td.uk-text-truncate {
  max-width: 0;
}
/*
 * 1. Wrap long words onto the next line and break them if they are too long to fit
 * 2. Legacy `word-wrap` as fallback for `overflow-wrap`
 * 3. Fix `overflow-wrap` which doesn't work with table cells in Chrome, Opera, IE11 and Edge
 *    Must use `break-all` to support IE11 and Edge
 * Note: Not using `hyphens: auto;` because it hyphenates text even if not needed
 */
.uk-text-break {
  /* 1 */
  overflow-wrap: break-word;
  /* 2 */
  word-wrap: break-word;
}
/* 3 */
th.uk-text-break, td.uk-text-break {
  word-break: break-all;
}
/* ========================================================================
   Component: Column
 ========================================================================== */
[class*="uk-column-"] {
  column-gap: 30px;
}
/* Desktop and bigger */
@media (min-width: 1280px) {
  [class*="uk-column-"] {
    column-gap: 40px;
  }
}
/*
 * Fix image 1px line wrapping into the next column in Chrome
 */
[class*="uk-column-"] img {
  transform: translate3d(0, 0, 0);
}
/* Divider
 ========================================================================== */
/*
 * 1. Double the column gap
 */
.uk-column-divider {
  column-rule: 1px solid var(--base-border-color);
  /* 1 */
  column-gap: 60px;
}
/* Desktop and bigger */
@media (min-width: 1280px) {
  .uk-column-divider {
    column-gap: 80px;
  }
}
/* Width modifiers
 ========================================================================== */
.uk-column-1-2 {
  column-count: 2;
}
.uk-column-1-3 {
  column-count: 3;
}
.uk-column-1-4 {
  column-count: 4;
}
.uk-column-1-5 {
  column-count: 5;
}
.uk-column-1-6 {
  column-count: 6;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-column-1-2\@s {
    column-count: 2;
  }
  .uk-column-1-3\@s {
    column-count: 3;
  }
  .uk-column-1-4\@s {
    column-count: 4;
  }
  .uk-column-1-5\@s {
    column-count: 5;
  }
  .uk-column-1-6\@s {
    column-count: 6;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 1024px) {
  .uk-column-1-2\@m {
    column-count: 2;
  }
  .uk-column-1-3\@m {
    column-count: 3;
  }
  .uk-column-1-4\@m {
    column-count: 4;
  }
  .uk-column-1-5\@m {
    column-count: 5;
  }
  .uk-column-1-6\@m {
    column-count: 6;
  }
}
/* Desktop and bigger */
@media (min-width: 1280px) {
  .uk-column-1-2\@l {
    column-count: 2;
  }
  .uk-column-1-3\@l {
    column-count: 3;
  }
  .uk-column-1-4\@l {
    column-count: 4;
  }
  .uk-column-1-5\@l {
    column-count: 5;
  }
  .uk-column-1-6\@l {
    column-count: 6;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-column-1-2\@xl {
    column-count: 2;
  }
  .uk-column-1-3\@xl {
    column-count: 3;
  }
  .uk-column-1-4\@xl {
    column-count: 4;
  }
  .uk-column-1-5\@xl {
    column-count: 5;
  }
  .uk-column-1-6\@xl {
    column-count: 6;
  }
}
/* Make element span across all columns
 * Does not work in Firefox yet
 ========================================================================== */
.uk-column-span {
  column-span: all;
}
/* ========================================================================
   Component: Align
 ========================================================================== */
/*
 * Default
 */
[class*="uk-align"] {
  display: block;
  margin-bottom: 30px;
}
* + [class*="uk-align"] {
  margin-top: 30px;
}
/*
 * Center
 */
.uk-align-center {
  margin-left: auto;
  margin-right: auto;
}
/*
 * Left/Right
 */
.uk-align-left {
  margin-top: 0;
  margin-right: 30px;
  float: left;
}
.uk-align-right {
  margin-top: 0;
  margin-left: 30px;
  float: right;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-align-left\@s {
    margin-top: 0;
    margin-right: 30px;
    float: left;
  }
  .uk-align-right\@s {
    margin-top: 0;
    margin-left: 30px;
    float: right;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 1024px) {
  .uk-align-left\@m {
    margin-top: 0;
    margin-right: 30px;
    float: left;
  }
  .uk-align-right\@m {
    margin-top: 0;
    margin-left: 30px;
    float: right;
  }
}
/* Desktop and bigger */
@media (min-width: 1280px) {
  .uk-align-left\@l {
    margin-top: 0;
    float: left;
  }
  .uk-align-right\@l {
    margin-top: 0;
    float: right;
  }
  .uk-align-left, .uk-align-left\@s, .uk-align-left\@m, .uk-align-left\@l {
    margin-right: 40px;
  }
  .uk-align-right, .uk-align-right\@s, .uk-align-right\@m, .uk-align-right\@l {
    margin-left: 40px;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-align-left\@xl {
    margin-top: 0;
    margin-right: 40px;
    float: left;
  }
  .uk-align-right\@xl {
    margin-top: 0;
    margin-left: 40px;
    float: right;
  }
}
/* ========================================================================
   Component: SVG
 ========================================================================== */
/*
 * 1. Fill all SVG elements with the current text color if no `fill` attribute is set
 * 2. Set the fill and stroke color of all SVG elements to the current text color
 */
/* 1 */
.uk-svg, .uk-svg:not(.uk-preserve) [fill*="#"]:not(.uk-preserve) {
  /* 2 */
  fill: currentcolor;
}
.uk-svg:not(.uk-preserve) [stroke*="#"]:not(.uk-preserve) {
  stroke: currentcolor;
}
/*
 * Fix Firefox blurry SVG rendering: https://bugzilla.mozilla.org/show_bug.cgi?id=1046835
 */
.uk-svg {
  transform: translate(0, 0);
}
/* ========================================================================
   Component: Utility
 ========================================================================== */
/* Panel
 ========================================================================== */
.uk-panel {
  display: flow-root;
  position: relative;
  box-sizing: border-box;
}
/*
 * Remove margin from the last-child
 */
.uk-panel > :last-child {
  margin-bottom: 0;
}
/*
 * Scrollable
 */
.uk-panel-scrollable {
  height: 170px;
  padding: 10px;
  border: 1px solid var(--base-border-color);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  resize: both;
}
/* Clearfix
 ========================================================================== */
/*
 * 1. `table-cell` is used with `::before` because `table` creates a 1px gap when it becomes a flex item, only in Webkit
 * 2. `table` is used again with `::after` because `clear` only works with block elements.
 * Note: `display: block` with `overflow: hidden` is currently not working in the latest Safari
 */
/* 1 */
.uk-clearfix::before {
  content: "";
  display: table-cell;
}
/* 2 */
.uk-clearfix::after {
  content: "";
  display: table;
  clear: both;
}
/* Float
 ========================================================================== */
/*
 * 1. Prevent content overflow
 */
.uk-float-left {
  float: left;
}
.uk-float-right {
  float: right;
}
/* 1 */
[class*="uk-float-"] {
  max-width: 100%;
}
/* Overfow
 ========================================================================== */
.uk-overflow-hidden {
  overflow: hidden;
}
/*
 * Enable scrollbars if content is clipped
 * Note: Firefox ignores `padding-bottom` for the scrollable overflow https://bugzilla.mozilla.org/show_bug.cgi?id=748518
 */
.uk-overflow-auto {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.uk-overflow-auto > :last-child {
  margin-bottom: 0;
}
/* Resize
 ========================================================================== */
.uk-resize {
  resize: both;
}
.uk-resize-vertical {
  resize: vertical;
}
/* Display
 ========================================================================== */
.uk-display-block {
  display: block !important;
}
.uk-display-inline {
  display: inline !important;
}
.uk-display-inline-block {
  display: inline-block !important;
}
/* Inline
 ========================================================================== */
/*
 * 1. Container fits its content
 * 2. Create position context
 * 3. Prevent content overflow
 * 4. Behave like most inline-block elements
 * 5. Force hardware acceleration without creating a new stacking context
 *    to fix 1px glitch when combined with overlays and transitions in Webkit
 * 6. Clip child elements
 */
[class*="uk-inline"] {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
  /* 5 */
  -webkit-backface-visibility: hidden;
}
.uk-inline-clip {
  /* 6 */
  overflow: hidden;
}
/* Responsive objects
 ========================================================================== */
/*
 * Preserve original dimensions
 * Because `img, `video`, `canvas` and  `audio` are already responsive by default, see Base component
 */
.uk-preserve-width, .uk-preserve-width canvas, .uk-preserve-width img, .uk-preserve-width svg, .uk-preserve-width video {
  max-width: none;
}
/*
 * Responsiveness
 * Corrects `max-width` and `max-height` behavior if padding and border are used
 */
.uk-responsive-width, .uk-responsive-height {
  box-sizing: border-box;
}
/*
 * 1. Set a maximum width. `important` needed to override `uk-preserve-width img`
 * 2. Auto scale the height. Only needed if `height` attribute is present
 */
.uk-responsive-width {
  /* 1 */
  max-width: 100% !important;
  /* 2 */
  height: auto;
}
/*
 * 1. Set a maximum height. Only works if the parent element has a fixed height
 * 2. Auto scale the width. Only needed if `width` attribute is present
 * 3. Reset max-width, which `img, `video`, `canvas` and  `audio` already have by default
 */
.uk-responsive-height {
  /* 1 */
  max-height: 100%;
  /* 2 */
  width: auto;
  /* 3 */
  max-width: none;
}
/* Border
 ========================================================================== */
.uk-border-circle {
  border-radius: 50%;
}
.uk-border-pill {
  border-radius: 500px;
}
.uk-border-rounded {
  border-radius: 5px;
}
/*
 * Fix `overflow: hidden` to be ignored with border-radius and CSS transforms in Webkit
 */
.uk-inline-clip[class*="uk-border-"] {
  -webkit-transform: translateZ(0);
}
/* Box-shadow
 ========================================================================== */
.uk-box-shadow-small {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.uk-box-shadow-medium {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.uk-box-shadow-large {
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
.uk-box-shadow-xlarge {
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
}
/*
 * Hover
 */
[class*="uk-box-shadow-hover"] {
  transition: box-shadow 0.1s ease-in-out;
}
.uk-box-shadow-hover-small:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.uk-box-shadow-hover-medium:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.uk-box-shadow-hover-large:hover {
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
.uk-box-shadow-hover-xlarge:hover {
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
}
/* Box-shadow bottom
 ========================================================================== */
/*
 * 1. Set position.
 * 2. Set style
 * 3. Blur doesn't work on pseudo elements with negative `z-index` in Edge.
 *    Solved by using `before` and add position context to child elements.
 */
@supports (filter: blur(0)) {
  .uk-box-shadow-bottom {
    display: inline-block;
    position: relative;
    max-width: 100%;
    vertical-align: middle;
  }
  .uk-box-shadow-bottom::before {
    content: "";
    /* 1 */
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    /* 2 */
    height: 30px;
    border-radius: 100%;
    background: #444;
    filter: blur(20px);
  }
  /* 3 */
  .uk-box-shadow-bottom > * {
    position: relative;
  }
}
/* Drop cap
 ========================================================================== */
/*
 * 1. Firefox doesn't apply `::first-letter` if the first letter is inside child elements
 *    https://bugzilla.mozilla.org/show_bug.cgi?id=214004
 * 2. In Firefox, a floating `::first-letter` doesn't have a line box and there for no `line-height`
 *    https://bugzilla.mozilla.org/show_bug.cgi?id=317933
 * 3. Caused by 1.: Edge creates two nested `::first-letter` containers, one for each selector
 *    This doubles the `font-size` exponential when using the `em` unit.
 */
.uk-dropcap::first-letter, .uk-dropcap > p:first-of-type::first-letter {
  /* 1 */
  display: block;
  margin-right: 10px;
  float: left;
  font-size: 4.5em;
  line-height: 1;
  margin-bottom: -2px;
}
/* 2 */
@-moz-document url-prefix() {
  .uk-dropcap::first-letter, .uk-dropcap > p:first-of-type::first-letter {
    margin-top: 1.1%;
  }
}
/* 3 */
@supports (-ms-ime-align: auto) {
  .uk-dropcap > p:first-of-type::first-letter {
    font-size: 1em;
  }
}
/* Logo
 ========================================================================== */
/*
 * 1. Required for `a`
 */
.uk-logo {
  font-size: 1.5rem;
  font-family: var(--base-font-family);
  color: var(--base-color);
  /* 1 */
  text-decoration: none;
}
/* Hover + Focus */
.uk-logo:hover, .uk-logo:focus {
  color: var(--base-color);
  outline: none;
  /* 1 */
  text-decoration: none;
}
.uk-logo-inverse {
  display: none;
}
/* Disabled State
 ========================================================================== */
.uk-disabled {
  pointer-events: none;
}
/* Drag State
 ========================================================================== */
/*
 * 1. Needed if moving over elements with have their own cursor on hover, e.g. links or buttons
 * 2. Fix dragging over iframes
 */
.uk-drag, .uk-drag * {
  /* 1 */
  cursor: move;
}
/* 2 */
.uk-drag iframe {
  pointer-events: none;
}
/* Dragover State
 ========================================================================== */
/*
 * Create a box-shadow when dragging a file over the upload area
 */
.uk-dragover {
  box-shadow: 0 0 20px rgba(100, 100, 100, 0.3);
}
/* Blend modes
 ========================================================================== */
.uk-blend-multiply {
  mix-blend-mode: multiply;
}
.uk-blend-screen {
  mix-blend-mode: screen;
}
.uk-blend-overlay {
  mix-blend-mode: overlay;
}
.uk-blend-darken {
  mix-blend-mode: darken;
}
.uk-blend-lighten {
  mix-blend-mode: lighten;
}
.uk-blend-color-dodge {
  mix-blend-mode: color-dodge;
}
.uk-blend-color-burn {
  mix-blend-mode: color-burn;
}
.uk-blend-hard-light {
  mix-blend-mode: hard-light;
}
.uk-blend-soft-light {
  mix-blend-mode: soft-light;
}
.uk-blend-difference {
  mix-blend-mode: difference;
}
.uk-blend-exclusion {
  mix-blend-mode: exclusion;
}
.uk-blend-hue {
  mix-blend-mode: hue;
}
.uk-blend-saturation {
  mix-blend-mode: saturation;
}
.uk-blend-color {
  mix-blend-mode: color;
}
.uk-blend-luminosity {
  mix-blend-mode: luminosity;
}
/* Transform
========================================================================== */
.uk-transform-center {
  transform: translate(-50%, -50%);
}
/* Transform Origin
========================================================================== */
.uk-transform-origin-top-left {
  transform-origin: 0 0;
}
.uk-transform-origin-top-center {
  transform-origin: 50% 0;
}
.uk-transform-origin-top-right {
  transform-origin: 100% 0;
}
.uk-transform-origin-center-left {
  transform-origin: 0 50%;
}
.uk-transform-origin-center-right {
  transform-origin: 100% 50%;
}
.uk-transform-origin-bottom-left {
  transform-origin: 0 100%;
}
.uk-transform-origin-bottom-center {
  transform-origin: 50% 100%;
}
.uk-transform-origin-bottom-right {
  transform-origin: 100% 100%;
}
/* ========================================================================
   Component: Flex
 ========================================================================== */
.uk-flex {
  display: flex;
}
.uk-flex-inline {
  display: inline-flex;
}
/*
 * Remove pseudo elements created by micro clearfix as precaution
 */
.uk-flex::before, .uk-flex::after, .uk-flex-inline::before, .uk-flex-inline::after {
  display: none;
}
/* Alignment
 ========================================================================== */
/*
 * Align items along the main axis of the current line of the flex container
 * Row: Horizontal
 */
.uk-flex-left {
  justify-content: flex-start;
}
.uk-flex-center {
  justify-content: center;
}
.uk-flex-right {
  justify-content: flex-end;
}
.uk-flex-between {
  justify-content: space-between;
}
.uk-flex-around {
  justify-content: space-around;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-flex-left\@s {
    justify-content: flex-start;
  }
  .uk-flex-center\@s {
    justify-content: center;
  }
  .uk-flex-right\@s {
    justify-content: flex-end;
  }
  .uk-flex-between\@s {
    justify-content: space-between;
  }
  .uk-flex-around\@s {
    justify-content: space-around;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 1024px) {
  .uk-flex-left\@m {
    justify-content: flex-start;
  }
  .uk-flex-center\@m {
    justify-content: center;
  }
  .uk-flex-right\@m {
    justify-content: flex-end;
  }
  .uk-flex-between\@m {
    justify-content: space-between;
  }
  .uk-flex-around\@m {
    justify-content: space-around;
  }
}
/* Desktop and bigger */
@media (min-width: 1280px) {
  .uk-flex-left\@l {
    justify-content: flex-start;
  }
  .uk-flex-center\@l {
    justify-content: center;
  }
  .uk-flex-right\@l {
    justify-content: flex-end;
  }
  .uk-flex-between\@l {
    justify-content: space-between;
  }
  .uk-flex-around\@l {
    justify-content: space-around;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-flex-left\@xl {
    justify-content: flex-start;
  }
  .uk-flex-center\@xl {
    justify-content: center;
  }
  .uk-flex-right\@xl {
    justify-content: flex-end;
  }
  .uk-flex-between\@xl {
    justify-content: space-between;
  }
  .uk-flex-around\@xl {
    justify-content: space-around;
  }
}
/*
 * Align items in the cross axis of the current line of the flex container
 * Row: Vertical
 */
.uk-flex-stretch {
  align-items: stretch;
}
.uk-flex-top {
  align-items: flex-start;
}
.uk-flex-middle {
  align-items: center;
}
.uk-flex-bottom {
  align-items: flex-end;
}
/* Direction
 ========================================================================== */
.uk-flex-row {
  flex-direction: row;
}
.uk-flex-row-reverse {
  flex-direction: row-reverse;
}
.uk-flex-column {
  flex-direction: column;
}
.uk-flex-column-reverse {
  flex-direction: column-reverse;
}
/* Wrap
 ========================================================================== */
.uk-flex-nowrap {
  flex-wrap: nowrap;
}
.uk-flex-wrap {
  flex-wrap: wrap;
}
.uk-flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
/*
 * Aligns items within the flex container when there is extra space in the cross-axis
 * Only works if there is more than one line of flex items
 */
.uk-flex-wrap-stretch {
  align-content: stretch;
}
.uk-flex-wrap-top {
  align-content: flex-start;
}
.uk-flex-wrap-middle {
  align-content: center;
}
.uk-flex-wrap-bottom {
  align-content: flex-end;
}
.uk-flex-wrap-between {
  align-content: space-between;
}
.uk-flex-wrap-around {
  align-content: space-around;
}
/* Item ordering
 ========================================================================== */
/*
 * Default is 0
 */
.uk-flex-first {
  order: -1;
}
.uk-flex-last {
  order: 99;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-flex-first\@s {
    order: -1;
  }
  .uk-flex-last\@s {
    order: 99;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 1024px) {
  .uk-flex-first\@m {
    order: -1;
  }
  .uk-flex-last\@m {
    order: 99;
  }
}
/* Desktop and bigger */
@media (min-width: 1280px) {
  .uk-flex-first\@l {
    order: -1;
  }
  .uk-flex-last\@l {
    order: 99;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-flex-first\@xl {
    order: -1;
  }
  .uk-flex-last\@xl {
    order: 99;
  }
}
/* Item dimensions
 ========================================================================== */
/*
 * Initial: 0 1 auto
 * Content dimensions, but shrinks
 */
/*
 * No Flex: 0 0 auto
 * Content dimensions
 */
.uk-flex-none {
  flex: none;
}
/*
 * Relative Flex: 1 1 auto
 * Space is allocated considering content
 */
.uk-flex-auto {
  flex: auto;
}
/*
 * Absolute Flex: 1 1 0%
 * Space is allocated solely based on flex
 */
.uk-flex-1 {
  flex: 1;
}
/* ========================================================================
   Component: Margin
 ========================================================================== */
/*
 * Default
 */
.uk-margin {
  margin-bottom: var(--gap, 20px);
}
* + .uk-margin {
  margin-top: var(--gap, 20px) !important;
}
.uk-margin-top {
  margin-top: var(--gap, 20px) !important;
}
.uk-margin-bottom {
  margin-bottom: var(--gap, 20px) !important;
}
.uk-margin-left {
  margin-left: var(--gap, 20px) !important;
}
.uk-margin-right {
  margin-right: var(--gap, 20px) !important;
}
/* Small
 ========================================================================== */
.uk-margin-small {
  margin-bottom: 10px;
}
* + .uk-margin-small {
  margin-top: 10px !important;
}
.uk-margin-small-top {
  margin-top: 10px !important;
}
.uk-margin-small-bottom {
  margin-bottom: 10px !important;
}
.uk-margin-small-left {
  margin-left: 10px !important;
}
.uk-margin-small-right {
  margin-right: 10px !important;
}
/* Medium
 ========================================================================== */
.uk-margin-medium {
  margin-bottom: 40px;
}
* + .uk-margin-medium {
  margin-top: 40px !important;
}
.uk-margin-medium-top {
  margin-top: 40px !important;
}
.uk-margin-medium-bottom {
  margin-bottom: 40px !important;
}
.uk-margin-medium-left {
  margin-left: 40px !important;
}
.uk-margin-medium-right {
  margin-right: 40px !important;
}
/* Large
 ========================================================================== */
.uk-margin-large {
  margin-bottom: 40px;
}
* + .uk-margin-large {
  margin-top: 40px !important;
}
.uk-margin-large-top {
  margin-top: 40px !important;
}
.uk-margin-large-bottom {
  margin-bottom: 40px !important;
}
.uk-margin-large-left {
  margin-left: 40px !important;
}
.uk-margin-large-right {
  margin-right: 40px !important;
}
/* Desktop and bigger */
@media (min-width: 1280px) {
  .uk-margin-large {
    margin-bottom: 60px;
  }
  * + .uk-margin-large {
    margin-top: 60px !important;
  }
  .uk-margin-large-top {
    margin-top: 60px !important;
  }
  .uk-margin-large-bottom {
    margin-bottom: 60px !important;
  }
  .uk-margin-large-left {
    margin-left: 60px !important;
  }
  .uk-margin-large-right {
    margin-right: 60px !important;
  }
}
/* XLarge
 ========================================================================== */
.uk-margin-xlarge {
  margin-bottom: 60px;
}
* + .uk-margin-xlarge {
  margin-top: 60px !important;
}
.uk-margin-xlarge-top {
  margin-top: 60px !important;
}
.uk-margin-xlarge-bottom {
  margin-bottom: 60px !important;
}
.uk-margin-xlarge-left {
  margin-left: 60px !important;
}
.uk-margin-xlarge-right {
  margin-right: 60px !important;
}
/* Desktop and bigger */
@media (min-width: 1280px) {
  .uk-margin-xlarge {
    margin-bottom: 140px;
  }
  * + .uk-margin-xlarge {
    margin-top: 140px !important;
  }
  .uk-margin-xlarge-top {
    margin-top: 140px !important;
  }
  .uk-margin-xlarge-bottom {
    margin-bottom: 140px !important;
  }
  .uk-margin-xlarge-left {
    margin-left: 140px !important;
  }
  .uk-margin-xlarge-right {
    margin-right: 140px !important;
  }
}
/* Auto
 ========================================================================== */
.uk-margin-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.uk-margin-auto-top {
  margin-top: auto !important;
}
.uk-margin-auto-bottom {
  margin-bottom: auto !important;
}
.uk-margin-auto-left {
  margin-left: auto !important;
}
.uk-margin-auto-right {
  margin-right: auto !important;
}
.uk-margin-auto-vertical {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-margin-auto\@s {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .uk-margin-auto-left\@s {
    margin-left: auto !important;
  }
  .uk-margin-auto-right\@s {
    margin-right: auto !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 1024px) {
  .uk-margin-auto\@m {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .uk-margin-auto-left\@m {
    margin-left: auto !important;
  }
  .uk-margin-auto-right\@m {
    margin-right: auto !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1280px) {
  .uk-margin-auto\@l {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .uk-margin-auto-left\@l {
    margin-left: auto !important;
  }
  .uk-margin-auto-right\@l {
    margin-right: auto !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-margin-auto\@xl {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .uk-margin-auto-left\@xl {
    margin-left: auto !important;
  }
  .uk-margin-auto-right\@xl {
    margin-right: auto !important;
  }
}
/* Remove
 ========================================================================== */
.uk-margin-remove {
  margin: 0 !important;
}
.uk-margin-remove-top {
  margin-top: 0 !important;
}
.uk-margin-remove-bottom {
  margin-bottom: 0 !important;
}
.uk-margin-remove-left {
  margin-left: 0 !important;
}
.uk-margin-remove-right {
  margin-right: 0 !important;
}
.uk-margin-remove-vertical {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.uk-margin-remove-adjacent + *, .uk-margin-remove-first-child > :first-child {
  margin-top: 0 !important;
}
.uk-margin-remove-last-child > :last-child {
  margin-bottom: 0 !important;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-margin-remove-left\@s {
    margin-left: 0 !important;
  }
  .uk-margin-remove-right\@s {
    margin-right: 0 !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 1024px) {
  .uk-margin-remove-left\@m {
    margin-left: 0 !important;
  }
  .uk-margin-remove-right\@m {
    margin-right: 0 !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1280px) {
  .uk-margin-remove-left\@l {
    margin-left: 0 !important;
  }
  .uk-margin-remove-right\@l {
    margin-right: 0 !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-margin-remove-left\@xl {
    margin-left: 0 !important;
  }
  .uk-margin-remove-right\@xl {
    margin-right: 0 !important;
  }
}
/* ========================================================================
   Component: Padding
 ========================================================================== */
.uk-padding {
  padding: 30px;
}
/* Desktop and bigger */
@media (min-width: 1280px) {
  .uk-padding {
    padding: 40px;
  }
}
/* Small
 ========================================================================== */
.uk-padding-small {
  padding: var(--gap);
}
/* Large
 ========================================================================== */
.uk-padding-large {
  padding: 30px;
}
/* Desktop and bigger */
@media (min-width: 1280px) {
  .uk-padding-large {
    padding: 70px;
  }
}
/* Remove
 ========================================================================== */
.uk-padding-remove {
  padding: 0 !important;
}
.uk-padding-remove-top {
  padding-top: 0 !important;
}
.uk-padding-remove-bottom {
  padding-bottom: 0 !important;
}
.uk-padding-remove-left {
  padding-left: 0 !important;
}
.uk-padding-remove-right {
  padding-right: 0 !important;
}
.uk-padding-remove-vertical {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.uk-padding-remove-horizontal {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* ========================================================================
   Component: Inverse
 ========================================================================== */
/*
 * Implemented class depends on the general theme color
 * `uk-light` is for light colors on dark backgrounds
 * `uk-dark` is or dark colors on light backgrounds
 */
.uk-light, .uk-overlay-primary {
  color: #fff;
}
.uk-light a, .uk-overlay-primary a, .uk-light .uk-link, .uk-overlay-primary .uk-link {
  color: #fff;
}
.uk-light a:hover, .uk-overlay-primary a:hover, .uk-light .uk-link:hover, .uk-overlay-primary .uk-link:hover {
  color: #fff;
}
.uk-light :not(pre) > code, .uk-overlay-primary :not(pre) > code, .uk-light :not(pre) > kbd, .uk-overlay-primary :not(pre) > kbd, .uk-light :not(pre) > samp, .uk-overlay-primary :not(pre) > samp {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.uk-light em, .uk-overlay-primary em {
  color: #fff;
}
.uk-light h1, .uk-overlay-primary h1, .uk-light .uk-h1, .uk-overlay-primary .uk-h1, .uk-light h2, .uk-overlay-primary h2, .uk-light .uk-h2, .uk-overlay-primary .uk-h2, .uk-light h3, .uk-overlay-primary h3, .uk-light .uk-h3, .uk-overlay-primary .uk-h3, .uk-light h4, .uk-overlay-primary h4, .uk-light .uk-h4, .uk-overlay-primary .uk-h4, .uk-light h5, .uk-overlay-primary h5, .uk-light .uk-h5, .uk-overlay-primary .uk-h5, .uk-light h6, .uk-overlay-primary h6, .uk-light .uk-h6, .uk-overlay-primary .uk-h6, .uk-light .uk-heading-small, .uk-overlay-primary .uk-heading-small, .uk-light .uk-heading-medium, .uk-overlay-primary .uk-heading-medium, .uk-light .uk-heading-large, .uk-overlay-primary .uk-heading-large, .uk-light .uk-heading-xlarge, .uk-overlay-primary .uk-heading-xlarge, .uk-light .uk-heading-2xlarge, .uk-overlay-primary .uk-heading-2xlarge {
  color: #fff;
}
.uk-light blockquote, .uk-overlay-primary blockquote {
  color: #fff;
}
.uk-light blockquote footer, .uk-overlay-primary blockquote footer {
  color: #fff;
}
.uk-light hr, .uk-overlay-primary hr, .uk-light .uk-hr, .uk-overlay-primary .uk-hr {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light a.uk-link-muted, .uk-overlay-primary a.uk-link-muted, .uk-light .uk-link-muted a, .uk-overlay-primary .uk-link-muted a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light a.uk-link-muted:hover, .uk-overlay-primary a.uk-link-muted:hover, .uk-light .uk-link-muted a:hover, .uk-overlay-primary .uk-link-muted a:hover, .uk-light .uk-link-toggle:hover .uk-link-muted, .uk-overlay-primary .uk-link-toggle:hover .uk-link-muted, .uk-light .uk-link-toggle:focus .uk-link-muted, .uk-overlay-primary .uk-link-toggle:focus .uk-link-muted {
  color: #fff;
}
.uk-light a.uk-link-text:hover, .uk-overlay-primary a.uk-link-text:hover, .uk-light .uk-link-text a:hover, .uk-overlay-primary .uk-link-text a:hover, .uk-light .uk-link-toggle:hover .uk-link-text, .uk-overlay-primary .uk-link-toggle:hover .uk-link-text, .uk-light .uk-link-toggle:focus .uk-link-text, .uk-overlay-primary .uk-link-toggle:focus .uk-link-text {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light a.uk-link-heading:hover, .uk-overlay-primary a.uk-link-heading:hover, .uk-light .uk-link-heading a:hover, .uk-overlay-primary .uk-link-heading a:hover, .uk-light .uk-link-toggle:hover .uk-link-heading, .uk-overlay-primary .uk-link-toggle:hover .uk-link-heading, .uk-light .uk-link-toggle:focus .uk-link-heading, .uk-overlay-primary .uk-link-toggle:focus .uk-link-heading {
  color: #fff;
}
.uk-light .uk-heading-divider, .uk-overlay-primary .uk-heading-divider {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-heading-bullet::before, .uk-overlay-primary .uk-heading-bullet::before {
  border-left-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-heading-line > ::before, .uk-overlay-primary .uk-heading-line > ::before, .uk-light .uk-heading-line > ::after, .uk-overlay-primary .uk-heading-line > ::after {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-divider-icon, .uk-overlay-primary .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(255, 255, 255, 0.2)%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");
}
.uk-light .uk-divider-icon::before, .uk-overlay-primary .uk-divider-icon::before, .uk-light .uk-divider-icon::after, .uk-overlay-primary .uk-divider-icon::after {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-divider-small::after, .uk-overlay-primary .uk-divider-small::after {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-divider-vertical, .uk-overlay-primary .uk-divider-vertical {
  border-left-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-list-muted > ::before, .uk-overlay-primary .uk-list-muted > ::before {
  color: rgba(255, 255, 255, 0.5) !important;
}
.uk-light .uk-list-emphasis > ::before, .uk-overlay-primary .uk-list-emphasis > ::before {
  color: #fff !important;
}
.uk-light .uk-list-primary > ::before, .uk-overlay-primary .uk-list-primary > ::before {
  color: #fff !important;
}
.uk-light .uk-list-secondary > ::before, .uk-overlay-primary .uk-list-secondary > ::before {
  color: #fff !important;
}
.uk-light .uk-list-bullet > ::before, .uk-overlay-primary .uk-list-bullet > ::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%22white%22%20cx%3D%223%22%20cy%3D%223%22%20r%3D%223%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-light .uk-list-divider > :nth-child(n+2), .uk-overlay-primary .uk-list-divider > :nth-child(n+2) {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-list-striped > *:nth-of-type(odd), .uk-overlay-primary .uk-list-striped > *:nth-of-type(odd) {
  border-top-color: rgba(255, 255, 255, 0.2);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-list-striped > :nth-of-type(odd), .uk-overlay-primary .uk-list-striped > :nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.1);
}
.uk-light .uk-icon-link, .uk-overlay-primary .uk-icon-link {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-icon-link:hover, .uk-overlay-primary .uk-icon-link:hover, .uk-light .uk-icon-link:focus, .uk-overlay-primary .uk-icon-link:focus {
  color: #fff;
}
.uk-light .uk-icon-link:active, .uk-overlay-primary .uk-icon-link:active, .uk-light .uk-active > .uk-icon-link, .uk-overlay-primary .uk-active > .uk-icon-link {
  color: #fff;
}
.uk-light .uk-icon-button, .uk-overlay-primary .uk-icon-button {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-icon-button:hover, .uk-overlay-primary .uk-icon-button:hover, .uk-light .uk-icon-button:focus, .uk-overlay-primary .uk-icon-button:focus {
  background-color: rgba(242, 242, 242, 0.1);
  color: #fff;
}
.uk-light .uk-icon-button:active, .uk-overlay-primary .uk-icon-button:active {
  background-color: rgba(230, 230, 230, 0.1);
  color: #fff;
}
.uk-light .uk-input, .uk-overlay-primary .uk-input, .uk-light .fw-control-input, .uk-overlay-primary .fw-control-input, .uk-light .uk-select, .uk-overlay-primary .uk-select, .uk-light .fw-control-select, .uk-overlay-primary .fw-control-select, .uk-light .uk-textarea, .uk-overlay-primary .uk-textarea, .uk-light .fw-control-textarea, .uk-overlay-primary .fw-control-textarea {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  background-clip: padding-box;
  border-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-input:focus, .uk-overlay-primary .uk-input:focus, .uk-light .fw-control-input:focus, .uk-overlay-primary .fw-control-input:focus, .uk-light .uk-select:focus, .uk-overlay-primary .uk-select:focus, .uk-light .fw-control-select:focus, .uk-overlay-primary .fw-control-select:focus, .uk-light .uk-textarea:focus, .uk-overlay-primary .uk-textarea:focus, .uk-light .fw-control-textarea:focus, .uk-overlay-primary .fw-control-textarea:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}
.uk-light .uk-input::-ms-input-placeholder, .uk-overlay-primary .uk-input::-ms-input-placeholder, .uk-light .fw-control-input::-ms-input-placeholder, .uk-overlay-primary .fw-control-input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.uk-light .uk-input::placeholder, .uk-overlay-primary .uk-input::placeholder, .uk-light .fw-control-input::placeholder, .uk-overlay-primary .fw-control-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-textarea::-ms-input-placeholder, .uk-overlay-primary .uk-textarea::-ms-input-placeholder, .uk-light .fw-control-textarea::-ms-input-placeholder, .uk-overlay-primary .fw-control-textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.uk-light .uk-textarea::placeholder, .uk-overlay-primary .uk-textarea::placeholder, .uk-light .fw-control-textarea::placeholder, .uk-overlay-primary .fw-control-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-select:not([multiple]):not([size]), .uk-overlay-primary .uk-select:not([multiple]):not([size]), .uk-light .fw-control-select:not([multiple]):not([size]), .uk-overlay-primary .fw-control-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%22white%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22white%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.uk-light .uk-input[list]:hover, .uk-overlay-primary .uk-input[list]:hover, .uk-light .fw-control-input[list]:hover, .uk-overlay-primary .fw-control-input[list]:hover, .uk-light .uk-input[list]:focus, .uk-overlay-primary .uk-input[list]:focus, .uk-light .fw-control-input[list]:focus, .uk-overlay-primary .fw-control-input[list]:focus {
  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%22white%22%20points%3D%2212%2012%208%206%2016%206%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.uk-light .uk-radio, .uk-overlay-primary .uk-radio, .uk-light .uk-checkbox, .uk-overlay-primary .uk-checkbox {
  background-color: rgba(242, 242, 242, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-radio:focus, .uk-overlay-primary .uk-radio:focus, .uk-light .uk-checkbox:focus, .uk-overlay-primary .uk-checkbox:focus {
  border-color: #fff;
}
.uk-light .uk-radio:checked, .uk-overlay-primary .uk-radio:checked, .uk-light .uk-checkbox:checked, .uk-overlay-primary .uk-checkbox:checked, .uk-light .uk-checkbox:indeterminate, .uk-overlay-primary .uk-checkbox:indeterminate {
  background-color: #fff;
  border-color: #fff;
}
.uk-light .uk-radio:checked:focus, .uk-overlay-primary .uk-radio:checked:focus, .uk-light .uk-checkbox:checked:focus, .uk-overlay-primary .uk-checkbox:checked:focus, .uk-light .uk-checkbox:indeterminate:focus, .uk-overlay-primary .uk-checkbox:indeterminate:focus {
  background-color: #e6e6e6;
}
.uk-light .uk-radio:checked, .uk-overlay-primary .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%22var(--base-color)%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-light .uk-checkbox:checked, .uk-overlay-primary .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%22var(--base-color)%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");
}
.uk-light .uk-checkbox:indeterminate, .uk-overlay-primary .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%22var(--base-color)%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-light .uk-form-label, .uk-overlay-primary .uk-form-label {
  color: #fff;
}
.uk-light .uk-form-icon, .uk-overlay-primary .uk-form-icon {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-form-icon:hover, .uk-overlay-primary .uk-form-icon:hover {
  color: #fff;
}
.uk-light .uk-button-default, .uk-overlay-primary .uk-button-default {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.uk-light .uk-button-default:hover, .uk-overlay-primary .uk-button-default:hover, .uk-light .uk-button-default:focus, .uk-overlay-primary .uk-button-default:focus {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.uk-light .uk-button-default:active, .uk-overlay-primary .uk-button-default:active, .uk-light .uk-button-default.uk-active, .uk-overlay-primary .uk-button-default.uk-active {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.uk-light .uk-button-primary, .uk-overlay-primary .uk-button-primary {
  background-color: #fff;
  color: var(--base-color);
}
.uk-light .uk-button-primary:hover, .uk-overlay-primary .uk-button-primary:hover, .uk-light .uk-button-primary:focus, .uk-overlay-primary .uk-button-primary:focus {
  background-color: #f2f2f2;
  color: var(--base-color);
}
.uk-light .uk-button-primary:active, .uk-overlay-primary .uk-button-primary:active, .uk-light .uk-button-primary.uk-active, .uk-overlay-primary .uk-button-primary.uk-active {
  background-color: #e6e6e6;
  color: var(--base-color);
}
.uk-light .uk-button-secondary, .uk-overlay-primary .uk-button-secondary {
  background-color: #fff;
  color: var(--base-color);
}
.uk-light .uk-button-secondary:hover, .uk-overlay-primary .uk-button-secondary:hover, .uk-light .uk-button-secondary:focus, .uk-overlay-primary .uk-button-secondary:focus {
  background-color: #f2f2f2;
  color: var(--base-color);
}
.uk-light .uk-button-secondary:active, .uk-overlay-primary .uk-button-secondary:active, .uk-light .uk-button-secondary.uk-active, .uk-overlay-primary .uk-button-secondary.uk-active {
  background-color: #e6e6e6;
  color: var(--base-color);
}
.uk-light .uk-button-text, .uk-overlay-primary .uk-button-text {
  color: #fff;
}
.uk-light .uk-button-text::before, .uk-overlay-primary .uk-button-text::before {
  border-bottom-color: #fff;
}
.uk-light .uk-button-text:hover, .uk-overlay-primary .uk-button-text:hover, .uk-light .uk-button-text:focus, .uk-overlay-primary .uk-button-text:focus {
  color: #fff;
}
.uk-light .uk-button-text:disabled, .uk-overlay-primary .uk-button-text:disabled {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-button-link, .uk-overlay-primary .uk-button-link {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-button-link:hover, .uk-overlay-primary .uk-button-link:hover, .uk-light .uk-button-link:focus, .uk-overlay-primary .uk-button-link:focus {
  color: #fff;
}
.uk-light .uk-grid-divider > :not(.uk-first-column)::before, .uk-overlay-primary .uk-grid-divider > :not(.uk-first-column)::before {
  border-left-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before, .uk-overlay-primary .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-close, .uk-overlay-primary .uk-close {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-close:hover, .uk-overlay-primary .uk-close:hover, .uk-light .uk-close:focus, .uk-overlay-primary .uk-close:focus {
  color: #fff;
}
.uk-light .uk-totop, .uk-overlay-primary .uk-totop {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-totop:hover, .uk-overlay-primary .uk-totop:hover, .uk-light .uk-totop:focus, .uk-overlay-primary .uk-totop:focus {
  color: #fff;
}
.uk-light .uk-totop:active, .uk-overlay-primary .uk-totop:active {
  color: #fff;
}
.uk-light .uk-badge, .uk-overlay-primary .uk-badge {
  background-color: #fff;
  color: var(--base-color);
}
.uk-light .uk-badge:hover, .uk-overlay-primary .uk-badge:hover, .uk-light .uk-badge:focus, .uk-overlay-primary .uk-badge:focus {
  color: var(--base-color);
}
.uk-light .uk-label, .uk-overlay-primary .uk-label {
  background-color: #fff;
  color: var(--base-color);
}
.uk-light .uk-article-meta, .uk-overlay-primary .uk-article-meta {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-search-input, .uk-overlay-primary .uk-search-input {
  color: #fff;
}
.uk-light .uk-search-input:-ms-input-placeholder, .uk-overlay-primary .uk-search-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.uk-light .uk-search-input::placeholder, .uk-overlay-primary .uk-search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-search .uk-search-icon, .uk-overlay-primary .uk-search .uk-search-icon {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-search .uk-search-icon:hover, .uk-overlay-primary .uk-search .uk-search-icon:hover {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-search-default .uk-search-input, .uk-overlay-primary .uk-search-default .uk-search-input {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-search-default .uk-search-input:focus, .uk-overlay-primary .uk-search-default .uk-search-input:focus {
  background-color: transparent;
}
.uk-light .uk-search-navbar .uk-search-input, .uk-overlay-primary .uk-search-navbar .uk-search-input {
  background-color: transparent;
}
.uk-light .uk-search-large .uk-search-input, .uk-overlay-primary .uk-search-large .uk-search-input {
  background-color: transparent;
}
.uk-light .uk-search-toggle, .uk-overlay-primary .uk-search-toggle {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-search-toggle:hover, .uk-overlay-primary .uk-search-toggle:hover, .uk-light .uk-search-toggle:focus, .uk-overlay-primary .uk-search-toggle:focus {
  color: #fff;
}
.uk-light .uk-nav-parent-icon > .uk-parent > a::after, .uk-overlay-primary .uk-nav-parent-icon > .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%22white%22%20stroke-width%3D%221.1%22%20points%3D%2210%201%204%207%2010%2013%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-light .uk-nav-parent-icon > .uk-parent.uk-open > a::after, .uk-overlay-primary .uk-nav-parent-icon > .uk-parent.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%22white%22%20stroke-width%3D%221.1%22%20points%3D%221%204%207%2010%2013%204%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-light .uk-nav-default > li > a, .uk-overlay-primary .uk-nav-default > li > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-nav-default > li > a:hover, .uk-overlay-primary .uk-nav-default > li > a:hover, .uk-light .uk-nav-default > li > a:focus, .uk-overlay-primary .uk-nav-default > li > a:focus {
  color: #fff;
}
.uk-light .uk-nav-default > li.uk-active > a, .uk-overlay-primary .uk-nav-default > li.uk-active > a {
  color: #fff;
}
.uk-light .uk-nav-default .uk-nav-header, .uk-overlay-primary .uk-nav-default .uk-nav-header {
  color: #fff;
}
.uk-light .uk-nav-default .uk-nav-divider, .uk-overlay-primary .uk-nav-default .uk-nav-divider {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-nav-default .uk-nav-sub a, .uk-overlay-primary .uk-nav-default .uk-nav-sub a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-nav-default .uk-nav-sub a:hover, .uk-overlay-primary .uk-nav-default .uk-nav-sub a:hover, .uk-light .uk-nav-default .uk-nav-sub a:focus, .uk-overlay-primary .uk-nav-default .uk-nav-sub a:focus {
  color: #fff;
}
.uk-light .uk-nav-default .uk-nav-sub li.uk-active > a, .uk-overlay-primary .uk-nav-default .uk-nav-sub li.uk-active > a {
  color: #fff;
}
.uk-light .uk-nav-primary > li > a, .uk-overlay-primary .uk-nav-primary > li > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-nav-primary > li > a:hover, .uk-overlay-primary .uk-nav-primary > li > a:hover, .uk-light .uk-nav-primary > li > a:focus, .uk-overlay-primary .uk-nav-primary > li > a:focus {
  color: #fff;
}
.uk-light .uk-nav-primary > li.uk-active > a, .uk-overlay-primary .uk-nav-primary > li.uk-active > a {
  color: #fff;
}
.uk-light .uk-nav-primary .uk-nav-header, .uk-overlay-primary .uk-nav-primary .uk-nav-header {
  color: #fff;
}
.uk-light .uk-nav-primary .uk-nav-divider, .uk-overlay-primary .uk-nav-primary .uk-nav-divider {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-nav-primary .uk-nav-sub a, .uk-overlay-primary .uk-nav-primary .uk-nav-sub a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-nav-primary .uk-nav-sub a:hover, .uk-overlay-primary .uk-nav-primary .uk-nav-sub a:hover, .uk-light .uk-nav-primary .uk-nav-sub a:focus, .uk-overlay-primary .uk-nav-primary .uk-nav-sub a:focus {
  color: #fff;
}
.uk-light .uk-nav-primary .uk-nav-sub li.uk-active > a, .uk-overlay-primary .uk-nav-primary .uk-nav-sub li.uk-active > a {
  color: #fff;
}
.uk-light .uk-navbar-nav > li > a, .uk-overlay-primary .uk-navbar-nav > li > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-navbar-nav > li:hover > a, .uk-overlay-primary .uk-navbar-nav > li:hover > a, .uk-light .uk-navbar-nav > li > a:focus, .uk-overlay-primary .uk-navbar-nav > li > a:focus, .uk-light .uk-navbar-nav > li > a.uk-open, .uk-overlay-primary .uk-navbar-nav > li > a.uk-open {
  color: #fff;
}
.uk-light .uk-navbar-nav > li > a:active, .uk-overlay-primary .uk-navbar-nav > li > a:active {
  color: #fff;
}
.uk-light .uk-navbar-nav > li.uk-active > a, .uk-overlay-primary .uk-navbar-nav > li.uk-active > a {
  color: #fff;
}
.uk-light .uk-navbar-item, .uk-overlay-primary .uk-navbar-item {
  color: #fff;
}
.uk-light .uk-navbar-toggle, .uk-overlay-primary .uk-navbar-toggle {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-navbar-toggle:hover, .uk-overlay-primary .uk-navbar-toggle:hover, .uk-light .uk-navbar-toggle:focus, .uk-overlay-primary .uk-navbar-toggle:focus, .uk-light .uk-navbar-toggle.uk-open, .uk-overlay-primary .uk-navbar-toggle.uk-open {
  color: #fff;
}
.uk-light .uk-subnav > * > :first-child, .uk-overlay-primary .uk-subnav > * > :first-child {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-subnav > * > a:hover, .uk-overlay-primary .uk-subnav > * > a:hover, .uk-light .uk-subnav > * > a:focus, .uk-overlay-primary .uk-subnav > * > a:focus {
  color: #fff;
}
.uk-light .uk-subnav > .uk-active > a, .uk-overlay-primary .uk-subnav > .uk-active > a {
  color: #fff;
}
.uk-light .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before, .uk-overlay-primary .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before {
  border-left-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-subnav-pill > * > :first-child, .uk-overlay-primary .uk-subnav-pill > * > :first-child {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-subnav-pill > * > a:hover, .uk-overlay-primary .uk-subnav-pill > * > a:hover, .uk-light .uk-subnav-pill > * > a:focus, .uk-overlay-primary .uk-subnav-pill > * > a:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.uk-light .uk-subnav-pill > * > a:active, .uk-overlay-primary .uk-subnav-pill > * > a:active {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.uk-light .uk-subnav-pill > .uk-active > a, .uk-overlay-primary .uk-subnav-pill > .uk-active > a {
  background-color: #fff;
  color: var(--base-color);
}
.uk-light .uk-subnav > .uk-disabled > a, .uk-overlay-primary .uk-subnav > .uk-disabled > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-breadcrumb > * > *, .uk-overlay-primary .uk-breadcrumb > * > * {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-breadcrumb > * > :hover, .uk-overlay-primary .uk-breadcrumb > * > :hover, .uk-light .uk-breadcrumb > * > :focus, .uk-overlay-primary .uk-breadcrumb > * > :focus {
  color: #fff;
}
.uk-light .uk-breadcrumb > :last-child > *, .uk-overlay-primary .uk-breadcrumb > :last-child > * {
  color: #fff;
}
.uk-light .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before, .uk-overlay-primary .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-pagination > * > *, .uk-overlay-primary .uk-pagination > * > * {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-pagination > * > :hover, .uk-overlay-primary .uk-pagination > * > :hover, .uk-light .uk-pagination > * > :focus, .uk-overlay-primary .uk-pagination > * > :focus {
  color: #fff;
}
.uk-light .uk-pagination > .uk-active > *, .uk-overlay-primary .uk-pagination > .uk-active > * {
  color: #fff;
}
.uk-light .uk-pagination > .uk-disabled > *, .uk-overlay-primary .uk-pagination > .uk-disabled > * {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-tab::before, .uk-overlay-primary .uk-tab::before {
  border-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-tab > * > a, .uk-overlay-primary .uk-tab > * > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-tab > * > a:hover, .uk-overlay-primary .uk-tab > * > a:hover, .uk-light .uk-tab > * > a:focus, .uk-overlay-primary .uk-tab > * > a:focus {
  color: #fff;
}
.uk-light .uk-tab > .uk-active > a, .uk-overlay-primary .uk-tab > .uk-active > a {
  color: #fff;
  border-color: #fff;
}
.uk-light .uk-tab > .uk-disabled > a, .uk-overlay-primary .uk-tab > .uk-disabled > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-slidenav, .uk-overlay-primary .uk-slidenav {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-slidenav:hover, .uk-overlay-primary .uk-slidenav:hover, .uk-light .uk-slidenav:focus, .uk-overlay-primary .uk-slidenav:focus {
  color: rgba(255, 255, 255, 0.95);
}
.uk-light .uk-slidenav:active, .uk-overlay-primary .uk-slidenav:active {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-dotnav > * > *, .uk-overlay-primary .uk-dotnav > * > * {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.9);
}
.uk-light .uk-dotnav > * > :hover, .uk-overlay-primary .uk-dotnav > * > :hover, .uk-light .uk-dotnav > * > :focus, .uk-overlay-primary .uk-dotnav > * > :focus {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: transparent;
}
.uk-light .uk-dotnav > * > :active, .uk-overlay-primary .uk-dotnav > * > :active {
  background-color: rgba(255, 255, 255, 0.5);
  border-color: transparent;
}
.uk-light .uk-dotnav > .uk-active > *, .uk-overlay-primary .uk-dotnav > .uk-active > * {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: transparent;
}
.uk-light .uk-accordion-title::before, .uk-overlay-primary .uk-accordion-title::before {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' data-svg='chevron-down'%3E%3Cpolyline fill='none' stroke='%23000' stroke-width='1.03' points='16 7 10 13 4 7'%3E%3C/polyline%3E%3C/svg%3E");
}
.uk-light .uk-open > .uk-accordion-title::before, .uk-overlay-primary .uk-open > .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%22white%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-light .uk-iconnav > * > a, .uk-overlay-primary .uk-iconnav > * > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-iconnav > * > a:hover, .uk-overlay-primary .uk-iconnav > * > a:hover, .uk-light .uk-iconnav > * > a:focus, .uk-overlay-primary .uk-iconnav > * > a:focus {
  color: #fff;
}
.uk-light .uk-iconnav > .uk-active > a, .uk-overlay-primary .uk-iconnav > .uk-active > a {
  color: #fff;
}
.uk-light .uk-text-lead, .uk-overlay-primary .uk-text-lead {
  color: #fff;
}
.uk-light .uk-text-meta, .uk-overlay-primary .uk-text-meta {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-text-muted, .uk-overlay-primary .uk-text-muted {
  color: rgba(255, 255, 255, 0.5) !important;
}
.uk-light .uk-text-emphasis, .uk-overlay-primary .uk-text-emphasis {
  color: #fff !important;
}
.uk-light .uk-text-primary, .uk-overlay-primary .uk-text-primary {
  color: #fff !important;
}
.uk-light .uk-text-secondary, .uk-overlay-primary .uk-text-secondary {
  color: #fff !important;
}
.uk-light .uk-column-divider, .uk-overlay-primary .uk-column-divider {
  column-rule-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-logo, .uk-overlay-primary .uk-logo {
  color: #fff;
}
.uk-light .uk-logo:hover, .uk-overlay-primary .uk-logo:hover, .uk-light .uk-logo:focus, .uk-overlay-primary .uk-logo:focus {
  color: #fff;
}
.uk-light .uk-logo > :not(.uk-logo-inverse):not(:only-of-type), .uk-overlay-primary .uk-logo > :not(.uk-logo-inverse):not(:only-of-type) {
  display: none;
}
.uk-light .uk-logo-inverse, .uk-overlay-primary .uk-logo-inverse {
  display: inline;
}
/*
// Base 
@import "variables.scss";
@import "base.scss";

// Elements
@import "link.scss";
//@import "heading.scss";
@import "divider.scss";
@import "list.scss";
//@import "description-list.scss";
@import "table.scss";
@import "icon.scss";
@import "form-range.scss";
@import "form.scss";
//@import "button.scss";

// Layout
@import "section.scss";
@import "container.scss"; */
/*
 * xSmall
 */
/* Horizontal */
.uk-grid-xsmall, .uk-grid-column-xsmall {
  margin-left: -5px;
}
.uk-grid-xsmall > *, .uk-grid-column-xsmall > * {
  padding-left: 5px;
}
/* Vertical */
.uk-grid + .uk-grid-xsmall, .uk-grid + .uk-grid-row-xsmall, .uk-grid-xsmall > .uk-grid-margin, .uk-grid-row-xsmall > .uk-grid-margin, * + .uk-grid-margin-xsmall {
  margin-top: 5px;
}
/*
//@import "tile.scss";
@import "card.scss";

// Common
@import "close.scss";
@import "spinner.scss";
@import "marker.scss";
@import "totop.scss";
@import "alert.scss";
//@import "badge.scss";
@import "label.scss";
@import "overlay.scss";
@import "article.scss";
@import "comment.scss";
@import "search.scss";

// Navs
@import "nav.scss";
@import "navbar.scss";
//@import "subnav.scss";
@import "breadcrumb.scss";
@import "pagination.scss";
@import "tab.scss";
@import "slidenav.scss";
@import "dotnav.scss";
@import "thumbnav.scss";

// JavaScript
@import "accordion.scss";
@import "drop.scss";
@import "dropdown.scss";
@import "modal.scss";
@import "lightbox.scss";
@import "sticky.scss";
@import "offcanvas.scss";
@import "leader.scss";

// Additional
//@import "iconnav.scss";
@import "notification.scss";
//@import "tooltip.scss";
@import "placeholder.scss";
@import "progress.scss";
//@import "sortable.scss";
@import "countdown.scss";

// Utilities
@import "animation.scss";
@import "width.scss";
@import "height.scss";
@import "text.scss";
@import "column.scss";
@import "background.scss";
@import "align.scss";
@import "utility.scss";
@import "margin.scss";
@import "padding.scss";
@import "position.scss";
@import "transition.scss";
@import "inverse.scss";

*/
.fw-feature {
  box-sizing: border-box;
  text-align: center;
}
.fw-feature--muted {
  background: #f8faff;
  padding: var(--gap, 20px);
  border-radius: 10px;
}
.fw-feature-img {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--gap, 20px);
  background-color: var(--secondary100);
  border-radius: 50%;
  box-shadow: 0 0 0 10px #fff;
}
.fw-feature-desc {
  display: flex;
  flex-direction: column;
}
.fw-feature-name {
  font-size: var(--fs-h5);
  font-weight: 600;
  margin-bottom: 10px;
}
.fw-card {
  position: relative;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  border-radius: var(--border-radius);
}
.fw-card-horizontal {
  flex-direction: row;
}
.fw-card__top {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.fw-card__top img {
  width: 100%;
  border-radius: var(--border-radius);
}
.fw-card a:not([href]) {
  cursor: default;
}
.fw-card__title {
  font-weight: 700;
  margin-bottom: 5px;
  display: block;
  color: var(--accent-color);
}
.fw-card__title:hover {
  color: var(--primary);
  text-decoration: none;
}
.fw-card__date {
  color: #7c7c7c;
  font-size: 12px;
  margin-bottom: 10px;
}
.fw-card__img-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.fw-card__footer {
  position: relative;
  padding: 20px;
  padding-top: 0;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}
.fw-card__body {
  position: relative;
  padding: 20px;
  height: 100%;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}
.fw-card__body.fw-card {
  border-radius: var(--border-radius);
}
.fw-card__desc {
  font-size: 0.875rem;
}
.fw-card__img-wrap {
  text-align: center;
  background: #f8f8f8;
  margin-bottom: var(--gap-sm);
}
.fw-card-horizontal {
  box-shadow: 0px 15px 15px -10px rgba(0, 0, 0, 0.06);
}
@media (max-width: 740px) {
  .fw-card-horizontal {
    flex-wrap: wrap;
  }
}
.fw-card-horizontal .fw-card__img-wrap {
  max-width: 250px;
  flex: 0 0 250px;
  height: auto;
  background-color: var(--bg-muted);
  padding: 20px;
  display: flex;
  align-items: center;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}
@media (max-width: 960px) {
  .fw-card-horizontal .fw-card__img-wrap {
    flex: 0 0 150px;
  }
}
@media (max-width: 740px) {
  .fw-card-horizontal .fw-card__img-wrap {
    box-sizing: border-box;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    justify-content: center;
    max-width: 100%;
    flex: 0 0 100%;
  }
}
.fw-card-horizontal .fw-card__footer {
  flex: 0 0 145px;
  padding: 0 0 0 20px;
}
@media (max-width: 960px) {
  .fw-card-horizontal .fw-card__footer {
    max-width: 100%;
    padding: 0;
    flex: 0 0 100%;
  }
}
@media (max-width: 381px) {
  .fw-card-horizontal .fw-card__footer .fw-btn {
    width: 100%;
  }
}
.fw-card-horizontal .fw-card__body {
  flex-grow: 1;
  padding: 20px;
  height: 100%;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  display: flex;
}
.fw-card-horizontal .fw-card__body-wrap {
  flex-grow: 1;
}
@media (max-width: 960px) {
  .fw-card-horizontal .fw-card__body {
    flex-direction: column;
  }
}
.fw-card:hover .fw-read-more span, .fw-card:hover .fw-read-more .fw-link-arrow-right {
  transform: translateX(3px);
}
.fw-card--category {
  min-height: 93px;
  overflow: hidden;
  border: var(--base-border-width) solid var(--base-border-color);
  background: var(--bg-default);
}
.fw-card--category__img {
  flex: 0 0 44px;
}
.fw-card--category__title {
  font-weight: 800;
  font-size: var(--fs-h5);
  text-decoration: none;
}
.fw-card--category__body {
  padding: var(--gap-xs);
  display: flex;
  gap: var(--gap);
  align-items: center;
}
.fw-card--category:hover {
  background: var(--bg-muted);
}
.fw-card--category__img {
  border-radius: 50%;
  transition: 0.3s linear;
  padding: var(--gap-xs);
  background: #fff;
}
.fw-card__body--large {
  padding: var(--padding-2xl);
}
.fw-card__body--l {
  padding: var(--padding-l);
}
.fw-card__footer--large {
  padding: var(--padding-2xl);
  padding-top: var(--gap);
}
.fw-card--border {
  box-shadow: 2px 2px 0 0 var(--base-border-color), inset 2px 2px 0 0 var(--base-border-color);
}
.fw-card--docs {
  max-width: 295px;
  box-shadow: 0 0 0 var(--base-border-width) var(--base-border-color);
}
.fw-tag {
  display: inline-block;
  border-radius: var(--control-border-radius);
  padding: var(--gap-sm);
  backdrop-filter: blur(14px);
  background: radial-gradient(195.13% 102.55% at 29% 26%, var(--secondary-a07), transparent 100%);
}
.fw-pagination a.page {
  display: inline-block;
  padding: 0 5px;
  border: 2px solid #e6e6e6;
  width: 30px;
  text-align: center;
  margin-bottom: 3px;
  margin-left: 3px;
}
.fw-pagination a.page.hidden {
  display: none;
}
.fw-pagination a.page.active {
  border-color: #005eec;
}
.fw-pagination .yiiPager {
  padding: 0;
}
.fw-pagination .yiiPager li {
  display: inline-block;
  padding: 0 5px;
  border: 2px solid #e6e6e6;
  width: 30px;
  text-align: center;
  margin-bottom: 3px;
  margin-left: 3px;
}
.fw-pagination .yiiPager li.hidden {
  display: none;
}
.fw-pagination .yiiPager li.selected {
  border-color: #005eec;
}
.fw-pagination .yiiPager li > a {
  border: none;
  background: none;
  font-weight: 400;
  color: #005eec;
}
#wrap .wp-pagenavi a, #wrap .wp-pagenavi span {
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  background: var(--primary);
  color: var(--base-color);
  border: none;
  line-height: 1;
  padding: 0px 10px;
  margin: 3px 4px;
  transition: all 0.3s ease;
  border-radius: 2px;
}
#wrap .wp-pagenavi .selected a {
  border-color: #005eec;
  background: var(--primary);
  color: var(--accent-color);
}
.yiiPager .hidden {
  display: none;
}
.uk-pagination {
  margin-bottom: 0;
}
.uk-pagination .pagination {
  display: flex;
  padding: 15px 0;
}
.uk-pagination .page {
  border: 1px solid transparent;
  margin-right: 5px;
  padding: 0 5px;
  width: 36px;
  text-align: center;
  box-sizing: border-box;
  border-radius: 3px;
}
.uk-pagination li.page > a, .uk-pagination li.next > a, .uk-pagination li.previous > a, .uk-pagination li.first > a, .uk-pagination li.last > a {
  border: 0;
}
.uk-pagination .page.selected {
  background-color: var(--primary);
}
.uk-pagination .page.selected > a {
  color: #fff;
}
.uk-pagination .page.active {
  background-color: var(--primary);
  color: #fff;
}
.uk-pagination .page:hover {
  border: 1px solid var(--primary);
}
.uk-pagination .hidden {
  display: none;
}
.uk-pagination > * > * {
  padding: 0px 0px;
  line-height: 34px;
}
.uk-pagination .next > *, .uk-pagination .last > *, .uk-pagination .previous > *, .uk-pagination .first > * {
  width: 36px;
  text-align: center;
}
.fw-mainslider {
  padding-top: var(--gap);
  position: relative;
}
@media (max-width: 1023px) {
  .fw-mainslider {
    padding-top: 0;
  }
}
.fw-mainslider__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  height: 100%;
}
@media (max-width: 1024px) {
  .fw-mainslider__container {
    width: 80%;
  }
}
@media (max-width: 640px) {
  .fw-mainslider__container {
    width: 90%;
  }
}
.fw-mainslider__title {
  color: #212529;
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--base-font-family);
  line-height: 1;
  margin-bottom: var(--gap, 20px);
}
@media (max-width: 1024px) {
  .fw-mainslider__title {
    font-size: 2rem;
  }
}
@media (max-width: 640px) {
  .fw-mainslider__title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
.fw-mainslider__text {
  color: #212529;
  font-size: 1.5rem;
  font-family: var(--base-font-family);
  margin-bottom: var(--gap, 20px);
}
@media (max-width: 1024px) {
  .fw-mainslider__text {
    font-size: 1rem;
  }
}
@media (max-width: 640px) {
  .fw-mainslider__text {
    font-size: 0.875rem;
    margin-bottom: 10px;
    line-height: 1.1;
  }
}
@media (max-width: 640px) {
  .fw-mainslider__more {
    line-height: 25px;
    font-size: 0.75rem;
  }
}
.fw-mainslider__item {
  width: var(--container-width);
  position: relative;
}
@media (max-width: 1279px) {
  .fw-mainslider__item {
    max-width: 100%;
  }
}
.fw-mainslider__item:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6), transparent);
  border-radius: var(--border-radius-md);
}
@media (max-width: 1023px) {
  .fw-mainslider__item:before {
    border-radius: 0;
  }
}
.fw-mainslider-nav__left, .fw-mainslider-nav__right {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  visibility: hidden;
}
.fw-mainslider-nav__left {
  left: calc((100vw - var(--container-width))/2 - 24px);
}
@media (max-width: 1279px) {
  .fw-mainslider-nav__left {
    left: var(--gap-xs);
  }
}
.fw-mainslider-nav__right {
  right: calc((100vw - var(--container-width))/2 - 24px);
}
@media (max-width: 1279px) {
  .fw-mainslider-nav__right {
    right: var(--gap-xs);
  }
}
.fw-mainslider__body {
  width: 640px;
  max-width: 100%;
  padding: var(--padding-xl);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: #fff;
  box-sizing: border-box;
}
.fw-mainslider__wrap:hover .fw-mainslider-nav__left, .fw-mainslider__wrap:hover .fw-mainslider-nav__right {
  visibility: visible;
}
.fw-mainslider__desc {
  margin-bottom: var(--gap);
}
@media (max-width: 1023px) {
  .fw-mainslider__desc {
    --fs-h1: 32px;
    line-height: 1.25;
  }
}
@media (max-width: 1023px) {
  .fw-mainslider img {
    max-width: none;
    object-fit: none;
  }
}
.fw-envelope-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  height: 100%;
}
@media (max-width: 1024px) {
  .fw-envelope-container {
    width: 80%;
  }
}
@media (max-width: 640px) {
  .fw-envelope-container {
    width: 90%;
  }
}
.fw-envelope-title {
  color: #212529;
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--base-font-family);
  line-height: 1.1;
  margin-bottom: var(--gap, 20px);
}
.fw-envelope-title span {
  background: -webkit-linear-gradient(315deg, #5aff9d 25%, #005eec);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1024px) {
  .fw-envelope-title {
    font-size: 2rem;
  }
}
@media (max-width: 640px) {
  .fw-envelope-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
.fw-envelope-text {
  color: #212529;
  font-size: 1.5rem;
  font-family: var(--base-font-family);
  margin-bottom: var(--gap, 20px);
  font-weight: 500;
}
@media (max-width: 1024px) {
  .fw-envelope-text {
    font-size: 1rem;
  }
}
@media (max-width: 640px) {
  .fw-envelope-text {
    font-size: 0.875rem;
    margin-bottom: 10px;
    line-height: 1.1;
  }
}
@media (max-width: 640px) {
  .fw-envelope__more {
    line-height: 25px;
    font-size: 0.75rem;
  }
}
.uk-slidenav {
  padding: 0;
  color: var(--primary-inverse);
  border-radius: 50%;
  background: var(--primary);
  width: 28px;
  height: 28px;
  box-sizing: border-box;
  line-height: 26px;
  text-align: center;
  box-shadow: 0 0 0 5px var(--bg-default);
}
.uk-slidenav svg {
  width: 14px;
  height: 14px;
}
.uk-slidenav svg polyline {
  stroke-width: 3;
}
.uk-slidenav:active, .uk-slidenav:hover, .uk-slidenav:focus {
  color: #fff;
  background-color: var(--primary-dark);
}
.fw-slidernav-left-out {
  position: absolute;
  right: 100%;
  margin-right: -14px;
  top: 50%;
  transform: translateY(-50%);
}
.fw-slidernav-right-out {
  position: absolute;
  left: 100%;
  margin-left: -14px;
  top: 50%;
  transform: translateY(-50%);
}
.fw-slidenav-s {
  width: 36px;
  height: 36px;
  line-height: 34px;
}
.fw-slidernav-left {
  top: 50%;
  transform: translate(-60%, -50%);
}
.fw-slidernav-right {
  top: 50%;
  transform: translate(60%, -50%);
}
.fw-slidernav-wrap {
  height: 30px;
  position: absolute;
  top: 50%;
  left: calc(-1*var(--gap-sm));
  right: calc(-1*var(--gap-sm));
  display: flex;
  justify-content: space-between;
}
.fw-slidernav-wrap--license {
  margin: 0 auto;
  max-width: 1485px;
}
@media (max-width: 1599px) {
  .fw-slidernav-wrap--license {
    max-width: 100%;
  }
}
.fw-input-group {
  border: 1px solid #e9ecef;
  position: relative;
  margin-bottom: 1rem;
  background-color: var(--bg-default);
}
.fw-input-group > input, .fw-input-group > label, .fw-input-group > textarea {
  padding: 1rem;
  width: 100%;
  border: none;
  box-sizing: border-box;
  font-size: 16px;
}
.fw-input-group label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  margin-bottom: 0;
  line-height: 1;
  color: #a1a1a1;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: all 0.1s ease-in-out;
}
.fw-input-group input:-webkit-autofill, .fw-input-group textarea:-webkit-autofill, .fw-input-group select:-webkit-autofill {
  background-color: #86b6ff !important;
  background-image: none !important;
  color: black !important;
}
.fw-input-group input::placeholder, .fw-input-group textarea::placeholder {
  color: transparent;
}
.fw-input-group input:not(:placeholder-shown), .fw-input-group textarea:not(:placeholder-shown) {
  padding-top: calc(1rem + 1rem* (2 / 3));
  padding-bottom: calc(1rem / 3);
}
.fw-input-group input:not(:placeholder-shown) ~ label, .fw-input-group textarea:not(:placeholder-shown) ~ label {
  padding-top: calc(1rem / 3);
  padding-bottom: calc(1rem / 3);
  font-size: 12px;
  color: #a1a1a1;
}
.fw-input-group.error {
  border-color: red;
  margin-bottom: 5px;
}
.fw-help-inline {
  display: block;
  font-size: 12px;
  color: red;
  margin-bottom: 1rem;
}
.fw-alert-error {
  color: red;
  margin-bottom: 1.5rem;
}
.fw-words-input {
  min-width: 230px;
}
.fw-input-wrap {
  margin-bottom: 1rem;
}
.fw-input-wrap .uk-select, .fw-input-wrap .fw-control-select, .fw-input-wrap #BasketForm_country_id.uk-select, .fw-input-wrap #BasketForm_country_id.fw-control-select {
  height: 52px;
  padding: 0 1rem;
}
.fw-radio-list .active .fw-radio-item {
  box-shadow: 5px 5px 5px #e5e5e5;
}
.fw-radio-list .active .fw-radio-item::before {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: inset 0 0 0 3px #fff;
}
.fw-radio-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 20px 20px 50px;
  border: 1px solid var(--base-border-color);
  border-radius: 0;
  position: relative;
  background-color: var(--bg-muted);
  border-radius: var(--border-radius);
}
.fw-radio-item::before {
  content: "";
  position: absolute;
  display: block;
  left: 15px;
  width: 20px;
  height: 20px;
  border: 1px solid var(--base-border-color);
  border-radius: 50%;
  background-color: #fff;
}
.fw-radio-item:hover {
  box-shadow: 5px 5px 5px #e5e5e5;
}
@media (max-width: 360px) {
  .fw-radio-item__action {
    font-size: 14px;
  }
}
.fw-radio-item__form {
  display: none;
  flex: 0 0 100%;
  margin-top: 20px;
}
.fw-radio-item__body {
  cursor: pointer;
  margin-bottom: 15px;
}
.fw-radio-item--edit .fw-radio-item__form {
  display: block;
}
.fw-radio-item__wrap {
  margin-bottom: 10px;
}
.fw-radio-item__wrap:last-of-type {
  margin-bottom: 0;
}
:root {
  --control-icon-w: 40px;
  --control-icon-btn-w: var(--control-icon-w);
}
form > ul {
  padding: 0;
  margin: 0;
}
.fw-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap, 20px);
}
.fw-form-sm {
  width: 20rem;
  max-width: 100%;
}
.fw-form-lg {
  width: 50rem;
  max-width: 100%;
}
.fw-form-md {
  width: 31.25rem;
  max-width: 100%;
}
.fw-form-lg {
  width: 50rem;
  max-width: 100%;
}
.fw-checkbox, .fw-control-checkbox {
  position: relative;
  text-align: left;
  line-height: 1.25;
}
.fw-checkbox input[type="checkbox"], .fw-control-checkbox input[type="checkbox"] {
  display: none;
}
.fw-checkbox input[type="checkbox"]:checked + label:before, .fw-checkbox input[type="checkbox"]:checked + span:before, .fw-control-checkbox input[type="checkbox"]:checked + label:before, .fw-control-checkbox input[type="checkbox"]:checked + span:before {
  background-color: var(--primary);
  border-color: var(--primary);
}
.fw-checkbox input[type="checkbox"]:checked + label:after, .fw-checkbox input[type="checkbox"]:checked + span:after, .fw-control-checkbox input[type="checkbox"]:checked + label:after, .fw-control-checkbox input[type="checkbox"]:checked + span:after {
  transform: scale(1);
}
.fw-checkbox.fw-has-error label:before, .fw-control-checkbox.fw-has-error label:before {
  border-color: red;
}
.fw-checkbox.fw-has-error input[type="checkbox"]:checked + label:before, .fw-control-checkbox.fw-has-error input[type="checkbox"]:checked + label:before {
  border-color: var(--primary);
}
.fw-control-radio {
  position: relative;
  text-align: left;
  line-height: 1.25;
}
.fw-control-radio input[type="radio"] {
  display: none;
}
.fw-control-radio input[type="radio"]:checked ~ label:before, .fw-control-radio input[type="radio"]:checked ~ span:before {
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.fw-control-radio input[type="radio"]:checked ~ label:after, .fw-control-radio input[type="radio"]:checked ~ span:after {
  transform: scale(1);
}
.fw-control-radio > span {
  padding-left: 30px;
  cursor: pointer;
  display: block;
  position: relative;
}
.fw-control-radio > span::before, .fw-control-radio > span::after {
  content: "";
  display: block;
  border: 1px solid var(--base-border-color);
  background: var(--control-bg);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  cursor: pointer;
}
.fw-control-radio > span::after {
  border-color: var(--secondary);
  transition: all linear 0.3s;
  transform: scale(0);
  background-color: var(--secondary);
  box-shadow: inset 0 0 0 2px #fff;
}
.tc-list .fw-control-radio > span::before, .tc-list .fw-control-radio > span::after {
  top: 10px;
}
.fw-input-button input[type="radio"], .fw-input-button input[type="checkbox"] {
  display: none;
}
.fw-input-button input[type="radio"]:checked + span, .fw-input-button input[type="checkbox"]:checked + span {
  border-color: var(--primary);
}
.fw-input-button > span {
  display: inline-flex;
  align-items: center;
  text-align: center;
  padding: var(--gap-xxs) var(--gap-md);
  background: var(--bg-muted);
  border: 2px solid transparent;
  border-radius: var(--border-radius-sm);
  font-size: var(--fs-xsmall);
  transition: background linear 0.3s;
  cursor: pointer;
}
.fw-property-highlight .fw-input-button > span {
  background: rgba(255, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}
.fw-checkbox label, .fw-control-checkbox > span {
  padding-left: 30px;
  cursor: pointer;
  display: block;
  position: relative;
}
.fw-checkbox label::before, .fw-control-checkbox > span::before {
  background-color: var(--bg-muted);
}
.fw-checkbox label::before, .fw-checkbox label::after, .fw-control-checkbox > span::before, .fw-control-checkbox > span::after {
  content: "";
  display: block;
  border: 1px solid var(--base-border-color);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  cursor: pointer;
}
.fw-checkbox label::after, .fw-control-checkbox > span::after {
  border: none;
  transition: all linear 0.3s;
  transform: scale(0);
  background-color: var(--primary);
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check"><polyline points="20 6 9 17 4 12"></polyline></svg>');
}
label:hover {
  cursor: text;
}
textarea, input, select {
  font-family: var(--base-font-family) !important;
}
textarea {
  resize: none;
}
.fw-control {
  width: 100%;
}
.fw-control-input, .fw-control-textarea, .fw-control-select {
  padding-top: var(--gap);
  padding-left: var(--gap);
  border-radius: var(--control-border-radius);
  background-color: var(--control-bg);
  border-color: var(--control-border-color);
}
.fw-control-input:focus, .fw-control-textarea:focus, .fw-control-select:focus {
  background-color: var(--control-focus-bg);
}
.fw-control-input::placeholder, .fw-control-textarea::placeholder, .fw-control-select::placeholder {
  color: transparent;
}
.uk-light .fw-control-input::placeholder, .uk-overlay-primary .fw-control-input::placeholder, .uk-light .fw-control-textarea::placeholder, .uk-overlay-primary .fw-control-textarea::placeholder, .uk-light .fw-control-select::placeholder, .uk-overlay-primary .fw-control-select::placeholder {
  color: transparent;
}
.fw-control-md {
  height: calc(var(--control-line-height-md) + 2*var(--base-border-width));
}
.fw-control-sm {
  height: calc(var(--control-line-height-sm) + 2*var(--base-border-width));
}
.fw-control-textarea {
  padding-top: 20px;
  height: 160px;
}
.fw-control-muted {
  background: var(--bg-muted);
}
.fw-control--pt0 {
  padding-top: 0;
}
.fw-control-label {
  position: absolute;
  padding-left: var(--gap);
  line-height: calc(var(--control-line-height) + 2*var(--base-border-width));
  transition: linear 0.1s;
  pointer-events: none;
  z-index: 1;
}
.fw-text-white .fw-control-label {
  color: #222;
}
.fw-control-has-focus .fw-control-label, .fw-control-not-empty .fw-control-label {
  font-size: var(--fs-xsmall);
  line-height: 2;
}
.fw-control-group {
  position: relative;
}
.fw-control-group .fw-help-text {
  font-size: var(--fs-xsmall);
  margin-top: 5px;
  margin-bottom: 0;
}
.fw-has-error .fw-help-text {
  color: red;
}
.fw-has-error .fw-control {
  border-color: red;
}
.fw-input-count__group {
  display: flex;
  width: min-content;
  padding: 0 10px;
  box-sizing: border-box;
  align-items: baseline;
}
.fw-input-count__input {
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  color: var(--base-color);
  height: calc(var(--control-line-height) + 2*var(--base-border-width));
  max-width: 45px;
  border: none;
  box-sizing: border-box;
  background: transparent;
  order: 2;
}
@media (max-width: 660px) {
  .fw-input-count__input {
    max-width: 30px;
  }
}
.fw-input-count__minus, .fw-input-count__plus {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--base-color);
  width: 30px;
  box-sizing: border-box;
}
.fw-input-count__minus:hover, .fw-input-count__plus:hover {
  color: var(--primary);
}
.fw-input-count__minus {
  order: 1;
  margin-right: auto;
}
.fw-input-count__plus {
  order: 4;
  margin-left: auto;
}
.fw-input-count__group::before {
  content: attr(data-units);
  line-height: var(--control-line-height-sm);
  order: 3;
}
.fw-control-group-30 {
  display: flex;
  gap: var(--gap);
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .fw-control-group-30 {
    flex-direction: column;
  }
}
.fw-form-5 {
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "a b" "c c" "d d";
}
@media (max-width: 1023px) {
  .fw-form-5 {
    display: flex;
    flex-direction: column;
  }
}
.fw-control-group-25 {
  grid-area: a;
}
.fw-control-group-27 {
  grid-area: b;
}
.fw-control-group-29 {
  grid-area: c;
}
.fw-control-group-30 {
  grid-area: d;
}
.fw-control-password {
  padding-right: var(--control-icon-w);
}
.fw-password-toggle-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: var(--control-icon-w);
  color: var(--base-color);
  top: 0;
  right: 0;
  bottom: 0;
}
:root {
  --control-search-icon-w:  40px;
  --control-search-btn-w: var(--control-search-icon-w);
}
.fw-search {
  position: relative;
}
.fw-search .fw-control-input {
  padding-left: var(--control-search-icon-w);
  padding-right: calc(var(--control-search-icon-w)*2);
}
.fw-search .fw-control-input::placeholder {
  color: var(--base-color);
}
.fw-search .fw-search-icon, .fw-search .fw-search-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: var(--control-search-icon-w);
  color: var(--base-color);
  top: 0;
  bottom: 0;
}
.fw-search .fw-search-icon {
  left: 0;
}
.fw-search .fw-search-btn {
  right: 0;
}
.fw-search.fw-control-not-empty .fw-search-icon {
  display: none;
}
.js-livesearch {
  border-color: transparent;
}
.js-btn-clear-search, .fw-btn-clear-control {
  visibility: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: var(--control-search-icon-w);
  display: inline-flex;
  justify-content: center;
  width: var(--control-search-icon-w);
}
.fw-search-form-wrap {
  position: relative;
  z-index: 100;
  flex-grow: 1;
}
@media (max-width: 1279px) {
  .fw-search-form-wrap {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    padding: 0 var(--gap);
  }
  .fw-search-form-wrap.show {
    display: block;
  }
}
.fw-search-form {
  position: relative;
  z-index: 10;
}
.fw-search-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
@media (min-width: 1280px) {
  .fw-search-bg {
    display: none;
  }
}
.fw-search-btn {
  visibility: hidden;
}
.fw-control-not-empty .js-btn-clear-search, .fw-control-not-empty .fw-btn-clear-control, .fw-control-not-empty .fw-search-btn {
  visibility: visible;
}
.fw-filter-group-options .js-btn-clear-search {
  right: 0;
}
.rating {
  padding: 5px 0;
}
.i-star, .i-star-o {
  display: inline-block;
}
.i-star:before, .i-star-o:before {
  display: inline-block;
  width: 1rem;
}
.fw-rating {
  display: flex;
  color: var(--warning);
}
.fw-rating .star {
  margin-right: 2px;
}
.fw-rating-input {
  display: inline-flex;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.fw-rating-input input {
  display: none;
}
.fw-rating-input label {
  padding-right: 5px;
  cursor: pointer;
}
.fw-raiting-wrap {
  display: flex;
  flex-direction: column;
  width: 87%;
}
.fw-raiting-wrap .fw-raiting {
  display: flex;
  align-items: center;
}
.fw-raiting-wrap .star {
  margin-right: 3px;
}
.fw-rating-input input:checked ~ .star > svg, .fw-rating-input .star:hover ~ .star > svg, .fw-rating-input .star:hover > svg {
  fill: var(--primary);
  color: var(--primary);
}
.fw-footer {
  position: relative;
  margin-top: auto;
  box-sizing: border-box;
}
.fw-footer-link {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid transparent;
  border-top: 1px solid transparent;
  transition: ease 0.3s all;
  color: rgba(255, 255, 255, 0.8);
}
.fw-footer-link:after {
  left: 2px;
  top: 13px;
}
.fw-footer-link:hover {
  color: #005eec;
}
.fw-footer h3, .fw-footer h4, .fw-footer h5 {
  color: white;
}
.fw-footer-title {
  color: #fff;
}
.b-copyright {
  padding: var(--gap) 0;
  font-size: var(--fs-small);
}
.fw-footer-nav-item {
  display: inline-block;
  width: 100%;
  margin-top: 0 !important;
  margin-bottom: 10px;
}
.fw-footer-nav-item .fw-link {
  color: rgba(255, 255, 255, 0.8);
}
.fw-footer-nav-item .fw-link:hover {
  color: var(--secondary);
}
.fw-footer__top {
  border-top: 1px solid var(--base-border-color);
  padding: var(--gap) 0;
}
.fw-footer__middle {
  background: var(--dark);
  padding: var(--section-small-padding) 0;
}
.fw-footer__top-body {
  display: flex;
  gap: var(--gap);
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .fw-footer__top-body > * {
    order: 2;
  }
}
.fw-footer__top-divider {
  display: none;
}
@media (max-width: 640px) {
  .fw-footer__top-divider {
    display: block;
    flex: 0 0 100%;
  }
}
@media (max-width: 420px) {
  .fw-footer__logo {
    flex: 0 0 100%;
  }
}
@media (max-width: 640px) {
  .fw-footer__logo, .fw-footer__top-action {
    order: 1;
  }
}
@media (max-width: 640px) {
  .fw-footer__logo, .fw-footer__top-action {
    order: 1;
  }
}
.fw-nav {
  list-style: none;
  padding: 0;
  border-radius: 0;
  border: var(--base-border-width) solid var(--base-border-color);
}
.fw-nav .fw-nav {
  padding: 0;
  border: none;
  border-radius: 0;
  font-size: var(--fs-small);
  margin-bottom: var(--gap-xs);
  display: none;
}
.fw-nav-item {
  display: block;
}
.fw-nav-link {
  display: block;
  border: var(--base-border-width) solid transparent;
  color: var(--base-color);
  text-decoration: none;
}
.fw-nav-link:hover {
  text-decoration: none;
}
.fw-nav-item-level-1 + .fw-nav-item-level-1 {
  border-top: var(--base-border-width) solid var(--base-border-color);
}
.fw-nav-item-level-1 > .fw-nav-link {
  padding: var(--gap-xs) var(--gap);
  margin-left: calc(var(--base-border-width) * (-1));
  margin-right: calc(var(--base-border-width) * (-1));
  box-sizing: border-box;
  font-weight: 500;
}
.fw-nav-item-level-2 .fw-nav-link {
  padding: var(--gap-xxs) var(--gap-xs) var(--gap-xxs) var(--gap-md);
  box-sizing: border-box;
}
.fw-nav-item-level-3 .fw-nav-link {
  padding: var(--gap-xxs) var(--gap-xs) var(--gap-xxs) var(--gap-lg);
  box-sizing: border-box;
}
.fw-nav-item-level-4 .fw-nav-link {
  padding: var(--gap-xxs) var(--gap-xs) var(--gap-xxs) var(--gap-xl);
  box-sizing: border-box;
}
.fw-nav-item-level-1:first-of-type > .fw-nav-link {
  border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
}
.fw-nav-item-level-1:last-of-type > .fw-nav-link {
  border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
}
.active > .fw-nav-link {
  color: var(--secondary);
}
.active > .fw-nav {
  display: block;
}
.active > .fw-nav-link > .fw-nav-dropdown-icon {
  transform: rotate(90deg);
}
.fw-nav-link.has-children {
  position: relative;
  padding-right: var(--gap-md);
}
.fw-nav-dropdown-icon {
  position: absolute;
  right: var(--gap-xs);
}
#livesearch-result {
  position: absolute;
  left: 0px;
  right: 0px;
  background-color: white;
  z-index: 999999;
  box-shadow: 0 25px 15px -15px rgba(0, 0, 0, 0.25);
  max-height: calc(100vh - 400px);
  border-left: 1px solid var(--base-border-color);
  border-right: 1px solid var(--base-border-color);
  overflow-y: auto;
}
#livesearch-result .fw-btn {
  height: var(--control-line-height-sm);
  line-height: calc(var(--control-line-height-sm) - 2*var(--base-border-width));
}
.livesearch-link {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  padding: 5px 10px;
  border: 1px solid var(--base-border-color);
  font-size: 12px;
  box-sizing: border-box;
  margin-top: -1px;
}
.livesearch-link:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
  text-decoration: none;
}
.livesearch-link:first-of-type {
  border-top-color: transparent;
}
.livesearch-link-toSearch {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--primary-inverse);
}
.livesearch-link-toSearch:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}
.fw-livesearch-item {
  display: flex;
  position: relative;
  padding: 10px;
  background-color: #fff;
  border-top: 1px solid #e9ecef;
  font-size: 14px;
}
.fw-livesearch-item__body {
  flex-grow: 1;
}
.fw-livesearch-item__img {
  margin-right: 15px;
  flex: 0 0 50px;
}
.fw-livesearch-item__name {
  font-weight: 600;
}
.fw-livesearch-item__text {
  font-size: 12px;
}
.fw-livesearch-item__cart {
  display: flex;
  align-items: baseline;
}
.fw-livesearch-item__price_old {
  text-decoration: line-through;
  margin-right: 15px;
}
.fw-livesearch-item__price {
  font-weight: 600;
  margin-right: auto;
}
.fw-livesearch-item__toCart {
  margin-left: 15px;
  opacity: 0;
  position: relative;
}
.fw-livesearch-item__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.fw-livesearch-item:first-of-type {
  border-top-color: transparent;
}
.fw-livesearch-item:hover {
  background-color: #F4F4F4;
}
.fw-livesearch-item:hover .fw-livesearch-item__toCart {
  opacity: 1;
  z-index: 20;
}
a, .btn, .form-control {
  transition: all 0.3s;
}
*:focus {
  outline: 0 !important;
}
html {
  font-size: var(--fs-base);
  font-family: var(--base-font-family);
  min-height: 100vh;
}
.highlighter-primary {
  border-left: 2px solid var(--primary);
  background: linear-gradient(90deg, var(--primary-a40), transparent 103.922%);
}
.highlighter-secondary {
  border-left: 2px solid var(--secondary);
  background: linear-gradient(90deg, var(--secondary-a40), transparent 105.04%);
}
.fw-current-rubric a {
  color: #005eec;
}
.fw-first-section__inner .uk-section:last-child {
  padding-bottom: 0;
}
.fw-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
}
.fw-bg-dark {
  background-color: #212529;
}
.fw-bg-primary100 {
  background-color: var(--primary100);
}
.fw-panel {
  background-color: var(--bg-muted);
  border-radius: 10px;
}
.fw-badge {
  padding: 0 15px;
  display: inline-block;
  font: inherit;
  font-weight: 600;
  border-radius: 15px;
  line-height: 2.25;
  background-color: #e4efff;
  color: #005eec;
}
.fw-text-white {
  color: #fff;
}
.fw-text-basecolor {
  color: var(--base-color);
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.5;
}
@media (max-width: 1023px) {
  body {
    padding-bottom: 67px;
  }
}
.fw-full-block-link {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.fw-full-block-link[href=""] {
  display: none;
}
.fw-gallery__zoom {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -20px;
  margin-top: -20px;
  padding: 10px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transform: scale(0);
  transition: linear 0.3s;
}
.fw-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
.fw-content img {
  max-width: 100%;
  height: auto;
}
.fw-content ul:not([class]) {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}
.fw-content ul:not([class]) > li {
  padding-left: 1.875rem;
  margin-left: 0;
  margin-bottom: 0.75rem;
  position: relative;
}
.fw-content ul:not([class]) > li:before {
  content: "";
  width: 0.4375rem;
  height: 0.4375rem;
  background-color: var(--secondary);
  border-radius: 50%;
  position: absolute;
  top: 0.5rem;
  left: 0px;
  z-index: 1;
}
.fw-content ol:not([class]) {
  counter-reset: li;
  padding-left: 0px;
  margin-bottom: 2rem;
}
.fw-content ol:not([class]) > li {
  list-style: none;
  padding-left: 1.875rem;
  margin-bottom: 0.75rem;
  position: relative;
}
.fw-content ol:not([class]) > li:before {
  content: counter(li) ".";
  counter-increment: li;
  font-weight: 400;
  color: var(--secondary);
  position: absolute;
  top: 0px;
  left: 0px;
}
.fw-content a:not([class]) {
  color: var(--secondary);
  transition: 0.3s;
  border-bottom: 1px solid transparent;
}
.fw-content a:not([class]):hover {
  text-decoration: none;
  border-bottom: 1px solid var(--secondary);
}
.fw-content > *:last-child {
  margin-bottom: 0;
}
.fw-list {
  list-style: none;
  padding-left: 1.4rem;
  margin-bottom: 2rem;
}
.fw-list > li {
  padding-left: 2rem;
  margin-left: 0;
  margin-bottom: 0.625rem;
  position: relative;
  color: var(--base-color);
}
.fw-list > li:before {
  position: absolute;
  left: 0;
  top: 3px;
}
.uk-list {
  padding-left: 0;
}
.fw-wrap-image {
  border: 1px solid var(--bg-muted);
  padding: var(--gap);
}
.fw-image-caption {
  text-align: center;
  padding-top: var(--gap);
  color: #999;
  font-size: 0.75rem;
}
.lh-1 {
  line-height: 1;
}
.lh-2 {
  line-height: 1.25;
}
.lh-3 {
  line-height: 1.5;
}
.lh-4 {
  line-height: 1.75;
}
.lh-5 {
  line-height: 2;
}
.ls-1 {
  letter-spacing: 0.5px;
}
.ls-2 {
  letter-spacing: 1px;
}
.ls-3 {
  letter-spacing: 1.5px;
}
.ls-4 {
  letter-spacing: 2px;
}
blockquote {
  background-color: #f7f7f7;
  border-color: theme-color("primary");
  border-width: 0 0 0 3px;
  border-style: solid;
  font-style: italic;
  padding: 1.5rem 1.125rem;
  margin-bottom: 2rem;
}
.nodecor {
  text-decoration: none;
}
.nodecor:hover {
  text-decoration: none;
}
.fw-transition-none {
  transition: none;
}
.uk-section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}
.uk-section:not(.uk-section-muted):not(.uk-section-secondary):not(.uk-section-primary):not(.has-bg):not(.fw-has-bg) + .uk-section:not(.uk-section-muted):not(.uk-section-secondary):not(.uk-section-primary):not(.has-bg):not(.fw-has-bg) {
  padding-top: 0;
}
.uk-section-muted + .uk-section-muted {
  padding-top: 0;
}
.fw-first-section {
  padding-top: 40px;
}
.fw-section-breadcrumb {
  padding-top: var(--gap-xs);
  padding-bottom: var(--gap-md);
}
@media (max-width: 640px) {
  .fw-section-breadcrumb {
    padding-bottom: var(--gap);
  }
}
.uk-container[class*="uk-height"] {
  box-sizing: content-box;
}
.fw-flex-baseline {
  align-items: baseline;
}
.fw-flex-self-center {
  align-self: center;
}
@media (min-width: 1280px) {
  .tm-filters.uk-offcanvas {
    position: relative;
    display: block;
    z-index: 1;
  }
  .tm-filters.uk-offcanvas .uk-offcanvas-bar {
    position: static;
    overflow: visible;
    width: auto;
    -webkit-transform: none;
    transform: none;
    background: 0 0;
  }
}
.fw-text-gray {
  color: #a1a1a1;
}
.fw-icon-btn {
  text-decoration: none;
}
.fw-icon-btn:hover {
  text-decoration: none;
}
.fw-icon-btn.active {
  color: #005eec;
}
.fw-shadow-bottom {
  box-shadow: 0 25px 15px -15px rgba(0, 0, 0, 0.1);
}
.fw-scroll-up {
  position: fixed;
  bottom: 40px;
  left: 40px;
}
.fw-scroll-up.hidden {
  display: none;
}
.fw-success-check {
  background: #d9f0e8;
  color: #28aa79;
  display: inline-block;
  padding: 5px;
  border-radius: 50%;
  margin-right: 15px;
}
.fw-accept {
  font-size: var(--fs-small);
}
.fw-rounded-xs {
  border-radius: 5px;
}
.fw-rounded-sm {
  border-radius: 10px;
}
.fw-rounded {
  border-radius: 20px;
}
.fw-rounded-lg {
  border-radius: 30px;
}
.fw-rounded-top {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.fw-rounded-bottom {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.fw-rounded-left {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.fw-rounded-right {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.fw-cookie {
  padding: var(--gap) var(--gap-md);
  font-size: var(--fs-small);
  position: fixed;
  bottom: var(--gap);
  left: var(--gap);
  right: 0;
  background-color: var(--bg-default);
  border-radius: var(--border-radius);
  width: 295px;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 10000;
}
.fw-cookie [class*="uk-modal-close-"] {
  top: var(--gap-xs);
  right: var(--gap-xs);
  padding: 0;
}
.fw-border {
  border: 1px solid #e9ecef;
}
.fw-notification {
  font-size: 12px;
  position: absolute;
  padding: 5px 10px;
  background: rgba(229, 239, 255, 0.9);
  top: -25px;
  transform: translateX(83%);
  z-index: 10;
}
.js-copy {
  position: relative;
}
.fw-input {
  height: 50px !important;
  line-height: 50px;
  padding-left: 1rem;
}
.fw-dropdown-list {
  position: absolute;
  z-index: 10;
  background: #fff;
  width: 100%;
  border: 1px solid #e9ecef;
  box-sizing: border-box;
  padding: 0.5rem 0;
  max-height: 350px;
  overflow-y: auto;
}
.fw-city-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fw-city-item {
  padding: 0.25rem 1rem;
  cursor: pointer;
}
.fw-city-item:hover {
  background-color: #0054d3;
  color: #fff;
}
.fw-select-disable {
  user-select: none;
}
.fw-description {
  max-height: 170px;
  overflow: hidden;
  position: relative;
  margin-bottom: var(--gap, 20px);
  transition: linear 0.3s;
}
.fw-description-overflow:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;
  background-image: linear-gradient(180deg, transparent, #fff);
}
.fw-description.active:after {
  display: none;
}
.fw-description.active {
  max-height: none;
}
.fw-visible-hover {
  opacity: 0;
  transition: opacity linear 0.3s;
}
*:hover > .fw-visible-hover {
  opacity: 1;
}
.fw-slidenav-wrapper {
  padding-top: 3px;
}
.alert {
  position: relative;
  margin-bottom: 20px;
  padding: 15px 30px;
  background: var(--bg-muted);
  color: #222;
}
.alert-danger {
  background: #ffd4d4;
  color: #ff0d0d;
}
.fw-section-index {
  display: flow-root;
  box-sizing: border-box;
  padding-top: 40px;
  padding-bottom: 40px;
}
.fw-nophoto-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fbfbfb;
}
.fw-section-lead {
  position: relative;
  overflow-x: clip;
}
.fw-section-lead__img {
  max-width: none;
}
@media (max-width: 1279px) {
  .fw-section-lead__img {
    max-width: 100%;
  }
}
.primary {
  color: var(--primary);
}
.fw-section-lead--inverse {
  background: #e8e9e4;
  color: var(--bg-default);
}
.fw-section-lead--inverse .fw-title {
  color: var(--bg-default);
}
.fw-section-lead--inverse .fw-section-lead__bg3 {
  filter: invert(1);
}
.fs-base {
  font-size: var(--fs-base);
}
.fs-small {
  font-size: var(--fs-small);
}
.fs-xsmall {
  font-size: var(--fs-xsmall);
}
.fs-h6 {
  font-size: var(--fs-h6);
}
.fw-100 {
  font-weight: 100;
}
.fw-200 {
  font-weight: 200;
}
.fw-300 {
  font-weight: 300;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.fw-800 {
  font-weight: 800;
}
.fw-900 {
  font-weight: 900;
}
.category-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1.25fr 0.5fr 1.25fr;
  grid-template-areas: "a b b" "c c d";
}
@media (max-width: 1279px) {
  .category-grid {
    display: flex;
    flex-wrap: wrap;
  }
  .category-grid > * {
    width: 100%;
  }
}
.category-grid__item {
  position: relative;
  height: 100%;
  min-height: 330px;
  border-radius: var(--border-radius);
}
.category-grid > *::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.category-grid > *:nth-of-type(1) {
  grid-area: a;
}
.category-grid > *:nth-of-type(1)::after {
  background: right/100% url(/uploads/storage/shared/lines.svg) no-repeat;
}
.category-grid > *:nth-of-type(2) {
  grid-area: b;
}
.category-grid > *:nth-of-type(2)::after {
  background: right/80% url(/uploads/storage/shared/cells.svg) no-repeat;
}
.category-grid > *:nth-of-type(3) {
  grid-area: c;
}
.category-grid > *:nth-of-type(3)::after {
  background: right/60% url(/uploads/storage/shared/circles.svg) no-repeat;
}
.category-grid > *:nth-of-type(4) {
  grid-area: d;
}
.category-grid > *:nth-of-type(4)::after {
  background: right/80% url(/uploads/storage/shared/squares.svg) no-repeat;
}
.grid-xlarge {
  margin-left: -160px;
}
.grid-xlarge > * {
  padding-left: 160px;
}
.img-cell {
  position: absolute;
  top: 0;
  left: -240px;
  pointer-events: none;
}
.hr-secondary, .fw-accordion > *, .radial-gradient-bg, .radial-gradient-bg-top {
  border-image-slice: 1;
  border-image-source: linear-gradient(90deg, transparent, var(--secondary), transparent);
}
.uk-accordion-title p {
  margin: 0;
}
.fw-accordion > * {
  padding-bottom: var(--gap);
  border-bottom: 1px solid;
}
.fw-accordion .uk-accordion-title {
  padding-right: 50px;
}
.fw-accordion-icon {
  position: absolute;
  right: var(--gap-sm);
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
}
.uk-open .fw-accordion-icon {
  transform: translateY(-50%) rotate(180deg);
}
.radial-gradient-bg {
  background: radial-gradient(50% 100% at 50% 0%, var(--secondary-a07), transparent 100%), radial-gradient(50% 100% at 50% 100%, var(--secondary-a07), transparent 100%);
  border-top: 1px solid;
  border-bottom: 1px solid;
}
.radial-gradient-bg-top {
  background: radial-gradient(50% 100% at 50% 0%, var(--secondary-a07), transparent 100%);
  border-top: 1px solid;
}
.uk-dotnav > * > * {
  border: 1px solid var(--accent-color);
}
.uk-modal-dialog {
  border-radius: var(--border-radius);
}
.fw-section-833 {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -24px;
}
.reviews-bg, .theme-bg, .fw-section-850 {
  background: top left / 1060px url(/uploads/storage/shared/decor02.svg) no-repeat, linear-gradient(90deg, var(--primary), #363698);
}
@media (min-width: 1024px) {
  .width35-m {
    width: 35%;
    box-sizing: border-box;
  }
}
.min-h100 {
  min-height: 100px;
}
.circle-number {
  display: flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: 2px solid var(--base-border-color);
  border-radius: 50%;
}
.p-xl {
  padding: var(--padding-xl);
}
.fw-text-overflow {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fw-text-overflow--2 {
  -webkit-line-clamp: 2;
}
.fw-text-overflow--3 {
  -webkit-line-clamp: 3;
}
.main-layer {
  display: flex;
  gap: var(--gap);
  margin-right: -40px;
}
.main-layer__right-col {
  flex-grow: 1;
}
@media (max-width: 1024px) {
  .main-layer {
    margin-right: 0;
  }
}
@media (max-width: 1599px) {
  .main-layer--about {
    flex-direction: column;
    max-width: 100%;
  }
}
@media (max-width: 1599px) {
  .main-layer--about-reverse {
    flex-direction: column-reverse;
    max-width: 100%;
  }
}
@media (max-width: 1279px) {
  .main-layer--about-reverse .main-layer__right-col {
    padding-top: var(--section-padding);
  }
  .main-layer--about-reverse .main-layer__left-col {
    padding-top: 0;
  }
}
.main-layer__left-col {
  min-width: 210px;
  max-width: 100%;
}
.main-layer__right-col {
  max-width: 100%;
}
.main-layer--xl {
  column-gap: var(--gap-xl);
}
.main-layer__grid {
  display: grid;
  width: 990px;
  max-width: 100%;
  grid-template-columns: 1fr 265px;
  padding: var(--gap-md) var(--gap);
  gap: var(--gap);
  grid-template-areas: "a b" "a c";
}
.main-layer__grid > * {
  position: relative;
}
.main-layer__grid > *:nth-child(1) {
  grid-area: a;
}
.main-layer__grid > *:nth-child(2) {
  grid-area: b;
}
.main-layer__grid > *:nth-child(3) {
  grid-area: c;
}
@media (max-width: 1024px) {
  .main-layer__grid {
    box-sizing: border-box;
  }
}
@media (max-width: 1023px) {
  .main-layer__grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 1599px) {
  .uk-container-expand-right {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
  }
}
.uk-lightbox-toolbar {
  height: 0;
  padding: 0;
}
.uk-lightbox-toolbar-icon.uk-close {
  position: fixed;
  top: var(--gap-md);
  right: var(--gap-md);
}
.fw-section--main-layer {
  padding-top: var(--gap-xs);
}
.left-col__body {
  height: 100%;
  overflow-y: auto;
  max-width: 210px;
  padding: var(--gap);
  border-radius: var(--control-border-radius);
  box-shadow: var(--box-shadow);
  box-sizing: border-box;
}
.left-col__body .fw-catalog-menu__link {
  font-weight: 600;
}
.twocols {
  display: grid;
}
@media (max-width: 1023px) {
  .twocols {
    display: flex;
    flex-direction: column;
  }
  .twocols > * {
    min-height: 400px;
  }
}
@media (min-width: 1240px) {
  .feadback__left {
    margin-left: calc((100vw - var(--container-width))/2 - var(--padding-xl) - var(--gap)/2);
  }
}
@media (min-width: 1240px) {
  .feadback__right {
    margin-right: calc((100vw - var(--container-width))/2 - var(--padding-xl) - var(--gap)/2);
  }
}
.about-mission {
  position: relative;
  z-index: 10;
  margin: calc((var(--section-padding) + var(--section-small-padding))* -1) 0 calc(-1*var(--section-small-padding));
}
@media (max-width: 1023px) {
  .about-mission {
    padding-bottom: var(--section-padding);
    margin: 0;
  }
}
.fw-feadback {
  padding: var(--gap-md);
  background: var(--primary);
  border-radius: var(--control-border-radius);
}
@media (min-width: 1024px) {
  .fw-feadback {
    position: absolute;
    left: 0;
    right: 0;
    transform: translateY(-90px);
  }
}
.fw-feadback .fw-btn-primary {
  background-color: var(--primary-inverse);
  color: var(--secondary);
  font-weight: 600;
  border-color: var(--primary-inverse);
  width: 100%;
  box-sizing: border-box;
}
.fw-feadback .fw-btn-primary:hover {
  background-color: var(--secondary);
  color: var(--secondary-inverse);
  border-color: var(--secondary);
}
.fw-feadback .fw-control-textarea {
  height: 120px;
}
.bg-gradient-primary {
  background: linear-gradient(-45deg, #363698, #291773);
}
.location {
  margin-top: calc(-1*var(--section-padding));
  z-index: 10;
  position: relative;
}
.fw-slider-container {
  padding-bottom: 2px;
  padding-right: 2px;
}
.uk-lightbox-button.uk-slidenav-previous {
  margin-left: var(--gap);
}
.uk-lightbox-button.uk-slidenav-next {
  margin-right: var(--gap);
}
.uk-open > .uk-accordion-title::before {
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' data-svg='chevron-down'%3E%3Cpolyline fill='none' stroke='%23000' stroke-width='1.03' points='16 7 10 13 4 7'%3E%3C/polyline%3E%3C/svg%3E");
}
.mr-xxs {
  margin-right: var(--gap-xxs);
}
.fw-rubric, .fw-rubrics {
  margin-bottom: var(--gap);
}
.fw-rubric-link {
  display: inline-block;
  margin: 3px 2px 3px 0;
  border-radius: var(--border-radius);
  padding: var(--gap-xxs) var(--gap);
  background-color: var(--bg-muted);
  color: var(--base-color);
  font-weight: 500;
  text-decoration: none;
  font-size: var(--fs-small);
}
.fw-rubric-link:hover, .fw-rubric-link.active {
  text-decoration: none;
  background-color: var(--primary);
  color: var(--primary-inverse);
}
.value-with-units:after {
  content: attr(data-units);
  margin-left: 5px;
}
.fw-section-832 {
  position: relative;
  overflow-x: clip;
}
.fw-section-832::before {
  content: "";
  background: url(/uploads/storage/shared/decor01.svg);
  position: absolute;
  width: 1060px;
  height: 1060px;
  pointer-events: none;
  right: -10%;
  top: -200%;
  z-index: -1;
  overflow-x: hidden;
}
@media (min-width: 420px) and (max-width: 639px) {
  .child-width-1-2-xs > * {
    width: 50%;
  }
}
.fw-alert {
  padding: var(--gap-sm) var(--gap-md);
  background-color: var(--bg-muted);
  font-weight: 500;
}
.fw-alert-success {
  background-color: var(--success100);
}
.fw-blog {
  border: 1px solid #eee;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fw-blog__desc {
  padding: 20px;
}
.fw-blog__bottom {
  padding: 20px;
  padding-top: 0;
}
.fw-blogs__rubrics {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
}
.fw-blogs__rubric {
  border: 1px solid #005eec;
  border-radius: 60px;
  color: #005eec;
  padding: 0 15px;
  line-height: 40px;
  margin-right: 10px;
  margin-bottom: 10px;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .fw-blogs__rubric {
    line-height: 30px;
    font-size: 0.875rem;
  }
}
.fw-blogs__rubric:hover {
  background: #005eec;
  color: #fff;
  text-decoration: none;
}
.fw-blogs__rubric.fw-current-rubric {
  background: #005eec;
  color: #fff;
}
.star {
  color: var(--warning);
}
.star-fill svg {
  fill: var(--warning);
}
.fw-product-card {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  padding: var(--gap) var(--gap-sm);
  background: var(--bg-default);
  box-sizing: border-box;
  position: relative;
  border-radius: var(--border-radius);
  box-shadow: 2px 2px 0 0 var(--base-border-color), inset 2px 2px 0 0 var(--base-border-color);
}
.fw-product-card:hover {
  box-shadow: 2px 2px 0 0 var(--base-border-color), inset 2px 2px 0 0 var(--base-border-color), 0 0 25px rgba(0, 0, 0, 0.15);
  z-index: 10;
}
.fw-product-card__wrap {
  box-sizing: border-box;
}
.fw-product-card__img {
  position: relative;
}
.fw-product-card__title {
  font-weight: 500;
  font-size: var(--fs-h6);
  color: var(--base-color);
  display: block;
}
.fw-product-card__title:hover {
  color: var(--primary);
  text-decoration: none;
}
@media (max-width: 640px) {
  .fw-product-card__title {
    font-size: 14px;
    line-height: 1.25;
  }
}
.fw-product-card__oldprice {
  font-weight: 300;
  position: relative;
  display: inline-block;
  color: var(--text-muted);
  font-size: var(--fs-base);
}
.fw-product-card__oldprice::after {
  content: "";
  display: block;
  border-top: 1px solid var(--text-muted);
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
}
.fw-product-card__price {
  font-size: var(--fs-h6);
  font-weight: 800;
  color: var(--primary);
}
.fw-product-card__pricecart {
  margin-bottom: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--gap-xs);
  row-gap: var(--gap-xxs);
  align-items: baseline;
}
.fw-product-card .fw-btn-addToCart {
  width: 100%;
  padding: 0;
}
.fw-product-card__discount {
  color: var(--primary-inverse);
  font-size: var(--fs-small);
  background-color: var(--primary);
  border-radius: var(--border-radius-sm);
  padding: 0 var(--gap-xs);
  font-weight: 500;
}
.fw-product-card__units {
  color: var(--text-muted);
  font-weight: 300;
  font-size: var(--fs-small);
}
.fw-grid-view {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0;
}
.fw-grid-view .fw-product-card__wrap, .fw-grid-view .product-card__wrap {
  padding: 0 0;
  width: 100%;
}
@media (min-width: 420px) {
  .fw-grid-view .fw-product-card__wrap, .fw-grid-view .product-card__wrap {
    width: 50%;
  }
}
@media (min-width: 640px) {
  .fw-grid-view .fw-product-card__wrap, .fw-grid-view .product-card__wrap {
    width: 33.3333333333%;
  }
}
@media (min-width: 1024px) {
  .fw-grid-view .fw-product-card__wrap, .fw-grid-view .product-card__wrap {
    width: 33.3333333333%;
  }
}
@media (min-width: 1280px) {
  .fw-grid-view .fw-product-card__wrap, .fw-grid-view .product-card__wrap {
    width: 33.3333333333%;
  }
}
@media (min-width: 1600px) {
  .fw-grid-view .fw-product-card__wrap, .fw-grid-view .product-card__wrap {
    width: 33.3333333333%;
  }
}
.fw-grid-view .fw-product-card, .uk-slider .fw-product-card, .fw-product-slider .fw-product-card, .fw-product-items__grid .fw-product-card {
  flex-direction: column;
  border-radius: var(--border-radius);
}
.fw-grid-view .fw-product-card__img, .uk-slider .fw-product-card__img, .fw-product-slider .fw-product-card__img, .fw-product-items__grid .fw-product-card__img {
  text-align: center;
}
.fw-grid-view .fw-product-card__body, .uk-slider .fw-product-card__body, .fw-product-slider .fw-product-card__body, .fw-product-items__grid .fw-product-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.fw-grid-view .fw-product-card__text, .uk-slider .fw-product-card__text, .fw-product-slider .fw-product-card__text, .fw-product-items__grid .fw-product-card__text {
  margin-bottom: 0.5rem;
}
.fw-grid-view .fw-product-card__footer, .uk-slider .fw-product-card__footer, .fw-product-slider .fw-product-card__footer, .fw-product-items__grid .fw-product-card__footer {
  margin-top: auto;
}
.fw-grid-view .fw-product-card__actions, .uk-slider .fw-product-card__actions, .fw-product-slider .fw-product-card__actions, .fw-product-items__grid .fw-product-card__actions {
  position: absolute;
  top: var(--gap);
  right: var(--gap-sm);
  width: min-content;
}
.fw-grid-view .fw-product-card .fw-btn-desire, .uk-slider .fw-product-card .fw-btn-desire, .fw-product-slider .fw-product-card .fw-btn-desire, .fw-product-items__grid .fw-product-card .fw-btn-desire {
  margin-bottom: 0.5rem;
}
.fw-grid-view .fw-product-card .fw-product__kod, .uk-slider .fw-product-card .fw-product__kod, .fw-product-slider .fw-product-card .fw-product__kod, .fw-product-items__grid .fw-product-card .fw-product__kod {
  display: none;
}
.fw-grid-view .fw-product-card .fw-rating, .uk-slider .fw-product-card .fw-rating, .fw-product-slider .fw-product-card .fw-rating, .fw-product-items__grid .fw-product-card .fw-rating {
  margin-bottom: var(--gap-xs);
}
.fw-product-card__cart {
  display: flex;
  gap: var(--gap-xs);
}
.fw-product-card .fw-basket-product__count {
  background-color: var(--bg-muted);
  border-radius: var(--control-border-radius);
  flex: 0 0 120px;
  width: 120px;
}
.fw-product-card .fw-input-count__group {
  width: auto;
  justify-content: space-around;
  padding: 0 var(--gap-xxs);
}
.fw-product-card .fw-input-count__input {
  height: calc(var(--control-line-height-sm) + 2* var(--base-border-width));
}
.fw-product-card .uk-icon-button {
  border-radius: var(--border-radius-xs);
}
.uk-slider .fw-product-card .fw-product-card__properties, .fw-product-slider .fw-product-card .fw-product-card__properties {
  display: none;
}
.fw-grid-view .fw-product-card .fw-product-card__properties, .fw-product-items__grid .fw-product-card .fw-product-card__properties {
  position: absolute;
  display: none;
  left: 0;
  right: 0;
  padding: var(--gap-sm) var(--gap);
  background: var(--bg-default);
  z-index: 10;
  top: calc(100% - var(--gap));
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  left: calc(var(--base-border-width) * (-1));
  right: calc(var(--base-border-width) * (-1));
  border: var(--base-border-width) solid var(--base-border-color);
  border-top-color: transparent;
  box-shadow: 0 25px 15px -15px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 14px 1.25rem rgba(0, 0, 0, 0.15);
}
.fw-list-view .fw-product-card {
  width: 100%;
  max-width: 100%;
  border-radius: var(--border-radius);
  padding: var(--gap) var(--gap-sm);
  gap: var(--gap);
  border-radius: var(--border-radius);
}
.fw-list-view .fw-product-card__wrap {
  padding: 0 0;
  width: 100%;
  margin-top: var(--base-border-width) * -1;
}
@media (max-width: 479.98px) {
  .fw-list-view .fw-product-card__wrap {
    padding: 0;
  }
}
.fw-list-view .fw-product-card__img {
  flex: 0 0 344px;
  max-width: 344px;
}
@media (max-width: 767.98px) {
  .fw-list-view .fw-product-card__img {
    flex: 0 0 30%;
    max-width: 30%;
  }
}
.fw-list-view .fw-product-card__body {
  flex-grow: 1;
  display: flex;
  gap: var(--gap);
}
@media (max-width: 639.98px) {
  .fw-list-view .fw-product-card__body {
    display: block;
  }
}
.fw-list-view .fw-product-card__footer {
  width: 190px;
  max-width: 190px;
  flex: 0 0 190px;
}
@media (max-width: 639.98px) {
  .fw-list-view .fw-product-card__footer {
    margin-top: 1rem;
  }
}
@media (max-width: 567.98px) {
  .fw-list-view .fw-product-card__footer {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
}
.fw-list-view .fw-product-card__text {
  flex-grow: 1;
  gap: var(--gap);
}
@media (max-width: 639.98px) {
  .fw-list-view .fw-product-card__text {
    padding-right: 0;
  }
}
@media (max-width: 567.98px) {
  .fw-list-view .fw-product-card__cart {
    margin-right: 1rem;
  }
}
@media (max-width: 359.98px) {
  .fw-list-view .fw-product-card__cart {
    margin-right: 0.5rem;
  }
}
@media (min-width: 568px) {
  .fw-list-view .fw-product-card__actions {
    margin-top: 1rem;
  }
}
@media (max-width: 567.98px) {
  .fw-list-view .fw-product-card__pricecart {
    width: 100%;
  }
}
.fw-list-view .fw-product-card .fw-product__properties-text {
  margin-top: 5px;
  margin-bottom: 15px;
}
@media (max-width: 479.98px) {
  .fw-list-view {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.fw-list-view .fw-rating {
  margin-right: 1rem;
}
.fw-list-view .link-desire, .fw-list-view .link-compare {
  font-size: 0.9rem;
}
.fw-list-view .btn-desire, .fw-list-view .btn-compare {
  width: 20px;
  height: 20px;
}
.fw-list-view .shipping {
  justify-content: start;
}
.fw-list-view .product-properties {
  width: 100%;
  margin: 0.25rem 0;
  font-size: 0.875rem;
}
@media (max-width: 479.98px) {
  .fw-list-view .product-properties {
    font-size: 0.8125rem;
  }
}
.fw-list-view .fw-btn-addToCart {
  width: 100%;
}
@media (max-width: 359.98px) {
  .fw-list-view .fw-btn-addToCart {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 13px;
  }
  .fw-list-view .fw-btn-addToCart .uk-icon {
    display: none;
  }
}
.js-desire.active {
  color: red;
}
.js-desire.active path {
  fill: red;
}
.js-compare.active {
  color: red;
}
/*
.fw-btn [uk-icon="addtocart"] {
margin-right: var(--gap-xxs);
}
*/
.fw-product-card__wrap {
  position: relative;
}
.fw-product-card__wrap:hover {
  z-index: 10;
}
.fw-product-card__oldprice-wrap {
  display: inline-block;
  line-height: 1;
}
.fw-product-card .fw-sticker-wrap {
  z-index: 1;
  top: var(--gap);
  left: var(--gap-sm);
}
.uk-section-muted .fw-product-card {
  background: var(--bg-muted);
}
.fw-product-card__properties {
  font-size: var(--fs-h6);
}
.fw-product-card__properties .fw-property-item {
  display: block;
  margin-bottom: var(--gap-xxs);
  padding-bottom: 0;
  border-bottom: none;
}
.fw-product-card__properties .fw-property-values, .fw-product-card__properties .fw-property-name {
  display: inline;
}
.fw-product-card__properties .fw-property-values {
  padding-left: var(--gap-xxs);
  font-weight: 500;
}
@media (max-width: 1024px) {
  .fw-product-card .fw-btn-addToCart {
    font-size: 0;
  }
}
.fw-sticker {
  color: #fff;
  font-size: 12px;
  padding: 5px 10px 5px 10px;
  margin-right: 5px;
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
  height: 22px;
  border-radius: 4px;
  line-height: 1;
  box-sizing: border-box;
  z-index: 10;
}
.fw-sticker-wrap {
  position: absolute;
  z-index: 10;
  left: var(--gap-xs);
  top: var(--gap-xs);
}
.fw-sticker-transform {
  z-index: 1;
  position: absolute;
  top: 12px;
  right: -30px;
  padding: 6px 40px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.5s cubic-bezier(0.25, 0.5, 0.06, 0.85);
  transition: 0.5s cubic-bezier(0.25, 0.5, 0.06, 0.85);
}
.fw-sticker-availability {
  background-color: var(--success);
}
.fw-sticker-availability-off {
  background-color: #a1a1a1;
}
.fw-sticker-promo {
  background-color: var(--primary);
}
.fw-sticker-sale {
  background-color: var(--primary-dark);
}
.fw-sticker-hit {
  background-color: var(--primary);
}
.fw-sticker-new {
  background-color: var(--success);
}
#livesearch-result {
  position: absolute;
  left: 0px;
  right: 0px;
  background-color: white;
  z-index: 999999;
  box-shadow: 0 25px 15px -15px rgba(0, 0, 0, 0.25);
  max-height: calc(100vh - 400px);
  border-left: 1px solid var(--base-border-color);
  border-right: 1px solid var(--base-border-color);
  overflow-y: auto;
}
#livesearch-result .fw-btn {
  height: var(--control-line-height-sm);
  line-height: calc(var(--control-line-height-sm) - 2*var(--base-border-width));
}
.livesearch-link {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  padding: 5px 10px;
  border: 1px solid var(--base-border-color);
  font-size: 12px;
  box-sizing: border-box;
  margin-top: -1px;
}
.livesearch-link:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
  text-decoration: none;
}
.livesearch-link:first-of-type {
  border-top-color: transparent;
}
.livesearch-link-toSearch {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--primary-inverse);
}
.livesearch-link-toSearch:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}
.fw-livesearch-item {
  display: flex;
  position: relative;
  padding: 10px;
  background-color: #fff;
  border-top: 1px solid #e9ecef;
  font-size: 14px;
}
.fw-livesearch-item__body {
  flex-grow: 1;
}
.fw-livesearch-item__img {
  margin-right: 15px;
  flex: 0 0 50px;
}
.fw-livesearch-item__name {
  font-weight: 600;
}
.fw-livesearch-item__text {
  font-size: 12px;
}
.fw-livesearch-item__cart {
  display: flex;
  align-items: baseline;
}
.fw-livesearch-item__price_old {
  text-decoration: line-through;
  margin-right: 15px;
}
.fw-livesearch-item__price {
  font-weight: 600;
  margin-right: auto;
}
.fw-livesearch-item__toCart {
  margin-left: 15px;
  opacity: 0;
  position: relative;
}
.fw-livesearch-item__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.fw-livesearch-item:first-of-type {
  border-top-color: transparent;
}
.fw-livesearch-item:hover {
  background-color: #F4F4F4;
}
.fw-livesearch-item:hover .fw-livesearch-item__toCart {
  opacity: 1;
  z-index: 20;
}
.fw-card--crd01.fw-bg-default {
  background-color: var(--bg-default);
}
.fw-card--crd01.fw-bg-muted {
  background-color: var(--bg-muted);
}
.fw-card--crd01.fw-bg-transparent {
  background-color: transparent;
}
.fw-card--crd01.fw-bg-primary {
  background-color: #005eec;
}
.fw-card--crd01.fw-bg-secondary {
  background-color: var(--secondary);
}
.fw-card--crd01.fw-bg-dark {
  background-color: #212529;
  color: #fff;
}
.fw-card--crd01.fw-bg-dark .fw-card--crd01__title, .fw-card--crd01.fw-bg-dark .fw-card--crd01__date {
  color: #fff;
}
.fw-card--crd01.fw-bg-dark .fw-link-parent, .fw-card--crd01.fw-bg-dark .fw-read-more, .fw-card--crd01.fw-bg-dark .fw-card--crd01__desc a {
  color: rgba(255, 255, 255, 0.7);
}
.fw-card--crd01.fw-bg-dark .fw-link-parent:hover, .fw-card--crd01.fw-bg-dark .fw-read-more:hover, .fw-card--crd01.fw-bg-dark .fw-card--crd01__desc a:hover {
  color: #fff;
}
.fw-card--crd01__desc {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fw-card--crd02 {
  height: 576px;
  color: #fff;
}
.fw-card--crd02__img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.fw-card--crd02__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
}
.fw-card--crd02__img:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: calc(var(--border-radius-sm) - 2px);
  background: linear-gradient(0, rgba(0, 0, 0, 0.8), transparent);
}
.fw-card--crd02__body {
  position: relative;
  height: auto;
  margin-top: auto;
}
.fw-card--crd02__footer {
  position: relative;
}
.fw-card--crd02__desc {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fw-card--crd02__title, .fw-card--crd02__date {
  color: #fff;
}
.fw-card--crd02 .fw-link-parent, .fw-card--crd02__desc a {
  color: rgba(255, 255, 255, 0.7);
}
.fw-card--crd02 .fw-link-parent:hover, .fw-card--crd02__desc a:hover {
  color: #fff;
}
.fw-card--crd03 {
  border: none;
  box-shadow: none;
}
.fw-card--crd03.fw-bg-default {
  background-color: var(--bg-default);
}
.fw-card--crd03.fw-bg-muted {
  background-color: var(--bg-muted);
}
.fw-card--crd03.fw-bg-transparent {
  background-color: transparent;
}
.fw-card--crd03.fw-bg-primary {
  background-color: #005eec;
}
.fw-card--crd03.fw-bg-secondary {
  background-color: var(--secondary);
}
.fw-card--crd03__img {
  border-radius: 10px;
}
.fw-card--crd03__body {
  padding-left: 0;
  padding-right: 0;
}
.fw-card--crd03__footer {
  padding-left: 0;
  padding-right: 0;
}
.fw-card--crd03__desc {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fw-light .fw-card--crd03 {
  color: #fff;
}
.fw-light .fw-card--crd03__title, .fw-light .fw-card--crd03__date {
  color: #fff;
}
.fw-light .fw-card--crd03 .fw-link-parent, .fw-light .fw-card--crd03 .fw-read-more, .fw-light .fw-card--crd03__desc a {
  color: rgba(255, 255, 255, 0.7);
}
.fw-light .fw-card--crd03 .fw-link-parent:hover, .fw-light .fw-card--crd03 .fw-read-more:hover, .fw-light .fw-card--crd03__desc a:hover {
  color: #fff;
}
.fw-card--crd04 {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 8px;
}
.fw-card--crd04.fw-bg-default {
  background-color: var(--bg-default);
}
.fw-card--crd04.fw-bg-muted {
  background-color: var(--bg-muted);
}
.fw-card--crd04.fw-bg-transparent {
  background-color: transparent;
}
.fw-card--crd04.fw-bg-primary {
  background-color: #005eec;
}
.fw-card--crd04.fw-bg-secondary {
  background-color: var(--secondary);
}
.fw-card--crd04__img {
  border-radius: 10px;
  filter: brightness(1);
  transform: scale(1);
  transition: 0.3s;
}
.fw-card--crd04__body {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  box-sizing: border-box;
}
.fw-card--crd04__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  padding: 5px 10px;
  background-color: #005eec;
  transform: translateY(0);
  transition: 0.3s;
  margin-bottom: 5px;
  border-radius: 5px;
}
.fw-card--crd04:hover .fw-card--crd04__img {
  filter: brightness(0.65);
  transform: scale(1.1);
}
.fw-card--crd04:hover .fw-card--crd04__body {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.fw-card--crd04:hover .fw-card--crd04__title {
  transform: translateY(-30px);
  color: #fff;
}
.fw-card--crd05 {
  position: relative;
  overflow: hidden;
  display: block;
}
.fw-card--crd05.fw-bg-default {
  background-color: var(--bg-default);
}
.fw-card--crd05.fw-bg-muted {
  background-color: var(--bg-muted);
}
.fw-card--crd05.fw-bg-transparent {
  background-color: transparent;
}
.fw-card--crd05.fw-bg-primary {
  background-color: #005eec;
}
.fw-card--crd05.fw-bg-secondary {
  background-color: var(--secondary);
}
.fw-card--crd05__top {
  overflow: hidden;
  position: relative;
}
.fw-card--crd05__img {
  filter: brightness(1);
  transform: scale(1);
  transition: 0.3s;
}
.fw-card--crd05__body {
  padding: 10px 0 0;
}
.fw-card--crd05:hover .fw-card--crd05__img {
  filter: brightness(0.65);
  transform: scale(1.1);
}
/*# sourceMappingURL=style.min.map */