/* ========================================================================
   Component: Base
 ========================================================================== */
/*
 * 1. Set `font-size` to support `rem` units
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Style
 */
html {
  /* 1 */
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.3;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
  background: #fff;
  color: #464646;
}
/*
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}
/* Links
 ========================================================================== */
/*
 * Style
 */
a,
.uk-link {
  color: #e30013;
  text-decoration: none;
  cursor: pointer;
}
a:hover,
.uk-link:hover,
.uk-link-toggle:hover .uk-link {
  color: #7d000a;
  text-decoration: none;
  transition: all 0.2s ease;
}
/* 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: 14px;
  /* 3 */
  color: #f0506e;
  white-space: nowrap;
}
/*
 * Emphasize
 */
em {
  color: #f0506e;
}
/*
 * Insert
 */
ins {
  background: #ffd;
  color: #464646;
  text-decoration: none;
}
/*
 * Mark
 */
mark {
  background: #ffd;
  color: #464646;
}
/*
 * 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 the element and the bottom of its parent container.
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
/*
 * 1. Constrain the element to its parent width.
 * 2. Preserve the intrinsic aspect ratio and auto-scale the height of an image if the `height` attribute is present.
 * 3. Take border and padding into account.
 */
canvas,
img,
svg,
video {
  /* 1 */
  max-width: 100%;
  /* 2 */
  height: auto;
  /* 3 */
  box-sizing: border-box;
}
/*
 * Deprecated: only needed for `img` elements with `uk-img`
 * 1. Hide `alt` text for lazy load images.
 * 2. Fix lazy loading images if parent element is set to `display: inline` and has `overflow: hidden`.
 */
img:not([src]) {
  /* 1 */
  visibility: hidden;
  /* 2 */
  min-width: 1px;
}
/*
 * Iframe
 * Remove border in all browsers
 */
iframe {
  border: 0;
}
/* Block elements
 ========================================================================== */
/*
 * Margins
 */
p,
ul,
ol,
dl,
pre,
address,
fieldset,
figure {
  margin: 0 0 20px 0;
}
/* Add margin if adjacent element */
* + p,
* + ul,
* + ol,
* + dl,
* + pre,
* + address,
* + fieldset,
* + figure {
  margin-top: 20px;
}
/* Headings
 ========================================================================== */
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,
.uk-heading-3xlarge {
  margin: 0 0 20px 0;
  font-family: Roboto, sans-serif;
  font-weight: bold;
  color: #464646;
  text-transform: none;
}
/* 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,
* + .uk-heading-3xlarge {
  margin-top: 30px;
}
/*
 * Sizes
 */
h1,
.uk-h1 {
  font-size: 35.7px;
  line-height: 1.2;
  text-transform: uppercase;
}
h2,
.uk-h2 {
  font-size: 22.1px;
  line-height: 1.2;
}
h3,
.uk-h3 {
  font-size: 20px;
  line-height: 1.4;
}
h4,
.uk-h4 {
  font-size: 16px;
  line-height: 1.4;
}
h5,
.uk-h5 {
  font-size: 16px;
  line-height: 1.4;
}
h6,
.uk-h6 {
  font-size: 14px;
  line-height: 1.4;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  h1,
  .uk-h1 {
    font-size: 42px;
  }
  h2,
  .uk-h2 {
    font-size: 26px;
  }
}
/* 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 20px 0;
  border: 0;
  border-top: 1px solid #d8d8d8;
}
/* Add margin if adjacent element */
* + hr,
* + .uk-hr {
  margin-top: 20px;
}
/* Address
 ========================================================================== */
address {
  font-style: normal;
}
/* Blockquotes
 ========================================================================== */
blockquote {
  margin: 0 0 20px 0;
  font-size: 16px;
  line-height: 1.5;
  font-style: italic;
}
/* Add margin if adjacent element */
* + blockquote {
  margin-top: 20px;
}
/*
 * Content
 */
blockquote p:last-of-type {
  margin-bottom: 0;
}
blockquote footer {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}
/* Preformatted text
 ========================================================================== */
/*
 * 1. Contain overflow in all browsers.
 */
pre {
  font: 14px / 1.5 Consolas, monaco, monospace;
  color: #464646;
  -moz-tab-size: 4;
  tab-size: 4;
  /* 1 */
  overflow: auto;
}
pre code {
  font-family: Consolas, monaco, monospace;
}
/* Focus
 ========================================================================== */
:focus {
  outline: none;
}
:focus-visible {
  outline: 2px solid #e30013;
}
/* 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 {
  /* 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
 */
:root {
  --uk-breakpoint-s: 640px;
  --uk-breakpoint-m: 960px;
  --uk-breakpoint-l: 1200px;
  --uk-breakpoint-xl: 1600px;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
svg {
  /* 1 */
  max-width: unset;
  /* 2 */
  height: auto;
  /* 3 */
  box-sizing: border-box;
}
h1.page-name {
  margin-top: 50px;
  margin-bottom: 50px !important;
  text-align: center;
  position: relative;
  width: auto;
  display: block;
}
h1.page-name:after {
  content: '';
  height: 2px;
  background: #e30013;
  width: 80px;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
iframe.video {
  /* 1 */
  width: 100%;
  /* 2 */
  height: auto;
  /* 3 */
  box-sizing: border-box;
}
/* ========================================================================
   Component: Link
 ========================================================================== */
/* Muted
 ========================================================================== */
a.uk-link-muted,
.uk-link-muted a,
.uk-link-toggle .uk-link-muted {
  color: #888;
}
a.uk-link-muted:hover,
.uk-link-muted a:hover,
.uk-link-toggle:hover .uk-link-muted {
  color: #464646;
}
/* Text
 ========================================================================== */
a.uk-link-text,
.uk-link-text a,
.uk-link-toggle .uk-link-text {
  color: inherit;
}
a.uk-link-text:hover,
.uk-link-text a:hover,
.uk-link-toggle:hover .uk-link-text {
  color: #888;
}
/* Heading
 ========================================================================== */
a.uk-link-heading,
.uk-link-heading a,
.uk-link-toggle .uk-link-heading {
  color: inherit;
}
a.uk-link-heading:hover,
.uk-link-heading a:hover,
.uk-link-toggle:hover .uk-link-heading {
  color: #e30013;
  text-decoration: none;
}
/* Reset
 ========================================================================== */
/*
 * `!important` needed to override inverse component
 */
a.uk-link-reset,
.uk-link-reset a {
  color: inherit !important;
  text-decoration: none !important;
}
/* Toggle
 ========================================================================== */
.uk-link-toggle {
  color: inherit !important;
  text-decoration: none !important;
}
/* ========================================================================
   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;
}
.uk-heading-3xlarge {
  font-size: 8rem;
  line-height: 1;
}
/* Tablet Landscape and bigger */
@media (min-width: 960px) {
  .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;
  }
  .uk-heading-3xlarge {
    font-size: 11rem;
  }
}
/* Laptop and bigger */
@media (min-width: 1200px) {
  .uk-heading-medium {
    font-size: 4rem;
  }
  .uk-heading-large {
    font-size: 6rem;
  }
  .uk-heading-xlarge {
    font-size: 8rem;
  }
  .uk-heading-2xlarge {
    font-size: 11rem;
  }
  .uk-heading-3xlarge {
    font-size: 15rem;
  }
}
/* 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 #d8d8d8;
}
/* 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 #d8d8d8;
}
/* 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 #d8d8d8;
}
.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: Divider
 ========================================================================== */
/*
 * 1. Reset default `hr`
 * 2. Set margin if a `div` is used for semantical reason
 */
[class*="uk-divider"] {
  /* 1 */
  border: none;
  /* 2 */
  margin-bottom: 20px;
}
/* Add margin if adjacent element */
* + [class*="uk-divider"] {
  margin-top: 20px;
}
/* Icon
 ========================================================================== */
.uk-divider-icon {
  position: relative;
  height: 20px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22none%22%20stroke%3D%22%23d8d8d8%22%20stroke-width%3D%222%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%227%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.uk-divider-icon::before,
.uk-divider-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  max-width: calc(50% - (50px / 2));
  border-bottom: 1px solid #d8d8d8;
}
.uk-divider-icon::before {
  right: calc(50% + (50px / 2));
  width: 100%;
}
.uk-divider-icon::after {
  left: calc(50% + (50px / 2));
  width: 100%;
}
/* Small
 ========================================================================== */
/*
 * 1. Fix height because of `inline-block`
 * 2. Using ::after and inline-block to make `text-align` work
 */
/* 1 */
.uk-divider-small {
  line-height: 0;
}
/* 2 */
.uk-divider-small::after {
  content: "";
  display: inline-block;
  width: 100px;
  max-width: 100%;
  border-top: 1px solid #d8d8d8;
  vertical-align: top;
}
/* Vertical
 ========================================================================== */
.uk-divider-vertical {
  width: max-content;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  border-left: 1px solid #d8d8d8;
}
/* ========================================================================
   Component: List
 ========================================================================== */
.uk-list {
  padding: 0;
  list-style: none;
}
/*
 * Avoid column break within the list item, when using `column-count`
 */
.uk-list > * {
  break-inside: avoid-column;
}
/*
 * Remove margin from the last-child
 */
.uk-list > * > :last-child {
  margin-bottom: 0;
}
/*
 * Style
 */
.uk-list > :nth-child(n+2),
.uk-list > * > ul {
  margin-top: 10px;
}
/* Marker modifiers
 * Moving `::marker` inside `::before` to style it differently
 * To style the `::marker` is currently only supported in Firefox and Safari
 ========================================================================== */
.uk-list-disc > *,
.uk-list-circle > *,
.uk-list-square > *,
.uk-list-decimal > *,
.uk-list-hyphen > * {
  padding-left: 30px;
}
/*
 * Type modifiers
 */
.uk-list-decimal {
  counter-reset: decimal;
}
.uk-list-decimal > * {
  counter-increment: decimal;
}
.uk-list-disc > ::before,
.uk-list-circle > ::before,
.uk-list-square > ::before,
.uk-list-decimal > ::before,
.uk-list-hyphen > ::before {
  content: "";
  position: relative;
  left: -30px;
  width: 30px;
  height: 1.3em;
  margin-bottom: -1.3em;
  display: list-item;
  list-style-position: inside;
  text-align: right;
}
.uk-list-disc > ::before {
  list-style-type: disc;
}
.uk-list-circle > ::before {
  list-style-type: circle;
}
.uk-list-square > ::before {
  list-style-type: square;
}
.uk-list-decimal > ::before {
  content: counter(decimal, decimal) '\200A.\00A0';
}
.uk-list-hyphen > ::before {
  content: '–\00A0\00A0';
}
/*
 * Color modifiers
 */
.uk-list-muted > ::before {
  color: #888 !important;
}
.uk-list-emphasis > ::before {
  color: #e30013 !important;
}
.uk-list-primary > ::before {
  color: #e30013 !important;
}
.uk-list-secondary > ::before {
  color: #222 !important;
}
/* Image bullet modifier
 ========================================================================== */
.uk-list-bullet > * {
  padding-left: 30px;
}
.uk-list-bullet > ::before {
  content: "";
  display: list-item;
  position: relative;
  left: -30px;
  width: 30px;
  height: 1.3em;
  margin-bottom: -1.3em;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%226%22%20height%3D%226%22%20viewBox%3D%220%200%206%206%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23464646%22%20cx%3D%223%22%20cy%3D%223%22%20r%3D%223%22%20%2F%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
/* Style modifiers
 ========================================================================== */
/*
 * Divider
 */
.uk-list-divider > :nth-child(n+2) {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #d8d8d8;
}
/*
 * Striped
 */
.uk-list-striped > * {
  padding: 10px 10px;
}
.uk-list-striped > :nth-of-type(odd) {
  background: #d8d8d8;
}
.uk-list-striped > :nth-child(n+2) {
  margin-top: 0;
}
/* Size modifier
 ========================================================================== */
.uk-list-large > :nth-child(n+2),
.uk-list-large > * > ul {
  margin-top: 20px;
}
.uk-list-collapse > :nth-child(n+2),
.uk-list-collapse > * > ul {
  margin-top: 0;
}
/*
 * Divider
 */
.uk-list-large.uk-list-divider > :nth-child(n+2) {
  margin-top: 20px;
  padding-top: 20px;
}
.uk-list-collapse.uk-list-divider > :nth-child(n+2) {
  margin-top: 0;
  padding-top: 0;
}
/*
 * Striped
 */
.uk-list-large.uk-list-striped > * {
  padding: 20px 10px;
}
.uk-list-collapse.uk-list-striped > * {
  padding-top: 0;
  padding-bottom: 0;
}
.uk-list-large.uk-list-striped > :nth-child(n+2),
.uk-list-collapse.uk-list-striped > :nth-child(n+2) {
  margin-top: 0;
}
/* ========================================================================
   Component: Description list
 ========================================================================== */
/*
 * Term
 */
.uk-description-list > dt {
  color: #e30013;
}
.uk-description-list > dt:nth-child(n+2) {
  margin-top: 20px;
}
/*
 * Description
 */
/* Style modifier
 ========================================================================== */
/*
 * Line
 */
.uk-description-list-divider > dt:nth-child(n+2) {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #d8d8d8;
}
/* ========================================================================
   Component: Table
 ========================================================================== */
/*
 * 1. Remove most spacing between table cells.
 * 2. Behave like a block element
 * 3. Style
 */
.uk-table {
  /* 1 */
  border-collapse: collapse;
  border-spacing: 0;
  /* 2 */
  width: 100%;
  /* 3 */
  margin-bottom: 20px;
}
/* Add margin if adjacent element */
* + .uk-table {
  margin-top: 20px;
}
/* Header cell
 ========================================================================== */
/*
 * 1. Style
 */
.uk-table th {
  padding: 16px 12px;
  text-align: left;
  vertical-align: bottom;
  /* 1 */
  font-size: 16px;
  font-weight: bold;
  color: #464646;
}
/* Cell
 ========================================================================== */
.uk-table td {
  padding: 16px 12px;
  vertical-align: top;
}
/*
 * Remove margin from the last-child
 */
.uk-table td > :last-child {
  margin-bottom: 0;
}
/* Footer
 ========================================================================== */
.uk-table tfoot {
  font-size: 14px;
}
/* Caption
 ========================================================================== */
.uk-table caption {
  font-size: 14px;
  text-align: left;
  color: #888;
}
/* Alignment modifier
 ========================================================================== */
.uk-table-middle,
.uk-table-middle td {
  vertical-align: middle !important;
}
/* Style modifiers
 ========================================================================== */
/*
 * Divider
 */
.uk-table-divider > tr:not(:first-child),
.uk-table-divider > :not(:first-child) > tr,
.uk-table-divider > :first-child > tr:not(:first-child) {
  border-top: 1px solid #d8d8d8;
}
/*
 * Striped
 */
.uk-table-striped > tr:nth-of-type(odd),
.uk-table-striped tbody tr:nth-of-type(odd) {
  background: #d8d8d8;
}
/*
 * Hover
 */
.uk-table-hover > tr:hover,
.uk-table-hover tbody tr:hover {
  background: #ffd;
}
/* Active state
 ========================================================================== */
.uk-table > tr.uk-active,
.uk-table tbody tr.uk-active {
  background: #ffd;
}
/* Size modifier
 ========================================================================== */
.uk-table-small th,
.uk-table-small td {
  padding: 10px 12px;
}
.uk-table-large th,
.uk-table-large td {
  padding: 22px 12px;
}
/* Justify modifier
 ========================================================================== */
.uk-table-justify th:first-child,
.uk-table-justify td:first-child {
  padding-left: 0;
}
.uk-table-justify th:last-child,
.uk-table-justify td:last-child {
  padding-right: 0;
}
/* Cell size modifier
 ========================================================================== */
.uk-table-shrink {
  width: 1px;
}
.uk-table-expand {
  min-width: 150px;
}
/* Cell link modifier
 ========================================================================== */
/*
 * Does not work with `uk-table-justify` at the moment
 */
.uk-table-link {
  padding: 0 !important;
}
.uk-table-link > a {
  display: block;
  padding: 16px 12px;
}
.uk-table-small .uk-table-link > a {
  padding: 10px 12px;
}
/* Responsive table
 ========================================================================== */
/* Phone landscape and smaller */
@media (max-width: 959px) {
  .uk-table-responsive,
  .uk-table-responsive tbody,
  .uk-table-responsive th,
  .uk-table-responsive td,
  .uk-table-responsive tr {
    display: block;
  }
  .uk-table-responsive thead {
    display: none;
  }
  .uk-table-responsive th,
  .uk-table-responsive td {
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    overflow: visible !important;
    white-space: normal !important;
  }
  .uk-table-responsive th:not(:first-child):not(.uk-table-link),
  .uk-table-responsive td:not(:first-child):not(.uk-table-link),
  .uk-table-responsive .uk-table-link:not(:first-child) > a {
    padding-top: 5px !important;
  }
  .uk-table-responsive th:not(:last-child):not(.uk-table-link),
  .uk-table-responsive td:not(:last-child):not(.uk-table-link),
  .uk-table-responsive .uk-table-link:not(:last-child) > a {
    padding-bottom: 5px !important;
  }
  .uk-table-justify.uk-table-responsive th,
  .uk-table-justify.uk-table-responsive td {
    padding-left: 0;
    padding-right: 0;
  }
}
/* ========================================================================
   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
 * 1. Required for `span` with background image
 * 2. Required for `image`
 */
.uk-icon-image {
  width: 20px;
  height: 20px;
  /* 1 */
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  /* 2 */
  object-fit: scale-down;
  max-width: none;
}
/* Style modifiers
 ========================================================================== */
/*
 * Link
 * 1. Allow text within link
 */
.uk-icon-link {
  color: #888;
  /* 1 */
  text-decoration: none !important;
}
.uk-icon-link:hover {
  color: #464646;
}
/* OnClick + Active */
.uk-icon-link:active,
.uk-active > .uk-icon-link {
  color: #393939;
}
/*
 * Button
 * 1. Center icon vertically and horizontally
 */
.uk-icon-button {
  box-sizing: border-box;
  width: 36px;
  height: 36px;
  border-radius: 500px;
  background: #d8d8d8;
  color: #888;
  vertical-align: middle;
  /* 1 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
/* Hover */
.uk-icon-button:hover {
  background-color: #cbcbcb;
  color: #464646;
}
/* OnClick + Active */
.uk-icon-button:active,
.uk-active > .uk-icon-button {
  background-color: #bfbfbf;
  color: #464646;
}
/* ========================================================================
   Component: Form Range
 ========================================================================== */
/*
 * 1. Remove default style.
 * 2. Define consistent box sizing.
 * 3. Remove `margin` in all browsers.
 * 4. Align to the center of the line box.
 * 5. Prevent content overflow if a fixed width is used.
 * 6. Take the full width.
 * 7. Remove white background in Chrome.
 */
.uk-range {
  /* 1 */
  -webkit-appearance: none;
  /* 2 */
  box-sizing: border-box;
  /* 3 */
  margin: 0;
  /* 4 */
  vertical-align: middle;
  /* 5 */
  max-width: 100%;
  /* 6 */
  width: 100%;
  /* 7 */
  background: transparent;
}
/* Focus */
.uk-range:focus {
  outline: none;
}
.uk-range::-moz-focus-outer {
  border: none;
}
/*
 * Improves consistency of cursor style for clickable elements
 */
.uk-range:not(:disabled)::-webkit-slider-thumb {
  cursor: pointer;
}
.uk-range:not(:disabled)::-moz-range-thumb {
  cursor: pointer;
}
/*
 * Track
 * 1. Safari doesn't have a focus state. Using active instead.
 */
/* Webkit */
.uk-range::-webkit-slider-runnable-track {
  height: 3px;
  background: #cbcbcb;
}
.uk-range:focus::-webkit-slider-runnable-track,
.uk-range:active::-webkit-slider-runnable-track {
  background: #bebebe;
}
/* Firefox */
.uk-range::-moz-range-track {
  height: 3px;
  background: #cbcbcb;
}
.uk-range:focus::-moz-range-track {
  background: #bebebe;
}
/*
 * Thumb
 * 1. Reset
 * 2. Style
 */
/* Webkit */
.uk-range::-webkit-slider-thumb {
  /* 1 */
  -webkit-appearance: none;
  margin-top: -7px;
  /* 2 */
  height: 15px;
  width: 15px;
  border-radius: 500px;
  background: #464646;
}
/* Firefox */
.uk-range::-moz-range-thumb {
  /* 1 */
  border: none;
  /* 2 */
  height: 15px;
  width: 15px;
  margin-top: -7px;
  border-radius: 500px;
  background: #464646;
}
/* ========================================================================
   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,
.uk-select,
.uk-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 {
  overflow: visible;
}
/*
 * Remove the inheritance of text transform in Firefox.
 */
.uk-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 {
  /* 1 */
  font: inherit;
  /* 2 */
  font-weight: bold;
}
/*
 * Remove the default vertical scrollbar in IE 10+.
 */
.uk-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,
.uk-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,
.uk-input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/*
 * Removes placeholder transparency in Firefox.
 */
.uk-input::-moz-placeholder,
.uk-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.
 * 1. Reset `min-width`
 */
.uk-fieldset {
  border: none;
  margin: 0;
  padding: 0;
  /* 1 */
  min-width: 0;
}
/* Input, select and textarea
 * Allowed: `text`, `password`, `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,
.uk-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,
.uk-select,
.uk-textarea {
  /* 1 */
  max-width: 100%;
  /* 2 */
  width: 100%;
  /* 3 */
  border: 0 none;
  /* 4 */
  padding: 0 10px;
  background: #fff;
  color: #464646;
  border: 1px solid #d8d8d8;
  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,
.uk-select:not([multiple]):not([size]) {
  height: 40px;
  vertical-align: middle;
  /* 1 */
  display: inline-block;
  height: unset;
}
/* 2 */
.uk-input:not(input),
.uk-select:not(select) {
  line-height: 38px;
}
/*
 * Multi-line
 */
.uk-select[multiple],
.uk-select[size],
.uk-textarea {
  padding-top: 6px;
  padding-bottom: 6px;
  vertical-align: top;
}
.uk-select[multiple],
.uk-select[size] {
  resize: vertical;
}
/* Focus */
.uk-input:focus,
.uk-select:focus,
.uk-textarea:focus {
  outline: none;
  background-color: #fff;
  color: #464646;
  border-color: #e30013;
}
/* Disabled */
.uk-input:disabled,
.uk-select:disabled,
.uk-textarea:disabled {
  background-color: #d8d8d8;
  color: #888;
  border-color: #d8d8d8;
}
/*
 * Placeholder
 */
.uk-input::placeholder {
  color: #888;
}
.uk-textarea::placeholder {
  color: #888;
}
/* Style modifier (`uk-input`, `uk-select` and `uk-textarea`)
 ========================================================================== */
/*
 * Small
 */
.uk-form-small {
  font-size: 14px;
}
/* Single-line */
.uk-form-small:not(textarea):not([multiple]):not([size]) {
  height: 30px;
  padding-left: 8px;
  padding-right: 8px;
}
/* Multi-line */
textarea.uk-form-small,
[multiple].uk-form-small,
[size].uk-form-small {
  padding: 5px 8px;
}
.uk-form-small:not(select):not(input):not(textarea) {
  line-height: 28px;
}
/*
 * Large
 */
.uk-form-large {
  font-size: 16px;
}
/* Single-line */
.uk-form-large:not(textarea):not([multiple]):not([size]) {
  height: 55px;
  padding-left: 12px;
  padding-right: 12px;
}
/* Multi-line */
textarea.uk-form-large,
[multiple].uk-form-large,
[size].uk-form-large {
  padding: 7px 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: #f0506e;
  border-color: #f0506e;
}
/*
 * Success
 */
.uk-form-success,
.uk-form-success:focus {
  color: #32d296;
  border-color: #32d296;
}
/*
 * Blank
 */
.uk-form-blank {
  background: none;
  border-color: transparent;
}
.uk-form-blank:focus {
  border-color: #d8d8d8;
  border-style: solid;
}
/* 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. Set `color` for options in the select dropdown, because the inherited `color` might be too light.
 */
.uk-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%22%23464646%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23464646%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]) option {
  color: #464646;
}
/*
 * Disabled
 */
.uk-select:not([multiple]):not([size]):disabled {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23888%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23888%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] {
  padding-right: 20px;
  background-repeat: no-repeat;
  background-position: 100% 50%;
}
.uk-input[list]:hover,
.uk-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%22%23464646%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 {
  display: none !important;
}
/* Radio and checkbox
 ========================================================================== */
/*
 * 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
 */
.uk-radio,
.uk-checkbox {
  /* 1 */
  display: inline-block;
  height: 16px;
  width: 16px;
  /* 2 */
  overflow: hidden;
  /* 3 */
  margin-top: -4px;
  vertical-align: middle;
  /* 4 */
  -webkit-appearance: none;
  -moz-appearance: none;
  /* 5 */
  background-color: transparent;
  /* 6 */
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border: 1px solid #bfbfbf;
  transition: 0.2s ease-in-out;
  transition-property: background-color, border;
}
.uk-radio {
  border-radius: 50%;
}
/* Focus */
.uk-radio:focus,
.uk-checkbox:focus {
  background-color: rgba(0, 0, 0, 0);
  outline: none;
  border-color: #e30013;
}
/*
 * Checked
 */
.uk-radio:checked,
.uk-checkbox:checked,
.uk-checkbox:indeterminate {
  background-color: #e30013;
  border-color: transparent;
}
/* Focus */
.uk-radio:checked:focus,
.uk-checkbox:checked:focus,
.uk-checkbox:indeterminate:focus {
  background-color: #b0000f;
}
/*
 * Icons
 */
.uk-radio:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23fff%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-checkbox:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23fff%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.uk-checkbox:indeterminate {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23fff%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
/*
 * Disabled
 */
.uk-radio:disabled,
.uk-checkbox:disabled {
  background-color: #d8d8d8;
  border-color: #d8d8d8;
}
.uk-radio:disabled:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23888%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-checkbox:disabled:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23888%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-checkbox:disabled:indeterminate {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23888%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
/* 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: 20px;
  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: #e30013;
  font-size: 14px;
}
/* Layout
 ========================================================================== */
/*
 * Stacked
 */
.uk-form-stacked .uk-form-label {
  display: block;
  margin-bottom: 5px;
}
/*
 * Horizontal
 */
/* Tablet portrait and smaller */
@media (max-width: 959px) {
  /* Behave like `uk-form-stacked` */
  .uk-form-horizontal .uk-form-label {
    display: block;
    margin-bottom: 5px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-form-horizontal .uk-form-label {
    width: 200px;
    margin-top: 7px;
    float: left;
  }
  .uk-form-horizontal .uk-form-controls {
    margin-left: 215px;
  }
  /* Better vertical alignment if controls are checkboxes and radio buttons with text */
  .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: 40px;
  /* 3 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  /* 4 */
  color: #888;
}
/*
 * Required for `a`.
 */
.uk-form-icon:hover {
  color: #464646;
}
/*
 * 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 {
  padding-left: 40px !important;
}
/*
 * Position modifier
 */
.uk-form-icon-flip {
  right: 0;
  left: auto;
}
.uk-form-icon-flip ~ .uk-input {
  padding-right: 40px !important;
}
/* ========================================================================
   Component: Button
 ========================================================================== */
/*
 * 1. Remove margins in Chrome, Safari and Opera.
 * 2. Remove borders for `button`.
 * 3. Address `overflow` set to `hidden` in IE.
 * 4. Correct `font` properties and `color` not being inherited for `button`.
 * 5. Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 6. Remove default style for `input type="submit"`in iOS.
 * 7. Style
 * 8. `line-height` is used to create a height because it also centers the text vertically for `a` elements.
 *    Better would be to use height and flexbox to center the text vertically but flexbox doesn't work in Firefox on `button` elements.
 * 9. Align text if button has a width
 * 10. Required for `a`.
 */
.uk-button {
  /* 1 */
  margin: 0;
  /* 2 */
  border: none;
  /* 3 */
  overflow: visible;
  /* 4 */
  font: inherit;
  color: inherit;
  /* 5 */
  text-transform: none;
  /* 6 */
  -webkit-appearance: none;
  border-radius: 0;
  /* 7 */
  display: inline-block;
  box-sizing: border-box;
  padding: 0 30px;
  vertical-align: middle;
  font-size: 16px;
  /* 8 */
  line-height: 37px;
  /* 9 */
  text-align: center;
  /* 10 */
  text-decoration: none;
  text-transform: uppercase;
  border-radius: calc(37px / 2);
  border: 1px solid transparent;
  transition: 0.2s ease-in-out;
  transition-property: color, background-color;
}
.uk-button:not(:disabled) {
  cursor: pointer;
}
/*
 * Remove the inner border and padding in Firefox.
 */
.uk-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/* Hover */
.uk-button:hover {
  /* 9 */
  text-decoration: none;
}
/* OnClick + Active */
/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.uk-button-default {
  background-color: transparent;
  color: #464646;
  border: 1px solid #d8d8d8;
}
/* Hover */
.uk-button-default:hover {
  background-color: #d8d8d8;
  color: #464646;
  border-color: #a5a5a5;
}
/* OnClick + Active */
.uk-button-default:active,
.uk-button-default.uk-active {
  background-color: #e30013;
  color: #fff;
  border-color: #8c8c8c;
}
/*
 * Primary
 */
.uk-button-primary {
  background-color: #e30013;
  color: #fff;
  border: 1px solid transparent;
}
/* Hover */
.uk-button-primary:hover {
  background-color: #ca0011;
  color: #fff;
}
/* OnClick + Active */
.uk-button-primary:active,
.uk-button-primary.uk-active {
  background-color: #b0000f;
  color: #fff;
}
/*
 * Secondary
 */
.uk-button-secondary {
  background-color: #d8d8d8;
  color: #464646;
  border: 1px solid transparent;
}
/* Hover */
.uk-button-secondary:hover {
  background-color: #d8d8d8;
  color: #464646;
}
/* OnClick + Active */
.uk-button-secondary:active,
.uk-button-secondary.uk-active {
  background-color: #f9f9f9;
  color: #222;
}
/*
 * Danger
 */
.uk-button-danger {
  background-color: #e30013;
  color: #fff;
  border: 1px solid transparent;
}
/* Hover */
.uk-button-danger:hover {
  background-color: #ca0011;
  color: #fff;
}
/* OnClick + Active */
.uk-button-danger:active,
.uk-button-danger.uk-active {
  background-color: #b0000f;
  color: #fff;
}
/*
 * Disabled
 * The same for all style modifiers
 */
.uk-button-default:disabled,
.uk-button-primary:disabled,
.uk-button-secondary:disabled,
.uk-button-danger:disabled {
  background-color: #d8d8d8;
  color: #888;
  border-color: #d8d8d8;
}
/* Size modifiers
 ========================================================================== */
.uk-button-small {
  padding: 0 28px;
  line-height: 35px;
  font-size: 14px;
  border-radius: 17.5px;
}
.uk-button-large {
  padding: 0 34px;
  line-height: 40px;
  font-size: 18px;
  border-radius: 20px;
}
/* Text modifiers
 ========================================================================== */
/*
 * Text
 * 1. Reset
 * 2. Style
 */
.uk-button-text {
  /* 1 */
  padding: 0;
  line-height: 1.3;
  background: none;
  /* 2 */
  color: #888;
}
/* Hover */
.uk-button-text:hover {
  color: #464646;
}
/* Disabled */
.uk-button-text:disabled {
  color: #888;
}
/*
 * Link
 * 1. Reset
 * 2. Style
 */
.uk-button-link {
  /* 1 */
  padding: 0;
  line-height: 1.3;
  background: none;
  /* 2 */
  color: #e30013;
  text-decoration: none;
}
/* Hover */
.uk-button-link:hover {
  color: #7d000a;
  text-decoration: none;
}
/* Disabled */
.uk-button-link:disabled {
  color: #888;
  text-decoration: none;
}
/* Group
 ========================================================================== */
/*
 * 1. Using `flex` instead of `inline-block` to prevent whitespace betweent child elements
 * 2. Behave like button
 * 3. Create position context
 */
.uk-button-group {
  /* 1 */
  display: inline-flex;
  /* 2 */
  vertical-align: middle;
  /* 3 */
  position: relative;
}
.uk-button-group .uk-button:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.uk-button-group .uk-button:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.uk-button-group .uk-button:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
/* ========================================================================
   Component: Progress
 ========================================================================== */
/*
 * 1. Add the correct vertical alignment in all browsers.
 * 2. Behave like a block element.
 * 3. Remove borders in Firefox.
 * 4. Remove default style in Chrome, Safari and Edge.
 * 5. Style
 */
.uk-progress {
  /* 1 */
  vertical-align: baseline;
  /* 2 */
  display: block;
  width: 100%;
  /* 3 */
  border: 0;
  /* 4 */
  background-color: #d8d8d8;
  /* 5 */
  margin-bottom: 20px;
  height: 15px;
}
/* Add margin if adjacent element */
* + .uk-progress {
  margin-top: 20px;
}
/*
 * Show background color set on `uk-progress` in Chrome, Safari and Edge.
 */
.uk-progress::-webkit-progress-bar {
  background-color: transparent;
}
/*
 * Progress Bar
 * 1. Transitions don't work on `::-moz-progress-bar` pseudo element in Firefox yet.
 *    https://bugzilla.mozilla.org/show_bug.cgi?id=662351
 */
.uk-progress::-webkit-progress-value {
  background-color: #e30013;
  transition: width 0.6s ease;
}
.uk-progress::-moz-progress-bar {
  background-color: #e30013;
  /* 1 */
  transition: width 0.6s ease;
}
/* ========================================================================
   Component: Section
 ========================================================================== */
/*
 * 1. Make it work with `100vh` and height in general
 */
.uk-section {
  display: flow-root;
  box-sizing: border-box;
  /* 1 */
  padding-top: 15px;
  padding-bottom: 15px;
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .uk-section {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
/*
 * Remove margin from the last-child
 */
.uk-section > :last-child {
  margin-bottom: 0;
}
/* Size modifiers
 ========================================================================== */
/*
 * XSmall
 */
.uk-section-xsmall {
  padding-top: 15px;
  padding-bottom: 15px;
}
/*
 * Small
 */
.uk-section-small {
  padding-top: 15px;
  padding-bottom: 15px;
}
/*
 * Large
 */
.uk-section-large {
  padding-top: 30px;
  padding-bottom: 30px;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-section-large {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
/*
 * XLarge
 */
.uk-section-xlarge {
  padding-top: 30px;
  padding-bottom: 30px;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-section-xlarge {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.uk-section-default {
  --uk-inverse: dark;
  background: #fff;
}
/*
 * Muted
 */
.uk-section-muted {
  --uk-inverse: dark;
  background: #d8d8d8;
}
/*
 * Primary
 */
.uk-section-primary {
  --uk-inverse: dark;
  background: #d8d8d8;
}
/*
 * Secondary
 */
.uk-section-secondary {
  --uk-inverse: dark;
  background: #f9f9f9;
}
/* Overlap modifier
 ========================================================================== */
/*
 * Reserved modifier to make a section overlap another section with an border image
 * Implemented by the theme
 */
/* ========================================================================
   Component: Container
 ========================================================================== */
/*
 * 1. Box sizing has to be `content-box` so the max-width is always the same and
 *    unaffected by the padding on different breakpoints. It's important for the size modifiers.
 */
.uk-container {
  display: flow-root;
  /* 1 */
  box-sizing: content-box;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
/*
 * Remove margin from the last-child
 */
.uk-container > :last-child {
  margin-bottom: 0;
}
/*
 * Remove padding from nested containers
 */
.uk-container .uk-container {
  padding-left: 0;
  padding-right: 0;
}
/* Size modifier
 ========================================================================== */
.uk-container-xsmall {
  max-width: 800px;
}
.uk-container-small {
  max-width: 980px;
}
.uk-container-large {
  max-width: 1400px;
}
.uk-container-xlarge {
  max-width: 1600px;
}
.uk-container-expand {
  max-width: none;
}
/* Expand modifier
 ========================================================================== */
/*
 * Expand one side only
 */
.uk-container-expand-left {
  margin-left: 0;
}
.uk-container-expand-right {
  margin-right: 0;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-container-expand-left.uk-container-xsmall,
  .uk-container-expand-right.uk-container-xsmall {
    max-width: calc(50% + (800px / 2) - 30px);
  }
  .uk-container-expand-left.uk-container-small,
  .uk-container-expand-right.uk-container-small {
    max-width: calc(50% + (980px / 2) - 30px);
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-container-expand-left,
  .uk-container-expand-right {
    max-width: calc(50% + (1300px / 2) - 40px);
  }
  .uk-container-expand-left.uk-container-xsmall,
  .uk-container-expand-right.uk-container-xsmall {
    max-width: calc(50% + (800px / 2) - 40px);
  }
  .uk-container-expand-left.uk-container-small,
  .uk-container-expand-right.uk-container-small {
    max-width: calc(50% + (980px / 2) - 40px);
  }
  .uk-container-expand-left.uk-container-large,
  .uk-container-expand-right.uk-container-large {
    max-width: calc(50% + (1400px / 2) - 40px);
  }
  .uk-container-expand-left.uk-container-xlarge,
  .uk-container-expand-right.uk-container-xlarge {
    max-width: calc(50% + (1600px / 2) - 40px);
  }
}
/* Item
 ========================================================================== */
/*
 * Utility classes to reset container padding on the left or right side
 * Note: It has to be negative margin on the item, because it's specific to the item.
 */
.uk-container-item-padding-remove-left,
.uk-container-item-padding-remove-right {
  width: calc(100% + 15px);
}
.uk-container-item-padding-remove-left {
  margin-left: -15px;
}
.uk-container-item-padding-remove-right {
  margin-right: -15px;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-container-item-padding-remove-left,
  .uk-container-item-padding-remove-right {
    width: calc(100% + 30px);
  }
  .uk-container-item-padding-remove-left {
    margin-left: -30px;
  }
  .uk-container-item-padding-remove-right {
    margin-right: -30px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-container-item-padding-remove-left,
  .uk-container-item-padding-remove-right {
    width: calc(100% + 40px);
  }
  .uk-container-item-padding-remove-left {
    margin-left: -40px;
  }
  .uk-container-item-padding-remove-right {
    margin-right: -40px;
  }
}
/* ========================================================================
   Component: Tile
 ========================================================================== */
.uk-tile {
  display: flow-root;
  position: relative;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 30px;
  padding-bottom: 30px;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-tile {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-tile {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/*
 * Remove margin from the last-child
 */
.uk-tile > :last-child {
  margin-bottom: 0;
}
/* Size modifiers
 ========================================================================== */
/*
 * XSmall
 */
.uk-tile-xsmall {
  padding-top: 20px;
  padding-bottom: 20px;
}
/*
 * Small
 */
.uk-tile-small {
  padding-top: 30px;
  padding-bottom: 30px;
}
/*
 * Large
 */
.uk-tile-large {
  padding-top: 50px;
  padding-bottom: 50px;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-tile-large {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
/*
 * XLarge
 */
.uk-tile-xlarge {
  padding-top: 100px;
  padding-bottom: 100px;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-tile-xlarge {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.uk-tile-default {
  --uk-inverse: dark;
  background-color: #fff;
}
/*
 * Muted
 */
.uk-tile-muted {
  --uk-inverse: dark;
  background-color: #d8d8d8;
}
/*
 * Primary
 */
.uk-tile-primary {
  --uk-inverse: light;
  background-color: #e30013;
}
/*
 * Secondary
 */
.uk-tile-secondary {
  --uk-inverse: light;
  background-color: #222;
}
/* ========================================================================
   Component: Card
 ========================================================================== */
.uk-card {
  position: relative;
  box-sizing: border-box;
}
/* Sections
 ========================================================================== */
.uk-card-body {
  display: flow-root;
  padding: 30px 30px;
}
.uk-card-header {
  display: flow-root;
  padding: 15px 30px;
}
.uk-card-footer {
  display: flow-root;
  padding: 15px 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-card-body {
    padding: 40px 40px;
  }
  .uk-card-header {
    padding: 20px 40px;
  }
  .uk-card-footer {
    padding: 20px 40px;
  }
}
/*
 * Remove margin from the last-child
 */
.uk-card-body > :last-child,
.uk-card-header > :last-child,
.uk-card-footer > :last-child {
  margin-bottom: 0;
}
/* Media
 ========================================================================== */
/*
 * Reserved alignment modifier to style the media element, e.g. with `border-radius`
 * Implemented by the theme
 */
/* Title
 ========================================================================== */
.uk-card-title {
  font-size: 20px;
  line-height: 1.4;
}
/* Badge
 ========================================================================== */
/*
 * 1. Position
 * 2. Size
 * 3. Style
 * 4. Center child vertically
 */
.uk-card-badge {
  /* 1 */
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
  /* 2 */
  height: 22px;
  padding: 0 10px;
  /* 3 */
  background: #e30013;
  color: #fff;
  font-size: 14px;
  /* 4 */
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}
/*
 * Remove margin from adjacent element
 */
.uk-card-badge:first-child + * {
  margin-top: 0;
}
/* Hover modifier
 ========================================================================== */
.uk-card-hover:not(.uk-card-default):not(.uk-card-primary):not(.uk-card-secondary):hover {
  background-color: #d8d8d8;
}
/* Style modifiers
 ========================================================================== */
/*
 * Default
 * Note: Header and Footer are only implemented for the default style
 */
.uk-card-default {
  --uk-inverse: dark;
  background-color: #d8d8d8;
  color: #464646;
}
.uk-card-default .uk-card-title {
  color: #e30013;
}
.uk-card-default.uk-card-hover:hover {
  background-color: #cbcbcb;
}
/*
 * Primary
 */
.uk-card-primary {
  --uk-inverse: light;
  background-color: #e30013;
  color: #fff;
}
.uk-card-primary .uk-card-title {
  color: #fff;
}
.uk-card-primary.uk-card-hover:hover {
  background-color: #ca0011;
}
/*
 * Secondary
 */
.uk-card-secondary {
  --uk-inverse: light;
  background-color: #222;
  color: #fff;
}
.uk-card-secondary .uk-card-title {
  color: #fff;
}
.uk-card-secondary.uk-card-hover:hover {
  background-color: #151515;
}
/* Size modifier
 ========================================================================== */
/*
 * Small
 */
.uk-card-small.uk-card-body,
.uk-card-small .uk-card-body {
  padding: 20px 20px;
}
.uk-card-small .uk-card-header {
  padding: 13px 20px;
}
.uk-card-small .uk-card-footer {
  padding: 13px 20px;
}
/*
 * Large
 */
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-card-large.uk-card-body,
  .uk-card-large .uk-card-body {
    padding: 70px 70px;
  }
  .uk-card-large .uk-card-header {
    padding: 35px 70px;
  }
  .uk-card-large .uk-card-footer {
    padding: 35px 70px;
  }
}
/* ========================================================================
   Component: Close
 ========================================================================== */
/*
 * Adopts `uk-icon`
 */
.uk-close {
  color: #888;
}
/* Hover */
.uk-close:hover {
  color: #464646;
}
/* ========================================================================
   Component: Spinner
 ========================================================================== */
/*
 * Adopts `uk-icon`
 */
/* SVG
 ========================================================================== */
.uk-spinner > * {
  animation: uk-spinner-rotate 1.4s linear infinite;
}
@keyframes uk-spinner-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}
/*
 * Circle
 */
.uk-spinner > * > * {
  stroke-dasharray: 88px;
  stroke-dashoffset: 0;
  transform-origin: center;
  animation: uk-spinner-dash 1.4s ease-in-out infinite;
  stroke-width: 1;
  stroke-linecap: round;
}
@keyframes uk-spinner-dash {
  0% {
    stroke-dashoffset: 88px;
  }
  50% {
    stroke-dashoffset: 22px;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 88px;
    transform: rotate(450deg);
  }
}
/* ========================================================================
   Component: Totop
 ========================================================================== */
/*
 * Addopts `uk-icon`
 */
.uk-totop {
  padding: 5px;
  color: #888;
}
/* Hover */
.uk-totop:hover {
  color: #464646;
}
/* OnClick */
.uk-totop:active {
  color: #e30013;
}
/* ========================================================================
   Component: Marker
 ========================================================================== */
/*
 * Addopts `uk-icon`
 */
.uk-marker {
  padding: 5px;
  background: #222;
  color: #fff;
}
/* Hover */
.uk-marker:hover {
  color: #fff;
}
/* ========================================================================
   Component: Alert
 ========================================================================== */
.uk-alert {
  position: relative;
  margin-bottom: 20px;
  padding: 15px 29px 15px 15px;
  background: #d8d8d8;
  color: #464646;
}
/* Add margin if adjacent element */
* + .uk-alert {
  margin-top: 20px;
}
/*
 * Remove margin from the last-child
 */
.uk-alert > :last-child {
  margin-bottom: 0;
}
/* Close
 * Adopts `uk-close`
 ========================================================================== */
.uk-alert-close {
  position: absolute;
  top: 20px;
  right: 15px;
}
/*
 * Remove margin from adjacent element
 */
.uk-alert-close:first-child + * {
  margin-top: 0;
}
/*
 * Hover
 */
/* Style modifiers
 ========================================================================== */
/*
 * Primary
 */
.uk-alert-primary {
  background: #f8c2c6;
  color: #e30013;
}
/*
 * Success
 */
.uk-alert-success {
  background: #edfbf6;
  color: #32d296;
}
/*
 * Warning
 */
.uk-alert-warning {
  background: #fff6ee;
  color: #faa05a;
}
/*
 * Danger
 */
.uk-alert-danger {
  background: #fef4f6;
  color: #f0506e;
}
/* ========================================================================
   Component: Placeholder
 ========================================================================== */
.uk-placeholder {
  margin-bottom: 20px;
  padding: 30px 30px;
  background: #d8d8d8;
}
/* Add margin if adjacent element */
* + .uk-placeholder {
  margin-top: 20px;
}
/*
 * Remove margin from the last-child
 */
.uk-placeholder > :last-child {
  margin-bottom: 0;
}
/* ========================================================================
   Component: Badge
 ========================================================================== */
/*
 * 1. Style
 * 2. Center child vertically and horizontally
 */
.uk-badge {
  box-sizing: border-box;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 500px;
  vertical-align: middle;
  /* 1 */
  background: #e30013;
  color: #fff !important;
  font-size: 11px;
  /* 2 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}
/*
 * Required for `a`
 */
.uk-badge:hover {
  text-decoration: none;
}
/* ========================================================================
   Component: Label
 ========================================================================== */
.uk-label {
  display: inline-block;
  padding: 0 10px;
  background: #e30013;
  line-height: 1.3;
  font-size: 14px;
  color: #fff;
  vertical-align: middle;
  white-space: nowrap;
}
/* Color modifiers
 ========================================================================== */
/*
 * Success
 */
.uk-label-success {
  background-color: #32d296;
  color: #fff;
}
/*
 * Warning
 */
.uk-label-warning {
  background-color: #faa05a;
  color: #fff;
}
/*
 * Danger
 */
.uk-label-danger {
  background-color: #f0506e;
  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 {
  --uk-inverse: dark;
  background: rgba(255, 255, 255, 0.8);
}
/*
 * Primary
 */
.uk-overlay-primary {
  --uk-inverse: light;
  background: rgba(34, 34, 34, 0.8);
}
/* ========================================================================
   Component: Article
 ========================================================================== */
.uk-article {
  display: flow-root;
}
/*
 * Remove margin from the last-child
 */
.uk-article > :last-child {
  margin-bottom: 0;
}
/* Adjacent sibling
 ========================================================================== */
.uk-article + .uk-article {
  margin-top: 50px;
}
/* Title
 ========================================================================== */
.uk-article-title {
  font-size: 35.7px;
  line-height: 1.2;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-article-title {
    font-size: 42px;
  }
}
/* Meta
 ========================================================================== */
.uk-article-meta {
  font-size: 14px;
  line-height: 1.4;
  color: #888;
}
/* ========================================================================
   Component: Comment
 ========================================================================== */
/* Sections
 ========================================================================== */
.uk-comment-body {
  display: flow-root;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.uk-comment-header {
  display: flow-root;
  margin-bottom: 20px;
}
/*
 * Remove margin from the last-child
 */
.uk-comment-body > :last-child,
.uk-comment-header > :last-child {
  margin-bottom: 0;
}
/* Title
 ========================================================================== */
.uk-comment-title {
  font-size: 16px;
  line-height: 1.4;
}
/* Meta
 ========================================================================== */
.uk-comment-meta {
  font-size: 14px;
  line-height: 1.4;
  color: #888;
}
/* Avatar
 ========================================================================== */
/* List
 ========================================================================== */
.uk-comment-list {
  padding: 0;
  list-style: none;
}
/* Adjacent siblings */
.uk-comment-list > :nth-child(n+2) {
  margin-top: 50px;
}
/*
 * Sublists
 * Note: General sibling selector allows reply block between comment and sublist
 */
.uk-comment-list .uk-comment ~ ul {
  margin: 50px 0 0 0;
  padding-left: 30px;
  list-style: none;
}
/* Tablet and bigger */
@media (min-width: 960px) {
  .uk-comment-list .uk-comment ~ ul {
    padding-left: 100px;
  }
}
/* Adjacent siblings */
.uk-comment-list .uk-comment ~ ul > :nth-child(n+2) {
  margin-top: 50px;
}
/* Style modifier
 ========================================================================== */
/* ========================================================================
   Component: Search
 ========================================================================== */
/*
 * 1. Container fits its content
 * 2. Create position context
 * 3. Prevent content overflow
 * 4. Reset `form`
 */
.uk-search {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  margin: 0;
}
/* Input
 ========================================================================== */
/*
 * Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X.
 */
.uk-search-input::-webkit-search-cancel-button,
.uk-search-input::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
 * Removes placeholder transparency in Firefox.
 */
.uk-search-input::-moz-placeholder {
  opacity: 1;
}
/*
 * 1. Define consistent box sizing.
 * 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
 * 5. Show the overflow in Edge.
 * 6. Remove default style in iOS.
 * 7. Vertical alignment
 * 8. Take the full container width
 * 9. Style
 */
.uk-search-input {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  margin: 0;
  /* 3 */
  border-radius: 0;
  /* 4 */
  font: inherit;
  /* 5 */
  overflow: visible;
  /* 6 */
  -webkit-appearance: none;
  /* 7 */
  vertical-align: middle;
  /* 8 */
  width: 100%;
  /* 9 */
  border: none;
  color: #464646;
}
.uk-search-input:focus {
  outline: none;
}
/* Placeholder */
.uk-search-input::placeholder {
  color: #888;
}
/* Icon (Adopts `uk-icon`)
 ========================================================================== */
/*
 * Position above input
 * 1. Set position
 * 2. Center icon vertically and horizontally
 * 3. Style
 */
.uk-search .uk-search-icon {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  /* 3 */
  color: #888;
}
/*
 * Required for `a`.
 */
.uk-search .uk-search-icon:hover {
  color: #888;
}
/*
 * Make `input` element clickable through icon, e.g. if it's a `span`
 */
.uk-search .uk-search-icon:not(a):not(button):not(input) {
  pointer-events: none;
}
/*
 * Position modifier
 */
.uk-search .uk-search-icon-flip {
  right: 0;
  left: auto;
}
/* Default modifier
 ========================================================================== */
.uk-search-default {
  width: 240px;
}
/*
 * Input
 */
.uk-search-default .uk-search-input {
  height: 40px;
  padding-left: 10px;
  padding-right: 10px;
  background: #d8d8d8;
}
/* Focus */
.uk-search-default .uk-search-input:focus {
  background-color: #d3d3d3;
}
/*
 * Icon
 */
.uk-search-default .uk-search-icon {
  width: 40px;
}
.uk-search-default:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
  padding-left: 40px;
}
.uk-search-default:has(.uk-search-icon-flip) .uk-search-input {
  padding-right: 40px;
}
/* Navbar modifier
 ========================================================================== */
.uk-search-navbar {
  width: 240px;
}
/*
 * Input
 */
.uk-search-navbar .uk-search-input {
  height: 40px;
  padding-left: 10px;
  padding-right: 10px;
  background: #fff;
}
/* Focus */
.uk-search-navbar .uk-search-input:focus {
  background-color: #fcfcfc;
}
/*
 * Icon
 */
.uk-search-navbar .uk-search-icon {
  width: 40px;
}
.uk-search-navbar:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
  padding-left: 40px;
}
.uk-search-navbar:has(.uk-search-icon-flip) .uk-search-input {
  padding-right: 40px;
}
/* Medium modifier
 ========================================================================== */
.uk-search-medium {
  width: 400px;
}
/*
 * Input
 */
.uk-search-medium .uk-search-input {
  height: 40px;
  background: transparent;
  font-size: 20px;
}
/* Focus */
/*
 * Icon
 */
.uk-search-medium .uk-search-icon {
  width: 24px;
}
.uk-search-medium:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
  padding-left: 34px;
}
.uk-search-medium:has(.uk-search-icon-flip) .uk-search-input {
  padding-right: 34px;
}
/* Large modifier
 ========================================================================== */
.uk-search-large {
  width: 500px;
}
/*
 * Input
 */
.uk-search-large .uk-search-input {
  height: 80px;
  background: transparent;
  font-size: 42px;
}
/* Focus */
/*
 * Icon
 */
.uk-search-large .uk-search-icon {
  width: 40px;
}
.uk-search-large:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
  padding-left: 60px;
}
.uk-search-large:has(.uk-search-icon-flip) .uk-search-input {
  padding-right: 60px;
}
/* Toggle
 ========================================================================== */
.uk-search-toggle {
  color: #888;
}
/* Hover */
.uk-search-toggle:hover {
  color: #464646;
}
/* ========================================================================
   Component: Accordion
 ========================================================================== */
.uk-accordion {
  padding: 0;
  list-style: none;
}
/* Item
 ========================================================================== */
.uk-accordion > :nth-child(n+2) {
  margin-top: 20px;
}
/* Title
 ========================================================================== */
.uk-accordion-title {
  display: block;
  font-size: 16px;
  line-height: 1.4;
  color: #e30013;
}
/* Hover */
.uk-accordion-title:hover {
  color: #464646;
  text-decoration: none;
}
/* Content
 ========================================================================== */
.uk-accordion-content {
  display: flow-root;
  margin-top: 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;
  --uk-position-offset: 20px;
  --uk-position-viewport-offset: 15px;
  /* 3 */
  box-sizing: border-box;
  width: 300px;
}
/* Show */
.uk-drop.uk-open {
  display: block;
}
/* Grid modifiers
 ========================================================================== */
.uk-drop-stack .uk-drop-grid > * {
  width: 100% !important;
}
/* Parent icon
 ========================================================================== */
.uk-drop-parent-icon {
  margin-left: 0.25em;
  transition: transform 0.3s ease-out;
}
[aria-expanded="true"] > .uk-drop-parent-icon {
  transform: rotateX(180deg);
}
/* ========================================================================
   Component: Dropbar
 ========================================================================== */
/*
 * Adopts `uk-drop`
 * 1. Reset drop
 * 2. Style
 */
.uk-dropbar {
  --uk-position-offset: 0;
  --uk-position-shift-offset: 0;
  --uk-position-viewport-offset: 0;
  --uk-inverse: dark;
  /* 1 */
  width: auto;
  /* 2 */
  padding: 15px 15px 15px 15px;
  background: #d8d8d8;
  color: #464646;
}
/*
 * Remove margin from the last-child
 */
.uk-dropbar > :last-child {
  margin-bottom: 0;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-dropbar {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-dropbar {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.uk-dropbar :focus-visible {
  outline-color: #e30013 !important;
}
/* Size modifier
 ========================================================================== */
.uk-dropbar-large {
  padding-top: 40px;
  padding-bottom: 40px;
}
/* Direction modifier
 ========================================================================== */
/* ========================================================================
   Component: Dropnav
 ========================================================================== */
/*
 * 1. Position
 * 2. Reset dropbar
 * 3. Width
 */
.uk-dropnav-dropbar {
  /* 1 */
  position: absolute;
  z-index: 980;
  /* 2 */
  padding: 0;
  /* 3 */
  left: 0;
  right: 0;
}
/* ========================================================================
   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;
  /* 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: 960px) {
  .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. `!important` is 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: 100% !important;
  /* 4 */
  background: #fff;
  /* 5 */
  opacity: 0;
  transform: translateY(-100px);
  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: 20px 20px;
}
.uk-modal-header {
  display: flow-root;
  padding: 10px 20px;
  background: #d8d8d8;
}
.uk-modal-footer {
  display: flow-root;
  padding: 10px 20px;
  background: #d8d8d8;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-modal-body {
    padding: 30px 30px;
  }
  .uk-modal-header {
    padding: 15px 30px;
  }
  .uk-modal-footer {
    padding: 15px 30px;
  }
}
/*
 * 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: 26px;
  line-height: 1.3;
}
/* Close
 * Adopts `uk-close`
 ========================================================================== */
[class*="uk-modal-close-"] {
  position: absolute;
  z-index: 1010;
  top: 10px;
  right: 10px;
  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: #ffffff;
}
.uk-modal-close-outside:hover {
  color: #fff;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  /* 1 */
  .uk-modal-close-outside {
    right: 0;
    transform: translate(100%, -100%);
  }
}
/*
 * Full
 */
/* ========================================================================
   Component: Slideshow
 ========================================================================== */
/*
 * 1. Prevent tab highlighting on iOS.
 */
.uk-slideshow {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}
/* Items
 ========================================================================== */
/*
 * 1. Create position and stacking context
 * 2. Reset list
 * 3. Clip child elements
 * 4. Prevent displaying the callout information on iOS.
 * 5. Disable horizontal panning gestures
 */
.uk-slideshow-items {
  /* 1 */
  position: relative;
  z-index: 0;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  overflow: hidden;
  /* 4 */
  -webkit-touch-callout: none;
  /* 5 */
  touch-action: pan-y;
}
/* Item
 ========================================================================== */
/*
 * 1. Position items above each other
 * 2. Take the full width
 * 3. Clip child elements, e.g. for `uk-cover`
 * 4. Optimize animation
 */
.uk-slideshow-items > * {
  /* 1 */
  position: absolute;
  top: 0;
  left: 0;
  /* 2 */
  right: 0;
  bottom: 0;
  /* 3 */
  overflow: hidden;
  /* 4 */
  will-change: transform, opacity;
}
/*
 * Hide not active items
 */
.uk-slideshow-items > :not(.uk-active) {
  display: none;
}
/* ========================================================================
   Component: Slider
 ========================================================================== */
/*
 * 1. Prevent tab highlighting on iOS.
 */
.uk-slider {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}
/* Container
 ========================================================================== */
/*
 * 1. Clip child elements
 * 2. Prevent accidental scrolling through elements in slide getting focused
 */
.uk-slider-container {
  /* 1 */
  overflow: hidden;
  /* 2 */
  overflow: clip;
}
/*
 * Widen container to prevent box-shadows from clipping, `large-box-shadow`
 */
.uk-slider-container-offset {
  margin: -11px -25px -39px -25px;
  padding: 11px 25px 39px 25px;
}
/* Items
 ========================================================================== */
/*
 * 1. Optimize animation
 * 2. Create a containing block. In Safari it's neither created by `transform` nor `will-change`.
 * 3. Disable horizontal panning gestures
 */
.uk-slider-items {
  /* 1 */
  will-change: transform;
  /* 2 */
  position: relative;
  /* 3 */
  touch-action: pan-y;
}
/*
 * 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)
 *    `max-width` needed to keep image responsiveness and prevent content overflow
 * 2. Create position context
 */
.uk-slider-items > * {
  /* 1 */
  flex: none !important;
  box-sizing: border-box;
  max-width: 100%;
  /* 2 */
  position: relative;
}
/* ========================================================================
   Component: Sticky
 ========================================================================== */
/*
 * 1. Create position context so it's t the same like when fixed.
 * 2. Create stacking context already when not sticky to have the same context
*     for position set to `sticky` and `relative`
 * 2. More robust if padding and border are used and the sticky height is transitioned
 */
.uk-sticky {
  /* 1 */
  position: relative;
  /* 2 */
  z-index: 980;
  /* 3 */
  box-sizing: border-box;
}
/*
 * 1. Force new layer to resolve frame rate issues on devices with lower frame rates
 */
.uk-sticky-fixed {
  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;
}
/*
 * Placeholder
 * Make content clickable for sticky cover and reveal effects
 */
.uk-sticky-placeholder {
  pointer-events: none;
}
/* ========================================================================
   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 {
  --uk-inverse: light;
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: -270px;
  /* 2 */
  box-sizing: border-box;
  width: 270px;
  padding: 20px 20px;
  background: #222;
  /* 3 */
  overflow-y: auto;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-offcanvas-bar {
    left: -350px;
    width: 350px;
    padding: 30px 30px;
  }
}
/* Flip modifier */
.uk-offcanvas-flip .uk-offcanvas-bar {
  left: auto;
  right: -270px;
}
/* Tablet landscape and bigger */
@media (min-width: 640px) {
  .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: 270px;
}
/* Tablet landscape and bigger */
@media (min-width: 640px) {
  .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: 5px;
  right: 5px;
  padding: 5px;
}
/* Tablet landscape and bigger */
@media (min-width: 640px) {
  .uk-offcanvas-close {
    top: 10px;
    right: 10px;
  }
}
/*
 * Remove margin from adjacent element
 */
.uk-offcanvas-close:first-child + * {
  margin-top: 0;
}
/* 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`
 * 1. `clip` is needed for `position: sticky` elements to keep their position
 */
.uk-offcanvas-page,
.uk-offcanvas-container {
  overflow-x: hidden;
  /* 1 */
  overflow-x: clip;
}
/* 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: 270px;
}
.uk-offcanvas-flip.uk-offcanvas-container-animation {
  left: -270px;
}
/* Tablet landscape and bigger */
@media (min-width: 640px) {
  :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: 15px;
  /* 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
 */
:root {
  --uk-leader-fill-content: .;
}
/* ========================================================================
   Component: Notification
 ========================================================================== */
/*
 * 1. Set position
 * 2. Dimensions
 */
.uk-notification {
  /* 1 */
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1040;
  /* 2 */
  box-sizing: border-box;
  width: 800px;
  max-width: 100%;
}
/* Position modifiers
========================================================================== */
.uk-notification-top-right,
.uk-notification-bottom-right {
  left: auto;
  right: 10px;
}
.uk-notification-top-center,
.uk-notification-bottom-center {
  left: 50%;
  margin-left: -400px;
}
.uk-notification-bottom-left,
.uk-notification-bottom-right,
.uk-notification-bottom-center {
  top: auto;
  bottom: 10px;
}
/* Responsiveness
========================================================================== */
/* Phones portrait and smaller */
@media (max-width: 639px) {
  .uk-notification {
    left: 10px;
    right: 10px;
    width: auto;
    margin: 0;
  }
}
/* Message
========================================================================== */
.uk-notification-message {
  position: relative;
  padding: 15px;
  background: #d8d8d8;
  color: #464646;
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
  border: 1px solid #d8d8d8;
  padding-right: 40px;
}
* + .uk-notification-message {
  margin-top: 10px;
}
/* Close
 * Adopts `uk-close`
 ========================================================================== */
.uk-notification-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 15px;
}
.uk-notification-message:hover .uk-notification-close {
  display: block;
}
/* Style modifiers
 ========================================================================== */
/*
 * Primary
 */
.uk-notification-message-primary {
  color: #e30013;
  background: #f8c2c6;
  border: 1px solid #e30013;
}
/*
 * Success
 */
.uk-notification-message-success {
  color: #32d296;
  background: #edfbf6;
  border: 1px solid #32d296;
}
/*
 * Warning
 */
.uk-notification-message-warning {
  color: #faa05a;
  background: #fff6ee;
  border: 1px solid #faa05a;
}
/*
 * Danger
 */
.uk-notification-message-danger {
  color: #f0506e;
  background: #fef4f6;
  border: 1px solid #f0506e;
}
/* ========================================================================
   Component: Tooltip
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Position
 * 3. Remove tooltip from document flow to keep the UIkit container from changing its size when injected into the document initially
 * 4. Dimensions
 * 5. Style
 */
.uk-tooltip {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1030;
  --uk-position-offset: 10px;
  --uk-position-viewport-offset: 10;
  /* 3 */
  top: 0;
  /* 4 */
  box-sizing: border-box;
  max-width: 200px;
  padding: 3px 6px;
  /* 5 */
  background: #666;
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
}
/* Show */
.uk-tooltip.uk-active {
  display: block;
}
/* ========================================================================
   Component: Sortable
 ========================================================================== */
.uk-sortable {
  position: relative;
}
/*
 * Remove margin from the last-child
 */
.uk-sortable > :last-child {
  margin-bottom: 0;
}
/* Drag
 ========================================================================== */
.uk-sortable-drag {
  position: fixed !important;
  z-index: 1050 !important;
  pointer-events: none;
}
/* Placeholder
 ========================================================================== */
.uk-sortable-placeholder {
  opacity: 0;
  pointer-events: none;
}
/* Empty modifier
 ========================================================================== */
.uk-sortable-empty {
  min-height: 50px;
}
/* Handle
 ========================================================================== */
/* Hover */
.uk-sortable-handle:hover {
  cursor: move;
}
/* ========================================================================
   Component: Countdown
 ========================================================================== */
/* Item
 ========================================================================== */
/* Number
 ========================================================================== */
/*
 * 1. Make numbers all of the same size to prevent jumping. Must be supported by the font.
 * 2. Style
 */
.uk-countdown-number {
  /* 1 */
  font-variant-numeric: tabular-nums;
  /* 2 */
  font-size: 2rem;
  line-height: 0.8;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-countdown-number {
    font-size: 4rem;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-countdown-number {
    font-size: 6rem;
  }
}
/* Separator
 ========================================================================== */
.uk-countdown-separator {
  font-size: 1rem;
  line-height: 1.6;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-countdown-separator {
    font-size: 2rem;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-countdown-separator {
    font-size: 3rem;
  }
}
/* Label
 ========================================================================== */
/* ========================================================================
   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;
}
/* Hover */
/* Active */
/* 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. Center content vertically if there is still some text
 * 2. Imitate white space gap when using flexbox
 * 3. Force text not to affect item height
 * 4. Style
 * 5. Required for `a` if there is still some text
 */
.uk-iconnav > * > a {
  /* 1 */
  display: flex;
  align-items: center;
  /* 2 */
  column-gap: 0.25em;
  /* 3 */
  line-height: 0;
  /* 4 */
  color: #888;
  /* 5 */
  text-decoration: none;
}
/* Hover */
.uk-iconnav > * > a:hover {
  color: #464646;
}
/* Active */
.uk-iconnav > .uk-active > a {
  color: #464646;
}
/* 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: Grid
 ========================================================================== */
/*
 * 1. Allow cells to wrap into the next line
 * 2. Reset list
 */
.uk-grid {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * Grid cell
 * Note: Space is allocated solely based on content dimensions, but shrinks: 0 1 auto
 * Reset margin for e.g. paragraphs
 */
.uk-grid > * {
  margin: 0;
}
/*
 * Remove margin from the last-child
 */
.uk-grid > * > :last-child {
  margin-bottom: 0;
}
/* Gutter
 ========================================================================== */
/*
 * Default
 */
/* Horizontal */
.uk-grid {
  margin-left: -30px;
}
.uk-grid > * {
  padding-left: 30px;
}
/* Vertical */
.uk-grid + .uk-grid,
.uk-grid > .uk-grid-margin,
* + .uk-grid-margin {
  margin-top: 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .uk-grid {
    margin-left: -40px;
  }
  .uk-grid > * {
    padding-left: 40px;
  }
  /* Vertical */
  .uk-grid + .uk-grid,
  .uk-grid > .uk-grid-margin,
  * + .uk-grid-margin {
    margin-top: 40px;
  }
}
/*
 * Small
 */
/* Horizontal */
.uk-grid-small,
.uk-grid-column-small {
  margin-left: -15px;
}
.uk-grid-small > *,
.uk-grid-column-small > * {
  padding-left: 15px;
}
/* Vertical */
.uk-grid + .uk-grid-small,
.uk-grid + .uk-grid-row-small,
.uk-grid-small > .uk-grid-margin,
.uk-grid-row-small > .uk-grid-margin,
* + .uk-grid-margin-small {
  margin-top: 15px;
}
/*
 * Medium
 */
/* Horizontal */
.uk-grid-medium,
.uk-grid-column-medium {
  margin-left: -30px;
}
.uk-grid-medium > *,
.uk-grid-column-medium > * {
  padding-left: 30px;
}
/* Vertical */
.uk-grid + .uk-grid-medium,
.uk-grid + .uk-grid-row-medium,
.uk-grid-medium > .uk-grid-margin,
.uk-grid-row-medium > .uk-grid-margin,
* + .uk-grid-margin-medium {
  margin-top: 30px;
}
/*
 * Large
 */
/* Horizontal */
.uk-grid-large,
.uk-grid-column-large {
  margin-left: -40px;
}
.uk-grid-large > *,
.uk-grid-column-large > * {
  padding-left: 40px;
}
/* Vertical */
.uk-grid + .uk-grid-large,
.uk-grid + .uk-grid-row-large,
.uk-grid-large > .uk-grid-margin,
.uk-grid-row-large > .uk-grid-margin,
* + .uk-grid-margin-large {
  margin-top: 40px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .uk-grid-large,
  .uk-grid-column-large {
    margin-left: -70px;
  }
  .uk-grid-large > *,
  .uk-grid-column-large > * {
    padding-left: 70px;
  }
  /* Vertical */
  .uk-grid + .uk-grid-large,
  .uk-grid + .uk-grid-row-large,
  .uk-grid-large > .uk-grid-margin,
  .uk-grid-row-large > .uk-grid-margin,
  * + .uk-grid-margin-large {
    margin-top: 70px;
  }
}
/*
 * Collapse
 */
/* Horizontal */
.uk-grid-collapse,
.uk-grid-column-collapse {
  margin-left: 0;
}
.uk-grid-collapse > *,
.uk-grid-column-collapse > * {
  padding-left: 0;
}
/* Vertical */
.uk-grid + .uk-grid-collapse,
.uk-grid + .uk-grid-row-collapse,
.uk-grid-collapse > .uk-grid-margin,
.uk-grid-row-collapse > .uk-grid-margin {
  margin-top: 0;
}
/* Divider
 ========================================================================== */
.uk-grid-divider > * {
  position: relative;
}
.uk-grid-divider > :not(.uk-first-column)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  border-left: 1px solid #d8d8d8;
}
/* Vertical */
.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px solid #d8d8d8;
}
/*
 * Default
 */
/* Horizontal */
.uk-grid-divider {
  margin-left: -60px;
}
.uk-grid-divider > * {
  padding-left: 60px;
}
.uk-grid-divider > :not(.uk-first-column)::before {
  left: 30px;
}
/* Vertical */
.uk-grid-divider.uk-grid-stack > .uk-grid-margin {
  margin-top: 60px;
}
.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
  top: -30px;
  left: 60px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .uk-grid-divider {
    margin-left: -80px;
  }
  .uk-grid-divider > * {
    padding-left: 80px;
  }
  .uk-grid-divider > :not(.uk-first-column)::before {
    left: 40px;
  }
  /* Vertical */
  .uk-grid-divider.uk-grid-stack > .uk-grid-margin {
    margin-top: 80px;
  }
  .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
    top: -40px;
    left: 80px;
  }
}
/*
 * Small
 */
/* Horizontal */
.uk-grid-divider.uk-grid-small,
.uk-grid-divider.uk-grid-column-small {
  margin-left: -30px;
}
.uk-grid-divider.uk-grid-small > *,
.uk-grid-divider.uk-grid-column-small > * {
  padding-left: 30px;
}
.uk-grid-divider.uk-grid-small > :not(.uk-first-column)::before,
.uk-grid-divider.uk-grid-column-small > :not(.uk-first-column)::before {
  left: 15px;
}
/* Vertical */
.uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin,
.uk-grid-divider.uk-grid-row-small.uk-grid-stack > .uk-grid-margin {
  margin-top: 30px;
}
.uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin::before {
  top: -15px;
  left: 30px;
}
.uk-grid-divider.uk-grid-row-small.uk-grid-stack > .uk-grid-margin::before {
  top: -15px;
}
.uk-grid-divider.uk-grid-column-small.uk-grid-stack > .uk-grid-margin::before {
  left: 30px;
}
/*
 * Medium
 */
/* Horizontal */
.uk-grid-divider.uk-grid-medium,
.uk-grid-divider.uk-grid-column-medium {
  margin-left: -60px;
}
.uk-grid-divider.uk-grid-medium > *,
.uk-grid-divider.uk-grid-column-medium > * {
  padding-left: 60px;
}
.uk-grid-divider.uk-grid-medium > :not(.uk-first-column)::before,
.uk-grid-divider.uk-grid-column-medium > :not(.uk-first-column)::before {
  left: 30px;
}
/* Vertical */
.uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin,
.uk-grid-divider.uk-grid-row-medium.uk-grid-stack > .uk-grid-margin {
  margin-top: 60px;
}
.uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin::before {
  top: -30px;
  left: 60px;
}
.uk-grid-divider.uk-grid-row-medium.uk-grid-stack > .uk-grid-margin::before {
  top: -30px;
}
.uk-grid-divider.uk-grid-column-medium.uk-grid-stack > .uk-grid-margin::before {
  left: 60px;
}
/*
 * Large
 */
/* Horizontal */
.uk-grid-divider.uk-grid-large,
.uk-grid-divider.uk-grid-column-large {
  margin-left: -80px;
}
.uk-grid-divider.uk-grid-large > *,
.uk-grid-divider.uk-grid-column-large > * {
  padding-left: 80px;
}
.uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before,
.uk-grid-divider.uk-grid-column-large > :not(.uk-first-column)::before {
  left: 40px;
}
/* Vertical */
.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin,
.uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin {
  margin-top: 80px;
}
.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
  top: -40px;
  left: 80px;
}
.uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin::before {
  top: -40px;
}
.uk-grid-divider.uk-grid-column-large.uk-grid-stack > .uk-grid-margin::before {
  left: 80px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .uk-grid-divider.uk-grid-large,
  .uk-grid-divider.uk-grid-column-large {
    margin-left: -140px;
  }
  .uk-grid-divider.uk-grid-large > *,
  .uk-grid-divider.uk-grid-column-large > * {
    padding-left: 140px;
  }
  .uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before,
  .uk-grid-divider.uk-grid-column-large > :not(.uk-first-column)::before {
    left: 70px;
  }
  /* Vertical */
  .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin,
  .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin {
    margin-top: 140px;
  }
  .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
    top: -70px;
    left: 140px;
  }
  .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin::before {
    top: -70px;
  }
  .uk-grid-divider.uk-grid-column-large.uk-grid-stack > .uk-grid-margin::before {
    left: 140px;
  }
}
/* Match child of a grid cell
 ========================================================================== */
/*
 * Behave like a block element
 * 1. Wrap into the next line
 * 2. Take the full width, at least 100%. Only if no class from the Width component is set.
 * 3. Expand width even if larger than 100%, e.g. because of negative margin (Needed for nested grids)
 */
.uk-grid-match > *,
.uk-grid-item-match {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
}
.uk-grid-match > * > :not([class*="uk-width"]),
.uk-grid-item-match > :not([class*="uk-width"]) {
  /* 2 */
  box-sizing: border-box;
  width: 100%;
  /* 3 */
  flex: auto;
}
/* ========================================================================
   Component: Nav
 ========================================================================== */
/*
 * Reset
 */
.uk-nav,
.uk-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
* 1. Center content vertically, e.g. an icon
* 2. Imitate white space gap when using flexbox
* 3. Reset link
 */
.uk-nav li > a {
  /* 1 */
  display: flex;
  align-items: center;
  /* 2 */
  column-gap: 0.25em;
  /* 3*/
  text-decoration: none;
}
/*
 * Items
 * Must target `a` elements to exclude other elements (e.g. lists)
 */
.uk-nav > li > a {
  padding: 5px 0;
}
/* Sublists
 ========================================================================== */
/*
 * Level 2
 * `ul` needed for higher specificity to override padding
 */
ul.uk-nav-sub {
  padding: 5px 0 5px 15px;
}
/*
 * Level 3 and deeper
 */
.uk-nav-sub ul {
  padding-left: 15px;
}
/*
 * Items
 */
.uk-nav-sub a {
  padding: 2px 0;
}
/* Parent icon
 ========================================================================== */
.uk-nav-parent-icon {
  margin-left: auto;
  transition: transform 0.3s ease-out;
}
.uk-nav > li.uk-open > a .uk-nav-parent-icon {
  transform: rotateX(180deg);
}
/* Header
 ========================================================================== */
.uk-nav-header {
  padding: 5px 0;
  text-transform: uppercase;
  font-size: 14px;
}
.uk-nav-header:not(:first-child) {
  margin-top: 20px;
}
/* Divider
 ========================================================================== */
.uk-nav .uk-nav-divider {
  margin: 5px 0;
}
/* Default modifier
 ========================================================================== */
.uk-nav-default {
  font-size: 16px;
  line-height: 1.3;
}
/*
 * Items
 */
.uk-nav-default > li > a {
  color: #888;
}
/* Hover */
.uk-nav-default > li > a:hover {
  color: #464646;
}
/* Active */
.uk-nav-default > li.uk-active > a {
  color: #e30013;
}
/*
 * Subtitle
 */
.uk-nav-default .uk-nav-subtitle {
  font-size: 14px;
}
/*
 * Header
 */
.uk-nav-default .uk-nav-header {
  color: #e30013;
}
/*
 * Divider
 */
.uk-nav-default .uk-nav-divider {
  border-top: 1px solid #d8d8d8;
}
/*
 * Sublists
 */
.uk-nav-default .uk-nav-sub {
  font-size: 16px;
  line-height: 1.3;
}
.uk-nav-default .uk-nav-sub a {
  color: #888;
}
.uk-nav-default .uk-nav-sub a:hover {
  color: #464646;
}
.uk-nav-default .uk-nav-sub li.uk-active > a {
  color: #e30013;
}
/* Primary modifier
 ========================================================================== */
.uk-nav-primary {
  font-size: 20px;
  line-height: 1.3;
}
/*
 * Items
 */
.uk-nav-primary > li > a {
  color: #888;
}
/* Hover */
.uk-nav-primary > li > a:hover {
  color: #464646;
}
/* Active */
.uk-nav-primary > li.uk-active > a {
  color: #e30013;
}
/*
 * Subtitle
 */
.uk-nav-primary .uk-nav-subtitle {
  font-size: 16px;
}
/*
 * Header
 */
.uk-nav-primary .uk-nav-header {
  color: #e30013;
}
/*
 * Divider
 */
.uk-nav-primary .uk-nav-divider {
  border-top: 1px solid #d8d8d8;
}
/*
 * Sublists
 */
.uk-nav-primary .uk-nav-sub {
  font-size: 16px;
  line-height: 1.3;
}
.uk-nav-primary .uk-nav-sub a {
  color: #888;
}
.uk-nav-primary .uk-nav-sub a:hover {
  color: #464646;
}
.uk-nav-primary .uk-nav-sub li.uk-active > a {
  color: #e30013;
}
/* Secondary modifier
 ========================================================================== */
.uk-nav-secondary {
  font-size: 16px;
  line-height: 1.3;
}
/*
 * Items
 */
.uk-nav-secondary > li > a {
  color: #e30013;
}
/* Hover */
.uk-nav-secondary > li > a:hover {
  color: #e30013;
}
/* Active */
.uk-nav-secondary > li.uk-active > a {
  color: #e30013;
}
/*
 * Subtitle
 */
.uk-nav-secondary .uk-nav-subtitle {
  font-size: 14px;
  color: #888;
}
/* Hover */
.uk-nav-secondary > li > a:hover .uk-nav-subtitle {
  color: #464646;
}
/* Active */
.uk-nav-secondary > li.uk-active > a .uk-nav-subtitle {
  color: #e30013;
}
/*
 * Header
 */
.uk-nav-secondary .uk-nav-header {
  color: #e30013;
}
/*
 * Divider
 */
.uk-nav-secondary .uk-nav-divider {
  border-top: 1px solid #d8d8d8;
}
/*
 * Sublists
 */
.uk-nav-secondary .uk-nav-sub {
  font-size: 14px;
  line-height: 1.3;
}
.uk-nav-secondary .uk-nav-sub a {
  color: #888;
}
.uk-nav-secondary .uk-nav-sub a:hover {
  color: #464646;
}
.uk-nav-secondary .uk-nav-sub li.uk-active > a {
  color: #e30013;
}
/* Size modifier
 ========================================================================== */
/*
 * Medium
 */
.uk-nav-medium {
  font-size: 2.8875rem;
  line-height: 1;
}
.uk-nav-large {
  font-size: 3.4rem;
  line-height: 1;
}
.uk-nav-xlarge {
  font-size: 4rem;
  line-height: 1;
}
/* Tablet Landscape and bigger */
@media (min-width: 960px) {
  .uk-nav-medium {
    font-size: 3.5rem;
  }
  .uk-nav-large {
    font-size: 4rem;
  }
  .uk-nav-xlarge {
    font-size: 6rem;
  }
}
/* Laptop and bigger */
@media (min-width: 1200px) {
  .uk-nav-medium {
    font-size: 4rem;
  }
  .uk-nav-large {
    font-size: 6rem;
  }
  .uk-nav-xlarge {
    font-size: 8rem;
  }
}
/* Alignment modifier
 ========================================================================== */
/*
 * 1. Center header
 * 2. Center items
 */
/* 1 */
.uk-nav-center {
  text-align: center;
}
/* 2 */
.uk-nav-center li > a {
  justify-content: center;
}
/* Sublists */
.uk-nav-center .uk-nav-sub,
.uk-nav-center .uk-nav-sub ul {
  padding-left: 0;
}
/* Parent icon  */
.uk-nav-center .uk-nav-parent-icon {
  margin-left: 0.25em;
}
/* Style modifier
 ========================================================================== */
/*
 * Divider
 * Naming is in plural to prevent conflicts with divider sub object.
 */
.uk-nav.uk-nav-divider > :not(.uk-nav-header, .uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #d8d8d8;
}
/* ========================================================================
   Component: Navbar
 ========================================================================== */
/*
 * 1. Create position context to center navbar group
 */
.uk-navbar {
  display: flex;
  /* 1 */
  position: relative;
}
/* Container
 ========================================================================== */
.uk-navbar-container:not(.uk-navbar-transparent) {
  background: #d8d8d8;
}
/* Groups
 ========================================================================== */
/*
 * 1. Align navs and items vertically if they have a different height
 */
.uk-navbar-left,
.uk-navbar-right,
[class*="uk-navbar-center"] {
  display: flex;
  gap: 0;
  /* 1 */
  align-items: center;
}
/*
 * Horizontal alignment
 * 1. Create position context for centered navbar with sub groups (left/right)
 * 2. Fix text wrapping if content is larger than 50% of the container.
 * 3. Needed for dropdowns because a new position context is created
 *    `z-index` must be smaller than off-canvas
 * 4. Align sub groups for centered navbar
 */
.uk-navbar-right {
  margin-left: auto;
}
.uk-navbar-center:only-child {
  margin-left: auto;
  margin-right: auto;
  /* 1 */
  position: relative;
}
.uk-navbar-center:not(:only-child) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 2 */
  width: max-content;
  box-sizing: border-box;
  /* 3 */
  z-index: 990;
}
/* 4 */
.uk-navbar-center-left,
.uk-navbar-center-right {
  position: absolute;
  top: 0;
}
.uk-navbar-center-left {
  right: calc(100% + 0);
}
.uk-navbar-center-right {
  left: calc(100% + 0);
}
[class*="uk-navbar-center-"] {
  width: max-content;
  box-sizing: border-box;
}
/* Nav
 ========================================================================== */
/*
 * 1. Reset list
 */
.uk-navbar-nav {
  display: flex;
  gap: 0;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * Allow items to wrap into the next line
 * Only not `absolute` positioned groups
 */
.uk-navbar-left,
.uk-navbar-right,
.uk-navbar-center:only-child {
  flex-wrap: wrap;
}
/*
 * Items
 * 1. Center content vertically and horizontally
 * 2. Imitate white space gap when using flexbox
 * 3. Dimensions
 * 4. Style
 * 5. Required for `a`
 */
.uk-navbar-nav > li > a,
.uk-navbar-item,
.uk-navbar-toggle {
  /* 1 */
  display: flex;
  justify-content: center;
  align-items: center;
  /* 2 */
  column-gap: 0.25em;
  /* 3 */
  box-sizing: border-box;
  min-height: 80px;
  /* 4 */
  font-size: 14px;
  font-family: Roboto, sans-serif;
  /* 5 */
  text-decoration: none;
}
/*
 * Nav items
 */
.uk-navbar-nav > li > a {
  padding: 0 0;
  color: #888;
  text-transform: uppercase;
  transition: 0.1s ease-in-out;
  transition-property: color, background-color;
}
/*
 * Hover
 * Apply hover style also if dropdown is opened
 */
.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li > a[aria-expanded="true"] {
  color: #464646;
}
/* OnClick */
.uk-navbar-nav > li > a:active {
  color: #e30013;
}
/* Active */
.uk-navbar-nav > li.uk-active > a {
  color: #e30013;
}
/* Parent icon modifier
 ========================================================================== */
.uk-navbar-parent-icon {
  margin-left: 4px;
  transition: transform 0.3s ease-out;
}
.uk-navbar-nav > li > a[aria-expanded="true"] .uk-navbar-parent-icon {
  transform: rotateX(180deg);
}
/* Item
 ========================================================================== */
.uk-navbar-item {
  padding: 0 0;
  color: #464646;
}
/*
 * Remove margin from the last-child
 */
.uk-navbar-item > :last-child {
  margin-bottom: 0;
}
/* Toggle
 ========================================================================== */
.uk-navbar-toggle {
  padding: 0 0;
  color: #888;
}
.uk-navbar-toggle:hover,
.uk-navbar-toggle[aria-expanded="true"] {
  color: #464646;
  text-decoration: none;
}
/*
 * Icon
 * Adopts `uk-icon`
 */
/* Hover */
/* Subtitle
 ========================================================================== */
.uk-navbar-subtitle {
  font-size: 14px;
}
/* Justify modifier
 ========================================================================== */
.uk-navbar-justify .uk-navbar-left,
.uk-navbar-justify .uk-navbar-right,
.uk-navbar-justify .uk-navbar-nav,
.uk-navbar-justify .uk-navbar-nav > li,
.uk-navbar-justify .uk-navbar-item,
.uk-navbar-justify .uk-navbar-toggle {
  flex-grow: 1;
}
/* Style modifiers
 ========================================================================== */
/* Dropdown
 ========================================================================== */
/*
 * Adopts `uk-drop`
 * 1. Set a default width
 * 2. Style
 */
.uk-navbar-dropdown {
  --uk-position-offset: 15px;
  --uk-position-shift-offset: 0;
  --uk-position-viewport-offset: 15px;
  --uk-inverse: dark;
  /* 1 */
  width: 200px;
  /* 2 */
  padding: 25px;
  background: #fff;
  color: #464646;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}
/*
 * Remove margin from the last-child
 */
.uk-navbar-dropdown > :last-child {
  margin-bottom: 0;
}
.uk-navbar-dropdown :focus-visible {
  outline-color: #e30013 !important;
}
/*
 * Grid
 * Adopts `uk-grid`
 */
/* Gutter Horizontal */
.uk-navbar-dropdown .uk-drop-grid {
  margin-left: -30px;
}
.uk-navbar-dropdown .uk-drop-grid > * {
  padding-left: 30px;
}
/* Gutter Vertical */
.uk-navbar-dropdown .uk-drop-grid > .uk-grid-margin {
  margin-top: 30px;
}
/*
 * Width modifier
 */
.uk-navbar-dropdown-width-2:not(.uk-drop-stack) {
  width: 400px;
}
.uk-navbar-dropdown-width-3:not(.uk-drop-stack) {
  width: 600px;
}
.uk-navbar-dropdown-width-4:not(.uk-drop-stack) {
  width: 800px;
}
.uk-navbar-dropdown-width-5:not(.uk-drop-stack) {
  width: 1000px;
}
/*
 * Size modifier
 */
.uk-navbar-dropdown-large {
  --uk-position-shift-offset: 0;
  padding: 40px;
}
/*
 * Dropbar modifier
 * 1. Reset dropdown width to prevent to early shifting
 * 2. Reset style
 * 3. Padding
 */
.uk-navbar-dropdown-dropbar {
  /* 1 */
  width: auto;
  /* 2 */
  background: transparent;
  /* 3 */
  padding: 25px 0 25px 0;
  --uk-position-offset: 0;
  --uk-position-shift-offset: 0;
  --uk-position-viewport-offset: 15px;
  box-shadow: none;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-navbar-dropdown-dropbar {
    --uk-position-viewport-offset: 30px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-navbar-dropdown-dropbar {
    --uk-position-viewport-offset: 40px;
  }
}
.uk-navbar-dropdown-dropbar-large {
  --uk-position-shift-offset: 0;
  padding-top: 40px;
  padding-bottom: 40px;
}
/* Dropdown Nav
 * Adopts `uk-nav`
 ========================================================================== */
.uk-navbar-dropdown-nav {
  font-size: 14px;
}
/*
 * Items
 */
.uk-navbar-dropdown-nav > li > a {
  color: #888;
}
/* Hover */
.uk-navbar-dropdown-nav > li > a:hover {
  color: #464646;
}
/* Active */
.uk-navbar-dropdown-nav > li.uk-active > a {
  color: #e30013;
}
/*
 * Subtitle
 */
.uk-navbar-dropdown-nav .uk-nav-subtitle {
  font-size: 12px;
}
/*
 * Header
 */
.uk-navbar-dropdown-nav .uk-nav-header {
  color: #e30013;
}
/*
 * Divider
 */
.uk-navbar-dropdown-nav .uk-nav-divider {
  border-top: 1px solid #d8d8d8;
}
/*
 * Sublists
 */
.uk-navbar-dropdown-nav .uk-nav-sub a {
  color: #888;
}
.uk-navbar-dropdown-nav .uk-nav-sub a:hover {
  color: #464646;
}
.uk-navbar-dropdown-nav .uk-nav-sub li.uk-active > a {
  color: #e30013;
}
/* Dropbar
 ========================================================================== */
/*
 * Adopts `uk-dropnav-dropbar`
 */
.uk-navbar-container {
  transition: 0.1s ease-in-out;
  transition-property: background-color;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-navbar-left,
  .uk-navbar-right,
  [class*="uk-navbar-center"] {
    gap: 0;
  }
  .uk-navbar-center-left {
    right: calc(100% + 0);
  }
  .uk-navbar-center-right {
    left: calc(100% + 0);
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-navbar-nav {
    gap: 0;
  }
}
/* ========================================================================
   Component: Subnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Center items vertically if they have a different height
 * 3. Gutter
 * 4. Reset list
 */
.uk-subnav {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  align-items: center;
  /* 3 */
  margin-left: -20px;
  /* 4 */
  padding: 0;
  list-style: none;
  margin-top: 40px;
  margin-bottom: 40px;
}
/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 * 3. Create position context for dropdowns
 */
.uk-subnav > * {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 20px;
  /* 3 */
  position: relative;
}
/* Items
 ========================================================================== */
/*
 * Items must target `a` elements to exclude other elements (e.g. dropdowns)
 * Using `:first-child` instead of `a` to support `span` elements for text
 * 1. Center content vertically, e.g. an icon
 * 2. Imitate white space gap when using flexbox
 * 3. Style
 */
.uk-subnav > * > :first-child {
  /* 1 */
  /* 2 */
  column-gap: 0.25em;
  /* 3 */
  color: #464646;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 18.5px;
  height: 37px;
  line-height: 37px;
  transition: 0.2s ease-in-out;
  transition-property: color, background-color;
  height: 50px;
  border-radius: 25px;
  display: flex;
  align-items: center;
}
/* Hover */
.uk-subnav > * > a:hover {
  color: #464646;
  text-decoration: none;
}
/* Active */
.uk-subnav > .uk-active > a {
  color: #e30013;
}
/* Divider modifier
 ========================================================================== */
/*
 * Set gutter
 */
.uk-subnav-divider {
  margin-left: -41px;
}
/*
 * Align items and divider vertically
 */
.uk-subnav-divider > * {
  display: flex;
  align-items: center;
}
/*
 * Divider
 * 1. `nth-child` makes it also work without JS if it's only one row
 */
.uk-subnav-divider > ::before {
  content: "";
  height: 1.5em;
  margin-left: 0px;
  margin-right: 20px;
  border-left: 1px solid transparent;
}
/* 1 */
.uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before {
  border-left-color: #d8d8d8;
}
/* Pill modifier
 ========================================================================== */
.uk-subnav-pill > * > :first-child {
  padding: 0px 30px;
  background: transparent;
  color: #464646;
}
/* Hover */
.uk-subnav-pill > * > a:hover {
  background-color: #d8d8d8;
  color: #464646;
}
/* OnClick */
.uk-subnav-pill > * > a:active {
  background-color: #d8d8d8;
  color: #464646;
}
/* Active */
.uk-subnav-pill > .uk-active > a {
  background-color: #e30013;
  color: #fff;
}
/* Disabled
 * The same for all style modifiers
 ========================================================================== */
.uk-subnav > .uk-disabled > a {
  color: #888;
}
/* ========================================================================
   Component: Breadcrumb
 ========================================================================== */
/*
 * Reset list
 */
.uk-breadcrumb {
  padding: 0;
  list-style: none;
}
/*
 * 1. Doesn't generate any box and replaced by child boxes
 */
.uk-breadcrumb > * {
  display: contents;
}
/* Items
 ========================================================================== */
.uk-breadcrumb > * > * {
  font-size: 14px;
  color: #888;
}
/* Hover */
.uk-breadcrumb > * > :hover {
  color: #464646;
  text-decoration: none;
}
/* Disabled */
/* Active */
.uk-breadcrumb > :last-child > span,
.uk-breadcrumb > :last-child > a:not([href]) {
  color: #464646;
}
/*
 * Divider
 * `nth-child` makes it also work without JS if it's only one row
 * 1. Remove space between inline block elements.
 * 2. Style
 */
.uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
  content: "/";
  display: inline-block;
  /* 1 */
  margin: 0 20px 0 calc(20px - 4px);
  /* 2 */
  font-size: 14px;
  color: #888;
}
/* ========================================================================
   Component: Pagination
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Center items vertically if they have a different height
 * 3. Gutter
 * 4. Reset list
 */
.uk-pagination {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  align-items: center;
  /* 3 */
  margin-left: 0;
  /* 4 */
  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. Center content vertically, e.g. an icon
 * 2. Imitate white space gap when using flexbox
 * 3. Style
 */
.uk-pagination > * > * {
  /* 1 */
  display: flex;
  align-items: center;
  /* 2 */
  column-gap: 0.25em;
  /* 3 */
  padding: 5px 10px;
  color: #888;
}
/* Hover */
.uk-pagination > * > :hover {
  color: #464646;
  text-decoration: none;
}
/* Active */
.uk-pagination > .uk-active > * {
  color: #464646;
}
/* Disabled */
.uk-pagination > .uk-disabled > * {
  color: #888;
}
/* ========================================================================
   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;
}
/*
 * 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 content vertically, e.g. an icon
 * 2. Imitate white space gap when using flexbox
 * 3. Center content if a width is set
 * 4. Style
 */
.uk-tab > * > a {
  /* 1 */
  display: flex;
  align-items: center;
  /* 2 */
  column-gap: 0.25em;
  /* 3 */
  justify-content: center;
  /* 4 */
  padding: 5px 10px;
  color: #888;
}
/* Hover */
.uk-tab > * > a:hover {
  color: #464646;
  text-decoration: none;
}
/* Active */
.uk-tab > .uk-active > a {
  color: #e30013;
}
/* Disabled */
.uk-tab > .uk-disabled > a {
  color: #888;
}
/* Position modifier
 ========================================================================== */
/*
 * Bottom
 */
/*
 * 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 > * > a {
  justify-content: left;
}
.uk-tab-right > * > a {
  justify-content: left;
}
/* ========================================================================
   Component: Slidenav
 ========================================================================== */
/*
 * Adopts `uk-icon`
 */
.uk-slidenav {
  padding: 5px 10px;
  color: rgba(70, 70, 70, 0.5);
}
/* Hover */
.uk-slidenav:hover {
  color: rgba(70, 70, 70, 0.9);
}
/* OnClick */
.uk-slidenav:active {
  color: rgba(70, 70, 70, 0.5);
}
/* Icon modifier
 ========================================================================== */
/*
 * Previous
 */
/*
 * Next
 */
/* Size modifier
 ========================================================================== */
.uk-slidenav-large {
  padding: 10px 10px;
}
/* Container
 ========================================================================== */
.uk-slidenav-container {
  display: flex;
}
/* ========================================================================
   Component: Dotnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset list
 * 3. Gutter
 */
.uk-dotnav {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  margin-left: -12px;
}
/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 */
.uk-dotnav > * {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 12px;
}
/* Items
 ========================================================================== */
/*
 * Items
 * 1. Hide text if present
 */
.uk-dotnav > * > * {
  display: block;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(70, 70, 70, 0.2);
  /* 1 */
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
}
/* Hover */
.uk-dotnav > * > :hover {
  background-color: rgba(70, 70, 70, 0.6);
}
/* OnClick */
.uk-dotnav > * > :active {
  background-color: rgba(70, 70, 70, 0.2);
}
/* Active */
.uk-dotnav > .uk-active > * {
  background-color: rgba(70, 70, 70, 0.6);
}
/* Modifier: 'uk-dotnav-vertical'
 ========================================================================== */
/*
 * 1. Change direction
 * 2. Gutter
 */
.uk-dotnav-vertical {
  /* 1 */
  flex-direction: column;
  /* 2 */
  margin-left: 0;
  margin-top: -12px;
}
/* 2 */
.uk-dotnav-vertical > * {
  padding-left: 0;
  padding-top: 12px;
}
/* ========================================================================
   Component: Dropdown
 ========================================================================== */
/*
 * Adopts `uk-drop`
 * 1. Reset drop and let text expand the width instead of wrapping
 * 2. Set a default width
 * 3. Style
 */
.uk-dropdown {
  --uk-position-offset: 10px;
  --uk-position-viewport-offset: 15px;
  --uk-inverse: dark;
  /* 1 */
  width: auto;
  /* 2 */
  min-width: 200px;
  /* 3 */
  padding: 15px;
  background: #d8d8d8;
  color: #464646;
}
/*
 * Remove margin from the last-child
 */
.uk-dropdown > :last-child {
  margin-bottom: 0;
}
.uk-dropdown :focus-visible {
  outline-color: #e30013 !important;
}
/* Size modifier
 ========================================================================== */
.uk-dropdown-large {
  padding: 40px;
}
/* Dropbar modifier
 ========================================================================== */
/*
 * 1. Reset dropdown width to prevent to early shifting
 * 2. Reset style
 * 3. Padding
 */
.uk-dropdown-dropbar {
  /* 1 */
  width: auto;
  /* 2 */
  background: transparent;
  /* 3 */
  padding: 15px 0 15px 0;
  --uk-position-viewport-offset: 15px;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-dropdown-dropbar {
    --uk-position-viewport-offset: 30px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-dropdown-dropbar {
    --uk-position-viewport-offset: 40px;
  }
}
.uk-dropdown-dropbar-large {
  padding-top: 40px;
  padding-bottom: 40px;
}
/* Nav
 * Adopts `uk-nav`
 ========================================================================== */
/*
 * Items
 */
.uk-dropdown-nav > li > a {
  color: #888;
}
/* Hover + Active */
.uk-dropdown-nav > li > a:hover,
.uk-dropdown-nav > li.uk-active > a {
  color: #464646;
}
/*
 * Subtitle
 */
.uk-dropdown-nav .uk-nav-subtitle {
  font-size: 14px;
}
/*
 * Header
 */
.uk-dropdown-nav .uk-nav-header {
  color: #e30013;
}
/*
 * Divider
 */
.uk-dropdown-nav .uk-nav-divider {
  border-top: 1px solid #d8d8d8;
}
/*
 * Sublists
 */
.uk-dropdown-nav .uk-nav-sub a {
  color: #888;
}
.uk-dropdown-nav .uk-nav-sub a:hover,
.uk-dropdown-nav .uk-nav-sub li.uk-active > a {
  color: #464646;
}
/* ========================================================================
   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;
}
/*
 * Focus
 */
.uk-lightbox :focus-visible {
  outline-color: rgba(255, 255, 255, 0.7);
}
/* 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
 */
.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;
}
.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 */
.uk-lightbox-button:hover {
  color: #fff;
}
/* OnClick */
/* Caption
 ========================================================================== */
.uk-lightbox-caption:empty {
  display: none;
}
/* Iframe
 ========================================================================== */
.uk-lightbox-iframe {
  width: 80%;
  height: 80%;
}
/* ========================================================================
   Component: Animation
 ========================================================================== */
[class*="uk-animation-"] {
  animation: 0.5s ease-out both;
}
/* Animations
 ========================================================================== */
/*
 * Fade
 */
.uk-animation-fade {
  animation-name: uk-fade;
  animation-duration: 0.8s;
  animation-timing-function: linear;
}
/*
 * Scale
 */
.uk-animation-scale-up {
  animation-name: uk-fade, uk-scale-up;
}
.uk-animation-scale-down {
  animation-name: uk-fade, uk-scale-down;
}
/*
 * Slide
 */
.uk-animation-slide-top {
  animation-name: uk-fade, uk-slide-top;
}
.uk-animation-slide-bottom {
  animation-name: uk-fade, uk-slide-bottom;
}
.uk-animation-slide-left {
  animation-name: uk-fade, uk-slide-left;
}
.uk-animation-slide-right {
  animation-name: uk-fade, uk-slide-right;
}
/*
 * Slide Small
 */
.uk-animation-slide-top-small {
  animation-name: uk-fade, uk-slide-top-small;
}
.uk-animation-slide-bottom-small {
  animation-name: uk-fade, uk-slide-bottom-small;
}
.uk-animation-slide-left-small {
  animation-name: uk-fade, uk-slide-left-small;
}
.uk-animation-slide-right-small {
  animation-name: uk-fade, uk-slide-right-small;
}
/*
 * Slide Medium
 */
.uk-animation-slide-top-medium {
  animation-name: uk-fade, uk-slide-top-medium;
}
.uk-animation-slide-bottom-medium {
  animation-name: uk-fade, uk-slide-bottom-medium;
}
.uk-animation-slide-left-medium {
  animation-name: uk-fade, uk-slide-left-medium;
}
.uk-animation-slide-right-medium {
  animation-name: uk-fade, uk-slide-right-medium;
}
/*
 * Kenburns
 */
.uk-animation-kenburns {
  animation-name: uk-kenburns;
  animation-duration: 15s;
}
/*
 * Shake
 */
.uk-animation-shake {
  animation-name: uk-shake;
}
/*
 * SVG Stroke
 * The `--uk-animation-stroke` custom property contains the longest path length.
 * Set it manually or use `uk-svg="stroke-animation: true"` to set it automatically.
 * All strokes are animated by the same pace and doesn't end simultaneously.
 * To end simultaneously, `pathLength="1"` could be used, but it's not working in Safari yet.
 */
.uk-animation-stroke {
  animation-name: uk-stroke;
  animation-duration: 2s;
  stroke-dasharray: var(--uk-animation-stroke);
}
/* Direction modifier
 ========================================================================== */
.uk-animation-reverse {
  animation-direction: reverse;
  animation-timing-function: ease-in;
}
/* Duration modifier
 ========================================================================== */
.uk-animation-fast {
  animation-duration: 0.1s;
}
/* Toggle animation based on the State of the Parent Element
 ========================================================================== */
.uk-animation-toggle:not(:hover):not(:focus) [class*="uk-animation-"] {
  animation-name: none;
}
/* Keyframes used by animation classes
 ========================================================================== */
/*
 * Fade
 */
@keyframes uk-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
 * Scale
 */
@keyframes uk-scale-up {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes uk-scale-down {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/*
 * Slide
 */
@keyframes uk-slide-top {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes uk-slide-bottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes uk-slide-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes uk-slide-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
/*
 * Slide Small
 */
@keyframes uk-slide-top-small {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes uk-slide-bottom-small {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes uk-slide-left-small {
  0% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes uk-slide-right-small {
  0% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
/*
 * Slide Medium
 */
@keyframes uk-slide-top-medium {
  0% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes uk-slide-bottom-medium {
  0% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes uk-slide-left-medium {
  0% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes uk-slide-right-medium {
  0% {
    transform: translateX(50px);
  }
  100% {
    transform: translateX(0);
  }
}
/*
 * Kenburns
 */
@keyframes uk-kenburns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
/*
 * Shake
 */
@keyframes uk-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-9px);
  }
  20% {
    transform: translateX(8px);
  }
  30% {
    transform: translateX(-7px);
  }
  40% {
    transform: translateX(6px);
  }
  50% {
    transform: translateX(-5px);
  }
  60% {
    transform: translateX(4px);
  }
  70% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(2px);
  }
  90% {
    transform: translateX(-1px);
  }
}
/*
 * Stroke
 */
@keyframes uk-stroke {
  0% {
    stroke-dashoffset: var(--uk-animation-stroke);
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/* ========================================================================
   Component: Width
 ========================================================================== */
/* Equal child widths
 ========================================================================== */
[class*="uk-child-width"] > * {
  box-sizing: border-box;
  width: 100%;
}
.uk-child-width-1-2 > * {
  width: 50%;
}
.uk-child-width-1-3 > * {
  width: calc(100% / 3);
}
.uk-child-width-1-4 > * {
  width: 25%;
}
.uk-child-width-1-5 > * {
  width: 20%;
}
.uk-child-width-1-6 > * {
  width: calc(100% / 6);
}
.uk-child-width-auto > * {
  width: auto;
}
/*
 * 1. Reset the `min-width`, which is set to auto by default, because
 *    flex items won't shrink below their minimum intrinsic content size.
 *    Using `1px` instead of `0`, so items still wrap into the next line,
 *    if they have zero width and padding and the predecessor is 100% wide.
 */
.uk-child-width-expand > :not([class*="uk-width"]) {
  flex: 1;
  /* 1 */
  min-width: 1px;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-child-width-1-1\@s > * {
    width: 100%;
  }
  .uk-child-width-1-2\@s > * {
    width: 50%;
  }
  .uk-child-width-1-3\@s > * {
    width: calc(100% / 3);
  }
  .uk-child-width-1-4\@s > * {
    width: 25%;
  }
  .uk-child-width-1-5\@s > * {
    width: 20%;
  }
  .uk-child-width-1-6\@s > * {
    width: calc(100% / 6);
  }
  .uk-child-width-auto\@s > * {
    width: auto;
  }
  .uk-child-width-expand\@s > :not([class*="uk-width"]) {
    flex: 1;
    min-width: 1px;
  }
  /* Reset expand */
  .uk-child-width-1-1\@s > :not([class*="uk-width"]),
  .uk-child-width-1-2\@s > :not([class*="uk-width"]),
  .uk-child-width-1-3\@s > :not([class*="uk-width"]),
  .uk-child-width-1-4\@s > :not([class*="uk-width"]),
  .uk-child-width-1-5\@s > :not([class*="uk-width"]),
  .uk-child-width-1-6\@s > :not([class*="uk-width"]),
  .uk-child-width-auto\@s > :not([class*="uk-width"]) {
    flex: initial;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-child-width-1-1\@m > * {
    width: 100%;
  }
  .uk-child-width-1-2\@m > * {
    width: 50%;
  }
  .uk-child-width-1-3\@m > * {
    width: calc(100% / 3);
  }
  .uk-child-width-1-4\@m > * {
    width: 25%;
  }
  .uk-child-width-1-5\@m > * {
    width: 20%;
  }
  .uk-child-width-1-6\@m > * {
    width: calc(100% / 6);
  }
  .uk-child-width-auto\@m > * {
    width: auto;
  }
  .uk-child-width-expand\@m > :not([class*="uk-width"]) {
    flex: 1;
    min-width: 1px;
  }
  /* Reset expand */
  .uk-child-width-1-1\@m > :not([class*="uk-width"]),
  .uk-child-width-1-2\@m > :not([class*="uk-width"]),
  .uk-child-width-1-3\@m > :not([class*="uk-width"]),
  .uk-child-width-1-4\@m > :not([class*="uk-width"]),
  .uk-child-width-1-5\@m > :not([class*="uk-width"]),
  .uk-child-width-1-6\@m > :not([class*="uk-width"]),
  .uk-child-width-auto\@m > :not([class*="uk-width"]) {
    flex: initial;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-child-width-1-1\@l > * {
    width: 100%;
  }
  .uk-child-width-1-2\@l > * {
    width: 50%;
  }
  .uk-child-width-1-3\@l > * {
    width: calc(100% / 3);
  }
  .uk-child-width-1-4\@l > * {
    width: 25%;
  }
  .uk-child-width-1-5\@l > * {
    width: 20%;
  }
  .uk-child-width-1-6\@l > * {
    width: calc(100% / 6);
  }
  .uk-child-width-auto\@l > * {
    width: auto;
  }
  .uk-child-width-expand\@l > :not([class*="uk-width"]) {
    flex: 1;
    min-width: 1px;
  }
  /* Reset expand */
  .uk-child-width-1-1\@l > :not([class*="uk-width"]),
  .uk-child-width-1-2\@l > :not([class*="uk-width"]),
  .uk-child-width-1-3\@l > :not([class*="uk-width"]),
  .uk-child-width-1-4\@l > :not([class*="uk-width"]),
  .uk-child-width-1-5\@l > :not([class*="uk-width"]),
  .uk-child-width-1-6\@l > :not([class*="uk-width"]),
  .uk-child-width-auto\@l > :not([class*="uk-width"]) {
    flex: initial;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-child-width-1-1\@xl > * {
    width: 100%;
  }
  .uk-child-width-1-2\@xl > * {
    width: 50%;
  }
  .uk-child-width-1-3\@xl > * {
    width: calc(100% / 3);
  }
  .uk-child-width-1-4\@xl > * {
    width: 25%;
  }
  .uk-child-width-1-5\@xl > * {
    width: 20%;
  }
  .uk-child-width-1-6\@xl > * {
    width: calc(100% / 6);
  }
  .uk-child-width-auto\@xl > * {
    width: auto;
  }
  .uk-child-width-expand\@xl > :not([class*="uk-width"]) {
    flex: 1;
    min-width: 1px;
  }
  /* Reset expand */
  .uk-child-width-1-1\@xl > :not([class*="uk-width"]),
  .uk-child-width-1-2\@xl > :not([class*="uk-width"]),
  .uk-child-width-1-3\@xl > :not([class*="uk-width"]),
  .uk-child-width-1-4\@xl > :not([class*="uk-width"]),
  .uk-child-width-1-5\@xl > :not([class*="uk-width"]),
  .uk-child-width-1-6\@xl > :not([class*="uk-width"]),
  .uk-child-width-auto\@xl > :not([class*="uk-width"]) {
    flex: initial;
  }
}
/* Single Widths
 ========================================================================== */
/*
 * 1. `max-width` is needed for the pixel-based classes
 */
[class*="uk-width"] {
  box-sizing: border-box;
  width: 100%;
  /* 1 */
  max-width: 100%;
}
/* Halves */
.uk-width-1-2 {
  width: 50%;
}
/* Thirds */
.uk-width-1-3 {
  width: calc(100% / 3);
}
.uk-width-2-3 {
  width: calc(200% / 3);
}
/* Quarters */
.uk-width-1-4 {
  width: 25%;
}
.uk-width-3-4 {
  width: 75%;
}
/* Fifths */
.uk-width-1-5 {
  width: 20%;
}
.uk-width-2-5 {
  width: 40%;
}
.uk-width-3-5 {
  width: 60%;
}
.uk-width-4-5 {
  width: 80%;
}
/* Sixths */
.uk-width-1-6 {
  width: calc(100% / 6);
}
.uk-width-5-6 {
  width: calc(500% / 6);
}
/* Pixel */
.uk-width-small {
  width: 150px;
}
.uk-width-medium {
  width: 300px;
}
.uk-width-large {
  width: 450px;
}
.uk-width-xlarge {
  width: 600px;
}
.uk-width-2xlarge {
  width: 750px;
}
/* Auto */
.uk-width-auto {
  width: auto;
}
/* Expand */
.uk-width-expand {
  flex: 1;
  min-width: 1px;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  /* Whole */
  .uk-width-1-1\@s {
    width: 100%;
  }
  /* Halves */
  .uk-width-1-2\@s {
    width: 50%;
  }
  /* Thirds */
  .uk-width-1-3\@s {
    width: calc(100% / 3);
  }
  .uk-width-2-3\@s {
    width: calc(200% / 3);
  }
  /* Quarters */
  .uk-width-1-4\@s {
    width: 25%;
  }
  .uk-width-3-4\@s {
    width: 75%;
  }
  /* Fifths */
  .uk-width-1-5\@s {
    width: 20%;
  }
  .uk-width-2-5\@s {
    width: 40%;
  }
  .uk-width-3-5\@s {
    width: 60%;
  }
  .uk-width-4-5\@s {
    width: 80%;
  }
  /* Sixths */
  .uk-width-1-6\@s {
    width: calc(100% / 6);
  }
  .uk-width-5-6\@s {
    width: calc(500% / 6);
  }
  /* Pixel */
  .uk-width-small\@s {
    width: 150px;
  }
  .uk-width-medium\@s {
    width: 300px;
  }
  .uk-width-large\@s {
    width: 450px;
  }
  .uk-width-xlarge\@s {
    width: 600px;
  }
  .uk-width-2xlarge\@s {
    width: 750px;
  }
  /* Auto */
  .uk-width-auto\@s {
    width: auto;
  }
  /* Expand */
  .uk-width-expand\@s {
    flex: 1;
    min-width: 1px;
  }
  /* Reset expand */
  .uk-width-1-1\@s,
  .uk-width-1-2\@s,
  .uk-width-1-3\@s,
  .uk-width-2-3\@s,
  .uk-width-1-4\@s,
  .uk-width-3-4\@s,
  .uk-width-1-5\@s,
  .uk-width-2-5\@s,
  .uk-width-3-5\@s,
  .uk-width-4-5\@s,
  .uk-width-1-6\@s,
  .uk-width-5-6\@s,
  .uk-width-small\@s,
  .uk-width-medium\@s,
  .uk-width-large\@s,
  .uk-width-xlarge\@s,
  .uk-width-2xlarge\@s,
  .uk-width-auto\@s {
    flex: initial;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  /* Whole */
  .uk-width-1-1\@m {
    width: 100%;
  }
  /* Halves */
  .uk-width-1-2\@m {
    width: 50%;
  }
  /* Thirds */
  .uk-width-1-3\@m {
    width: calc(100% / 3);
  }
  .uk-width-2-3\@m {
    width: calc(200% / 3);
  }
  /* Quarters */
  .uk-width-1-4\@m {
    width: 25%;
  }
  .uk-width-3-4\@m {
    width: 75%;
  }
  /* Fifths */
  .uk-width-1-5\@m {
    width: 20%;
  }
  .uk-width-2-5\@m {
    width: 40%;
  }
  .uk-width-3-5\@m {
    width: 60%;
  }
  .uk-width-4-5\@m {
    width: 80%;
  }
  /* Sixths */
  .uk-width-1-6\@m {
    width: calc(100% / 6);
  }
  .uk-width-5-6\@m {
    width: calc(500% / 6);
  }
  /* Pixel */
  .uk-width-small\@m {
    width: 150px;
  }
  .uk-width-medium\@m {
    width: 300px;
  }
  .uk-width-large\@m {
    width: 450px;
  }
  .uk-width-xlarge\@m {
    width: 600px;
  }
  .uk-width-2xlarge\@m {
    width: 750px;
  }
  /* Auto */
  .uk-width-auto\@m {
    width: auto;
  }
  /* Expand */
  .uk-width-expand\@m {
    flex: 1;
    min-width: 1px;
  }
  /* Reset expand */
  .uk-width-1-1\@m,
  .uk-width-1-2\@m,
  .uk-width-1-3\@m,
  .uk-width-2-3\@m,
  .uk-width-1-4\@m,
  .uk-width-3-4\@m,
  .uk-width-1-5\@m,
  .uk-width-2-5\@m,
  .uk-width-3-5\@m,
  .uk-width-4-5\@m,
  .uk-width-1-6\@m,
  .uk-width-5-6\@m,
  .uk-width-small\@m,
  .uk-width-medium\@m,
  .uk-width-large\@m,
  .uk-width-xlarge\@m,
  .uk-width-2xlarge\@m,
  .uk-width-auto\@m {
    flex: initial;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Whole */
  .uk-width-1-1\@l {
    width: 100%;
  }
  /* Halves */
  .uk-width-1-2\@l {
    width: 50%;
  }
  /* Thirds */
  .uk-width-1-3\@l {
    width: calc(100% / 3);
  }
  .uk-width-2-3\@l {
    width: calc(200% / 3);
  }
  /* Quarters */
  .uk-width-1-4\@l {
    width: 25%;
  }
  .uk-width-3-4\@l {
    width: 75%;
  }
  /* Fifths */
  .uk-width-1-5\@l {
    width: 20%;
  }
  .uk-width-2-5\@l {
    width: 40%;
  }
  .uk-width-3-5\@l {
    width: 60%;
  }
  .uk-width-4-5\@l {
    width: 80%;
  }
  /* Sixths */
  .uk-width-1-6\@l {
    width: calc(100% / 6);
  }
  .uk-width-5-6\@l {
    width: calc(500% / 6);
  }
  /* Pixel */
  .uk-width-small\@l {
    width: 150px;
  }
  .uk-width-medium\@l {
    width: 300px;
  }
  .uk-width-large\@l {
    width: 450px;
  }
  .uk-width-xlarge\@l {
    width: 600px;
  }
  .uk-width-2xlarge\@l {
    width: 750px;
  }
  /* Auto */
  .uk-width-auto\@l {
    width: auto;
  }
  /* Expand */
  .uk-width-expand\@l {
    flex: 1;
    min-width: 1px;
  }
  /* Reset expand */
  .uk-width-1-1\@l,
  .uk-width-1-2\@l,
  .uk-width-1-3\@l,
  .uk-width-2-3\@l,
  .uk-width-1-4\@l,
  .uk-width-3-4\@l,
  .uk-width-1-5\@l,
  .uk-width-2-5\@l,
  .uk-width-3-5\@l,
  .uk-width-4-5\@l,
  .uk-width-1-6\@l,
  .uk-width-5-6\@l,
  .uk-width-small\@l,
  .uk-width-medium\@l,
  .uk-width-large\@l,
  .uk-width-xlarge\@l,
  .uk-width-2xlarge\@l,
  .uk-width-auto\@l {
    flex: initial;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  /* Whole */
  .uk-width-1-1\@xl {
    width: 100%;
  }
  /* Halves */
  .uk-width-1-2\@xl {
    width: 50%;
  }
  /* Thirds */
  .uk-width-1-3\@xl {
    width: calc(100% / 3);
  }
  .uk-width-2-3\@xl {
    width: calc(200% / 3);
  }
  /* Quarters */
  .uk-width-1-4\@xl {
    width: 25%;
  }
  .uk-width-3-4\@xl {
    width: 75%;
  }
  /* Fifths */
  .uk-width-1-5\@xl {
    width: 20%;
  }
  .uk-width-2-5\@xl {
    width: 40%;
  }
  .uk-width-3-5\@xl {
    width: 60%;
  }
  .uk-width-4-5\@xl {
    width: 80%;
  }
  /* Sixths */
  .uk-width-1-6\@xl {
    width: calc(100% / 6);
  }
  .uk-width-5-6\@xl {
    width: calc(500% / 6);
  }
  /* Pixel */
  .uk-width-small\@xl {
    width: 150px;
  }
  .uk-width-medium\@xl {
    width: 300px;
  }
  .uk-width-large\@xl {
    width: 450px;
  }
  .uk-width-xlarge\@xl {
    width: 600px;
  }
  .uk-width-2xlarge\@xl {
    width: 750px;
  }
  /* Auto */
  .uk-width-auto\@xl {
    width: auto;
  }
  /* Expand */
  .uk-width-expand\@xl {
    flex: 1;
    min-width: 1px;
  }
  /* Reset expand */
  .uk-width-1-1\@xl,
  .uk-width-1-2\@xl,
  .uk-width-1-3\@xl,
  .uk-width-2-3\@xl,
  .uk-width-1-4\@xl,
  .uk-width-3-4\@xl,
  .uk-width-1-5\@xl,
  .uk-width-2-5\@xl,
  .uk-width-3-5\@xl,
  .uk-width-4-5\@xl,
  .uk-width-1-6\@xl,
  .uk-width-5-6\@xl,
  .uk-width-small\@xl,
  .uk-width-medium\@xl,
  .uk-width-large\@xl,
  .uk-width-xlarge\@xl,
  .uk-width-2xlarge\@xl,
  .uk-width-auto\@xl {
    flex: initial;
  }
}
/* Intrinsic Widths
 ========================================================================== */
.uk-width-max-content {
  width: max-content;
}
.uk-width-min-content {
  width: min-content;
}
/* ========================================================================
   Component: Height
 ========================================================================== */
[class*="uk-height"] {
  box-sizing: border-box;
}
/*
 * Only works if parent element has a height set
 */
.uk-height-1-1 {
  height: 100%;
}
/*
 * Useful to create image teasers
 */
.uk-height-viewport {
  min-height: 100vh;
}
.uk-height-viewport-2 {
  min-height: 200vh;
}
.uk-height-viewport-3 {
  min-height: 300vh;
}
.uk-height-viewport-4 {
  min-height: 400vh;
}
/*
 * Pixel
 * Useful for `overflow: auto`
 */
.uk-height-small {
  height: 150px;
}
.uk-height-medium {
  height: 300px;
}
.uk-height-large {
  height: 450px;
}
.uk-height-max-small {
  max-height: 150px;
}
.uk-height-max-medium {
  max-height: 300px;
}
.uk-height-max-large {
  max-height: 450px;
}
/* ========================================================================
   Component: Text
 ========================================================================== */
/* Style modifiers
 ========================================================================== */
.uk-text-lead {
  font-size: 20px;
  line-height: 1.5;
  color: #e30013;
}
.uk-text-meta {
  font-size: 14px;
  line-height: 1.4;
  color: #888;
}
/* Size modifiers
 ========================================================================== */
.uk-text-small {
  font-size: 14px;
  line-height: 1.5;
}
.uk-text-large {
  font-size: 20px;
  line-height: 1.5;
}
.uk-text-default {
  font-size: 16px;
  line-height: 1.3;
}
/* 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;
}
/* Decoration modifier
 ========================================================================== */
.uk-text-decoration-none {
  text-decoration: none !important;
}
/* Color modifiers
 ========================================================================== */
.uk-text-muted {
  color: #888 !important;
}
.uk-text-emphasis {
  color: #e30013 !important;
}
.uk-text-primary {
  color: #e30013 !important;
}
.uk-text-secondary {
  color: #222 !important;
}
.uk-text-success {
  color: #32d296 !important;
}
.uk-text-warning {
  color: #faa05a !important;
}
.uk-text-danger {
  color: #f0506e !important;
}
/* Background modifier
 ========================================================================== */
/*
 * 1. The background clips to the foreground text. Works in all browsers.
 * 2. Default color is set to transparent.
 * 3. Container fits the text
 * 4. Style
 */
.uk-text-background {
  /* 1 */
  -webkit-background-clip: text;
  /* 2 */
  color: transparent !important;
  /* 3 */
  display: inline-block;
  /* 4 */
  background-color: #e30013;
}
/* 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: 960px) {
  .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: 1200px) {
  .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;
}
/*
 * Wrap long words onto the next line and break them if they are too long to fit.
 * 1. Make it work with table cells in all browsers.
 * Note: Not using `hyphens: auto` because it hyphenates text even if not needed.
 */
.uk-text-break {
  overflow-wrap: break-word;
}
/* 1 */
th.uk-text-break,
td.uk-text-break {
  word-break: break-word;
}
/* ========================================================================
   Component: Column
 ========================================================================== */
[class*="uk-column-"] {
  column-gap: 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  [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 #d8d8d8;
  /* 1 */
  column-gap: 60px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .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: 960px) {
  .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: 1200px) {
  .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: Cover
 ========================================================================== */
/*
 * Works with iframes and embedded content
 * 1. Use attribute to apply transform instantly. Needed if transform is transitioned.
 * 2. Reset responsiveness for embedded content
 * 3. Center object
 * Note: Percent values on the `top` property only works if this element
 *       is absolute positioned or if the container has a height
 */
/* 1 */
[uk-cover]:where(canvas, iframe, svg),
[data-uk-cover]:where(canvas, iframe, svg) {
  /* 2 */
  max-width: none;
  /* 3 */
  position: absolute;
  left: 50%;
  top: 50%;
  --uk-position-translate-x: -50%;
  --uk-position-translate-y: -50%;
  transform: translate(var(--uk-position-translate-x), var(--uk-position-translate-y));
}
iframe[uk-cover],
iframe[data-uk-cover] {
  pointer-events: none;
}
[uk-cover]:where(img, video),
[data-uk-cover]:where(img, video) {
  /* 3 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  object-fit: cover;
  object-position: center;
}
/* Container
 ========================================================================== */
/*
 * 1. Parent container which clips resized object
 * 2. Needed if the child is positioned absolute. See note above
 */
.uk-cover-container {
  /* 1 */
  overflow: hidden;
  /* 2 */
  position: relative;
}
/* ========================================================================
   Component: Background
 ========================================================================== */
/* Color
 ========================================================================== */
.uk-background-default {
  background-color: #fff;
}
.uk-background-muted {
  background-color: #d8d8d8;
}
.uk-background-primary {
  background-color: #e30013;
}
.uk-background-secondary {
  background-color: #222;
}
/* Size
 ========================================================================== */
.uk-background-cover,
.uk-background-contain,
.uk-background-width-1-1,
.uk-background-height-1-1 {
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.uk-background-cover {
  background-size: cover;
}
.uk-background-contain {
  background-size: contain;
}
.uk-background-width-1-1 {
  background-size: 100%;
}
.uk-background-height-1-1 {
  background-size: auto 100%;
}
/* Position
 ========================================================================== */
.uk-background-top-left {
  background-position: 0 0;
}
.uk-background-top-center {
  background-position: 50% 0;
}
.uk-background-top-right {
  background-position: 100% 0;
}
.uk-background-center-left {
  background-position: 0 50%;
}
.uk-background-center-center {
  background-position: 50% 50%;
}
.uk-background-center-right {
  background-position: 100% 50%;
}
.uk-background-bottom-left {
  background-position: 0 100%;
}
.uk-background-bottom-center {
  background-position: 50% 100%;
}
.uk-background-bottom-right {
  background-position: 100% 100%;
}
/* Repeat
 ========================================================================== */
.uk-background-norepeat {
  background-repeat: no-repeat;
}
/* Attachment
 ========================================================================== */
/*
 * 1. Fix bug introduced in Chrome 67: the background image is not visible if any element on the page uses `translate3d`
 */
.uk-background-fixed {
  background-attachment: fixed;
  /* 1 */
  backface-visibility: hidden;
}
/*
 * Exclude touch devices because `fixed` doesn't work on iOS and Android
 */
@media (pointer: coarse) {
  .uk-background-fixed {
    background-attachment: scroll;
  }
}
/* Image
 ========================================================================== */
/* Phone portrait and smaller */
@media (max-width: 639px) {
  .uk-background-image\@s {
    background-image: none !important;
  }
}
/* Phone landscape and smaller */
@media (max-width: 959px) {
  .uk-background-image\@m {
    background-image: none !important;
  }
}
/* Tablet landscape and smaller */
@media (max-width: 1199px) {
  .uk-background-image\@l {
    background-image: none !important;
  }
}
/* Desktop and smaller */
@media (max-width: 1599px) {
  .uk-background-image\@xl {
    background-image: none !important;
  }
}
/* Blend modes
 ========================================================================== */
.uk-background-blend-multiply {
  background-blend-mode: multiply;
}
.uk-background-blend-screen {
  background-blend-mode: screen;
}
.uk-background-blend-overlay {
  background-blend-mode: overlay;
}
.uk-background-blend-darken {
  background-blend-mode: darken;
}
.uk-background-blend-lighten {
  background-blend-mode: lighten;
}
.uk-background-blend-color-dodge {
  background-blend-mode: color-dodge;
}
.uk-background-blend-color-burn {
  background-blend-mode: color-burn;
}
.uk-background-blend-hard-light {
  background-blend-mode: hard-light;
}
.uk-background-blend-soft-light {
  background-blend-mode: soft-light;
}
.uk-background-blend-difference {
  background-blend-mode: difference;
}
.uk-background-blend-exclusion {
  background-blend-mode: exclusion;
}
.uk-background-blend-hue {
  background-blend-mode: hue;
}
.uk-background-blend-saturation {
  background-blend-mode: saturation;
}
.uk-background-blend-color {
  background-blend-mode: color;
}
.uk-background-blend-luminosity {
  background-blend-mode: luminosity;
}
/* ========================================================================
   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: 960px) {
  .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: 1200px) {
  .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) {
  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 #d8d8d8;
  overflow: auto;
  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%;
}
/* Overflow
 ========================================================================== */
.uk-overflow-hidden {
  overflow: hidden;
}
/*
 * Enable scrollbars if content is clipped
 */
.uk-overflow-auto {
  overflow: auto;
}
.uk-overflow-auto > :last-child {
  margin-bottom: 0;
}
/* Box Sizing
 ========================================================================== */
.uk-box-sizing-content {
  box-sizing: content-box;
}
.uk-box-sizing-border {
  box-sizing: border-box;
}
/* Resize
 ========================================================================== */
.uk-resize {
  resize: both;
}
.uk-resize-horizontal {
  resize: horizontal;
}
.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 new layer 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;
}
/*
 * Fix initial iframe width. Without the viewport is expanded on iOS devices
 */
[uk-responsive],
[data-uk-responsive] {
  max-width: 100%;
}
/* Object
 ========================================================================== */
.uk-object-cover {
  object-fit: cover;
}
.uk-object-contain {
  object-fit: contain;
}
.uk-object-fill {
  object-fit: fill;
}
.uk-object-none {
  object-fit: none;
}
.uk-object-scale-down {
  object-fit: scale-down;
}
/*
 * Position
 */
.uk-object-top-left {
  object-position: 0 0;
}
.uk-object-top-center {
  object-position: 50% 0;
}
.uk-object-top-right {
  object-position: 100% 0;
}
.uk-object-center-left {
  object-position: 0 50%;
}
.uk-object-center-center {
  object-position: 50% 50%;
}
.uk-object-center-right {
  object-position: 100% 50%;
}
.uk-object-bottom-left {
  object-position: 0 100%;
}
.uk-object-bottom-center {
  object-position: 50% 100%;
}
.uk-object-bottom-right {
  object-position: 100% 100%;
}
/* 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 0px 7px #707070;
}
.uk-box-shadow-medium {
  box-shadow: 0 0px 15px #707070;
}
.uk-box-shadow-large {
  box-shadow: 0 14px 25px -14px #7f7f7f;
}
.uk-box-shadow-xlarge {
  box-shadow: 0px 25px 58px -25px #7f7f7f;
}
/*
 * Hover
 */
[class*="uk-box-shadow-hover"] {
  transition: box-shadow 0.1s ease-in-out;
}
.uk-box-shadow-hover-small:hover {
  box-shadow: 0 0px 7px #707070;
}
.uk-box-shadow-hover-medium:hover {
  box-shadow: 0 0px 15px #707070;
}
.uk-box-shadow-hover-large:hover {
  box-shadow: 0 14px 25px -14px #7f7f7f;
}
.uk-box-shadow-hover-xlarge:hover {
  box-shadow: 0px 25px 58px -25px #7f7f7f;
}
/* Box-shadow bottom
 ========================================================================== */
/*
 * 1. Set position.
 * 2. Set style
 * 3. Fix shadow being clipped in Safari if container is animated
 */
@supports (filter: blur(0)) {
  .uk-box-shadow-bottom {
    display: inline-block;
    position: relative;
    z-index: 0;
    max-width: 100%;
    vertical-align: middle;
  }
  .uk-box-shadow-bottom::after {
    content: "";
    /* 1 */
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    z-index: -1;
    /* 2 */
    height: 30px;
    border-radius: 100%;
    background: #444;
    filter: blur(20px);
    /* 3 */
    will-change: filter;
  }
}
/* 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
 */
.uk-dropcap::first-letter,
.uk-dropcap > p:first-of-type::first-letter {
  display: block;
  margin-right: 10px;
  float: left;
  font-size: 3.9em;
  line-height: 1;
}
/* 2 */
@-moz-document url-prefix() {
  .uk-dropcap::first-letter,
  .uk-dropcap > p:first-of-type::first-letter {
    margin-top: 1.1%;
  }
}
/* Logo
 ========================================================================== */
/*
 * 1. Style
 * 2. Required for `a`
 * 3. Behave like image but can be overridden through flex utility classes
 */
.uk-logo {
  /* 1 */
  font-size: 20px;
  font-family: Roboto, sans-serif;
  color: #e30013;
  /* 2 */
  text-decoration: none;
}
/* 3 */
:where(.uk-logo) {
  display: inline-block;
  vertical-align: middle;
}
/* Hover */
.uk-logo:hover {
  color: #e30013;
  /* 1 */
  text-decoration: none;
}
.uk-logo :where(img, svg, video) {
  display: block;
}
.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 * {
  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;
}
/* 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: 960px) {
  .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: 1200px) {
  .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;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-flex-stretch\@s {
    align-items: stretch;
  }
  .uk-flex-top\@s {
    align-items: flex-start;
  }
  .uk-flex-middle\@s {
    align-items: center;
  }
  .uk-flex-bottom\@s {
    align-items: flex-end;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-flex-stretch\@m {
    align-items: stretch;
  }
  .uk-flex-top\@m {
    align-items: flex-start;
  }
  .uk-flex-middle\@m {
    align-items: center;
  }
  .uk-flex-bottom\@m {
    align-items: flex-end;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-flex-stretch\@l {
    align-items: stretch;
  }
  .uk-flex-top\@l {
    align-items: flex-start;
  }
  .uk-flex-middle\@l {
    align-items: center;
  }
  .uk-flex-bottom\@l {
    align-items: flex-end;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-flex-stretch\@xl {
    align-items: stretch;
  }
  .uk-flex-top\@xl {
    align-items: flex-start;
  }
  .uk-flex-middle\@xl {
    align-items: center;
  }
  .uk-flex-bottom\@xl {
    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;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-flex-row\@s {
    flex-direction: row;
  }
  .uk-flex-column\@s {
    flex-direction: column;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-flex-row\@m {
    flex-direction: row;
  }
  .uk-flex-column\@m {
    flex-direction: column;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-flex-row\@l {
    flex-direction: row;
  }
  .uk-flex-column\@l {
    flex-direction: column;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-flex-row\@xl {
    flex-direction: row;
  }
  .uk-flex-column\@xl {
    flex-direction: column;
  }
}
/* 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: 960px) {
  .uk-flex-first\@m {
    order: -1;
  }
  .uk-flex-last\@m {
    order: 99;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .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
 */
.uk-flex-initial {
  flex: initial;
}
/*
 * 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;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-flex-initial\@s {
    flex: initial;
  }
  .uk-flex-none\@s {
    flex: none;
  }
  .uk-flex-1\@s {
    flex: 1;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-flex-initial\@m {
    flex: initial;
  }
  .uk-flex-none\@m {
    flex: none;
  }
  .uk-flex-1\@m {
    flex: 1;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-flex-initial\@l {
    flex: initial;
  }
  .uk-flex-none\@l {
    flex: none;
  }
  .uk-flex-1\@l {
    flex: 1;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-flex-initial\@xl {
    flex: initial;
  }
  .uk-flex-none\@xl {
    flex: none;
  }
  .uk-flex-1\@xl {
    flex: 1;
  }
}
/* ========================================================================
   Component: Margin
 ========================================================================== */
/*
 * Default
 */
.uk-margin {
  margin-bottom: 20px;
}
* + .uk-margin {
  margin-top: 20px !important;
}
.uk-margin-top {
  margin-top: 20px !important;
}
.uk-margin-bottom {
  margin-bottom: 20px !important;
}
.uk-margin-left {
  margin-left: 20px !important;
}
.uk-margin-right {
  margin-right: 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: 30px;
}
* + .uk-margin-medium {
  margin-top: 30px !important;
}
.uk-margin-medium-top {
  margin-top: 30px !important;
}
.uk-margin-medium-bottom {
  margin-bottom: 30px !important;
}
.uk-margin-medium-left {
  margin-left: 30px !important;
}
.uk-margin-medium-right {
  margin-right: 30px !important;
}
/* Large
 ========================================================================== */
.uk-margin-large {
  margin-bottom: 30px;
}
* + .uk-margin-large {
  margin-top: 30px !important;
}
.uk-margin-large-top {
  margin-top: 30px !important;
}
.uk-margin-large-bottom {
  margin-bottom: 30px !important;
}
.uk-margin-large-left {
  margin-left: 30px !important;
}
.uk-margin-large-right {
  margin-right: 30px !important;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-margin-large {
    margin-bottom: 50px;
  }
  * + .uk-margin-large {
    margin-top: 50px !important;
  }
  .uk-margin-large-top {
    margin-top: 50px !important;
  }
  .uk-margin-large-bottom {
    margin-bottom: 50px !important;
  }
  .uk-margin-large-left {
    margin-left: 50px !important;
  }
  .uk-margin-large-right {
    margin-right: 50px !important;
  }
}
/* XLarge
 ========================================================================== */
.uk-margin-xlarge {
  margin-bottom: 50px;
}
* + .uk-margin-xlarge {
  margin-top: 50px !important;
}
.uk-margin-xlarge-top {
  margin-top: 50px !important;
}
.uk-margin-xlarge-bottom {
  margin-bottom: 50px !important;
}
.uk-margin-xlarge-left {
  margin-left: 50px !important;
}
.uk-margin-xlarge-right {
  margin-right: 50px !important;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-margin-xlarge {
    margin-bottom: 100px;
  }
  * + .uk-margin-xlarge {
    margin-top: 100px !important;
  }
  .uk-margin-xlarge-top {
    margin-top: 100px !important;
  }
  .uk-margin-xlarge-bottom {
    margin-bottom: 100px !important;
  }
  .uk-margin-xlarge-left {
    margin-left: 100px !important;
  }
  .uk-margin-xlarge-right {
    margin-right: 100px !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: 960px) {
  .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: 1200px) {
  .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: 960px) {
  .uk-margin-remove-left\@m {
    margin-left: 0 !important;
  }
  .uk-margin-remove-right\@m {
    margin-right: 0 !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .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: 1200px) {
  .uk-padding {
    padding: 40px;
  }
}
/* Small
 ========================================================================== */
.uk-padding-small {
  padding: 15px;
}
/* Large
 ========================================================================== */
.uk-padding-large {
  padding: 40px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .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: Position
 ========================================================================== */
:root {
  --uk-position-margin-offset: 0px;
}
/* Directions
 ========================================================================== */
/*
 * 1. Prevent content overflow.
 */
[class*="uk-position-top"],
[class*="uk-position-bottom"],
[class*="uk-position-left"],
[class*="uk-position-right"],
[class*="uk-position-center"] {
  position: absolute !important;
  /* 1 */
  max-width: calc(100% - (var(--uk-position-margin-offset) * 2));
  box-sizing: border-box;
}
/*
 * Edges
 * Don't use `width: 100%` because it's wrong if the parent has padding.
 */
.uk-position-top {
  top: 0;
  left: 0;
  right: 0;
}
.uk-position-bottom {
  bottom: 0;
  left: 0;
  right: 0;
}
.uk-position-left {
  top: 0;
  bottom: 0;
  left: 0;
}
.uk-position-right {
  top: 0;
  bottom: 0;
  right: 0;
}
/*
 * Corners
 */
.uk-position-top-left {
  top: 0;
  left: 0;
}
.uk-position-top-right {
  top: 0;
  right: 0;
}
.uk-position-bottom-left {
  bottom: 0;
  left: 0;
}
.uk-position-bottom-right {
  bottom: 0;
  right: 0;
}
/*
 * Center
 * 1. Fix text wrapping if content is larger than 50% of the container.
 *    Using `max-content` requires `max-width` of 100% which is set generally.
 */
.uk-position-center {
  top: calc(50% - var(--uk-position-margin-offset));
  left: calc(50% - var(--uk-position-margin-offset));
  --uk-position-translate-x: -50%;
  --uk-position-translate-y: -50%;
  transform: translate(var(--uk-position-translate-x), var(--uk-position-translate-y));
  /* 1 */
  width: max-content;
}
/* Vertical */
[class*="uk-position-center-left"],
[class*="uk-position-center-right"],
.uk-position-center-vertical {
  top: calc(50% - var(--uk-position-margin-offset));
  --uk-position-translate-y: -50%;
  transform: translate(0, var(--uk-position-translate-y));
}
.uk-position-center-left {
  left: 0;
}
.uk-position-center-right {
  right: 0;
}
.uk-position-center-vertical {
  left: 0;
  right: 0;
}
.uk-position-center-left-out {
  right: 100%;
  width: max-content;
}
.uk-position-center-right-out {
  left: 100%;
  width: max-content;
}
/* Horizontal */
.uk-position-top-center,
.uk-position-bottom-center,
.uk-position-center-horizontal {
  left: calc(50% - var(--uk-position-margin-offset));
  --uk-position-translate-x: -50%;
  transform: translate(var(--uk-position-translate-x), 0);
  /* 1 */
  width: max-content;
}
.uk-position-top-center {
  top: 0;
}
.uk-position-bottom-center {
  bottom: 0;
}
.uk-position-center-horizontal {
  top: 0;
  bottom: 0;
}
/*
 * Cover
 */
.uk-position-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
/* Margin
 ========================================================================== */
.uk-position-small {
  margin: 15px;
  --uk-position-margin-offset: 15px;
}
.uk-position-medium {
  margin: 30px;
  --uk-position-margin-offset: 30px;
}
.uk-position-large {
  margin: 30px;
  --uk-position-margin-offset: 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-position-large {
    margin: 50px;
    --uk-position-margin-offset: 50px;
  }
}
/* Schemes
 ========================================================================== */
.uk-position-relative {
  position: relative  !important;
}
.uk-position-absolute {
  position: absolute  !important;
}
.uk-position-fixed {
  position: fixed  !important;
}
.uk-position-sticky {
  position: sticky  !important;
}
/* Layer
 ========================================================================== */
.uk-position-z-index {
  z-index: 1;
}
.uk-position-z-index-zero {
  z-index: 0;
}
.uk-position-z-index-negative {
  z-index: -1;
}
.uk-position-z-index-high {
  z-index: 990;
}
/* ========================================================================
   Component: Transition
 ========================================================================== */
/* Transitions
 ========================================================================== */
/*
 * The toggle is triggered on touch devices by two methods:
 * 1. Using `:focus` and tabindex
 * 2. Using `:hover` and a `touchstart` event listener registered on the document
 *    (Doesn't work on Surface touch devices)
 */
:where(.uk-transition-fade),
:where([class*="uk-transition-scale"]),
:where([class*="uk-transition-slide"]) {
  --uk-position-translate-x: 0;
  --uk-position-translate-y: 0;
}
.uk-transition-fade,
[class*="uk-transition-scale"],
[class*="uk-transition-slide"] {
  --uk-translate-x: 0;
  --uk-translate-y: 0;
  --uk-scale-x: 1;
  --uk-scale-y: 1;
  transform: translate(var(--uk-position-translate-x), var(--uk-position-translate-y)) translate(var(--uk-translate-x), var(--uk-translate-y)) scale(var(--uk-scale-x), var(--uk-scale-y));
  transition: 0.3s ease-out;
  transition-property: opacity, transform, filter;
  opacity: 0;
}
/*
 * Fade
 */
.uk-transition-toggle:hover .uk-transition-fade,
.uk-transition-toggle:focus .uk-transition-fade,
.uk-transition-toggle .uk-transition-fade:focus-within,
.uk-transition-active.uk-active .uk-transition-fade {
  opacity: 1;
}
/*
 * Scale
 * 1. Make image rendering the same during the transition as before and after. Prefixed because of Safari.
 */
/* 1 */
[class*="uk-transition-scale"] {
  -webkit-backface-visibility: hidden;
}
.uk-transition-scale-up {
  --uk-scale-x: 1;
  --uk-scale-y: 1;
}
.uk-transition-scale-down {
  --uk-scale-x: 1.03;
  --uk-scale-y: 1.03;
}
/* Show */
.uk-transition-toggle:hover .uk-transition-scale-up,
.uk-transition-toggle:focus .uk-transition-scale-up,
.uk-transition-toggle .uk-transition-scale-up:focus-within,
.uk-transition-active.uk-active .uk-transition-scale-up {
  --uk-scale-x: 1.03;
  --uk-scale-y: 1.03;
  opacity: 1;
}
.uk-transition-toggle:hover .uk-transition-scale-down,
.uk-transition-toggle:focus .uk-transition-scale-down,
.uk-transition-toggle .uk-transition-scale-down:focus-within,
.uk-transition-active.uk-active .uk-transition-scale-down {
  --uk-scale-x: 1;
  --uk-scale-y: 1;
  opacity: 1;
}
/*
 * Slide
 */
.uk-transition-slide-top {
  --uk-translate-y: -100%;
}
.uk-transition-slide-bottom {
  --uk-translate-y: 100%;
}
.uk-transition-slide-left {
  --uk-translate-x: -100%;
}
.uk-transition-slide-right {
  --uk-translate-x: 100%;
}
.uk-transition-slide-top-small {
  --uk-translate-y: calc(-1 * 10px);
}
.uk-transition-slide-bottom-small {
  --uk-translate-y: 10px;
}
.uk-transition-slide-left-small {
  --uk-translate-x: calc(-1 * 10px);
}
.uk-transition-slide-right-small {
  --uk-translate-x: 10px;
}
.uk-transition-slide-top-medium {
  --uk-translate-y: calc(-1 * 50px);
}
.uk-transition-slide-bottom-medium {
  --uk-translate-y: 50px;
}
.uk-transition-slide-left-medium {
  --uk-translate-x: calc(-1 * 50px);
}
.uk-transition-slide-right-medium {
  --uk-translate-x: 50px;
}
/* Show */
.uk-transition-toggle:hover [class*="uk-transition-slide"],
.uk-transition-toggle:focus [class*="uk-transition-slide"],
.uk-transition-toggle [class*="uk-transition-slide"]:focus-within,
.uk-transition-active.uk-active [class*="uk-transition-slide"] {
  --uk-translate-x: 0;
  --uk-translate-y: 0;
  opacity: 1;
}
/* Opacity modifier
 ========================================================================== */
.uk-transition-opaque {
  opacity: 1;
}
/* Duration modifier
 ========================================================================== */
.uk-transition-slow {
  transition-duration: 0.7s;
}
/* Disable modifier
 ========================================================================== */
.uk-transition-disable,
.uk-transition-disable * {
  transition: none !important;
}
/* ========================================================================
   Component: Visibility
 ========================================================================== */
/*
 * Hidden
 * `hidden` attribute also set here to make it stronger
 */
[hidden],
.uk-hidden {
  display: none !important;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-hidden\@s {
    display: none !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-hidden\@m {
    display: none !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-hidden\@l {
    display: none !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-hidden\@xl {
    display: none !important;
  }
}
/*
 * Visible
 */
/* Phone portrait and smaller */
@media (max-width: 639px) {
  .uk-visible\@s {
    display: none !important;
  }
}
/* Phone landscape and smaller */
@media (max-width: 959px) {
  .uk-visible\@m {
    display: none !important;
  }
}
/* Tablet landscape and smaller */
@media (max-width: 1199px) {
  .uk-visible\@l {
    display: none !important;
  }
}
/* Desktop and smaller */
@media (max-width: 1599px) {
  .uk-visible\@xl {
    display: none !important;
  }
}
/* Visibility
 ========================================================================== */
.uk-invisible {
  visibility: hidden !important;
}
/* Based on the State of the Parent Element
 ========================================================================== */
/*
 * Mind that `display: none`, `visibility: hidden` and `opacity: 0`
 * remove the element from the accessibility tree and that
 * `display: none` and `visibility: hidden` are not focusable.
 *
 * The target stays visible if any element within receives focus through keyboard.
 */
/*
 * Remove space when hidden.
 * 1. Remove from document flow.
 * 2. Hide element and shrink its dimension. Current browsers and screen readers
 *    keep the element in the accessibility tree even with zero dimensions.
 *    Using `tabindex="-1"` will show the element on touch devices.
 *    Note: `clip-path` doesn't work with `tabindex` on touch devices.
 */
.uk-hidden-visually:not(:focus):not(:active):not(:focus-within),
.uk-visible-toggle:not(:hover):not(:focus) .uk-hidden-hover:not(:focus-within) {
  /* 1 */
  position: absolute !important;
  /* 2 */
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}
/*
 * Keep space when hidden.
 * Hide element without shrinking its dimension.
 * Note: `clip-path` doesn't work with hover for elements outside of the toggle box.
 */
.uk-visible-toggle:not(:hover):not(:focus) .uk-invisible-hover:not(:focus-within) {
  opacity: 0 !important;
}
/* Based on Hover Capability of the Pointing Device
 ========================================================================== */
/*
 * Hover
 */
/* Hide if primary pointing device doesn't support hover, e.g. touch screens. */
@media (hover: none) {
  .uk-hidden-touch {
    display: none !important;
  }
}
/* Hide if primary pointing device supports hover, e.g. mice. */
@media (hover) {
  .uk-hidden-notouch {
    display: none !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-tile-primary:not(.uk-preserve-color),
.uk-tile-secondary:not(.uk-preserve-color),
.uk-card-primary.uk-card-body,
.uk-card-primary > :not([class*="uk-card-media"]),
.uk-card-secondary.uk-card-body,
.uk-card-secondary > :not([class*="uk-card-media"]),
.uk-overlay-primary,
.uk-offcanvas-bar {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light a,
.uk-light .uk-link,
.uk-tile-primary:not(.uk-preserve-color) a,
.uk-tile-primary:not(.uk-preserve-color) .uk-link,
.uk-tile-secondary:not(.uk-preserve-color) a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-link,
.uk-card-primary.uk-card-body a,
.uk-card-primary.uk-card-body .uk-link,
.uk-card-primary > :not([class*="uk-card-media"]) a,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-link,
.uk-card-secondary.uk-card-body a,
.uk-card-secondary.uk-card-body .uk-link,
.uk-card-secondary > :not([class*="uk-card-media"]) a,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-link,
.uk-overlay-primary a,
.uk-overlay-primary .uk-link,
.uk-offcanvas-bar a,
.uk-offcanvas-bar .uk-link {
  color: #fff;
}
.uk-light a:hover,
.uk-light .uk-link:hover,
.uk-light .uk-link-toggle:hover .uk-link,
.uk-tile-primary:not(.uk-preserve-color) a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-link:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link,
.uk-tile-secondary:not(.uk-preserve-color) a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-link:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link,
.uk-card-primary.uk-card-body a:hover,
.uk-card-primary.uk-card-body .uk-link:hover,
.uk-card-primary.uk-card-body .uk-link-toggle:hover .uk-link,
.uk-card-primary > :not([class*="uk-card-media"]) a:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-link:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-link-toggle:hover .uk-link,
.uk-card-secondary.uk-card-body a:hover,
.uk-card-secondary.uk-card-body .uk-link:hover,
.uk-card-secondary.uk-card-body .uk-link-toggle:hover .uk-link,
.uk-card-secondary > :not([class*="uk-card-media"]) a:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-link:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-link-toggle:hover .uk-link,
.uk-overlay-primary a:hover,
.uk-overlay-primary .uk-link:hover,
.uk-overlay-primary .uk-link-toggle:hover .uk-link,
.uk-offcanvas-bar a:hover,
.uk-offcanvas-bar .uk-link:hover,
.uk-offcanvas-bar .uk-link-toggle:hover .uk-link {
  color: #fff;
}
.uk-light :not(pre) > code,
.uk-light :not(pre) > kbd,
.uk-light :not(pre) > samp,
.uk-tile-primary:not(.uk-preserve-color) :not(pre) > code,
.uk-tile-primary:not(.uk-preserve-color) :not(pre) > kbd,
.uk-tile-primary:not(.uk-preserve-color) :not(pre) > samp,
.uk-tile-secondary:not(.uk-preserve-color) :not(pre) > code,
.uk-tile-secondary:not(.uk-preserve-color) :not(pre) > kbd,
.uk-tile-secondary:not(.uk-preserve-color) :not(pre) > samp,
.uk-card-primary.uk-card-body :not(pre) > code,
.uk-card-primary.uk-card-body :not(pre) > kbd,
.uk-card-primary.uk-card-body :not(pre) > samp,
.uk-card-primary > :not([class*="uk-card-media"]) :not(pre) > code,
.uk-card-primary > :not([class*="uk-card-media"]) :not(pre) > kbd,
.uk-card-primary > :not([class*="uk-card-media"]) :not(pre) > samp,
.uk-card-secondary.uk-card-body :not(pre) > code,
.uk-card-secondary.uk-card-body :not(pre) > kbd,
.uk-card-secondary.uk-card-body :not(pre) > samp,
.uk-card-secondary > :not([class*="uk-card-media"]) :not(pre) > code,
.uk-card-secondary > :not([class*="uk-card-media"]) :not(pre) > kbd,
.uk-card-secondary > :not([class*="uk-card-media"]) :not(pre) > samp,
.uk-overlay-primary :not(pre) > code,
.uk-overlay-primary :not(pre) > kbd,
.uk-overlay-primary :not(pre) > samp,
.uk-offcanvas-bar :not(pre) > code,
.uk-offcanvas-bar :not(pre) > kbd,
.uk-offcanvas-bar :not(pre) > samp {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light em,
.uk-tile-primary:not(.uk-preserve-color) em,
.uk-tile-secondary:not(.uk-preserve-color) em,
.uk-card-primary.uk-card-body em,
.uk-card-primary > :not([class*="uk-card-media"]) em,
.uk-card-secondary.uk-card-body em,
.uk-card-secondary > :not([class*="uk-card-media"]) em,
.uk-overlay-primary em,
.uk-offcanvas-bar em {
  color: #fff;
}
.uk-light h1,
.uk-light .uk-h1,
.uk-light h2,
.uk-light .uk-h2,
.uk-light h3,
.uk-light .uk-h3,
.uk-light h4,
.uk-light .uk-h4,
.uk-light h5,
.uk-light .uk-h5,
.uk-light h6,
.uk-light .uk-h6,
.uk-light .uk-heading-small,
.uk-light .uk-heading-medium,
.uk-light .uk-heading-large,
.uk-light .uk-heading-xlarge,
.uk-light .uk-heading-2xlarge,
.uk-light .uk-heading-3xlarge,
.uk-tile-primary:not(.uk-preserve-color) h1,
.uk-tile-primary:not(.uk-preserve-color) .uk-h1,
.uk-tile-primary:not(.uk-preserve-color) h2,
.uk-tile-primary:not(.uk-preserve-color) .uk-h2,
.uk-tile-primary:not(.uk-preserve-color) h3,
.uk-tile-primary:not(.uk-preserve-color) .uk-h3,
.uk-tile-primary:not(.uk-preserve-color) h4,
.uk-tile-primary:not(.uk-preserve-color) .uk-h4,
.uk-tile-primary:not(.uk-preserve-color) h5,
.uk-tile-primary:not(.uk-preserve-color) .uk-h5,
.uk-tile-primary:not(.uk-preserve-color) h6,
.uk-tile-primary:not(.uk-preserve-color) .uk-h6,
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-small,
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-medium,
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-large,
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-xlarge,
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-2xlarge,
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-3xlarge,
.uk-tile-secondary:not(.uk-preserve-color) h1,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h1,
.uk-tile-secondary:not(.uk-preserve-color) h2,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h2,
.uk-tile-secondary:not(.uk-preserve-color) h3,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h3,
.uk-tile-secondary:not(.uk-preserve-color) h4,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h4,
.uk-tile-secondary:not(.uk-preserve-color) h5,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h5,
.uk-tile-secondary:not(.uk-preserve-color) h6,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h6,
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-small,
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-medium,
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-large,
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-xlarge,
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-2xlarge,
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-3xlarge,
.uk-card-primary.uk-card-body h1,
.uk-card-primary.uk-card-body .uk-h1,
.uk-card-primary.uk-card-body h2,
.uk-card-primary.uk-card-body .uk-h2,
.uk-card-primary.uk-card-body h3,
.uk-card-primary.uk-card-body .uk-h3,
.uk-card-primary.uk-card-body h4,
.uk-card-primary.uk-card-body .uk-h4,
.uk-card-primary.uk-card-body h5,
.uk-card-primary.uk-card-body .uk-h5,
.uk-card-primary.uk-card-body h6,
.uk-card-primary.uk-card-body .uk-h6,
.uk-card-primary.uk-card-body .uk-heading-small,
.uk-card-primary.uk-card-body .uk-heading-medium,
.uk-card-primary.uk-card-body .uk-heading-large,
.uk-card-primary.uk-card-body .uk-heading-xlarge,
.uk-card-primary.uk-card-body .uk-heading-2xlarge,
.uk-card-primary.uk-card-body .uk-heading-3xlarge,
.uk-card-primary > :not([class*="uk-card-media"]) h1,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-h1,
.uk-card-primary > :not([class*="uk-card-media"]) h2,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-h2,
.uk-card-primary > :not([class*="uk-card-media"]) h3,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-h3,
.uk-card-primary > :not([class*="uk-card-media"]) h4,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-h4,
.uk-card-primary > :not([class*="uk-card-media"]) h5,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-h5,
.uk-card-primary > :not([class*="uk-card-media"]) h6,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-h6,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-heading-small,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-heading-medium,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-heading-large,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-heading-xlarge,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-heading-2xlarge,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-heading-3xlarge,
.uk-card-secondary.uk-card-body h1,
.uk-card-secondary.uk-card-body .uk-h1,
.uk-card-secondary.uk-card-body h2,
.uk-card-secondary.uk-card-body .uk-h2,
.uk-card-secondary.uk-card-body h3,
.uk-card-secondary.uk-card-body .uk-h3,
.uk-card-secondary.uk-card-body h4,
.uk-card-secondary.uk-card-body .uk-h4,
.uk-card-secondary.uk-card-body h5,
.uk-card-secondary.uk-card-body .uk-h5,
.uk-card-secondary.uk-card-body h6,
.uk-card-secondary.uk-card-body .uk-h6,
.uk-card-secondary.uk-card-body .uk-heading-small,
.uk-card-secondary.uk-card-body .uk-heading-medium,
.uk-card-secondary.uk-card-body .uk-heading-large,
.uk-card-secondary.uk-card-body .uk-heading-xlarge,
.uk-card-secondary.uk-card-body .uk-heading-2xlarge,
.uk-card-secondary.uk-card-body .uk-heading-3xlarge,
.uk-card-secondary > :not([class*="uk-card-media"]) h1,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-h1,
.uk-card-secondary > :not([class*="uk-card-media"]) h2,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-h2,
.uk-card-secondary > :not([class*="uk-card-media"]) h3,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-h3,
.uk-card-secondary > :not([class*="uk-card-media"]) h4,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-h4,
.uk-card-secondary > :not([class*="uk-card-media"]) h5,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-h5,
.uk-card-secondary > :not([class*="uk-card-media"]) h6,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-h6,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-heading-small,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-heading-medium,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-heading-large,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-heading-xlarge,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-heading-2xlarge,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-heading-3xlarge,
.uk-overlay-primary h1,
.uk-overlay-primary .uk-h1,
.uk-overlay-primary h2,
.uk-overlay-primary .uk-h2,
.uk-overlay-primary h3,
.uk-overlay-primary .uk-h3,
.uk-overlay-primary h4,
.uk-overlay-primary .uk-h4,
.uk-overlay-primary h5,
.uk-overlay-primary .uk-h5,
.uk-overlay-primary h6,
.uk-overlay-primary .uk-h6,
.uk-overlay-primary .uk-heading-small,
.uk-overlay-primary .uk-heading-medium,
.uk-overlay-primary .uk-heading-large,
.uk-overlay-primary .uk-heading-xlarge,
.uk-overlay-primary .uk-heading-2xlarge,
.uk-overlay-primary .uk-heading-3xlarge,
.uk-offcanvas-bar h1,
.uk-offcanvas-bar .uk-h1,
.uk-offcanvas-bar h2,
.uk-offcanvas-bar .uk-h2,
.uk-offcanvas-bar h3,
.uk-offcanvas-bar .uk-h3,
.uk-offcanvas-bar h4,
.uk-offcanvas-bar .uk-h4,
.uk-offcanvas-bar h5,
.uk-offcanvas-bar .uk-h5,
.uk-offcanvas-bar h6,
.uk-offcanvas-bar .uk-h6,
.uk-offcanvas-bar .uk-heading-small,
.uk-offcanvas-bar .uk-heading-medium,
.uk-offcanvas-bar .uk-heading-large,
.uk-offcanvas-bar .uk-heading-xlarge,
.uk-offcanvas-bar .uk-heading-2xlarge,
.uk-offcanvas-bar .uk-heading-3xlarge {
  color: #fff;
}
.uk-light hr,
.uk-light .uk-hr,
.uk-tile-primary:not(.uk-preserve-color) hr,
.uk-tile-primary:not(.uk-preserve-color) .uk-hr,
.uk-tile-secondary:not(.uk-preserve-color) hr,
.uk-tile-secondary:not(.uk-preserve-color) .uk-hr,
.uk-card-primary.uk-card-body hr,
.uk-card-primary.uk-card-body .uk-hr,
.uk-card-primary > :not([class*="uk-card-media"]) hr,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-hr,
.uk-card-secondary.uk-card-body hr,
.uk-card-secondary.uk-card-body .uk-hr,
.uk-card-secondary > :not([class*="uk-card-media"]) hr,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-hr,
.uk-overlay-primary hr,
.uk-overlay-primary .uk-hr,
.uk-offcanvas-bar hr,
.uk-offcanvas-bar .uk-hr {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light :focus-visible,
.uk-tile-primary:not(.uk-preserve-color) :focus-visible,
.uk-tile-secondary:not(.uk-preserve-color) :focus-visible,
.uk-card-primary.uk-card-body :focus-visible,
.uk-card-primary > :not([class*="uk-card-media"]) :focus-visible,
.uk-card-secondary.uk-card-body :focus-visible,
.uk-card-secondary > :not([class*="uk-card-media"]) :focus-visible,
.uk-overlay-primary :focus-visible,
.uk-offcanvas-bar :focus-visible {
  outline-color: #fff;
}
.uk-light a.uk-link-muted,
.uk-light .uk-link-muted a,
.uk-tile-primary:not(.uk-preserve-color) a.uk-link-muted,
.uk-tile-primary:not(.uk-preserve-color) .uk-link-muted a,
.uk-tile-secondary:not(.uk-preserve-color) a.uk-link-muted,
.uk-tile-secondary:not(.uk-preserve-color) .uk-link-muted a,
.uk-card-primary.uk-card-body a.uk-link-muted,
.uk-card-primary.uk-card-body .uk-link-muted a,
.uk-card-primary > :not([class*="uk-card-media"]) a.uk-link-muted,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-link-muted a,
.uk-card-secondary.uk-card-body a.uk-link-muted,
.uk-card-secondary.uk-card-body .uk-link-muted a,
.uk-card-secondary > :not([class*="uk-card-media"]) a.uk-link-muted,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-link-muted a,
.uk-overlay-primary a.uk-link-muted,
.uk-overlay-primary .uk-link-muted a,
.uk-offcanvas-bar a.uk-link-muted,
.uk-offcanvas-bar .uk-link-muted a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light a.uk-link-muted:hover,
.uk-light .uk-link-muted a:hover,
.uk-light .uk-link-toggle:hover .uk-link-muted,
.uk-tile-primary:not(.uk-preserve-color) a.uk-link-muted:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-link-muted a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-muted,
.uk-tile-secondary:not(.uk-preserve-color) a.uk-link-muted:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-link-muted a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-muted,
.uk-card-primary.uk-card-body a.uk-link-muted:hover,
.uk-card-primary.uk-card-body .uk-link-muted a:hover,
.uk-card-primary.uk-card-body .uk-link-toggle:hover .uk-link-muted,
.uk-card-primary > :not([class*="uk-card-media"]) a.uk-link-muted:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-link-muted a:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-link-toggle:hover .uk-link-muted,
.uk-card-secondary.uk-card-body a.uk-link-muted:hover,
.uk-card-secondary.uk-card-body .uk-link-muted a:hover,
.uk-card-secondary.uk-card-body .uk-link-toggle:hover .uk-link-muted,
.uk-card-secondary > :not([class*="uk-card-media"]) a.uk-link-muted:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-link-muted a:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-link-toggle:hover .uk-link-muted,
.uk-overlay-primary a.uk-link-muted:hover,
.uk-overlay-primary .uk-link-muted a:hover,
.uk-overlay-primary .uk-link-toggle:hover .uk-link-muted,
.uk-offcanvas-bar a.uk-link-muted:hover,
.uk-offcanvas-bar .uk-link-muted a:hover,
.uk-offcanvas-bar .uk-link-toggle:hover .uk-link-muted {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light a.uk-link-text:hover,
.uk-light .uk-link-text a:hover,
.uk-light .uk-link-toggle:hover .uk-link-text,
.uk-tile-primary:not(.uk-preserve-color) a.uk-link-text:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-link-text a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-text,
.uk-tile-secondary:not(.uk-preserve-color) a.uk-link-text:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-link-text a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-text,
.uk-card-primary.uk-card-body a.uk-link-text:hover,
.uk-card-primary.uk-card-body .uk-link-text a:hover,
.uk-card-primary.uk-card-body .uk-link-toggle:hover .uk-link-text,
.uk-card-primary > :not([class*="uk-card-media"]) a.uk-link-text:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-link-text a:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-link-toggle:hover .uk-link-text,
.uk-card-secondary.uk-card-body a.uk-link-text:hover,
.uk-card-secondary.uk-card-body .uk-link-text a:hover,
.uk-card-secondary.uk-card-body .uk-link-toggle:hover .uk-link-text,
.uk-card-secondary > :not([class*="uk-card-media"]) a.uk-link-text:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-link-text a:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-link-toggle:hover .uk-link-text,
.uk-overlay-primary a.uk-link-text:hover,
.uk-overlay-primary .uk-link-text a:hover,
.uk-overlay-primary .uk-link-toggle:hover .uk-link-text,
.uk-offcanvas-bar a.uk-link-text:hover,
.uk-offcanvas-bar .uk-link-text a:hover,
.uk-offcanvas-bar .uk-link-toggle:hover .uk-link-text {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light a.uk-link-heading:hover,
.uk-light .uk-link-heading a:hover,
.uk-light .uk-link-toggle:hover .uk-link-heading,
.uk-tile-primary:not(.uk-preserve-color) a.uk-link-heading:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-link-heading a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-heading,
.uk-tile-secondary:not(.uk-preserve-color) a.uk-link-heading:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-link-heading a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-heading,
.uk-card-primary.uk-card-body a.uk-link-heading:hover,
.uk-card-primary.uk-card-body .uk-link-heading a:hover,
.uk-card-primary.uk-card-body .uk-link-toggle:hover .uk-link-heading,
.uk-card-primary > :not([class*="uk-card-media"]) a.uk-link-heading:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-link-heading a:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-link-toggle:hover .uk-link-heading,
.uk-card-secondary.uk-card-body a.uk-link-heading:hover,
.uk-card-secondary.uk-card-body .uk-link-heading a:hover,
.uk-card-secondary.uk-card-body .uk-link-toggle:hover .uk-link-heading,
.uk-card-secondary > :not([class*="uk-card-media"]) a.uk-link-heading:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-link-heading a:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-link-toggle:hover .uk-link-heading,
.uk-overlay-primary a.uk-link-heading:hover,
.uk-overlay-primary .uk-link-heading a:hover,
.uk-overlay-primary .uk-link-toggle:hover .uk-link-heading,
.uk-offcanvas-bar a.uk-link-heading:hover,
.uk-offcanvas-bar .uk-link-heading a:hover,
.uk-offcanvas-bar .uk-link-toggle:hover .uk-link-heading {
  color: #fff;
}
.uk-light .uk-heading-divider,
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-divider,
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-divider,
.uk-card-primary.uk-card-body .uk-heading-divider,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-heading-divider,
.uk-card-secondary.uk-card-body .uk-heading-divider,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-heading-divider,
.uk-overlay-primary .uk-heading-divider,
.uk-offcanvas-bar .uk-heading-divider {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-heading-bullet::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-bullet::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-bullet::before,
.uk-card-primary.uk-card-body .uk-heading-bullet::before,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-heading-bullet::before,
.uk-card-secondary.uk-card-body .uk-heading-bullet::before,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-heading-bullet::before,
.uk-overlay-primary .uk-heading-bullet::before,
.uk-offcanvas-bar .uk-heading-bullet::before {
  border-left-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-heading-line > ::before,
.uk-light .uk-heading-line > ::after,
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-line > ::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-line > ::after,
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-line > ::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-line > ::after,
.uk-card-primary.uk-card-body .uk-heading-line > ::before,
.uk-card-primary.uk-card-body .uk-heading-line > ::after,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-heading-line > ::before,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-heading-line > ::after,
.uk-card-secondary.uk-card-body .uk-heading-line > ::before,
.uk-card-secondary.uk-card-body .uk-heading-line > ::after,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-heading-line > ::before,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-heading-line > ::after,
.uk-overlay-primary .uk-heading-line > ::before,
.uk-overlay-primary .uk-heading-line > ::after,
.uk-offcanvas-bar .uk-heading-line > ::before,
.uk-offcanvas-bar .uk-heading-line > ::after {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-divider-icon,
.uk-tile-primary:not(.uk-preserve-color) .uk-divider-icon,
.uk-tile-secondary:not(.uk-preserve-color) .uk-divider-icon,
.uk-card-primary.uk-card-body .uk-divider-icon,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-divider-icon,
.uk-card-secondary.uk-card-body .uk-divider-icon,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-divider-icon,
.uk-overlay-primary .uk-divider-icon,
.uk-offcanvas-bar .uk-divider-icon {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22none%22%20stroke%3D%22rgba%28255,%20255,%20255,%200.2%29%22%20stroke-width%3D%222%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%227%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.uk-light .uk-divider-icon::before,
.uk-light .uk-divider-icon::after,
.uk-tile-primary:not(.uk-preserve-color) .uk-divider-icon::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-divider-icon::after,
.uk-tile-secondary:not(.uk-preserve-color) .uk-divider-icon::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-divider-icon::after,
.uk-card-primary.uk-card-body .uk-divider-icon::before,
.uk-card-primary.uk-card-body .uk-divider-icon::after,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-divider-icon::before,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-divider-icon::after,
.uk-card-secondary.uk-card-body .uk-divider-icon::before,
.uk-card-secondary.uk-card-body .uk-divider-icon::after,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-divider-icon::before,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-divider-icon::after,
.uk-overlay-primary .uk-divider-icon::before,
.uk-overlay-primary .uk-divider-icon::after,
.uk-offcanvas-bar .uk-divider-icon::before,
.uk-offcanvas-bar .uk-divider-icon::after {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-divider-small::after,
.uk-tile-primary:not(.uk-preserve-color) .uk-divider-small::after,
.uk-tile-secondary:not(.uk-preserve-color) .uk-divider-small::after,
.uk-card-primary.uk-card-body .uk-divider-small::after,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-divider-small::after,
.uk-card-secondary.uk-card-body .uk-divider-small::after,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-divider-small::after,
.uk-overlay-primary .uk-divider-small::after,
.uk-offcanvas-bar .uk-divider-small::after {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-divider-vertical,
.uk-tile-primary:not(.uk-preserve-color) .uk-divider-vertical,
.uk-tile-secondary:not(.uk-preserve-color) .uk-divider-vertical,
.uk-card-primary.uk-card-body .uk-divider-vertical,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-divider-vertical,
.uk-card-secondary.uk-card-body .uk-divider-vertical,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-divider-vertical,
.uk-overlay-primary .uk-divider-vertical,
.uk-offcanvas-bar .uk-divider-vertical {
  border-left-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-list-muted > ::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-list-muted > ::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-list-muted > ::before,
.uk-card-primary.uk-card-body .uk-list-muted > ::before,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-list-muted > ::before,
.uk-card-secondary.uk-card-body .uk-list-muted > ::before,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-muted > ::before,
.uk-overlay-primary .uk-list-muted > ::before,
.uk-offcanvas-bar .uk-list-muted > ::before {
  color: rgba(255, 255, 255, 0.5) !important;
}
.uk-light .uk-list-emphasis > ::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-list-emphasis > ::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-list-emphasis > ::before,
.uk-card-primary.uk-card-body .uk-list-emphasis > ::before,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-list-emphasis > ::before,
.uk-card-secondary.uk-card-body .uk-list-emphasis > ::before,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-emphasis > ::before,
.uk-overlay-primary .uk-list-emphasis > ::before,
.uk-offcanvas-bar .uk-list-emphasis > ::before {
  color: #fff !important;
}
.uk-light .uk-list-primary > ::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-list-primary > ::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-list-primary > ::before,
.uk-card-primary.uk-card-body .uk-list-primary > ::before,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-list-primary > ::before,
.uk-card-secondary.uk-card-body .uk-list-primary > ::before,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-primary > ::before,
.uk-overlay-primary .uk-list-primary > ::before,
.uk-offcanvas-bar .uk-list-primary > ::before {
  color: #fff !important;
}
.uk-light .uk-list-secondary > ::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-list-secondary > ::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-list-secondary > ::before,
.uk-card-primary.uk-card-body .uk-list-secondary > ::before,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-list-secondary > ::before,
.uk-card-secondary.uk-card-body .uk-list-secondary > ::before,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-secondary > ::before,
.uk-overlay-primary .uk-list-secondary > ::before,
.uk-offcanvas-bar .uk-list-secondary > ::before {
  color: #fff !important;
}
.uk-light .uk-list-bullet > ::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-list-bullet > ::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-list-bullet > ::before,
.uk-card-primary.uk-card-body .uk-list-bullet > ::before,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-list-bullet > ::before,
.uk-card-secondary.uk-card-body .uk-list-bullet > ::before,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-bullet > ::before,
.uk-overlay-primary .uk-list-bullet > ::before,
.uk-offcanvas-bar .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%22rgba%28255,%20255,%20255,%200.7%29%22%20cx%3D%223%22%20cy%3D%223%22%20r%3D%223%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-light .uk-list-divider > :nth-child(n+2),
.uk-tile-primary:not(.uk-preserve-color) .uk-list-divider > :nth-child(n+2),
.uk-tile-secondary:not(.uk-preserve-color) .uk-list-divider > :nth-child(n+2),
.uk-card-primary.uk-card-body .uk-list-divider > :nth-child(n+2),
.uk-card-primary > :not([class*="uk-card-media"]) .uk-list-divider > :nth-child(n+2),
.uk-card-secondary.uk-card-body .uk-list-divider > :nth-child(n+2),
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-divider > :nth-child(n+2),
.uk-overlay-primary .uk-list-divider > :nth-child(n+2),
.uk-offcanvas-bar .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-tile-primary:not(.uk-preserve-color) .uk-list-striped > :nth-of-type(odd),
.uk-tile-secondary:not(.uk-preserve-color) .uk-list-striped > :nth-of-type(odd),
.uk-card-primary.uk-card-body .uk-list-striped > :nth-of-type(odd),
.uk-card-primary > :not([class*="uk-card-media"]) .uk-list-striped > :nth-of-type(odd),
.uk-card-secondary.uk-card-body .uk-list-striped > :nth-of-type(odd),
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-striped > :nth-of-type(odd),
.uk-overlay-primary .uk-list-striped > :nth-of-type(odd),
.uk-offcanvas-bar .uk-list-striped > :nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.1);
}
.uk-light .uk-table th,
.uk-tile-primary:not(.uk-preserve-color) .uk-table th,
.uk-tile-secondary:not(.uk-preserve-color) .uk-table th,
.uk-card-primary.uk-card-body .uk-table th,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-table th,
.uk-card-secondary.uk-card-body .uk-table th,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-table th,
.uk-overlay-primary .uk-table th,
.uk-offcanvas-bar .uk-table th {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-table caption,
.uk-tile-primary:not(.uk-preserve-color) .uk-table caption,
.uk-tile-secondary:not(.uk-preserve-color) .uk-table caption,
.uk-card-primary.uk-card-body .uk-table caption,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-table caption,
.uk-card-secondary.uk-card-body .uk-table caption,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-table caption,
.uk-overlay-primary .uk-table caption,
.uk-offcanvas-bar .uk-table caption {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-table > tr.uk-active,
.uk-light .uk-table tbody tr.uk-active,
.uk-tile-primary:not(.uk-preserve-color) .uk-table > tr.uk-active,
.uk-tile-primary:not(.uk-preserve-color) .uk-table tbody tr.uk-active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-table > tr.uk-active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-table tbody tr.uk-active,
.uk-card-primary.uk-card-body .uk-table > tr.uk-active,
.uk-card-primary.uk-card-body .uk-table tbody tr.uk-active,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-table > tr.uk-active,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-table tbody tr.uk-active,
.uk-card-secondary.uk-card-body .uk-table > tr.uk-active,
.uk-card-secondary.uk-card-body .uk-table tbody tr.uk-active,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-table > tr.uk-active,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-table tbody tr.uk-active,
.uk-overlay-primary .uk-table > tr.uk-active,
.uk-overlay-primary .uk-table tbody tr.uk-active,
.uk-offcanvas-bar .uk-table > tr.uk-active,
.uk-offcanvas-bar .uk-table tbody tr.uk-active {
  background: rgba(255, 255, 255, 0.08);
}
.uk-light .uk-table-divider > tr:not(:first-child),
.uk-light .uk-table-divider > :not(:first-child) > tr,
.uk-light .uk-table-divider > :first-child > tr:not(:first-child),
.uk-tile-primary:not(.uk-preserve-color) .uk-table-divider > tr:not(:first-child),
.uk-tile-primary:not(.uk-preserve-color) .uk-table-divider > :not(:first-child) > tr,
.uk-tile-primary:not(.uk-preserve-color) .uk-table-divider > :first-child > tr:not(:first-child),
.uk-tile-secondary:not(.uk-preserve-color) .uk-table-divider > tr:not(:first-child),
.uk-tile-secondary:not(.uk-preserve-color) .uk-table-divider > :not(:first-child) > tr,
.uk-tile-secondary:not(.uk-preserve-color) .uk-table-divider > :first-child > tr:not(:first-child),
.uk-card-primary.uk-card-body .uk-table-divider > tr:not(:first-child),
.uk-card-primary.uk-card-body .uk-table-divider > :not(:first-child) > tr,
.uk-card-primary.uk-card-body .uk-table-divider > :first-child > tr:not(:first-child),
.uk-card-primary > :not([class*="uk-card-media"]) .uk-table-divider > tr:not(:first-child),
.uk-card-primary > :not([class*="uk-card-media"]) .uk-table-divider > :not(:first-child) > tr,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-table-divider > :first-child > tr:not(:first-child),
.uk-card-secondary.uk-card-body .uk-table-divider > tr:not(:first-child),
.uk-card-secondary.uk-card-body .uk-table-divider > :not(:first-child) > tr,
.uk-card-secondary.uk-card-body .uk-table-divider > :first-child > tr:not(:first-child),
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-table-divider > tr:not(:first-child),
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-table-divider > :not(:first-child) > tr,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-table-divider > :first-child > tr:not(:first-child),
.uk-overlay-primary .uk-table-divider > tr:not(:first-child),
.uk-overlay-primary .uk-table-divider > :not(:first-child) > tr,
.uk-overlay-primary .uk-table-divider > :first-child > tr:not(:first-child),
.uk-offcanvas-bar .uk-table-divider > tr:not(:first-child),
.uk-offcanvas-bar .uk-table-divider > :not(:first-child) > tr,
.uk-offcanvas-bar .uk-table-divider > :first-child > tr:not(:first-child) {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-table-striped > tr:nth-of-type(odd),
.uk-light .uk-table-striped tbody tr:nth-of-type(odd),
.uk-tile-primary:not(.uk-preserve-color) .uk-table-striped > tr:nth-of-type(odd),
.uk-tile-primary:not(.uk-preserve-color) .uk-table-striped tbody tr:nth-of-type(odd),
.uk-tile-secondary:not(.uk-preserve-color) .uk-table-striped > tr:nth-of-type(odd),
.uk-tile-secondary:not(.uk-preserve-color) .uk-table-striped tbody tr:nth-of-type(odd),
.uk-card-primary.uk-card-body .uk-table-striped > tr:nth-of-type(odd),
.uk-card-primary.uk-card-body .uk-table-striped tbody tr:nth-of-type(odd),
.uk-card-primary > :not([class*="uk-card-media"]) .uk-table-striped > tr:nth-of-type(odd),
.uk-card-primary > :not([class*="uk-card-media"]) .uk-table-striped tbody tr:nth-of-type(odd),
.uk-card-secondary.uk-card-body .uk-table-striped > tr:nth-of-type(odd),
.uk-card-secondary.uk-card-body .uk-table-striped tbody tr:nth-of-type(odd),
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-table-striped > tr:nth-of-type(odd),
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-table-striped tbody tr:nth-of-type(odd),
.uk-overlay-primary .uk-table-striped > tr:nth-of-type(odd),
.uk-overlay-primary .uk-table-striped tbody tr:nth-of-type(odd),
.uk-offcanvas-bar .uk-table-striped > tr:nth-of-type(odd),
.uk-offcanvas-bar .uk-table-striped tbody tr:nth-of-type(odd) {
  background: rgba(255, 255, 255, 0.1);
}
.uk-light .uk-table-hover > tr:hover,
.uk-light .uk-table-hover tbody tr:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-table-hover > tr:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-table-hover tbody tr:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-table-hover > tr:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-table-hover tbody tr:hover,
.uk-card-primary.uk-card-body .uk-table-hover > tr:hover,
.uk-card-primary.uk-card-body .uk-table-hover tbody tr:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-table-hover > tr:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-table-hover tbody tr:hover,
.uk-card-secondary.uk-card-body .uk-table-hover > tr:hover,
.uk-card-secondary.uk-card-body .uk-table-hover tbody tr:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-table-hover > tr:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-table-hover tbody tr:hover,
.uk-overlay-primary .uk-table-hover > tr:hover,
.uk-overlay-primary .uk-table-hover tbody tr:hover,
.uk-offcanvas-bar .uk-table-hover > tr:hover,
.uk-offcanvas-bar .uk-table-hover tbody tr:hover {
  background: rgba(255, 255, 255, 0.08);
}
.uk-light .uk-icon-link,
.uk-tile-primary:not(.uk-preserve-color) .uk-icon-link,
.uk-tile-secondary:not(.uk-preserve-color) .uk-icon-link,
.uk-card-primary.uk-card-body .uk-icon-link,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-icon-link,
.uk-card-secondary.uk-card-body .uk-icon-link,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-icon-link,
.uk-overlay-primary .uk-icon-link,
.uk-offcanvas-bar .uk-icon-link {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-icon-link:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-icon-link:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-icon-link:hover,
.uk-card-primary.uk-card-body .uk-icon-link:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-icon-link:hover,
.uk-card-secondary.uk-card-body .uk-icon-link:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-icon-link:hover,
.uk-overlay-primary .uk-icon-link:hover,
.uk-offcanvas-bar .uk-icon-link:hover {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-icon-link:active,
.uk-light .uk-active > .uk-icon-link,
.uk-tile-primary:not(.uk-preserve-color) .uk-icon-link:active,
.uk-tile-primary:not(.uk-preserve-color) .uk-active > .uk-icon-link,
.uk-tile-secondary:not(.uk-preserve-color) .uk-icon-link:active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-active > .uk-icon-link,
.uk-card-primary.uk-card-body .uk-icon-link:active,
.uk-card-primary.uk-card-body .uk-active > .uk-icon-link,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-icon-link:active,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-active > .uk-icon-link,
.uk-card-secondary.uk-card-body .uk-icon-link:active,
.uk-card-secondary.uk-card-body .uk-active > .uk-icon-link,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-icon-link:active,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-active > .uk-icon-link,
.uk-overlay-primary .uk-icon-link:active,
.uk-overlay-primary .uk-active > .uk-icon-link,
.uk-offcanvas-bar .uk-icon-link:active,
.uk-offcanvas-bar .uk-active > .uk-icon-link {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-icon-button,
.uk-tile-primary:not(.uk-preserve-color) .uk-icon-button,
.uk-tile-secondary:not(.uk-preserve-color) .uk-icon-button,
.uk-card-primary.uk-card-body .uk-icon-button,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-icon-button,
.uk-card-secondary.uk-card-body .uk-icon-button,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-icon-button,
.uk-overlay-primary .uk-icon-button,
.uk-offcanvas-bar .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-tile-primary:not(.uk-preserve-color) .uk-icon-button:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-icon-button:hover,
.uk-card-primary.uk-card-body .uk-icon-button:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-icon-button:hover,
.uk-card-secondary.uk-card-body .uk-icon-button:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-icon-button:hover,
.uk-overlay-primary .uk-icon-button:hover,
.uk-offcanvas-bar .uk-icon-button:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-icon-button:active,
.uk-tile-primary:not(.uk-preserve-color) .uk-icon-button:active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-icon-button:active,
.uk-card-primary.uk-card-body .uk-icon-button:active,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-icon-button:active,
.uk-card-secondary.uk-card-body .uk-icon-button:active,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-icon-button:active,
.uk-overlay-primary .uk-icon-button:active,
.uk-offcanvas-bar .uk-icon-button:active {
  background-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-input,
.uk-light .uk-select,
.uk-light .uk-textarea,
.uk-tile-primary:not(.uk-preserve-color) .uk-input,
.uk-tile-primary:not(.uk-preserve-color) .uk-select,
.uk-tile-primary:not(.uk-preserve-color) .uk-textarea,
.uk-tile-secondary:not(.uk-preserve-color) .uk-input,
.uk-tile-secondary:not(.uk-preserve-color) .uk-select,
.uk-tile-secondary:not(.uk-preserve-color) .uk-textarea,
.uk-card-primary.uk-card-body .uk-input,
.uk-card-primary.uk-card-body .uk-select,
.uk-card-primary.uk-card-body .uk-textarea,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-input,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-select,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-textarea,
.uk-card-secondary.uk-card-body .uk-input,
.uk-card-secondary.uk-card-body .uk-select,
.uk-card-secondary.uk-card-body .uk-textarea,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-input,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-select,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-textarea,
.uk-overlay-primary .uk-input,
.uk-overlay-primary .uk-select,
.uk-overlay-primary .uk-textarea,
.uk-offcanvas-bar .uk-input,
.uk-offcanvas-bar .uk-select,
.uk-offcanvas-bar .uk-textarea {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  background-clip: padding-box;
  border-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-input:focus,
.uk-light .uk-select:focus,
.uk-light .uk-textarea:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-input:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-select:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-textarea:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-input:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-select:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-textarea:focus,
.uk-card-primary.uk-card-body .uk-input:focus,
.uk-card-primary.uk-card-body .uk-select:focus,
.uk-card-primary.uk-card-body .uk-textarea:focus,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-input:focus,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-select:focus,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-textarea:focus,
.uk-card-secondary.uk-card-body .uk-input:focus,
.uk-card-secondary.uk-card-body .uk-select:focus,
.uk-card-secondary.uk-card-body .uk-textarea:focus,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-input:focus,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-select:focus,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-textarea:focus,
.uk-overlay-primary .uk-input:focus,
.uk-overlay-primary .uk-select:focus,
.uk-overlay-primary .uk-textarea:focus,
.uk-offcanvas-bar .uk-input:focus,
.uk-offcanvas-bar .uk-select:focus,
.uk-offcanvas-bar .uk-textarea:focus {
  background-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-input::placeholder,
.uk-tile-primary:not(.uk-preserve-color) .uk-input::placeholder,
.uk-tile-secondary:not(.uk-preserve-color) .uk-input::placeholder,
.uk-card-primary.uk-card-body .uk-input::placeholder,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-input::placeholder,
.uk-card-secondary.uk-card-body .uk-input::placeholder,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-input::placeholder,
.uk-overlay-primary .uk-input::placeholder,
.uk-offcanvas-bar .uk-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-textarea::placeholder,
.uk-tile-primary:not(.uk-preserve-color) .uk-textarea::placeholder,
.uk-tile-secondary:not(.uk-preserve-color) .uk-textarea::placeholder,
.uk-card-primary.uk-card-body .uk-textarea::placeholder,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-textarea::placeholder,
.uk-card-secondary.uk-card-body .uk-textarea::placeholder,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-textarea::placeholder,
.uk-overlay-primary .uk-textarea::placeholder,
.uk-offcanvas-bar .uk-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-select:not([multiple]):not([size]),
.uk-tile-primary:not(.uk-preserve-color) .uk-select:not([multiple]):not([size]),
.uk-tile-secondary:not(.uk-preserve-color) .uk-select:not([multiple]):not([size]),
.uk-card-primary.uk-card-body .uk-select:not([multiple]):not([size]),
.uk-card-primary > :not([class*="uk-card-media"]) .uk-select:not([multiple]):not([size]),
.uk-card-secondary.uk-card-body .uk-select:not([multiple]):not([size]),
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-select:not([multiple]):not([size]),
.uk-overlay-primary .uk-select:not([multiple]):not([size]),
.uk-offcanvas-bar .uk-select:not([multiple]):not([size]) {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.uk-light .uk-input[list]:hover,
.uk-light .uk-input[list]:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-input[list]:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-input[list]:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-input[list]:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-input[list]:focus,
.uk-card-primary.uk-card-body .uk-input[list]:hover,
.uk-card-primary.uk-card-body .uk-input[list]:focus,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-input[list]:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-input[list]:focus,
.uk-card-secondary.uk-card-body .uk-input[list]:hover,
.uk-card-secondary.uk-card-body .uk-input[list]:focus,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-input[list]:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-input[list]:focus,
.uk-overlay-primary .uk-input[list]:hover,
.uk-overlay-primary .uk-input[list]:focus,
.uk-offcanvas-bar .uk-input[list]:hover,
.uk-offcanvas-bar .uk-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%22rgba%28255,%20255,%20255,%200.7%29%22%20points%3D%2212%2012%208%206%2016%206%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.uk-light .uk-radio,
.uk-light .uk-checkbox,
.uk-tile-primary:not(.uk-preserve-color) .uk-radio,
.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox,
.uk-tile-secondary:not(.uk-preserve-color) .uk-radio,
.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox,
.uk-card-primary.uk-card-body .uk-radio,
.uk-card-primary.uk-card-body .uk-checkbox,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-radio,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-checkbox,
.uk-card-secondary.uk-card-body .uk-radio,
.uk-card-secondary.uk-card-body .uk-checkbox,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-radio,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-checkbox,
.uk-overlay-primary .uk-radio,
.uk-overlay-primary .uk-checkbox,
.uk-offcanvas-bar .uk-radio,
.uk-offcanvas-bar .uk-checkbox {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-radio:focus,
.uk-light .uk-checkbox:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-radio:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-radio:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:focus,
.uk-card-primary.uk-card-body .uk-radio:focus,
.uk-card-primary.uk-card-body .uk-checkbox:focus,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-radio:focus,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-checkbox:focus,
.uk-card-secondary.uk-card-body .uk-radio:focus,
.uk-card-secondary.uk-card-body .uk-checkbox:focus,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-radio:focus,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-checkbox:focus,
.uk-overlay-primary .uk-radio:focus,
.uk-overlay-primary .uk-checkbox:focus,
.uk-offcanvas-bar .uk-radio:focus,
.uk-offcanvas-bar .uk-checkbox:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-radio:checked,
.uk-light .uk-checkbox:checked,
.uk-light .uk-checkbox:indeterminate,
.uk-tile-primary:not(.uk-preserve-color) .uk-radio:checked,
.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:checked,
.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
.uk-tile-secondary:not(.uk-preserve-color) .uk-radio:checked,
.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:checked,
.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
.uk-card-primary.uk-card-body .uk-radio:checked,
.uk-card-primary.uk-card-body .uk-checkbox:checked,
.uk-card-primary.uk-card-body .uk-checkbox:indeterminate,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-radio:checked,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-checkbox:checked,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-checkbox:indeterminate,
.uk-card-secondary.uk-card-body .uk-radio:checked,
.uk-card-secondary.uk-card-body .uk-checkbox:checked,
.uk-card-secondary.uk-card-body .uk-checkbox:indeterminate,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-radio:checked,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-checkbox:checked,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-checkbox:indeterminate,
.uk-overlay-primary .uk-radio:checked,
.uk-overlay-primary .uk-checkbox:checked,
.uk-overlay-primary .uk-checkbox:indeterminate,
.uk-offcanvas-bar .uk-radio:checked,
.uk-offcanvas-bar .uk-checkbox:checked,
.uk-offcanvas-bar .uk-checkbox:indeterminate {
  background-color: #fff;
  border-color: #fff;
}
.uk-light .uk-radio:checked:focus,
.uk-light .uk-checkbox:checked:focus,
.uk-light .uk-checkbox:indeterminate:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-radio:checked:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:checked:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-radio:checked:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:checked:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate:focus,
.uk-card-primary.uk-card-body .uk-radio:checked:focus,
.uk-card-primary.uk-card-body .uk-checkbox:checked:focus,
.uk-card-primary.uk-card-body .uk-checkbox:indeterminate:focus,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-radio:checked:focus,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-checkbox:checked:focus,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-checkbox:indeterminate:focus,
.uk-card-secondary.uk-card-body .uk-radio:checked:focus,
.uk-card-secondary.uk-card-body .uk-checkbox:checked:focus,
.uk-card-secondary.uk-card-body .uk-checkbox:indeterminate:focus,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-radio:checked:focus,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-checkbox:checked:focus,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-checkbox:indeterminate:focus,
.uk-overlay-primary .uk-radio:checked:focus,
.uk-overlay-primary .uk-checkbox:checked:focus,
.uk-overlay-primary .uk-checkbox:indeterminate:focus,
.uk-offcanvas-bar .uk-radio:checked:focus,
.uk-offcanvas-bar .uk-checkbox:checked:focus,
.uk-offcanvas-bar .uk-checkbox:indeterminate:focus {
  background-color: #ffffff;
}
.uk-light .uk-radio:checked,
.uk-tile-primary:not(.uk-preserve-color) .uk-radio:checked,
.uk-tile-secondary:not(.uk-preserve-color) .uk-radio:checked,
.uk-card-primary.uk-card-body .uk-radio:checked,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-radio:checked,
.uk-card-secondary.uk-card-body .uk-radio:checked,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-radio:checked,
.uk-overlay-primary .uk-radio:checked,
.uk-offcanvas-bar .uk-radio:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23464646%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-tile-primary:not(.uk-preserve-color) .uk-checkbox:checked,
.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:checked,
.uk-card-primary.uk-card-body .uk-checkbox:checked,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-checkbox:checked,
.uk-card-secondary.uk-card-body .uk-checkbox:checked,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-checkbox:checked,
.uk-overlay-primary .uk-checkbox:checked,
.uk-offcanvas-bar .uk-checkbox:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23464646%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-tile-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
.uk-card-primary.uk-card-body .uk-checkbox:indeterminate,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-checkbox:indeterminate,
.uk-card-secondary.uk-card-body .uk-checkbox:indeterminate,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-checkbox:indeterminate,
.uk-overlay-primary .uk-checkbox:indeterminate,
.uk-offcanvas-bar .uk-checkbox:indeterminate {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23464646%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-tile-primary:not(.uk-preserve-color) .uk-form-label,
.uk-tile-secondary:not(.uk-preserve-color) .uk-form-label,
.uk-card-primary.uk-card-body .uk-form-label,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-form-label,
.uk-card-secondary.uk-card-body .uk-form-label,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-form-label,
.uk-overlay-primary .uk-form-label,
.uk-offcanvas-bar .uk-form-label {
  color: #fff;
}
.uk-light .uk-form-icon,
.uk-tile-primary:not(.uk-preserve-color) .uk-form-icon,
.uk-tile-secondary:not(.uk-preserve-color) .uk-form-icon,
.uk-card-primary.uk-card-body .uk-form-icon,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-form-icon,
.uk-card-secondary.uk-card-body .uk-form-icon,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-form-icon,
.uk-overlay-primary .uk-form-icon,
.uk-offcanvas-bar .uk-form-icon {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-form-icon:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-form-icon:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-form-icon:hover,
.uk-card-primary.uk-card-body .uk-form-icon:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-form-icon:hover,
.uk-card-secondary.uk-card-body .uk-form-icon:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-form-icon:hover,
.uk-overlay-primary .uk-form-icon:hover,
.uk-offcanvas-bar .uk-form-icon:hover {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-button-default,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-default,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default,
.uk-card-primary.uk-card-body .uk-button-default,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-button-default,
.uk-card-secondary.uk-card-body .uk-button-default,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-default,
.uk-overlay-primary .uk-button-default,
.uk-offcanvas-bar .uk-button-default {
  background-color: #fff;
  color: #464646;
}
.uk-light .uk-button-default:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-default:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default:hover,
.uk-card-primary.uk-card-body .uk-button-default:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-button-default:hover,
.uk-card-secondary.uk-card-body .uk-button-default:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-default:hover,
.uk-overlay-primary .uk-button-default:hover,
.uk-offcanvas-bar .uk-button-default:hover {
  background-color: #f2f2f2;
  color: #464646;
}
.uk-light .uk-button-default:active,
.uk-light .uk-button-default.uk-active,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-default:active,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-default.uk-active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default:active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default.uk-active,
.uk-card-primary.uk-card-body .uk-button-default:active,
.uk-card-primary.uk-card-body .uk-button-default.uk-active,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-button-default:active,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-button-default.uk-active,
.uk-card-secondary.uk-card-body .uk-button-default:active,
.uk-card-secondary.uk-card-body .uk-button-default.uk-active,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-default:active,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-default.uk-active,
.uk-overlay-primary .uk-button-default:active,
.uk-overlay-primary .uk-button-default.uk-active,
.uk-offcanvas-bar .uk-button-default:active,
.uk-offcanvas-bar .uk-button-default.uk-active {
  background-color: #e6e6e6;
  color: #464646;
}
.uk-light .uk-button-primary,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-primary,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary,
.uk-card-primary.uk-card-body .uk-button-primary,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-button-primary,
.uk-card-secondary.uk-card-body .uk-button-primary,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-primary,
.uk-overlay-primary .uk-button-primary,
.uk-offcanvas-bar .uk-button-primary {
  background-color: #fff;
  color: #464646;
}
.uk-light .uk-button-primary:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-primary:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary:hover,
.uk-card-primary.uk-card-body .uk-button-primary:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-button-primary:hover,
.uk-card-secondary.uk-card-body .uk-button-primary:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-primary:hover,
.uk-overlay-primary .uk-button-primary:hover,
.uk-offcanvas-bar .uk-button-primary:hover {
  background-color: #f2f2f2;
  color: #464646;
}
.uk-light .uk-button-primary:active,
.uk-light .uk-button-primary.uk-active,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-primary:active,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-primary.uk-active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary:active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary.uk-active,
.uk-card-primary.uk-card-body .uk-button-primary:active,
.uk-card-primary.uk-card-body .uk-button-primary.uk-active,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-button-primary:active,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-button-primary.uk-active,
.uk-card-secondary.uk-card-body .uk-button-primary:active,
.uk-card-secondary.uk-card-body .uk-button-primary.uk-active,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-primary:active,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-primary.uk-active,
.uk-overlay-primary .uk-button-primary:active,
.uk-overlay-primary .uk-button-primary.uk-active,
.uk-offcanvas-bar .uk-button-primary:active,
.uk-offcanvas-bar .uk-button-primary.uk-active {
  background-color: #e6e6e6;
  color: #464646;
}
.uk-light .uk-button-secondary,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary,
.uk-card-primary.uk-card-body .uk-button-secondary,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-button-secondary,
.uk-card-secondary.uk-card-body .uk-button-secondary,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-secondary,
.uk-overlay-primary .uk-button-secondary,
.uk-offcanvas-bar .uk-button-secondary {
  background-color: #fff;
  color: #464646;
}
.uk-light .uk-button-secondary:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary:hover,
.uk-card-primary.uk-card-body .uk-button-secondary:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-button-secondary:hover,
.uk-card-secondary.uk-card-body .uk-button-secondary:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-secondary:hover,
.uk-overlay-primary .uk-button-secondary:hover,
.uk-offcanvas-bar .uk-button-secondary:hover {
  background-color: #f2f2f2;
  color: #464646;
}
.uk-light .uk-button-secondary:active,
.uk-light .uk-button-secondary.uk-active,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary:active,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary.uk-active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary:active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary.uk-active,
.uk-card-primary.uk-card-body .uk-button-secondary:active,
.uk-card-primary.uk-card-body .uk-button-secondary.uk-active,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-button-secondary:active,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-button-secondary.uk-active,
.uk-card-secondary.uk-card-body .uk-button-secondary:active,
.uk-card-secondary.uk-card-body .uk-button-secondary.uk-active,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-secondary:active,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-secondary.uk-active,
.uk-overlay-primary .uk-button-secondary:active,
.uk-overlay-primary .uk-button-secondary.uk-active,
.uk-offcanvas-bar .uk-button-secondary:active,
.uk-offcanvas-bar .uk-button-secondary.uk-active {
  background-color: #e6e6e6;
  color: #464646;
}
.uk-light .uk-button-text,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-text,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-text,
.uk-card-primary.uk-card-body .uk-button-text,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-button-text,
.uk-card-secondary.uk-card-body .uk-button-text,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-text,
.uk-overlay-primary .uk-button-text,
.uk-offcanvas-bar .uk-button-text {
  color: #fff;
}
.uk-light .uk-button-text:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-text:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-text:hover,
.uk-card-primary.uk-card-body .uk-button-text:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-button-text:hover,
.uk-card-secondary.uk-card-body .uk-button-text:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-text:hover,
.uk-overlay-primary .uk-button-text:hover,
.uk-offcanvas-bar .uk-button-text:hover {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-button-text:disabled,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-text:disabled,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-text:disabled,
.uk-card-primary.uk-card-body .uk-button-text:disabled,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-button-text:disabled,
.uk-card-secondary.uk-card-body .uk-button-text:disabled,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-text:disabled,
.uk-overlay-primary .uk-button-text:disabled,
.uk-offcanvas-bar .uk-button-text:disabled {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-button-link,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-link,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-link,
.uk-card-primary.uk-card-body .uk-button-link,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-button-link,
.uk-card-secondary.uk-card-body .uk-button-link,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-link,
.uk-overlay-primary .uk-button-link,
.uk-offcanvas-bar .uk-button-link {
  color: #fff;
}
.uk-light .uk-button-link:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-link:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-link:hover,
.uk-card-primary.uk-card-body .uk-button-link:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-button-link:hover,
.uk-card-secondary.uk-card-body .uk-button-link:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-button-link:hover,
.uk-overlay-primary .uk-button-link:hover,
.uk-offcanvas-bar .uk-button-link:hover {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light.uk-card-badge,
.uk-tile-primary:not(.uk-preserve-color).uk-card-badge,
.uk-tile-secondary:not(.uk-preserve-color).uk-card-badge,
.uk-card-primary.uk-card-body.uk-card-badge,
.uk-card-primary > :not([class*="uk-card-media"]).uk-card-badge,
.uk-card-secondary.uk-card-body.uk-card-badge,
.uk-card-secondary > :not([class*="uk-card-media"]).uk-card-badge,
.uk-overlay-primary.uk-card-badge,
.uk-offcanvas-bar.uk-card-badge {
  background-color: #fff;
  color: #464646;
}
.uk-light .uk-close,
.uk-tile-primary:not(.uk-preserve-color) .uk-close,
.uk-tile-secondary:not(.uk-preserve-color) .uk-close,
.uk-card-primary.uk-card-body .uk-close,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-close,
.uk-card-secondary.uk-card-body .uk-close,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-close,
.uk-overlay-primary .uk-close,
.uk-offcanvas-bar .uk-close {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-close:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-close:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-close:hover,
.uk-card-primary.uk-card-body .uk-close:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-close:hover,
.uk-card-secondary.uk-card-body .uk-close:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-close:hover,
.uk-overlay-primary .uk-close:hover,
.uk-offcanvas-bar .uk-close:hover {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-totop,
.uk-tile-primary:not(.uk-preserve-color) .uk-totop,
.uk-tile-secondary:not(.uk-preserve-color) .uk-totop,
.uk-card-primary.uk-card-body .uk-totop,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-totop,
.uk-card-secondary.uk-card-body .uk-totop,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-totop,
.uk-overlay-primary .uk-totop,
.uk-offcanvas-bar .uk-totop {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-totop:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-totop:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-totop:hover,
.uk-card-primary.uk-card-body .uk-totop:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-totop:hover,
.uk-card-secondary.uk-card-body .uk-totop:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-totop:hover,
.uk-overlay-primary .uk-totop:hover,
.uk-offcanvas-bar .uk-totop:hover {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-totop:active,
.uk-tile-primary:not(.uk-preserve-color) .uk-totop:active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-totop:active,
.uk-card-primary.uk-card-body .uk-totop:active,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-totop:active,
.uk-card-secondary.uk-card-body .uk-totop:active,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-totop:active,
.uk-overlay-primary .uk-totop:active,
.uk-offcanvas-bar .uk-totop:active {
  color: #fff;
}
.uk-light .uk-marker,
.uk-tile-primary:not(.uk-preserve-color) .uk-marker,
.uk-tile-secondary:not(.uk-preserve-color) .uk-marker,
.uk-card-primary.uk-card-body .uk-marker,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-marker,
.uk-card-secondary.uk-card-body .uk-marker,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-marker,
.uk-overlay-primary .uk-marker,
.uk-offcanvas-bar .uk-marker {
  background: #d8d8d8;
  color: #464646;
}
.uk-light .uk-marker:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-marker:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-marker:hover,
.uk-card-primary.uk-card-body .uk-marker:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-marker:hover,
.uk-card-secondary.uk-card-body .uk-marker:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-marker:hover,
.uk-overlay-primary .uk-marker:hover,
.uk-offcanvas-bar .uk-marker:hover {
  color: #464646;
}
.uk-light .uk-badge,
.uk-tile-primary:not(.uk-preserve-color) .uk-badge,
.uk-tile-secondary:not(.uk-preserve-color) .uk-badge,
.uk-card-primary.uk-card-body .uk-badge,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-badge,
.uk-card-secondary.uk-card-body .uk-badge,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-badge,
.uk-overlay-primary .uk-badge,
.uk-offcanvas-bar .uk-badge {
  background-color: #fff;
  color: #464646 !important;
}
.uk-light .uk-label,
.uk-tile-primary:not(.uk-preserve-color) .uk-label,
.uk-tile-secondary:not(.uk-preserve-color) .uk-label,
.uk-card-primary.uk-card-body .uk-label,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-label,
.uk-card-secondary.uk-card-body .uk-label,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-label,
.uk-overlay-primary .uk-label,
.uk-offcanvas-bar .uk-label {
  background-color: #fff;
  color: #464646;
}
.uk-light .uk-article-meta,
.uk-tile-primary:not(.uk-preserve-color) .uk-article-meta,
.uk-tile-secondary:not(.uk-preserve-color) .uk-article-meta,
.uk-card-primary.uk-card-body .uk-article-meta,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-article-meta,
.uk-card-secondary.uk-card-body .uk-article-meta,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-article-meta,
.uk-overlay-primary .uk-article-meta,
.uk-offcanvas-bar .uk-article-meta {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-search-input,
.uk-tile-primary:not(.uk-preserve-color) .uk-search-input,
.uk-tile-secondary:not(.uk-preserve-color) .uk-search-input,
.uk-card-primary.uk-card-body .uk-search-input,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-search-input,
.uk-card-secondary.uk-card-body .uk-search-input,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-input,
.uk-overlay-primary .uk-search-input,
.uk-offcanvas-bar .uk-search-input {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-search-input::placeholder,
.uk-tile-primary:not(.uk-preserve-color) .uk-search-input::placeholder,
.uk-tile-secondary:not(.uk-preserve-color) .uk-search-input::placeholder,
.uk-card-primary.uk-card-body .uk-search-input::placeholder,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-search-input::placeholder,
.uk-card-secondary.uk-card-body .uk-search-input::placeholder,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-input::placeholder,
.uk-overlay-primary .uk-search-input::placeholder,
.uk-offcanvas-bar .uk-search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-search .uk-search-icon,
.uk-tile-primary:not(.uk-preserve-color) .uk-search .uk-search-icon,
.uk-tile-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon,
.uk-card-primary.uk-card-body .uk-search .uk-search-icon,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon,
.uk-card-secondary.uk-card-body .uk-search .uk-search-icon,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon,
.uk-overlay-primary .uk-search .uk-search-icon,
.uk-offcanvas-bar .uk-search .uk-search-icon {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-search .uk-search-icon:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,
.uk-card-primary.uk-card-body .uk-search .uk-search-icon:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon:hover,
.uk-card-secondary.uk-card-body .uk-search .uk-search-icon:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-search .uk-search-icon:hover,
.uk-overlay-primary .uk-search .uk-search-icon:hover,
.uk-offcanvas-bar .uk-search .uk-search-icon:hover {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-search-default .uk-search-input,
.uk-tile-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
.uk-tile-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input,
.uk-card-primary.uk-card-body .uk-search-default .uk-search-input,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input,
.uk-card-secondary.uk-card-body .uk-search-default .uk-search-input,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input,
.uk-overlay-primary .uk-search-default .uk-search-input,
.uk-offcanvas-bar .uk-search-default .uk-search-input {
  background-color: rgba(255, 255, 255, 0.1);
}
.uk-light .uk-search-default .uk-search-input:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,
.uk-card-primary.uk-card-body .uk-search-default .uk-search-input:focus,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input:focus,
.uk-card-secondary.uk-card-body .uk-search-default .uk-search-input:focus,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-default .uk-search-input:focus,
.uk-overlay-primary .uk-search-default .uk-search-input:focus,
.uk-offcanvas-bar .uk-search-default .uk-search-input:focus {
  background-color: rgba(255, 255, 255, 0.15);
}
.uk-light .uk-search-navbar .uk-search-input,
.uk-tile-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
.uk-tile-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,
.uk-card-primary.uk-card-body .uk-search-navbar .uk-search-input,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input,
.uk-card-secondary.uk-card-body .uk-search-navbar .uk-search-input,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input,
.uk-overlay-primary .uk-search-navbar .uk-search-input,
.uk-offcanvas-bar .uk-search-navbar .uk-search-input {
  background-color: rgba(255, 255, 255, 0.1);
}
.uk-light .uk-search-navbar .uk-search-input:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,
.uk-card-primary.uk-card-body .uk-search-navbar .uk-search-input:focus,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input:focus,
.uk-card-secondary.uk-card-body .uk-search-navbar .uk-search-input:focus,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-navbar .uk-search-input:focus,
.uk-overlay-primary .uk-search-navbar .uk-search-input:focus,
.uk-offcanvas-bar .uk-search-navbar .uk-search-input:focus {
  background-color: rgba(255, 255, 255, 0.15);
}
.uk-light .uk-search-medium .uk-search-input,
.uk-tile-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,
.uk-tile-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,
.uk-card-primary.uk-card-body .uk-search-medium .uk-search-input,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input,
.uk-card-secondary.uk-card-body .uk-search-medium .uk-search-input,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-medium .uk-search-input,
.uk-overlay-primary .uk-search-medium .uk-search-input,
.uk-offcanvas-bar .uk-search-medium .uk-search-input {
  background-color: transparent;
}
.uk-light .uk-search-large .uk-search-input,
.uk-tile-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
.uk-tile-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input,
.uk-card-primary.uk-card-body .uk-search-large .uk-search-input,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input,
.uk-card-secondary.uk-card-body .uk-search-large .uk-search-input,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-large .uk-search-input,
.uk-overlay-primary .uk-search-large .uk-search-input,
.uk-offcanvas-bar .uk-search-large .uk-search-input {
  background-color: transparent;
}
.uk-light .uk-search-toggle,
.uk-tile-primary:not(.uk-preserve-color) .uk-search-toggle,
.uk-tile-secondary:not(.uk-preserve-color) .uk-search-toggle,
.uk-card-primary.uk-card-body .uk-search-toggle,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-search-toggle,
.uk-card-secondary.uk-card-body .uk-search-toggle,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-toggle,
.uk-overlay-primary .uk-search-toggle,
.uk-offcanvas-bar .uk-search-toggle {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-search-toggle:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-search-toggle:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-search-toggle:hover,
.uk-card-primary.uk-card-body .uk-search-toggle:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-search-toggle:hover,
.uk-card-secondary.uk-card-body .uk-search-toggle:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-search-toggle:hover,
.uk-overlay-primary .uk-search-toggle:hover,
.uk-offcanvas-bar .uk-search-toggle:hover {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-accordion-title,
.uk-tile-primary:not(.uk-preserve-color) .uk-accordion-title,
.uk-tile-secondary:not(.uk-preserve-color) .uk-accordion-title,
.uk-card-primary.uk-card-body .uk-accordion-title,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-accordion-title,
.uk-card-secondary.uk-card-body .uk-accordion-title,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-accordion-title,
.uk-overlay-primary .uk-accordion-title,
.uk-offcanvas-bar .uk-accordion-title {
  color: #fff;
}
.uk-light .uk-accordion-title:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-accordion-title:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-accordion-title:hover,
.uk-card-primary.uk-card-body .uk-accordion-title:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-accordion-title:hover,
.uk-card-secondary.uk-card-body .uk-accordion-title:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-accordion-title:hover,
.uk-overlay-primary .uk-accordion-title:hover,
.uk-offcanvas-bar .uk-accordion-title:hover {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-iconnav > * > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-iconnav > * > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-iconnav > * > a,
.uk-card-primary.uk-card-body .uk-iconnav > * > a,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-iconnav > * > a,
.uk-card-secondary.uk-card-body .uk-iconnav > * > a,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-iconnav > * > a,
.uk-overlay-primary .uk-iconnav > * > a,
.uk-offcanvas-bar .uk-iconnav > * > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-iconnav > * > a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-iconnav > * > a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-iconnav > * > a:hover,
.uk-card-primary.uk-card-body .uk-iconnav > * > a:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-iconnav > * > a:hover,
.uk-card-secondary.uk-card-body .uk-iconnav > * > a:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-iconnav > * > a:hover,
.uk-overlay-primary .uk-iconnav > * > a:hover,
.uk-offcanvas-bar .uk-iconnav > * > a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-iconnav > .uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-iconnav > .uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-iconnav > .uk-active > a,
.uk-card-primary.uk-card-body .uk-iconnav > .uk-active > a,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-iconnav > .uk-active > a,
.uk-card-secondary.uk-card-body .uk-iconnav > .uk-active > a,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-iconnav > .uk-active > a,
.uk-overlay-primary .uk-iconnav > .uk-active > a,
.uk-offcanvas-bar .uk-iconnav > .uk-active > a {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-grid-divider > :not(.uk-first-column)::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-grid-divider > :not(.uk-first-column)::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-grid-divider > :not(.uk-first-column)::before,
.uk-card-primary.uk-card-body .uk-grid-divider > :not(.uk-first-column)::before,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-grid-divider > :not(.uk-first-column)::before,
.uk-card-secondary.uk-card-body .uk-grid-divider > :not(.uk-first-column)::before,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-grid-divider > :not(.uk-first-column)::before,
.uk-overlay-primary .uk-grid-divider > :not(.uk-first-column)::before,
.uk-offcanvas-bar .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-tile-primary:not(.uk-preserve-color) .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
.uk-card-primary.uk-card-body .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
.uk-card-secondary.uk-card-body .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
.uk-overlay-primary .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before,
.uk-offcanvas-bar .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-nav-default > li > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default > li > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default > li > a,
.uk-card-primary.uk-card-body .uk-nav-default > li > a,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-default > li > a,
.uk-card-secondary.uk-card-body .uk-nav-default > li > a,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-default > li > a,
.uk-overlay-primary .uk-nav-default > li > a,
.uk-offcanvas-bar .uk-nav-default > li > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-nav-default > li > a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default > li > a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default > li > a:hover,
.uk-card-primary.uk-card-body .uk-nav-default > li > a:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-default > li > a:hover,
.uk-card-secondary.uk-card-body .uk-nav-default > li > a:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-default > li > a:hover,
.uk-overlay-primary .uk-nav-default > li > a:hover,
.uk-offcanvas-bar .uk-nav-default > li > a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-nav-default > li.uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default > li.uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default > li.uk-active > a,
.uk-card-primary.uk-card-body .uk-nav-default > li.uk-active > a,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-default > li.uk-active > a,
.uk-card-secondary.uk-card-body .uk-nav-default > li.uk-active > a,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-default > li.uk-active > a,
.uk-overlay-primary .uk-nav-default > li.uk-active > a,
.uk-offcanvas-bar .uk-nav-default > li.uk-active > a {
  color: #fff;
}
.uk-light .uk-nav-default .uk-nav-header,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-header,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-header,
.uk-card-primary.uk-card-body .uk-nav-default .uk-nav-header,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-default .uk-nav-header,
.uk-card-secondary.uk-card-body .uk-nav-default .uk-nav-header,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-default .uk-nav-header,
.uk-overlay-primary .uk-nav-default .uk-nav-header,
.uk-offcanvas-bar .uk-nav-default .uk-nav-header {
  color: #fff;
}
.uk-light .uk-nav-default .uk-nav-divider,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-divider,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-divider,
.uk-card-primary.uk-card-body .uk-nav-default .uk-nav-divider,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-default .uk-nav-divider,
.uk-card-secondary.uk-card-body .uk-nav-default .uk-nav-divider,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-default .uk-nav-divider,
.uk-overlay-primary .uk-nav-default .uk-nav-divider,
.uk-offcanvas-bar .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-tile-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a,
.uk-card-primary.uk-card-body .uk-nav-default .uk-nav-sub a,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-default .uk-nav-sub a,
.uk-card-secondary.uk-card-body .uk-nav-default .uk-nav-sub a,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-default .uk-nav-sub a,
.uk-overlay-primary .uk-nav-default .uk-nav-sub a,
.uk-offcanvas-bar .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-tile-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a:hover,
.uk-card-primary.uk-card-body .uk-nav-default .uk-nav-sub a:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-default .uk-nav-sub a:hover,
.uk-card-secondary.uk-card-body .uk-nav-default .uk-nav-sub a:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-default .uk-nav-sub a:hover,
.uk-overlay-primary .uk-nav-default .uk-nav-sub a:hover,
.uk-offcanvas-bar .uk-nav-default .uk-nav-sub a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-nav-default .uk-nav-sub li.uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub li.uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub li.uk-active > a,
.uk-card-primary.uk-card-body .uk-nav-default .uk-nav-sub li.uk-active > a,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-default .uk-nav-sub li.uk-active > a,
.uk-card-secondary.uk-card-body .uk-nav-default .uk-nav-sub li.uk-active > a,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-default .uk-nav-sub li.uk-active > a,
.uk-overlay-primary .uk-nav-default .uk-nav-sub li.uk-active > a,
.uk-offcanvas-bar .uk-nav-default .uk-nav-sub li.uk-active > a {
  color: #fff;
}
.uk-light .uk-nav-primary > li > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary > li > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary > li > a,
.uk-card-primary.uk-card-body .uk-nav-primary > li > a,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-primary > li > a,
.uk-card-secondary.uk-card-body .uk-nav-primary > li > a,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-primary > li > a,
.uk-overlay-primary .uk-nav-primary > li > a,
.uk-offcanvas-bar .uk-nav-primary > li > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-nav-primary > li > a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary > li > a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary > li > a:hover,
.uk-card-primary.uk-card-body .uk-nav-primary > li > a:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-primary > li > a:hover,
.uk-card-secondary.uk-card-body .uk-nav-primary > li > a:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-primary > li > a:hover,
.uk-overlay-primary .uk-nav-primary > li > a:hover,
.uk-offcanvas-bar .uk-nav-primary > li > a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-nav-primary > li.uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary > li.uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary > li.uk-active > a,
.uk-card-primary.uk-card-body .uk-nav-primary > li.uk-active > a,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-primary > li.uk-active > a,
.uk-card-secondary.uk-card-body .uk-nav-primary > li.uk-active > a,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-primary > li.uk-active > a,
.uk-overlay-primary .uk-nav-primary > li.uk-active > a,
.uk-offcanvas-bar .uk-nav-primary > li.uk-active > a {
  color: #fff;
}
.uk-light .uk-nav-primary .uk-nav-header,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-header,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-header,
.uk-card-primary.uk-card-body .uk-nav-primary .uk-nav-header,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-primary .uk-nav-header,
.uk-card-secondary.uk-card-body .uk-nav-primary .uk-nav-header,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-primary .uk-nav-header,
.uk-overlay-primary .uk-nav-primary .uk-nav-header,
.uk-offcanvas-bar .uk-nav-primary .uk-nav-header {
  color: #fff;
}
.uk-light .uk-nav-primary .uk-nav-divider,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-divider,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-divider,
.uk-card-primary.uk-card-body .uk-nav-primary .uk-nav-divider,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-primary .uk-nav-divider,
.uk-card-secondary.uk-card-body .uk-nav-primary .uk-nav-divider,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-primary .uk-nav-divider,
.uk-overlay-primary .uk-nav-primary .uk-nav-divider,
.uk-offcanvas-bar .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-tile-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a,
.uk-card-primary.uk-card-body .uk-nav-primary .uk-nav-sub a,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-primary .uk-nav-sub a,
.uk-card-secondary.uk-card-body .uk-nav-primary .uk-nav-sub a,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-primary .uk-nav-sub a,
.uk-overlay-primary .uk-nav-primary .uk-nav-sub a,
.uk-offcanvas-bar .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-tile-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a:hover,
.uk-card-primary.uk-card-body .uk-nav-primary .uk-nav-sub a:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-primary .uk-nav-sub a:hover,
.uk-card-secondary.uk-card-body .uk-nav-primary .uk-nav-sub a:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-primary .uk-nav-sub a:hover,
.uk-overlay-primary .uk-nav-primary .uk-nav-sub a:hover,
.uk-offcanvas-bar .uk-nav-primary .uk-nav-sub a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-nav-primary .uk-nav-sub li.uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub li.uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub li.uk-active > a,
.uk-card-primary.uk-card-body .uk-nav-primary .uk-nav-sub li.uk-active > a,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-primary .uk-nav-sub li.uk-active > a,
.uk-card-secondary.uk-card-body .uk-nav-primary .uk-nav-sub li.uk-active > a,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-primary .uk-nav-sub li.uk-active > a,
.uk-overlay-primary .uk-nav-primary .uk-nav-sub li.uk-active > a,
.uk-offcanvas-bar .uk-nav-primary .uk-nav-sub li.uk-active > a {
  color: #fff;
}
.uk-light .uk-nav-secondary > li > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a,
.uk-card-primary.uk-card-body .uk-nav-secondary > li > a,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-secondary > li > a,
.uk-card-secondary.uk-card-body .uk-nav-secondary > li > a,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-secondary > li > a,
.uk-overlay-primary .uk-nav-secondary > li > a,
.uk-offcanvas-bar .uk-nav-secondary > li > a {
  color: #fff;
}
.uk-light .uk-nav-secondary > li > a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover,
.uk-card-primary.uk-card-body .uk-nav-secondary > li > a:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-secondary > li > a:hover,
.uk-card-secondary.uk-card-body .uk-nav-secondary > li > a:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-secondary > li > a:hover,
.uk-overlay-primary .uk-nav-secondary > li > a:hover,
.uk-offcanvas-bar .uk-nav-secondary > li > a:hover {
  color: #fff;
}
.uk-light .uk-nav-secondary > li.uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a,
.uk-card-primary.uk-card-body .uk-nav-secondary > li.uk-active > a,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-secondary > li.uk-active > a,
.uk-card-secondary.uk-card-body .uk-nav-secondary > li.uk-active > a,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-secondary > li.uk-active > a,
.uk-overlay-primary .uk-nav-secondary > li.uk-active > a,
.uk-offcanvas-bar .uk-nav-secondary > li.uk-active > a {
  color: #fff;
}
.uk-light .uk-nav-secondary .uk-nav-subtitle,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-subtitle,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-subtitle,
.uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-subtitle,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-secondary .uk-nav-subtitle,
.uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-subtitle,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-secondary .uk-nav-subtitle,
.uk-overlay-primary .uk-nav-secondary .uk-nav-subtitle,
.uk-offcanvas-bar .uk-nav-secondary .uk-nav-subtitle {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
.uk-card-primary.uk-card-body .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
.uk-card-secondary.uk-card-body .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
.uk-overlay-primary .uk-nav-secondary > li > a:hover .uk-nav-subtitle,
.uk-offcanvas-bar .uk-nav-secondary > li > a:hover .uk-nav-subtitle {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
.uk-card-primary.uk-card-body .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
.uk-card-secondary.uk-card-body .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
.uk-overlay-primary .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle,
.uk-offcanvas-bar .uk-nav-secondary > li.uk-active > a .uk-nav-subtitle {
  color: #fff;
}
.uk-light .uk-nav-secondary .uk-nav-header,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-header,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-header,
.uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-header,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-secondary .uk-nav-header,
.uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-header,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-secondary .uk-nav-header,
.uk-overlay-primary .uk-nav-secondary .uk-nav-header,
.uk-offcanvas-bar .uk-nav-secondary .uk-nav-header {
  color: #fff;
}
.uk-light .uk-nav-secondary .uk-nav-divider,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-divider,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-divider,
.uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-divider,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-secondary .uk-nav-divider,
.uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-divider,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-secondary .uk-nav-divider,
.uk-overlay-primary .uk-nav-secondary .uk-nav-divider,
.uk-offcanvas-bar .uk-nav-secondary .uk-nav-divider {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-nav-secondary .uk-nav-sub a,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a,
.uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-sub a,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-secondary .uk-nav-sub a,
.uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-sub a,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-secondary .uk-nav-sub a,
.uk-overlay-primary .uk-nav-secondary .uk-nav-sub a,
.uk-offcanvas-bar .uk-nav-secondary .uk-nav-sub a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-nav-secondary .uk-nav-sub a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a:hover,
.uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-sub a:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-secondary .uk-nav-sub a:hover,
.uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-sub a:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-secondary .uk-nav-sub a:hover,
.uk-overlay-primary .uk-nav-secondary .uk-nav-sub a:hover,
.uk-offcanvas-bar .uk-nav-secondary .uk-nav-sub a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-nav-secondary .uk-nav-sub li.uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
.uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-sub li.uk-active > a,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
.uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-sub li.uk-active > a,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav-secondary .uk-nav-sub li.uk-active > a,
.uk-overlay-primary .uk-nav-secondary .uk-nav-sub li.uk-active > a,
.uk-offcanvas-bar .uk-nav-secondary .uk-nav-sub li.uk-active > a {
  color: #fff;
}
.uk-light .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider),
.uk-tile-primary:not(.uk-preserve-color) .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider),
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider),
.uk-card-primary.uk-card-body .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider),
.uk-card-primary > :not([class*="uk-card-media"]) .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider),
.uk-card-secondary.uk-card-body .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider),
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider),
.uk-overlay-primary .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider),
.uk-offcanvas-bar .uk-nav.uk-nav-divider > :not(.uk-nav-divider) + :not(.uk-nav-header, .uk-nav-divider) {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-navbar-nav > li > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a,
.uk-card-primary.uk-card-body .uk-navbar-nav > li > a,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-navbar-nav > li > a,
.uk-card-secondary.uk-card-body .uk-navbar-nav > li > a,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-navbar-nav > li > a,
.uk-overlay-primary .uk-navbar-nav > li > a,
.uk-offcanvas-bar .uk-navbar-nav > li > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-navbar-nav > li:hover > a,
.uk-light .uk-navbar-nav > li > a[aria-expanded="true"],
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li:hover > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a[aria-expanded="true"],
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li:hover > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a[aria-expanded="true"],
.uk-card-primary.uk-card-body .uk-navbar-nav > li:hover > a,
.uk-card-primary.uk-card-body .uk-navbar-nav > li > a[aria-expanded="true"],
.uk-card-primary > :not([class*="uk-card-media"]) .uk-navbar-nav > li:hover > a,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-navbar-nav > li > a[aria-expanded="true"],
.uk-card-secondary.uk-card-body .uk-navbar-nav > li:hover > a,
.uk-card-secondary.uk-card-body .uk-navbar-nav > li > a[aria-expanded="true"],
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-navbar-nav > li:hover > a,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-navbar-nav > li > a[aria-expanded="true"],
.uk-overlay-primary .uk-navbar-nav > li:hover > a,
.uk-overlay-primary .uk-navbar-nav > li > a[aria-expanded="true"],
.uk-offcanvas-bar .uk-navbar-nav > li:hover > a,
.uk-offcanvas-bar .uk-navbar-nav > li > a[aria-expanded="true"] {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-navbar-nav > li > a:active,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a:active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a:active,
.uk-card-primary.uk-card-body .uk-navbar-nav > li > a:active,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-navbar-nav > li > a:active,
.uk-card-secondary.uk-card-body .uk-navbar-nav > li > a:active,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-navbar-nav > li > a:active,
.uk-overlay-primary .uk-navbar-nav > li > a:active,
.uk-offcanvas-bar .uk-navbar-nav > li > a:active {
  color: #fff;
}
.uk-light .uk-navbar-nav > li.uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li.uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li.uk-active > a,
.uk-card-primary.uk-card-body .uk-navbar-nav > li.uk-active > a,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-navbar-nav > li.uk-active > a,
.uk-card-secondary.uk-card-body .uk-navbar-nav > li.uk-active > a,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-navbar-nav > li.uk-active > a,
.uk-overlay-primary .uk-navbar-nav > li.uk-active > a,
.uk-offcanvas-bar .uk-navbar-nav > li.uk-active > a {
  color: #fff;
}
.uk-light .uk-navbar-item,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-item,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-item,
.uk-card-primary.uk-card-body .uk-navbar-item,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-navbar-item,
.uk-card-secondary.uk-card-body .uk-navbar-item,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-navbar-item,
.uk-overlay-primary .uk-navbar-item,
.uk-offcanvas-bar .uk-navbar-item {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-navbar-toggle,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-toggle,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-toggle,
.uk-card-primary.uk-card-body .uk-navbar-toggle,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-navbar-toggle,
.uk-card-secondary.uk-card-body .uk-navbar-toggle,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-navbar-toggle,
.uk-overlay-primary .uk-navbar-toggle,
.uk-offcanvas-bar .uk-navbar-toggle {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-navbar-toggle:hover,
.uk-light .uk-navbar-toggle[aria-expanded="true"],
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-toggle:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-toggle[aria-expanded="true"],
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-toggle:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-toggle[aria-expanded="true"],
.uk-card-primary.uk-card-body .uk-navbar-toggle:hover,
.uk-card-primary.uk-card-body .uk-navbar-toggle[aria-expanded="true"],
.uk-card-primary > :not([class*="uk-card-media"]) .uk-navbar-toggle:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-navbar-toggle[aria-expanded="true"],
.uk-card-secondary.uk-card-body .uk-navbar-toggle:hover,
.uk-card-secondary.uk-card-body .uk-navbar-toggle[aria-expanded="true"],
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-navbar-toggle:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-navbar-toggle[aria-expanded="true"],
.uk-overlay-primary .uk-navbar-toggle:hover,
.uk-overlay-primary .uk-navbar-toggle[aria-expanded="true"],
.uk-offcanvas-bar .uk-navbar-toggle:hover,
.uk-offcanvas-bar .uk-navbar-toggle[aria-expanded="true"] {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-subnav > * > :first-child,
.uk-tile-primary:not(.uk-preserve-color) .uk-subnav > * > :first-child,
.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav > * > :first-child,
.uk-card-primary.uk-card-body .uk-subnav > * > :first-child,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-subnav > * > :first-child,
.uk-card-secondary.uk-card-body .uk-subnav > * > :first-child,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-subnav > * > :first-child,
.uk-overlay-primary .uk-subnav > * > :first-child,
.uk-offcanvas-bar .uk-subnav > * > :first-child {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-subnav > * > a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-subnav > * > a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav > * > a:hover,
.uk-card-primary.uk-card-body .uk-subnav > * > a:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-subnav > * > a:hover,
.uk-card-secondary.uk-card-body .uk-subnav > * > a:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-subnav > * > a:hover,
.uk-overlay-primary .uk-subnav > * > a:hover,
.uk-offcanvas-bar .uk-subnav > * > a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-subnav > .uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-subnav > .uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav > .uk-active > a,
.uk-card-primary.uk-card-body .uk-subnav > .uk-active > a,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-subnav > .uk-active > a,
.uk-card-secondary.uk-card-body .uk-subnav > .uk-active > a,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-subnav > .uk-active > a,
.uk-overlay-primary .uk-subnav > .uk-active > a,
.uk-offcanvas-bar .uk-subnav > .uk-active > a {
  color: #fff;
}
.uk-light .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before,
.uk-card-primary.uk-card-body .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before,
.uk-card-secondary.uk-card-body .uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before,
.uk-card-secondary > :not([class*="uk-card-media"]) .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,
.uk-offcanvas-bar .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-tile-primary:not(.uk-preserve-color) .uk-subnav-pill > * > :first-child,
.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav-pill > * > :first-child,
.uk-card-primary.uk-card-body .uk-subnav-pill > * > :first-child,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-subnav-pill > * > :first-child,
.uk-card-secondary.uk-card-body .uk-subnav-pill > * > :first-child,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-subnav-pill > * > :first-child,
.uk-overlay-primary .uk-subnav-pill > * > :first-child,
.uk-offcanvas-bar .uk-subnav-pill > * > :first-child {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-subnav-pill > * > a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-subnav-pill > * > a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav-pill > * > a:hover,
.uk-card-primary.uk-card-body .uk-subnav-pill > * > a:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-subnav-pill > * > a:hover,
.uk-card-secondary.uk-card-body .uk-subnav-pill > * > a:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-subnav-pill > * > a:hover,
.uk-overlay-primary .uk-subnav-pill > * > a:hover,
.uk-offcanvas-bar .uk-subnav-pill > * > a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-subnav-pill > * > a:active,
.uk-tile-primary:not(.uk-preserve-color) .uk-subnav-pill > * > a:active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav-pill > * > a:active,
.uk-card-primary.uk-card-body .uk-subnav-pill > * > a:active,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-subnav-pill > * > a:active,
.uk-card-secondary.uk-card-body .uk-subnav-pill > * > a:active,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-subnav-pill > * > a:active,
.uk-overlay-primary .uk-subnav-pill > * > a:active,
.uk-offcanvas-bar .uk-subnav-pill > * > a:active {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-subnav-pill > .uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-subnav-pill > .uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav-pill > .uk-active > a,
.uk-card-primary.uk-card-body .uk-subnav-pill > .uk-active > a,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-subnav-pill > .uk-active > a,
.uk-card-secondary.uk-card-body .uk-subnav-pill > .uk-active > a,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-subnav-pill > .uk-active > a,
.uk-overlay-primary .uk-subnav-pill > .uk-active > a,
.uk-offcanvas-bar .uk-subnav-pill > .uk-active > a {
  background-color: #fff;
  color: #464646;
}
.uk-light .uk-subnav > .uk-disabled > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-subnav > .uk-disabled > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav > .uk-disabled > a,
.uk-card-primary.uk-card-body .uk-subnav > .uk-disabled > a,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-subnav > .uk-disabled > a,
.uk-card-secondary.uk-card-body .uk-subnav > .uk-disabled > a,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-subnav > .uk-disabled > a,
.uk-overlay-primary .uk-subnav > .uk-disabled > a,
.uk-offcanvas-bar .uk-subnav > .uk-disabled > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-breadcrumb > * > *,
.uk-tile-primary:not(.uk-preserve-color) .uk-breadcrumb > * > *,
.uk-tile-secondary:not(.uk-preserve-color) .uk-breadcrumb > * > *,
.uk-card-primary.uk-card-body .uk-breadcrumb > * > *,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-breadcrumb > * > *,
.uk-card-secondary.uk-card-body .uk-breadcrumb > * > *,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-breadcrumb > * > *,
.uk-overlay-primary .uk-breadcrumb > * > *,
.uk-offcanvas-bar .uk-breadcrumb > * > * {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-breadcrumb > * > :hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-breadcrumb > * > :hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-breadcrumb > * > :hover,
.uk-card-primary.uk-card-body .uk-breadcrumb > * > :hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-breadcrumb > * > :hover,
.uk-card-secondary.uk-card-body .uk-breadcrumb > * > :hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-breadcrumb > * > :hover,
.uk-overlay-primary .uk-breadcrumb > * > :hover,
.uk-offcanvas-bar .uk-breadcrumb > * > :hover {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-breadcrumb > :last-child > *,
.uk-tile-primary:not(.uk-preserve-color) .uk-breadcrumb > :last-child > *,
.uk-tile-secondary:not(.uk-preserve-color) .uk-breadcrumb > :last-child > *,
.uk-card-primary.uk-card-body .uk-breadcrumb > :last-child > *,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-breadcrumb > :last-child > *,
.uk-card-secondary.uk-card-body .uk-breadcrumb > :last-child > *,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-breadcrumb > :last-child > *,
.uk-overlay-primary .uk-breadcrumb > :last-child > *,
.uk-offcanvas-bar .uk-breadcrumb > :last-child > * {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before,
.uk-card-primary.uk-card-body .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before,
.uk-card-secondary.uk-card-body .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before,
.uk-card-secondary > :not([class*="uk-card-media"]) .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,
.uk-offcanvas-bar .uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-pagination > * > *,
.uk-tile-primary:not(.uk-preserve-color) .uk-pagination > * > *,
.uk-tile-secondary:not(.uk-preserve-color) .uk-pagination > * > *,
.uk-card-primary.uk-card-body .uk-pagination > * > *,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-pagination > * > *,
.uk-card-secondary.uk-card-body .uk-pagination > * > *,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-pagination > * > *,
.uk-overlay-primary .uk-pagination > * > *,
.uk-offcanvas-bar .uk-pagination > * > * {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-pagination > * > :hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-pagination > * > :hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-pagination > * > :hover,
.uk-card-primary.uk-card-body .uk-pagination > * > :hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-pagination > * > :hover,
.uk-card-secondary.uk-card-body .uk-pagination > * > :hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-pagination > * > :hover,
.uk-overlay-primary .uk-pagination > * > :hover,
.uk-offcanvas-bar .uk-pagination > * > :hover {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-pagination > .uk-active > *,
.uk-tile-primary:not(.uk-preserve-color) .uk-pagination > .uk-active > *,
.uk-tile-secondary:not(.uk-preserve-color) .uk-pagination > .uk-active > *,
.uk-card-primary.uk-card-body .uk-pagination > .uk-active > *,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-pagination > .uk-active > *,
.uk-card-secondary.uk-card-body .uk-pagination > .uk-active > *,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-pagination > .uk-active > *,
.uk-overlay-primary .uk-pagination > .uk-active > *,
.uk-offcanvas-bar .uk-pagination > .uk-active > * {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-pagination > .uk-disabled > *,
.uk-tile-primary:not(.uk-preserve-color) .uk-pagination > .uk-disabled > *,
.uk-tile-secondary:not(.uk-preserve-color) .uk-pagination > .uk-disabled > *,
.uk-card-primary.uk-card-body .uk-pagination > .uk-disabled > *,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-pagination > .uk-disabled > *,
.uk-card-secondary.uk-card-body .uk-pagination > .uk-disabled > *,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-pagination > .uk-disabled > *,
.uk-overlay-primary .uk-pagination > .uk-disabled > *,
.uk-offcanvas-bar .uk-pagination > .uk-disabled > * {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-tab > * > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-tab > * > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-tab > * > a,
.uk-card-primary.uk-card-body .uk-tab > * > a,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-tab > * > a,
.uk-card-secondary.uk-card-body .uk-tab > * > a,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-tab > * > a,
.uk-overlay-primary .uk-tab > * > a,
.uk-offcanvas-bar .uk-tab > * > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-tab > * > a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-tab > * > a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-tab > * > a:hover,
.uk-card-primary.uk-card-body .uk-tab > * > a:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-tab > * > a:hover,
.uk-card-secondary.uk-card-body .uk-tab > * > a:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-tab > * > a:hover,
.uk-overlay-primary .uk-tab > * > a:hover,
.uk-offcanvas-bar .uk-tab > * > a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-tab > .uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-tab > .uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-tab > .uk-active > a,
.uk-card-primary.uk-card-body .uk-tab > .uk-active > a,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-tab > .uk-active > a,
.uk-card-secondary.uk-card-body .uk-tab > .uk-active > a,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-tab > .uk-active > a,
.uk-overlay-primary .uk-tab > .uk-active > a,
.uk-offcanvas-bar .uk-tab > .uk-active > a {
  color: #fff;
}
.uk-light .uk-tab > .uk-disabled > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-tab > .uk-disabled > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-tab > .uk-disabled > a,
.uk-card-primary.uk-card-body .uk-tab > .uk-disabled > a,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-tab > .uk-disabled > a,
.uk-card-secondary.uk-card-body .uk-tab > .uk-disabled > a,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-tab > .uk-disabled > a,
.uk-overlay-primary .uk-tab > .uk-disabled > a,
.uk-offcanvas-bar .uk-tab > .uk-disabled > a {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-slidenav,
.uk-tile-primary:not(.uk-preserve-color) .uk-slidenav,
.uk-tile-secondary:not(.uk-preserve-color) .uk-slidenav,
.uk-card-primary.uk-card-body .uk-slidenav,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-slidenav,
.uk-card-secondary.uk-card-body .uk-slidenav,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-slidenav,
.uk-overlay-primary .uk-slidenav,
.uk-offcanvas-bar .uk-slidenav {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-slidenav:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-slidenav:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-slidenav:hover,
.uk-card-primary.uk-card-body .uk-slidenav:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-slidenav:hover,
.uk-card-secondary.uk-card-body .uk-slidenav:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-slidenav:hover,
.uk-overlay-primary .uk-slidenav:hover,
.uk-offcanvas-bar .uk-slidenav:hover {
  color: rgba(255, 255, 255, 0.95);
}
.uk-light .uk-slidenav:active,
.uk-tile-primary:not(.uk-preserve-color) .uk-slidenav:active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-slidenav:active,
.uk-card-primary.uk-card-body .uk-slidenav:active,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-slidenav:active,
.uk-card-secondary.uk-card-body .uk-slidenav:active,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-slidenav:active,
.uk-overlay-primary .uk-slidenav:active,
.uk-offcanvas-bar .uk-slidenav:active {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-dotnav > * > *,
.uk-tile-primary:not(.uk-preserve-color) .uk-dotnav > * > *,
.uk-tile-secondary:not(.uk-preserve-color) .uk-dotnav > * > *,
.uk-card-primary.uk-card-body .uk-dotnav > * > *,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-dotnav > * > *,
.uk-card-secondary.uk-card-body .uk-dotnav > * > *,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-dotnav > * > *,
.uk-overlay-primary .uk-dotnav > * > *,
.uk-offcanvas-bar .uk-dotnav > * > * {
  background-color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-dotnav > * > :hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-dotnav > * > :hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-dotnav > * > :hover,
.uk-card-primary.uk-card-body .uk-dotnav > * > :hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-dotnav > * > :hover,
.uk-card-secondary.uk-card-body .uk-dotnav > * > :hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-dotnav > * > :hover,
.uk-overlay-primary .uk-dotnav > * > :hover,
.uk-offcanvas-bar .uk-dotnav > * > :hover {
  background-color: rgba(255, 255, 255, 0.9);
}
.uk-light .uk-dotnav > * > :active,
.uk-tile-primary:not(.uk-preserve-color) .uk-dotnav > * > :active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-dotnav > * > :active,
.uk-card-primary.uk-card-body .uk-dotnav > * > :active,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-dotnav > * > :active,
.uk-card-secondary.uk-card-body .uk-dotnav > * > :active,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-dotnav > * > :active,
.uk-overlay-primary .uk-dotnav > * > :active,
.uk-offcanvas-bar .uk-dotnav > * > :active {
  background-color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-dotnav > .uk-active > *,
.uk-tile-primary:not(.uk-preserve-color) .uk-dotnav > .uk-active > *,
.uk-tile-secondary:not(.uk-preserve-color) .uk-dotnav > .uk-active > *,
.uk-card-primary.uk-card-body .uk-dotnav > .uk-active > *,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-dotnav > .uk-active > *,
.uk-card-secondary.uk-card-body .uk-dotnav > .uk-active > *,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-dotnav > .uk-active > *,
.uk-overlay-primary .uk-dotnav > .uk-active > *,
.uk-offcanvas-bar .uk-dotnav > .uk-active > * {
  background-color: rgba(255, 255, 255, 0.9);
}
.uk-light .uk-text-lead,
.uk-tile-primary:not(.uk-preserve-color) .uk-text-lead,
.uk-tile-secondary:not(.uk-preserve-color) .uk-text-lead,
.uk-card-primary.uk-card-body .uk-text-lead,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-text-lead,
.uk-card-secondary.uk-card-body .uk-text-lead,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-text-lead,
.uk-overlay-primary .uk-text-lead,
.uk-offcanvas-bar .uk-text-lead {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-text-meta,
.uk-tile-primary:not(.uk-preserve-color) .uk-text-meta,
.uk-tile-secondary:not(.uk-preserve-color) .uk-text-meta,
.uk-card-primary.uk-card-body .uk-text-meta,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-text-meta,
.uk-card-secondary.uk-card-body .uk-text-meta,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-text-meta,
.uk-overlay-primary .uk-text-meta,
.uk-offcanvas-bar .uk-text-meta {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-text-muted,
.uk-tile-primary:not(.uk-preserve-color) .uk-text-muted,
.uk-tile-secondary:not(.uk-preserve-color) .uk-text-muted,
.uk-card-primary.uk-card-body .uk-text-muted,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-text-muted,
.uk-card-secondary.uk-card-body .uk-text-muted,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-text-muted,
.uk-overlay-primary .uk-text-muted,
.uk-offcanvas-bar .uk-text-muted {
  color: rgba(255, 255, 255, 0.5) !important;
}
.uk-light .uk-text-emphasis,
.uk-tile-primary:not(.uk-preserve-color) .uk-text-emphasis,
.uk-tile-secondary:not(.uk-preserve-color) .uk-text-emphasis,
.uk-card-primary.uk-card-body .uk-text-emphasis,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-text-emphasis,
.uk-card-secondary.uk-card-body .uk-text-emphasis,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-text-emphasis,
.uk-overlay-primary .uk-text-emphasis,
.uk-offcanvas-bar .uk-text-emphasis {
  color: #fff !important;
}
.uk-light .uk-text-primary,
.uk-tile-primary:not(.uk-preserve-color) .uk-text-primary,
.uk-tile-secondary:not(.uk-preserve-color) .uk-text-primary,
.uk-card-primary.uk-card-body .uk-text-primary,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-text-primary,
.uk-card-secondary.uk-card-body .uk-text-primary,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-text-primary,
.uk-overlay-primary .uk-text-primary,
.uk-offcanvas-bar .uk-text-primary {
  color: #fff !important;
}
.uk-light .uk-text-secondary,
.uk-tile-primary:not(.uk-preserve-color) .uk-text-secondary,
.uk-tile-secondary:not(.uk-preserve-color) .uk-text-secondary,
.uk-card-primary.uk-card-body .uk-text-secondary,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-text-secondary,
.uk-card-secondary.uk-card-body .uk-text-secondary,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-text-secondary,
.uk-overlay-primary .uk-text-secondary,
.uk-offcanvas-bar .uk-text-secondary {
  color: #fff !important;
}
.uk-light .uk-column-divider,
.uk-tile-primary:not(.uk-preserve-color) .uk-column-divider,
.uk-tile-secondary:not(.uk-preserve-color) .uk-column-divider,
.uk-card-primary.uk-card-body .uk-column-divider,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-column-divider,
.uk-card-secondary.uk-card-body .uk-column-divider,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-column-divider,
.uk-overlay-primary .uk-column-divider,
.uk-offcanvas-bar .uk-column-divider {
  column-rule-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-logo,
.uk-tile-primary:not(.uk-preserve-color) .uk-logo,
.uk-tile-secondary:not(.uk-preserve-color) .uk-logo,
.uk-card-primary.uk-card-body .uk-logo,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-logo,
.uk-card-secondary.uk-card-body .uk-logo,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo,
.uk-overlay-primary .uk-logo,
.uk-offcanvas-bar .uk-logo {
  color: #fff;
}
.uk-light .uk-logo:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-logo:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-logo:hover,
.uk-card-primary.uk-card-body .uk-logo:hover,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-logo:hover,
.uk-card-secondary.uk-card-body .uk-logo:hover,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo:hover,
.uk-overlay-primary .uk-logo:hover,
.uk-offcanvas-bar .uk-logo:hover {
  color: #fff;
}
.uk-light .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
.uk-tile-primary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
.uk-tile-secondary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
.uk-card-primary.uk-card-body .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
.uk-card-primary > :not([class*="uk-card-media"]) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
.uk-card-secondary.uk-card-body .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
.uk-overlay-primary .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
.uk-offcanvas-bar .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse) {
  display: none;
}
.uk-light .uk-logo-inverse,
.uk-tile-primary:not(.uk-preserve-color) .uk-logo-inverse,
.uk-tile-secondary:not(.uk-preserve-color) .uk-logo-inverse,
.uk-card-primary.uk-card-body .uk-logo-inverse,
.uk-card-primary > :not([class*="uk-card-media"]) .uk-logo-inverse,
.uk-card-secondary.uk-card-body .uk-logo-inverse,
.uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo-inverse,
.uk-overlay-primary .uk-logo-inverse,
.uk-offcanvas-bar .uk-logo-inverse {
  display: block;
}
/*
 * Pass dropbar behind color to JS
 */
* {
  --uk-inverse: initial;
}
.uk-light,
.uk-tile-primary:not(.uk-preserve-color),
.uk-tile-secondary:not(.uk-preserve-color),
.uk-card-primary.uk-card-body,
.uk-card-primary > :not([class*="uk-card-media"]),
.uk-card-secondary.uk-card-body,
.uk-card-secondary > :not([class*="uk-card-media"]),
.uk-overlay-primary,
.uk-offcanvas-bar {
  --uk-inverse: light;
}
.uk-dark,
.uk-section-default:not(.uk-preserve-color),
.uk-section-muted:not(.uk-preserve-color),
.uk-section-primary:not(.uk-preserve-color),
.uk-section-secondary:not(.uk-preserve-color),
.uk-tile-default:not(.uk-preserve-color),
.uk-tile-muted:not(.uk-preserve-color),
.uk-card-default.uk-card-body,
.uk-card-default > :not([class*="uk-card-media"]),
.uk-overlay-default,
.uk-dropbar,
.uk-navbar-container:not(.uk-navbar-transparent),
.uk-navbar-dropdown,
.uk-dropdown {
  --uk-inverse: dark;
}
.uk-inverse-light {
  --uk-inverse: light !important;
}
.uk-inverse-dark {
  --uk-inverse: dark !important;
}
/* ========================================================================
   Component: Print
 ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
* {
  font-family: Roboto, sans-serif;
}
p {
  line-height: 27px;
}
@media (max-width: 640px) {
  .uk-subnav {
    background: #bc0000;
    margin-top: 0;
    margin-bottom: 0;
    margin: 0 0 0 -20px;
  }
  #filters-container {
    margin-bottom: 0;
    position: fixed;
    bottom: 0;
    z-index: 3;
    width: 100%;
    left: 0;
  }
  .uk-subnav-pill > .uk-active > a {
    background-color: #bc0000;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 18.5px;
    line-height: 37px;
    transition: 0.2s ease-in-out;
    transition-property: color, background-color;
  }
  a.btn.red {
    color: #fff;
  }
  .uk-subnav-pill > * > :first-child {
    color: #fff;
    padding: 0px 5px;
  }
  .uk-subnav.uk-subnav-pill li a {
    padding: 14px 25px;
  }
}
#header {
  margin-top: 35px;
}
#header .uk-sticky-placeholder {
  display: none;
}
#header .lang-switcher {
  position: fixed;
  background: #fff;
  /*color            : black;*/
  border-radius: 50%;
  box-shadow: 0 0px 7px #707070;
  cursor: pointer;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  right: 20px;
  top: 20px;
  z-index: 99;
  font-size: 18px;
  transition: 0.2s ease-in-out;
  transition-property: color, background-color;
  color: #464646;
}
#header .lang-switcher:hover {
  background-color: #e30013;
  color: #fff;
}
.lang-switcher-new {
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 99;
  background: #fff;
  box-shadow: 0 0px 7px #707070;
  border-radius: 5px;
}
.lang-switcher-new a {
  color: #707070;
  width: 60px;
  padding: 0.4rem;
  height: 32px;
  display: none;
  text-align: center;
  position: relative;
}
.lang-switcher-new a:hover .fajfka::before,
.lang-switcher-new a:hover .fajfka::after {
  background: #e30013;
  transition: all 0.2s ease-in-out;
}
.lang-switcher-new a:first-child {
  display: block;
}
.lang-switcher-new .sipka {
  margin-left: -20px;
}
.lang-switcher-new .sipka::before,
.lang-switcher-new .sipka::after {
  top: 12px;
  left: 40px;
  width: 2px;
  height: 10px;
  background: #dcdcdc;
}
.lang-switcher-new .sipka::before {
  content: '';
  position: absolute;
  display: block;
  transform: rotate(45deg);
  left: 46px;
}
.lang-switcher-new .sipka::after {
  content: '';
  position: absolute;
  display: block;
  transform: rotate(-45deg);
}
.lang-switcher-new .fajfka {
  margin-left: -20px;
}
.lang-switcher-new .fajfka::before,
.lang-switcher-new .fajfka::after {
  top: 12px;
  left: 40px;
  width: 2px;
  height: 10px;
  background: #dcdcdc;
}
.lang-switcher-new .fajfka::before {
  content: '';
  position: absolute;
  display: block;
  transform: rotate(45deg);
  left: 46px;
}
.lang-switcher-new .fajfka::after {
  content: '';
  position: absolute;
  display: block;
  transform: rotate(-45deg);
  height: 4px;
  top: 16px;
  left: 41px;
}
.lang-switcher-new .fajfka:hover::before,
.lang-switcher-new .fajfka:hover::after {
  background: #e30013;
}
.lang-switcher-new:hover a {
  display: block;
}
.lang-switcher-new:hover .sipka::after,
.lang-switcher-new:hover .sipka::before {
  display: none;
}
#header .uk-sticky {
  z-index: 5;
}
#header nav.uk-navbar {
  box-shadow: 0px 0px 8px #0000001A;
  border: 1px solid #eee;
  background-color: #fff;
  /*overflow      : hidden;*/
  height: 80px;
  position: relative;
}
#header nav .logo {
  display: inline-block;
}
#header nav .logo > a {
  background-image: url('../icon/DEK_logo_CERVENE.svg');
  width: 90px;
  height: 40px;
  margin-left: 21px;
  margin-top: 20px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: inline-block;
}
#header nav .menu-icon {
  display: none;
}
#header nav ul.uk-navbar-nav {
  float: right;
  display: flex;
  flex: 1 0 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
}
@media (max-width: 1019px) {
  #header nav ul.uk-navbar-nav {
    margin-right: 80px;
  }
}
#header nav ul.uk-navbar-nav li {
  margin-right: 20px;
  padding: 0 9px;
  text-transform: uppercase;
  width: auto;
  font-weight: bold;
  height: 79px;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.2s ease-in-out;
}
#header nav ul.uk-navbar-nav li.lang-menu {
  display: none;
}
#header nav ul.uk-navbar-nav li a {
  height: 100%;
  font-size: 16px;
  line-height: 5.3;
  display: inline-block;
  color: inherit;
}
#header nav ul.uk-navbar-nav li:hover,
#header nav ul.uk-navbar-nav li.uk-active {
  border-bottom-color: #e30013;
}
.menu-icon {
  display: block;
  position: absolute;
  right: 15px;
  bottom: 17px;
  display: inline-block;
  cursor: pointer;
}
.menu-icon::before {
  content: 'MENU';
  color: #707070;
  font-size: 10px;
  position: absolute;
  bottom: -9px;
  left: -2px;
  font-weight: bold;
}
.menu-icon .bar1,
.menu-icon .bar2,
.menu-icon .bar3 {
  width: 25px;
  height: 3px;
  background-color: #707070;
  margin: 6px 0;
  transition: 0.4s;
}
.menu-icon.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-5px, 6px);
  transform: rotate(-45deg) translate(-5px, 6px);
}
.menu-icon.change .bar2 {
  opacity: 0;
}
.menu-icon.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}
@media (max-width: 1019px) {
  #header .lang-switcher {
    display: block;
    top: 15.5px;
    right: 15.5px;
    box-shadow: none;
    background: #c3c3c3;
    color: #fff;
    position: fixed;
    width: 34px;
    height: 34px;
    line-height: 34px;
  }
  #header .uk-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  #header nav.uk-navbar {
    height: 65px;
  }
  #header nav .logo > a {
    margin-left: 20px;
    margin-top: 16.5px;
    width: 90px;
    height: 35px;
  }
  #header nav ul.uk-navbar-nav li {
    height: 64px;
    padding: 0;
  }
  #header nav ul.uk-navbar-nav li a {
    font-size: 15px;
    line-height: 4.9;
  }
}
@media (max-width: 1019px) {
  #header nav ul.uk-navbar-nav li {
    font-weight: normal;
  }
  #header .lang-switcher,
  #header .lang-switcher-new,
  #header nav ul.uk-navbar-nav {
    display: none;
  }
  #header nav .menu-icon,
  #header nav.uk-navbar ul.uk-navbar-nav.show {
    display: block;
  }
  #header nav.uk-navbar ul.uk-navbar-nav {
    max-height: 0;
    transition: max-height 0.4s ease-out;
    overflow: hidden;
    display: block;
    position: absolute;
    width: 228px;
    right: 0;
    margin: 0;
    top: 65px;
    background-color: #333;
    color: #FFFFFD;
  }
  #header nav ul.uk-navbar-nav li.lang-menu {
    display: block;
  }
  #header nav.uk-navbar ul.uk-navbar-nav.show {
    max-height: 400px;
    transition: max-height 0.4s ease-in;
  }
  #header nav.uk-navbar ul.uk-navbar-nav > li:first-child:before {
    position: absolute;
    display: block;
    content: '';
    border-top: 10px solid #fff;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    right: 15px;
    top: 0;
  }
  #header nav.uk-navbar ul.uk-navbar-nav > li {
    border-bottom: 1px solid #464646;
    height: 55px;
    width: 100%;
    font-size: 16px;
  }
  #header nav.uk-navbar ul.uk-navbar-nav li:hover,
  #header nav.uk-navbar ul.uk-navbar-nav li.active {
    border-bottom: 2px solid #e30013;
  }
  #header nav.uk-navbar ul.uk-navbar-nav > li a {
    line-height: 3.7;
    padding-left: 15px;
    display: block;
    text-transform: none;
    font-size: 20px;
    line-height: 2.8;
  }
  #header nav.uk-navbar {
    border: none;
  }
  .lang-menu {
    background: #464646;
  }
}
/*
//
// Variables
//

@footer-margin-top: 5rem;



.footer {
    display         : flex;
    flex-direction  : column;
    //background    : #171717;
    background      : #bada55;
    color           : @dek-color-grey-light;
    font-size       : 16px;
    line-height     : 1.6;

    a {
        color: @dek-color-grey-light;
    }

    ul {
        list-style: none;
        padding   : 0;
    }

    li.strong {
        font-weight  : 600;
        margin-bottom: 1rem;
        color        : #fff;
    }

    a.logo {
        background-image : url('../icon/DEK_logo_BILE.svg');
        width            : 79px;
        height           : 26px;
        display          : inline-block;
        background-repeat: no-repeat;
        background-size  : 100% 100%;
    }

    #form {
        height          : auto;
        background-color: @dek-color-grey-dark;
        padding         : 20px;
        max-width       : 320px;
        margin-bottom   : -3rem;
        z-index         : 2;
        margin-top      : -2rem;

        input[type="checkbox"] {
            opacity: 0;
        }

        .checkmark {
            position  : absolute;
            background: #333333;
            width     : 12px;
            height    : 12px;
            top       : 0px;
            left      : -20px;
            cursor    : pointer;
        }

        label {
            position : relative;
            font-size: 11px;
        }

        input[type='email'],
        textarea {
            background-color: #707070;
            font-size       : 14px;
            border          : none;
            width           : 100%;
            padding         : 8px;
            color           : #fff;
            height          : 40px;
        }

        input[type='email']::placeholder,
        textarea::placeholder {
            color  : @dek-color-grey-light;
            opacity: 1;
        }

        input[type='email']:-ms-input-placeholder,
        textarea:-ms-input-placeholder {
            color: @dek-color-grey-light;
        }

        input[type='email']::-ms-input-placeholder,
        textarea::-ms-input-placeholder {
            color: @dek-color-grey-light;
        }

        textarea {
            resize       : none;
            height       : 82px;
            margin-bottom: 2px;
        }

        label>span {
            max-width: 148px;
            display  : inline;
        }

        .btn {
            border-radius   : 20px;
            background-color: transparent;
            border          : 2px solid #fff;
            color           : #fff;
            margin          : 0;
            padding         : 0;
            display         : block;
            width           : 100px;
            height          : 38px;
        }

        table {
            width: 280px;
        }

        .btn:hover {
            background-color: @dek-color-red;
            color           : #FFF;
            border-color    : @dek-color-red;
        }

        th {
            text-align    : left;
            padding-bottom: 10px;
        }

        td {
            padding-bottom: 10px;
        }

        strong {
            color     : #fff;
            text-align: left;
        }
    }
}

.footer__top .top__wrap {
    flex-direction : row;
    display        : flex;
    max-width      : 1300px;
    margin         : 0 auto;
    justify-content: space-between;
}

.footer__top {
    background: #333333;
    padding   : 2rem;
}

.footer__bottom {
    padding: 1rem;
}

.footer__bottom .bottom__wrap {
    max-width: 1300px;
    margin   : 0 auto;
}

.bottom__wrap a {
    margin-right: 2rem;
}

#footer-info {
    position  : relative;
    background: #171717;
    color     : #fff;

    &>.tooltip {
        display    : none;
        position   : absolute;
        background : #171717;
        line-height: normal;
        padding    : 7px 10px;
        left       : 25px;
        top        : -45px;
        z-index    : 20;
        width      : 150px;
    }

    &>.tooltip:before {
        display      : block;
        position     : absolute;
        content      : '';
        left         : -10px;
        top          : 33px;
        border-top   : 20px solid transparent;
        border-bottom: 20px solid transparent;
        border-right : 20px solid #171717;
        z-index      : 10;
    }

    &:hover>.tooltip {
        display: block;
    }
}

#form .checkmark {
    position  : absolute;
    background: #333333;
    width     : 12px;
    height    : 12px;
    top       : 0px;
    left      : -20px;
    cursor    : pointer;
}

#form label input[type='checkbox']:checked~.checkmark:after {
    content  : "\2714";
    font-size: 18px;
    top      : -6px;
    position : absolute;
}


.footer__bottom a {
    color: #a5a5a5;
}

.footer a:hover {
    text-decoration: underline;
}


.footer__zakCentrum--tel {
    display       : flex;
    flex-direction: row;
    flex-wrap     : wrap;

    #phone {
        display    : flex;
        align-items: baseline;
    }
}

.footer__middleSection {
    display        : flex;
    justify-content: space-around;
    width          : 50%;
}


@media (max-width: @breakpoint-small-max) {
    .footer li.strong {
        color: @dek-color-grey-light;
    }

    .top__wrap {
        flex-wrap: wrap;
    }

    .footer__middleSection {
        order          : 3;
        justify-content: space-between;
        margin-top     : -8rem;
    }

    .footer__form {
        order: 2;
    }

    .footer__top {
        padding: 2rem 0rem 2rem 2rem;
    }

    .article__adress {
        display        : flex;
        justify-content: space-between;
        width          : 50%;
    }

    .article__adress {
        max-height: 6rem;
    }

    .footer__bottom {
        text-align: center;
    }

    .bottom__wrap a {
        margin-right: 1rem;
    }
}


@media (max-width: @breakpoint-small) {

    .top__wrap {
        flex-wrap: wrap;
    }

    .footer__middleSection {
        order          : 1;
        justify-content: space-between;
        display        : flex;
        width          : 100%;
        margin         : 0rem 1rem 1rem 1rem;
        padding-top    : 1rem;
        border-top     : 1px solid #515151;
    }

    .footer #form {
        height          : auto;
        background-color: @dek-color-grey-dark;
        padding         : 20px;
        width           : 100%;
        max-width       : 650px;
        margin-bottom   : 0;
        z-index         : 1;
        margin-top      : 0;
    }

    .footer__form {
        max-width: 650px;
        order    : 3;
    }

    .footer #form table {
        width: 100%;
    }

    .footer__top {
        padding: 0;
    }

    .article__adress {
        display        : flex;
        justify-content: space-between;
        width          : 100%;
        max-height     : 12rem;
        flex-direction : column;
        padding        : 1rem;
    }

    .footer__bottom {
        text-align: center;
    }

    .bottom__wrap a {
        margin-right: 0;
    }

    .middleSection__article {
        width: calc(50% - 2rem);
    }

    .bottom__wrap {
        display       : flex;
        flex-wrap     : wrap;
        flex-direction: column;
        text-align    : left;
    }

    .uk-subnav>* {
        padding-left: 0;
    }

    #footer-info {
        display: none;
    }

    div#error-agree {
        font-size: 0.8rem;
    }
}
*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
.footer {
  display: flex;
  flex-direction: column;
  background: #171717;
  color: #d8d8d8;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 5rem;
}
.footer .error {
  visibility: hidden;
  color: #e8e473 !important;
  font-size: 12px;
}
.footer .error.visible {
  visibility: visible;
}
.footer a {
  color: #d8d8d8;
}
.footer li a:hover {
  text-decoration: underline;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer .logo {
  background-image: url('../icon/DEK_logo_BILE.svg');
  width: 79px;
  height: 26px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.footer .middleSection__article li.strong {
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
}
.footer .footer__middleSection {
  border-top: 1px solid #707070;
}
.footer .footer__top {
  background: #333333;
}
.footer #form label input[type='checkbox']:checked ~ .checkmark:after {
  content: "\2714";
  font-size: 18px;
  top: -6px;
  position: absolute;
}
.footer .footer__form {
  background: #555555;
  padding: 1rem;
  position: relative;
}
.footer .footer__form label {
  position: relative;
  font-size: 11px;
  display: flex;
  max-width: 220px;
}
.footer .footer__form input[type='email'],
.footer .footer__form textarea {
  background-color: #707070;
  font-size: 14px;
  border: none;
  width: 100%;
  padding: 8px;
  color: #fff;
  height: 40px;
  outline: none;
  padding: 0.5rem 1rem;
}
.footer .footer__form input[type='email']::placeholder,
.footer .footer__form textarea::placeholder {
  color: #d8d8d8;
  opacity: 1;
}
.footer .footer__form input[type='email']:-ms-input-placeholder,
.footer .footer__form textarea:-ms-input-placeholder {
  color: #d8d8d8;
}
.footer .footer__form input[type='email']::-ms-input-placeholder,
.footer .footer__form textarea::-ms-input-placeholder {
  color: #d8d8d8;
}
.footer .footer__form textarea {
  resize: none;
  height: 82px;
}
.footer .footer__form .btn {
  border-radius: 20px;
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  margin: 0;
  padding: 0;
  display: block;
  width: 100px;
  height: 38px;
  cursor: pointer;
  outline: none;
}
.footer .footer__form .btn:hover {
  background-color: #e30013;
  color: #FFF;
  border-color: #e30013;
}
.footer .footer__form .footer__form--nadpis {
  height: 2rem;
  display: flex;
}
.footer .footer__form .brbuzd {
  margin-bottom: 1rem;
}
.footer .article__adress {
  margin: 1rem;
}
.footer .footer__middleSection {
  margin: 1rem;
  padding-top: 1rem;
}
.footer #footer-form table {
  width: 100%;
}
.footer .footer__middleSection {
  display: flex;
  flex-wrap: wrap;
}
.footer .middleSection__article {
  min-width: 160px;
  width: 50%;
}
.footer .footer__bottom {
  padding: 1rem;
}
.footer .bottom__wrap {
  display: flex;
  flex-direction: column;
}
.footer .bottom__wrap a:hover {
  text-decoration: underline;
}
.footer .footer__zakCentrum--tel {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 758px) {
  .footer .top__wrap {
    display: flex;
  }
  .footer .article__adress {
    display: flex;
    min-width: 380px;
    justify-content: space-between;
  }
  .footer .footer__form {
    width: 346px;
    height: 310px;
    padding: 2rem 1rem 1rem 1rem;
  }
  .footer .article__left {
    width: calc(100% - 346px);
  }
  .footer .article__adress {
    margin: 2rem 2rem 1rem 2rem;
  }
  .footer .footer__middleSection {
    margin: 1rem 2rem 2rem 2rem;
  }
  .footer .footer__logo {
    width: 50%;
  }
  .footer .footer__adress {
    width: 50%;
  }
  .footer .bottom__wrap a:not(:first-child) {
    margin-left: 40px;
  }
  .footer .bottom__wrap {
    flex-direction: row;
  }
  .footer .bottom__wrap {
    margin-left: 1rem;
  }
}
@media (min-width: 1201px) {
  .footer {
    display: flex;
    flex-direction: column;
  }
  .footer .bottom__wrap {
    flex-direction: row;
  }
  .footer .footer__top {
    width: 100%;
  }
  .footer .top__wrap {
    width: 1200px;
    margin: 0 auto;
    height: 290px;
  }
  .footer .footer__bottom {
    width: 1200px;
    margin: 0 auto;
  }
  .footer .article__adress {
    flex-direction: column;
  }
  .footer .footer__middleSection {
    flex-direction: row;
    border-top: 0px;
  }
  .footer .footer__middleSection {
    border-top: none;
  }
  .footer .article__left {
    display: flex;
  }
  .footer .article__adress {
    min-width: unset;
  }
  .footer .footer__middleSection {
    width: 100%;
    margin: 1rem 0rem 2rem 0rem;
  }
  .footer .article__adress.dt-w {
    width: 700px;
    justify-content: flex-start;
  }
  .footer .footer__adress {
    width: 100%;
  }
  .footer .footer__logo {
    width: 100%;
  }
  .footer .footer__middleSection {
    margin: 40px 0 0 0;
    padding-top: 0;
  }
  .footer .article__adress.dt-w {
    margin: 40px 0 0 0;
  }
  .footer .footer__form {
    padding: 40px 1rem 1rem 1rem;
  }
  .footer .footer__zakCentrum--tel {
    display: flex;
  }
  .footer .footer__zakCentrum--tel #phone {
    display: flex;
    align-items: center;
  }
  .footer .footer__bottom .bottom__wrap {
    max-width: 1300px;
    margin: 0 auto;
  }
  .footer .footer__bottom {
    padding: 1rem 0;
  }
  .footer a.form-protection-link {
    color: #e30013;
  }
  #footer-form table tr {
    border-collapse: separate;
    border-spacing: 0 1rem;
  }
}
.diagram-tooltip {
  background: #131313;
  width: 50px;
  height: 25px;
  position: absolute;
  color: #fff;
  font-size: 0.7em;
  line-height: 1.8;
  padding: 3px;
  z-index: 20;
  text-align: center;
  display: none;
}
.grecaptcha-badge {
  visibility: hidden;
}
.grecaptcha-info {
  margin-top: 1rem;
  font-size: 14px;
  margin-right: 2rem;
}
.grecaptcha-info a {
  text-decoration: underline;
}
@media (max-width: 1200px) {
  .grecaptcha-info {
    display: none;
  }
}
.grecaptcha-info-mob {
  margin: 1rem 2rem;
  font-size: 14px;
}
.grecaptcha-info-mob a {
  text-decoration: underline;
}
@media (min-width: 1201px) {
  .grecaptcha-info-mob {
    display: none;
  }
}
@media (max-width: 767px) {
  .grecaptcha-info-mob {
    margin: 1rem;
  }
}
.section-podminky-pouziti section#content,
.section-ochrana-osobnich-udaju section#content,
.section-soubory-cookies section#content,
.section-cookies section#content,
.section-personal-protection section#content,
.section-conditions-of-use section#content {
  max-width: 980px;
  margin: 0 auto;
}
.section-podminky-pouziti .content,
.section-ochrana-osobnich-udaju .content,
.section-soubory-cookies .content,
.section-cookies .content,
.section-personal-protection .content,
.section-conditions-of-use .content {
  padding-left: 30px;
  padding-right: 30px;
}
.section-podminky-pouziti .redactor-style ul > li,
.section-ochrana-osobnich-udaju .redactor-style ul > li,
.section-soubory-cookies .redactor-style ul > li,
.section-cookies .redactor-style ul > li,
.section-personal-protection .redactor-style ul > li,
.section-conditions-of-use .redactor-style ul > li {
  padding-left: 35px;
  margin-bottom: 5px;
}
.section-podminky-pouziti ul,
.section-ochrana-osobnich-udaju ul,
.section-soubory-cookies ul,
.section-cookies ul,
.section-personal-protection ul,
.section-conditions-of-use ul {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 0;
}
.section-podminky-pouziti .redactor-style ul > li:before,
.section-ochrana-osobnich-udaju .redactor-style ul > li:before,
.section-soubory-cookies .redactor-style ul > li:before,
.section-cookies .redactor-style ul > li:before,
.section-personal-protection .redactor-style ul > li:before,
.section-conditions-of-use .redactor-style ul > li:before {
  content: '';
  display: inline-block;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  margin-bottom: 4px;
  background: #e30013;
  margin-left: -20px;
  margin-right: 15px;
}
.section-podminky-pouziti li ul,
.section-ochrana-osobnich-udaju li ul,
.section-soubory-cookies li ul,
.section-cookies li ul,
.section-personal-protection li ul,
.section-conditions-of-use li ul {
  padding-top: 10px;
}
.section-mapa-stranek ul,
.section-web-map ul {
  list-style: none;
  margin-bottom: 20px;
}
.section-mapa-stranek .map,
.section-web-map .map {
  max-width: 750px;
  margin: 0 auto;
  justify-content: space-between;
}
.section-mapa-stranek .map li,
.section-web-map .map li {
  font-size: 1.2em;
  margin-bottom: 20px;
}
.section-mapa-stranek .map li:not(.heading):before,
.section-web-map .map li:not(.heading):before {
  content: url(../icon/arrows.svg);
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 17px;
  margin-left: 34px;
}
.section-mapa-stranek .map .column,
.section-web-map .map .column {
  width: 100%;
}
.section-mapa-stranek .map li.heading,
.section-web-map .map li.heading {
  background-color: #e30013;
  border-radius: 25px;
  height: 50px;
  font-weight: bold;
  color: #fff !important;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 30px;
}
.section-mapa-stranek .map li.heading a,
.section-web-map .map li.heading a {
  color: #fff;
}
.section-mapa-stranek .map li.heading a:hover,
.section-web-map .map li.heading a:hover {
  text-decoration: none;
}
.section-mapa-stranek .map a,
.section-web-map .map a {
  display: inline-block;
  color: #464646;
}
.section-mapa-stranek .map a:hover,
.section-web-map .map a:hover {
  text-decoration: underline;
}
.section-mapa-stranek li.heading:not(.nohover):hover,
.section-web-map li.heading:not(.nohover):hover {
  background-color: #bc0000;
}
.section-mapa-stranek .row.map,
.section-web-map .row.map {
  display: flex;
  max-width: 750px;
  margin: 0 auto;
  justify-content: space-between;
}
@media (max-width: 650px) {
  .section-mapa-stranek .row.map,
  .section-web-map .row.map {
    flex-direction: column;
  }
  .section-mapa-stranek ul,
  .section-web-map ul {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.more-info {
  height: 18px;
  width: 19px;
  margin-left: 5px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  line-height: 1.5;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
}
.more-info {
  position: relative;
  background: #171717;
  color: #fff;
}
.more-info > .tooltip {
  display: none;
  position: absolute;
  background: #171717;
  line-height: normal;
  padding: 7px 10px;
  left: 25px;
  top: -45px;
  z-index: 20;
  width: 150px;
}
@media (max-width: 758px) {
  .more-info > .tooltip {
    left: inherit;
    right: 30px;
  }
}
.more-info > .tooltip:before {
  display: block;
  position: absolute;
  content: '';
  left: -10px;
  top: 33px;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 20px solid #171717;
  z-index: 10;
}
@media (max-width: 758px) {
  .more-info > .tooltip:before {
    display: block;
    position: absolute;
    content: '';
    left: -10px;
    top: 41px;
    border-right: inherit;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #171717;
    left: 150px;
  }
}
.more-info:hover > .tooltip {
  display: block;
}
body .page-content .media-boxes a.media-box:link,
body .page-content .media-boxes a.media-box:visited,
body .page-content .media-boxes a.media-box:active,
body .page-content .media-boxes a.media-box:hover {
  color: #464646;
}
body .page-content .media-boxes .media-box .message {
  border: 1px solid #d8d8d8;
  padding: 15px;
  box-sizing: border-box;
}
body .page-content .media-boxes .media-box .media-box-placeholder {
  display: none;
}
@media (min-width: 640px) {
  body .page-content .media-boxes .media-box .message-double {
    width: calc(200% + 30px);
  }
  body .page-content .media-boxes .media-box .media-box-placeholder {
    display: block;
  }
}
@media (min-width: 1200px) {
  body .page-content .media-boxes .media-box .message-double {
    width: calc(200% + 40px);
  }
}
body .page-content .media-boxes .media-box .message .message-preview {
  max-height: 250px;
  overflow: hidden;
}
body .page-content .media-boxes .media-box .message .message-content {
  margin-top: 10px;
  padding-bottom: 15px;
}
body .page-content .media-boxes .media-box .message .message-content p {
  margin: 0;
  padding-top: 8px;
}
body .page-content .media-boxes .media-box .message .dots {
  float: right;
  cursor: pointer;
}
body .page-content .media-boxes .media-box-placeholder {
  margin: 0;
  padding: 0;
  visibility: hidden;
  z-index: -1;
}
body .page-content .media-detail .detail-header,
body .page-content .media-detail .detail-image,
body .page-content .media-detail .detail-content {
  margin-bottom: 30px;
}
body .page-content .media-detail .detail-image img {
  margin: 0;
}
.media-detail-navigation {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
.media-detail {
  padding-top: 30px;
  margin-bottom: -5rem;
  padding-bottom: 5rem;
}
a.icon,
a.nav-arrow {
  position: absolute;
  z-index: 1;
  top: -20px;
  height: 40px;
  width: 40px;
  background: #e30013;
  border-radius: 50%;
  cursor: pointer;
  padding-right: 20px;
}
a.nav-arrow::before {
  content: url('../icon/arrow.svg');
  width: 25px;
  height: 25px;
  display: block;
  position: absolute;
  left: 7px;
  top: 7px;
  z-index: 100;
}
a.icon:hover {
  background: #ca0011;
}
a.icon svg {
  margin-left: 5px;
  margin-top: 5px;
}
.nav-back {
  left: 60px;
  transform: rotate(90deg);
}
.nav-next {
  right: 60px;
  transform: rotate(-90deg);
}
.icon-close {
  right: 0;
}
@media (max-width: 1040px) {
  #detail {
    padding-bottom: 40px;
    background-color: #fff;
  }
  .icon,
  a.arrow {
    top: 0;
  }
  #navigation {
    position: absolute;
    top: 100%;
    left: 0;
    height: 40px;
    z-index: 5;
    background: #eb0000;
  }
  #close {
    right: calc(50% - 20px);
  }
  #next {
    right: 70px;
  }
  #back {
    left: 70px;
  }
}
@media (max-width: 650px) {
  #navigation {
    position: fixed;
    top: auto;
    bottom: 0;
  }
  #hack-height {
    height: auto !important;
  }
  .uk-subnav-pill > a {
    padding: 15px 24px;
  }
  .uk-subnav-pill > .uk-active > a {
    background-color: #bc0000;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 18.5px;
    line-height: 37px;
    transition: 0.2s ease-in-out;
    transition-property: color, background-color;
    background-color: #e30013;
    border-radius: 25px;
  }
}
@media (max-width: 300px) {
  #next {
    right: 20px;
  }
  #back {
    left: 20px;
  }
}
@media (max-width: 1040px) {
  .media-detail-navigation {
    top: 100%;
    left: 0;
    height: 45px;
    z-index: 5;
    background: #eb0000;
    padding-right: 20px;
    padding-left: 20px;
    width: 100%;
    max-width: 100%;
  }
  #next {
    right: 70px;
  }
  #close {
    right: calc(50% - 20px);
  }
  .section-nase-spolecnosti #back {
    left: 70px;
  }
}
/*@media(max-width: 650px){
    #media-list .row{
        display: block;
    }
    #media-list .column{
        padding: 0;
    }
    #media-list .column:first-child a:first-child > .message{
        width: calc(100% - 20px);
        margin-left: 10px;
    }
    #media-list #hidden{
        display: none;
    }
     #filters-container{
        margin-bottom: 0;
    }
    #filters-container + .container{
        margin-top: -30px;
    }
    #filter
    {
        position: fixed;
        bottom: 0;
        left: 0;
        background:#bc0000;
        z-index: 5;
        width: 100%;
        height: 50px;
        padding: 0 0px;
    }
    #filter .btn
    {
        min-width: 100px;
        padding: 10px 0;
        margin: 0;
        font-size: 14px;
        height: 100%;
        border-radius: 30px;
        color: #fff;
    }
    #filter .btn:first-child{
        padding: 10px 13px;
    }
    #filter .btn:hover
    {
        background: @dek-color-red!important;
    }
    #filter .column
    {
        padding: 0;
    }
    #filter .column:nth-child(1)
    {
        display: none;
    }
}*/
.section-tisk-a-media div#navigation {
  position: absolute;
  top: 100%;
  left: 0;
  height: 40px;
  z-index: 5;
  background: #eb0000;
}
.section-tisk-a-media #close {
  right: calc(50% - 20px);
}
.section-tisk-a-media #next {
  right: 70px;
}
.section-tisk-a-media #back {
  left: 70px;
}
@media (max-width: 1040px) {
  .media-detail-navigation {
    top: 100%;
    left: 0;
    height: 45px;
    z-index: 5;
    background: #eb0000;
  }
}
@media (max-width: 1040px) {
  .media-detail-navigation a.icon,
  .media-detail-navigation a.nav-arrow {
    top: 3px;
    background: #eb0000;
  }
  .media-detail-navigation .nav-next {
    right: 70px;
  }
  .media-detail-navigation .icon-close {
    right: calc(50% - 20px);
  }
  .media-detail-navigation .nav-back {
    left: 70px;
  }
  .section-tisk-a-media.uk-container.uk-container-small {
    order: 1;
  }
  .media-detail-navigation {
    order: 3;
    margin-bottom: -3rem;
  }
  section.uk-section.uk-section-secondary.media-detail {
    order: 2;
  }
  section#content {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 650px) {
  .media-detail-navigation {
    position: fixed;
    top: auto;
    bottom: 0;
    margin-bottom: 0;
  }
}
.media-box-hidden {
  display: none;
}
.section-tisk-a-media button.btn,
.section-media button.btn,
.section-pro-media button.btn {
  cursor: pointer;
  border: none;
  width: 170px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  background-color: #e30013;
  color: #FFF;
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 37px;
  transition: 0.2s ease-in-out;
  transition-property: color, background-color;
  height: 50px;
  border-radius: 25px;
  text-align: center;
}
.about-us .video {
  margin-bottom: 40px;
}
#history {
  padding: 15px 0 5rem 0;
  background-color: #d8d8d8;
  margin-bottom: -5rem;
}
#history .container {
  max-width: 1200px;
}
#history .row {
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
}
#history .row > * {
  position: relative;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
  max-width: 100%;
}
#history .column {
  padding: 1.55em 0;
  flex: 1 0 0;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0px;
  font-size: 16px;
}
#history .column > p {
  line-height: 1.3;
  margin-bottom: 1.55em;
  overflow-wrap: break-word;
  font-weight: normal;
  padding: 10px;
}
#history h1 {
  margin-bottom: 50px;
  font-size: 32px;
}
#history .branch .column {
  border-top-width: 0;
  transition-property: border-top-width;
  transition-duration: 0.7s;
}
#history .branch .column > span {
  transition-property: opacity;
  transition-duration: 0.7s;
  opacity: 0;
}
#history .branch .column > *:not(span) {
  transition-property: opacity;
  transition-duration: 3s;
  opacity: 0;
}
#history .branch.view .column,
#history .branch.view .column > * {
  opacity: 1;
}
#history .branch.view .column,
#history .branch.view .column {
  border-top-width: 1px;
}
#history .tree .column.left.filled {
  border-right: 2px solid #707070;
  width: 50%;
}
#history .tree .column.right.filled {
  border-left: 2px solid #707070;
  width: 50%;
}
#history .tree .column.filled {
  border-top: 1px solid #b7b7b7;
}
#history .tree .column.filled:before {
  display: block;
  position: absolute;
  content: '';
  border: 2px solid #b7b7b7;
  background: #fff;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  left: -8px;
  top: -7px;
  z-index: 1;
}
#history .tree .row.branch.view:first-child .column.filled:before,
#history .tree .row.branch.view:last-child .column.filled:before {
  background: #464646;
}
#history .tree .row.branch.view:last-child .column.filled {
  border-right: none;
  border-left: none;
}
#history .tree .column.left.filled:before {
  left: auto;
  right: -8px;
}
#history .tree .last .filled:before,
#history .tree .first .filled:before {
  background: #464646;
  border-color: #464646;
}
#history .tree .last.branch > .column,
#history .tree .last.branch {
  border-left: none;
  border-right: none;
}
#history .tree .column:nth-child(even) span.year {
  left: 50px;
}
#history .tree .column:nth-child(odd) span.year {
  right: 50px;
}
#history .tree .column p {
  margin-top: -20px;
  line-height: 1.5;
}
#history .tree .column:nth-child(odd) p {
  padding-right: calc(100px + 1rem + 80px);
}
#history .tree .column:nth-child(even) p {
  padding-left: calc(100px + 1rem + 80px);
}
#history .tree span.year {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #fff;
  display: block;
  position: absolute;
  line-height: 3;
  font-size: 33px;
  font-weight: lighter;
  color: #464646;
  letter-spacing: 0px;
  text-align: center;
  top: -50px;
  box-shadow: 0px 3px 6px #00000029;
}
#history .tree img {
  border: 5px solid #fff;
  box-shadow: 0px 3px 6px #00000029;
  display: block;
  max-width: calc(80% - 80px);
  width: 100%;
}
#history .tree .column:nth-child(odd) img {
  margin-right: calc(20% + 70px);
  margin-left: 10px;
}
#history .tree .column:nth-child(even) img {
  margin-left: calc(20% + 70px);
  margin-right: 10px;
}
#history .branch > .column:not(.filled) {
  padding: 0;
}
#history #y1993 {
  border: none;
}
@media (max-width: 900px) {
  #history .tree .column:nth-child(odd) img,
  #history .tree .column:nth-child(even) img {
    max-width: 90%;
    margin: 0 10px;
  }
  #history .tree .column:nth-child(odd) img {
    margin-right: 7%;
  }
  #history .tree .column:nth-child(even) img {
    margin-left: 7%;
  }
  #history .tree .column:nth-child(even) span.year {
    left: 30px;
  }
  #history .tree .column:nth-child(odd) span.year {
    right: 30px;
  }
  #history .tree .column:nth-child(even) p {
    padding-left: calc(80px + 30px + 1rem);
  }
  #history .tree .column:nth-child(odd) p {
    padding-right: calc(80px + 30px + 1rem);
  }
  #history .tree span.year {
    width: 80px;
    height: 80px;
    font-size: 29px;
    top: -40px;
    line-height: 2.6;
  }
}
@media (max-width: 680px) {
  #history .tree .column img {
    margin-left: 7% !important;
    max-width: 90% !important;
    margin-right: 0 !important;
    margin-bottom: 30px !important;
  }
  #history .branch {
    display: block;
    margin-left: 20px !important;
  }
  #history .branch {
    border-left: 2px solid #707070;
  }
  #history .tree .column:nth-child(odd) span.year,
  #history .tree .column:nth-child(even) span.year {
    left: 30px;
    right: auto;
  }
  #history .tree .column.left.filled:before,
  #history .tree .column.filled:before {
    right: auto;
    left: -8px;
  }
  #history .tree .column.left.filled,
  #history .tree .column.right.filled {
    border-left: none;
    border-right: none;
    width: 100%;
  }
  #history .tree .column:nth-child(odd) p,
  #history .tree .column:nth-child(even) p {
    padding-left: 120px;
    padding-right: 10px;
  }
  #history .tree .column:nth-child(even) span.year {
    left: 20px;
  }
  #history .tree .column:nth-child(odd) span.year {
    right: 20px;
  }
}
.row.branch {
  position: relative;
  margin-top: 1px;
}
.ie-historie,
.ie-historie-mobil {
  display: none;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #history .tree,
  #history .row {
    display: none;
  }
}
@media all and (-ms-high-contrast: none) and (min-width: 1260px), (-ms-high-contrast: active) and (min-width: 1260px) {
  #history .ie-historie {
    display: block;
  }
  #history .content {
    width: 1260px;
    height: 2350px;
  }
}
@media all and (-ms-high-contrast: none) and (max-width: 1259px), (-ms-high-contrast: active) and (max-width: 1259px) {
  #history .ie-historie-mobil {
    display: block;
  }
  #history .content {
    height: 3334px;
  }
}
#companies .companies-head {
  text-align: center;
  font-size: 1.1em;
  font-weight: 100;
  margin-bottom: 15px;
  font-weight: bold;
  color: #707070;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  padding: 15px 0;
  /*border-top-left-radius :10px;*/
  /*border-top-right-radius:10px;*/
  background: #e30013;
  color: #fff;
}
#companies .company {
  position: relative;
  background-color: #FFF;
  text-align: center;
  height: 250px;
  border-bottom: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
  border-left: 1px solid #d8d8d8;
  padding: 5px;
}
#companies .uk-grid > div .companies-head,
#companies .uk-grid > div .company {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
#companies .uk-grid > div:first-child .companies-head,
#companies .uk-grid > div:first-child .company {
  width: 95%;
  margin-left: 0;
  margin-right: auto;
}
#companies uk-grid > div:last-child .companies-head,
#companies uk-grid > div:last-child .company {
  width: 95%;
  margin-left: auto;
  margin-right: 0;
}
#companies .company h2 {
  padding-top: 20px;
  padding-bottom: 0;
  margin: 0;
}
#companies .company h2.company-long-name {
  font-size: 1.4rem;
}
#companies .company img {
  position: absolute;
  margin: auto;
  width: auto;
  height: auto;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  max-height: 100%;
  max-width: 100%;
}
#companies .company > p {
  padding: 10px;
  margin: 0;
}
#companies .company > div {
  position: relative;
  height: 100%;
  width: 100%;
}
#companies .company > *:not(div) {
  display: none;
}
#companies .company > .uk-button {
  bottom: 15px;
}
#companies .company:hover {
  background: #fff;
  box-shadow: 0px 0px 10px #00000029;
  z-index: 1;
  border: none;
  transform: scale(1);
}
#companies .company:hover > div {
  display: none;
}
#companies .company:hover > h2,
#companies .company:hover > p {
  display: block;
}
#companies .company:hover > .uk-button {
  display: inline-block;
}
@media (max-width: 900px) {
  #companies .company,
  #companies .companies-head {
    width: 100% !important;
  }
}
@media (min-width: 720px) {
  #companies .company h2 {
    padding-top: 30px;
  }
  #companies .company > p {
    padding: 15px;
  }
  #companies .company > .uk-button {
    bottom: 30px;
  }
}
/*#companies .company
{
    background: #fff;
    box-shadow: 0px 0px 7px #707070;
    z-index: 1;
    border: none;
    transform: scale(1.0);
}
#companies .company > div
{
    display: none;
}
#companies .company > h2,
#companies .company > p
{
    display: block;
}
#companies .company > .uk-button
{
    display: inline-block;
}*/
@media (max-width: 650px) {
  #companies {
    margin-top: -2rem;
  }
  #companies .companies-head {
    margin-top: 2rem;
  }
}
@media (max-width: 1040px) {
  .section-nase-spolecnosti .media-detail-navigation,
  .section-nase-spolocnosti .media-detail-navigation,
  .section-our-companies .media-detail-navigation {
    order: 3;
    margin-bottom: -5px;
  }
  .section-nase-spolecnosti .media-detail,
  .section-nase-spolocnosti .media-detail,
  .section-our-companies .media-detail {
    margin-bottom: 0;
  }
}
@media (max-width: 650px) {
  .section-nase-spolecnosti .media-detail-navigation,
  .section-nase-spolocnosti .media-detail-navigation,
  .section-our-companies .media-detail-navigation {
    order: 3;
    margin-bottom: 0;
  }
}
.section-nase-spolecnosti .btn.red,
.section-nase-spolocnosti .btn.red,
.section-our-companies .btn.red {
  background-color: #e30013;
  color: #FFF;
}
.section-nase-spolecnosti .btn,
.section-nase-spolocnosti .btn,
.section-our-companies .btn {
  cursor: pointer;
  border: none;
  font-size: 13px;
  border-radius: 17px;
  height: 33px;
  display: block;
  line-height: 2.7;
  text-align: center;
  width: 120px;
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
.section-nase-spolecnosti a.arrow,
.section-nase-spolocnosti a.arrow,
.section-our-companies a.arrow {
  display: block;
  background-color: #e30013;
  width: 30px;
  height: 30px;
  cursor: pointer;
  border-radius: 50%;
  padding: 0;
}
.section-nase-spolecnosti a.arrow:hover,
.section-nase-spolocnosti a.arrow:hover,
.section-our-companies a.arrow:hover {
  background-color: #BC0000;
}
.section-nase-spolecnosti #next,
.section-nase-spolocnosti #next,
.section-our-companies #next {
  right: calc(50% - 470px);
  transform: rotate(-90deg);
}
.section-nase-spolecnosti .icon,
.section-nase-spolocnosti .icon,
.section-our-companies .icon,
.section-nase-spolecnosti a.arrow,
.section-nase-spolocnosti a.arrow,
.section-our-companies a.arrow {
  position: absolute;
  z-index: 1;
  top: -20px;
  height: 40px;
  width: 40px;
  background: #EB0000;
  border-radius: 50%;
  cursor: pointer;
  padding-right: 20px;
  padding-left: 20px;
}
.section-nase-spolecnosti div#navigationX,
.section-nase-spolocnosti div#navigationX,
.section-our-companies div#navigationX {
  position: relative;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
  max-width: 100%;
}
.section-nase-spolecnosti a.arrow:before,
.section-nase-spolocnosti a.arrow:before,
.section-our-companies a.arrow:before {
  left: 7px;
  top: 7px;
}
.section-nase-spolecnosti .arrow::before,
.section-nase-spolocnosti .arrow::before,
.section-our-companies .arrow::before {
  content: url(../icon/arrow.svg);
  width: 25px;
  height: 25px;
  display: block;
  position: absolute;
  top: 2px;
  z-index: 100;
  left: 2px;
}
.section-nase-spolecnosti iframe,
.section-nase-spolocnosti iframe,
.section-our-companies iframe,
.section-nase-spolecnosti video:not(.tile-video),
.section-nase-spolocnosti video:not(.tile-video),
.section-our-companies video:not(.tile-video) {
  background: black;
  cursor: pointer;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 980px;
  max-height: 480px;
  border: none;
}
.section-nase-spolecnosti .videowrapper,
.section-nase-spolocnosti .videowrapper,
.section-our-companies .videowrapper {
  float: none;
  clear: both;
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}
.section-nase-spolecnosti .videowrapper iframe,
.section-nase-spolocnosti .videowrapper iframe,
.section-our-companies .videowrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-nase-spolecnosti section#content,
.section-nase-spolocnosti section#content,
.section-our-companies section#content {
  margin-bottom: -44px;
}
.section-nase-spolecnosti img,
.section-nase-spolocnosti img,
.section-our-companies img {
  width: auto;
  max-width: 100%;
}
@media (max-width: 1040px) {
  .section-nase-spolecnosti #detail .container,
  .section-nase-spolocnosti #detail .container,
  .section-our-companies #detail .container {
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    position: relative;
    max-width: 1300px;
  }
  .section-nase-spolecnosti .content,
  .section-nase-spolocnosti .content,
  .section-our-companies .content {
    margin: 0 auto;
  }
  .section-nase-spolecnosti #detail,
  .section-nase-spolocnosti #detail,
  .section-our-companies #detail {
    padding-bottom: 0px;
    margin-bottom: -5px;
    background-color: #fff;
  }
  .section-nase-spolecnosti .icon,
  .section-nase-spolocnosti .icon,
  .section-our-companies .icon,
  .section-nase-spolecnosti a.arrow,
  .section-nase-spolocnosti a.arrow,
  .section-our-companies a.arrow {
    top: 0;
  }
  .section-nase-spolecnosti div#navigationX,
  .section-nase-spolocnosti div#navigationX,
  .section-our-companies div#navigationX {
    position: absolute;
    top: 100%;
    left: 0;
    height: 40px;
    z-index: 5;
    background: #eb0000;
  }
  .section-nase-spolecnosti #close,
  .section-nase-spolocnosti #close,
  .section-our-companies #close {
    right: calc(50% - 20px);
  }
  .section-nase-spolecnosti #next,
  .section-nase-spolocnosti #next,
  .section-our-companies #next {
    right: 70px;
  }
  .section-nase-spolecnosti #back,
  .section-nase-spolocnosti #back,
  .section-our-companies #back {
    left: 70px;
  }
}
@media (max-width: 650px) {
  .section-nase-spolecnosti div#navigationX,
  .section-nase-spolocnosti div#navigationX,
  .section-our-companies div#navigationX {
    position: fixed;
    top: auto;
    bottom: 0;
  }
  .section-nase-spolecnosti #detail .redactor-style p,
  .section-nase-spolocnosti #detail .redactor-style p,
  .section-our-companies #detail .redactor-style p {
    padding: 10px !important;
  }
}
@media (max-width: 300px) {
  .section-nase-spolecnosti #next,
  .section-nase-spolocnosti #next,
  .section-our-companies #next {
    right: 20px;
  }
  .section-nase-spolecnosti #back,
  .section-nase-spolocnosti #back,
  .section-our-companies #back {
    left: 20px;
  }
}
.section-nase-spolecnosti a.icon svg,
.section-nase-spolocnosti a.icon svg,
.section-our-companies a.icon svg {
  margin-left: -15px;
}
.dots > div,
.dots > div:before,
.dots > div:after {
  position: relative;
  border-radius: 50%;
  height: 9px;
  width: 9px;
  background-color: #e30013;
  display: inline-block;
}
.dots > div:before,
.dots > div:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 13px;
}
.dots > div:after {
  left: 26px;
}
.dots {
  display: inline-block;
  width: 39px;
}
.dots:hover div,
.dots:hover div:before,
.dots:hover div:after {
  background: #464646;
}
body .page-content .error-page h1 {
  color: #e30013;
  font-size: 110px;
  line-height: 76px;
  font-weight: normal;
  margin-top: 40px;
}
body .page-content .error-page h2 {
  color: #e30013;
  font-size: 30px;
  font-weight: normal;
  margin-top: 30px;
}
body .page-content .error-page p {
  margin: 10px 0 30px 0;
}
@media (max-width: 959px) {
  body .page-content .error-page .error-text,
  body .page-content .error-page .error-img {
    text-align: center;
  }
  body .page-content .error-page .error-img img {
    max-width: 60%;
  }
}
@media (min-width: 960px) {
  body .page-content .error-page h1 {
    font-size: 190px;
    line-height: 130px;
    margin-top: 0;
  }
  body .page-content .error-page h2 {
    font-size: 45px;
    margin-top: 60px;
  }
  body .page-content .error-page p {
    margin: 10px 0 50px 0;
  }
  body .page-content .error-page .error-text {
    max-width: 520px;
  }
  body .page-content .error-page .error-img {
    max-width: 520px;
    float: right;
  }
}
#diagram-container .row {
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
}
#diagram-container .row > * {
  position: relative;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
  max-width: 100%;
}
#diagram-container .column {
  padding: 1.55em 0;
  flex: 1 0 0;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0px;
  font-size: 16px;
}
#diagram-container #diagram-row .column {
  /*border: 1px solid black;*/
  padding: 0;
  height: 250px;
}
.section-o-nas .diagram-tooltip {
  background: #131313;
  width: 50px;
  height: 25px;
  position: absolute;
  color: #fff;
  font-size: 0.7em;
  line-height: 1.8;
  padding: 3px;
  z-index: 20;
  text-align: center;
  display: none;
}
.section-o-nas a.uk-button.uk-button-primary.uk-button-small {
  margin-bottom: 2rem;
  margin-top: 1rem;
}
#diagram-container .diagram-card.empty .dots {
  padding-top: 8px;
  padding-right: 45px;
}
#diagram-container .diagram-card.empty .diagram-content {
  overflow: hidden;
}
#diagram-container .diagram-card img {
  display: block;
  height: 100%;
  max-width: calc(100% - 20px);
  height: calc(100% - 20px);
  /*max-width: 290px;
    min-height : 100%;*/
  margin: auto;
}
#diagram-container .diagram-card.empty .diagram-comment {
  border: none;
}
#diagram-container .diagram-card.empty .heading {
  text-align: left;
  padding-left: 10px;
}
.diagram-tooltip:after {
  content: '';
  display: block;
  position: absolute;
  left: calc(50% - 7px);
  border-top: 7px solid black;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
}
#diagram-container #diagram-row {
  max-width: 980px;
  margin: auto;
}
#diagram-container .diagram-card {
  border: 1px solid #e1e1e1;
  width: 95%;
  height: 100%;
}
#diagram-container #diagram-row .column:nth-child(2n) .diagram-card {
  margin: auto;
}
#diagram-container #diagram-row .column:nth-child(3n) .diagram-card {
  margin-left: auto;
}
#diagram-container .diagram-title {
  display: flex;
  height: 50px;
  flex-wrap: wrap;
}
#diagram-container .numeric-record {
  flex-grow: 0.3;
  text-align: center;
  font-size: 2rem;
  padding-top: 12px;
}
#diagram-container .diagram-content {
  height: calc(100% - 40px);
}
#diagram-container .diagram-content > div {
  height: 100%;
}
#diagram-container .diagram-comment {
  flex-grow: 1;
  padding-top: 7px;
  margin-right: 7px;
  text-align: right;
  border-bottom: 1px solid #707070;
}
#diagram-container .heading {
  font-weight: 600;
}
#diagram-container .sub {
  color: #707070;
}
@media (max-width: 900px) {
  #diagram-container .diagram-card {
    width: 100%;
  }
  #diagram-container #diagram-row .column {
    margin: none;
  }
  #diagram-container .numeric-record {
    font-size: 1.4rem;
  }
  #diagram-container #diagram-container {
    padding: 0;
  }
}
@media (max-width: 750px) {
  #diagram-container #diagram-row {
    display: block;
    max-width: 300px !important;
  }
}
/*
    Created on : 24.7.2020, 13:05:02
    Author     : markuska peter
*/
.section-kalendar-akci div#introduction,
.section-calendar-of-events div#introduction,
.section-kalendar-akcii div#introduction,
.section-kariera div#introduction,
.section-career div#introduction {
  display: flex;
  max-width: 980px;
  margin: 2rem auto;
}
.section-kalendar-akci .career_vypln-form,
.section-calendar-of-events .career_vypln-form,
.section-kalendar-akcii .career_vypln-form,
.section-kariera .career_vypln-form,
.section-career .career_vypln-form {
  background: #ccc;
  color: #000;
  padding: 10px 20px;
  border-radius: 20px;
  margin: 20px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
}
.section-kalendar-akci .career__popispozice,
.section-calendar-of-events .career__popispozice,
.section-kalendar-akcii .career__popispozice,
.section-kariera .career__popispozice,
.section-career .career__popispozice {
  position: relative;
  margin-bottom: 2rem;
  display: flex;
}
.section-kalendar-akci .career__popispozice1,
.section-calendar-of-events .career__popispozice1,
.section-kalendar-akcii .career__popispozice1,
.section-kariera .career__popispozice1,
.section-career .career__popispozice1 {
  width: 50%;
}
@media (max-width: 959px) {
  .section-kalendar-akci .career__popispozice1,
  .section-calendar-of-events .career__popispozice1,
  .section-kalendar-akcii .career__popispozice1,
  .section-kariera .career__popispozice1,
  .section-career .career__popispozice1 {
    width: 100%;
  }
}
.section-kalendar-akci .career__popispozice2,
.section-calendar-of-events .career__popispozice2,
.section-kalendar-akcii .career__popispozice2,
.section-kariera .career__popispozice2,
.section-career .career__popispozice2 {
  width: calc(50% - 1rem);
  margin-left: 1rem;
}
@media (max-width: 959px) {
  .section-kalendar-akci .career__popispozice2,
  .section-calendar-of-events .career__popispozice2,
  .section-kalendar-akcii .career__popispozice2,
  .section-kariera .career__popispozice2,
  .section-career .career__popispozice2 {
    display: none;
  }
}
.section-kalendar-akci .gobottom,
.section-calendar-of-events .gobottom,
.section-kalendar-akcii .gobottom,
.section-kariera .gobottom,
.section-career .gobottom {
  height: 40px;
  width: 40px;
  background: #eb0000;
  bottom: 0;
  right: 1rem;
  position: absolute;
  border-radius: 50px;
}
.section-kalendar-akci .gobottom:after,
.section-calendar-of-events .gobottom:after,
.section-kalendar-akcii .gobottom:after,
.section-kariera .gobottom:after,
.section-career .gobottom:after {
  content: url(../icon/arrow.svg);
  width: 25px;
  height: 25px;
  display: block;
  position: absolute;
  top: 2px;
  z-index: 100;
  left: 2px;
  left: 7px;
  top: 7px;
}
.section-kalendar-akci .butk.red,
.section-calendar-of-events .butk.red,
.section-kalendar-akcii .butk.red,
.section-kariera .butk.red,
.section-career .butk.red {
  background-color: #e30013;
  color: #fff;
}
.section-kalendar-akci .butk,
.section-calendar-of-events .butk,
.section-kalendar-akcii .butk,
.section-kariera .butk,
.section-career .butk {
  cursor: pointer;
  border: none;
  display: block;
  line-height: 2.7;
  text-align: center;
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  width: 230px;
  border-radius: 40px;
  height: 40px;
}
.section-kalendar-akci .required > label:after,
.section-calendar-of-events .required > label:after,
.section-kalendar-akcii .required > label:after,
.section-kariera .required > label:after,
.section-career .required > label:after {
  content: " *";
  color: #e30013;
}
.section-kalendar-akci .required-disable::after,
.section-calendar-of-events .required-disable::after,
.section-kalendar-akcii .required-disable::after,
.section-kariera .required-disable::after,
.section-career .required-disable::after {
  content: inherit !important;
}
@media (max-width: 959px) {
  .section-kalendar-akci .content h2,
  .section-calendar-of-events .content h2,
  .section-kalendar-akcii .content h2,
  .section-kariera .content h2,
  .section-career .content h2 {
    margin-top: 1rem;
  }
  .section-kalendar-akci a.btn.red,
  .section-calendar-of-events a.btn.red,
  .section-kalendar-akcii a.btn.red,
  .section-kariera a.btn.red,
  .section-career a.btn.red {
    background-color: #e30013;
  }
}
@media (max-width: 639px) {
  .section-kalendar-akci .hide-on-mobile,
  .section-calendar-of-events .hide-on-mobile,
  .section-kalendar-akcii .hide-on-mobile,
  .section-kariera .hide-on-mobile,
  .section-career .hide-on-mobile {
    display: none !important;
  }
}
@media (min-width: 639px) {
  .section-kalendar-akci .show-on-mobile,
  .section-calendar-of-events .show-on-mobile,
  .section-kalendar-akcii .show-on-mobile,
  .section-kariera .show-on-mobile,
  .section-career .show-on-mobile {
    display: none !important;
  }
}
.section-kalendar-akci .zivot-v-dek__grey,
.section-calendar-of-events .zivot-v-dek__grey,
.section-kalendar-akcii .zivot-v-dek__grey,
.section-kariera .zivot-v-dek__grey,
.section-career .zivot-v-dek__grey {
  background: #f6f6f6;
  margin-left: 0;
  margin-bottom: -3rem;
}
.section-kalendar-akci .zivot-v-dek__grey .uk-flex-center,
.section-calendar-of-events .zivot-v-dek__grey .uk-flex-center,
.section-kalendar-akcii .zivot-v-dek__grey .uk-flex-center,
.section-kariera .zivot-v-dek__grey .uk-flex-center,
.section-career .zivot-v-dek__grey .uk-flex-center {
  margin-left: 0;
}
.section-kalendar-akci .zivot-v-dek__grey .zivot-v-dek__vyhoda,
.section-calendar-of-events .zivot-v-dek__grey .zivot-v-dek__vyhoda,
.section-kalendar-akcii .zivot-v-dek__grey .zivot-v-dek__vyhoda,
.section-kariera .zivot-v-dek__grey .zivot-v-dek__vyhoda,
.section-career .zivot-v-dek__grey .zivot-v-dek__vyhoda {
  background: #fff;
  border-radius: 30rem;
  height: 200px;
  width: 200px;
  margin: 1rem;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  text-align: center;
  flex-direction: column;
  align-items: center;
  color: #505050;
}
.section-kalendar-akci .zivot-v-dek__grey .zivot-v-dek__vyhoda .vyhoda-ikona,
.section-calendar-of-events .zivot-v-dek__grey .zivot-v-dek__vyhoda .vyhoda-ikona,
.section-kalendar-akcii .zivot-v-dek__grey .zivot-v-dek__vyhoda .vyhoda-ikona,
.section-kariera .zivot-v-dek__grey .zivot-v-dek__vyhoda .vyhoda-ikona,
.section-career .zivot-v-dek__grey .zivot-v-dek__vyhoda .vyhoda-ikona {
  width: 60px;
  height: 60px;
  margin: 0.8rem;
  margin-top: 1.5rem;
}
.section-kalendar-akci .zivot-v-dek__grey .zivot-v-dek__vyhoda .i-stravenky,
.section-calendar-of-events .zivot-v-dek__grey .zivot-v-dek__vyhoda .i-stravenky,
.section-kalendar-akcii .zivot-v-dek__grey .zivot-v-dek__vyhoda .i-stravenky,
.section-kariera .zivot-v-dek__grey .zivot-v-dek__vyhoda .i-stravenky,
.section-career .zivot-v-dek__grey .zivot-v-dek__vyhoda .i-stravenky {
  background-image: url("../icon/stravenky.svg");
}
.section-kalendar-akci .zivot-v-dek__grey .zivot-v-dek__vyhoda .i-kariera,
.section-calendar-of-events .zivot-v-dek__grey .zivot-v-dek__vyhoda .i-kariera,
.section-kalendar-akcii .zivot-v-dek__grey .zivot-v-dek__vyhoda .i-kariera,
.section-kariera .zivot-v-dek__grey .zivot-v-dek__vyhoda .i-kariera,
.section-career .zivot-v-dek__grey .zivot-v-dek__vyhoda .i-kariera {
  background-image: url("../icon/kariera.svg");
}
.section-kalendar-akci .zivot-v-dek__grey .zivot-v-dek__vyhoda .i-dovolena,
.section-calendar-of-events .zivot-v-dek__grey .zivot-v-dek__vyhoda .i-dovolena,
.section-kalendar-akcii .zivot-v-dek__grey .zivot-v-dek__vyhoda .i-dovolena,
.section-kariera .zivot-v-dek__grey .zivot-v-dek__vyhoda .i-dovolena,
.section-career .zivot-v-dek__grey .zivot-v-dek__vyhoda .i-dovolena {
  background-image: url("../icon/dovolena.svg");
}
.section-kalendar-akci .zivot-v-dek__grey .zivot-v-dek__vyhoda .i-spolecnost,
.section-calendar-of-events .zivot-v-dek__grey .zivot-v-dek__vyhoda .i-spolecnost,
.section-kalendar-akcii .zivot-v-dek__grey .zivot-v-dek__vyhoda .i-spolecnost,
.section-kariera .zivot-v-dek__grey .zivot-v-dek__vyhoda .i-spolecnost,
.section-career .zivot-v-dek__grey .zivot-v-dek__vyhoda .i-spolecnost {
  background-image: url("../icon/spolecnost.svg");
}
.section-kalendar-akci .zivot-v-dek__grey h3,
.section-calendar-of-events .zivot-v-dek__grey h3,
.section-kalendar-akcii .zivot-v-dek__grey h3,
.section-kariera .zivot-v-dek__grey h3,
.section-career .zivot-v-dek__grey h3 {
  width: 100%;
  text-align: center;
  padding: 1rem;
}
.section-kalendar-akci .zivot-v-dek__grey .vyhoda--cervena,
.section-calendar-of-events .zivot-v-dek__grey .vyhoda--cervena,
.section-kalendar-akcii .zivot-v-dek__grey .vyhoda--cervena,
.section-kariera .zivot-v-dek__grey .vyhoda--cervena,
.section-career .zivot-v-dek__grey .vyhoda--cervena {
  color: #e30013;
  font-weight: bold;
}
.section-kalendar-akci .employment-row,
.section-calendar-of-events .employment-row,
.section-kalendar-akcii .employment-row,
.section-kariera .employment-row,
.section-career .employment-row {
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  padding: 9px 15px;
}
.section-kalendar-akci .employment-row > span:not(.location),
.section-calendar-of-events .employment-row > span:not(.location),
.section-kalendar-akcii .employment-row > span:not(.location),
.section-kariera .employment-row > span:not(.location),
.section-career .employment-row > span:not(.location) {
  color: #e30013;
  font-weight: bold;
  display: inline-block;
  max-width: calc(100% - 15px);
}
.section-kalendar-akci .employment-row:before,
.section-calendar-of-events .employment-row:before,
.section-kalendar-akcii .employment-row:before,
.section-kariera .employment-row:before,
.section-career .employment-row:before,
.section-kalendar-akci .employment-row:after,
.section-calendar-of-events .employment-row:after,
.section-kalendar-akcii .employment-row:after,
.section-kariera .employment-row:after,
.section-career .employment-row:after {
  content: "";
  position: absolute;
  right: 0;
  width: 2px;
  height: 15px;
  background: #cccccc;
  transform: rotate(135deg);
  top: 4px;
  right: 20px;
}
.section-kalendar-akci .employment-row:after,
.section-calendar-of-events .employment-row:after,
.section-kalendar-akcii .employment-row:after,
.section-kariera .employment-row:after,
.section-career .employment-row:after {
  top: 14px;
  transform: rotate(225deg);
}
.section-kalendar-akci .employment-row > span,
.section-calendar-of-events .employment-row > span,
.section-kalendar-akcii .employment-row > span,
.section-kariera .employment-row > span,
.section-career .employment-row > span,
.section-kalendar-akci .employment-row > span:before,
.section-calendar-of-events .employment-row > span:before,
.section-kalendar-akcii .employment-row > span:before,
.section-kariera .employment-row > span:before,
.section-career .employment-row > span:before {
  color: #464646;
  font-weight: normal;
  transition: 0.2s ease-in-out;
  transition-property: color, background-color;
}
.section-kalendar-akci .employment-row > span.location:before,
.section-calendar-of-events .employment-row > span.location:before,
.section-kalendar-akcii .employment-row > span.location:before,
.section-kariera .employment-row > span.location:before,
.section-career .employment-row > span.location:before {
  display: inline-block;
  content: "/";
  margin: 0 10px;
}
.section-kalendar-akci .employment-row:hover,
.section-calendar-of-events .employment-row:hover,
.section-kalendar-akcii .employment-row:hover,
.section-kariera .employment-row:hover,
.section-career .employment-row:hover,
.section-kalendar-akci .employment-row:hover > span,
.section-calendar-of-events .employment-row:hover > span,
.section-kalendar-akcii .employment-row:hover > span,
.section-kariera .employment-row:hover > span,
.section-career .employment-row:hover > span,
.section-kalendar-akci .employment-row:hover > span:before,
.section-calendar-of-events .employment-row:hover > span:before,
.section-kalendar-akcii .employment-row:hover > span:before,
.section-kariera .employment-row:hover > span:before,
.section-career .employment-row:hover > span:before {
  color: #fff;
}
.section-kalendar-akci .employment-row:hover,
.section-calendar-of-events .employment-row:hover,
.section-kalendar-akcii .employment-row:hover,
.section-kariera .employment-row:hover,
.section-career .employment-row:hover {
  background-color: #e30013;
}
.section-kalendar-akci .employment-row:hover:before,
.section-calendar-of-events .employment-row:hover:before,
.section-kalendar-akcii .employment-row:hover:before,
.section-kariera .employment-row:hover:before,
.section-career .employment-row:hover:before {
  transform: none;
  content: "Detail pozice";
  text-decoration: underline;
  font-weight: normal;
  right: 15px;
  color: #fff;
  font-size: 16px;
  background: transparent;
  width: auto;
  top: 9px;
}
@media (max-width: 959px) {
  .section-kalendar-akci .employment-row:hover:before,
  .section-calendar-of-events .employment-row:hover:before,
  .section-kalendar-akcii .employment-row:hover:before,
  .section-kariera .employment-row:hover:before,
  .section-career .employment-row:hover:before {
    content: "";
  }
}
.section-kalendar-akci .employment-row:hover:after,
.section-calendar-of-events .employment-row:hover:after,
.section-kalendar-akcii .employment-row:hover:after,
.section-kariera .employment-row:hover:after,
.section-career .employment-row:hover:after {
  display: none;
}
.section-kalendar-akci .employment-row-sk:hover:before,
.section-calendar-of-events .employment-row-sk:hover:before,
.section-kalendar-akcii .employment-row-sk:hover:before,
.section-kariera .employment-row-sk:hover:before,
.section-career .employment-row-sk:hover:before {
  content: "Detail pozície";
}
@media (max-width: 959px) {
  .section-kalendar-akci .employment-row-sk:hover:before,
  .section-calendar-of-events .employment-row-sk:hover:before,
  .section-kalendar-akcii .employment-row-sk:hover:before,
  .section-kariera .employment-row-sk:hover:before,
  .section-career .employment-row-sk:hover:before {
    content: "";
  }
}
.section-kalendar-akci #table a.specialization:before,
.section-calendar-of-events #table a.specialization:before,
.section-kalendar-akcii #table a.specialization:before,
.section-kariera #table a.specialization:before,
.section-career #table a.specialization:before {
  position: absolute;
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  background-size: 25px 25px;
  background-repeat: no-repeat;
  background-image: url("../icon/Administrativa.svg");
  margin-top: 5px;
}
.section-kalendar-akci #table a.specialization.itis:before,
.section-calendar-of-events #table a.specialization.itis:before,
.section-kalendar-akcii #table a.specialization.itis:before,
.section-kariera #table a.specialization.itis:before,
.section-career #table a.specialization.itis:before {
  background-image: url("../icon/It.svg");
}
.section-kalendar-akci #table a.specialization.admi:before,
.section-calendar-of-events #table a.specialization.admi:before,
.section-kalendar-akcii #table a.specialization.admi:before,
.section-kariera #table a.specialization.admi:before,
.section-career #table a.specialization.admi:before {
  background-image: url("../icon/Administrativa.svg");
}
.section-kalendar-akci #table a.specialization.fina:before,
.section-calendar-of-events #table a.specialization.fina:before,
.section-kalendar-akcii #table a.specialization.fina:before,
.section-kariera #table a.specialization.fina:before,
.section-career #table a.specialization.fina:before {
  background-image: url("../icon/Finance.svg");
}
.section-kalendar-akci #table a.specialization.it-is:before,
.section-calendar-of-events #table a.specialization.it-is:before,
.section-kalendar-akcii #table a.specialization.it-is:before,
.section-kariera #table a.specialization.it-is:before,
.section-career #table a.specialization.it-is:before {
  background-image: url("../icon/It.svg");
}
.section-kalendar-akci #table a.specialization.jine:before,
.section-calendar-of-events #table a.specialization.jine:before,
.section-kalendar-akcii #table a.specialization.jine:before,
.section-kariera #table a.specialization.jine:before,
.section-career #table a.specialization.jine:before {
  background-image: url("../icon/Jine.svg");
}
.section-kalendar-akci #table a.specialization.logi:before,
.section-calendar-of-events #table a.specialization.logi:before,
.section-kalendar-akcii #table a.specialization.logi:before,
.section-kariera #table a.specialization.logi:before,
.section-career #table a.specialization.logi:before {
  background-image: url("../icon/Logistika.svg");
}
.section-kalendar-akci #table a.specialization.mark:before,
.section-calendar-of-events #table a.specialization.mark:before,
.section-kalendar-akcii #table a.specialization.mark:before,
.section-kariera #table a.specialization.mark:before,
.section-career #table a.specialization.mark:before {
  background-image: url("../icon/Marketing.svg");
}
.section-kalendar-akci #table a.specialization.obch:before,
.section-calendar-of-events #table a.specialization.obch:before,
.section-kalendar-akcii #table a.specialization.obch:before,
.section-kariera #table a.specialization.obch:before,
.section-career #table a.specialization.obch:before {
  background-image: url("../icon/Obchod.svg");
}
.section-kalendar-akci #table a.specialization.pers:before,
.section-calendar-of-events #table a.specialization.pers:before,
.section-kalendar-akcii #table a.specialization.pers:before,
.section-kariera #table a.specialization.pers:before,
.section-career #table a.specialization.pers:before {
  background-image: url("../icon/Personalistika.svg");
}
.section-kalendar-akci #table a.specialization.tech:before,
.section-calendar-of-events #table a.specialization.tech:before,
.section-kalendar-akcii #table a.specialization.tech:before,
.section-kariera #table a.specialization.tech:before,
.section-career #table a.specialization.tech:before {
  background-image: url("../icon/Technicke.svg");
}
.section-kalendar-akci #table a.specialization.vyro:before,
.section-calendar-of-events #table a.specialization.vyro:before,
.section-kalendar-akcii #table a.specialization.vyro:before,
.section-kariera #table a.specialization.vyro:before,
.section-career #table a.specialization.vyro:before {
  background-image: url("../icon/Vyroba.svg");
}
.section-kalendar-akci #table a.specialization.veda:before,
.section-calendar-of-events #table a.specialization.veda:before,
.section-kalendar-akcii #table a.specialization.veda:before,
.section-kariera #table a.specialization.veda:before,
.section-career #table a.specialization.veda:before {
  background-image: url("../icon/Vyzkum.svg");
}
.section-kalendar-akci #table a.specialization.proj:before,
.section-calendar-of-events #table a.specialization.proj:before,
.section-kalendar-akcii #table a.specialization.proj:before,
.section-kariera #table a.specialization.proj:before,
.section-career #table a.specialization.proj:before {
  background-image: url("../icon/Projektovani.svg");
}
.section-kalendar-akci #table a.specialization.mana:before,
.section-calendar-of-events #table a.specialization.mana:before,
.section-kalendar-akcii #table a.specialization.mana:before,
.section-kariera #table a.specialization.mana:before,
.section-career #table a.specialization.mana:before {
  background-image: url("../icon/Manazerske.svg");
}
.section-kalendar-akci #table a.specialization.vyst:before,
.section-calendar-of-events #table a.specialization.vyst:before,
.section-kalendar-akcii #table a.specialization.vyst:before,
.section-kariera #table a.specialization.vyst:before,
.section-career #table a.specialization.vyst:before {
  background-image: url("../icon/Vystavba.svg");
}
.section-kalendar-akci #table a.specialization--sk::before,
.section-calendar-of-events #table a.specialization--sk::before,
.section-kalendar-akcii #table a.specialization--sk::before,
.section-kariera #table a.specialization--sk::before,
.section-career #table a.specialization--sk::before {
  display: none;
  width: 0px;
  height: 0px;
}
.section-kalendar-akci a.specialization.specialization--sk,
.section-calendar-of-events a.specialization.specialization--sk,
.section-kalendar-akcii a.specialization.specialization--sk,
.section-kariera a.specialization.specialization--sk,
.section-career a.specialization.specialization--sk {
  font-weight: 600;
  color: #e30013;
}
.section-kalendar-akci .employment-row--sk,
.section-calendar-of-events .employment-row--sk,
.section-kalendar-akcii .employment-row--sk,
.section-kariera .employment-row--sk,
.section-career .employment-row--sk {
  padding-left: 0;
}
.section-kalendar-akci .employment-row--sk:hover,
.section-calendar-of-events .employment-row--sk:hover,
.section-kalendar-akcii .employment-row--sk:hover,
.section-kariera .employment-row--sk:hover,
.section-career .employment-row--sk:hover {
  background-color: #fff;
  color: #000;
}
.section-kalendar-akci .employment-row:before,
.section-calendar-of-events .employment-row:before,
.section-kalendar-akcii .employment-row:before,
.section-kariera .employment-row:before,
.section-career .employment-row:before,
.section-kalendar-akci .employment-row:after,
.section-calendar-of-events .employment-row:after,
.section-kalendar-akcii .employment-row:after,
.section-kariera .employment-row:after,
.section-career .employment-row:after {
  content: "";
  position: absolute;
  right: 0;
  width: 2px;
  height: 15px;
  background: #cccccc;
  transform: rotate(135deg);
  top: 4px;
  right: 20px;
}
.section-kalendar-akci .employment-row:after,
.section-calendar-of-events .employment-row:after,
.section-kalendar-akcii .employment-row:after,
.section-kariera .employment-row:after,
.section-career .employment-row:after {
  top: 14px;
  transform: rotate(225deg);
}
.section-kalendar-akci #table h2,
.section-calendar-of-events #table h2,
.section-kalendar-akcii #table h2,
.section-kariera #table h2,
.section-career #table h2 {
  margin: 30px 0px 15px 0px;
  font-size: 16pt;
}
.section-kalendar-akci #table,
.section-calendar-of-events #table,
.section-kalendar-akcii #table,
.section-kariera #table,
.section-career #table {
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 20px;
}
.section-kalendar-akci #table a.specialization > .employment-row,
.section-calendar-of-events #table a.specialization > .employment-row,
.section-kalendar-akcii #table a.specialization > .employment-row,
.section-kariera #table a.specialization > .employment-row,
.section-career #table a.specialization > .employment-row {
  padding-left: 30px;
  transition: 0.2s ease-in-out;
  transition-property: color, background-color;
}
.section-kalendar-akci .item[data-value] > span:first-child:before,
.section-calendar-of-events .item[data-value] > span:first-child:before,
.section-kalendar-akcii .item[data-value] > span:first-child:before,
.section-kariera .item[data-value] > span:first-child:before,
.section-career .item[data-value] > span:first-child:before {
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-left: -5px;
  margin-right: 10px;
  background-size: 25px 25px;
  background-repeat: no-repeat;
}
.section-kalendar-akci .item[data-value="NevybrÃ¡no"] > span:first-child:before,
.section-calendar-of-events .item[data-value="NevybrÃ¡no"] > span:first-child:before,
.section-kalendar-akcii .item[data-value="NevybrÃ¡no"] > span:first-child:before,
.section-kariera .item[data-value="NevybrÃ¡no"] > span:first-child:before,
.section-career .item[data-value="NevybrÃ¡no"] > span:first-child:before {
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-left: 0;
  margin-right: 0;
  background-size: 25px 25px;
  background-repeat: no-repeat;
}
.section-kalendar-akci .nameFilerSelect.administrativa:before,
.section-calendar-of-events .nameFilerSelect.administrativa:before,
.section-kalendar-akcii .nameFilerSelect.administrativa:before,
.section-kariera .nameFilerSelect.administrativa:before,
.section-career .nameFilerSelect.administrativa:before {
  background-image: url("../icon/Administrativa.svg");
}
.section-kalendar-akci .nameFilerSelect.finace-a-ucetnictvi:before,
.section-calendar-of-events .nameFilerSelect.finace-a-ucetnictvi:before,
.section-kalendar-akcii .nameFilerSelect.finace-a-ucetnictvi:before,
.section-kariera .nameFilerSelect.finace-a-ucetnictvi:before,
.section-career .nameFilerSelect.finace-a-ucetnictvi:before,
.section-kalendar-akci .nameFilerSelect.finance-a-ucetnictvi:before,
.section-calendar-of-events .nameFilerSelect.finance-a-ucetnictvi:before,
.section-kalendar-akcii .nameFilerSelect.finance-a-ucetnictvi:before,
.section-kariera .nameFilerSelect.finance-a-ucetnictvi:before,
.section-career .nameFilerSelect.finance-a-ucetnictvi:before,
.section-kalendar-akci .nameFilerSelect.financie-a-uctovnictvo:before,
.section-calendar-of-events .nameFilerSelect.financie-a-uctovnictvo:before,
.section-kalendar-akcii .nameFilerSelect.financie-a-uctovnictvo:before,
.section-kariera .nameFilerSelect.financie-a-uctovnictvo:before,
.section-career .nameFilerSelect.financie-a-uctovnictvo:before {
  background-image: url("../icon/Finance.svg");
}
.section-kalendar-akci .nameFilerSelect.it-is:before,
.section-calendar-of-events .nameFilerSelect.it-is:before,
.section-kalendar-akcii .nameFilerSelect.it-is:before,
.section-kariera .nameFilerSelect.it-is:before,
.section-career .nameFilerSelect.it-is:before {
  background-image: url("../icon/It.svg");
}
.section-kalendar-akci .nameFilerSelect.jine:before,
.section-calendar-of-events .nameFilerSelect.jine:before,
.section-kalendar-akcii .nameFilerSelect.jine:before,
.section-kariera .nameFilerSelect.jine:before,
.section-career .nameFilerSelect.jine:before,
.section-kalendar-akci .nameFilerSelect.ine:before,
.section-calendar-of-events .nameFilerSelect.ine:before,
.section-kalendar-akcii .nameFilerSelect.ine:before,
.section-kariera .nameFilerSelect.ine:before,
.section-career .nameFilerSelect.ine:before {
  background-image: url("../icon/Jine.svg");
}
.section-kalendar-akci .nameFilerSelect.logistika-a-doprava:before,
.section-calendar-of-events .nameFilerSelect.logistika-a-doprava:before,
.section-kalendar-akcii .nameFilerSelect.logistika-a-doprava:before,
.section-kariera .nameFilerSelect.logistika-a-doprava:before,
.section-career .nameFilerSelect.logistika-a-doprava:before,
.section-kalendar-akci .nameFilerSelect.logistika-a-sklad:before,
.section-calendar-of-events .nameFilerSelect.logistika-a-sklad:before,
.section-kalendar-akcii .nameFilerSelect.logistika-a-sklad:before,
.section-kariera .nameFilerSelect.logistika-a-sklad:before,
.section-career .nameFilerSelect.logistika-a-sklad:before {
  background-image: url("../icon/Logistika.svg");
}
.section-kalendar-akci .nameFilerSelect.marketing-a-pr:before,
.section-calendar-of-events .nameFilerSelect.marketing-a-pr:before,
.section-kalendar-akcii .nameFilerSelect.marketing-a-pr:before,
.section-kariera .nameFilerSelect.marketing-a-pr:before,
.section-career .nameFilerSelect.marketing-a-pr:before {
  background-image: url("../icon/Marketing.svg");
}
.section-kalendar-akci .nameFilerSelect.obchod-a-prodej:before,
.section-calendar-of-events .nameFilerSelect.obchod-a-prodej:before,
.section-kalendar-akcii .nameFilerSelect.obchod-a-prodej:before,
.section-kariera .nameFilerSelect.obchod-a-prodej:before,
.section-career .nameFilerSelect.obchod-a-prodej:before,
.section-kalendar-akci .nameFilerSelect.obchod-a-predaj:before,
.section-calendar-of-events .nameFilerSelect.obchod-a-predaj:before,
.section-kalendar-akcii .nameFilerSelect.obchod-a-predaj:before,
.section-kariera .nameFilerSelect.obchod-a-predaj:before,
.section-career .nameFilerSelect.obchod-a-predaj:before {
  background-image: url("../icon/Obchod.svg");
}
.section-kalendar-akci .nameFilerSelect.personalistika-a-hr:before,
.section-calendar-of-events .nameFilerSelect.personalistika-a-hr:before,
.section-kalendar-akcii .nameFilerSelect.personalistika-a-hr:before,
.section-kariera .nameFilerSelect.personalistika-a-hr:before,
.section-career .nameFilerSelect.personalistika-a-hr:before {
  background-image: url("../icon/Personalistika.svg");
}
.section-kalendar-akci .nameFilerSelect.technicke:before,
.section-calendar-of-events .nameFilerSelect.technicke:before,
.section-kalendar-akcii .nameFilerSelect.technicke:before,
.section-kariera .nameFilerSelect.technicke:before,
.section-career .nameFilerSelect.technicke:before {
  background-image: url("../icon/Technicke.svg");
}
.section-kalendar-akci .nameFilerSelect.vyroba:before,
.section-calendar-of-events .nameFilerSelect.vyroba:before,
.section-kalendar-akcii .nameFilerSelect.vyroba:before,
.section-kariera .nameFilerSelect.vyroba:before,
.section-career .nameFilerSelect.vyroba:before {
  background-image: url("../icon/Vyroba.svg");
}
.section-kalendar-akci .nameFilerSelect.veda-a-vyskum:before,
.section-calendar-of-events .nameFilerSelect.veda-a-vyskum:before,
.section-kalendar-akcii .nameFilerSelect.veda-a-vyskum:before,
.section-kariera .nameFilerSelect.veda-a-vyskum:before,
.section-career .nameFilerSelect.veda-a-vyskum:before,
.section-kalendar-akci .nameFilerSelect.veda-a-vyzkum:before,
.section-calendar-of-events .nameFilerSelect.veda-a-vyzkum:before,
.section-kalendar-akcii .nameFilerSelect.veda-a-vyzkum:before,
.section-kariera .nameFilerSelect.veda-a-vyzkum:before,
.section-career .nameFilerSelect.veda-a-vyzkum:before {
  background-image: url("../icon/Vyzkum.svg");
}
.section-kalendar-akci .nameFilerSelect.projektovani-a-dozor:before,
.section-calendar-of-events .nameFilerSelect.projektovani-a-dozor:before,
.section-kalendar-akcii .nameFilerSelect.projektovani-a-dozor:before,
.section-kariera .nameFilerSelect.projektovani-a-dozor:before,
.section-career .nameFilerSelect.projektovani-a-dozor:before,
.section-kalendar-akci .nameFilerSelect.projektovanie-a-dozor:before,
.section-calendar-of-events .nameFilerSelect.projektovanie-a-dozor:before,
.section-kalendar-akcii .nameFilerSelect.projektovanie-a-dozor:before,
.section-kariera .nameFilerSelect.projektovanie-a-dozor:before,
.section-career .nameFilerSelect.projektovanie-a-dozor:before {
  background-image: url("../icon/Projektovani.svg");
}
.section-kalendar-akci .nameFilerSelect.manazerske-pozice:before,
.section-calendar-of-events .nameFilerSelect.manazerske-pozice:before,
.section-kalendar-akcii .nameFilerSelect.manazerske-pozice:before,
.section-kariera .nameFilerSelect.manazerske-pozice:before,
.section-career .nameFilerSelect.manazerske-pozice:before,
.section-kalendar-akci .nameFilerSelect.manazerske-pozicie:before,
.section-calendar-of-events .nameFilerSelect.manazerske-pozicie:before,
.section-kalendar-akcii .nameFilerSelect.manazerske-pozicie:before,
.section-kariera .nameFilerSelect.manazerske-pozicie:before,
.section-career .nameFilerSelect.manazerske-pozicie:before {
  background-image: url("../icon/Manazerske.svg");
}
.section-kalendar-akci .nameFilerSelect.vystavba-a-sprava-majetku:before,
.section-calendar-of-events .nameFilerSelect.vystavba-a-sprava-majetku:before,
.section-kalendar-akcii .nameFilerSelect.vystavba-a-sprava-majetku:before,
.section-kariera .nameFilerSelect.vystavba-a-sprava-majetku:before,
.section-career .nameFilerSelect.vystavba-a-sprava-majetku:before {
  background-image: url("../icon/Vystavba.svg");
}
.section-kalendar-akci .nameFilerSelect.autodoprava:before,
.section-calendar-of-events .nameFilerSelect.autodoprava:before,
.section-kalendar-akcii .nameFilerSelect.autodoprava:before,
.section-kariera .nameFilerSelect.autodoprava:before,
.section-career .nameFilerSelect.autodoprava:before {
  background-image: url("../icon/Autodoprava.svg");
}
.section-kalendar-akci .nameFilerSelect.prodej-a-podpora-prodeje:before,
.section-calendar-of-events .nameFilerSelect.prodej-a-podpora-prodeje:before,
.section-kalendar-akcii .nameFilerSelect.prodej-a-podpora-prodeje:before,
.section-kariera .nameFilerSelect.prodej-a-podpora-prodeje:before,
.section-career .nameFilerSelect.prodej-a-podpora-prodeje:before {
  background-image: url("../icon/Prodej.svg");
}
.section-kalendar-akci .nameFilerSelect.obchodnicke-pozice:before,
.section-calendar-of-events .nameFilerSelect.obchodnicke-pozice:before,
.section-kalendar-akcii .nameFilerSelect.obchodnicke-pozice:before,
.section-kariera .nameFilerSelect.obchodnicke-pozice:before,
.section-career .nameFilerSelect.obchodnicke-pozice:before {
  background-image: url("../icon/Obchodni_pozice.svg");
}
.section-kalendar-akci span.nameFilerSelect,
.section-calendar-of-events span.nameFilerSelect,
.section-kalendar-akcii span.nameFilerSelect,
.section-kariera span.nameFilerSelect,
.section-career span.nameFilerSelect {
  font-weight: 400;
}
.section-kalendar-akci .list,
.section-calendar-of-events .list,
.section-kalendar-akcii .list,
.section-kariera .list,
.section-career .list {
  position: absolute;
  top: 38px;
  left: 10px;
  z-index: 2;
  background: white;
  padding: 15px 15px 15px 0px;
  min-width: 270px;
  max-height: 500px;
  overflow-y: auto;
  box-shadow: 0px 0px 7px #00000033;
  border: 1px solid #c3c3c3;
}
@media (max-width: 650px) {
  .section-kalendar-akci .list,
  .section-calendar-of-events .list,
  .section-kalendar-akcii .list,
  .section-kariera .list,
  .section-career .list {
    max-height: 40vh;
  }
}
.section-kalendar-akci .holder[data-name="uvazek"] .list,
.section-calendar-of-events .holder[data-name="uvazek"] .list,
.section-kalendar-akcii .holder[data-name="uvazek"] .list,
.section-kariera .holder[data-name="uvazek"] .list,
.section-career .holder[data-name="uvazek"] .list {
  left: inherit;
}
.section-kalendar-akci .holder[data-name="obor"] .list,
.section-calendar-of-events .holder[data-name="obor"] .list,
.section-kalendar-akcii .holder[data-name="obor"] .list,
.section-kariera .holder[data-name="obor"] .list,
.section-career .holder[data-name="obor"] .list {
  padding: 15px 15px;
  min-width: 300px;
}
.section-kalendar-akci .list > .item,
.section-calendar-of-events .list > .item,
.section-kalendar-akcii .list > .item,
.section-kariera .list > .item,
.section-career .list > .item {
  padding: 5px 0;
  position: relative;
}
.section-kalendar-akci .list > .item:hover:before,
.section-calendar-of-events .list > .item:hover:before,
.section-kalendar-akcii .list > .item:hover:before,
.section-kariera .list > .item:hover:before,
.section-career .list > .item:hover:before,
.section-kalendar-akci .list > .item:hover:after,
.section-calendar-of-events .list > .item:hover:after,
.section-kalendar-akcii .list > .item:hover:after,
.section-kariera .list > .item:hover:after,
.section-career .list > .item:hover:after {
  content: "";
  position: absolute;
  display: block;
  top: 8px;
  right: 8px;
  width: 2px;
  height: 14px;
  opacity: 0.5;
  background: #e30013;
  transform: rotate(45deg);
}
.section-kalendar-akci .list > .item:hover:after,
.section-calendar-of-events .list > .item:hover:after,
.section-kalendar-akcii .list > .item:hover:after,
.section-kariera .list > .item:hover:after,
.section-career .list > .item:hover:after {
  height: 8px;
  right: 15px;
  top: 13px;
  transform: rotate(-45deg);
}
.section-kalendar-akci #employment,
.section-calendar-of-events #employment,
.section-kalendar-akcii #employment,
.section-kariera #employment,
.section-career #employment {
  display: flex;
  border-bottom: 1px solid #d8d8d8;
  border-top: 1px solid #d8d8d8;
  padding: 5px 0;
}
.section-kalendar-akci .selected-value,
.section-calendar-of-events .selected-value,
.section-kalendar-akcii .selected-value,
.section-kariera .selected-value,
.section-career .selected-value {
  padding: 10px 8px;
  position: relative;
}
@media (max-width: 959px) {
  .section-kalendar-akci .selected-value,
  .section-calendar-of-events .selected-value,
  .section-kalendar-akcii .selected-value,
  .section-kariera .selected-value,
  .section-career .selected-value {
    padding: 10px 4px 10px 0px;
  }
}
@media (max-width: 959px) {
  .section-kalendar-akci .selected-value,
  .section-calendar-of-events .selected-value,
  .section-kalendar-akcii .selected-value,
  .section-kariera .selected-value,
  .section-career .selected-value {
    font-size: 12px;
  }
  .section-kalendar-akci .selected-value span,
  .section-calendar-of-events .selected-value span,
  .section-kalendar-akcii .selected-value span,
  .section-kariera .selected-value span,
  .section-career .selected-value span {
    display: flex;
    flex-direction: row;
  }
}
.section-kalendar-akci .clear,
.section-calendar-of-events .clear,
.section-kalendar-akcii .clear,
.section-kariera .clear,
.section-career .clear,
.section-kalendar-akci .null-value,
.section-calendar-of-events .null-value,
.section-kalendar-akcii .null-value,
.section-kariera .null-value,
.section-career .null-value,
.section-kalendar-akci .selected,
.section-calendar-of-events .selected,
.section-kalendar-akcii .selected,
.section-kariera .selected,
.section-career .selected {
  margin-left: 10px;
  width: 15px;
  height: 15px;
  position: relative;
  display: inline-block;
}
.section-kalendar-akci .clear:before,
.section-calendar-of-events .clear:before,
.section-kalendar-akcii .clear:before,
.section-kariera .clear:before,
.section-career .clear:before,
.section-kalendar-akci .clear:after,
.section-calendar-of-events .clear:after,
.section-kalendar-akcii .clear:after,
.section-kariera .clear:after,
.section-career .clear:after,
.section-kalendar-akci .null-value:before,
.section-calendar-of-events .null-value:before,
.section-kalendar-akcii .null-value:before,
.section-kariera .null-value:before,
.section-career .null-value:before,
.section-kalendar-akci .null-value:after,
.section-calendar-of-events .null-value:after,
.section-kalendar-akcii .null-value:after,
.section-kariera .null-value:after,
.section-career .null-value:after,
.section-kalendar-akci .selected:before,
.section-calendar-of-events .selected:before,
.section-kalendar-akcii .selected:before,
.section-kariera .selected:before,
.section-career .selected:before,
.section-kalendar-akci .selected:after,
.section-calendar-of-events .selected:after,
.section-kalendar-akcii .selected:after,
.section-kariera .selected:after,
.section-career .selected:after {
  content: "";
  position: absolute;
  display: block;
  top: 3px;
  left: 0;
  width: 2px;
  height: 14px;
  background: #464646;
  transform: rotate(45deg);
}
@media (max-width: 959px) {
  .section-kalendar-akci .clear:before,
  .section-calendar-of-events .clear:before,
  .section-kalendar-akcii .clear:before,
  .section-kariera .clear:before,
  .section-career .clear:before,
  .section-kalendar-akci .clear:after,
  .section-calendar-of-events .clear:after,
  .section-kalendar-akcii .clear:after,
  .section-kariera .clear:after,
  .section-career .clear:after,
  .section-kalendar-akci .null-value:before,
  .section-calendar-of-events .null-value:before,
  .section-kalendar-akcii .null-value:before,
  .section-kariera .null-value:before,
  .section-career .null-value:before,
  .section-kalendar-akci .null-value:after,
  .section-calendar-of-events .null-value:after,
  .section-kalendar-akcii .null-value:after,
  .section-kariera .null-value:after,
  .section-career .null-value:after,
  .section-kalendar-akci .selected:before,
  .section-calendar-of-events .selected:before,
  .section-kalendar-akcii .selected:before,
  .section-kariera .selected:before,
  .section-career .selected:before,
  .section-kalendar-akci .selected:after,
  .section-calendar-of-events .selected:after,
  .section-kalendar-akcii .selected:after,
  .section-kariera .selected:after,
  .section-career .selected:after {
    height: 10px;
    width: 1px;
  }
}
.section-kalendar-akci .selected,
.section-calendar-of-events .selected,
.section-kalendar-akcii .selected,
.section-kariera .selected,
.section-career .selected {
  margin-left: 0;
  float: right;
}
.section-kalendar-akci .selected + span,
.section-calendar-of-events .selected + span,
.section-kalendar-akcii .selected + span,
.section-kariera .selected + span,
.section-career .selected + span {
  font-weight: bold;
}
.section-kalendar-akci .clear:hover:before,
.section-calendar-of-events .clear:hover:before,
.section-kalendar-akcii .clear:hover:before,
.section-kariera .clear:hover:before,
.section-career .clear:hover:before,
.section-kalendar-akci .clear:hover:after,
.section-calendar-of-events .clear:hover:after,
.section-kalendar-akcii .clear:hover:after,
.section-kariera .clear:hover:after,
.section-career .clear:hover:after,
.section-kalendar-akci .null-value:hover:before,
.section-calendar-of-events .null-value:hover:before,
.section-kalendar-akcii .null-value:hover:before,
.section-kariera .null-value:hover:before,
.section-career .null-value:hover:before,
.section-kalendar-akci .null-value:hover:after,
.section-calendar-of-events .null-value:hover:after,
.section-kalendar-akcii .null-value:hover:after,
.section-kariera .null-value:hover:after,
.section-career .null-value:hover:after,
.section-kalendar-akci .slected:hover:before,
.section-calendar-of-events .slected:hover:before,
.section-kalendar-akcii .slected:hover:before,
.section-kariera .slected:hover:before,
.section-career .slected:hover:before,
.section-kalendar-akci .selected:after,
.section-calendar-of-events .selected:after,
.section-kalendar-akcii .selected:after,
.section-kariera .selected:after,
.section-career .selected:after,
.section-kalendar-akci .selected:before,
.section-calendar-of-events .selected:before,
.section-kalendar-akcii .selected:before,
.section-kariera .selected:before,
.section-career .selected:before {
  background: #e30013;
}
.section-kalendar-akci .clear:after,
.section-calendar-of-events .clear:after,
.section-kalendar-akcii .clear:after,
.section-kariera .clear:after,
.section-career .clear:after,
.section-kalendar-akci .null-value:after,
.section-calendar-of-events .null-value:after,
.section-kalendar-akcii .null-value:after,
.section-kariera .null-value:after,
.section-career .null-value:after,
.section-kalendar-akci .selected:after,
.section-calendar-of-events .selected:after,
.section-kalendar-akcii .selected:after,
.section-kariera .selected:after,
.section-career .selected:after {
  transform: rotate(-45deg);
}
.section-kalendar-akci .selected:after,
.section-calendar-of-events .selected:after,
.section-kalendar-akcii .selected:after,
.section-kariera .selected:after,
.section-career .selected:after {
  height: 8px;
  left: -2px;
  top: 8px;
}
.section-kalendar-akci .selected:before,
.section-calendar-of-events .selected:before,
.section-kalendar-akcii .selected:before,
.section-kariera .selected:before,
.section-career .selected:before {
  left: 5px;
}
.section-kalendar-akci .null-value:before,
.section-calendar-of-events .null-value:before,
.section-kalendar-akcii .null-value:before,
.section-kariera .null-value:before,
.section-career .null-value:before {
  left: 9px;
}
@media (max-width: 959px) {
  .section-kalendar-akci .null-value:before,
  .section-calendar-of-events .null-value:before,
  .section-kalendar-akcii .null-value:before,
  .section-kariera .null-value:before,
  .section-career .null-value:before {
    left: 7px;
  }
}
.section-kalendar-akci .holder,
.section-calendar-of-events .holder,
.section-kalendar-akcii .holder,
.section-kariera .holder,
.section-career .holder {
  width: 100%;
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin: 0 5px;
  font-size: 18px;
  font-weight: 600;
}
.section-kalendar-akci .holder .carr-sellector,
.section-calendar-of-events .holder .carr-sellector,
.section-kalendar-akcii .holder .carr-sellector,
.section-kariera .holder .carr-sellector,
.section-career .holder .carr-sellector {
  display: flex;
  align-items: center;
}
@media (max-width: 959px) {
  .section-kalendar-akci .holder .carr-sellector,
  .section-calendar-of-events .holder .carr-sellector,
  .section-kalendar-akcii .holder .carr-sellector,
  .section-kariera .holder .carr-sellector,
  .section-career .holder .carr-sellector {
    font-size: 12px;
  }
}
.section-kalendar-akci .holder .list,
.section-calendar-of-events .holder .list,
.section-kalendar-akcii .holder .list,
.section-kariera .holder .list,
.section-career .holder .list {
  font-size: 16px;
}
.section-kalendar-akci .confirm,
.section-calendar-of-events .confirm,
.section-kalendar-akcii .confirm,
.section-kariera .confirm,
.section-career .confirm {
  display: none;
  background-image: url(/assets/desert.jpg);
  background-size: 30% auto;
  background-position: 20px calc(100% - 20px);
  height: 300px;
  width: 500px;
  position: fixed;
  top: calc(50% - 150px);
  left: calc(50% - 250px);
  z-index: 999;
  background-color: #fff;
  background-repeat: no-repeat;
  box-shadow: 0px 0px 7px #707070 inset;
  padding: 25px 20px;
}
.section-kalendar-akci .confirm > .cross,
.section-calendar-of-events .confirm > .cross,
.section-kalendar-akcii .confirm > .cross,
.section-kariera .confirm > .cross,
.section-career .confirm > .cross {
  top: 10px;
  right: 10px;
}
.section-kalendar-akci .confirm > .cross:after,
.section-calendar-of-events .confirm > .cross:after,
.section-kalendar-akcii .confirm > .cross:after,
.section-kariera .confirm > .cross:after,
.section-career .confirm > .cross:after,
.section-kalendar-akci .confirm > .cross:before,
.section-calendar-of-events .confirm > .cross:before,
.section-kalendar-akcii .confirm > .cross:before,
.section-kariera .confirm > .cross:before,
.section-career .confirm > .cross:before {
  height: 15px;
  background-color: #e30013;
}
.section-kalendar-akci .confirm .btn,
.section-calendar-of-events .confirm .btn,
.section-kalendar-akcii .confirm .btn,
.section-kariera .confirm .btn,
.section-career .confirm .btn {
  position: absolute;
  bottom: 30px;
  right: 10px;
  font-weight: bold;
}
.section-kalendar-akci .confirm > p,
.section-calendar-of-events .confirm > p,
.section-kalendar-akcii .confirm > p,
.section-kariera .confirm > p,
.section-career .confirm > p {
  margin-top: 10px;
}
.section-kalendar-akci .confirm > strong,
.section-calendar-of-events .confirm > strong,
.section-kalendar-akcii .confirm > strong,
.section-kariera .confirm > strong,
.section-career .confirm > strong {
  font-size: 15px;
}
.section-kalendar-akci iframe,
.section-calendar-of-events iframe,
.section-kalendar-akcii iframe,
.section-kariera iframe,
.section-career iframe {
  width: 100%;
  max-width: 980px;
}
.section-kalendar-akci #employment-table,
.section-calendar-of-events #employment-table,
.section-kalendar-akcii #employment-table,
.section-kariera #employment-table,
.section-career #employment-table {
  border-top: 1px solid #f6f6f6;
  border-bottom: 1px solid #f6f6f6;
}
.section-kalendar-akci #employment-table > .position,
.section-calendar-of-events #employment-table > .position,
.section-kalendar-akcii #employment-table > .position,
.section-kariera #employment-table > .position,
.section-career #employment-table > .position {
  display: block;
  position: relative;
  cursor: pointer;
}
.section-kalendar-akci #employment-table span.icon,
.section-calendar-of-events #employment-table span.icon,
.section-kalendar-akcii #employment-table span.icon,
.section-kariera #employment-table span.icon,
.section-career #employment-table span.icon {
  width: 18px;
  height: 22px;
}
.section-kalendar-akci #employment-table span.title,
.section-calendar-of-events #employment-table span.title,
.section-kalendar-akcii #employment-table span.title,
.section-kariera #employment-table span.title,
.section-career #employment-table span.title {
  color: #e30013;
}
.section-kalendar-akci #employment-table span.title:after,
.section-calendar-of-events #employment-table span.title:after,
.section-kalendar-akcii #employment-table span.title:after,
.section-kariera #employment-table span.title:after,
.section-career #employment-table span.title:after {
  content: "/";
  color: #000;
  margin: 0 7px;
}
.section-kalendar-akci #employment-table > .position:after,
.section-calendar-of-events #employment-table > .position:after,
.section-kalendar-akcii #employment-table > .position:after,
.section-kariera #employment-table > .position:after,
.section-career #employment-table > .position:after,
.section-kalendar-akci #employment-table > .position:before,
.section-calendar-of-events #employment-table > .position:before,
.section-kalendar-akcii #employment-table > .position:before,
.section-kariera #employment-table > .position:before,
.section-career #employment-table > .position:before {
  content: "";
  right: 30px;
  position: absolute;
  display: block;
  height: 14px;
  width: 2.5px;
  background-color: #c3c3c3;
}
.section-kalendar-akci #employment-table > .position:after,
.section-calendar-of-events #employment-table > .position:after,
.section-kalendar-akcii #employment-table > .position:after,
.section-kariera #employment-table > .position:after,
.section-career #employment-table > .position:after {
  transform: rotate(45deg);
  top: 19px;
}
.section-kalendar-akci #employment-table > .position:before,
.section-calendar-of-events #employment-table > .position:before,
.section-kalendar-akcii #employment-table > .position:before,
.section-kariera #employment-table > .position:before,
.section-career #employment-table > .position:before {
  transform: rotate(-45deg);
  top: 10px;
}
.section-kalendar-akci #employment-table > .position:hover:after,
.section-calendar-of-events #employment-table > .position:hover:after,
.section-kalendar-akcii #employment-table > .position:hover:after,
.section-kariera #employment-table > .position:hover:after,
.section-career #employment-table > .position:hover:after {
  content: "detail nabÃƒÂ­dky";
  text-decoration: underline;
  transform: none;
  right: 40px;
  width: auto;
  background: none;
}
.section-kalendar-akci #employment-table > .position:hover:before,
.section-calendar-of-events #employment-table > .position:hover:before,
.section-kalendar-akcii #employment-table > .position:hover:before,
.section-kariera #employment-table > .position:hover:before,
.section-career #employment-table > .position:hover:before,
.section-kalendar-akci #employment-table > .position:hover .icon,
.section-calendar-of-events #employment-table > .position:hover .icon,
.section-kalendar-akcii #employment-table > .position:hover .icon,
.section-kariera #employment-table > .position:hover .icon,
.section-career #employment-table > .position:hover .icon {
  display: none;
}
.section-kalendar-akci #employment-table > .position:hover,
.section-calendar-of-events #employment-table > .position:hover,
.section-kalendar-akcii #employment-table > .position:hover,
.section-kariera #employment-table > .position:hover,
.section-career #employment-table > .position:hover,
.section-kalendar-akci .position:hover .title,
.section-calendar-of-events .position:hover .title,
.section-kalendar-akcii .position:hover .title,
.section-kariera .position:hover .title,
.section-career .position:hover .title,
.section-kalendar-akci .position:hover .title:after,
.section-calendar-of-events .position:hover .title:after,
.section-kalendar-akcii .position:hover .title:after,
.section-kariera .position:hover .title:after,
.section-career .position:hover .title:after {
  color: #fff !important;
}
.section-kalendar-akci .position:hover .title,
.section-calendar-of-events .position:hover .title,
.section-kalendar-akcii .position:hover .title,
.section-kariera .position:hover .title,
.section-career .position:hover .title {
  font-weight: bold;
}
.section-kalendar-akci #filter,
.section-calendar-of-events #filter,
.section-kalendar-akcii #filter,
.section-kariera #filter,
.section-career #filter {
  max-width: 980px;
  margin: auto;
  justify-content: center;
}
.section-kalendar-akci #filter > *,
.section-calendar-of-events #filter > *,
.section-kalendar-akcii #filter > *,
.section-kariera #filter > *,
.section-career #filter > * {
  padding: 0;
  flex-grow: 0;
}
.section-kalendar-akci #filter .btn,
.section-calendar-of-events #filter .btn,
.section-kalendar-akcii #filter .btn,
.section-kariera #filter .btn,
.section-career #filter .btn {
  white-space: nowrap;
  border-radius: 30px;
  font-size: 16px;
  display: inline-block;
  min-width: 0px;
  width: auto;
  padding: 0px 30px;
  height: 37px;
  margin: 0 7px;
  line-height: 2.5;
  transition: all 0.2s ease-in-out;
}
.section-kalendar-akci #filter .btn:not(.red):hover,
.section-calendar-of-events #filter .btn:not(.red):hover,
.section-kalendar-akcii #filter .btn:not(.red):hover,
.section-kariera #filter .btn:not(.red):hover,
.section-career #filter .btn:not(.red):hover {
  background: #d8d8d8;
}
.section-kalendar-akci .grid,
.section-calendar-of-events .grid,
.section-kalendar-akcii .grid,
.section-kariera .grid,
.section-career .grid {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-around;
}
.section-kalendar-akci .grid > *,
.section-calendar-of-events .grid > *,
.section-kalendar-akcii .grid > *,
.section-kariera .grid > *,
.section-career .grid > * {
  width: 33%;
  display: inline-block;
  padding: 15px 0;
}
.section-kalendar-akci .grid img,
.section-calendar-of-events .grid img,
.section-kalendar-akcii .grid img,
.section-kariera .grid img,
.section-career .grid img {
  margin-left: auto;
  margin-right: auto;
  height: 154px;
  width: 154px;
  display: block;
  border-radius: 50%;
}
.section-kalendar-akci .grid p,
.section-calendar-of-events .grid p,
.section-kalendar-akcii .grid p,
.section-kariera .grid p,
.section-career .grid p,
.section-kalendar-akci .grid strong,
.section-calendar-of-events .grid strong,
.section-kalendar-akcii .grid strong,
.section-kariera .grid strong,
.section-career .grid strong {
  padding: 0 15px;
}
.section-kalendar-akci .grid > *:nth-child(2n + 1),
.section-calendar-of-events .grid > *:nth-child(2n + 1),
.section-kalendar-akcii .grid > *:nth-child(2n + 1),
.section-kariera .grid > *:nth-child(2n + 1),
.section-career .grid > *:nth-child(2n + 1) {
  background-color: #f6f6f6;
}
.section-kalendar-akci #candidate,
.section-calendar-of-events #candidate,
.section-kalendar-akcii #candidate,
.section-kariera #candidate,
.section-career #candidate {
  display: flex;
  justify-content: center;
  background: #f9f9f9;
  flex-direction: column;
}
.section-kalendar-akci #candidate h1,
.section-calendar-of-events #candidate h1,
.section-kalendar-akcii #candidate h1,
.section-kariera #candidate h1,
.section-career #candidate h1 {
  text-align: center;
  padding-bottom: 20px;
}
.section-kalendar-akci #candidate table,
.section-calendar-of-events #candidate table,
.section-kalendar-akcii #candidate table,
.section-kariera #candidate table,
.section-career #candidate table {
  background: #fff;
  padding: 20px;
}
.section-kalendar-akci #candidate td,
.section-calendar-of-events #candidate td,
.section-kalendar-akcii #candidate td,
.section-kariera #candidate td,
.section-career #candidate td {
  padding: 0 11px;
}
.section-kalendar-akci #candidate td:not(.required),
.section-calendar-of-events #candidate td:not(.required),
.section-kalendar-akcii #candidate td:not(.required),
.section-kariera #candidate td:not(.required),
.section-career #candidate td:not(.required) {
  padding-bottom: 14px;
}
.section-kalendar-akci #candidate .cross,
.section-calendar-of-events #candidate .cross,
.section-kalendar-akcii #candidate .cross,
.section-kariera #candidate .cross,
.section-career #candidate .cross {
  top: calc(50% - 7px);
  right: 15px;
}
.section-kalendar-akci #candidate .cross:before,
.section-calendar-of-events #candidate .cross:before,
.section-kalendar-akcii #candidate .cross:before,
.section-kariera #candidate .cross:before,
.section-career #candidate .cross:before,
.section-kalendar-akci #candidate .cross:after,
.section-calendar-of-events #candidate .cross:after,
.section-kalendar-akcii #candidate .cross:after,
.section-kariera #candidate .cross:after,
.section-career #candidate .cross:after {
  height: 15px;
}
.section-kalendar-akci #candidate .btn,
.section-calendar-of-events #candidate .btn,
.section-kalendar-akcii #candidate .btn,
.section-kariera #candidate .btn,
.section-career #candidate .btn {
  cursor: pointer;
  border: none;
  font-size: 13px;
  border-radius: 17px;
  height: 33px;
  display: block;
  line-height: 2.8;
  text-align: center;
  padding: 0 26px;
  text-transform: uppercase;
  min-width: 120px;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
.section-kalendar-akci #candidate .btn,
.section-calendar-of-events #candidate .btn,
.section-kalendar-akcii #candidate .btn,
.section-kariera #candidate .btn,
.section-career #candidate .btn {
  /*
            position     : absolute;
            bottom       : 30px;
            left         : calc(50% - 60px);
            width        : 120px !important;
            height       : 40px !important;
            border-radius: 20px !important;
            font-weight  : 800;
*/
  margin-bottom: 30px;
}
.section-kalendar-akci #candidate #agree .checkmark,
.section-calendar-of-events #candidate #agree .checkmark,
.section-kalendar-akcii #candidate #agree .checkmark,
.section-kariera #candidate #agree .checkmark,
.section-career #candidate #agree .checkmark {
  position: absolute;
  background: #fff;
  border: 1px solid #c3c3c3;
  width: 16px;
  height: 16px;
  top: 0px;
  left: -20px;
  cursor: pointer;
}
.section-kalendar-akci #candidate .btn.red,
.section-calendar-of-events #candidate .btn.red,
.section-kalendar-akcii #candidate .btn.red,
.section-kariera #candidate .btn.red,
.section-career #candidate .btn.red {
  background-color: #e30013;
  color: #fff;
}
.section-kalendar-akci #candidate #files,
.section-calendar-of-events #candidate #files,
.section-kalendar-akcii #candidate #files,
.section-kariera #candidate #files,
.section-career #candidate #files {
  padding-top: 0 !important;
  display: flex;
  flex-direction: column-reverse;
}
.section-kalendar-akci #candidate label.upload,
.section-calendar-of-events #candidate label.upload,
.section-kalendar-akcii #candidate label.upload,
.section-kariera #candidate label.upload,
.section-career #candidate label.upload,
.section-kalendar-akci #candidate .js-fakeinput input,
.section-calendar-of-events #candidate .js-fakeinput input,
.section-kalendar-akcii #candidate .js-fakeinput input,
.section-kariera #candidate .js-fakeinput input,
.section-career #candidate .js-fakeinput input,
.section-kalendar-akci #candidate .fakeinput input,
.section-calendar-of-events #candidate .fakeinput input,
.section-kalendar-akcii #candidate .fakeinput input,
.section-kariera #candidate .fakeinput input,
.section-career #candidate .fakeinput input {
  cursor: pointer;
}
.section-kalendar-akci #candidate label.upload:before,
.section-calendar-of-events #candidate label.upload:before,
.section-kalendar-akcii #candidate label.upload:before,
.section-kariera #candidate label.upload:before,
.section-career #candidate label.upload:before {
  content: "\002B";
  background: #e8313f;
  width: 20px;
  height: 20px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  margin-right: 10px;
  line-height: 20px;
}
.section-kalendar-akci #candidate label.upload:hover:before,
.section-calendar-of-events #candidate label.upload:hover:before,
.section-kalendar-akcii #candidate label.upload:hover:before,
.section-kariera #candidate label.upload:hover:before,
.section-career #candidate label.upload:hover:before {
  background: #ca0011;
  color: #fff;
}
.section-kalendar-akci .w-career__back,
.section-calendar-of-events .w-career__back,
.section-kalendar-akcii .w-career__back,
.section-kariera .w-career__back,
.section-career .w-career__back {
  width: calc(100% - 120px);
  padding-top: 20px;
}
@media (max-width: 959px) {
  .section-kalendar-akci .w-career__back,
  .section-calendar-of-events .w-career__back,
  .section-kalendar-akcii .w-career__back,
  .section-kariera .w-career__back,
  .section-career .w-career__back {
    width: calc(100% - 60px);
  }
}
.section-kalendar-akci .career__back,
.section-calendar-of-events .career__back,
.section-kalendar-akcii .career__back,
.section-kariera .career__back,
.section-career .career__back {
  color: #ccc;
}
.section-kalendar-akci .career__back .notrequired,
.section-calendar-of-events .career__back .notrequired,
.section-kalendar-akcii .career__back .notrequired,
.section-kariera .career__back .notrequired,
.section-career .career__back .notrequired {
  width: calc(50% - 10px);
}
.section-kalendar-akci .career__back:before,
.section-calendar-of-events .career__back:before,
.section-kalendar-akcii .career__back:before,
.section-kariera .career__back:before,
.section-career .career__back:before {
  content: url(../icon/arrows-gray.svg);
  width: 20px;
  height: 27px;
  display: inline-block;
  margin-right: 6px;
  transform: rotate(180deg);
}
.section-kalendar-akci .career__additionalinfo,
.section-calendar-of-events .career__additionalinfo,
.section-kalendar-akcii .career__additionalinfo,
.section-kariera .career__additionalinfo,
.section-career .career__additionalinfo {
  margin: 3rem auto;
  max-width: 980px;
}
.section-kalendar-akci .career__additionalinfo a,
.section-calendar-of-events .career__additionalinfo a,
.section-kalendar-akcii .career__additionalinfo a,
.section-kariera .career__additionalinfo a,
.section-career .career__additionalinfo a {
  font-weight: bold;
  text-decoration: underline;
  color: #000;
}
.section-kalendar-akci .career__list,
.section-calendar-of-events .career__list,
.section-kalendar-akcii .career__list,
.section-kariera .career__list,
.section-career .career__list {
  list-style: none;
}
.section-kalendar-akci .career__list .required,
.section-calendar-of-events .career__list .required,
.section-kalendar-akcii .career__list .required,
.section-kariera .career__list .required,
.section-career .career__list .required {
  width: 100%;
}
.section-kalendar-akci .career__list .notrequired,
.section-calendar-of-events .career__list .notrequired,
.section-kalendar-akcii .career__list .notrequired,
.section-kariera .career__list .notrequired,
.section-career .career__list .notrequired {
  width: 100%;
}
.section-kalendar-akci .career__list li::before,
.section-calendar-of-events .career__list li::before,
.section-kalendar-akcii .career__list li::before,
.section-kariera .career__list li::before,
.section-career .career__list li::before {
  content: "\2022";
  color: #e30013;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.dotaznik_pro_uchazece {
  width: calc(100% - 30px);
  max-width: 550px;
}
.dotaznik_pro_uchazece h1 {
  font-size: 32px;
  margin-top: 40px;
}
.dotaznik_pro_uchazece input:not([type="checkbox"]),
.dotaznik_pro_uchazece select,
.dotaznik_pro_uchazece textarea {
  width: 100%;
  display: block;
  padding: 13px 19px;
  border: 1px solid #c3c3c3;
  margin-top: 5px;
  font-size: 14px;
}
.dotaznik_pro_uchazece textarea {
  resize: vertical;
}
.dotaznik_pro_uchazece div.fakeinput {
  position: relative;
  min-height: 44px;
  width: 100%;
  display: block;
  padding: 13px 19px;
  border: 1px solid #c3c3c3;
  margin-top: 5px;
  font-size: 14px;
  background: #fff;
}
.dotaznik_pro_uchazece div.fakeinput .cross {
  cursor: pointer;
  position: absolute;
  right: 30px;
  width: 15px;
  height: 15px;
  top: calc(50% - 7.5px);
}
.dotaznik_pro_uchazece div.fakeinput .cross:before,
.dotaznik_pro_uchazece div.fakeinput .cross:after {
  position: absolute;
  content: "";
  height: 22px;
  width: 2px;
  background-color: #464646;
  top: 50%;
  margin-top: -8px;
  left: 50%;
  margin-left: -1px;
  z-index: 2;
}
.dotaznik_pro_uchazece div.fakeinput .cross:before {
  transform: rotate(-45deg);
}
.dotaznik_pro_uchazece div.fakeinput .cross:after {
  transform: rotate(45deg);
}
.dotaznik_pro_uchazece div.fakeinput .cross:hover:before,
.dotaznik_pro_uchazece div.fakeinput .cross:hover:after {
  background-color: #707070;
}
.dotaznik_pro_uchazece .dotaznik_oneline {
  display: flex;
  justify-content: space-between;
}
.dotaznik_pro_uchazece .dotaznik_oneline .required {
  width: calc(50% - 10px);
}
.dotaznik_pro_uchazece .dotaznik_oneline .required input {
  width: 100%;
}
@media (max-width: 639px) {
  .dotaznik_pro_uchazece .dotaznik_oneline {
    display: block;
  }
  .dotaznik_pro_uchazece .dotaznik_oneline .required {
    width: 100%;
  }
}
.dotaznik_pro_uchazece #agree input[type="checkbox"]:checked ~ .checkmark:after {
  content: "\2714";
  font-size: 18px;
  top: -3px;
  color: #464646;
  position: absolute;
  left: 1px;
}
.kvdd2 {
  margin-right: 60px;
}
@media (min-width: 1300px) {
  .lid-wrap {
    margin: 0 auto;
    max-width: 1300px;
  }
}
@media (max-width: 650px) {
  .kvdd {
    flex-direction: column;
  }
  .kvdd1 {
    margin-right: 2rem;
  }
}
@media (max-width: 1300px) {
  .kvdd1 {
    margin-left: 2rem;
  }
  .kvdd2 {
    margin-right: calc(2rem + 60px);
  }
}
.section-kariera #candidate .btn.red,
.section-career #candidate .btn.red {
  background-color: #e30013;
  color: #fff;
  font-size: 16px;
  border-radius: 25px;
  width: 156px;
  height: 50px;
  margin-top: 30px;
  margin-bottom: -25px;
  padding: 0;
  outline: none;
}
.section-kariera #candidate .btn.red:hover,
.section-career #candidate .btn.red:hover {
  background-color: #ca0011;
  color: #fff;
}
.section-career #candidate {
  padding-bottom: 4rem;
  margin-bottom: 1rem;
}
.dotaznik_pro_uchazece .fakeinputHide {
  display: none;
}
@media (max-width: 485px) {
  .section-kariera #candidate td,
  .section-career #candidate td {
    display: flex;
    flex-direction: column;
  }
}
.section-career form#candidate {
  margin-top: 2rem;
}
#employment-zero {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
#employment-zero a.btn {
  cursor: pointer;
  border: none;
  display: block;
  line-height: 2.6;
  text-transform: uppercase;
  background-color: #e30013;
  color: #fff;
  font-size: 16px;
  border-radius: 25px;
  width: 200px;
  height: 40px;
  margin-top: 30px;
  margin-bottom: 50px;
  padding: 0;
  outline: none;
  text-align: center;
}
#employment-zero a.btn:hover {
  background-color: #ca0011;
}
#employment-zero .clear {
  margin-left: 0;
}
#employment-zero .clear:before,
#employment-zero .clear:after {
  background: #fff;
  top: 2px;
}
@media (max-width: 959px) {
  #employment-zero .clear:before,
  #employment-zero .clear:after {
    top: 4px;
  }
}
#employment-zero a.btn.sk {
  width: 210px;
}
@media (max-width: 959px) {
  #employment-zero .hide-on-mobile {
    display: none;
  }
}
.vue-cookies-form {
  --checkbox-bg: #58bc00;
  --title-bg: #f2f2f2;
  --title-color: #888;
  --sub-title-color: #464646;
}
.vue-cookies-bar {
  --color: #464646;
  --background: #fcfbde;
  --radius: 4px;
  --z-index: 10;
}
.v-coo-f {
  margin-bottom: 30px;
}
.v-coo-f__buttons {
  display: flex;
}
.v-coo-f__buttons button {
  margin-right: 18px;
  margin-bottom: 18px;
}
.v-coo-f__buttons button:last-child {
  margin-right: 0;
}
.v-coo-f__box {
  margin-bottom: 18px;
  border: 1px solid #dfdfdf;
  border-radius: 4px;
}
.v-coo-f__header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f2f2f2;
  background-color: #f2f2f2;
  border-bottom: 1px solid var(--title-bg);
  background-color: var(--title-bg);
  padding: 25px;
}
.v-coo-f__button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  padding: 5px 10px;
  line-height: 1.4;
  text-decoration: none !important;
  background-color: #fff;
  border: 1px solid #464646;
  color: #464646;
  border-radius: 4px;
  transition: all 0.15s ease-in-out;
}
.v-coo-f__button-green {
  background-color: #58bc00;
  border: 1px solid #58bc00;
  color: #fff;
}
.v-coo-f__button-dark {
  background-color: #464646;
  border: 1px solid #464646;
  color: #fff;
}
.v-coo-f__titles {
  flex: 1 1 0;
  font-weight: 600;
  font-size: 18px;
  margin-right: 20px;
}
.v-coo-f__title {
  color: #888;
  color: var(--title-color);
  font-size: 16px;
}
.v-coo-f__sub-title {
  font-weight: 600;
  color: #464646;
  color: var(--sub-title-color);
  font-size: 18px;
}
.v-coo-f__checkbox {
  margin: 0;
}
.v-coo-f__checkbox__input {
  width: 36px;
  height: 18px;
  margin: 4.5px 9px 0 0;
  vertical-align: top;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 1px solid #c3c3c3;
  border-radius: 26px;
  transition: background-position 0.15s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
}
.v-coo-f__checkbox__input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  background-color: #58bc00;
  border-color: #58bc00;
  background-color: var(--checkbox-bg);
  border-color: var(--checkbox-bg);
}
.v-coo-f__text {
  padding: 15px 25px 25px 25px;
  font-size: 15.75px;
  line-height: 150%;
  color: #888;
}
.v-coo-f__message {
  width: 100%;
  border: 0px solid #58bc00;
  background-color: #e6f1d8;
  padding-left: 18px;
  color: #58bc00;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  transition: height 0.3s ease-out, opacity 0.3s ease-out, margin-bottom 0.3s ease-out;
  height: 0;
  opacity: 0;
  margin-bottom: 0;
}
.v-coo-f__message.error {
  border-color: #e2001a;
  background-color: #ebbcbc;
  color: #e2001a;
}
.v-coo-f__message.visible {
  height: 45px;
  opacity: 1;
  margin-bottom: 18px;
  border-width: 1px;
}
@media screen and (max-width: 500px) {
  .v-coo-f__buttons {
    flex-direction: column-reverse;
  }
  .v-coo-f__buttons button {
    margin-right: 0;
  }
  .v-coo-f__header {
    padding: 15px;
    flex-direction: column;
    align-items: baseline;
  }
  .v-coo-f__text {
    padding: 15px;
  }
  .v-coo-f__checkbox {
    margin-top: 13.5px;
  }
}
/*cookie bar*/
.v-coo-b {
  position: fixed;
  width: 100%;
  bottom: 10px;
  z-index: 10;
  z-index: var(--z-index);
  transition: opacity 0.35s ease-out;
  opacity: 0;
  color: #464646;
  color: var(--color);
  padding: 0 10px;
}
.v-coo-b,
.v-coo-b * {
  box-sizing: border-box;
}
.v-coo-b.visible {
  opacity: 1;
}
.v-coo-b__inner {
  max-width: 960px;
  padding: 20px;
  background: #fcfbde;
  background: var(--background);
  border-radius: 4px;
  border-radius: var(--radius);
  margin: auto;
  border: 1px solid #dfdfdf;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.07);
}
.v-coo-b__title {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 10px 0;
}
.v-coo-b__text {
  font-size: 14px;
  margin-bottom: 20px;
}
.v-coo-b__buttons a {
  margin-right: 10px;
}
.v-coo-b__button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  padding: 5px 10px;
  line-height: 1.4;
  text-decoration: none !important;
  background-color: #fff;
  border: 1px solid #464646;
  color: #464646;
  border-radius: 4px;
  transition: all 0.15s ease-in-out;
}
.v-coo-b__button-green {
  background-color: #58bc00;
  border: 1px solid #58bc00;
  color: #fff;
}
@media screen and (max-width: 500px) {
  .v-coo-b__buttons a {
    margin: 0;
  }
  .v-coo-b__buttons a:last-child {
    margin-bottom: 10px;
  }
  .v-coo-b__buttons {
    display: flex;
    flex-direction: column-reverse;
  }
}
.cookie-message {
  position: fixed;
  bottom: 0;
  left: 0;
  display: table;
  width: 100%;
  background-color: #D8BB00;
  padding: 13px 15px;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  z-index: 100;
}
.cookie-message a {
  color: #fff;
  text-decoration: underline;
}
.cookie-message .more-info {
  background-color: #464646;
  color: #fff;
}
.cookie-message .cookie-button {
  height: 40px;
  border: none;
  border-radius: 30px;
  background-color: #fff;
  padding: 6px 19px;
  font-size: 14px;
  cursor: pointer;
  outline: none;
}
.cookie-message .cross {
  cursor: pointer;
  position: absolute;
  right: 30px;
  width: 15px;
  height: 15px;
  top: calc(50% - 7.5px);
}
.cookie-message .cross:before,
.cookie-message .cross:after {
  position: absolute;
  content: "";
  height: 22px;
  width: 2px;
  background-color: #fff;
  top: 50%;
  margin-top: -8px;
  left: 50%;
  margin-left: -1px;
  z-index: 2;
}
.cookie-message .cross:hover:before,
.cookie-message .cross:hover:after {
  background-color: #eee;
}
.cookie-message .cross:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cookie-message .cross:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cookie-message .cross:hover:before,
.cookie-message .cross:hover:after {
  background-color: #707070;
}
@media (max-width: 640px) {
  .cookie-message {
    padding: 13px 30px;
    padding-bottom: 3px;
  }
  .cookie-message > div {
    padding-top: 20px;
  }
  .cookie-message .cross {
    top: 10px;
    right: 15px;
  }
  .cookie-message .cookie-button {
    display: block;
    margin: 8px auto;
  }
}
/*** BAR ***/
.vue-cookies-bar .v-coo-b__inner {
  background-color: #f2f2f2;
  border: #d8d8d8 1px solid;
  border-radius: 0;
}
.vue-cookies-bar .v-coo-b__title {
  font-size: 18px;
  font-weight: 600;
}
.vue-cookies-bar .v-coo-b__text {
  color: #666;
  margin-bottom: 25px;
}
/*** FORM ***/
.vue-cookies-form {
  max-width: none !important;
}
.vue-cookies-form .v-coo-f__text {
  font-size: 1rem;
}
.vue-cookies-form .v-coo-f__checkbox__input {
  cursor: pointer;
}
.vue-cookies-form .v-coo-f__box {
  border-radius: 0;
  border: #D9D9D9 1px solid;
}
.vue-cookies-form .v-coo-f__title {
  font-weight: 500;
  font-size: 18px;
  color: #666666;
}
.vue-cookies-form .v-coo-f__sub-title {
  font-weight: 600;
  font-size: 20px;
}
.vue-cookies-form .v-coo-f__checkbox__input:checked {
  background-color: #58bc00;
  border-color: #58bc00;
}
.v-coo-button {
  background: #fff;
  color: #000;
  border: #d8d8d8 1px solid;
}
.v-coo-button-dark {
  background: #222222;
  color: #fff;
  border: #222222 1px solid;
}
.section-home #header nav .logo > a {
  transition: 0.5s ease-in-out;
}
@media screen and (min-width: 960px) {
  .section-home #header nav .logo > a {
    background-image: url('../icon/DEK_logo_CERVENE.svg');
  }
}
.section-home #header nav:hover .logo > a {
  background-image: url('../icon/DEK_logo_CERVENE.svg');
}
.section-home #header .uk-sticky.uk-active.uk-sticky-fixed.uk-sticky-below {
  background: #fff;
}
.section-home #header .uk-sticky.uk-active.uk-sticky-fixed.uk-sticky-below nav .logo > a {
  background-image: url('../icon/DEK_logo_CERVENE.svg');
}
.section-home #header .uk-sticky.uk-active.uk-sticky-fixed.uk-sticky-below a {
  color: #464646;
}
.section-home #header .uk-sticky.uk-active.uk-sticky-fixed.uk-sticky-below nav.uk-navbar {
  border: none;
}
@media (max-width: 639px) {
  .section-home .hide-on-mobile {
    display: none !important;
  }
}
@media (min-width: 639px) {
  .section-home .show-on-mobile {
    display: none !important;
  }
}
@media (max-width: 960px) {
  .section-home #header nav .logo > a {
    background-image: url('../icon/DEK_logo_CERVENE.svg');
  }
}
.homepage #companies {
  background-color: #fff;
}
.homepage #companies img.title {
  display: none;
}
.homepage .company-wrap {
  background: radial-gradient(#eee, #fff 65%);
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  margin-left: 0px;
  padding: 0;
  list-style: none;
}
.homepage .dek-transition {
  transition: 0.5s ease-in-out;
}
.homepage .company-grid {
  overflow: hidden;
  position: relative;
  background: white;
  padding: 10px;
  width: 25%;
  max-width: 100%;
  text-align: center;
  box-sizing: border-box;
  margin: 0;
  border-left: 1px solid #d8d8d8;
  display: flex;
  align-items: center;
}
.homepage .company-grid:last-child {
  background-color: transparent !important;
}
.homepage .company-grid:last-child > * {
  opacity: 1;
  margin-top: 45px;
}
.homepage .company-grid .btn {
  width: 120px;
  margin: auto;
  margin-top: 15px;
  background-color: #e30013;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 132px;
  height: 33px;
  transition: 0.5s ease-in-out;
}
.homepage .company-grid .btn:hover {
  background-color: #ca0011;
}
.homepage .company-grid:nth-child(4n + 1) {
  border: none;
}
.homepage .company-grid:nth-child(n + 5) {
  border-top: 1px solid #d8d8d8;
  border-bottom: none;
}
.homepage .company-grid:not(nothoverview) > hoverview,
.homepage .company-grid:not(nothoverview) > .cross {
  opacity: 0;
  width: 100%;
}
.homepage .company-grid hoverview {
  font-size: 16px;
  padding: 15px 20px;
  min-height: 170px;
  line-height: 27px;
  margin-top: 20px;
}
.homepage .company-grid strong {
  display: block;
  margin-bottom: 15px;
  font-size: 22px;
}
.homepage .company-grid:hover {
  background: transparent;
}
.homepage .company-grid:hover > hoverview,
.homepage .company-grid:hover > .cross {
  opacity: 1;
  transition: 0.5s ease-in-out;
}
.homepage .company-grid:hover > nothoverview {
  display: none;
  opacity: 0;
}
.homepage .company-grid .logo {
  position: absolute;
  margin: auto;
  width: auto;
  height: auto;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  max-width: calc(100% - 90px);
}
.homepage .company-grid .foto,
.homepage .company-grid .logo.white {
  margin: auto;
  max-height: inherit;
  object-fit: scale-down;
  width: 100%;
  height: auto;
  object-position: 50% 50%;
  display: none;
  position: absolute;
  left: 0;
  top: 0;
}
.homepage .company-grid .company-logo,
.homepage .company-grid .company-popis {
  background: #fff;
}
@media (max-width: 900px) {
  .homepage .company-grid hoverview {
    font-size: 14px;
  }
  .homepage .company-grid {
    font-size: 11px;
  }
}
@media (max-width: 650px) {
  .homepage .company-grid hoverview {
    font-size: 16px;
  }
  .homepage .company-grid:last-child {
    display: none;
  }
  .homepage #companies {
    box-shadow: 0px -13px 60px -58px black;
  }
  .homepage #companies .company-grid img.title {
    display: block;
  }
  .homepage .company-wrap {
    background: #fff;
  }
  .homepage .company-grid strong {
    display: none;
  }
  .homepage #companies .column {
    padding-bottom: 0;
    padding-top: 1em;
  }
  .homepage #companies h1 {
    text-align: center;
  }
  .homepage .company-grid {
    top: auto;
    left: auto;
    position: relative;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 300px;
    border: 1px solid #fff !important;
    padding: 0;
  }
  .homepage .company-grid > hoverview {
    max-width: 300px;
    font-size: 16px;
    margin: auto;
  }
  .homepage #companies .container {
    margin-bottom: 0;
  }
  .homepage .company-grid .logo:not(.white) {
    visibility: hidden;
  }
  .homepage .company-grid .foto,
  .homepage .company-grid .logo.white {
    display: block;
  }
  .homepage .company-grid > nothoverview:after {
    display: flex;
    position: absolute;
    z-index: 1;
    width: 35px;
    height: 35px;
    content: '+';
    text-align: center;
    font-size: 27px;
    background: #fff;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    line-height: 1.3;
    cursor: pointer;
    justify-content: center;
  }
  .homepage .company-grid .cross {
    display: block;
  }
  .homepage .company-grid.closed > .cross {
    display: none;
  }
  .homepage .company-grid.closed:hover > *:not(nothoverview) {
    visibility: hidden;
    width: 100%;
  }
  .homepage .company-grid.closed:hover > nothoverview {
    display: block;
  }
  .homepage .cross {
    cursor: pointer;
    position: absolute;
    right: 30px;
    width: 15px;
    height: 15px;
    top: calc(50% - 7.5px);
  }
  .homepage .cross:before,
  .homepage .cross:after {
    position: absolute;
    content: "";
    height: 22px;
    width: 2px;
    background-color: #e30013;
    top: 50%;
    margin-top: -8px;
    left: 50%;
    margin-left: -1px;
    z-index: 2;
  }
  .homepage .cross:hover:before,
  .homepage .cross:hover:after {
    background-color: #eee;
  }
  .homepage .cross:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .homepage .cross:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .homepage .cross:hover:before,
  .homepage .cross:hover:after {
    background-color: #707070;
  }
  .homepage .company-grid.closed > .cross {
    display: none;
  }
  .homepage .company-grid.closed:hover > *:not(nothoverview) {
    visibility: hidden;
    width: 100%;
  }
  .homepage .company-grid.closed:hover > nothoverview {
    display: block;
  }
}
.homepage .new-companies {
  display: none;
}
.homepage .new-companies .container {
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  position: relative;
  max-width: 1300px;
  flex-wrap: wrap;
}
.homepage .new-companies .new-companies-grid {
  overflow: hidden;
  position: relative;
  background: white;
  padding: 10px;
  width: 25%;
  max-width: 100%;
  text-align: center;
  box-sizing: border-box;
  margin: 0;
  border-left: 1px solid #d8d8d8;
  transition: 0.2s ease-in-out;
}
.homepage .new-companies .new-companies-grid img.logo.white {
  visibility: hidden;
  display: none;
}
.homepage .new-companies .new-companies-grid img.foto {
  visibility: hidden;
  display: none;
}
.homepage .new-companies .new-companies-grid p,
.homepage .new-companies .new-companies-grid a {
  display: none;
}
.homepage .new-companies .new-companies-grid:hover .logo {
  display: none;
}
.homepage .new-companies .new-companies-grid:hover p,
.homepage .new-companies .new-companies-grid:hover a {
  display: inherit;
}
.homepage .new-companies .btn {
  width: 120px;
  margin: auto;
  margin-bottom: 20px;
  background-color: #e30013;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.homepage #nav-container {
  position: absolute;
}
.homepage .nav-items {
  background-color: transparent;
  border: 1px solid #b8b8b8;
  transition-duration: 0.5s;
  transition-property: background-color;
  color: #FFF;
  box-shadow: none;
}
.homepage #nav-container:hover .nav-items {
  color: #464646;
  background-color: #FFF;
}
.homepage #nav-container .logo > a {
  background-image: url('../../icon/DEK_logo_BILE.svg');
}
.homepage .head-container {
  min-height: 0;
}
@media (max-width: 960px) {
  .homepage #nav-container .column {
    padding-top: 0;
  }
  .homepage #nav-container .logo {
    color: #e1001a;
  }
  .homepage #nav-container {
    background-color: #fff;
    position: fixed;
    top: 0;
  }
  .homepage .nav-items {
    border: none;
    margin-top: 0;
  }
}
.homepage #statistics {
  background-image: linear-gradient(#f3f3f3, #FFFFFF, #FFFFFF);
}
.homepage .card {
  background-color: #FFF;
  text-align: center;
  max-width: 95%;
  height: 250px;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 3px 5px 6px #00000029;
}
.homepage .card > h2 {
  padding-left: 0;
  font-size: 60px;
  font-weight: 400;
  padding-top: 50px;
}
.homepage .card > h2:after {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 70px;
  content: '';
  height: 2px;
  background: #e30013;
  margin-top: 10px;
  margin-bottom: 20px;
}
.homepage .card > p {
  font-weight: 500;
}
.homepage #statistics .column > p {
  max-width: 390px;
}
.homepage .parts {
  display: inherit;
  padding: 0;
}
.homepage #employment {
  position: relative;
  background-color: #d8d8d8;
  min-height: 755px;
  margin-bottom: -5rem;
  padding-bottom: 5rem;
}
.homepage .employment_card {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  background-color: #fff;
}
.homepage .employment_card#text {
  min-width: 271px;
  width: 16vw;
  height: 267px;
  height: 337px;
  padding: 20px 30px;
  left: 249px;
  top: 350px;
  z-index: 2;
  box-shadow: 3px 5px 6px #00000029;
  max-width: 283px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.homepage .employment_card#text > *:not(.btn) {
  text-align: center;
  padding-top: 20px;
  max-width: 180px;
  margin: 0 auto;
}
.homepage .employment_card:nth-child(3) {
  background-image: url('/assets/employmentcards/kariera_1-min.JPG');
  width: 330px;
  height: 330px;
  top: 262px;
  left: 20px;
  z-index: 1;
}
.homepage .employment_card:nth-child(4) {
  background-image: url('/assets/employmentcards/kariera_2-min.jpg');
  left: 50%;
  top: 260px;
  height: 285px;
  width: 280px;
  z-index: 1;
}
.homepage .employment_card:nth-child(5) {
  background-image: url('/assets/employmentcards/kariera_4-min.JPG');
  max-height: 180px;
  max-width: 180px;
  width: 17vw;
  height: 17vw;
  left: 70%;
  top: 515px;
  z-index: 0;
}
.homepage .employment_card:nth-child(6) {
  background-image: url('/assets/employmentcards/kariera_3-min.JPG');
  top: 74px;
  left: 70%;
  max-width: 324px;
  max-height: 324px;
  width: 23vw;
  height: 23vw;
  z-index: 0;
}
.homepage a.arrow {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  right: 20px;
}
.homepage .uk-animation-reverse {
  animation-duration: 0.2s;
}
.homepage .uk-animation-kenburns {
  animation-name: uk-scale-kenburns;
  animation-duration: 15s;
}
.homepage .uk-animation-reverse {
  animation-direction: reverse;
  animation-timing-function: ease-in;
}
.homepage .uk-transform-origin-center-left {
  transform-origin: 0 50%;
}
@keyframes uk-scale-kenburns {
  100% {
    transform: scale(1);
  }
  0% {
    transform: scale(1.2);
  }
}
.homepage .tiles {
  top: 0;
  left: 0;
  width: 100%;
  position: relative;
}
.homepage .tiles .btn {
  line-height: 33px;
  font-size: 18px;
}
.homepage .tiles .column {
  padding: 0;
  margin: 0;
  height: 100%;
  overflow: hidden;
}
.homepage .tiles .phone-title {
  display: none;
  position: absolute;
  z-index: 20;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  width: 60%;
  font-size: 25pt;
  left: 20%;
  top: 20%;
}
.homepage .tiles .column:hover {
  /*filter: grayscale(0%);*/
  box-shadow: 0px 3px 4px #464646;
}
.homepage .tiles video {
  min-height: 100%;
  margin: 0;
  padding: 0;
  background: black;
  border: none;
}
.homepage .tiles {
  height: 95vh;
  background: #333;
}
.homepage .tiles-single {
  overflow: hidden;
}
.homepage .tiles > .row {
  padding: 0;
  margin: 0;
  height: 100%;
}
.homepage .tiles img {
  min-height: 100%;
  min-width: 100%;
  transition-duration: 5s;
  transition-property: transform;
}
.homepage .tiles .column {
  transition-duration: 3s;
  transition-property: flex-grow;
}
.homepage .tiles .column:hover img {
  transform: scale(1.2);
}
.homepage .tiles .column:hover {
  flex-grow: 1.1;
}
.homepage .tile-text {
  display: none;
  color: #fff;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  min-height: 30px;
  background: linear-gradient(transparent, #000 100%);
  padding: 40px;
  padding-right: 0px;
}
.homepage .tile-text > h3 {
  font-size: 32px;
  padding-bottom: 10px;
  color: #fff;
}
.homepage .tile-text > .redactor-style {
  font-size: 16px;
  max-width: 300px !important;
  float: left;
}
.homepage .tile-text > .redactor-style p {
  margin: 0 !important;
}
.homepage .tile-text .btn {
  position: absolute;
  bottom: 40px;
  right: 20px;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.homepage .tile-text .btn:hover {
  border-color: #e30013;
  background-color: #e30013;
}
.homepage .tiles .column:hover .tile-text {
  display: block;
}
.homepage #statistics .column:nth-child(3) {
  margin-top: 20px;
}
.homepage #statistics .column:nth-child(1) {
  margin-top: 20px;
}
.homepage #employment .column:nth-child(2) {
  margin-top: 89px;
}
.homepage #employment .column {
  padding: 0;
}
.homepage #employment .column:nth-child(1) {
  margin-top: 80px;
}
.homepage #employment .container {
  margin-bottom: 0;
}
.homepage .more-button {
  visibility: hidden;
}
@media (max-width: 960px) {
  .homepage .xtiles .column:hover img {
    transform: none;
  }
  .homepage #nav-container .logo > a {
    background-image: url('../icon/DEK_logo_CERVENE.svg');
  }
  .homepage .container {
    padding: 0;
  }
  .homepage a.arrow {
    display: none;
  }
  .homepage .card {
    height: 168px;
    width: 100%;
  }
  .homepage .card > h2 {
    padding-top: 25px;
    font-size: 50px;
  }
  .homepage .xtiles {
    margin-top: 65px;
  }
  .homepage .xtiles > .row {
    display: block;
  }
  .homepage .xtiles {
    height: 100vh;
  }
  .homepage .xtiles > .row > .column {
    height: calc(100vh / 3);
    transition-property: height;
  }
  .homepage .xtiles video {
    min-height: 0;
    height: 100%;
    margin-right: auto;
    margin-left: auto;
    display: block;
  }
  .homepage .xtiles img {
    width: 100vw;
    height: auto;
  }
  .homepage .employment_card#text {
    height: 337px;
    width: 245px;
    left: 199px;
    min-height: 0;
    min-width: 0;
  }
  .homepage .employment_card:nth-child(3) {
    top: 242px;
    width: 218px;
    height: 218px;
  }
  .homepage .employment_card:nth-child(4) {
    width: 190px;
    height: 190px;
    top: 262px;
    left: 464px;
  }
  .homepage .employment_card:nth-child(5) {
    left: 80%;
    top: 447px;
    height: 121px;
    width: 121px;
  }
  .homepage .employment_card:nth-child(6) {
    display: none;
  }
}
@media (max-width: 960px) {
  .homepage h1 {
    font-size: 25pt;
    text-align: center;
    padding: 0;
    margin: 0;
  }
  .homepage h2 {
    font-size: 19pt;
    text-align: center;
    padding: 0;
    margin: 0;
  }
  .homepage #statistics {
    text-align: center;
  }
  .homepage .tiles .column {
    filter: grayscale(0%);
  }
  .homepage .tiles {
    height: 80vh;
  }
  .homepage .tiles .phone-title {
    display: block;
  }
  .homepage .tiles .column:hover .tile-text {
    display: none;
  }
  .homepage #statistics {
    min-height: 700px;
  }
  .homepage #statistics .row:first-child .column:nth-child(3) {
    position: absolute;
    bottom: -220px;
  }
  .homepage .employment_card:not(#text),
  .homepage #employment .row {
    display: none;
  }
  .homepage #statistics .row:nth-child(2) .column:nth-child(3) {
    margin-top: 17px !important;
  }
  .homepage #employment {
    min-height: 400px;
    padding: 40px 0;
    background-image: url('/assets/employmentcards/dek_bear_upr.jpg');
    background-repeat: no-repeat;
    background-position: center;
  }
  .homepage .parts {
    display: block;
    width: 100%;
  }
  .homepage .parts > .column {
    width: 48%;
    height: 180px;
    display: inline-block;
  }
  .homepage .employment_card#text {
    top: auto;
    left: auto;
    position: relative;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 350px;
    border: 1px solid #fff !important;
    padding: 0;
  }
  .homepage .employment_card#text {
    padding: 20px;
    width: 70%;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .homepage .employment_card#text h2:after {
    content: '';
    border-bottom: 2px solid #e30013;
    width: 60px;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .homepage .tiles {
    height: 80vh !important;
  }
  .homepage .tiles .column:not(:first-child) {
    display: none;
  }
  .homepage .tiles img {
    height: 100%;
    width: auto;
  }
  .homepage .tiles video {
    display: none;
  }
  .homepage .tiles > .row > .column,
  .homepage .tiles > .row > .column:hover {
    height: 100%;
  }
  .homepage .tiles * {
    max-height: 90vh;
  }
  .homepage .card {
    height: auto;
  }
}
@media (max-width: 350px) {
  .homepage #statistics {
    min-height: 1100px;
  }
  .homepage .parts .column {
    width: 100%;
  }
}
@media (max-width: 900px) and (min-width: 651px) {
  .homepage .section-home #header nav .logo > a {
    background-image: url('../icon/DEK_logo_CERVENE.svg');
    border: 1px solid red;
  }
  .homepage .more-button {
    max-height: 30px;
    line-height: 1.4;
    visibility: visible;
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #f6f6f6;
    padding: 6px 10px;
    border: 1px solid #f6f6f6;
    border-radius: 20px;
    width: 80px;
    text-transform: uppercase;
    font-size: 13px;
    padding-top: 6px;
    visibility: hidden;
  }
  .homepage .more-button:after {
    content: '+';
    font-size: 20px;
    float: right;
    line-height: 0.8;
  }
  .homepage .tile-text .redactor-style {
    width: 50%;
  }
  .homepage .tiles .column .more-button:hover {
    background: #e30013;
    color: #fff;
    border-color: #e30013;
  }
  .homepage .tiles .column:hover .btn {
    display: none;
  }
}
.homepage .content {
  width: 100%;
}
.homepage .row {
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
}
.homepage .row > * {
  position: relative;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
  max-width: 100%;
}
.homepage .column {
  padding: 1.55em 0;
  flex: 1 0 0;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0px;
  font-size: 16px;
}
.homepage .column > p {
  margin-top: 11px;
  line-height: 1.3;
  margin-bottom: 1.55em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: normal;
  padding: 10px;
}
.homepage .container {
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  position: relative;
  max-width: 1300px;
}
.homepage .btn {
  cursor: pointer;
  border: none;
  font-size: 16px;
  border-radius: 25px;
  height: 40px;
  display: block;
  line-height: 2.7;
  text-align: center;
  width: 140px;
  text-transform: uppercase;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #e30013 0% 0% no-repeat padding-box;
  color: #fff;
  font: normal normal normal 14px/26px Roboto;
}
.homepage .btn:hover {
  background: #ca0011 0% 0% no-repeat padding-box;
}
.homepage .tile-text .btn {
  position: absolute;
  bottom: 40px;
  right: 20px;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
@media (max-width: 350px) {
  .homepage #statistics .column,
  .homepage .homepage #statistics .row:nth-child(2) .column:nth-child(3) {
    margin-top: inherit !important;
    height: auto;
    padding: 0.55em 0;
  }
  .homepage .parts {
    display: flex;
    flex-direction: column;
  }
}
.homepage .tiles img,
.homepage .tiles video {
  max-width: none;
}
.section-home #header {
  margin-top: 0;
  left: 0;
  cursor: pointer;
  position: absolute;
  width: 100%;
  max-width: 100%;
  top: 35px;
  z-index: 5;
}
.section-home .column {
  padding: 1.55em 0;
  flex: 1 0 0;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0px;
  font-size: 16px;
}
.section-home #header nav.uk-navbar {
  background-color: #ffffff95;
  border: 1px solid #b8b8b8;
  transition-duration: 0.5s;
  transition-property: background-color;
}
@media (max-width: 660px) {
  .section-home #header nav.uk-navbar {
    border: none;
  }
}
.section-home #header nav.uk-navbar:hover {
  background-color: #fff;
  color: #464646;
}
@media (max-width: 960px) {
  #statistics .row:nth-child(1) {
    display: block;
  }
  #statistics .row:nth-child(1) .column:nth-child(1) {
    margin-top: 0;
  }
  .section-home #header nav.uk-navbar {
    color: #464646;
    background: #fff;
  }
  .homepage .tiles .column img {
    transition: all 5s ease;
    animation: imganim 1s linear both;
  }
  @keyframes imganim {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(1.2);
    }
  }
}
.homepage .tile-text .btn {
  position: inherit;
  margin-left: 0;
  margin-top: 0;
}
.homepage .tile-text .title-text-wrap {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  color: #fff;
  max-width: 400px;
}
.homepage .tile-text .title-text-wrap h3 {
  font-size: 32px;
  color: #fff;
}
.homepage .tile-text p {
  margin: 0;
}
.homepage .tile-text .redactor-style {
  margin-bottom: 20px;
}
.homepage .gobottom:after,
.homepage .gotop:after {
  content: url(../icon/arrow.svg);
  width: 25px;
  height: 25px;
  display: block;
  position: absolute;
  top: 2px;
  z-index: 100;
  left: 2px;
  left: 7px;
  top: 7px;
}
.homepage .gobottom,
.homepage .gotop {
  height: 40px;
  width: 40px;
  background: #e30013;
  bottom: 20px;
  right: 20px;
  position: absolute;
  border-radius: 50px;
}
.homepage .gotop {
  transform: rotate(180deg);
}
.homepage .gobottom:hover,
.homepage .gotop:hover {
  background: #ca0011;
}
.homepage .img-wrapper {
  position: relative;
  overflow: hidden;
  height: 425px;
}
.homepage .img-wrapper img {
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  bottom: -100%;
  margin: auto;
}
.homepage .img-wrapper {
  overflow: hidden;
  max-height: 425px;
}
.homepage .img-container {
  max-height: inherit;
  transform: translateY(50%);
}
.homepage .img-wrapper img {
  display: block;
  transform: translateY(-50%);
}
@media screen and (max-height: 500px) {
  .homepage .tiles img {
    height: auto;
    width: 100%;
    max-height: none;
  }
}
.section-home .hp-slider-texty .hp-slide-text {
  color: #fff;
  width: calc((100% - 4px)/3);
  padding-top: 44px;
  padding-bottom: 44px;
  padding-left: 40px;
  padding-right: 40px;
  transition: 0.3s ease-in-out;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  float: left;
}
.section-home .hp-slide-text {
  cursor: pointer;
}
.section-home .hp-slide-text:hover {
  background-color: rgba(23, 23, 23, 0.5);
}
.section-home .homepage .hp-slider-texty {
  max-width: 1600px;
}
@media screen and (min-width: 960px) {
}
.section-home .hp-slider-big-text {
  font-size: 2vw;
  font-weight: bold;
  text-transform: uppercase;
}
.section-home .hp-slider-small-text {
  font-size: 16px;
  font-weight: normal;
  padding-top: 10px;
  padding-bottom: 20px;
}
.section-home .hp-slider-texty .linka {
  border-right: #fff 2px solid;
  flex-grow: 0;
  max-height: 6.3rem;
  margin-top: 3rem;
  float: left;
  height: 100px;
}
.section-home .hp-slide-text a.btn {
  opacity: 0;
  max-height: 0;
  margin-top: 0;
}
.section-home .hp-slide-text:hover a.btn {
  opacity: 1;
  max-height: 40px;
  margin-top: 20px;
  transition: max-height 0.2s ease, margin-top 0.2s ease, opacity 0.2s ease 0.2s;
}
.section-home .hp-slide-text:not(:hover) a.btn {
  opacity: 0;
  max-height: 0;
  transition: opacity 0.2s ease, max-height 0.2s ease 0.2s, margin-top 0.2s ease 0.2s;
}
.section-home .dek-hp-position-textblok {
  margin-top: calc(35vh);
}
.section-home .mob-hp-image,
.section-home .mob-hp-slide-text {
  display: none;
}
.section-home .mob-hp-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.section-home video#js-vid-hp {
  max-width: none;
}
@media (max-width: 960px) {
  .section-home .hp-slide-text,
  .section-home .linka,
  .section-home .tiles .phone-title,
  .section-home .js-vid-hp-wrapper {
    display: none !important;
  }
  .section-home .mob-hp-image {
    display: block;
  }
  .section-home .mob-hp-slide-text {
    display: block;
    text-transform: uppercase;
    color: #fff;
    width: 100%;
    text-align: center;
    font-size: 24px;
    max-width: 500px;
    font-weight: bold;
    padding: 1rem;
    background-color: rgba(23, 23, 23, 0.47);
    margin: 0 auto;
  }
}
.section-kontakt .kontakt_base {
  display: flex;
  justify-content: space-between;
}
.section-kontakt .kontakt_base {
  max-width: 980px;
  margin: 0 auto;
}
.section-kontakt .kontakt_mapa {
  display: flex;
  justify-content: center;
  margin: 4rem;
}
.section-kontakt .novy-riadok {
  display: none;
}
.section-kontakt .dotaznik_pro_uchazece h1 {
  font-size: 32px;
  margin-top: 40px;
  text-align: center;
}
.section-kontakt form#contact-form-kont {
  display: flex;
  justify-content: center;
  background: #f9f9f9;
  flex-direction: column;
  padding: 3rem 3rem 5rem 3rem;
  margin-bottom: -5rem;
}
.section-kontakt form#contact-form-kont .required > label:after {
  content: " *";
  color: #e30013;
}
.section-kontakt .dotaznik_pro_uchazece {
  background: #fff;
}
.section-kontakt .btn.red {
  cursor: pointer;
  border: none;
  font-size: 13px;
  border-radius: 17px;
  height: 33px;
  display: block;
  line-height: 2.8;
  text-align: center;
  padding: 0 26px;
  text-transform: uppercase;
  min-width: 120px;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  background-color: #e30013;
  color: #FFF;
  font-size: 16px;
  border-radius: 25px;
  width: 156px;
  height: 50px;
  margin-top: 30px;
  margin-bottom: -25px;
  padding: 0;
  outline: none;
}
.section-kontakt .btn.red:hover {
  background-color: #ca0011;
  color: #fff;
}
.section-kontakt .dotaznik_pro_uchazece .checkmark {
  position: absolute;
  background: #fff;
  border: 1px solid #c3c3c3;
  width: 16px;
  height: 16px;
  top: 0px;
  left: -20px;
  cursor: pointer;
}
.section-kontakt .zak-centrum {
  margin-right: 7rem;
}
.section-kontakt .social {
  width: 2rem;
  height: 2rem;
  background-size: 100%;
  margin-right: 5px;
}
.section-kontakt .i-instagram {
  background-image: url('../icon/instagram.svg');
}
.section-kontakt .i-facebook {
  background-image: url('../icon/facebook.svg');
}
.section-kontakt .i-youtube {
  background-image: url('../icon/youtube.svg');
}
@media (max-width: 1030px) {
  .section-kontakt .kontakt_mapa {
    margin: 1rem;
  }
  .section-kontakt .kontakt_base {
    margin: 1rem;
  }
}
@media (max-width: 900px) {
  .section-kontakt .kontakt_base {
    flex-direction: column;
    padding-left: 1rem;
    margin: 0;
  }
  .section-kontakt .zak-centrum {
    margin-top: 1rem;
  }
  .section-kontakt .novy-riadok {
    display: inherit;
  }
  .section-kontakt .kontakt_mapa {
    margin: 1rem;
  }
  .section-kontakt form#contact-form {
    padding: 1rem 1rem 3rem 1rem;
  }
}
.section-kontakt .big-map {
  width: 100%;
  padding: 1rem;
  margin-bottom: 2rem;
}
.section-kontakt #map-skupina {
  height: 259px !important;
  max-width: 980px;
  margin: 0 auto;
}
.section-kontakt .smap img {
  max-width: none !important;
}
.contact-media h1 {
  text-align: center;
}
.btn-kontakt-pro-media {
  width: 220px;
  height: 50px;
  cursor: pointer;
  display: block;
  text-align: center;
  text-transform: uppercase;
  background-color: #e30013;
  color: #FFF;
  font-size: 16px;
  border: none;
  border-radius: 25px;
  outline: none;
  padding: 0;
  margin-right: auto;
  margin-bottom: -25px;
  margin-left: auto;
  margin-top: 0;
  line-height: 3.2;
}
@media (max-width: 900px) {
  .btn-kontakt-pro-media {
    margin-left: 0;
    margin-top: 15px;
    margin-bottom: 10px;
  }
}
.btn-kontakt-pro-media:hover {
  background-color: #c30013;
  color: white;
}
.contact-for-media-photo {
  border: 1px solid #ccc;
  padding: 15px;
}
@media (max-width: 649px) {
  .contact-for-media-photo {
    border: none;
    padding-left: 30px;
  }
}
input,
textarea {
  margin-bottom: 20px;
}
form table {
  width: 100%;
}
select {
  background-color: #fff;
}
form ul.form-errors {
  padding-left: 0;
  list-style: none;
  color: #E30013;
}
.uk-notification-close {
  top: inherit !important;
}
.documents {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  min-height: 45vh;
}
.documents ul {
  margin: 0;
  padding: 0;
}
.documents .down {
  color: #e30013;
  font-weight: bold;
  width: 100%;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  padding: 9px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.documents .down li {
  margin-left: 1rem;
}
.documents .down::after {
  content: '';
  mask: url(../icon/download.svg) no-repeat 50% 50%;
  width: 30px;
  height: 30px;
  margin-right: 17px;
  margin-left: 34px;
  display: inline-block;
  background-color: #cccccc;
  -webkit-mask-image: url(../icon/download.svg);
  mask-image: url(../icon/download.svg);
}
.documents .down:hover {
  color: #fff;
  background-color: #e30013;
  border-radius: 22px;
}
.documents .down:hover::after {
  display: flex;
  align-items: center;
  transform: none;
  content: 'Zobrazit';
  text-decoration: underline;
  font-weight: normal;
  right: 15px;
  color: #fff;
  font-size: 16px;
  background: transparent;
  width: auto;
  top: 9px;
  mask: none;
  -webkit-mask-image: none;
}
.documents .down.sk:hover::after {
  content: 'Zobraziť';
}
.section-kariera .internship #statistics,
.section-career .internship #statistics {
  background-color: #efefefee;
}
.section-kariera .internship .card,
.section-career .internship .card {
  background-color: #FFF;
  text-align: center;
  max-width: 95%;
  height: 250px;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 3px 5px 6px #00000029;
}
.section-kariera .internship .card > h2,
.section-career .internship .card > h2 {
  padding-left: 0;
  font-size: 60px;
  font-weight: 400;
  padding-top: 50px;
}
.section-kariera .internship .card > h2:after,
.section-career .internship .card > h2:after {
  display: block;
  width: 70px;
  content: '';
  height: 2px;
  background: #e30013;
  margin: 10px auto 20px;
}
.section-kariera .internship .card > p,
.section-career .internship .card > p {
  font-weight: 500;
}
.section-kariera .internship #statistics .column > p,
.section-career .internship #statistics .column > p {
  max-width: 390px;
}
.section-kariera .internship .parts,
.section-career .internship .parts {
  display: inherit;
  padding: 0;
}
.section-kariera .internship .content,
.section-career .internship .content {
  width: 100%;
}
.section-kariera .internship .row,
.section-career .internship .row {
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
}
.section-kariera .internship .row > *,
.section-career .internship .row > * {
  position: relative;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
  max-width: 100%;
}
.section-kariera .internship .column,
.section-career .internship .column {
  padding: 1.55em 0;
  flex: 1;
  font-size: 16px;
}
.section-kariera .internship .column > p,
.section-career .internship .column > p {
  margin-top: 11px;
  line-height: 1.3;
  margin-bottom: 1.55em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: normal;
  padding: 10px;
}
.section-kariera .internship .container,
.section-career .internship .container {
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  position: relative;
  max-width: 1300px;
}
.section-kariera #companies,
.section-career #companies {
  background-color: #fff;
  padding: 50px 100px;
}
.section-kariera .company-wrap,
.section-career .company-wrap {
  background: radial-gradient(#eee, #fff 65%);
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.section-kariera .company-grid,
.section-career .company-grid {
  overflow: hidden;
  position: relative;
  background: white;
  padding: 10px;
  width: 25%;
  max-width: 100%;
  text-align: center;
  box-sizing: border-box;
  margin: 0;
  border-left: 1px solid #d8d8d8;
  display: flex;
  align-items: center;
}
.section-kariera .company-grid:last-child,
.section-career .company-grid:last-child {
  background-color: transparent !important;
}
.section-kariera .company-grid:last-child > *,
.section-career .company-grid:last-child > * {
  opacity: 1;
  margin-top: 45px;
}
.section-kariera .company-grid:nth-child(4n + 1),
.section-career .company-grid:nth-child(4n + 1) {
  border: none;
}
.section-kariera .company-grid:nth-child(n + 5),
.section-career .company-grid:nth-child(n + 5) {
  border-top: 1px solid #d8d8d8;
  border-bottom: none;
}
.section-kariera .company-grid > *:not(div),
.section-career .company-grid > *:not(div) {
  opacity: 0;
  width: 100%;
}
.section-kariera .company-grid p,
.section-career .company-grid p {
  font-size: 16px;
  padding: 15px 20px;
  /*padding    : 38px 0 15px 0;*/
  /*max-width  : 200px;*/
  min-height: 170px;
}
.section-kariera .company-grid:hover,
.section-career .company-grid:hover {
  background: transparent;
}
.section-kariera .company-grid:hover > *,
.section-career .company-grid:hover > * {
  opacity: 1;
  transition: 0.5s ease-in-out;
}
.section-kariera .company-grid:hover > div,
.section-career .company-grid:hover > div {
  display: none;
}
.section-kariera .company-grid .logo,
.section-career .company-grid .logo {
  position: absolute;
  margin: 80px auto auto;
  width: auto;
  height: auto;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  min-width: 50px;
  padding-top: 0;
}
.section-kariera .company-grid-span,
.section-career .company-grid-span {
  width: 100%;
  position: absolute;
  text-align: center;
  font-weight: bold;
  margin-top: 50px;
  padding-right: 20px;
  text-transform: uppercase;
  font-size: 20px;
}
.section-kariera .company-paragraph,
.section-career .company-paragraph {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 1200px) {
  .section-kariera #companies,
  .section-career #companies {
    padding: 50px 10px;
  }
  .section-kariera .company-grid-span,
  .section-career .company-grid-span {
    margin-top: 50px;
    font-size: 16px;
  }
  .section-kariera .company-grid .logo,
  .section-career .company-grid .logo {
    min-width: 80px;
    margin-top: 120px;
  }
}
@media (max-width: 900px) {
  .section-kariera .company-grid p,
  .section-career .company-grid p {
    font-size: 14px;
  }
  .section-kariera .company-grid,
  .section-career .company-grid {
    font-size: 11px;
  }
}
@media (max-width: 1200px) {
  .section-kariera .company-grid p,
  .section-career .company-grid p {
    font-size: 16px;
  }
  .section-kariera .company-grid:last-child,
  .section-career .company-grid:last-child {
    display: none;
  }
  .section-kariera #companies,
  .section-career #companies {
    box-shadow: 0px -13px 60px -58px black;
  }
  .section-kariera #companies .company-grid img.title,
  .section-career #companies .company-grid img.title {
    display: block;
  }
  .section-kariera .company-wrap,
  .section-career .company-wrap {
    background: #fff;
  }
  .section-kariera .company-grid strong,
  .section-career .company-grid strong {
    display: none;
  }
  .section-kariera #companies .column,
  .section-career #companies .column {
    padding-bottom: 0;
    padding-top: 1em;
  }
  .section-kariera #companies h1,
  .section-career #companies h1 {
    text-align: center;
  }
  .section-kariera .company-grid,
  .section-career .company-grid {
    top: auto;
    left: auto;
    position: relative;
    width: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 300px;
    padding: 0;
    border: none;
  }
  .section-kariera .company-grid:nth-child(odd),
  .section-career .company-grid:nth-child(odd) {
    border-top: 1px solid #d8d8d8;
    border-right: 1px solid #d8d8d8;
  }
  .section-kariera .company-grid:nth-child(even),
  .section-career .company-grid:nth-child(even) {
    border-top: 1px solid #d8d8d8;
  }
  .section-kariera .company-grid:nth-child(-n + 2),
  .section-career .company-grid:nth-child(-n + 2) {
    border-top: none;
  }
  .section-kariera .company-grid > p,
  .section-career .company-grid > p {
    max-width: 300px;
    font-size: 16px;
    margin: auto;
  }
  .section-kariera .company-grid-span,
  .section-career .company-grid-span {
    padding-right: unset;
  }
  .section-kariera #companies .container,
  .section-career #companies .container {
    margin-bottom: 0;
  }
  .section-kariera .company-grid.closed:hover > *:not(div),
  .section-career .company-grid.closed:hover > *:not(div) {
    visibility: hidden;
    width: 100%;
  }
  .section-kariera .company-grid.closed:hover > div,
  .section-career .company-grid.closed:hover > div {
    display: block;
  }
  .section-kariera .company-grid.closed:hover > *:not(div),
  .section-career .company-grid.closed:hover > *:not(div) {
    visibility: hidden;
    width: 100%;
  }
  .section-kariera .company-grid.closed:hover > div,
  .section-career .company-grid.closed:hover > div {
    display: block;
  }
}
.section-kariera .submit-button,
.section-career .submit-button {
  font-weight: bold;
  background-color: #e30013;
  color: #FFF;
  font-size: 16px;
  border-radius: 25px;
  height: 50px;
  margin: 30px auto -25px;
  padding: 5px 30px;
  outline: none;
  display: block;
  position: relative;
}
.section-kariera .submit-button:hover,
.section-career .submit-button:hover {
  background-color: #b0000f;
}
.section-kariera label.upload:before,
.section-career label.upload:before {
  content: '\002B';
  background: #e8313f;
  width: 20px;
  height: 20px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  margin-right: 10px;
  line-height: 20px;
}
.section-kariera label.upload:hover:before,
.section-career label.upload:hover:before {
  background: #ca0011;
  color: #fff;
}
.section-kariera #why-us,
.section-career #why-us {
  padding-bottom: 80px;
  background-color: lightgray;
}
.section-kariera #why-us .container,
.section-career #why-us .container {
  min-height: 630px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-kariera #why-us .container div:first-child,
.section-career #why-us .container div:first-child {
  left: 0;
}
.section-kariera #why-us .container div:nth-child(2),
.section-career #why-us .container div:nth-child(2) {
  top: 0;
  left: 16%;
  width: 300px;
  height: 300px;
}
.section-kariera #why-us .container div:nth-child(3),
.section-career #why-us .container div:nth-child(3) {
  bottom: 0;
  left: 22%;
  width: 200px;
  height: 200px;
}
.section-kariera #why-us .container div:nth-child(4),
.section-career #why-us .container div:nth-child(4) {
  left: 34%;
}
.section-kariera #why-us .container div:nth-child(5),
.section-career #why-us .container div:nth-child(5) {
  left: 46%;
  width: 300px;
  height: 300px;
}
.section-kariera #why-us .container div:nth-child(6),
.section-career #why-us .container div:nth-child(6) {
  top: 0;
  left: 65%;
  width: 200px;
  height: 200px;
}
.section-kariera #why-us .container div:nth-child(7),
.section-career #why-us .container div:nth-child(7) {
  right: 0;
}
.section-kariera #why-us .card,
.section-career #why-us .card {
  position: absolute;
  width: 320px;
  padding: 40px 40px;
  box-shadow: 3px 5px 6px #00000029;
  background-color: white;
  text-align: center;
  z-index: 1;
}
.section-kariera #why-us .card h2,
.section-career #why-us .card h2 {
  text-transform: uppercase;
}
.section-kariera #why-us .card p,
.section-career #why-us .card p {
  color: #888888;
  line-height: 1.5;
}
.section-kariera #why-us .card-bg,
.section-career #why-us .card-bg {
  background-size: cover;
  flex-shrink: 0;
  position: absolute;
}
.section-kariera #opportunity,
.section-career #opportunity {
  padding-bottom: 50px;
  background-color: lightgray;
}
.section-kariera #opportunity .container,
.section-career #opportunity .container {
  min-height: 630px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-kariera #opportunity .container div:first-child,
.section-career #opportunity .container div:first-child {
  left: 0;
}
.section-kariera #opportunity .container div:nth-child(2),
.section-career #opportunity .container div:nth-child(2) {
  top: 0;
  left: 20%;
  width: 300px;
  height: 300px;
}
.section-kariera #opportunity .container div:nth-child(3),
.section-career #opportunity .container div:nth-child(3) {
  bottom: 0;
  left: 18%;
  width: 200px;
  height: 200px;
}
.section-kariera #opportunity .container div:nth-child(4),
.section-career #opportunity .container div:nth-child(4) {
  left: 34%;
  top: 45%;
}
.section-kariera #opportunity .container div:nth-child(5),
.section-career #opportunity .container div:nth-child(5) {
  top: 10%;
  left: 46%;
  width: 300px;
  height: 300px;
}
.section-kariera #opportunity .container div:nth-child(6),
.section-career #opportunity .container div:nth-child(6) {
  top: 62%;
  left: 65%;
  width: 200px;
  height: 200px;
}
.section-kariera #opportunity .container div:nth-child(7),
.section-career #opportunity .container div:nth-child(7) {
  right: 0;
  top: 10%;
}
.section-kariera #opportunity .card,
.section-career #opportunity .card {
  position: absolute;
  width: 320px;
  padding: 40px 40px;
  box-shadow: 3px 5px 6px #00000029;
  background-color: white;
  text-align: center;
  z-index: 1;
}
.section-kariera #opportunity .card h2,
.section-career #opportunity .card h2 {
  text-transform: uppercase;
}
.section-kariera #opportunity .card p,
.section-career #opportunity .card p {
  color: #888888;
  line-height: 1.5;
}
.section-kariera #opportunity .card-bg,
.section-career #opportunity .card-bg {
  background-size: cover;
  flex-shrink: 0;
  position: absolute;
}
.section-kariera .hero-image,
.section-career .hero-image {
  height: 530px;
  background-position: right;
  background-size: cover;
}
.section-kariera .hero-text,
.section-career .hero-text {
  text-align: left;
  display: flex;
  flex-direction: column;
  height: inherit;
  justify-content: center;
  color: black;
}
.section-kariera .hero-image-small,
.section-career .hero-image-small {
  height: 0;
  background-position: unset;
  background-size: cover;
  visibility: hidden;
}
.section-kariera .hero-text-small,
.section-career .hero-text-small {
  padding: 120px 0 30px 50px;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: inherit;
  justify-content: center;
  color: black;
}
.section-kariera .dek-talent,
.section-career .dek-talent {
  background-color: #efefefee;
  margin-top: 100px;
}
.section-kariera .dek-talent .wrapper,
.section-career .dek-talent .wrapper {
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}
.section-kariera .dek-talent .text,
.section-career .dek-talent .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section-kariera .dek-talent .image,
.section-career .dek-talent .image {
  width: 100%;
  margin: 0 auto;
}
.section-kariera .dek-talent-title,
.section-career .dek-talent-title {
  color: #464646;
  font-size: 26px;
  margin-bottom: 30px;
}
.section-kariera .dek-talent-desc,
.section-career .dek-talent-desc {
  max-width: 540px;
}
.section-kariera .dek-talent-img,
.section-career .dek-talent-img {
  max-height: 300px;
  margin-left: 10px;
}
@media (max-width: 1250px) {
  .section-kariera .hero-text,
  .section-career .hero-text {
    padding: 0 0 190px 50px;
  }
}
@media (max-width: 1200px) {
  .section-kariera .hero-image,
  .section-career .hero-image {
    visibility: hidden;
    height: 0;
  }
  .section-kariera .hero-image-small,
  .section-career .hero-image-small {
    visibility: visible;
    height: auto;
  }
  .section-kariera .dek-talent,
  .section-career .dek-talent {
    background-color: #efefefee;
    margin-top: 100px;
  }
  .section-kariera .dek-talent .wrapper,
  .section-career .dek-talent .wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
  }
  .section-kariera .dek-talent .text,
  .section-career .dek-talent .text {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .section-kariera .dek-talent .image,
  .section-career .dek-talent .image {
    margin: 0 auto;
  }
  .section-kariera .dek-talent-title,
  .section-career .dek-talent-title {
    color: #464646;
    font-size: 26px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .section-kariera .dek-talent-desc,
  .section-career .dek-talent-desc {
    max-width: 540px;
    display: flex;
    text-align: center;
    margin: 0 auto;
  }
  .section-kariera .dek-talent-button,
  .section-career .dek-talent-button {
    margin: 40px auto;
  }
  .section-kariera .dek-talent-img,
  .section-career .dek-talent-img {
    max-height: 300px;
    display: flex;
    margin: 0 auto;
  }
}
@media (max-width: 750px) {
  .section-kariera .hero-image-small,
  .section-career .hero-image-small {
    visibility: visible;
  }
  .section-kariera .hero-text-small,
  .section-career .hero-text-small {
    padding: 100px 0 30px 30px;
  }
  .section-kariera .internship-button,
  .section-career .internship-button {
    display: flex;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .section-kariera .hero-heading,
  .section-career .hero-heading {
    font-size: 24px !important;
  }
  .section-kariera .hero-text-small,
  .section-career .hero-text-small {
    padding-top: 100px;
  }
}
.section-kariera .hero-heading,
.section-career .hero-heading {
  text-align: left;
  font-weight: bold;
  font-size: 42px;
  color: black;
  margin-bottom: 20px;
}
.section-kariera .internship-button,
.section-career .internship-button {
  background-color: #e30013;
  color: white;
  padding: 5px 30px;
  border-radius: 25px;
  font-weight: bold;
  white-space: nowrap;
}
.section-kariera .internship-button:hover,
.section-career .internship-button:hover {
  background-color: #b0000f;
}
.section-kariera #about h1,
.section-career #about h1 {
  text-transform: unset;
  color: black;
}
.section-kariera .why-us-heading,
.section-career .why-us-heading {
  text-align: center;
  padding: 40px 0;
  font-size: 22px;
}
@media (max-width: 1199px) {
  .section-kariera #why-us,
  .section-career #why-us {
    padding-bottom: unset;
    background-color: unset;
  }
  .section-kariera #why-us-small,
  .section-career #why-us-small {
    padding: 80px 0;
    background-color: #aaaaaa;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .section-kariera #why-us-small .content,
  .section-career #why-us-small .content {
    flex-direction: row;
  }
  .section-kariera #opportunity-small,
  .section-career #opportunity-small {
    padding: 80px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .section-kariera #opportunity-small .content,
  .section-career #opportunity-small .content {
    flex-direction: row;
  }
}
.section-kariera .internship-heading,
.section-career .internship-heading {
  color: #666;
  text-align: center;
  padding-top: 40px;
  font-size: 22px;
}
.section-kariera .internship-box,
.section-career .internship-box {
  padding: 20px;
  width: 50%;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px;
  height: auto;
  background-color: #fff;
  text-align: center;
  box-shadow: 3px 5px 6px #00000029;
}
.section-kariera .internship-box h2::after,
.section-career .internship-box h2::after {
  border-bottom: 2px solid #e30013;
  width: 60px;
  content: "";
  display: block;
  margin: 5px auto 0;
}
@media (max-width: 960px) {
  .section-kariera #why-us-small .content,
  .section-career #why-us-small .content {
    flex-direction: column;
    align-items: center;
  }
  .section-kariera .internship-box,
  .section-career .internship-box {
    width: 70%;
  }
  .section-kariera #opportunity-small .content,
  .section-career #opportunity-small .content {
    flex-direction: column;
    align-items: center;
  }
}
.section-kariera #internship-form form,
.section-career #internship-form form {
  background-color: white !important;
  /*override Less*/
}
/*
  v tejto classe maju byt umiestnene vsetky ostatne
*/
.section-kalendar-akci .beforeelement,
.section-calendar-of-events .beforeelement,
.section-kalendar-akcii .beforeelement,
.section-kalendar-akci .calendar__address:before,
.section-calendar-of-events .calendar__address:before,
.section-kalendar-akcii .calendar__address:before,
.section-kalendar-akci .calendar__address--online:before,
.section-calendar-of-events .calendar__address--online:before,
.section-kalendar-akcii .calendar__address--online:before,
.section-kalendar-akci .calendar__date:before,
.section-calendar-of-events .calendar__date:before,
.section-kalendar-akcii .calendar__date:before,
.section-kalendar-akci .calendar__date--big:before,
.section-calendar-of-events .calendar__date--big:before,
.section-kalendar-akcii .calendar__date--big:before,
.section-kalendar-akci .dek-action .calendar__price:before,
.section-calendar-of-events .dek-action .calendar__price:before,
.section-kalendar-akcii .dek-action .calendar__price:before,
.section-kalendar-akci #js-cal-1::before,
.section-calendar-of-events #js-cal-1::before,
.section-kalendar-akcii #js-cal-1::before,
.section-kalendar-akci #js-cal-0::before,
.section-calendar-of-events #js-cal-0::before,
.section-kalendar-akcii #js-cal-0::before {
  content: "";
  display: inline-block;
  height: 14px;
  width: 17px;
  margin-left: -5px;
  margin-right: 10px;
  background-size: 17px 14px;
  background-repeat: no-repeat;
}
.section-kalendar-akci #js-actions-list,
.section-calendar-of-events #js-actions-list,
.section-kalendar-akcii #js-actions-list {
  min-height: 320px;
  row-gap: 42px;
}
@media (max-width: 649px) {
  .section-kalendar-akci #js-actions-list,
  .section-calendar-of-events #js-actions-list,
  .section-kalendar-akcii #js-actions-list {
    row-gap: 15px;
  }
}
@media (min-width: 650px) {
  .section-kalendar-akci #js-actions-list.actions-list-row,
  .section-calendar-of-events #js-actions-list.actions-list-row,
  .section-kalendar-akcii #js-actions-list.actions-list-row {
    row-gap: 0;
  }
}
.section-kalendar-akci #employment,
.section-calendar-of-events #employment,
.section-kalendar-akcii #employment {
  align-items: center;
}
.section-kalendar-akci .holder--small,
.section-calendar-of-events .holder--small,
.section-kalendar-akcii .holder--small {
  width: auto;
}
.section-kalendar-akci .holder--small .carr-sellector,
.section-calendar-of-events .holder--small .carr-sellector,
.section-kalendar-akcii .holder--small .carr-sellector,
.section-kalendar-akci .holder--small .nameFilerSelect,
.section-calendar-of-events .holder--small .nameFilerSelect,
.section-kalendar-akcii .holder--small .nameFilerSelect,
.section-kalendar-akci .holder--small .carr-sellector--name,
.section-calendar-of-events .holder--small .carr-sellector--name,
.section-kalendar-akcii .holder--small .carr-sellector--name {
  font-size: 14px;
}
.section-kalendar-akci .holder--small .carr-sellector--name,
.section-calendar-of-events .holder--small .carr-sellector--name,
.section-kalendar-akcii .holder--small .carr-sellector--name {
  margin-left: 5px;
  text-decoration: underline;
}
.section-kalendar-akci .holder--small .selected-value,
.section-calendar-of-events .holder--small .selected-value,
.section-kalendar-akcii .holder--small .selected-value {
  padding: 10px 8px;
  position: relative;
  font-weight: 400;
  font-size: 14px;
}
.section-kalendar-akci .holder--small .clear,
.section-calendar-of-events .holder--small .clear,
.section-kalendar-akcii .holder--small .clear {
  display: none;
}
.section-kalendar-akci .holder--small .null-value,
.section-calendar-of-events .holder--small .null-value,
.section-kalendar-akcii .holder--small .null-value {
  margin-left: 12px;
  font-weight: 400;
  font-size: 14px;
}
.section-kalendar-akci .holder--small .null-value::before,
.section-calendar-of-events .holder--small .null-value::before,
.section-kalendar-akcii .holder--small .null-value::before,
.section-kalendar-akci .holder--small .null-value::after,
.section-calendar-of-events .holder--small .null-value::after,
.section-kalendar-akcii .holder--small .null-value::after {
  content: "";
  position: absolute;
  display: block;
  top: 6px;
  left: 0;
  width: 1px;
  height: 7px;
  background: #464646;
  transform: rotate(45deg);
}
.section-kalendar-akci .holder--small .null-value::after,
.section-calendar-of-events .holder--small .null-value::after,
.section-kalendar-akcii .holder--small .null-value::after {
  transform: rotate(-45deg);
  left: -5px;
}
.section-kalendar-akci .holder--small .carr-sellector--list,
.section-calendar-of-events .holder--small .carr-sellector--list,
.section-kalendar-akcii .holder--small .carr-sellector--list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
}
.section-kalendar-akci .calendar__wrap,
.section-calendar-of-events .calendar__wrap,
.section-kalendar-akcii .calendar__wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: fill;
  height: -webkit-fill-available;
}
.section-kalendar-akci .calendar__name,
.section-calendar-of-events .calendar__name,
.section-kalendar-akcii .calendar__name {
  font: normal normal 900 16px/21px Roboto;
  font-size: 18px;
  min-height: 3rem;
  display: block;
}
.section-kalendar-akci .calendar__address,
.section-calendar-of-events .calendar__address,
.section-kalendar-akcii .calendar__address {
  font: normal normal normal 16px/21px Roboto;
  font-size: 16px;
  margin-left: 5px;
}
.section-kalendar-akci .calendar__address:before,
.section-calendar-of-events .calendar__address:before,
.section-kalendar-akcii .calendar__address:before {
  background-image: url("../icon/domcek.svg");
}
.section-kalendar-akci .calendar__address--online,
.section-calendar-of-events .calendar__address--online,
.section-kalendar-akcii .calendar__address--online {
  font: normal normal normal 16px/21px Roboto;
  font-size: 16px;
}
.section-kalendar-akci .calendar__address--online:before,
.section-calendar-of-events .calendar__address--online:before,
.section-kalendar-akcii .calendar__address--online:before {
  background-image: url("../icon/pocitac.svg");
}
.section-kalendar-akci .calendar__date,
.section-calendar-of-events .calendar__date,
.section-kalendar-akcii .calendar__date {
  display: block;
  margin-left: 5px;
  font-weight: bold;
}
.section-kalendar-akci .calendar__date:before,
.section-calendar-of-events .calendar__date:before,
.section-kalendar-akcii .calendar__date:before {
  background-image: url("../icon/kalendar.svg");
}
.section-kalendar-akci .calendar__date--big,
.section-calendar-of-events .calendar__date--big,
.section-kalendar-akcii .calendar__date--big {
  display: block;
}
.section-kalendar-akci .calendar__date--big:before,
.section-calendar-of-events .calendar__date--big:before,
.section-kalendar-akcii .calendar__date--big:before {
  height: 28px;
  width: 26px;
  background-size: 26px 28px;
  background-image: url("../icon/kalendar_big.svg");
}
.section-kalendar-akci .dek-action,
.section-calendar-of-events .dek-action,
.section-kalendar-akcii .dek-action {
  border: 1px solid #ebebeb;
  display: flex;
  flex-direction: column;
}
.section-kalendar-akci .dek-action .second-title,
.section-calendar-of-events .dek-action .second-title,
.section-kalendar-akcii .dek-action .second-title {
  display: none;
}
.section-kalendar-akci .dek-action logo,
.section-calendar-of-events .dek-action logo,
.section-kalendar-akcii .dek-action logo {
  background-color: #fafafa;
  display: block;
  width: 100%;
  padding: 5px;
  background-repeat: no-repeat;
  height: 31px;
}
.section-kalendar-akci .dek-action .calendar__time_from,
.section-calendar-of-events .dek-action .calendar__time_from,
.section-kalendar-akcii .dek-action .calendar__time_from {
  font-weight: normal;
}
.section-kalendar-akci .dek-action .calendar__price,
.section-calendar-of-events .dek-action .calendar__price,
.section-kalendar-akcii .dek-action .calendar__price {
  display: block;
  font-weight: bold;
  margin-bottom: 14px;
  margin-left: 5px;
}
.section-kalendar-akci .dek-action .calendar__price:before,
.section-calendar-of-events .dek-action .calendar__price:before,
.section-kalendar-akcii .dek-action .calendar__price:before {
  background-image: url("../icon/penazenka.svg");
}
.section-kalendar-akci .dek-action .calendar__image,
.section-calendar-of-events .dek-action .calendar__image,
.section-kalendar-akcii .dek-action .calendar__image {
  display: block;
  height: 159px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: 100%;
}
.section-kalendar-akci .dek-action .calendar__description,
.section-calendar-of-events .dek-action .calendar__description,
.section-kalendar-akcii .dek-action .calendar__description {
  height: 159px;
  width: 100%;
  padding: 14px;
}
.section-kalendar-akci .dek-action .calendar__description--hidden,
.section-calendar-of-events .dek-action .calendar__description--hidden,
.section-kalendar-akcii .dek-action .calendar__description--hidden {
  display: none;
}
.section-kalendar-akci .dek-action logo.argos,
.section-calendar-of-events .dek-action logo.argos,
.section-kalendar-akcii .dek-action logo.argos {
  background-image: url("../logo/argos.png");
}
.section-kalendar-akci .dek-action logo.atelier,
.section-calendar-of-events .dek-action logo.atelier,
.section-kalendar-akcii .dek-action logo.atelier {
  background-image: url("../logo/atelier.png");
}
.section-kalendar-akci .dek-action logo.best,
.section-calendar-of-events .dek-action logo.best,
.section-kalendar-akcii .dek-action logo.best {
  background-image: url("../logo/best.png");
}
.section-kalendar-akci .dek-action logo.callida,
.section-calendar-of-events .dek-action logo.callida,
.section-kalendar-akcii .dek-action logo.callida {
  background-image: url("../logo/callida.png");
}
.section-kalendar-akci .dek-action logo.dekmetal,
.section-calendar-of-events .dek-action logo.dekmetal,
.section-kalendar-akcii .dek-action logo.dekmetal {
  background-image: url("../logo/dekmetal.png");
}
.section-kalendar-akci .dek-action logo.dekpartner,
.section-calendar-of-events .dek-action logo.dekpartner,
.section-kalendar-akcii .dek-action logo.dekpartner {
  background-image: url("../logo/dekpartner.png");
}
.section-kalendar-akci .dek-action logo.dekpartner,
.section-calendar-of-events .dek-action logo.dekpartner,
.section-kalendar-akcii .dek-action logo.dekpartner {
  background-image: url("../logo/dekpartner.png");
}
.section-kalendar-akci .dek-action logo.dek_stavebniny,
.section-calendar-of-events .dek-action logo.dek_stavebniny,
.section-kalendar-akcii .dek-action logo.dek_stavebniny {
  background-image: url("../logo/dek_stavebniny.png");
}
.section-kalendar-akci .dek-action logo.dek_stavebniny_sk,
.section-calendar-of-events .dek-action logo.dek_stavebniny_sk,
.section-kalendar-akcii .dek-action logo.dek_stavebniny_sk {
  background-image: url("../logo/dek_stavebniny.png");
}
.section-kalendar-akci .dek-action logo.dekwood,
.section-calendar-of-events .dek-action logo.dekwood,
.section-kalendar-akcii .dek-action logo.dekwood {
  background-image: url("../logo/dekwood.png");
}
.section-kalendar-akci .dek-action logo.first,
.section-calendar-of-events .dek-action logo.first,
.section-kalendar-akcii .dek-action logo.first {
  background-image: url("../logo/first.png");
}
.section-kalendar-akci .dek-action logo.gservis,
.section-calendar-of-events .dek-action logo.gservis,
.section-kalendar-akcii .dek-action logo.gservis {
  background-image: url("../logo/gservis.png");
}
.section-kalendar-akci .dek-action logo.nemopas,
.section-calendar-of-events .dek-action logo.nemopas,
.section-kalendar-akcii .dek-action logo.nemopas {
  background-image: url("../logo/nemopas.png");
}
.section-kalendar-akci .dek-action logo.protea,
.section-calendar-of-events .dek-action logo.protea,
.section-kalendar-akcii .dek-action logo.protea {
  background-image: url("../logo/protea.png");
}
.section-kalendar-akci .dek-action logo.retek,
.section-calendar-of-events .dek-action logo.retek,
.section-kalendar-akcii .dek-action logo.retek {
  background-image: url("../logo/retek.png");
}
.section-kalendar-akci .dek-action logo.stachema,
.section-calendar-of-events .dek-action logo.stachema,
.section-kalendar-akcii .dek-action logo.stachema {
  background-image: url("../logo/stachema.png");
}
.section-kalendar-akci .dek-action logo.urs,
.section-calendar-of-events .dek-action logo.urs,
.section-kalendar-akcii .dek-action logo.urs {
  background-image: url("../logo/urs.png");
}
.section-kalendar-akci .dek-action logo.deksoft,
.section-calendar-of-events .dek-action logo.deksoft,
.section-kalendar-akcii .dek-action logo.deksoft {
  background-image: url("../logo/deksoft.png");
}
.section-kalendar-akci .dek-action logo.dekprime,
.section-calendar-of-events .dek-action logo.dekprime,
.section-kalendar-akcii .dek-action logo.dekprime {
  background-image: url("../logo/dekprime.png");
}
@media (min-width: 650px) {
  .section-kalendar-akci .actions-list-row .dek-action,
  .section-calendar-of-events .actions-list-row .dek-action,
  .section-kalendar-akcii .actions-list-row .dek-action {
    border-top: none;
    border-bottom: 1px solid #ebebeb;
    border-left: 1px solid #ebebeb;
    border-right: 1px solid #ebebeb;
    display: flex;
    flex-direction: row;
  }
  .section-kalendar-akci .actions-list-row .dek-action:hover,
  .section-calendar-of-events .actions-list-row .dek-action:hover,
  .section-kalendar-akcii .actions-list-row .dek-action:hover {
    background-color: #fafafa;
    cursor: pointer;
  }
  .section-kalendar-akci .actions-list-row .popopuuyiuyiy:first-child .dek-action,
  .section-calendar-of-events .actions-list-row .popopuuyiuyiy:first-child .dek-action,
  .section-kalendar-akcii .actions-list-row .popopuuyiuyiy:first-child .dek-action {
    border-top: 1px solid #ebebeb;
  }
  .section-kalendar-akci .actions-list-row logo,
  .section-calendar-of-events .actions-list-row logo,
  .section-kalendar-akcii .actions-list-row logo {
    width: auto;
    border-bottom: none;
  }
  .section-kalendar-akci .actions-list-row .calendar__image,
  .section-calendar-of-events .actions-list-row .calendar__image,
  .section-kalendar-akcii .actions-list-row .calendar__image {
    display: none;
  }
  .section-kalendar-akci .actions-list-row .calendar__description,
  .section-calendar-of-events .actions-list-row .calendar__description,
  .section-kalendar-akcii .actions-list-row .calendar__description {
    display: block;
  }
  .section-kalendar-akci .actions-list-row .calendar__wrap,
  .section-calendar-of-events .actions-list-row .calendar__wrap,
  .section-kalendar-akcii .actions-list-row .calendar__wrap {
    width: 100%;
  }
  .section-kalendar-akci .actions-list-row .calendar__wrap-blok,
  .section-calendar-of-events .actions-list-row .calendar__wrap-blok,
  .section-kalendar-akcii .actions-list-row .calendar__wrap-blok {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .section-kalendar-akci .actions-list-row .calendar__name,
  .section-calendar-of-events .actions-list-row .calendar__name,
  .section-kalendar-akcii .actions-list-row .calendar__name {
    width: 35%;
    min-height: auto;
    order: 1;
  }
  .section-kalendar-akci .actions-list-row .calendar__address,
  .section-calendar-of-events .actions-list-row .calendar__address,
  .section-kalendar-akcii .actions-list-row .calendar__address {
    width: 18%;
    order: 3;
  }
  .section-kalendar-akci .actions-list-row .calendar__date,
  .section-calendar-of-events .actions-list-row .calendar__date,
  .section-kalendar-akcii .actions-list-row .calendar__date {
    width: 15%;
    order: 2;
  }
  .section-kalendar-akci .actions-list-row .calendar__price,
  .section-calendar-of-events .actions-list-row .calendar__price,
  .section-kalendar-akcii .actions-list-row .calendar__price {
    width: 12%;
    margin-bottom: 0;
    order: 4;
  }
  .section-kalendar-akci .actions-list-row .calendar__description,
  .section-calendar-of-events .actions-list-row .calendar__description,
  .section-kalendar-akcii .actions-list-row .calendar__description {
    width: 100%;
    padding: 0;
    margin-left: 14px;
    visibility: visible;
    height: auto;
    margin-top: 24px;
    margin-bottom: 24px;
    transition: all 250ms ease-out;
    overflow: hidden;
  }
  .section-kalendar-akci .actions-list-row .calendar__description--hidden,
  .section-calendar-of-events .actions-list-row .calendar__description--hidden,
  .section-kalendar-akcii .actions-list-row .calendar__description--hidden {
    visibility: hidden;
    height: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.section-kalendar-akci .dek-action--archive logo,
.section-calendar-of-events .dek-action--archive logo,
.section-kalendar-akcii .dek-action--archive logo {
  display: none;
}
.section-kalendar-akci .dek-action--archive .logo_wrap,
.section-calendar-of-events .dek-action--archive .logo_wrap,
.section-kalendar-akcii .dek-action--archive .logo_wrap {
  display: none;
}
.section-kalendar-akci .dek-action--archive .calendar__address,
.section-calendar-of-events .dek-action--archive .calendar__address,
.section-kalendar-akcii .dek-action--archive .calendar__address {
  display: none;
}
.section-kalendar-akci .dek-action--archive .calendar__price,
.section-calendar-of-events .dek-action--archive .calendar__price,
.section-kalendar-akcii .dek-action--archive .calendar__price {
  display: none;
}
.section-kalendar-akci .dek-action--archive .calendar__time_from,
.section-calendar-of-events .dek-action--archive .calendar__time_from,
.section-kalendar-akcii .dek-action--archive .calendar__time_from {
  display: none;
}
.section-kalendar-akci .dek-action--archive .calendar__wrap,
.section-calendar-of-events .dek-action--archive .calendar__wrap,
.section-kalendar-akcii .dek-action--archive .calendar__wrap {
  flex-direction: column-reverse;
}
.section-kalendar-akci .dek-action--archive .calendar__date,
.section-calendar-of-events .dek-action--archive .calendar__date,
.section-kalendar-akcii .dek-action--archive .calendar__date {
  margin-bottom: 14px;
}
.section-kalendar-akci .dek-action--archive .calendar__date:before,
.section-calendar-of-events .dek-action--archive .calendar__date:before,
.section-kalendar-akcii .dek-action--archive .calendar__date:before {
  display: none;
}
.section-kalendar-akci .dek-action--archive.dek-active-false obrazok,
.section-calendar-of-events .dek-action--archive.dek-active-false obrazok,
.section-kalendar-akcii .dek-action--archive.dek-active-false obrazok {
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}
.section-kalendar-akci .dek-action--archive.dek-active-false .calendar__name,
.section-calendar-of-events .dek-action--archive.dek-active-false .calendar__name,
.section-kalendar-akcii .dek-action--archive.dek-active-false .calendar__name,
.section-kalendar-akci .dek-action--archive.dek-active-false .calendar__date,
.section-calendar-of-events .dek-action--archive.dek-active-false .calendar__date,
.section-kalendar-akcii .dek-action--archive.dek-active-false .calendar__date {
  color: #6b6b6b;
}
.section-kalendar-akci .dek-action--archive.dek-active-false a,
.section-calendar-of-events .dek-action--archive.dek-active-false a,
.section-kalendar-akcii .dek-action--archive.dek-active-false a {
  display: none;
}
.section-kalendar-akci .dek-action--archive.dek-active-false .second-title,
.section-calendar-of-events .dek-action--archive.dek-active-false .second-title,
.section-kalendar-akcii .dek-action--archive.dek-active-false .second-title {
  display: block;
}
.section-kalendar-akci .dek-action--archive-hidden,
.section-calendar-of-events .dek-action--archive-hidden,
.section-kalendar-akcii .dek-action--archive-hidden {
  display: none;
}
.section-kalendar-akci button.btn,
.section-calendar-of-events button.btn,
.section-kalendar-akcii button.btn {
  cursor: pointer;
  border: none;
  width: 170px;
  margin-top: 20px;
  background-color: #e30013;
  color: #fff;
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 37px;
  transition: 0.2s ease-in-out;
  transition-property: color, background-color;
  height: 50px;
  border-radius: 25px;
  text-align: center;
}
.section-kalendar-akci #js-clear-filters,
.section-calendar-of-events #js-clear-filters,
.section-kalendar-akcii #js-clear-filters {
  width: 225px;
}
.section-kalendar-akci #js-clear-filters .clear,
.section-calendar-of-events #js-clear-filters .clear,
.section-kalendar-akcii #js-clear-filters .clear {
  margin-left: 0;
}
.section-kalendar-akci #js-clear-filters .clear::before,
.section-calendar-of-events #js-clear-filters .clear::before,
.section-kalendar-akcii #js-clear-filters .clear::before {
  background: #fff;
}
.section-kalendar-akci #js-clear-filters .clear::after,
.section-calendar-of-events #js-clear-filters .clear::after,
.section-kalendar-akcii #js-clear-filters .clear::after {
  background: #fff;
}
.section-kalendar-akci #js-clear-filters:hover,
.section-calendar-of-events #js-clear-filters:hover,
.section-kalendar-akcii #js-clear-filters:hover {
  background-color: #7d000a;
  transition: 0.2s ease-in-out;
  transition-property: color, background-color;
}
.section-kalendar-akci .logo_wrap,
.section-calendar-of-events .logo_wrap,
.section-kalendar-akcii .logo_wrap {
  background: #fafafa;
  padding: 5px 15px;
  border-bottom: 1px solid #ebebeb;
}
@media (min-width: 650px) {
  .section-kalendar-akci .actions-list-row .logo_wrap,
  .section-calendar-of-events .actions-list-row .logo_wrap,
  .section-kalendar-akcii .actions-list-row .logo_wrap {
    border-bottom: none;
    min-width: 86px;
  }
}
.section-kalendar-akci #js-cal-1::before,
.section-calendar-of-events #js-cal-1::before,
.section-kalendar-akcii #js-cal-1::before {
  background-image: url("../icon/pocitac.svg");
  margin-left: 20px;
}
.section-kalendar-akci #js-cal-0::before,
.section-calendar-of-events #js-cal-0::before,
.section-kalendar-akcii #js-cal-0::before {
  background-image: url("../icon/domcek.svg");
  margin-left: 20px;
}
.section-kalendar-akci .calendar__hack-width,
.section-calendar-of-events .calendar__hack-width,
.section-kalendar-akcii .calendar__hack-width {
  width: calc(100% - 120px);
}
@media (max-width: 899px) {
  .section-kalendar-akci .calendar__hack-width,
  .section-calendar-of-events .calendar__hack-width,
  .section-kalendar-akcii .calendar__hack-width {
    width: calc(100% - 30px);
  }
}
@media (max-width: 899px) {
  .section-kalendar-akci .calendar__hack-width,
  .section-calendar-of-events .calendar__hack-width,
  .section-kalendar-akcii .calendar__hack-width {
    width: calc(100% - 60px);
  }
}
.section-kalendar-akci .calendar__wrap-nadpis,
.section-calendar-of-events .calendar__wrap-nadpis,
.section-kalendar-akcii .calendar__wrap-nadpis {
  margin-top: 2rem;
}
@media (max-width: 785px) {
  .section-kalendar-akci .calendar__wrap-nadpis,
  .section-calendar-of-events .calendar__wrap-nadpis,
  .section-kalendar-akcii .calendar__wrap-nadpis {
    flex-direction: column;
  }
  .section-kalendar-akci .calendar__wrap-nadpis h2,
  .section-calendar-of-events .calendar__wrap-nadpis h2,
  .section-kalendar-akcii .calendar__wrap-nadpis h2 {
    margin-bottom: 0 0 10px 0;
  }
  .section-kalendar-akci .calendar__wrap-nadpis .holder--small,
  .section-calendar-of-events .calendar__wrap-nadpis .holder--small,
  .section-kalendar-akcii .calendar__wrap-nadpis .holder--small {
    margin: 0;
  }
  .section-kalendar-akci .calendar__wrap-nadpis .holder--small .selected-value,
  .section-calendar-of-events .calendar__wrap-nadpis .holder--small .selected-value,
  .section-kalendar-akcii .calendar__wrap-nadpis .holder--small .selected-value {
    padding: 10px 0;
  }
}
.section-kalendar-akci .actions-list-grid .dek-action:hover .calendar__description,
.section-calendar-of-events .actions-list-grid .dek-action:hover .calendar__description,
.section-kalendar-akcii .actions-list-grid .dek-action:hover .calendar__description {
  display: block;
  height: 159px;
  padding: 14px;
}
.section-kalendar-akci .actions-list-grid .dek-action:hover .calendar__image,
.section-calendar-of-events .actions-list-grid .dek-action:hover .calendar__image,
.section-kalendar-akcii .actions-list-grid .dek-action:hover .calendar__image {
  display: none;
}
.section-kalendar-akci .actions-list-grid .dek-action .calendar__wrap-blok,
.section-calendar-of-events .actions-list-grid .dek-action .calendar__wrap-blok,
.section-kalendar-akcii .actions-list-grid .dek-action .calendar__wrap-blok {
  padding: 14px 14px 0 14px;
}
@media (min-width: 650px) {
  .section-kalendar-akci .actions-list-grid .dek-action--nonarchive .calendar__description,
  .section-calendar-of-events .actions-list-grid .dek-action--nonarchive .calendar__description,
  .section-kalendar-akcii .actions-list-grid .dek-action--nonarchive .calendar__description,
  .section-kalendar-akci .actions-list-grid .dek-action--archive .calendar__description,
  .section-calendar-of-events .actions-list-grid .dek-action--archive .calendar__description,
  .section-kalendar-akcii .actions-list-grid .dek-action--archive .calendar__description {
    display: block;
    height: 0;
    opacity: 0;
    padding: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, padding 0s ease-in-out, height 0s ease-in-out, visibility 0s ease-in-out;
  }
  .section-kalendar-akci .actions-list-grid .dek-action--nonarchive .calendar__image,
  .section-calendar-of-events .actions-list-grid .dek-action--nonarchive .calendar__image,
  .section-kalendar-akcii .actions-list-grid .dek-action--nonarchive .calendar__image,
  .section-kalendar-akci .actions-list-grid .dek-action--archive .calendar__image,
  .section-calendar-of-events .actions-list-grid .dek-action--archive .calendar__image,
  .section-kalendar-akcii .actions-list-grid .dek-action--archive .calendar__image {
    display: block;
    opacity: 1;
    height: 159px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    transition: opacity 0.2s ease-in-out, padding 0s ease-in-out, height 0s ease-in-out, background-size 0s ease-in-out, background-repeat 0s ease-in-out;
  }
  .section-kalendar-akci .actions-list-grid .dek-action--nonarchive:hover .calendar__image,
  .section-calendar-of-events .actions-list-grid .dek-action--nonarchive:hover .calendar__image,
  .section-kalendar-akcii .actions-list-grid .dek-action--nonarchive:hover .calendar__image,
  .section-kalendar-akci .actions-list-grid .dek-action--archive:hover .calendar__image,
  .section-calendar-of-events .actions-list-grid .dek-action--archive:hover .calendar__image,
  .section-kalendar-akcii .actions-list-grid .dek-action--archive:hover .calendar__image {
    display: block;
    opacity: 0;
    height: 0;
    padding: 0;
    background-repeat: no-repeat;
    background-size: 0;
    transition: opacity 0.4s ease-in-out 0s, padding 0s ease-in-out 0.4s, height 0s ease-in-out 0.4s, background-size 0s ease-in-out 0.4s, background-repeat 0s ease-in-out 0.4s;
  }
  .section-kalendar-akci .actions-list-grid .dek-action--nonarchive:hover .calendar__description,
  .section-calendar-of-events .actions-list-grid .dek-action--nonarchive:hover .calendar__description,
  .section-kalendar-akcii .actions-list-grid .dek-action--nonarchive:hover .calendar__description,
  .section-kalendar-akci .actions-list-grid .dek-action--archive:hover .calendar__description,
  .section-calendar-of-events .actions-list-grid .dek-action--archive:hover .calendar__description,
  .section-kalendar-akcii .actions-list-grid .dek-action--archive:hover .calendar__description {
    visibility: visible;
    padding: 14px;
    height: 159px;
    opacity: 1;
    transition: height 0s ease-in-out, opacity 0.2s ease-in-out, padding 0s ease-in-out;
    transition-delay: 0.4s, 0.4s, 0.4s;
  }
  .section-kalendar-akci .actions-list-grid .dek-action--nonarchive .calendar__wrap-blok,
  .section-calendar-of-events .actions-list-grid .dek-action--nonarchive .calendar__wrap-blok,
  .section-kalendar-akcii .actions-list-grid .dek-action--nonarchive .calendar__wrap-blok,
  .section-kalendar-akci .actions-list-grid .dek-action--archive .calendar__wrap-blok,
  .section-calendar-of-events .actions-list-grid .dek-action--archive .calendar__wrap-blok,
  .section-kalendar-akcii .actions-list-grid .dek-action--archive .calendar__wrap-blok {
    padding: 14px 14px 0 14px;
  }
}
@media (min-width: 650px) {
  .section-kalendar-akci .actions-list-row .calendar__wrap-blok,
  .section-calendar-of-events .actions-list-row .calendar__wrap-blok,
  .section-kalendar-akcii .actions-list-row .calendar__wrap-blok {
    padding: 14px;
    align-items: center;
  }
  .section-kalendar-akci .actions-list-row .logo_wrap,
  .section-calendar-of-events .actions-list-row .logo_wrap,
  .section-kalendar-akcii .actions-list-row .logo_wrap {
    padding: 0;
    padding-top: 10px;
    width: 155px;
    overflow: hidden;
  }
  .section-kalendar-akci .actions-list-row logo,
  .section-calendar-of-events .actions-list-row logo,
  .section-kalendar-akcii .actions-list-row logo {
    height: 31px;
    width: 135px;
    margin-left: 14px;
  }
}
@media (max-width: 785px) {
  .section-kalendar-akci .calendar__wrap-nadpis,
  .section-calendar-of-events .calendar__wrap-nadpis,
  .section-kalendar-akcii .calendar__wrap-nadpis {
    margin-top: 0;
  }
}
@media (max-width: 650px) {
  .section-kalendar-akci .dek-action .calendar__image,
  .section-calendar-of-events .dek-action .calendar__image,
  .section-kalendar-akcii .dek-action .calendar__image {
    display: none;
  }
  .section-kalendar-akci .dek-action .calendar__wrap,
  .section-calendar-of-events .dek-action .calendar__wrap,
  .section-kalendar-akcii .dek-action .calendar__wrap {
    height: auto;
  }
  .section-kalendar-akci .dek-action #js-online .list,
  .section-calendar-of-events .dek-action #js-online .list,
  .section-kalendar-akcii .dek-action #js-online .list,
  .section-kalendar-akci .dek-action #js-typakce .list,
  .section-calendar-of-events .dek-action #js-typakce .list,
  .section-kalendar-akcii .dek-action #js-typakce .list {
    position: absolute;
    left: initial;
    right: 0;
  }
  .section-kalendar-akci .actions-list-grid .dek-action .calendar__description--hidden,
  .section-calendar-of-events .actions-list-grid .dek-action .calendar__description--hidden,
  .section-kalendar-akcii .actions-list-grid .dek-action .calendar__description--hidden {
    visibility: visible;
    height: auto;
    display: block;
    padding: 0 14px 14px 14px;
  }
  .section-kalendar-akci .actions-list-row .calendar__wrap-blok,
  .section-calendar-of-events .actions-list-row .calendar__wrap-blok,
  .section-kalendar-akcii .actions-list-row .calendar__wrap-blok {
    padding: 14px 14px 0 14px;
  }
  .section-kalendar-akci .actions-list-row .calendar__description,
  .section-calendar-of-events .actions-list-row .calendar__description,
  .section-kalendar-akcii .actions-list-row .calendar__description {
    height: auto;
  }
  .section-kalendar-akci .actions-list-row .calendar__description--hidden,
  .section-calendar-of-events .actions-list-row .calendar__description--hidden,
  .section-kalendar-akcii .actions-list-row .calendar__description--hidden {
    display: block;
    padding-top: 0;
  }
  .section-kalendar-akci .actions-list-row .calendar__description,
  .section-calendar-of-events .actions-list-row .calendar__description,
  .section-kalendar-akcii .actions-list-row .calendar__description {
    padding-top: 0;
  }
  .section-kalendar-akci .hid-mob,
  .section-calendar-of-events .hid-mob,
  .section-kalendar-akcii .hid-mob {
    display: none;
  }
  .section-kalendar-akci #employment,
  .section-calendar-of-events #employment,
  .section-kalendar-akcii #employment {
    position: relative;
  }
  .section-kalendar-akci #employment .holder,
  .section-calendar-of-events #employment .holder,
  .section-kalendar-akcii #employment .holder {
    position: unset;
  }
  .section-kalendar-akci #employment .holder .list,
  .section-calendar-of-events #employment .holder .list,
  .section-kalendar-akcii #employment .holder .list {
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
  }
  .section-kalendar-akci .holder--small,
  .section-calendar-of-events .holder--small,
  .section-kalendar-akcii .holder--small {
    position: relative;
  }
  .section-kalendar-akci .holder--small .holder,
  .section-calendar-of-events .holder--small .holder,
  .section-kalendar-akcii .holder--small .holder {
    position: unset;
  }
  .section-kalendar-akci .holder--small .holder .list,
  .section-calendar-of-events .holder--small .holder .list,
  .section-kalendar-akcii .holder--small .holder .list {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
  }
  .section-kalendar-akci .dek-action.dek-action--archive .calendar__description--hidden,
  .section-calendar-of-events .dek-action.dek-action--archive .calendar__description--hidden,
  .section-kalendar-akcii .dek-action.dek-action--archive .calendar__description--hidden {
    display: none;
  }
  .section-kalendar-akci .dek-action.dek-action--archive .calendar__image,
  .section-calendar-of-events .dek-action.dek-action--archive .calendar__image,
  .section-kalendar-akcii .dek-action.dek-action--archive .calendar__image {
    display: block;
  }
}
.section-kalendar-akci .item.js-h-p_asc,
.section-calendar-of-events .item.js-h-p_asc,
.section-kalendar-akcii .item.js-h-p_asc {
  display: none;
}
.section-kalendar-akci .item.js-h-p_desc,
.section-calendar-of-events .item.js-h-p_desc,
.section-kalendar-akcii .item.js-h-p_desc {
  display: none;
}
@media (max-width: 959px) {
  .section-kalendar-akci .holder {
    width: unset;
  }
  .section-kalendar-akci #employment {
    justify-content: space-between;
  }
}
