/*! Kinohod Widget 2018.1.0 | https://widget.kinohod.ru | (c) 2016-present ', «Cinemaportal», LLC. */
/**
 * React Select
 * ============
 * Created by Jed Watson and Joss Mackison for KeystoneJS, http://www.keystonejs.com/
 * https://twitter.com/jedwatson https://twitter.com/jossmackison https://twitter.com/keystonejs
 * MIT License: https://github.com/JedWatson/react-select
*/
.Select {
  position: relative;
}
.Select,
.Select div,
.Select input,
.Select span {
  box-sizing: border-box;
}
.Select.is-disabled > .Select-control {
  background-color: #f9f9f9;
}
.Select.is-disabled > .Select-control:hover {
  box-shadow: none;
}
.Select.is-disabled .Select-arrow-zone {
  cursor: default;
  pointer-events: none;
  opacity: 0.35;
}
.Select-control {
  background-color: #fff;
  border-color: #d9d9d9 #ccc #b3b3b3;
  border-radius: 4px;
  border: 1px solid #ccc;
  color: #333;
  cursor: default;
  display: table;
  border-spacing: 0;
  border-collapse: separate;
  height: 36px;
  outline: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.Select-control:hover {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.Select-control .Select-input:focus {
  outline: none;
}
.is-searchable.is-open > .Select-control {
  cursor: text;
}
.is-open > .Select-control {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: #fff;
  border-color: #b3b3b3 #ccc #d9d9d9;
}
.is-open > .Select-control .Select-arrow {
  top: -2px;
  border-color: transparent transparent #999;
  border-width: 0 5px 5px;
}
.is-searchable.is-focused:not(.is-open) > .Select-control {
  cursor: text;
}
.is-focused:not(.is-open) > .Select-control {
  border-color: #007eff;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(0, 126, 255, 0.1);
}
.Select-placeholder,
.Select--single > .Select-control .Select-value {
  bottom: 0;
  color: #aaa;
  left: 0;
  line-height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  right: 0;
  top: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.has-value.Select--single > .Select-control .Select-value .Select-value-label,
.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value .Select-value-label {
  color: #333;
}
.has-value.Select--single > .Select-control .Select-value a.Select-value-label,
.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label {
  cursor: pointer;
  text-decoration: none;
}
.has-value.Select--single > .Select-control .Select-value a.Select-value-label:hover,
.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:hover,
.has-value.Select--single > .Select-control .Select-value a.Select-value-label:focus,
.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:focus {
  color: #007eff;
  outline: none;
  text-decoration: underline;
}
.Select-input {
  height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;
}
.Select-input > input {
  width: 100%;
  background: none transparent;
  border: 0 none;
  box-shadow: none;
  cursor: default;
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  outline: none;
  line-height: 14px;
  /* For IE 8 compatibility */
  padding: 8px 0 12px;
  /* For IE 8 compatibility */
  -webkit-appearance: none;
}
.is-focused .Select-input > input {
  cursor: text;
}
.has-value.is-pseudo-focused .Select-input {
  opacity: 0;
}
.Select-control:not(.is-searchable) > .Select-input {
  outline: none;
}
.Select-loading-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 16px;
}
.Select-loading {
  -webkit-animation: Select-animation-spin 400ms infinite linear;
  animation: Select-animation-spin 400ms infinite linear;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-right-color: #333;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.Select-clear-zone {
  -webkit-animation: Select-animation-fadeIn 200ms;
  animation: Select-animation-fadeIn 200ms;
  color: #999;
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 17px;
}
.Select-clear-zone:hover {
  color: #D0021B;
}
.Select-clear {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
}
.Select--multi .Select-clear-zone {
  width: 17px;
}
.Select-arrow-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 25px;
  padding-right: 5px;
}
.Select-arrow {
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 5px 5px 2.5px;
  display: inline-block;
  height: 0;
  width: 0;
  position: relative;
}
.is-open .Select-arrow,
.Select-arrow-zone:hover > .Select-arrow {
  border-top-color: #666;
}
.Select--multi .Select-multi-value-wrapper {
  display: inline-block;
}
.Select .Select-aria-only {
  display: inline-block;
  height: 1px;
  width: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  float: left;
}
@-webkit-keyframes Select-animation-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes Select-animation-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.Select-menu-outer {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top-color: #e6e6e6;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  margin-top: -1px;
  max-height: 200px;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 1;
  -webkit-overflow-scrolling: touch;
}
.Select-menu {
  max-height: 198px;
  overflow-y: auto;
}
.Select-option {
  box-sizing: border-box;
  background-color: #fff;
  color: #666666;
  cursor: pointer;
  display: block;
  padding: 8px 10px;
}
.Select-option:last-child {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.Select-option.is-selected {
  background-color: #f5faff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.04);
  color: #333;
}
.Select-option.is-focused {
  background-color: #ebf5ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.08);
  color: #333;
}
.Select-option.is-disabled {
  color: #cccccc;
  cursor: default;
}
.Select-noresults {
  box-sizing: border-box;
  color: #999999;
  cursor: default;
  display: block;
  padding: 8px 10px;
}
.Select--multi .Select-input {
  vertical-align: middle;
  margin-left: 10px;
  padding: 0;
}
.Select--multi.has-value .Select-input {
  margin-left: 5px;
}
.Select--multi .Select-value {
  background-color: #ebf5ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.08);
  border-radius: 2px;
  border: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border: 1px solid rgba(0, 126, 255, 0.24);
  color: #007eff;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.4;
  margin-left: 5px;
  margin-top: 5px;
  vertical-align: top;
}
.Select--multi .Select-value-icon,
.Select--multi .Select-value-label {
  display: inline-block;
  vertical-align: middle;
}
.Select--multi .Select-value-label {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  cursor: default;
  padding: 2px 5px;
}
.Select--multi a.Select-value-label {
  color: #007eff;
  cursor: pointer;
  text-decoration: none;
}
.Select--multi a.Select-value-label:hover {
  text-decoration: underline;
}
.Select--multi .Select-value-icon {
  cursor: pointer;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  border-right: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border-right: 1px solid rgba(0, 126, 255, 0.24);
  padding: 1px 5px 3px;
}
.Select--multi .Select-value-icon:hover,
.Select--multi .Select-value-icon:focus {
  background-color: #d8eafd;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 113, 230, 0.08);
  color: #0071e6;
}
.Select--multi .Select-value-icon:active {
  background-color: #c2e0ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.24);
}
.Select--multi.is-disabled .Select-value {
  background-color: #fcfcfc;
  border: 1px solid #e3e3e3;
  color: #333;
}
.Select--multi.is-disabled .Select-value-icon {
  cursor: not-allowed;
  border-right: 1px solid #e3e3e3;
}
.Select--multi.is-disabled .Select-value-icon:hover,
.Select--multi.is-disabled .Select-value-icon:focus,
.Select--multi.is-disabled .Select-value-icon:active {
  background-color: #fcfcfc;
}
@keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
@-webkit-keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn);
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.rh5v-DefaultPlayer_component {
  position: relative;
  font-family: Helvetica;
  font-size: 11px;
  background-color: #000;
}
.rh5v-DefaultPlayer_video {
  width: 100%;
  height: 100%;
}
.rh5v-DefaultPlayer_controls {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 34px;
  display: -webkit-box;
  display: flex;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.2s;
}
.rh5v-DefaultPlayer_seek {
  -webkit-box-flex: 1;
  flex-grow: 1;
}
.rh5v-DefaultPlayer_component:hover .rh5v-DefaultPlayer_controls {
  opacity: 1;
}
.rh5v-Time_component {
  padding: 0 10px 0 10px;
  line-height: 35px;
  color: #fff;
}
.rh5v-Time_current {
  margin-right: 5px;
}
.rh5v-Time_duration {
  margin-left: 5px;
  color: #919191;
}
.rh5v-Seek_component {
  position: relative;
}
.rh5v-Seek_track {
  position: absolute;
  top: 50%;
  left: 5px;
  right: 5px;
  height: 4px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #3e3e3e;
}
.rh5v-Seek_buffer,
.rh5v-Seek_fill,
.rh5v-Seek_input {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.rh5v-Seek_buffer {
  background-color: #5a5a5a;
}
.rh5v-Seek_fill {
  background: #fff;
}
.rh5v-Seek_input {
  width: 100%;
  opacity: 0;
  cursor: pointer;
}
.rh5v-Volume_component {
  position: relative;
}
.rh5v-Volume_component:hover {
  background-color: #000;
}
.rh5v-Volume_button {
  width: 34px;
  height: 34px;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  cursor: pointer;
}
.rh5v-Volume_button:focus {
  outline: 0;
}
.rh5v-Volume_icon {
  padding: 7px;
}
.rh5v-Volume_slider {
  display: none;
  position: absolute;
  right: 5px;
  bottom: 100%;
  left: 5px;
  height: 56px;
  background-color: #000;
}
.rh5v-Volume_component:hover .rh5v-Volume_slider {
  display: block;
}
.rh5v-Volume_track {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 50%;
  width: 4px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #3e3e3e;
}
.rh5v-Volume_fill,
.rh5v-Volume_input {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.rh5v-Volume_fill {
  background-color: #fff;
}
.rh5v-Volume_input {
  padding: 0;
  margin: 0;
  opacity: 0;
  -webkit-appearance: slider-vertical;
  cursor: pointer;
}
.rh5v-Captions_component {
  position: relative;
}
.rh5v-Captions_component:hover {
  background-color: #000;
}
.rh5v-Captions_button {
  width: 34px;
  height: 34px;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  cursor: pointer;
}
.rh5v-Captions_button:focus {
  outline: 0;
}
.rh5v-Captions_icon {
  padding: 5px;
}
.rh5v-Captions_trackList {
  position: absolute;
  right: 0;
  bottom: 100%;
  display: none;
  background-color: rgba(0, 0, 0, 0.7);
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fff;
}
.rh5v-Captions_component:hover .rh5v-Captions_trackList {
  display: block;
}
.rh5v-Captions_trackItem {
  padding: 7px;
  cursor: pointer;
}
.rh5v-Captions_activeTrackItem,
.rh5v-Captions_trackItem:hover {
  background: #000;
}
.rh5v-Captions_activeTrackItem {
  text-decoration: underline;
}
.rh5v-PlayPause_component:hover {
  background-color: #000;
}
.rh5v-PlayPause_button {
  width: 34px;
  height: 34px;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  cursor: pointer;
}
.rh5v-PlayPause_button:focus {
  outline: 0;
}
.rh5v-PlayPause_icon {
  padding: 5px;
}
.rh5v-Fullscreen_component:hover {
  background-color: #000;
}
.rh5v-Fullscreen_button {
  width: 34px;
  height: 34px;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  cursor: pointer;
}
.rh5v-Fullscreen_button:focus {
  outline: 0;
}
.rh5v-Fullscreen_icon {
  padding: 5px;
}
.rh5v-Overlay_component {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
}
.rh5v-Overlay_inner {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  left: 50%;
  width: 60px;
  height: 60px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: -30px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
}
.rh5v-Overlay_icon {
  position: absolute;
  top: 50%;
  right: 0;
  left: 50%;
  margin-left: -20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* Generated by ParaType (http://www.paratype.com)*/
/* Font MTS Compact Regular: Copyright (c) ParaType, 2022. All rights reserved.*/

@font-face {
	font-family: 'MTSCompact';
	src: url('../fonts/MTSCompact.eot');
	src:
	     url('../fonts/MTSCompact.eot?#iefix') format('embedded-opentype'),
	     url('../fonts/MTSCompact.woff2') format('woff2'),
	     url('../fonts/MTSCompact.woff') format('woff'),
	     url('../fonts/MTSCompact.ttf') format('truetype');
}@font-face {
    font-family: 'NewsGothicCond';
    src: url('NewsGothicCond.eot');
    src: url('NewsGothicCond.eot') format('embedded-opentype'),
         url('NewsGothicCond.woff2') format('woff2'),
         url('NewsGothicCond.woff') format('woff'),
         url('NewsGothicCond.ttf') format('truetype'),
         url('NewsGothicCond.svg#NewsGothicCond') format('svg');
}
/* ========================================================================
   Component: Base
 ========================================================================== */
/*
 * 1. Set `font-size` to support `rem` units
 *    Not using `font` property because a leading hyphen (e.g. -apple-system) causes the font to break in IE11 and Edge
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 * 3. Style
 */
html {
  /* 1 */
  font-family: MTSCompact, Roboto, 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 3 */
  background: #e4e4e4;
  color: #555;
}
/*
 * Removes default margin.
 */
body {
  margin: 0;
}
/* Links
 ========================================================================== */
/*
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  /* 1 */
  background-color: transparent;
  /* 2 */
  -webkit-text-decoration-skip: objects;
}
/*
 * Remove the outline on focused links when they are also active or hovered
 */
a:active,
a:hover {
  outline: none;
}
/*
 * Style
 */
a,
.uk-link {
  color: #007fff;
  text-decoration: none;
  cursor: pointer;
}
a:hover,
.uk-link:hover {
  color: rgba(0, 127, 255, 0.85);
  text-decoration: none;
}
/* Text-level semantics
 ========================================================================== */
/*
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}
/*
 * 1. Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 * 2. Add the correct font weight in Chrome, Edge, and Safari.
 */
/* 1 */
b,
strong {
  font-weight: inherit;
}
/* 2 */
b,
strong {
  font-weight: bolder;
}
/*
 * 1. Correct the odd `em` font sizing in all browsers.
 * 2. Consolas has a better baseline in running text compared to `Courier`
 * 3. Style
 */
:not(pre) > code,
:not(pre) > kbd,
:not(pre) > samp {
  /* 1 */
  font-size: 12px;
  /* 2 */
  font-family: Consolas, monaco, monospace;
  /* 3 */
  white-space: nowrap;
  padding: 2px 6px;
  border-radius: 2px;
  background: #000;
  color: #dd4e00;
}
/*
 * Emphasize
 */
em {
  color: #dd4e00;
}
/*
 * Insert
 */
ins {
  background: #ffd;
  color: #555;
  text-decoration: none;
}
/*
 * Mark
 */
mark {
  background: #ffd;
  color: #555;
}
/*
 * Quote
 */
q {
  font-style: italic;
}
/*
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
 ========================================================================== */
/*
 * Remove the gap between embedded content and the bottom of their containers.
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
/*
 * Responsiveness
 * 1. Set a maximum width
 * 2. Auto scale the height. Only needed if `height` attribute is present
 * 2. Corrects `max-width` behavior if padding and border are used
 */
audio,
canvas,
img,
video {
  /* 1 */
  max-width: 100%;
  /* 2 */
  height: auto;
  /* 3 */
  box-sizing: border-box;
}
/*
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}
/*
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Block elements
 ========================================================================== */
/*
 * Margins
 */
p,
ul,
ol,
dl,
pre,
address,
fieldset,
figure {
  margin: 0 0 15px 0;
}
/* Add margin if adjacent element */
* + p,
* + ul,
* + ol,
* + dl,
* + pre,
* + address,
* + fieldset,
* + figure {
  margin-top: 15px;
}
/* Headings
 ========================================================================== */
h1,
.uk-h1,
h2,
.uk-h2,
h3,
.uk-h3,
h4,
.uk-h4,
h5,
.uk-h5,
h6,
.uk-h6 {
  margin: 0 0 15px 0;
  font-family: MTSCompact, Roboto, 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: normal;
  color: #444;
  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 {
  margin-top: 20px;
}
/*
 * Sizes
 */
h1,
.uk-h1 {
  font-size: 2.625rem;
  line-height: 1.2;
}
h2,
.uk-h2 {
  font-size: 2rem;
  line-height: 1.3;
}
h3,
.uk-h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}
h4,
.uk-h4 {
  font-size: 1.25rem;
  line-height: 1.4;
}
h5,
.uk-h5 {
  font-size: 14px;
  line-height: 1.4;
}
h6,
.uk-h6 {
  font-size: 0.875rem;
  line-height: 1.4;
}
/* 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. Add the correct box sizing and height in Firefox.
 * 2. Show the overflow in Edge and IE.
 * 3. Style
 */
hr,
.uk-hr {
  /* 1 */
  box-sizing: content-box;
  height: 0;
  /* 2 */
  overflow: visible;
  /* 3 */
  margin: 0 0 15px 0;
  border: 0;
  border-top: 1px solid #e5e5e5;
}
/* Add margin if adjacent element */
* + hr,
* + .uk-hr {
  margin-top: 15px;
}
/* Address
 ========================================================================== */
address {
  font-style: normal;
}
/* Blockquotes
 ========================================================================== */
blockquote {
  margin: 0 0 15px 0;
  font-size: 16px;
  line-height: 22px;
  font-style: italic;
  color: #333;
}
/* Add margin if adjacent element */
* + blockquote {
  margin-top: 15px;
}
/*
 * Content
 */
blockquote p:last-of-type {
  margin-bottom: 0;
}
blockquote footer {
  margin-top: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #555;
}
blockquote footer::before {
  content: "\2014   ";
}
/* Preformatted text
 ========================================================================== */
/*
 * 1. Contain overflow in all browsers.
 * 2. Override UA
 */
pre {
  font: 12px / 18px Consolas, monaco, monospace;
  color: #dd4e00;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
  /* 1 */
  overflow: auto;
  background: #e4e4e4;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  padding: 10px;
}
pre code {
  font-family: Consolas, monaco, monospace;
}
/* Selection pseudo-element
 ========================================================================== */
::-moz-selection {
  background: rgba(0, 150, 255, 0.5);
  color: #fff;
  text-shadow: none;
}
::selection {
  background: rgba(0, 150, 255, 0.5);
  color: #fff;
  text-shadow: none;
}
/* HTML5 elements
 ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  /* 1 */
  display: block;
}
/*
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}
/*
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */
template,
[hidden] {
  display: none;
}
/* Iframe
 ========================================================================== */
iframe {
  border: 0;
}
/* Prevent the 300ms delay for touchscreen interactions
 ========================================================================== */
/*
 * Most browsers prevent the 300ms delay automatically for sites that use the `width=device-width` property.
 * For Safari on iOS 9.3+, IE 11 and Edge on desktops and IE 11 on Windows Phone 8.1 it must be applied manually.
 */
a,
area,
button,
input,
label,
select,
summary,
textarea {
  touch-action: manipulation;
}
/* Pass media breakpoints to JS
 ========================================================================== */
/*
 * Breakpoints
 */
.var-media-s:before {
  content: '640px';
}
.var-media-m:before {
  content: '960px';
}
.var-media-l:before {
  content: '1200px';
}
.var-media-xl:before {
  content: '1600px';
}
/* ========================================================================
   Component: Link
 ========================================================================== */
/* Muted
 ========================================================================== */
a.uk-link-muted,
.uk-link-muted a {
  color: #808080;
}
a.uk-link-muted:hover,
.uk-link-muted a:hover {
  color: #555;
}
/* Reset
 ========================================================================== */
/*
 * `!important` needed to override inverse component
 */
a.uk-link-reset,
a.uk-link-reset:hover,
a.uk-link-reset:focus,
.uk-link-reset a,
.uk-link-reset a:hover,
.uk-link-reset a:focus {
  color: inherit !important;
  text-decoration: none !important;
}
/* ========================================================================
   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: 15px;
}
/* Add margin if adjacent element */
* + [class*='uk-divider'] {
  margin-top: 15px;
}
/* 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%23e5e5e5%22%20stroke-width%3D%222%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%227%22%3E%3C%2Fcircle%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 #e5e5e5;
}
.uk-divider-icon::before {
  right: calc(50% + (50px / 2));
  width: 100%;
}
.uk-divider-icon::after {
  left: calc(50% + (50px / 2));
  width: 100%;
}
/* Small
 ========================================================================== */
/*
 * Reset child height, caused by `inline-block`
 */
.uk-divider-small {
  line-height: 0;
}
.uk-divider-small::after {
  content: "";
  display: inline-block;
  width: 100px;
  max-width: 100%;
  border-top: 1px solid #e5e5e5;
  vertical-align: top;
}
/* ========================================================================
   Component: List
 ========================================================================== */
.uk-list {
  padding: 0;
  list-style: none;
}
/*
 * Micro clearfix
 */
.uk-list > li::before,
.uk-list > li::after {
  content: "";
  display: table;
}
.uk-list > li::after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.uk-list > li > :last-child {
  margin-bottom: 0;
}
/*
 * Nested lists
 */
.uk-list ul {
  margin: 0;
  padding-left: 24px;
  list-style: none;
}
/*
 * Style
 */
.uk-list > li:nth-child(n+2),
.uk-list > li > ul {
  margin-top: 10px;
}
/* Style modifiers
 ========================================================================== */
/*
 * Divider
 */
.uk-list-divider > li:nth-child(n+2) {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e5e5e5;
}
/*
 * Striped
 */
.uk-list-striped > li {
  padding: 10px 10px;
}
.uk-list-striped > li:nth-of-type(odd) {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.uk-list-striped > li:nth-of-type(odd) {
  background: #f8f8f8;
}
.uk-list-striped > li:nth-child(n+2) {
  margin-top: 0;
}
/*
 * Bullet
 */
.uk-list-bullet > li {
  position: relative;
  padding-left: calc(16px + 10px);
}
.uk-list-bullet > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  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%23555%22%20cx%3D%223%22%20cy%3D%223%22%20r%3D%223%22%3E%3C%2Fcircle%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  float: left;
}
/* Size modifier
 ========================================================================== */
.uk-list-large > li:nth-child(n+2),
.uk-list-large > li > ul {
  margin-top: 15px;
}
/*
 * Divider
 */
.uk-list-large.uk-list-divider > li:nth-child(n+2) {
  margin-top: 15px;
  padding-top: 15px;
}
/*
 * Striped
 */
.uk-list-large.uk-list-striped > li {
  padding: 15px 10px;
}
.uk-list-large.uk-list-striped > li:nth-of-type(odd) {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.uk-list-large.uk-list-striped > li:nth-child(n+2) {
  margin-top: 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. 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 `button` padding and background color
 * 7. Required for `button`.
 * 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 */
  overflow: visible;
  /* 4 */
  font: inherit;
  color: inherit;
  /* 5 */
  text-transform: none;
  /* 6. */
  padding: 0;
  background-color: transparent;
  /* 7 */
  cursor: pointer;
  /* 8 */
  display: inline-block;
  /* 9 */
  fill: currentcolor;
  /* 10 */
  line-height: 0;
}
/*
 * 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 [fill*='#']:not(.uk-preserve) {
  fill: currentcolor;
}
.uk-icon [stroke*='#']:not(.uk-preserve) {
  stroke: currentcolor;
}
/*
 * Fix Firefox blurry SVG rendering: https://bugzilla.mozilla.org/show_bug.cgi?id=1046835
 */
.uk-icon > * {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
/* Image modifier
 ========================================================================== */
/*
 * Display images in icon dimensions
 */
.uk-icon-image {
  width: 20px;
  height: 20px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
/* Style modifiers
 ========================================================================== */
/*
 * Link
 */
.uk-icon-link {
  color: #808080;
}
.uk-icon-link:hover,
.uk-icon-link:focus {
  color: #555;
  outline: none;
}
/* OnClick + Active */
.uk-icon-link:active,
.uk-active > .uk-icon-link {
  color: #484848;
}
/*
 * Button
 * 1. Center icon vertically and horizontally
 */
.uk-icon-button {
  box-sizing: border-box;
  width: 36px;
  height: 36px;
  border-radius: 500px;
  background: #f8f8f8;
  color: #808080;
  vertical-align: middle;
  /* 1 */
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  transition: 0.1s ease-in-out;
  transition-property: color, background-color;
}
/* Hover + Focus */
.uk-icon-button:hover,
.uk-icon-button:focus {
  background-color: #ebebeb;
  color: #555;
  outline: none;
}
/* OnClick + Active */
.uk-icon-button:active,
.uk-active > .uk-icon-button {
  background-color: #dfdfdf;
  color: #555;
}
/* ========================================================================
   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.
 */
.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;
}
/*
 * Remove the padding in IE 10-.
 */
.uk-radio,
.uk-checkbox {
  padding: 0;
}
/*
 * Improves consistency of cursor style for clickable elements
 */
.uk-radio:not(:disabled),
.uk-checkbox:not(:disabled) {
  cursor: pointer;
}
/*
 * Define consistent border, margin, and padding.
 */
.uk-fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
/* Input, select and textarea
 * Allowed: `text`, `password`, `datetime`, `datetime-local`, `date`,  `month`,
            `time`, `week`, `number`, `email`, `url`, `search`, `tel`, `color`
 * Disallowed: `range`, `radio`, `checkbox`, `file`, `submit`, `reset` and `image`
 ========================================================================== */
/*
 * Remove default style in iOS.
 */
.uk-input,
.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 15px;
  background: #e4e4e4;
  color: #555;
  border: 1px solid #e5e5e5;
  transition: 0.2s ease-in-out;
  transition-property: color, background-color, border;
}
/*
 * Single-line
 * 1. Allow an `a` element to look like a `input` or `select` element
 * 2. Make sure line-height is not larger than height
 *    Also needed to center the text vertically if `a` element is used
 */
.uk-input,
.uk-select:not([multiple]):not([size]) {
  height: 30px;
  vertical-align: middle;
  /* 1 */
  display: inline-block;
  /* 2 */
  line-height: 28px;
}
/*
 * Multi-line
 */
.uk-select[multiple],
.uk-select[size],
.uk-textarea {
  padding-top: 4px;
  padding-bottom: 4px;
  vertical-align: top;
}
/* Focus */
.uk-input:focus,
.uk-select:focus,
.uk-textarea:focus {
  outline: none;
  background-color: #e4e4e4;
  color: #555;
  border-color: rgba(0, 128, 255, 0.5);
}
/* Disabled */
.uk-input:disabled,
.uk-select:disabled,
.uk-textarea:disabled {
  background-color: #f8f8f8;
  color: #808080;
  border-color: #e5e5e5;
}
/*
 * Placeholder
 */
.uk-input:-ms-input-placeholder {
  color: #808080 !important;
}
.uk-input::-moz-placeholder {
  color: #808080;
}
.uk-input::-webkit-input-placeholder {
  color: #808080;
}
.uk-textarea:-ms-input-placeholder {
  color: #808080 !important;
}
.uk-textarea::-moz-placeholder {
  color: #808080;
}
.uk-textarea::-webkit-input-placeholder {
  color: #808080;
}
/* Style modifier (`uk-input`, `uk-select` and `uk-textarea`)
 ========================================================================== */
/*
 * Small
 */
.uk-form-small {
  font-size: 13px;
}
.uk-form-small:not(textarea):not([multiple]):not([size]) {
  height: 25px;
  line-height: 23px;
}
/*
 * Medium
 */
.uk-form-medium {
  font-size: 14px;
}
.uk-form-medium:not(textarea):not([multiple]):not([size]) {
  height: 35px;
  line-height: 35px;
}
/*
 * Large
 */
.uk-form-large {
  font-size: 16px;
}
.uk-form-large:not(textarea):not([multiple]):not([size]) {
  height: 44px;
  line-height: 42px;
}
/* Style modifier (`uk-input`, `uk-select` and `uk-textarea`)
 ========================================================================== */
/*
 * Error
 */
.uk-form-danger,
.uk-form-danger:focus {
  color: #ff360c;
  border-color: #ff360c;
}
/*
 * Success
 */
.uk-form-success,
.uk-form-success:focus {
  color: #6dc79e;
  border-color: #6dc79e;
}
/*
 * Blank
 */
.uk-form-blank {
  background: none;
  border-color: transparent;
}
.uk-form-blank:focus {
  border-color: #e5e5e5;
  border-style: dashed;
}
/* Width modifiers (`uk-input`, `uk-select` and `uk-textarea`)
 ========================================================================== */
/*
 * Fixed widths
 * Different widths for mini sized `input` and `select` elements
 */
input.uk-form-width-xsmall {
  width: 40px;
}
select.uk-form-width-xsmall {
  width: 65px;
}
.uk-form-width-small {
  width: 130px;
}
.uk-form-width-medium {
  width: 200px;
}
.uk-form-width-large {
  width: 500px;
}
/* Select
 ========================================================================== */
/*
 * 1. Remove default style. Also works in Firefox
 * 2. Style
 * 3. Remove default style in IE 10/11
 */
.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%23555%22%20points%3D%2212%201%209%206%2015%206%22%3E%3C%2Fpolygon%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23555%22%20points%3D%2212%2013%209%208%2015%208%22%3E%3C%2Fpolygon%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-position: 100% 50%;
}
/* 3 */
.uk-select:not([multiple]):not([size])::-ms-expand {
  display: none;
}
/*
 * 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%23808080%22%20points%3D%2212%201%209%206%2015%206%22%3E%3C%2Fpolygon%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23808080%22%20points%3D%2212%2013%209%208%2015%208%22%3E%3C%2Fpolygon%3E%0A%3C%2Fsvg%3E%0A");
}
/* Radio and checkbox
 * Note: Only works in Chrome, Safari, Opera and Edge
 ========================================================================== */
/*
 * 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;
  /* 5 */
  background-color: transparent;
  /* 6 */
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border: 1px solid #cccccc;
  transition: 0.2s ease-in-out;
  transition-property: background-color, border;
}
.uk-radio {
  border-radius: 50%;
}
/* Focus */
.uk-radio:focus,
.uk-checkbox:focus {
  outline: none;
  border-color: #007fff;
}
/*
 * Checked
 */
.uk-radio:checked,
.uk-checkbox:checked,
.uk-checkbox:indeterminate {
  background-color: #007fff;
  border-color: transparent;
}
/* Focus */
.uk-radio:checked:focus,
.uk-checkbox:checked:focus,
.uk-checkbox:indeterminate:focus {
  background-color: #0066cc;
}
/*
 * 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%3E%3C%2Fcircle%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%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%3E%3C%2Frect%3E%0A%3C%2Fsvg%3E");
}
/*
 * Disabled
 */
.uk-radio:disabled,
.uk-checkbox:disabled {
  background-color: #f8f8f8;
  border-color: #e5e5e5;
}
.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%23808080%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%3E%3C%2Fcircle%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%23808080%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%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%23808080%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%3E%3C%2Frect%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: 1.5rem;
  line-height: 1.4;
}
/* Custom controls
 ========================================================================== */
/*
 * 1. Container fits its content
 * 2. Create position context
 * 3. Prevent content overflow
 * 4. Behave like most inline-block elements
 */
.uk-form-custom {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
}
/*
 * 1. Position and resize the form control to always cover its container
 * 2. Required for Firefox for positioning to the left
 * 3. Required for Webkit to make `height` work
 * 4. Hide controle and show cursor
 * 5. Needed for the cursor
 * 6. Clip height caused by 5. Needed for Webkit only
 */
.uk-form-custom select,
.uk-form-custom input[type="file"] {
  /* 1 */
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  /* 2 */
  left: 0;
  /* 3 */
  -webkit-appearance: none;
  /* 4 */
  opacity: 0;
  cursor: pointer;
}
.uk-form-custom input[type="file"] {
  /* 5 */
  font-size: 500px;
  /* 6 */
  overflow: hidden;
}
/* Label
 ========================================================================== */
.uk-form-label {
  color: #333;
  font-size: 0.875rem;
}
/* Layout
 ========================================================================== */
/*
 * Stacked
 */
.uk-form-stacked .uk-form-label {
  display: block;
  margin-bottom: 5px;
}
/*
 * Horizontal
 */
/* Tablet portrait and smaller */
@media (max-width: 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: 30px;
  /* 3 */
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  /* 4 */
  color: #808080;
}
/*
 * Required for `a`.
 */
.uk-form-icon:hover {
  color: #555;
}
/*
 * 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: 30px;
}
/*
 * Position modifier
 */
.uk-form-icon-flip {
  right: 0;
  left: auto;
}
.uk-form-icon-flip + .uk-input {
  padding-right: 30px;
}
/* ========================================================================
   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. Style
 * 7. `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.
 * 8. Align text if button has a width
 * 9. Required for `a`.
 */
.uk-button {
  /* 1 */
  margin: 0;
  /* 2 */
  border: none;
  /* 3 */
  overflow: visible;
  /* 4 */
  font: inherit;
  color: inherit;
  /* 5 */
  /* 6 */
  display: inline-block;
  box-sizing: border-box;
  padding: 0 24px;
  vertical-align: middle;
  font-size: 14px;
  /* 7 */
  line-height: 30px;
  /* 8 */
  text-align: center;
  /* 9 */
  text-decoration: none;
  border-radius: 8px;
  text-transform: none;
  transition: 0.1s ease-in-out;
  transition-property: color, background-color, border-color;
}
.uk-button:not(.uk-button-link) {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
.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 {
  /* 8 */
  text-decoration: none;
}
/* Focus */
.uk-button:focus {
  outline: none;
}
/* OnClick + Active */
.uk-button:active:not(.uk-button-link),
.uk-button.uk-active:not(.uk-button-link) {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.uk-button-default {
  background-color: #e8f0f2;
  color: #555;
  border: 1px solid #e5e5e5;
}
/* Hover + Focus */
.uk-button-default:hover,
.uk-button-default:focus {
  background-color: #f8fbfb;
  color: #555;
  border-color: #b2b2b2;
}
/* OnClick + Active */
.uk-button-default:active,
.uk-button-default.uk-active {
  background-color: #d8e5e9;
  color: #555;
  border-color: #999999;
}
/*
 * Primary
 */
.uk-button-primary {
  background-color: var(--Brand_MTS_Red);
  color: #fff;
  border: 1px solid transparent;
}
.uk-button-primary:disabled,
.uk-button-primary .uk-disabled {
  background-color: #007fff !important;
  box-shadow: none !important;
  color: #fff !important;
  opacity: .7;
}
/* Hover + Focus */
.uk-button-primary:hover,
.uk-button-primary:focus {
  background-color: #1b8cfe;
  color: #fff;
}
/* OnClick + Active */
.uk-button-primary:active,
.uk-button-primary.uk-active {
  background-color: #0072e6;
  color: #fff;
}
/*
 * Secondary
 */
.uk-button-secondary {
  background-color: #806127;
  color: #fff;
  border: 1px solid transparent;
}
.uk-button-secondary:disabled,
.uk-button-secondary .uk-disabled {
  background-color: #806127 !important;
  box-shadow: none !important;
  color: #fff !important;
  opacity: .7;
}
/* Hover + Focus */
.uk-button-secondary:hover,
.uk-button-secondary:focus {
  background-color: #6c5221;
  color: #fff;
}
/* OnClick + Active */
.uk-button-secondary:active,
.uk-button-secondary.uk-active {
  background-color: #59431b;
  color: #fff;
}
/*
 * Danger
 */
.uk-button-danger {
  background-color: #ff360c;
  color: #fff;
  border: 1px solid transparent;
}
.uk-button-danger:disabled,
.uk-button-danger .uk-disabled {
  background-color: #ff360c !important;
  box-shadow: none !important;
  color: #fff !important;
  opacity: .7;
}
/* Hover + Focus */
.uk-button-danger:hover,
.uk-button-danger:focus {
  background-color: #fe4c27;
  color: #fff;
}
/* OnClick + Active */
.uk-button-danger:active,
.uk-button-danger.uk-active {
  background-color: #f22a00;
  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: transparent;
  color: #808080;
  border-color: #e5e5e5;
}
/* Size modifiers
 ========================================================================== */
.uk-button-small {
  padding: 0 12px;
  line-height: 25px;
  font-size: 12px;
}
.uk-button-large {
  padding: 0 40px;
  line-height: 44px;
  font-size: 16px;
}
.uk-button-large.uk-button-link {
  min-height: 40px;
  line-height: 40px;
}
/* Text modifiers
 ========================================================================== */
/*
 * Text
 * 1. Reset
 * 2. Style
 */
.uk-button-text {
  /* 1 */
  padding: 0;
  line-height: 16px;
  background: none;
  /* 2 */
  color: #333;
  position: relative;
}
.uk-button-text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  border-bottom: 1px solid #333;
  transition: right 0.3s ease-out;
}
/* Hover + Focus */
.uk-button-text:hover,
.uk-button-text:focus {
  color: #333;
}
.uk-button-text:hover::before,
.uk-button-text:focus::before {
  right: 0;
}
/* Disabled */
.uk-button-text:disabled {
  color: #808080;
}
.uk-button-text:disabled::before {
  display: none;
}
/*
 * Link
 * 1. Reset
 * 2. Style
 */
.uk-button-link {
  /* 1 */
  padding: 0;
  line-height: 16px;
  background: none;
  /* 2 */
  color: #007fff;
}
/* Hover + Focus */
.uk-button-link:hover,
.uk-button-link:focus {
  color: #1b8cfe;
  text-decoration: none;
}
/* Disabled */
.uk-button-link:disabled {
  color: #808080;
  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: -webkit-inline-box;
  display: inline-flex;
  /* 2 */
  vertical-align: middle;
  /* 3 */
  position: relative;
}
/*
     * Warning
     */
.uk-button-warning {
  background-color: #f15500;
  color: #fff;
  border: 1px solid transparent;
}
.uk-button-warning:disabled,
.uk-button-warning .uk-disabled {
  background-color: #f15500 !important;
  box-shadow: none !important;
  color: #fff !important;
  opacity: .7;
}
/* Hover + Focus */
.uk-button-warning:hover,
.uk-button-warning:focus {
  background-color: #fe620d;
  color: #fff;
}
/* OnClick + Active */
.uk-button-warning:active,
.uk-button-warning.uk-active {
  background-color: #d84c00;
  color: #fff;
}
.uk-button-link {
  /*
         * Hover
         */
  /*
         * Active
         */
}
.uk-button-link:hover,
.uk-button-link:focus {
  border-color: #1b8cfe;
}
.uk-button-link:focus {
  outline: none;
}
.uk-button-link:active,
.uk-button-link.uk-active {
  border-color: #0072e6;
}
/* Group
     ========================================================================== */
/*
     * Reset border-radius
     */
.uk-button-group > .uk-button:not(:first-child):not(:last-child),
.uk-button-group > div:not(:first-child):not(:last-child) .uk-button {
  border-radius: 0;
}
.uk-button-group > .uk-button:first-child,
.uk-button-group > div:first-child .uk-button {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.uk-button-group > .uk-button:last-child,
.uk-button-group > div:last-child .uk-button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
/*
     * Collapse border
     */
.uk-button-group > .uk-button:nth-child(n+2),
.uk-button-group > div:nth-child(n+2) .uk-button {
  margin-left: -1px;
}
/*
     * Create position context to superimpose the successor elements border
     * Known issue: If you use an `a` element as button and an icon inside,
     * the active state will not work if you click the icon inside the button
     * Workaround: Just use a `button` or `input` element as button
     */
.uk-button-group .uk-button:hover,
.uk-button-group .uk-button:focus,
.uk-button-group .uk-button:active,
.uk-button-group .uk-button.uk-active {
  position: relative;
  z-index: 1;
}
/* ========================================================================
   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 {
  box-sizing: content-box;
  /* 1 */
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-container {
    padding-left: 24px;
    padding-right: 24px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
/*
 * Micro clearfix
 */
.uk-container::before,
.uk-container::after {
  content: "";
  display: table;
}
.uk-container::after {
  clear: both;
}
/*
 * 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-small {
  max-width: 900px;
}
.uk-container-large {
  max-width: 1600px;
}
.uk-container-expand {
  max-width: none;
}
/* ========================================================================
   Component: Grid
 ========================================================================== */
/*
 * 1. Allow cells to wrap into the next line
 * 2. Reset lists
 */
.uk-grid {
  display: -webkit-box;
  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: -24px;
}
.uk-grid > * {
  padding-left: 24px;
}
/* Vertical */
.uk-grid + .uk-grid,
.uk-grid > .uk-grid-margin,
* + .uk-grid-margin {
  margin-top: 24px;
}
/* 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 {
  margin-left: -12px;
}
.uk-grid-small > * {
  padding-left: 12px;
}
/* Vertical */
.uk-grid + .uk-grid-small,
.uk-grid-small > .uk-grid-margin,
* + .uk-grid-margin-small {
  margin-top: 12px;
}
/*
 * Medium
 */
/* Horizontal */
.uk-grid-medium {
  margin-left: -24px;
}
.uk-grid-medium > * {
  padding-left: 24px;
}
/* Vertical */
.uk-grid + .uk-grid-medium,
.uk-grid-medium > .uk-grid-margin,
* + .uk-grid-margin-medium {
  margin-top: 24px;
}
/*
 * Large
 */
/* Horizontal */
.uk-grid-large {
  margin-left: -40px;
}
.uk-grid-large > * {
  padding-left: 40px;
}
/* Vertical */
.uk-grid + .uk-grid-large,
.uk-grid-large > .uk-grid-margin,
* + .uk-grid-margin-large {
  margin-top: 40px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .uk-grid-large {
    margin-left: -48px;
  }
  .uk-grid-large > * {
    padding-left: 48px;
  }
  /* Vertical */
  .uk-grid + .uk-grid-large,
  .uk-grid-large > .uk-grid-margin,
  * + .uk-grid-margin-large {
    margin-top: 48px;
  }
}
/*
 * Collapse
 */
/* Horizontal */
.uk-grid-collapse {
  margin-left: 0;
}
.uk-grid-collapse > * {
  padding-left: 0;
}
/* Vertical */
.uk-grid + .uk-grid-collapse,
.uk-grid-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 #e5e5e5;
}
/* Vertical */
.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px solid #e5e5e5;
}
/*
 * Default
 */
/* Horizontal */
.uk-grid-divider {
  margin-left: -48px;
}
.uk-grid-divider > * {
  padding-left: 48px;
}
.uk-grid-divider > :not(.uk-first-column)::before {
  left: 24px;
}
/* Vertical */
.uk-grid-divider.uk-grid-stack > .uk-grid-margin {
  margin-top: 48px;
}
.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
  top: -24px;
  left: 48px;
}
/* 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 {
  margin-left: -24px;
}
.uk-grid-divider.uk-grid-small > * {
  padding-left: 24px;
}
.uk-grid-divider.uk-grid-small > :not(.uk-first-column)::before {
  left: 12px;
}
/* Vertical */
.uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin {
  margin-top: 24px;
}
.uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin::before {
  top: -12px;
  left: 24px;
}
/*
 * Medium
 */
/* Horizontal */
.uk-grid-divider.uk-grid-medium {
  margin-left: -48px;
}
.uk-grid-divider.uk-grid-medium > * {
  padding-left: 48px;
}
.uk-grid-divider.uk-grid-medium > :not(.uk-first-column)::before {
  left: 24px;
}
/* Vertical */
.uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin {
  margin-top: 48px;
}
.uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin::before {
  top: -24px;
  left: 48px;
}
/*
 * Large
 */
/* Horizontal */
.uk-grid-divider.uk-grid-large {
  margin-left: -80px;
}
.uk-grid-divider.uk-grid-large > * {
  padding-left: 80px;
}
.uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before {
  left: 40px;
}
/* Vertical */
.uk-grid-divider.uk-grid-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;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .uk-grid-divider.uk-grid-large {
    margin-left: -96px;
  }
  .uk-grid-divider.uk-grid-large > * {
    padding-left: 96px;
  }
  .uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before {
    left: 48px;
  }
  /* Vertical */
  .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin {
    margin-top: 96px;
  }
  .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
    top: -48px;
    left: 96px;
  }
}
/* 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: -webkit-box;
  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 */
  -webkit-box-flex: 1;
          flex: auto;
}
/* ========================================================================
   Component: Card
 ========================================================================== */
.uk-card {
  position: relative;
  box-sizing: border-box;
  transition: box-shadow 0.1s ease-in-out;
}
/* Sections
 ========================================================================== */
.uk-card-body {
  padding: 12px 12px;
}
.uk-card-body.uk-card-body {
  border-radius: 3px;
}
.uk-card-header {
  padding: 12px 24px;
}
.uk-card-footer {
  padding: 12px 24px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-card-body {
    padding: 24px 24px;
  }
  .uk-card-header {
    padding: 20px 40px;
  }
  .uk-card-footer {
    padding: 20px 40px;
  }
}
/*
 * Micro clearfix
 */
.uk-card-body::before,
.uk-card-body::after,
.uk-card-header::before,
.uk-card-header::after,
.uk-card-footer::before,
.uk-card-footer::after {
  content: "";
  display: table;
}
.uk-card-body::after,
.uk-card-header::after,
.uk-card-footer::after {
  clear: both;
}
/*
 * 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: 16px;
  line-height: 18px;
  font-family: Roboto, Arial, sans-serif;
  font-weight: 300;
}
/* Badge
 ========================================================================== */
.uk-card-badge {
  position: absolute;
  top: 12px;
  right: auto;
  z-index: 1;
  border-radius: 3px;
  padding: 6px 12px;
}
/*
 * 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: #e4e4e4;
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
/* Style modifiers
 ========================================================================== */
/*
 * Default
 * Note: Header and Footer are only implemented for the default style
 */
.uk-card-default {
  background: #fff;
  color: #212022;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.uk-card-default .uk-card-title {
  color: #333;
}
.uk-card-default.uk-card-hover:hover {
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
.uk-card-default .uk-card-header {
  border-bottom: 1px solid #e5e5e5;
}
.uk-card-default .uk-card-footer {
  border-top: 1px solid #e5e5e5;
}
/*
 * Primary
 */
.uk-card-primary {
  background: #007fff;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.uk-card-primary .uk-card-title {
  color: #fff;
}
.uk-card-primary.uk-card-hover:hover {
  background-color: #007fff;
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
/*
 * Secondary
 */
.uk-card-secondary {
  background: #806127;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.uk-card-secondary .uk-card-title {
  color: #fff;
}
.uk-card-secondary.uk-card-hover:hover {
  background-color: #806127;
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
/* Size modifier
 ========================================================================== */
/*
 * Small
 */
.uk-card-small.uk-card-body,
.uk-card-small .uk-card-body {
  padding: 15px 15px;
}
.uk-card-small .uk-card-header {
  padding: 10px 15px;
}
.uk-card-small .uk-card-footer {
  padding: 10px 15px;
}
/*
 * Large
 */
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-card-large.uk-card-body,
  .uk-card-large .uk-card-body {
    padding: 48px 48px;
  }
  .uk-card-large .uk-card-header {
    padding: 24px 48px;
  }
  .uk-card-large .uk-card-footer {
    padding: 24px 48px;
  }
}
/*
     * Default
     */
.uk-card-body .uk-nav-default {
  margin: 3px -12px;
}
.uk-card-title + .uk-nav-default {
  margin-top: 0;
}
.uk-card-body .uk-nav-default > li > a,
.uk-card-body .uk-nav-default .uk-nav-header,
.uk-card-body .uk-nav-default .uk-nav-divider {
  padding-left: 12px;
  padding-right: 12px;
}
.uk-card-body .uk-nav-default .uk-nav-sub {
  padding-left: 27px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-card-body .uk-nav-default {
    margin: -9px -24px;
  }
  .uk-card-title + .uk-nav-default {
    margin-top: 0;
  }
  .uk-card-body .uk-nav-default > li > a,
  .uk-card-body .uk-nav-default .uk-nav-header,
  .uk-card-body .uk-nav-default .uk-nav-divider {
    padding-left: 24px;
    padding-right: 24px;
  }
  .uk-card-body .uk-nav-default .uk-nav-sub {
    padding-left: 39px;
  }
}
/*
     * Small
     */
.uk-card-small .uk-nav-default {
  margin: 0px -15px;
}
.uk-card-small .uk-card-title + .uk-nav-default {
  margin-top: 0;
}
.uk-card-small .uk-nav-default > li > a,
.uk-card-small .uk-nav-default .uk-nav-header,
.uk-card-small .uk-nav-default .uk-nav-divider {
  padding-left: 15px;
  padding-right: 15px;
}
.uk-card-small .uk-nav-default .uk-nav-sub {
  padding-left: 30px;
}
/*
     * Large
     */
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-card-large .uk-nav-default {
    margin: -33px -48px;
  }
  .uk-card-large .uk-card-title + .uk-nav-default {
    margin-top: 0;
  }
}
/* ========================================================================
   Component: Close
 ========================================================================== */
/*
 * Adopts `uk-icon`
 */
.uk-close {
  color: #808080;
  transition: 0.1s ease-in-out;
  transition-property: color, opacity;
}
/* Hover + Focus */
.uk-close:hover,
.uk-close:focus {
  color: #555;
  outline: none;
}
/* ========================================================================
   Component: Spinner
 ========================================================================== */
/*
 * Adopts `uk-icon`
 */
/* SVG
 ========================================================================== */
.uk-spinner > * {
  -webkit-animation: uk-spinner-rotate 1.4s linear infinite;
  animation: uk-spinner-rotate 1.4s linear infinite;
}
@-webkit-keyframes uk-spinner-rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
  }
}
@keyframes uk-spinner-rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}
/*
 * Circle
 */
.uk-spinner > * > * {
  stroke-dasharray: 88px;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: uk-spinner-dash 1.4s ease-in-out infinite;
  animation: uk-spinner-dash 1.4s ease-in-out infinite;
  stroke-width: 2;
  stroke-linecap: round;
}
@-webkit-keyframes uk-spinner-dash {
  0% {
    stroke-dashoffset: 88px;
  }
  50% {
    stroke-dashoffset: 22px;
    -webkit-transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 88px;
    -webkit-transform: rotate(450deg);
  }
}
@keyframes uk-spinner-dash {
  0% {
    stroke-dashoffset: 88px;
  }
  50% {
    stroke-dashoffset: 22px;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 88px;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
  }
}
@-webkit-keyframes uk-fidget-spinner-rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes uk-fidget-spinner-rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.uk-fidget-spinner > * {
  -webkit-animation: uk-fidget-spinner-rotate 1.4s linear infinite;
  animation: uk-fidget-spinner-rotate 1.4s linear infinite;
}
.uk-fidget-spinner > * > * {
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* ========================================================================
   Component: Totop
 ========================================================================== */
/*
 * Addopts `uk-icon`
 */
.uk-totop {
  padding: 5px;
  color: #fff;
  transition: color 0.1s ease-in-out;
}
/* Hover + Focus */
.uk-totop:hover,
.uk-totop:focus {
  color: #eee;
  outline: none;
}
/* OnClick */
.uk-totop:active {
  color: #333;
}
/* ========================================================================
   Component: Badge
 ========================================================================== */
/*
 * 1. Style
 * 2. Center child vertically and horizontally
 */
.uk-badge {
  box-sizing: border-box;
  min-width: 22px;
  height: 22px;
  line-height: 22px;
  padding: 0 5px;
  border-radius: 500px;
  vertical-align: middle;
  /* 1 */
  background: #007fff;
  color: #fff;
  font-size: 0.875rem;
  /* 2 */
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}
/*
 * Required for `a`
 */
.uk-badge:hover,
.uk-badge:focus {
  color: #fff;
  text-decoration: none;
  outline: none;
}
/* ========================================================================
   Component: Label
 ========================================================================== */
.uk-label {
  display: inline-block;
  padding: 0 10px;
  background: #007fff;
  line-height: 16px;
  font-size: 0.875rem;
  color: #fff;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 2px;
  text-transform: uppercase;
}
/* Color modifiers
 ========================================================================== */
/*
 * Success
 */
.uk-label-success {
  background-color: #6dc79e;
  color: #fff;
}
/*
 * Warning
 */
.uk-label-warning {
  background-color: #f15500;
  color: #fff;
}
/*
 * Danger
 */
.uk-label-danger {
  background-color: #ff360c;
  color: #fff;
}
/* ========================================================================
   Component: Overlay
 ========================================================================== */
.uk-overlay {
  padding: 24px 24px;
}
/*
 * Remove margin from the last-child
 */
.uk-overlay > :last-child {
  margin-bottom: 0;
}
/* Icon
 ========================================================================== */
/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.uk-overlay-default {
  background: rgba(228, 228, 228, 0.8);
}
/*
 * Primary
 */
.uk-overlay-primary {
  background: rgba(128, 97, 39, 0.8);
}
/* ========================================================================
   Component: Article
 ========================================================================== */
/*
 * Micro clearfix
 */
.uk-article::before,
.uk-article::after {
  content: "";
  display: table;
}
.uk-article::after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.uk-article > :last-child {
  margin-bottom: 0;
}
/* Adjacent sibling
 ========================================================================== */
.uk-article + .uk-article {
  margin-top: 30px;
}
/* Title
 ========================================================================== */
.uk-article-title {
  font-size: 2.625rem;
  line-height: 1.2;
}
/* Meta
 ========================================================================== */
.uk-article-meta {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #808080;
}
.uk-article-meta a {
  color: #808080;
}
.uk-article-meta a:hover {
  color: #555;
  text-decoration: none;
}
/* ========================================================================
   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: #fff;
}
.uk-search-input:focus {
  outline: none;
}
/* Placeholder */
.uk-search-input:-ms-input-placeholder {
  color: #fff !important;
}
.uk-search-input::-moz-placeholder {
  color: #fff;
}
.uk-search-input::-webkit-input-placeholder {
  color: #fff;
}
/* Icon
 ========================================================================== */
/*
 * Adopts `uk-icon`
 * Required for `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 `button` padding and background color
 * 7. Required for `button`.
 */
.uk-search-icon {
  /* 1 */
  margin: 0;
  /* 2 */
  border: none;
  /* 3 */
  overflow: visible;
  /* 4 */
  font: inherit;
  color: inherit;
  /* 5 */
  text-transform: none;
  /* 6. */
  padding: 0;
  background-color: transparent;
  /* 7 */
  cursor: pointer;
}
/*
 * Remove the inner border and padding in Firefox. Required for `button`.
 */
.uk-search-icon::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * Remove default focus style
 */
.uk-search-icon:focus {
  outline: none;
}
/*
 * 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: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  /* 3 */
  color: #808080;
}
/*
 * Required for `a`.
 */
.uk-search .uk-search-icon:hover {
  color: #808080;
}
/*
 * 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: 180px;
}
/*
 * Input
 */
.uk-search-default .uk-search-input {
  height: 30px;
  padding-left: 6px;
  padding-right: 6px;
  background: transparent;
  border: 1px solid #e5e5e5;
}
/* Focus */
.uk-search-default .uk-search-input:focus {
  background-color: transparent;
}
/*
 * Icon
 */
.uk-search-default .uk-search-icon {
  width: 30px;
}
.uk-search-default .uk-search-icon:not(.uk-search-icon-flip) + .uk-search-input {
  padding-left: 30px;
}
.uk-search-default .uk-search-icon-flip + .uk-search-input {
  padding-right: 30px;
}
/* Navbar modifier
 ========================================================================== */
.uk-search-navbar {
  width: 400px;
}
/*
 * Input
 */
.uk-search-navbar .uk-search-input {
  height: 40px;
  background: transparent;
  font-size: 1.5rem;
}
/*
 * Icon
 */
.uk-search-navbar .uk-search-icon {
  width: 40px;
}
.uk-search-navbar .uk-search-icon:not(.uk-search-icon-flip) + .uk-search-input {
  padding-left: 40px;
}
.uk-search-navbar .uk-search-icon-flip + .uk-search-input {
  padding-right: 40px;
}
/* Large modifier
 ========================================================================== */
.uk-search-large {
  width: 500px;
}
/*
 * Input
 */
.uk-search-large .uk-search-input {
  height: 80px;
  background: transparent;
  font-size: 2.625rem;
}
/*
 * Icon
 */
.uk-search-large .uk-search-icon {
  width: 80px;
}
.uk-search-large .uk-search-icon:not(.uk-search-icon-flip) + .uk-search-input {
  padding-left: 80px;
}
.uk-search-large .uk-search-icon-flip + .uk-search-input {
  padding-right: 80px;
}
/* Toggle
 ========================================================================== */
.uk-search-toggle {
  color: #808080;
}
/* Hover + Focus */
.uk-search-toggle:hover,
.uk-search-toggle:focus {
  color: #555;
}
/* ========================================================================
   Component: Nav
 ========================================================================== */
/*
 * Reset
 * 1. Prepare lists
 * 2. Prepare links
 * 3. Remove default focus style
 */
/* 1 */
.uk-nav,
.uk-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* 2 */
.uk-nav li > a {
  display: block;
  text-decoration: none;
}
/* 3 */
.uk-nav li > a:focus {
  outline: 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 modifier
 ========================================================================== */
.uk-nav-parent-icon > .uk-parent > a::after {
  content: "";
  width: 16px;
  height: 16px;
  float: right;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23555%22%20stroke-width%3D%221.1%22%20points%3D%2210%201%204%207%2010%2013%22%3E%3C%2Fpolyline%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.uk-nav-parent-icon > .uk-parent.uk-open > a::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23555%22%20stroke-width%3D%221.1%22%20points%3D%221%204%207%2010%2013%204%22%3E%3C%2Fpolyline%3E%0A%3C%2Fsvg%3E");
}
/* Header
 ========================================================================== */
.uk-nav-header {
  padding: 5px 0;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.uk-nav-header:not(:first-child) {
  margin-top: 15px;
}
/* Divider
 ========================================================================== */
.uk-nav-divider {
  margin: 5px 0;
}
/* Default modifier
 ========================================================================== */
.uk-nav-default {
  font-size: 0.875rem;
}
/*
 * Items
 */
.uk-nav-default > li > a {
  color: #808080;
}
/* Hover + Focus */
.uk-nav-default > li > a:hover,
.uk-nav-default > li > a:focus {
  color: #555;
}
/* Active */
.uk-nav-default > li.uk-active > a {
  color: #333;
}
/*
 * Header
 */
.uk-nav-default .uk-nav-header {
  color: #333;
}
/*
 * Divider
 */
.uk-nav-default .uk-nav-divider {
  border-top: 1px solid #e5e5e5;
}
/*
 * Sublists
 */
.uk-nav-default .uk-nav-sub a {
  color: #808080;
}
.uk-nav-default .uk-nav-sub a:hover,
.uk-nav-default .uk-nav-sub a:focus {
  color: #555;
}
/* Primary modifier
 ========================================================================== */
/*
 * Items
 */
.uk-nav-primary > li > a {
  font-size: 1.5rem;
  line-height: 16px;
  color: #808080;
}
/* Hover + Focus */
.uk-nav-primary > li > a:hover,
.uk-nav-primary > li > a:focus {
  color: #555;
}
/* Active */
.uk-nav-primary > li.uk-active > a {
  color: #333;
}
/*
 * Header
 */
.uk-nav-primary .uk-nav-header {
  color: #333;
}
/*
 * Divider
 */
.uk-nav-primary .uk-nav-divider {
  border-top: 1px solid #e5e5e5;
}
/*
 * Sublists
 */
.uk-nav-primary .uk-nav-sub a {
  color: #808080;
}
.uk-nav-primary .uk-nav-sub a:hover,
.uk-nav-primary .uk-nav-sub a:focus {
  color: #555;
}
/* Alignment modifier
 ========================================================================== */
.uk-nav-center {
  text-align: center;
}
/* Sublists */
.uk-nav-center .uk-nav-sub,
.uk-nav-center .uk-nav-sub ul {
  padding-left: 0;
}
/* Parent icon modifier  */
.uk-nav-center.uk-nav-parent-icon > .uk-parent > a::after {
  position: absolute;
}
/* Variables */
/* ======================================================================== */
/* ========================================================================
   Component: Navbar
 ========================================================================== */
/*
 * 1. Create position context to center navbar group
 */
.uk-navbar {
  display: -webkit-box;
  display: flex;
  /* 1 */
  position: relative;
}
/* Container
 ========================================================================== */
.uk-navbar-container:not(.uk-navbar-transparent) {
  background: #f8f8f8;
}
/*
 * Remove pseudo elements created by micro clearfix as precaution (if Container component is used)
 */
.uk-navbar-container > ::before,
.uk-navbar-container > ::after {
  display: none !important;
}
/* Groups
 ========================================================================== */
/*
 * 1. Align navs and items vertically if they have a different height
 * 2. Note: IE 11 requires an extra `div` which affects the center selector
 */
.uk-navbar-left,
.uk-navbar-right,
.uk-navbar-center,
.uk-navbar-center-left > *,
.uk-navbar-center-right > * {
  display: -webkit-box;
  display: flex;
  /* 1 */
  -webkit-box-align: center;
          align-items: center;
}
/*
 * Horizontal alignment
 * 1. Create position context for centered navbar with sub groups (left/right)
 * 2. Needed for dropdowns because a new position context is created
 *    `z-index` must be smaller than off-canvas
 * 3. Fix text wrapping if the centered section is larger than 50% of the navbar
 * 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%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /* 2 */
  z-index: 990;
}
/* 3 */
.uk-navbar-center:not(:only-child) .uk-navbar-nav > li > a,
.uk-navbar-center:not(:only-child) .uk-navbar-item,
.uk-navbar-center:not(:only-child) .uk-navbar-toggle {
  white-space: nowrap;
}
/* 4 */
.uk-navbar-center-left,
.uk-navbar-center-right {
  position: absolute;
  top: 0;
}
.uk-navbar-center-left {
  right: 100%;
}
.uk-navbar-center-right {
  left: 100%;
}
[class*='uk-navbar-center-'] .uk-navbar-nav > li > a,
[class*='uk-navbar-center-'] .uk-navbar-item,
[class*='uk-navbar-center-'] .uk-navbar-toggle {
  white-space: nowrap;
}
/* Nav
 ========================================================================== */
/*
 * 1. Reset lists
 */
.uk-navbar-nav {
  display: -webkit-box;
  display: flex;
  /* 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. Dimensions
 * 3. Style
 * 4. Required for `a`
 */
.header-avatar {
  width: 35px;
  height: 35px;
}
@media (max-width: 295px) {
  .header-avatar {
    width: 20px;
    height: 20px;
  }
}
.header-avatar .header-avatar-icon {
  width: 30px;
  height: 30px;
  margin: 2.5px;
}
@media (max-width: 295px) {
  .header-avatar .header-avatar-icon {
    width: 15px;
    height: 15px;
  }
}
.uk-navbar-nav > li > a,
.uk-navbar-item,
.uk-navbar-toggle {
  /* Clickable item */
  /* 1 */
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  /* 2 */
  box-sizing: border-box;
  height: 55px;
  padding: 0 12px;
  /* 3 */
  font-size: 14px;
  font-family: MTSCompact, Roboto, 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  /* 4 */
  text-decoration: none;
}
@media (max-width: 360px) {
  .uk-navbar-nav > li > a,
  .uk-navbar-item,
  .uk-navbar-toggle {
    padding: 0 7px;
  }
}
.uk-navbar-nav > li > a.headerbar-logo-block,
.uk-navbar-item.headerbar-logo-block,
.uk-navbar-toggle.headerbar-logo-block {
  padding: 0 7px;
}
@media (max-width: 295px) {
  .uk-navbar-nav > li > a.headerbar-logo-block,
  .uk-navbar-item.headerbar-logo-block,
  .uk-navbar-toggle.headerbar-logo-block {
    padding: 0 5px;
  }
}
.uk-navbar-nav > li > a.headerbar-logo-block .headerbar-mastercard-title,
.uk-navbar-item.headerbar-logo-block .headerbar-mastercard-title,
.uk-navbar-toggle.headerbar-logo-block .headerbar-mastercard-title {
  margin-right: 5px;
  display: -webkit-box;
  display: flex;
}
@media (max-width: 430px) {
  .uk-navbar-nav > li > a.headerbar-logo-block .headerbar-mastercard-title,
  .uk-navbar-item.headerbar-logo-block .headerbar-mastercard-title,
  .uk-navbar-toggle.headerbar-logo-block .headerbar-mastercard-title {
    display: none;
  }
}
.uk-navbar-nav > li > a.headerbar-logo-block .wk-mastercard-promo-badge,
.uk-navbar-item.headerbar-logo-block .wk-mastercard-promo-badge,
.uk-navbar-toggle.headerbar-logo-block .wk-mastercard-promo-badge {
  line-height: 30px;
  border-radius: 50px;
  border: 1px solid #c5c5c570;
  box-sizing: border-box;
  padding: 0 9px;
}
@media (max-width: 360px) {
  .uk-navbar-nav > li > a.headerbar-logo-block .wk-mastercard-promo-badge,
  .uk-navbar-item.headerbar-logo-block .wk-mastercard-promo-badge,
  .uk-navbar-toggle.headerbar-logo-block .wk-mastercard-promo-badge {
    display: none;
  }
}
.uk-navbar-nav > li > a.headerbar-logo-block .wk-mastercard-promo-badge .text,
.uk-navbar-item.headerbar-logo-block .wk-mastercard-promo-badge .text,
.uk-navbar-toggle.headerbar-logo-block .wk-mastercard-promo-badge .text {
  color: white;
  font-family: Roboto, sans-serif;
  font-size: 9px;
  font-weight: 500;
  margin: 0;
  display: inline-block;
}
.uk-navbar-nav > li > a .headerbar-logo,
.uk-navbar-item .headerbar-logo,
.uk-navbar-toggle .headerbar-logo {
  margin-right: 12px;
}
.uk-navbar-nav > li > a .headerbar-logo > span,
.uk-navbar-item .headerbar-logo > span,
.uk-navbar-toggle .headerbar-logo > span {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
@media (max-width: 295px) {
  .uk-navbar-nav > li > a .headerbar-logo,
  .uk-navbar-item .headerbar-logo,
  .uk-navbar-toggle .headerbar-logo {
    margin-right: 5px;
  }
}
.uk-navbar-nav > li > a .uk-text-nowrap,
.uk-navbar-item .uk-text-nowrap,
.uk-navbar-toggle .uk-text-nowrap {
  font-size: 11px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
.uk-navbar-nav > li > a .uk-text-nowrap.headerbar-city,
.uk-navbar-item .uk-text-nowrap.headerbar-city,
.uk-navbar-toggle .uk-text-nowrap.headerbar-city {
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 460px) {
  .uk-navbar-nav > li > a .uk-text-nowrap.headerbar-city,
  .uk-navbar-item .uk-text-nowrap.headerbar-city,
  .uk-navbar-toggle .uk-text-nowrap.headerbar-city {
    width: 60px;
  }
}
.uk-navbar-nav > li > a .uk-text-nowrap.headerbar-city > .headerbar-city-name,
.uk-navbar-item .uk-text-nowrap.headerbar-city > .headerbar-city-name,
.uk-navbar-toggle .uk-text-nowrap.headerbar-city > .headerbar-city-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.uk-navbar-nav > li > a .uk-text-nowrap > .uk-icon,
.uk-navbar-item .uk-text-nowrap > .uk-icon,
.uk-navbar-toggle .uk-text-nowrap > .uk-icon {
  margin-right: 5px;
}
/*
 * Nav items
 */
.uk-navbar-nav > li > a {
  color: #222;
  font-weight: 300;
  text-transform: uppercase;
  transition: 0.1s ease-in-out;
  transition-property: color, background-color;
}
/*
 * Hover
 * Apply hover style also to focus state and if dropdown is opened
 */
.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li > a:focus,
.uk-navbar-nav > li > a.uk-open {
  color: #000;
  outline: none;
}
/* OnClick */
.uk-navbar-nav > li > a:active {
  color: #333;
}
/* Active */
.uk-navbar-nav > li.uk-active > a {
  color: #333;
}
/* Item
 ========================================================================== */
.uk-navbar-item {
  color: #000;
}
/* Toggle
 ========================================================================== */
.uk-navbar-toggle {
  color: #222;
}
.uk-navbar-toggle:hover,
.uk-navbar-toggle:focus,
.uk-navbar-toggle.uk-open {
  color: #000;
  outline: none;
  text-decoration: none;
}
/*
 * Icon
 * Adopts `uk-icon`
 */
/* Hover + Focus */
/* Subtitle
 ========================================================================== */
.uk-navbar-subtitle {
  font-size: 0.875rem;
}
/* Style modifiers
 ========================================================================== */
/* Dropdown
 ========================================================================== */
/*
 * Adopts `uk-dropdown`
 * 1. Hide by default
 * 2. Set position
 * 3. Set a default width
 * 4. Style
 */
.uk-navbar-dropdown {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1020;
  /* 3 */
  box-sizing: border-box;
  width: 200px;
  /* 4 */
  padding: 15px;
  background: #f8f8f8;
  color: #555;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}
/* Show */
.uk-navbar-dropdown.uk-open {
  display: block;
}
/*
 * Direction / Alignment modifiers
 */
/* Direction */
[class*='uk-navbar-dropdown-top'] {
  margin-top: 0;
}
[class*='uk-navbar-dropdown-bottom'] {
  margin-top: 0;
}
[class*='uk-navbar-dropdown-left'] {
  margin-left: 0;
}
[class*='uk-navbar-dropdown-right'] {
  margin-left: 0;
}
/*
 * Grid
 * Adopts `uk-grid`
 */
/* Gutter Horizontal */
.uk-navbar-dropdown-grid {
  margin-left: -24px;
}
.uk-navbar-dropdown-grid > * {
  padding-left: 24px;
}
/* Gutter Vertical */
.uk-navbar-dropdown-grid > .uk-grid-margin {
  margin-top: 24px;
}
/* Stack */
.uk-navbar-dropdown-stack .uk-navbar-dropdown-grid > * {
  width: 100% !important;
}
/*
 * Width modifier
 */
.uk-navbar-dropdown-width-2:not(.uk-navbar-dropdown-stack) {
  width: 400px;
}
.uk-navbar-dropdown-width-3:not(.uk-navbar-dropdown-stack) {
  width: 600px;
}
.uk-navbar-dropdown-width-4:not(.uk-navbar-dropdown-stack) {
  width: 800px;
}
.uk-navbar-dropdown-width-5:not(.uk-navbar-dropdown-stack) {
  width: 1000px;
}
/*
 * Dropbar modifier
 */
.uk-navbar-dropdown-dropbar {
  margin-bottom: 30px;
  box-shadow: none;
}
/* Dropdown Nav
 * Adopts `uk-nav`
 ========================================================================== */
.uk-navbar-dropdown-nav {
  font-size: 0.875rem;
}
/*
 * Items
 */
.uk-navbar-dropdown-nav > li > a {
  color: #808080;
}
/* Hover + Focus */
.uk-navbar-dropdown-nav > li > a:hover,
.uk-navbar-dropdown-nav > li > a:focus {
  color: #555;
}
/* Active */
.uk-navbar-dropdown-nav > li.uk-active > a {
  color: #333;
}
/*
 * Header
 */
.uk-navbar-dropdown-nav .uk-nav-header {
  color: #333;
}
/*
 * Divider
 */
.uk-navbar-dropdown-nav .uk-nav-divider {
  border-top: 1px solid #e5e5e5;
}
/*
 * Sublists
 */
.uk-navbar-dropdown-nav .uk-nav-sub a {
  color: #808080;
}
.uk-navbar-dropdown-nav .uk-nav-sub a:hover,
.uk-navbar-dropdown-nav .uk-nav-sub a:focus {
  color: #555;
}
/* Dropbar
 ========================================================================== */
.uk-navbar-dropbar {
  position: relative;
  background: #f8f8f8;
  overflow: hidden;
}
/*
 * Slide modifier
 */
.uk-navbar-dropbar-slide {
  position: absolute;
  z-index: 1020;
  left: 0;
  right: 0;
}
/* Hooks */
/* ======================================================================== */
/*
     * Navbar
     */
.uk-navbar-container > .uk-container .uk-navbar-left {
  margin-left: -12px;
  margin-right: -12px;
}
.uk-navbar-container > .uk-container .uk-navbar-right {
  margin-right: -12px;
}
/*
     * Grid Divider
     */
.uk-navbar-dropdown-grid > * {
  position: relative;
}
.uk-navbar-dropdown-grid > :not(.uk-first-column)::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  border-left: 1px solid #e5e5e5;
}
/* Vertical */
.uk-navbar-dropdown-grid.uk-grid-stack > .uk-grid-margin::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 24px;
  right: 0;
  border-top: 1px solid #e5e5e5;
}
/* Inverse */
/* ======================================================================== */
/* ========================================================================
   Component: Subnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Gutter
 * 3. Reset lists
 */
.uk-subnav {
  display: -webkit-box;
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin-left: -6px;
  /* 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-subnav > * {
  /* 1 */
  -webkit-box-flex: 0;
          flex: none;
  /* 2 */
  padding-left: 6px;
  /* 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. Prevent gap if child element is `inline-block`, e.g. an icon
 * 2. Style
 */
.uk-subnav > * > :first-child {
  /* 1 */
  display: block;
  /* 2 */
  color: #0096ff;
  font-size: 14px;
  text-transform: none;
  transition: 0.1s ease-in-out;
  transition-property: color, background-color;
}
/* Hover + Focus */
.uk-subnav > * > a:hover,
.uk-subnav > * > a:focus {
  color: rgba(0, 127, 255, 0.85);
  text-decoration: none;
  outline: none;
}
/* Active */
.uk-subnav > .uk-active > a {
  color: #333;
}
/* Divider modifier
 ========================================================================== */
/*
 * 1. Align items and divider vertically
 */
.uk-subnav-divider > * {
  /* 1 */
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
/*
 * Divider
 * `nth-child` makes it also work without JS if it's only one row
 */
.uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before {
  content: "";
  height: 1.5em;
  margin-left: 0px;
  margin-right: 6px;
  border-left: 1px solid #e5e5e5;
}
/* Pill modifier
 ========================================================================== */
.uk-subnav-pill > * > :first-child {
  padding: 0 6px;
  background: transparent;
  color: #0096ff;
  border-radius: 4px;
}
/* Hover + Focus */
.uk-subnav-pill > * > a:hover,
.uk-subnav-pill > * > a:focus {
  background-color: #1aa1ff;
  color: #fff;
}
/* OnClick */
.uk-subnav-pill > * > a:active {
  background-color: #1aa1ff;
  color: #fff;
}
/* Active */
.uk-subnav-pill > .uk-active > a {
  background-color: #0096ff;
  color: #fff;
}
/* Disabled
 * The same for all style modifiers
 ========================================================================== */
.uk-subnav > .uk-disabled > a {
  color: #808080;
}
/* ========================================================================
   Component: Tab
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Gutter
 * 3. Reset lists
 */
.uk-tab {
  display: -webkit-box;
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin-left: -20px;
  /* 3 */
  padding: 0;
  list-style: none;
  position: relative;
}
.uk-tab::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 0;
  border-bottom: 1px solid #e5e5e5;
}
/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 * 3. Create position context for dropdowns
 */
.uk-tab > * {
  /* 1 */
  -webkit-box-flex: 0;
          flex: none;
  /* 2 */
  padding-left: 20px;
  /* 3 */
  position: relative;
}
/* Items
 ========================================================================== */
/*
 * Items must target `a` elements to exclude other elements (e.g. dropdowns)
 * 1. Center text if a width is set
 * 2. Style
 */
.uk-tab > * > a {
  /* 1 */
  display: block;
  text-align: center;
  /* 2 */
  padding: 5px 10px;
  color: #808080;
  border-bottom: 1px solid transparent;
  font-size: 0.875rem;
  text-transform: uppercase;
  transition: color 0.1s ease-in-out;
}
/* Hover + Focus */
.uk-tab > * > a:hover,
.uk-tab > * > a:focus {
  color: #555;
  text-decoration: none;
}
/* Active */
.uk-tab > .uk-active > a {
  color: #333;
  border-color: #007fff;
}
/* Disabled */
.uk-tab > .uk-disabled > a {
  color: #808080;
}
/* Position modifier
 ========================================================================== */
/*
 * Bottom
 */
.uk-tab-bottom::before {
  top: 0;
  bottom: auto;
}
.uk-tab-bottom > * > a {
  border-top: 1px solid transparent;
  border-bottom: none;
}
/*
 * Left + Right
 * 1. Reset Gutter
 */
.uk-tab-left,
.uk-tab-right {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  /* 1 */
  margin-left: 0;
}
/* 1 */
.uk-tab-left > *,
.uk-tab-right > * {
  padding-left: 0;
}
.uk-tab-left::before {
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  border-left: 1px solid #e5e5e5;
  border-bottom: none;
}
.uk-tab-right::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  border-left: 1px solid #e5e5e5;
  border-bottom: none;
}
.uk-tab-left > * > a {
  text-align: right;
  border-right: 1px solid transparent;
  border-bottom: none;
}
.uk-tab-right > * > a {
  text-align: left;
  border-left: 1px solid transparent;
  border-bottom: none;
}
.uk-tab .uk-dropdown {
  margin-left: 30px;
}
/* ========================================================================
   Component: Dotnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset lists
 * 3. Gutter
 */
.uk-dotnav {
  display: -webkit-box;
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  margin-left: -15px;
}
/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 */
.uk-dotnav > * {
  /* 1 */
  -webkit-box-flex: 0;
          flex: none;
  /* 2 */
  padding-left: 15px;
}
/* Items
 ========================================================================== */
/*
 * Items
 * 1. Hide text if present
 */
.uk-dotnav > * > * {
  display: block;
  box-sizing: content-box;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(85, 85, 85, 0.1);
  /* 1 */
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  transition: background-color 0.2s ease-in-out;
}
/* Hover + Focus */
.uk-dotnav > * > :hover,
.uk-dotnav > * > :focus {
  background-color: rgba(85, 85, 85, 0.4);
  outline: none;
}
/* OnClick */
.uk-dotnav > * > :active {
  background-color: rgba(85, 85, 85, 0.6);
}
/* Active */
.uk-dotnav > .uk-active > * {
  background-color: rgba(85, 85, 85, 0.4);
}
/* Modifier: 'uk-dotnav-vertical'
 ========================================================================== */
/*
 * 1. Change direction
 * 2. Gutter
 */
.uk-dotnav-vertical {
  /* 1 */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  /* 2 */
  margin-left: 0;
  margin-top: -15px;
}
/* 2 */
.uk-dotnav-vertical > * {
  padding-left: 0;
  padding-top: 15px;
}
/* ========================================================================
   Component: Accordion
 ========================================================================== */
.uk-accordion {
  padding: 0;
  list-style: none;
}
/* Item
 ========================================================================== */
.uk-accordion > :nth-child(n + 2) {
  margin-top: 15px;
}
/* Title
 ========================================================================== */
.uk-accordion-title {
  margin: 0;
  color: var(--Text_Primary);
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
}
.uk-accordion-title::after {
  content: "";
  width: 1.4em;
  height: 1.4em;
  float: right;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%228%22%20viewBox%3D%220%200%2014%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M0.999994%200.999995L7%206.99998L13%201%22%20stroke%3D%22%23828C96%22%20stroke-opacity%3D%220.8%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.uk-open > .uk-accordion-title::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%228%22%20viewBox%3D%220%200%2014%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M13%207.00001L7%201.00002L1%207%22%20stroke%3D%22%23828C96%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}
/* Content
 ========================================================================== */
.uk-accordion-content {
  margin-top: 15px;
}
/*
 * Micro clearfix
 */
.uk-accordion-content:before,
.uk-accordion-content:after {
  content: '';
  display: table;
}
.uk-accordion-content:after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.uk-accordion-content > :last-child {
  margin-bottom: 0;
}
/* ========================================================================
   Component: Drop
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Set a default width
 */
.uk-drop {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1020;
  /* 3 */
  box-sizing: border-box;
  width: 300px;
}
/* Show */
.uk-drop.uk-open {
  display: block;
}
/* Direction / Alignment modifiers
 ========================================================================== */
/* Direction */
[class*='uk-drop-top'] {
  margin-top: -15px;
}
[class*='uk-drop-bottom'] {
  margin-top: 15px;
}
[class*='uk-drop-left'] {
  margin-left: -15px;
}
[class*='uk-drop-right'] {
  margin-left: 15px;
}
/* Grid modifiers
 ========================================================================== */
.uk-drop-stack .uk-drop-grid > * {
  width: 100% !important;
}
/* ========================================================================
   Component: Modal
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Allow scrolling for the modal dialog
 * 4. Horizontal padding
 * 5. Mask the background page
 * 6. Fade-in transition
 */
.uk-modal {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  padding-left: 15px;
  padding-right: 15px;
  /* 5 */
  background: rgba(220, 220, 220, 0.7);
  /* 6 */
  opacity: 0;
  transition: opacity 0.15s linear;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-modal {
    padding-left: 24px;
    padding-right: 24px;
  }
}
/* 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 caption, spinner and close button
 * 2. Dimensions
 * 3. Style
 * 4. Slide-in transition
 */
.uk-modal-dialog {
  /* 1 */
  position: relative;
  /* 2 */
  box-sizing: border-box;
  margin: 50px auto;
  width: 600px;
  max-width: 100%;
  /* 3 */
  background: #e4e4e4;
  /* 4 */
  opacity: 0;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  transition: opacity 0.3s linear, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s linear, transform 0.3s ease-out;
  transition: opacity 0.3s linear, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  border-radius: 1px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
/* Phone portrait and smaller */
@media (max-width: 639px) {
  .uk-modal-dialog {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
/*
 * Open
 */
.uk-open > .uk-modal-dialog {
  opacity: 1;
  -webkit-transform: translateY(0);
  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%;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/* Lightbox modifier
 ========================================================================== */
.uk-modal-lightbox {
  background: rgba(0, 0, 0, 0.9);
}
.uk-modal-lightbox .uk-modal-dialog {
  margin-left: 15px;
  margin-right: 15px;
}
/* Sections
 ========================================================================== */
.uk-modal-body {
  padding: 24px 24px;
}
.uk-modal-header {
  padding: 12px 24px;
  background: #e4e4e4;
  border-bottom: 1px solid #e5e5e5;
}
.uk-modal-footer {
  padding: 12px 24px;
  background: #e4e4e4;
  border-top: 1px solid #e5e5e5;
}
/*
 * Micro clearfix
 */
.uk-modal-body::before,
.uk-modal-body::after,
.uk-modal-header::before,
.uk-modal-header::after,
.uk-modal-footer::before,
.uk-modal-footer::after {
  content: "";
  display: table;
}
.uk-modal-body::after,
.uk-modal-header::after,
.uk-modal-footer::after {
  clear: both;
}
/*
 * 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: 2rem;
  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
 */
.uk-modal-close-outside {
  top: 0;
  right: 0;
  -webkit-transform: translate(100%, -100%);
  transform: translate(100%, -100%);
  color: #ffffff;
}
.uk-modal-close-outside:hover {
  color: #fff;
}
/*
 * Full
 */
.uk-modal-close-full {
  top: 0;
  right: 0;
  padding: 15px;
  background: #e4e4e4;
}
/* Caption
 ========================================================================== */
.uk-modal-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 15px;
  color: #fff;
  text-align: center;
}
.uk-modal-page body {
  overflow: scroll;
}
/* ========================================================================
   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
 * 4. Transform
 */
.uk-offcanvas-bar {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  box-sizing: border-box;
  width: 270px;
  padding: 15px 15px;
  background: #1b1b1b;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-offcanvas-bar {
    width: 350px;
    padding: 350px 40px;
  }
}
/* Flip modifier */
.uk-offcanvas-flip .uk-offcanvas-bar {
  left: auto;
  right: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
/*
 * Open
 */
.uk-open > .uk-offcanvas-bar {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
/*
 * Slide Animation (Used in slide and push mode)
 */
.uk-offcanvas-bar-animation {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
/*
 * Reveal Animation
 * 1. Set position
 * 2. Clip the bar
 * 3. Animation
 * 4. Reset transform
 */
.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 */
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.uk-open > .uk-offcanvas-reveal {
  width: 270px;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-open > .uk-offcanvas-reveal {
    width: 350px;
  }
}
/*
 * Flip modifier
 */
.uk-offcanvas-flip .uk-offcanvas-reveal {
  right: 0;
  left: auto;
}
/* Close
 * Adopts `uk-close`
 ========================================================================== */
.uk-offcanvas-close {
  position: absolute;
  z-index: 1000;
  top: 20px;
  right: 20px;
  padding: 5px;
}
/* Overlay
 ========================================================================== */
/*
 * Overlay the whole page. Needed for the `::before`
 * 1. Using `100vw` so no modification is needed when off-canvas is flipped
 * 2. Allow for closing with swipe gesture on devices with pointer events.
 */
.uk-offcanvas-overlay {
  /* 1 */
  width: 100vw;
  /* 2 */
  touch-action: none;
}
/*
 * 1. Mask the whole page
 * 2. Fade-in transition
 */
.uk-offcanvas-overlay::before {
  /* 1 */
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.1);
  /* 2 */
  opacity: 0;
  transition: opacity 0.15s linear;
}
.uk-offcanvas-overlay.uk-open::before {
  opacity: 1;
}
/* Container
 ========================================================================== */
/*
 * Prevent horizontal scrollbar when the content is slide-out
 * Has to be on the `html` element too to make it work on the `body`
 */
.uk-offcanvas-page,
.uk-offcanvas-container {
  overflow-x: hidden;
}
/*
 * Prevent all scrollbars if overlay is used
 */
.uk-offcanvas-container-overlay {
  overflow: hidden;
}
/* Content
 ========================================================================== */
/*
 * 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
 * Note: JS sets a fixed width and height so the page can slide-out without shrinking
 * 1. Smooth scrolling
 */
.uk-offcanvas-container .uk-offcanvas-content {
  position: relative;
  left: 0;
  transition: left 0.3s ease-out;
  /* 1 */
  -webkit-overflow-scrolling: touch;
}
/* Disable scrolling if overlay mode */
.uk-offcanvas-overlay .uk-offcanvas-content {
  overflow-y: hidden;
}
/*
 * Activate slide-out animation
 */
:not(.uk-offcanvas-flip) > .uk-offcanvas-content-animation {
  left: 270px;
}
.uk-offcanvas-flip > .uk-offcanvas-content-animation {
  left: -270px;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  :not(.uk-offcanvas-flip) > .uk-offcanvas-content-animation {
    left: 350px;
  }
  .uk-offcanvas-flip > .uk-offcanvas-content-animation {
    left: -350px;
  }
}
.uk-offcanvas-bar {
  -webkit-transform: translateX(-270px);
  transform: translateX(-270px);
}
.uk-offcanvas-container .uk-offcanvas-content {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
:not(.uk-offcanvas-flip) > .uk-offcanvas-content-animation {
  left: 0;
  -webkit-transform: translateX(270px);
          transform: translateX(270px);
}
.uk-offcanvas-flip .uk-offcanvas-content-animation {
  left: 0;
  -webkit-transform: translateX(-270px);
          transform: translateX(-270px);
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-offcanvas-bar {
    -webkit-transform: translateX(-350px);
    transform: translateX(-350px);
  }
  :not(.uk-offcanvas-flip) > .uk-offcanvas-content-animation {
    left: 0;
    -webkit-transform: translateX(350px);
            transform: translateX(350px);
  }
  .uk-offcanvas-flip > .uk-offcanvas-content-animation {
    left: 0;
    -webkit-transform: translateX(-350px);
            transform: translateX(-350px);
  }
}
/* ========================================================================
   Component: Iconnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset lists
 * 3. Gutter
 */
.uk-iconnav {
  display: -webkit-box;
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  margin-left: -10px;
}
/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 */
.uk-iconnav > * {
  /* 1 */
  -webkit-box-flex: 0;
          flex: none;
  /* 2 */
  padding-left: 10px;
}
/* Items
 ========================================================================== */
/*
 * Items
 * 1. Prevent gap if child element is `inline-block`, e.g. an icon
 * 2. Style
 */
.uk-iconnav > * > * {
  /* 1 */
  display: block;
  /* 2 */
  color: #808080;
}
/* Hover + Focus */
.uk-iconnav > * > :hover,
.uk-iconnav > * > :focus {
  color: #555;
  outline: none;
}
/* Active */
.uk-iconnav > .uk-active > * {
  color: #555;
}
/* Modifier: 'uk-iconnav-vertical'
 ========================================================================== */
/*
 * 1. Change direction
 * 2. Gutter
 */
.uk-iconnav-vertical {
  /* 1 */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  /* 2 */
  margin-left: 0;
  margin-top: -10px;
}
/* 2 */
.uk-iconnav-vertical > * {
  padding-left: 0;
  padding-top: 10px;
}
/* ========================================================================
   Component: Animation
 ========================================================================== */
[class*='uk-animation-'] {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* Direction modifier
 ========================================================================== */
.uk-animation-reverse {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* Animations for scrollspy
 ========================================================================== */
/*
 * Fade
 */
.uk-animation-fade {
  -webkit-animation-name: uk-fade;
  animation-name: uk-fade;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
/*
 * Scale
 */
.uk-animation-scale-up {
  -webkit-animation-name: uk-fade-scale-02;
  animation-name: uk-fade-scale-02;
}
.uk-animation-scale-down {
  -webkit-animation-name: uk-fade-scale-18;
  animation-name: uk-fade-scale-18;
}
/*
 * Slide
 */
.uk-animation-slide-top {
  -webkit-animation-name: uk-fade-top;
  animation-name: uk-fade-top;
}
.uk-animation-slide-bottom {
  -webkit-animation-name: uk-fade-bottom;
  animation-name: uk-fade-bottom;
}
.uk-animation-slide-left {
  -webkit-animation-name: uk-fade-left;
  animation-name: uk-fade-left;
}
.uk-animation-slide-right {
  -webkit-animation-name: uk-fade-right;
  animation-name: uk-fade-right;
}
/*
 * Slide Small
 */
.uk-animation-slide-top-small {
  -webkit-animation-name: uk-fade-top-small;
  animation-name: uk-fade-top-small;
}
.uk-animation-slide-bottom-small {
  -webkit-animation-name: uk-fade-bottom-small;
  animation-name: uk-fade-bottom-small;
}
.uk-animation-slide-left-small {
  -webkit-animation-name: uk-fade-left-small;
  animation-name: uk-fade-left-small;
}
.uk-animation-slide-right-small {
  -webkit-animation-name: uk-fade-right-small;
  animation-name: uk-fade-right-small;
}
/*
 * Slide Medium
 */
.uk-animation-slide-top-medium {
  -webkit-animation-name: uk-fade-top-medium;
  animation-name: uk-fade-top-medium;
}
.uk-animation-slide-bottom-medium {
  -webkit-animation-name: uk-fade-bottom-medium;
  animation-name: uk-fade-bottom-medium;
}
.uk-animation-slide-left-medium {
  -webkit-animation-name: uk-fade-left-medium;
  animation-name: uk-fade-left-medium;
}
.uk-animation-slide-right-medium {
  -webkit-animation-name: uk-fade-right-medium;
  animation-name: uk-fade-right-medium;
}
/*
 * Kenburns
 */
.uk-animation-kenburns {
  -webkit-animation-name: uk-scale-kenburns;
  animation-name: uk-scale-kenburns;
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
}
/*
 * Shake
 */
.uk-animation-shake {
  -webkit-animation-name: uk-shake;
  animation-name: uk-shake;
}
/* Duration modifier
 ========================================================================== */
.uk-animation-fast {
  -webkit-animation-duration: 0.1s;
  animation-duration: 0.1s;
}
/* Enable animation only on hover
========================================================================== */
/*
 * Note: Firefox and IE needs this because animations are not triggered when switching between display `none` and `block`
 */
.uk-animation-toggle:not(:hover):not(.uk-hover) [class*='uk-animation-'] {
  -webkit-animation-name: none;
  animation-name: none;
}
/* Keyframes used by animation classes
 ========================================================================== */
/*
 * Fade
 */
@-webkit-keyframes uk-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes uk-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
 * Slide Top
 */
@-webkit-keyframes uk-fade-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes uk-fade-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*
 * Slide Bottom
 */
@-webkit-keyframes uk-fade-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes uk-fade-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*
 * Slide Left
 */
@-webkit-keyframes uk-fade-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes uk-fade-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*
 * Slide Right
 */
@-webkit-keyframes uk-fade-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes uk-fade-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*
 * Slide Top Small
 */
@-webkit-keyframes uk-fade-top-small {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes uk-fade-top-small {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*
 * Slide Bottom Small
 */
@-webkit-keyframes uk-fade-bottom-small {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes uk-fade-bottom-small {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*
 * Slide Left Small
 */
@-webkit-keyframes uk-fade-left-small {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes uk-fade-left-small {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*
 * Slide Right Small
 */
@-webkit-keyframes uk-fade-right-small {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes uk-fade-right-small {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*
 * Slide Top Medium
 */
@-webkit-keyframes uk-fade-top-medium {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes uk-fade-top-medium {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*
 * Slide Bottom Medium
 */
@-webkit-keyframes uk-fade-bottom-medium {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes uk-fade-bottom-medium {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*
 * Slide Left Medium
 */
@-webkit-keyframes uk-fade-left-medium {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes uk-fade-left-medium {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*
 * Slide Right Medium
 */
@-webkit-keyframes uk-fade-right-medium {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes uk-fade-right-medium {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*
 * Scale Up
 */
@-webkit-keyframes uk-fade-scale-02 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@keyframes uk-fade-scale-02 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/*
 * Scale Down
 */
@-webkit-keyframes uk-fade-scale-18 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@keyframes uk-fade-scale-18 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/*
 * Kenburns
 */
@-webkit-keyframes uk-scale-kenburns {
  0% {
    -webkit-transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
  }
}
@keyframes uk-scale-kenburns {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
/*
 * Shake
 */
@-webkit-keyframes uk-shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
  }
  10% {
    -webkit-transform: translateX(-9px);
  }
  20% {
    -webkit-transform: translateX(8px);
  }
  30% {
    -webkit-transform: translateX(-7px);
  }
  40% {
    -webkit-transform: translateX(6px);
  }
  50% {
    -webkit-transform: translateX(-5px);
  }
  60% {
    -webkit-transform: translateX(4px);
  }
  70% {
    -webkit-transform: translateX(-3px);
  }
  80% {
    -webkit-transform: translateX(2px);
  }
  90% {
    -webkit-transform: translateX(-1px);
  }
}
@keyframes uk-shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10% {
    -webkit-transform: translateX(-9px);
            transform: translateX(-9px);
  }
  20% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  30% {
    -webkit-transform: translateX(-7px);
            transform: translateX(-7px);
  }
  40% {
    -webkit-transform: translateX(6px);
            transform: translateX(6px);
  }
  50% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  60% {
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
  70% {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }
  80% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  90% {
    -webkit-transform: translateX(-1px);
            transform: translateX(-1px);
  }
}
.uk-animation-slide-top-fixed {
  -webkit-animation-name: uk-fade-bottom-small;
  animation-name: uk-fade-bottom-small;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear !important;
  animation-timing-function: linear !important;
}
.uk-animation-slide-bottom-fixed {
  -webkit-animation-name: uk-fade-bottom-small;
  animation-name: uk-fade-bottom-small;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear !important;
  animation-timing-function: linear !important;
}
/* ========================================================================
   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% * 1 / 3.001);
}
.uk-child-width-1-4 > * {
  width: 25%;
}
.uk-child-width-1-5 > * {
  width: 20%;
}
.uk-child-width-1-6 > * {
  width: calc(100% * 1 / 6.001);
}
.uk-child-width-auto > * {
  width: auto;
}
/*
 *    Instead of 0, 1px is needed to make cell wrap into next row if predecessor is 100% wide
 *    and the grid gutter is 0 pixels wide
 */
.uk-child-width-expand > * {
  width: 1px;
}
/*
 * 1. Make `width: 1px` work, because according to the spec flex items won’t shrink
 *    below their minimum content size. To change this, set the min-width.
 *    Only needed for Firefox. All other browsers ignore this.
 *
 * 2. `width` is ignored when wrapping flex items in Safari
 *    https://github.com/philipwalton/flexbugs#11-min-and-max-size-declarations-are-ignored-when-wrapping-flex-items
 */
.uk-child-width-expand > :not([class*='uk-width']) {
  -webkit-box-flex: 1;
          flex: 1;
  /* 1 */
  min-width: 0;
  /* 2 */
  flex-basis: 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% * 1 / 3.001);
  }
  .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% * 1 / 6.001);
  }
  .uk-child-width-auto\@s > * {
    width: auto;
  }
  .uk-child-width-expand\@s > * {
    width: 1px;
  }
  .uk-child-width-expand\@s > :not([class*='uk-width']) {
    -webkit-box-flex: 1;
            flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }
}
/* 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% * 1 / 3.001);
  }
  .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% * 1 / 6.001);
  }
  .uk-child-width-auto\@m > * {
    width: auto;
  }
  .uk-child-width-expand\@m > * {
    width: 1px;
  }
  .uk-child-width-expand\@m > :not([class*='uk-width']) {
    -webkit-box-flex: 1;
            flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }
}
/* 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% * 1 / 3.001);
  }
  .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% * 1 / 6.001);
  }
  .uk-child-width-auto\@l > * {
    width: auto;
  }
  .uk-child-width-expand\@l > * {
    width: 1px;
  }
  .uk-child-width-expand\@l > :not([class*='uk-width']) {
    -webkit-box-flex: 1;
            flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }
}
/* 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% * 1 / 3.001);
  }
  .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% * 1 / 6.001);
  }
  .uk-child-width-auto\@xl > * {
    width: auto;
  }
  .uk-child-width-expand\@xl > * {
    width: 1px;
  }
  .uk-child-width-expand\@xl > :not([class*='uk-width']) {
    -webkit-box-flex: 1;
            flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }
}
/* 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% * 1 / 3.001);
}
.uk-width-2-3 {
  width: calc(100% * 2 / 3.001);
}
/* 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% * 1 / 6.001);
}
.uk-width-5-6 {
  width: calc(100% * 5 / 6.001);
}
/* Pixel */
.uk-width-small {
  width: 150px;
}
.uk-width-medium {
  width: 300px;
}
.uk-width-large {
  width: 450px;
}
.uk-width-xlarge {
  width: 600px;
}
.uk-width-xxlarge {
  width: 750px;
}
/* Auto */
.uk-width-auto {
  width: auto;
}
/* Expand */
.uk-width-expand {
  width: 1px;
  -webkit-box-flex: 1;
          flex: 1;
  min-width: 0;
  flex-basis: 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% * 1 / 3.001);
  }
  .uk-width-2-3\@s {
    width: calc(100% * 2 / 3.001);
  }
  /* 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% * 1 / 6.001);
  }
  .uk-width-5-6\@s {
    width: calc(100% * 5 / 6.001);
  }
  /* 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-xxlarge\@s {
    width: 750px;
  }
  /* Auto */
  .uk-width-auto\@s {
    width: auto;
  }
  /* Expand */
  .uk-width-expand\@s {
    width: 1px;
    -webkit-box-flex: 1;
            flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }
}
/* 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% * 1 / 3.001);
  }
  .uk-width-2-3\@m {
    width: calc(100% * 2 / 3.001);
  }
  /* 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% * 1 / 6.001);
  }
  .uk-width-5-6\@m {
    width: calc(100% * 5 / 6.001);
  }
  /* 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-xxlarge\@m {
    width: 750px;
  }
  /* Auto */
  .uk-width-auto\@m {
    width: auto;
  }
  /* Expand */
  .uk-width-expand\@m {
    width: 1px;
    -webkit-box-flex: 1;
            flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }
}
/* 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% * 1 / 3.001);
  }
  .uk-width-2-3\@l {
    width: calc(100% * 2 / 3.001);
  }
  /* 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% * 1 / 6.001);
  }
  .uk-width-5-6\@l {
    width: calc(100% * 5 / 6.001);
  }
  /* 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-xxlarge\@l {
    width: 750px;
  }
  /* Auto */
  .uk-width-auto\@l {
    width: auto;
  }
  /* Expand */
  .uk-width-expand\@l {
    width: 1px;
    -webkit-box-flex: 1;
            flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }
}
/* 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% * 1 / 3.001);
  }
  .uk-width-2-3\@xl {
    width: calc(100% * 2 / 3.001);
  }
  /* 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% * 1 / 6.001);
  }
  .uk-width-5-6\@xl {
    width: calc(100% * 5 / 6.001);
  }
  /* 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-xxlarge\@xl {
    width: 750px;
  }
  /* Auto */
  .uk-width-auto\@xl {
    width: auto;
  }
  /* Expand */
  .uk-width-expand\@xl {
    width: 1px;
    -webkit-box-flex: 1;
            flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }
}
/* ========================================================================
   Component: Text
 ========================================================================== */
/* Style modifiers
 ========================================================================== */
.uk-text-lead {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #333;
}
.uk-text-meta {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #808080;
}
.uk-text-meta a {
  color: #808080;
}
.uk-text-meta a:hover {
  color: #555;
  text-decoration: none;
}
/* Size modifiers
 ========================================================================== */
.uk-text-small {
  font-size: 13px;
  line-height: 15px;
}
.uk-text-large {
  font-size: 24px;
  line-height: 28px;
}
/* Weight modifier
 ========================================================================== */
.uk-text-bold {
  font-weight: bolder;
}
/* Transform modifier
 ========================================================================== */
.uk-text-uppercase {
  text-transform: uppercase !important;
}
.uk-text-capitalize {
  text-transform: capitalize !important;
}
.uk-text-lowercase {
  text-transform: lowercase !important;
}
/* Color modifiers
 ========================================================================== */
.uk-text-muted {
  color: #808080 !important;
}
.uk-text-primary {
  color: #007fff !important;
}
.uk-text-success {
  color: #82bcae !important;
}
.uk-text-warning {
  color: #f15500 !important;
}
.uk-text-danger {
  color: #ff340a !important;
}
/* Background modifier
 ========================================================================== */
/*
 * 1. The background clips to the foreground text. Works in Chrome, Firefox, Safari, Edge and Opera
 *    Default color is set to transparent
 * 2. Container fits the text
 * 3. Fallback color for IE11
 */
.uk-text-background {
  /* 1 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* 2 */
  display: inline-block;
  /* 3 */
  color: #007fff !important;
}
@supports (-webkit-background-clip: text) {
  .uk-text-background {
    background-color: #007fff;
  }
}
/* 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;
}
/*
 * 1. Wrap long words onto the next line and break them if they are too long to fit
 * 2. Legacy `word-wrap` as fallback for `overflow-wrap`
 * 3. Add a hyphen where the word breaks
 * 4. Fix `overflow-wrap` which doesn't work with table cells in Chrome, Opera, IE11 and Edge
 *    Must use `break-all` to support IE11 and Edge
 */
.uk-text-break {
  /* 1 */
  overflow-wrap: break-word;
  /* 2 */
  word-wrap: break-word;
  /* 3 */
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
/* 4 */
th.uk-text-break,
td.uk-text-break {
  word-break: break-all;
}
/* Color modifiers
     ========================================================================== */
.uk-text-dark {
  color: #000 !important;
}
.uk-text-secondary {
  color: #806127 !important;
}
.uk-text-contrast {
  color: #fff !important;
}
.uk-text-inverse {
  color: #fff !important;
}
/* Size modifiers
     ========================================================================== */
.uk-text-xsmall {
  font-size: 11px;
  line-height: 15px;
}
.uk-text-xlarge {
  font-size: 30px;
  line-height: 34px;
}
.uk-text-base {
  font-size: 14px;
  line-height: 16px;
}
/* Weight modifiers
     ========================================================================== */
.uk-text-thin {
  font-weight: 100;
}
.uk-text-light {
  font-weight: 300;
}
.uk-text-regular {
  font-weight: 400;
}
.uk-text-medium {
  font-weight: 500;
}
.uk-text-semibold {
  font-weight: 600;
}
.uk-text-bold {
  font-weight: 700;
}
/* Transform modifiers
     ========================================================================== */
.uk-text-fluc:first-letter {
  text-transform: uppercase;
}
/* ========================================================================
   Component: Cover
 ========================================================================== */
/*
 * Works with iframes and embedded content
 * 1. Reset responsiveness for embedded content
 * 2. Center object
 * Note: Percent values on the `top` property only works if this element
 *       is absolute positioned or if the container has a height
 */
.uk-cover {
  /* 1 */
  max-width: none;
  /* 2 */
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/* 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: #e4e4e4;
}
.uk-background-muted {
  background-color: #f8f8f8;
}
.uk-background-primary {
  background-color: #007fff;
}
.uk-background-secondary {
  background-color: #806127;
}
/* Size
 ========================================================================== */
.uk-background-cover,
.uk-background-contain {
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.uk-background-cover {
  background-size: cover;
}
.uk-background-contain {
  background-size: contain;
}
/* 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
 ========================================================================== */
.uk-background-fixed {
  background-attachment: fixed;
}
/*
 * 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;
}
.uk-background-contrast {
  background-color: #fff;
}
/* ========================================================================
   Component: Utility
 ========================================================================== */
/* Panel
 ========================================================================== */
.uk-panel {
  position: relative;
  box-sizing: border-box;
}
/*
 * Micro clearfix
 */
.uk-panel::before,
.uk-panel::after {
  content: "";
  display: table;
}
.uk-panel::after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.uk-panel > :last-child {
  margin-bottom: 0;
}
/*
 * Scrollable
 */
.uk-panel-scrollable {
  height: 170px;
  padding: 10px;
  border: 1px solid #e5e5e5;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  resize: both;
}
/* Clearfix
 ========================================================================== */
/*
 * 1. `table-cell` is used with `::before` because `table` creates a 1px gap when it becomes a flex item, only in Webkit
 * 2. `table` is used again with `::after` because `clear` only works with block elements.
 * Note: `display: block` with `overflow: hidden` is currently not working in the latest Safari
 */
/* 1 */
.uk-clearfix::before {
  content: "";
  display: table-cell;
}
/* 2 */
.uk-clearfix::after {
  content: "";
  display: table;
  clear: both;
}
/* Float
 ========================================================================== */
/*
 * 1. Prevent content overflow
 */
.uk-float-left {
  float: left;
}
.uk-float-right {
  float: right;
}
/* 1 */
[class*='uk-float-'] {
  max-width: 100%;
}
/* Overfow
 ========================================================================== */
.uk-overflow-hidden {
  overflow: hidden;
}
/*
 * Enable scrollbars if content is clipped
 */
.uk-overflow-auto {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.uk-overflow-auto > :last-child {
  margin-bottom: 0;
}
/* Resize
 ========================================================================== */
.uk-resize {
  resize: both;
}
.uk-resize-vertical {
  resize: vertical;
}
/* Display
 ========================================================================== */
.uk-display-block {
  display: block !important;
}
.uk-display-inline {
  display: inline !important;
}
.uk-display-inline-block {
  display: inline-block !important;
}
/* Inline
 ========================================================================== */
/*
 * 1. Container fits its content
 * 2. Create position context
 * 3. Prevent content overflow
 * 4. Behave like most inline-block elements
 * 5. Clip child elements
 */
[class*='uk-inline'] {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
}
.uk-inline-clip {
  /* 5 */
  overflow: hidden;
}
/* 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;
}
/*
 * 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;
}
/* 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 audio,
.uk-preserve-width canvas,
.uk-preserve-width img,
.uk-preserve-width svg,
.uk-preserve-width video {
  max-width: none;
}
/*
 * Responsiveness
 * Corrects `max-width` and `max-height` behavior if padding and border are used
 */
.uk-responsive-width,
.uk-responsive-height {
  box-sizing: border-box;
}
/*
 * 1. Set a maximum width. `important` needed to override `uk-preserve-width img`
 * 2. Auto scale the height. Only needed if `height` attribute is present
 */
.uk-responsive-width {
  /* 1 */
  max-width: 100% !important;
  /* 2 */
  height: auto;
}
/*
 * 1. Set a maximum height. Only works if the parent element has a fixed height
 * 2. Auto scale the width. Only needed if `width` attribute is present
 * 3. Reset max-width, which `img, `video`, `canvas` and  `audio` already have by default
 */
.uk-responsive-height {
  /* 1 */
  max-height: 100%;
  /* 2 */
  width: auto;
  /* 3 */
  max-width: none;
}
/* Border
 ========================================================================== */
.uk-border-circle {
  border-radius: 50%;
}
.uk-border-rounded {
  border-radius: 5px;
}
/*
 * Fix `overflow: hidden` to be ignored with border-radius and CSS transforms in Webkit
 */
.uk-inline-clip[class*='uk-border-'] {
  -webkit-transform: translateZ(0);
}
/* Box-shadow
 ========================================================================== */
.uk-box-shadow-small {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.uk-box-shadow-medium {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.uk-box-shadow-large {
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
.uk-box-shadow-xlarge {
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
}
/*
 * Hover
 */
[class*='uk-box-shadow-hover'] {
  transition: box-shadow 0.1s ease-in-out;
}
.uk-box-shadow-hover-small:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.uk-box-shadow-hover-medium:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.uk-box-shadow-hover-large:hover {
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
.uk-box-shadow-hover-xlarge:hover {
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
}
/* Box-shadow bottom
 ========================================================================== */
/*
 * 1. Set position.
 * 2. Set style
 * 3. Blur doesn't work on pseudo elements with negative `z-index` in Edge.
 *    Solved by using `before` and add position context to child elements.
 */
@supports ((-webkit-filter: blur(0)) or (filter: blur(0))) or (-webkit-filter: blur(0)) {
  .uk-box-shadow-bottom {
    display: inline-block;
    position: relative;
    max-width: 100%;
    vertical-align: middle;
  }
  .uk-box-shadow-bottom::before {
    content: '';
    /* 1 */
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    /* 2 */
    height: 30px;
    border-radius: 100%;
    background: #444;
    -webkit-filter: blur(20px);
    filter: blur(20px);
  }
  /* 3 */
  .uk-box-shadow-bottom > * {
    position: relative;
  }
}
/* Drop cap
 ========================================================================== */
.uk-dropcap::first-letter,
.uk-dropcap > p:first-of-type::first-letter {
  display: block;
  margin-right: 10px;
  float: left;
  font-size: 48px;
  line-height: 1;
  margin-bottom: -2px;
}
/* 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: 12px;
  /* 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 */
.var-leader-fill:before {
  content: '.';
}
/* Logo
 ========================================================================== */
/*
 * 1. Required for `a`
 */
.uk-logo {
  font-size: 1.5rem;
  font-family: MTSCompact, Roboto, 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: #555;
  /* 1 */
  text-decoration: none;
}
/* Hover + Focus */
.uk-logo:hover,
.uk-logo:focus {
  color: #555;
  outline: none;
  /* 1 */
  text-decoration: none;
}
.uk-logo-inverse {
  display: none;
}
/* 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 {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
/* 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 {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/* Transform Origin
========================================================================== */
.uk-transform-origin-top-left {
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.uk-transform-origin-top-center {
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
}
.uk-transform-origin-top-right {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.uk-transform-origin-center-left {
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
}
.uk-transform-origin-center-right {
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}
.uk-transform-origin-bottom-left {
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.uk-transform-origin-bottom-center {
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.uk-transform-origin-bottom-right {
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
/* ========================================================================
   Component: Flex
 ========================================================================== */
.uk-flex {
  display: -webkit-box;
  display: flex;
}
.uk-flex-inline {
  display: -webkit-inline-box;
  display: inline-flex;
}
/*
 * Remove pseudo elements created by micro clearfix as precaution
 */
.uk-flex::before,
.uk-flex::after,
.uk-flex-inline::before,
.uk-flex-inline::after {
  display: none;
}
/* Alignment
 ========================================================================== */
/*
 * Align items along the main axis of the current line of the flex container
 * Row: Horizontal
 */
.uk-flex-left {
  -webkit-box-pack: start;
          justify-content: flex-start;
}
.uk-flex-center {
  -webkit-box-pack: center;
          justify-content: center;
}
.uk-flex-right {
  -webkit-box-pack: end;
          justify-content: flex-end;
}
.uk-flex-between {
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.uk-flex-around {
  justify-content: space-around;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-flex-left\@s {
    -webkit-box-pack: start;
            justify-content: flex-start;
  }
  .uk-flex-center\@s {
    -webkit-box-pack: center;
            justify-content: center;
  }
  .uk-flex-right\@s {
    -webkit-box-pack: end;
            justify-content: flex-end;
  }
  .uk-flex-between\@s {
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .uk-flex-around\@s {
    justify-content: space-around;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-flex-left\@m {
    -webkit-box-pack: start;
            justify-content: flex-start;
  }
  .uk-flex-center\@m {
    -webkit-box-pack: center;
            justify-content: center;
  }
  .uk-flex-right\@m {
    -webkit-box-pack: end;
            justify-content: flex-end;
  }
  .uk-flex-between\@m {
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .uk-flex-around\@m {
    justify-content: space-around;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-flex-left\@l {
    -webkit-box-pack: start;
            justify-content: flex-start;
  }
  .uk-flex-center\@l {
    -webkit-box-pack: center;
            justify-content: center;
  }
  .uk-flex-right\@l {
    -webkit-box-pack: end;
            justify-content: flex-end;
  }
  .uk-flex-between\@l {
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .uk-flex-around\@l {
    justify-content: space-around;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-flex-left\@xl {
    -webkit-box-pack: start;
            justify-content: flex-start;
  }
  .uk-flex-center\@xl {
    -webkit-box-pack: center;
            justify-content: center;
  }
  .uk-flex-right\@xl {
    -webkit-box-pack: end;
            justify-content: flex-end;
  }
  .uk-flex-between\@xl {
    -webkit-box-pack: justify;
            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 {
  -webkit-box-align: stretch;
          align-items: stretch;
}
.uk-flex-top {
  -webkit-box-align: start;
          align-items: flex-start;
}
.uk-flex-middle {
  -webkit-box-align: center;
          align-items: center;
}
.uk-flex-bottom {
  -webkit-box-align: end;
          align-items: flex-end;
}
/* Direction
 ========================================================================== */
.uk-flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
}
.uk-flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
          flex-direction: row-reverse;
}
.uk-flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}
.uk-flex-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
          flex-direction: column-reverse;
}
/* Wrap
 ========================================================================== */
.uk-flex-nowrap {
  flex-wrap: nowrap;
}
.uk-flex-wrap {
  flex-wrap: wrap;
}
.uk-flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
/*
 * Aligns items within the flex container when there is extra space in the cross-axis
 * Only works if there is more than one line of flex items
 */
.uk-flex-wrap-stretch {
  align-content: stretch;
}
.uk-flex-wrap-top {
  align-content: flex-start;
}
.uk-flex-wrap-middle {
  align-content: center;
}
.uk-flex-wrap-bottom {
  align-content: flex-end;
}
.uk-flex-wrap-between {
  align-content: space-between;
}
.uk-flex-wrap-around {
  align-content: space-around;
}
/* Item ordering
 ========================================================================== */
/*
 * Default is 0
 */
.uk-flex-first {
  -webkit-box-ordinal-group: 0;
          order: -1;
}
.uk-flex-last {
  -webkit-box-ordinal-group: 100;
          order: 99;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-flex-first\@s {
    -webkit-box-ordinal-group: 0;
            order: -1;
  }
  .uk-flex-last\@s {
    -webkit-box-ordinal-group: 100;
            order: 99;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-flex-first\@m {
    -webkit-box-ordinal-group: 0;
            order: -1;
  }
  .uk-flex-last\@m {
    -webkit-box-ordinal-group: 100;
            order: 99;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-flex-first\@l {
    -webkit-box-ordinal-group: 0;
            order: -1;
  }
  .uk-flex-last\@l {
    -webkit-box-ordinal-group: 100;
            order: 99;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-flex-first\@xl {
    -webkit-box-ordinal-group: 0;
            order: -1;
  }
  .uk-flex-last\@xl {
    -webkit-box-ordinal-group: 100;
            order: 99;
  }
}
/* Item dimensions
 ========================================================================== */
/*
 * Initial: 0 1 auto
 * Content dimensions, but shrinks
 */
/*
 * No Flex: 0 0 auto
 * Content dimensions
 */
.uk-flex-none {
  -webkit-box-flex: 0;
          flex: none;
}
/*
 * Relative Flex: 1 1 auto
 * Space is allocated considering content
 */
.uk-flex-auto {
  -webkit-box-flex: 1;
          flex: auto;
}
/*
 * Absolute Flex: 1 1 0%
 * Space is allocated solely based on flex
 */
.uk-flex-1 {
  -webkit-box-flex: 1;
          flex: 1;
}
.uk-flex-1-0-auto {
  -webkit-box-flex: 1;
          flex: 1 0 auto;
}
/* ========================================================================
   Component: Margin
 ========================================================================== */
/*
 * Default
 */
.uk-margin {
  margin-bottom: 15px;
}
* + .uk-margin {
  margin-top: 15px !important;
}
.uk-margin-top {
  margin-top: 15px !important;
}
.uk-margin-bottom {
  margin-bottom: 15px !important;
}
.uk-margin-left {
  margin-left: 15px !important;
}
.uk-margin-right {
  margin-right: 15px !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: 20px;
}
* + .uk-margin-medium {
  margin-top: 20px !important;
}
.uk-margin-medium-top {
  margin-top: 20px !important;
}
.uk-margin-medium-bottom {
  margin-bottom: 20px !important;
}
.uk-margin-medium-left {
  margin-left: 20px !important;
}
.uk-margin-medium-right {
  margin-right: 20px !important;
}
/* Large
 ========================================================================== */
.uk-margin-large {
  margin-bottom: 20px;
}
* + .uk-margin-large {
  margin-top: 20px !important;
}
.uk-margin-large-top {
  margin-top: 20px !important;
}
.uk-margin-large-bottom {
  margin-bottom: 20px !important;
}
.uk-margin-large-left {
  margin-left: 20px !important;
}
.uk-margin-large-right {
  margin-right: 20px !important;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .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;
  }
}
/* XLarge
 ========================================================================== */
.uk-margin-xlarge {
  margin-bottom: 30px;
}
* + .uk-margin-xlarge {
  margin-top: 30px !important;
}
.uk-margin-xlarge-top {
  margin-top: 30px !important;
}
.uk-margin-xlarge-bottom {
  margin-bottom: 30px !important;
}
.uk-margin-xlarge-left {
  margin-left: 30px !important;
}
.uk-margin-xlarge-right {
  margin-right: 30px !important;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-margin-xlarge {
    margin-bottom: 140px;
  }
  * + .uk-margin-xlarge {
    margin-top: 140px !important;
  }
  .uk-margin-xlarge-top {
    margin-top: 140px !important;
  }
  .uk-margin-xlarge-bottom {
    margin-bottom: 140px !important;
  }
  .uk-margin-xlarge-left {
    margin-left: 140px !important;
  }
  .uk-margin-xlarge-right {
    margin-right: 140px !important;
  }
}
/* 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 + * {
  margin-top: 0 !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;
}
/* ========================================================================
   Component: Padding
 ========================================================================== */
.uk-padding {
  padding: 24px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-padding {
    padding: 40px;
  }
}
/* Small
 ========================================================================== */
.uk-padding-small {
  padding: 12px;
}
/* Large
 ========================================================================== */
.uk-padding-large {
  padding: 24px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-padding-large {
    padding: 48px;
  }
}
/* XLarge
 ========================================================================== */
.uk-padding-xlarge {
  padding: 24px;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-padding-xlarge {
    padding: 48px;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-padding-xlarge {
    padding: 96px;
  }
}
/* 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
 ========================================================================== */
/* Directions
 ========================================================================== */
[class*='uk-position-top'],
[class*='uk-position-bottom'],
[class*='uk-position-left'],
[class*='uk-position-right'],
[class*='uk-position-center'] {
  position: absolute !important;
}
/* Edges
 ========================================================================== */
/* Don't use `width: 100%` because it is 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 (Not working in Firefox)
 * 2. Fix text wrapping for Firefox
 */
.uk-position-center {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /* 1 */
  display: table;
  /* 2 */
  width: -moz-max-content;
  max-width: 100%;
}
/* Vertical */
.uk-position-center-left,
.uk-position-center-right {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.uk-position-center-left {
  left: 0;
}
.uk-position-center-right {
  right: 0;
}
/* Horizontal */
.uk-position-top-center,
.uk-position-bottom-center {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  /* 1 */
  display: table;
}
.uk-position-top-center {
  top: 0;
}
.uk-position-bottom-center {
  bottom: 0;
}
/* Cover
 ========================================================================== */
.uk-position-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
/* Utility
 ========================================================================== */
.uk-position-relative {
  position: relative !important;
}
.uk-position-absolute {
  position: absolute !important;
}
.uk-position-fixed {
  position: fixed !important;
}
.uk-position-z-index {
  z-index: 1;
}
/* Margin modifier
 ========================================================================== */
/*
 * Small
 */
.uk-position-small {
  margin: 12px;
}
.uk-position-small.uk-position-center {
  -webkit-transform: translate(calc(-50% - 12px), calc(-50% - 12px));
  transform: translate(calc(-50% - 12px), calc(-50% - 12px));
}
.uk-position-small.uk-position-center-left,
.uk-position-small.uk-position-center-right {
  -webkit-transform: translateY(calc(-50% - 12px));
  transform: translateY(calc(-50% - 12px));
}
.uk-position-small.uk-position-top-center,
.uk-position-small.uk-position-bottom-center {
  -webkit-transform: translateX(calc(-50% - 12px));
  transform: translateX(calc(-50% - 12px));
}
/*
 * Medium
 */
.uk-position-medium {
  margin: 24px;
}
.uk-position-medium.uk-position-center {
  -webkit-transform: translate(calc(-50% - 24px), calc(-50% - 24px));
  transform: translate(calc(-50% - 24px), calc(-50% - 24px));
}
.uk-position-medium.uk-position-center-left,
.uk-position-medium.uk-position-center-right {
  -webkit-transform: translateY(calc(-50% - 24px));
  transform: translateY(calc(-50% - 24px));
}
.uk-position-medium.uk-position-top-center,
.uk-position-medium.uk-position-bottom-center {
  -webkit-transform: translateX(calc(-50% - 24px));
  transform: translateX(calc(-50% - 24px));
}
/* ========================================================================
   Component: Transition
 ========================================================================== */
/*
 * Using multiple selectors to exclude `uk-transition-toggle`
 * Note: Transitions don't work with `uk-postion-center-*` classes because they also use `transform`
 *       Just put the transition in an extra `div`
 */
.uk-transition-fade,
[class*='uk-transition-scale'],
[class*='uk-transition-slide'] {
  transition: 0.3s ease-out;
  transition-property: opacity, -webkit-transform, -webkit-filter;
  transition-property: opacity, transform, filter;
  transition-property: opacity, transform, filter, -webkit-transform, -webkit-filter;
}
/*
 * Fade
 */
.uk-transition-fade {
  opacity: 0;
}
.uk-transition-toggle:hover [class*='uk-transition-fade'],
.uk-transition-toggle.uk-hover [class*='uk-transition-fade'] {
  opacity: 1;
}
/*
 * Scale
 * Note: Using `scale3d` for better image rendering
 */
[class*='uk-transition-scale'] {
  opacity: 0;
}
.uk-transition-scale-up {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.uk-transition-toggle:hover .uk-transition-scale-up,
.uk-transition-toggle.uk-hover .uk-transition-scale-up {
  opacity: 1;
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.uk-transition-scale-down {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.uk-transition-toggle:hover .uk-transition-scale-down,
.uk-transition-toggle.uk-hover .uk-transition-scale-down {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
/*
 * Slide
 */
[class*='uk-transition-slide'] {
  opacity: 0;
}
.uk-transition-slide-top {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.uk-transition-slide-bottom {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.uk-transition-slide-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.uk-transition-slide-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.uk-transition-slide-top-small {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
.uk-transition-slide-bottom-small {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}
.uk-transition-slide-left-small {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}
.uk-transition-slide-right-small {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}
.uk-transition-slide-top-medium {
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
}
.uk-transition-slide-bottom-medium {
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
}
.uk-transition-slide-left-medium {
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
}
.uk-transition-slide-right-medium {
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
}
/* Hover */
.uk-transition-toggle:hover [class*='uk-transition-slide'],
.uk-transition-toggle.uk-hover [class*='uk-transition-slide'] {
  opacity: 1;
  -webkit-transform: translateX(0) translateY(0);
  transform: translateX(0) translateY(0);
}
/* Opacity modifier
========================================================================== */
.uk-transition-opaque {
  opacity: 1;
}
/* Duration modifiers
========================================================================== */
.uk-transition-slow {
  transition-duration: 0.7s;
}
/* ========================================================================
   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;
}
/* Hover
 ========================================================================== */
/* Hidden */
.uk-visible-toggle:not(:hover):not(.uk-hover) .uk-hidden-hover {
  display: none !important;
}
/* Invisible */
.uk-visible-toggle:not(:hover):not(.uk-hover) .uk-invisible-hover {
  visibility: hidden !important;
}
/* Touch
 ========================================================================== */
/*
 * Hide if primary pointing device has limited accuracy, e.g. a touch screen.
 * Works on mobile browsers: Safari, Chrome and Android browser
 */
@media (pointer: coarse) {
  .uk-hidden-touch {
    display: none !important;
  }
}
/*
 * Hide if primary pointing device is accurate, e.g. mouse.
 * 1. Fallback for IE11 and Firefox, because `pointer` is not supported
 * 2. Reset if supported
 */
/* 1 */
.uk-hidden-notouch {
  display: none !important;
}
@media (pointer: coarse) {
  .uk-hidden-notouch {
    display: block !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-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-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-card-primary.uk-card-body a:hover,
.uk-card-primary.uk-card-body .uk-link:hover,
.uk-card-primary > :not([class*='uk-card-media']) a:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-link:hover,
.uk-card-secondary.uk-card-body a:hover,
.uk-card-secondary.uk-card-body .uk-link:hover,
.uk-card-secondary > :not([class*='uk-card-media']) a:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-link:hover,
.uk-overlay-primary a:hover,
.uk-overlay-primary .uk-link:hover,
.uk-offcanvas-bar a:hover,
.uk-offcanvas-bar .uk-link:hover {
  color: #fff;
}
.uk-light :not(pre) > code,
.uk-light :not(pre) > kbd,
.uk-light :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);
  background: rgba(255, 255, 255, 0.1);
}
.uk-light 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-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 > :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-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 > :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-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-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 {
  color: #fff;
}
.uk-light blockquote,
.uk-card-primary.uk-card-body blockquote,
.uk-card-primary > :not([class*='uk-card-media']) blockquote,
.uk-card-secondary.uk-card-body blockquote,
.uk-card-secondary > :not([class*='uk-card-media']) blockquote,
.uk-overlay-primary blockquote,
.uk-offcanvas-bar blockquote {
  color: #fff;
}
.uk-light blockquote footer,
.uk-card-primary.uk-card-body blockquote footer,
.uk-card-primary > :not([class*='uk-card-media']) blockquote footer,
.uk-card-secondary.uk-card-body blockquote footer,
.uk-card-secondary > :not([class*='uk-card-media']) blockquote footer,
.uk-overlay-primary blockquote footer,
.uk-offcanvas-bar blockquote footer {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light hr,
.uk-card-primary.uk-card-body hr,
.uk-card-primary > :not([class*='uk-card-media']) hr,
.uk-card-secondary.uk-card-body hr,
.uk-card-secondary > :not([class*='uk-card-media']) hr,
.uk-overlay-primary hr,
.uk-offcanvas-bar hr {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light a.uk-link-muted,
.uk-light .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-card-primary.uk-card-body a.uk-link-muted:hover,
.uk-card-primary.uk-card-body .uk-link-muted a:hover,
.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-secondary.uk-card-body a.uk-link-muted:hover,
.uk-card-secondary.uk-card-body .uk-link-muted a:hover,
.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-overlay-primary a.uk-link-muted:hover,
.uk-overlay-primary .uk-link-muted a:hover,
.uk-offcanvas-bar a.uk-link-muted:hover,
.uk-offcanvas-bar .uk-link-muted a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .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%3E%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A");
}
.uk-light .uk-divider-icon::before,
.uk-light .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-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-list-divider > li:nth-child(n+2),
.uk-card-primary.uk-card-body .uk-list-divider > li:nth-child(n+2),
.uk-card-primary > :not([class*='uk-card-media']) .uk-list-divider > li:nth-child(n+2),
.uk-card-secondary.uk-card-body .uk-list-divider > li:nth-child(n+2),
.uk-card-secondary > :not([class*='uk-card-media']) .uk-list-divider > li:nth-child(n+2),
.uk-overlay-primary .uk-list-divider > li:nth-child(n+2),
.uk-offcanvas-bar .uk-list-divider > li:nth-child(n+2) {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-list-striped > li:nth-of-type(odd),
.uk-card-primary.uk-card-body .uk-list-striped > li:nth-of-type(odd),
.uk-card-primary > :not([class*='uk-card-media']) .uk-list-striped > li:nth-of-type(odd),
.uk-card-secondary.uk-card-body .uk-list-striped > li:nth-of-type(odd),
.uk-card-secondary > :not([class*='uk-card-media']) .uk-list-striped > li:nth-of-type(odd),
.uk-overlay-primary .uk-list-striped > li:nth-of-type(odd),
.uk-offcanvas-bar .uk-list-striped > li:nth-of-type(odd) {
  border-top-color: rgba(255, 255, 255, 0.2);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-list-striped > li:nth-of-type(odd),
.uk-card-primary.uk-card-body .uk-list-striped > li:nth-of-type(odd),
.uk-card-primary > :not([class*='uk-card-media']) .uk-list-striped > li:nth-of-type(odd),
.uk-card-secondary.uk-card-body .uk-list-striped > li:nth-of-type(odd),
.uk-card-secondary > :not([class*='uk-card-media']) .uk-list-striped > li:nth-of-type(odd),
.uk-overlay-primary .uk-list-striped > li:nth-of-type(odd),
.uk-offcanvas-bar .uk-list-striped > li:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.1);
}
.uk-light .uk-list-bullet > li::before,
.uk-card-primary.uk-card-body .uk-list-bullet > li::before,
.uk-card-primary > :not([class*='uk-card-media']) .uk-list-bullet > li::before,
.uk-card-secondary.uk-card-body .uk-list-bullet > li::before,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-list-bullet > li::before,
.uk-overlay-primary .uk-list-bullet > li::before,
.uk-offcanvas-bar .uk-list-bullet > li::before {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%226%22%20height%3D%226%22%20viewBox%3D%220%200%206%206%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20cx%3D%223%22%20cy%3D%223%22%20r%3D%223%22%3E%3C%2Fcircle%3E%0A%3C%2Fsvg%3E");
}
.uk-light .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-light .uk-icon-link:focus,
.uk-card-primary.uk-card-body .uk-icon-link:hover,
.uk-card-primary.uk-card-body .uk-icon-link:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-icon-link:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-icon-link:focus,
.uk-card-secondary.uk-card-body .uk-icon-link:hover,
.uk-card-secondary.uk-card-body .uk-icon-link:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-icon-link:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-icon-link:focus,
.uk-overlay-primary .uk-icon-link:hover,
.uk-overlay-primary .uk-icon-link:focus,
.uk-offcanvas-bar .uk-icon-link:hover,
.uk-offcanvas-bar .uk-icon-link:focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-icon-link:active,
.uk-light .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-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-light .uk-icon-button:focus,
.uk-card-primary.uk-card-body .uk-icon-button:hover,
.uk-card-primary.uk-card-body .uk-icon-button:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-icon-button:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-icon-button:focus,
.uk-card-secondary.uk-card-body .uk-icon-button:hover,
.uk-card-secondary.uk-card-body .uk-icon-button:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-icon-button:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-icon-button:focus,
.uk-overlay-primary .uk-icon-button:hover,
.uk-overlay-primary .uk-icon-button:focus,
.uk-offcanvas-bar .uk-icon-button:hover,
.uk-offcanvas-bar .uk-icon-button:focus {
  background-color: rgba(242, 242, 242, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .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(230, 230, 230, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-input,
.uk-light .uk-select,
.uk-light .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-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.1);
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-input:-ms-input-placeholder,
.uk-card-primary.uk-card-body .uk-input:-ms-input-placeholder,
.uk-card-primary > :not([class*='uk-card-media']) .uk-input:-ms-input-placeholder,
.uk-card-secondary.uk-card-body .uk-input:-ms-input-placeholder,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-input:-ms-input-placeholder,
.uk-overlay-primary .uk-input:-ms-input-placeholder,
.uk-offcanvas-bar .uk-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.uk-light .uk-input::-moz-placeholder,
.uk-card-primary.uk-card-body .uk-input::-moz-placeholder,
.uk-card-primary > :not([class*='uk-card-media']) .uk-input::-moz-placeholder,
.uk-card-secondary.uk-card-body .uk-input::-moz-placeholder,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-input::-moz-placeholder,
.uk-overlay-primary .uk-input::-moz-placeholder,
.uk-offcanvas-bar .uk-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-input::-webkit-input-placeholder,
.uk-card-primary.uk-card-body .uk-input::-webkit-input-placeholder,
.uk-card-primary > :not([class*='uk-card-media']) .uk-input::-webkit-input-placeholder,
.uk-card-secondary.uk-card-body .uk-input::-webkit-input-placeholder,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-input::-webkit-input-placeholder,
.uk-overlay-primary .uk-input::-webkit-input-placeholder,
.uk-offcanvas-bar .uk-input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-textarea:-ms-input-placeholder,
.uk-card-primary.uk-card-body .uk-textarea:-ms-input-placeholder,
.uk-card-primary > :not([class*='uk-card-media']) .uk-textarea:-ms-input-placeholder,
.uk-card-secondary.uk-card-body .uk-textarea:-ms-input-placeholder,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-textarea:-ms-input-placeholder,
.uk-overlay-primary .uk-textarea:-ms-input-placeholder,
.uk-offcanvas-bar .uk-textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.uk-light .uk-textarea::-moz-placeholder,
.uk-card-primary.uk-card-body .uk-textarea::-moz-placeholder,
.uk-card-primary > :not([class*='uk-card-media']) .uk-textarea::-moz-placeholder,
.uk-card-secondary.uk-card-body .uk-textarea::-moz-placeholder,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-textarea::-moz-placeholder,
.uk-overlay-primary .uk-textarea::-moz-placeholder,
.uk-offcanvas-bar .uk-textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-textarea::-webkit-input-placeholder,
.uk-card-primary.uk-card-body .uk-textarea::-webkit-input-placeholder,
.uk-card-primary > :not([class*='uk-card-media']) .uk-textarea::-webkit-input-placeholder,
.uk-card-secondary.uk-card-body .uk-textarea::-webkit-input-placeholder,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-textarea::-webkit-input-placeholder,
.uk-overlay-primary .uk-textarea::-webkit-input-placeholder,
.uk-offcanvas-bar .uk-textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .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%3E%3C%2Fpolygon%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%3E%3C%2Fpolygon%3E%0A%3C%2Fsvg%3E%0A");
}
.uk-light .uk-radio,
.uk-light .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(242, 242, 242, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.uk-light .uk-radio:focus,
.uk-light .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 {
  border-color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-radio:checked,
.uk-light .uk-checkbox:checked,
.uk-light .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: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-radio:checked:focus,
.uk-light .uk-checkbox:checked:focus,
.uk-light .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: #e6e6e6;
}
.uk-light .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%23555%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%3E%3C%2Fcircle%3E%0A%3C%2Fsvg%3E");
}
.uk-light .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%23555%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.uk-light .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%23555%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%3E%3C%2Frect%3E%0A%3C%2Fsvg%3E");
}
.uk-light .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-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: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-button-default:hover,
.uk-light .uk-button-default:focus,
.uk-card-primary.uk-card-body .uk-button-default:hover,
.uk-card-primary.uk-card-body .uk-button-default:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-default:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-default:focus,
.uk-card-secondary.uk-card-body .uk-button-default:hover,
.uk-card-secondary.uk-card-body .uk-button-default:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-default:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-default:focus,
.uk-overlay-primary .uk-button-default:hover,
.uk-overlay-primary .uk-button-default:focus,
.uk-offcanvas-bar .uk-button-default:hover,
.uk-offcanvas-bar .uk-button-default:focus {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.uk-light .uk-button-default:active,
.uk-light .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: transparent;
  color: #fff;
  border-color: #fff;
}
.uk-light .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: #555;
}
.uk-light .uk-button-primary:hover,
.uk-light .uk-button-primary:focus,
.uk-card-primary.uk-card-body .uk-button-primary:hover,
.uk-card-primary.uk-card-body .uk-button-primary:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-primary:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-primary:focus,
.uk-card-secondary.uk-card-body .uk-button-primary:hover,
.uk-card-secondary.uk-card-body .uk-button-primary:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-primary:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-primary:focus,
.uk-overlay-primary .uk-button-primary:hover,
.uk-overlay-primary .uk-button-primary:focus,
.uk-offcanvas-bar .uk-button-primary:hover,
.uk-offcanvas-bar .uk-button-primary:focus {
  background-color: #f2f2f2;
  color: #555;
}
.uk-light .uk-button-primary:active,
.uk-light .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: #555;
}
.uk-light .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: #555;
}
.uk-light .uk-button-secondary:hover,
.uk-light .uk-button-secondary:focus,
.uk-card-primary.uk-card-body .uk-button-secondary:hover,
.uk-card-primary.uk-card-body .uk-button-secondary:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-secondary:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-secondary:focus,
.uk-card-secondary.uk-card-body .uk-button-secondary:hover,
.uk-card-secondary.uk-card-body .uk-button-secondary:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-secondary:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-secondary:focus,
.uk-overlay-primary .uk-button-secondary:hover,
.uk-overlay-primary .uk-button-secondary:focus,
.uk-offcanvas-bar .uk-button-secondary:hover,
.uk-offcanvas-bar .uk-button-secondary:focus {
  background-color: #f2f2f2;
  color: #555;
}
.uk-light .uk-button-secondary:active,
.uk-light .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: #555;
}
.uk-light .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::before,
.uk-card-primary.uk-card-body .uk-button-text::before,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-text::before,
.uk-card-secondary.uk-card-body .uk-button-text::before,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-text::before,
.uk-overlay-primary .uk-button-text::before,
.uk-offcanvas-bar .uk-button-text::before {
  border-bottom-color: #fff;
}
.uk-light .uk-button-text:hover,
.uk-light .uk-button-text:focus,
.uk-card-primary.uk-card-body .uk-button-text:hover,
.uk-card-primary.uk-card-body .uk-button-text:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-text:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-text:focus,
.uk-card-secondary.uk-card-body .uk-button-text:hover,
.uk-card-secondary.uk-card-body .uk-button-text:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-text:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-text:focus,
.uk-overlay-primary .uk-button-text:hover,
.uk-overlay-primary .uk-button-text:focus,
.uk-offcanvas-bar .uk-button-text:hover,
.uk-offcanvas-bar .uk-button-text:focus {
  color: #fff;
}
.uk-light .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-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-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-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-light .uk-close:focus,
.uk-card-primary.uk-card-body .uk-close:hover,
.uk-card-primary.uk-card-body .uk-close:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-close:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-close:focus,
.uk-card-secondary.uk-card-body .uk-close:hover,
.uk-card-secondary.uk-card-body .uk-close:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-close:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-close:focus,
.uk-overlay-primary .uk-close:hover,
.uk-overlay-primary .uk-close:focus,
.uk-offcanvas-bar .uk-close:hover,
.uk-offcanvas-bar .uk-close:focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .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-light .uk-totop:focus,
.uk-card-primary.uk-card-body .uk-totop:hover,
.uk-card-primary.uk-card-body .uk-totop:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-totop:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-totop:focus,
.uk-card-secondary.uk-card-body .uk-totop:hover,
.uk-card-secondary.uk-card-body .uk-totop:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-totop:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-totop:focus,
.uk-overlay-primary .uk-totop:hover,
.uk-overlay-primary .uk-totop:focus,
.uk-offcanvas-bar .uk-totop:hover,
.uk-offcanvas-bar .uk-totop:focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .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-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: #555;
}
.uk-light .uk-badge:hover,
.uk-light .uk-badge:focus,
.uk-card-primary.uk-card-body .uk-badge:hover,
.uk-card-primary.uk-card-body .uk-badge:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-badge:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-badge:focus,
.uk-card-secondary.uk-card-body .uk-badge:hover,
.uk-card-secondary.uk-card-body .uk-badge:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-badge:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-badge:focus,
.uk-overlay-primary .uk-badge:hover,
.uk-overlay-primary .uk-badge:focus,
.uk-offcanvas-bar .uk-badge:hover,
.uk-offcanvas-bar .uk-badge:focus {
  color: #555;
}
.uk-light .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: #555;
}
.uk-light .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-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:-ms-input-placeholder,
.uk-card-primary.uk-card-body .uk-search-input:-ms-input-placeholder,
.uk-card-primary > :not([class*='uk-card-media']) .uk-search-input:-ms-input-placeholder,
.uk-card-secondary.uk-card-body .uk-search-input:-ms-input-placeholder,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-search-input:-ms-input-placeholder,
.uk-overlay-primary .uk-search-input:-ms-input-placeholder,
.uk-offcanvas-bar .uk-search-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.uk-light .uk-search-input::-moz-placeholder,
.uk-card-primary.uk-card-body .uk-search-input::-moz-placeholder,
.uk-card-primary > :not([class*='uk-card-media']) .uk-search-input::-moz-placeholder,
.uk-card-secondary.uk-card-body .uk-search-input::-moz-placeholder,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-search-input::-moz-placeholder,
.uk-overlay-primary .uk-search-input::-moz-placeholder,
.uk-offcanvas-bar .uk-search-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-search-input::-webkit-input-placeholder,
.uk-card-primary.uk-card-body .uk-search-input::-webkit-input-placeholder,
.uk-card-primary > :not([class*='uk-card-media']) .uk-search-input::-webkit-input-placeholder,
.uk-card-secondary.uk-card-body .uk-search-input::-webkit-input-placeholder,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-search-input::-webkit-input-placeholder,
.uk-overlay-primary .uk-search-input::-webkit-input-placeholder,
.uk-offcanvas-bar .uk-search-input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .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-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-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: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}
.uk-light .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: transparent;
}
.uk-light .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: transparent;
}
.uk-light .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-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-light .uk-search-toggle:focus,
.uk-card-primary.uk-card-body .uk-search-toggle:hover,
.uk-card-primary.uk-card-body .uk-search-toggle:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-search-toggle:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-search-toggle:focus,
.uk-card-secondary.uk-card-body .uk-search-toggle:hover,
.uk-card-secondary.uk-card-body .uk-search-toggle:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-search-toggle:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-search-toggle:focus,
.uk-overlay-primary .uk-search-toggle:hover,
.uk-overlay-primary .uk-search-toggle:focus,
.uk-offcanvas-bar .uk-search-toggle:hover,
.uk-offcanvas-bar .uk-search-toggle:focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-nav-parent-icon > .uk-parent > a::after,
.uk-card-primary.uk-card-body .uk-nav-parent-icon > .uk-parent > a::after,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent > a::after,
.uk-card-secondary.uk-card-body .uk-nav-parent-icon > .uk-parent > a::after,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent > a::after,
.uk-overlay-primary .uk-nav-parent-icon > .uk-parent > a::after,
.uk-offcanvas-bar .uk-nav-parent-icon > .uk-parent > a::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20stroke-width%3D%221.1%22%20points%3D%2210%201%204%207%2010%2013%22%3E%3C%2Fpolyline%3E%0A%3C%2Fsvg%3E");
}
.uk-light .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
.uk-card-primary.uk-card-body .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
.uk-card-secondary.uk-card-body .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
.uk-overlay-primary .uk-nav-parent-icon > .uk-parent.uk-open > a::after,
.uk-offcanvas-bar .uk-nav-parent-icon > .uk-parent.uk-open > a::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20stroke-width%3D%221.1%22%20points%3D%221%204%207%2010%2013%204%22%3E%3C%2Fpolyline%3E%0A%3C%2Fsvg%3E");
}
.uk-light .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-light .uk-nav-default > li > a:focus,
.uk-card-primary.uk-card-body .uk-nav-default > li > a:hover,
.uk-card-primary.uk-card-body .uk-nav-default > li > a:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-default > li > a:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-default > li > a:focus,
.uk-card-secondary.uk-card-body .uk-nav-default > li > a:hover,
.uk-card-secondary.uk-card-body .uk-nav-default > li > a:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-default > li > a:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-default > li > a:focus,
.uk-overlay-primary .uk-nav-default > li > a:hover,
.uk-overlay-primary .uk-nav-default > li > a:focus,
.uk-offcanvas-bar .uk-nav-default > li > a:hover,
.uk-offcanvas-bar .uk-nav-default > li > a:focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .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-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-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-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-light .uk-nav-default .uk-nav-sub a:focus,
.uk-card-primary.uk-card-body .uk-nav-default .uk-nav-sub a:hover,
.uk-card-primary.uk-card-body .uk-nav-default .uk-nav-sub a:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-default .uk-nav-sub a:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-default .uk-nav-sub a:focus,
.uk-card-secondary.uk-card-body .uk-nav-default .uk-nav-sub a:hover,
.uk-card-secondary.uk-card-body .uk-nav-default .uk-nav-sub a:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-default .uk-nav-sub a:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-default .uk-nav-sub a:focus,
.uk-overlay-primary .uk-nav-default .uk-nav-sub a:hover,
.uk-overlay-primary .uk-nav-default .uk-nav-sub a:focus,
.uk-offcanvas-bar .uk-nav-default .uk-nav-sub a:hover,
.uk-offcanvas-bar .uk-nav-default .uk-nav-sub a:focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .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-light .uk-nav-primary > li > a:focus,
.uk-card-primary.uk-card-body .uk-nav-primary > li > a:hover,
.uk-card-primary.uk-card-body .uk-nav-primary > li > a:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-primary > li > a:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-primary > li > a:focus,
.uk-card-secondary.uk-card-body .uk-nav-primary > li > a:hover,
.uk-card-secondary.uk-card-body .uk-nav-primary > li > a:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-primary > li > a:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-primary > li > a:focus,
.uk-overlay-primary .uk-nav-primary > li > a:hover,
.uk-overlay-primary .uk-nav-primary > li > a:focus,
.uk-offcanvas-bar .uk-nav-primary > li > a:hover,
.uk-offcanvas-bar .uk-nav-primary > li > a:focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .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-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-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-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-light .uk-nav-primary .uk-nav-sub a:focus,
.uk-card-primary.uk-card-body .uk-nav-primary .uk-nav-sub a:hover,
.uk-card-primary.uk-card-body .uk-nav-primary .uk-nav-sub a:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-primary .uk-nav-sub a:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-primary .uk-nav-sub a:focus,
.uk-card-secondary.uk-card-body .uk-nav-primary .uk-nav-sub a:hover,
.uk-card-secondary.uk-card-body .uk-nav-primary .uk-nav-sub a:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-primary .uk-nav-sub a:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-primary .uk-nav-sub a:focus,
.uk-overlay-primary .uk-nav-primary .uk-nav-sub a:hover,
.uk-overlay-primary .uk-nav-primary .uk-nav-sub a:focus,
.uk-offcanvas-bar .uk-nav-primary .uk-nav-sub a:hover,
.uk-offcanvas-bar .uk-nav-primary .uk-nav-sub a:focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .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:focus,
.uk-light .uk-navbar-nav > li > a.uk-open,
.uk-card-primary.uk-card-body .uk-navbar-nav > li:hover > a,
.uk-card-primary.uk-card-body .uk-navbar-nav > li > a:focus,
.uk-card-primary.uk-card-body .uk-navbar-nav > li > a.uk-open,
.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:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-nav > li > a.uk-open,
.uk-card-secondary.uk-card-body .uk-navbar-nav > li:hover > a,
.uk-card-secondary.uk-card-body .uk-navbar-nav > li > a:focus,
.uk-card-secondary.uk-card-body .uk-navbar-nav > li > a.uk-open,
.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:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-nav > li > a.uk-open,
.uk-overlay-primary .uk-navbar-nav > li:hover > a,
.uk-overlay-primary .uk-navbar-nav > li > a:focus,
.uk-overlay-primary .uk-navbar-nav > li > a.uk-open,
.uk-offcanvas-bar .uk-navbar-nav > li:hover > a,
.uk-offcanvas-bar .uk-navbar-nav > li > a:focus,
.uk-offcanvas-bar .uk-navbar-nav > li > a.uk-open {
  color: #eee;
}
.uk-light .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-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-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: #fff;
}
.uk-light .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: #fff;
}
.uk-light .uk-navbar-toggle:hover,
.uk-light .uk-navbar-toggle:focus,
.uk-light .uk-navbar-toggle.uk-open,
.uk-card-primary.uk-card-body .uk-navbar-toggle:hover,
.uk-card-primary.uk-card-body .uk-navbar-toggle:focus,
.uk-card-primary.uk-card-body .uk-navbar-toggle.uk-open,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-toggle:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-toggle:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-toggle.uk-open,
.uk-card-secondary.uk-card-body .uk-navbar-toggle:hover,
.uk-card-secondary.uk-card-body .uk-navbar-toggle:focus,
.uk-card-secondary.uk-card-body .uk-navbar-toggle.uk-open,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-toggle:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-toggle:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-toggle.uk-open,
.uk-overlay-primary .uk-navbar-toggle:hover,
.uk-overlay-primary .uk-navbar-toggle:focus,
.uk-overlay-primary .uk-navbar-toggle.uk-open,
.uk-offcanvas-bar .uk-navbar-toggle:hover,
.uk-offcanvas-bar .uk-navbar-toggle:focus,
.uk-offcanvas-bar .uk-navbar-toggle.uk-open {
  color: #eee;
}
.uk-light .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-light .uk-subnav > * > a:focus,
.uk-card-primary.uk-card-body .uk-subnav > * > a:hover,
.uk-card-primary.uk-card-body .uk-subnav > * > a:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-subnav > * > a:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-subnav > * > a:focus,
.uk-card-secondary.uk-card-body .uk-subnav > * > a:hover,
.uk-card-secondary.uk-card-body .uk-subnav > * > a:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-subnav > * > a:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-subnav > * > a:focus,
.uk-overlay-primary .uk-subnav > * > a:hover,
.uk-overlay-primary .uk-subnav > * > a:focus,
.uk-offcanvas-bar .uk-subnav > * > a:hover,
.uk-offcanvas-bar .uk-subnav > * > a:focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .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-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-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-light .uk-subnav-pill > * > a:focus,
.uk-card-primary.uk-card-body .uk-subnav-pill > * > a:hover,
.uk-card-primary.uk-card-body .uk-subnav-pill > * > a:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-subnav-pill > * > a:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-subnav-pill > * > a:focus,
.uk-card-secondary.uk-card-body .uk-subnav-pill > * > a:hover,
.uk-card-secondary.uk-card-body .uk-subnav-pill > * > a:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-subnav-pill > * > a:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-subnav-pill > * > a:focus,
.uk-overlay-primary .uk-subnav-pill > * > a:hover,
.uk-overlay-primary .uk-subnav-pill > * > a:focus,
.uk-offcanvas-bar .uk-subnav-pill > * > a:hover,
.uk-offcanvas-bar .uk-subnav-pill > * > a:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .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-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: #555;
}
.uk-light .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-tab::before,
.uk-card-primary.uk-card-body .uk-tab::before,
.uk-card-primary > :not([class*='uk-card-media']) .uk-tab::before,
.uk-card-secondary.uk-card-body .uk-tab::before,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-tab::before,
.uk-overlay-primary .uk-tab::before,
.uk-offcanvas-bar .uk-tab::before {
  border-color: rgba(255, 255, 255, 0.2);
}
.uk-light .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-light .uk-tab > * > a:focus,
.uk-card-primary.uk-card-body .uk-tab > * > a:hover,
.uk-card-primary.uk-card-body .uk-tab > * > a:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-tab > * > a:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-tab > * > a:focus,
.uk-card-secondary.uk-card-body .uk-tab > * > a:hover,
.uk-card-secondary.uk-card-body .uk-tab > * > a:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-tab > * > a:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-tab > * > a:focus,
.uk-overlay-primary .uk-tab > * > a:hover,
.uk-overlay-primary .uk-tab > * > a:focus,
.uk-offcanvas-bar .uk-tab > * > a:hover,
.uk-offcanvas-bar .uk-tab > * > a:focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .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;
  border-color: #fff;
}
.uk-light .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-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.1);
}
.uk-light .uk-dotnav > * > :hover,
.uk-light .uk-dotnav > * > :focus,
.uk-card-primary.uk-card-body .uk-dotnav > * > :hover,
.uk-card-primary.uk-card-body .uk-dotnav > * > :focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-dotnav > * > :hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-dotnav > * > :focus,
.uk-card-secondary.uk-card-body .uk-dotnav > * > :hover,
.uk-card-secondary.uk-card-body .uk-dotnav > * > :focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-dotnav > * > :hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-dotnav > * > :focus,
.uk-overlay-primary .uk-dotnav > * > :hover,
.uk-overlay-primary .uk-dotnav > * > :focus,
.uk-offcanvas-bar .uk-dotnav > * > :hover,
.uk-offcanvas-bar .uk-dotnav > * > :focus {
  background-color: rgba(255, 255, 255, 0.4);
}
.uk-light .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.6);
}
.uk-light .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.6);
}
.uk-light .uk-iconnav > * > *,
.uk-card-primary.uk-card-body .uk-iconnav > * > *,
.uk-card-primary > :not([class*='uk-card-media']) .uk-iconnav > * > *,
.uk-card-secondary.uk-card-body .uk-iconnav > * > *,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-iconnav > * > *,
.uk-overlay-primary .uk-iconnav > * > *,
.uk-offcanvas-bar .uk-iconnav > * > * {
  color: rgba(255, 255, 255, 0.5);
}
.uk-light .uk-iconnav > * > :hover,
.uk-light .uk-iconnav > * > :focus,
.uk-card-primary.uk-card-body .uk-iconnav > * > :hover,
.uk-card-primary.uk-card-body .uk-iconnav > * > :focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-iconnav > * > :hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-iconnav > * > :focus,
.uk-card-secondary.uk-card-body .uk-iconnav > * > :hover,
.uk-card-secondary.uk-card-body .uk-iconnav > * > :focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-iconnav > * > :hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-iconnav > * > :focus,
.uk-overlay-primary .uk-iconnav > * > :hover,
.uk-overlay-primary .uk-iconnav > * > :focus,
.uk-offcanvas-bar .uk-iconnav > * > :hover,
.uk-offcanvas-bar .uk-iconnav > * > :focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-iconnav > .uk-active > *,
.uk-card-primary.uk-card-body .uk-iconnav > .uk-active > *,
.uk-card-primary > :not([class*='uk-card-media']) .uk-iconnav > .uk-active > *,
.uk-card-secondary.uk-card-body .uk-iconnav > .uk-active > *,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-iconnav > .uk-active > *,
.uk-overlay-primary .uk-iconnav > .uk-active > *,
.uk-offcanvas-bar .uk-iconnav > .uk-active > * {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .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-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-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-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: rgba(255, 255, 255, 0.7) !important;
}
.uk-light .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: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-logo:hover,
.uk-light .uk-logo:focus,
.uk-card-primary.uk-card-body .uk-logo:hover,
.uk-card-primary.uk-card-body .uk-logo:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-logo:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-logo:focus,
.uk-card-secondary.uk-card-body .uk-logo:hover,
.uk-card-secondary.uk-card-body .uk-logo:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-logo:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-logo:focus,
.uk-overlay-primary .uk-logo:hover,
.uk-overlay-primary .uk-logo:focus,
.uk-offcanvas-bar .uk-logo:hover,
.uk-offcanvas-bar .uk-logo:focus {
  color: rgba(255, 255, 255, 0.7);
}
.uk-light .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
.uk-card-primary.uk-card-body .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
.uk-card-primary > :not([class*='uk-card-media']) .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
.uk-card-secondary.uk-card-body .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
.uk-card-secondary > :not([class*='uk-card-media']) .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
.uk-overlay-primary .uk-logo > :not(.uk-logo-inverse):not(:only-of-type),
.uk-offcanvas-bar .uk-logo > :not(.uk-logo-inverse):not(:only-of-type) {
  display: none;
}
.uk-light .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: inline;
}
.uk-light .uk-accordion-title::after,
.uk-card-primary.uk-card-body .uk-accordion-title::after,
.uk-card-primary > :not([class*='uk-card-media']) .uk-accordion-title::after,
.uk-card-secondary.uk-card-body .uk-accordion-title::after,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-accordion-title::after,
.uk-overlay-primary .uk-accordion-title::after,
.uk-offcanvas-bar .uk-accordion-title::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%228%22%20viewBox%3D%220%200%2014%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M0.999994%200.999995L7%206.99998L13%201%22%20stroke%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20stroke-opacity%3D%220.8%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.uk-light .uk-open > .uk-accordion-title::after,
.uk-card-primary.uk-card-body .uk-open > .uk-accordion-title::after,
.uk-card-primary > :not([class*='uk-card-media']) .uk-open > .uk-accordion-title::after,
.uk-card-secondary.uk-card-body .uk-open > .uk-accordion-title::after,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-open > .uk-accordion-title::after,
.uk-overlay-primary .uk-open > .uk-accordion-title::after,
.uk-offcanvas-bar .uk-open > .uk-accordion-title::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%228%22%20viewBox%3D%220%200%2014%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M13%207.00001L7%201.00002L1%207%22%20stroke%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}
/* ========================================================================
   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;
  }
}
* {
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
}
html,
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch;
}
html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
/*
 * 1. Prevents images and links from being dragged (default browser behavior)
 * 2. Disables the default callout shown when you touch and hold a touch target
 * Currently only works in Webkit
 */
.uk-button,
a.uk-button,
button.uk-button {
  -webkit-font-smoothing: auto !important;
  -moz-osx-font-smoothing: auto !important;
  /* 1 */
  user-drag: none;
  /* 2 */
  -webkit-touch-callout: none;
}
/*
 * SVG render optimization
 */
svg * {
  image-rendering: optimizeQuality;
  shape-rendering: auto;
}
/*
 * -------------------------------------------------------------
 * Panel
 * -------------------------------------------------------------
 */
.wk-panel {
  position: relative;
}
/*
 * -------------------------------------------------------------
 * Banner
 * -------------------------------------------------------------
 */
.wk-banner > a:not([href]) {
  display: none !important;
}
/*
 * -------------------------------------------------------------
 * Teaser
 * -------------------------------------------------------------
 */
.wk-teaser {
  background: no-repeat 50% 50%;
  background-size: cover;
  z-index: 2;
  transition-duration: 0.7s;
}
.wk-teaser:after {
  content: '';
  z-index: 4;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 100%);
}
.wk-teaser,
.wk-teaser:after,
.wk-teaser-filter {
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.wk-teaser-filter {
  opacity: 0.2;
  z-index: 3;
}
/*
 * -------------------------------------------------------------
 * Caption
 * -------------------------------------------------------------
 */
.wk-caption {
  padding: 0 12px 12px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.45);
  z-index: 3;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
/*
 * -------------------------------------------------------------
 * Modal alerts
 * -------------------------------------------------------------
 */
.wk-alert-buttons {
  margin: 0;
}
.wk-alert-buttons .uk-subnav > * {
  margin: 0;
  padding: 0;
}
.wk-alert-buttons .uk-button {
  border-color: transparent;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 8px;
}
/*
 * -------------------------------------------------------------
 * Form controls
 * -------------------------------------------------------------
 */
.wk-form-control {
  padding-top: 18px;
  position: relative;
}
.wk-form-control.input-checkout {
  margin-top: 20px;
}
.wk-form-control.input-checkout:first-of-type {
  margin: 0;
}
.wk-form-control input {
  background: none;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
}
.wk-form-control input:focus {
  background: none;
}
.wk-form-control input:focus ~ label,
.wk-form-control input:not(.uk-empty) ~ label {
  -webkit-transform: translate(0, -20px);
          transform: translate(0, -20px);
  line-height: 12px !important;
  font-size: 12px;
  height: 12px;
  padding: 0;
  left: 0;
}
.wk-form-control input:-ms-input-placeholder {
  font-size: 13px !important;
}
.wk-form-control input::-moz-placeholder {
  font-size: 13px;
}
.wk-form-control input::-webkit-input-placeholder {
  font-size: 13px;
}
.wk-form-control input ~ label {
  height: 30px;
  line-height: 30px;
}
.wk-form-control input.uk-form-medium:focus ~ label,
.wk-form-control input.uk-form-medium:not(.uk-empty) ~ label {
  -webkit-transform: translate(0, -10px);
          transform: translate(0, -10px);
  line-height: 12px !important;
  font-size: 12px;
  height: 12px;
  padding: 0;
}
.wk-form-control input.uk-form-medium:-ms-input-placeholder {
  font-size: 14px !important;
}
.wk-form-control input.uk-form-medium::-moz-placeholder {
  font-size: 14px;
}
.wk-form-control input.uk-form-medium::-webkit-input-placeholder {
  font-size: 14px;
}
.wk-form-control input.uk-form-medium ~ label {
  height: 35px;
  line-height: 35px;
  font-size: 14px;
}
.wk-form-control input.uk-form-large:focus ~ label,
.wk-form-control input.uk-form-large:not(.uk-empty) ~ label {
  -webkit-transform: translate(0, -17.6px);
          transform: translate(0, -17.6px);
  line-height: 14px !important;
  font-size: 14px;
  height: 14px;
  padding: 0;
}
.wk-form-control input.uk-form-large:-ms-input-placeholder {
  font-size: 15px !important;
}
.wk-form-control input.uk-form-large::-moz-placeholder {
  font-size: 15px;
}
.wk-form-control input.uk-form-large::-webkit-input-placeholder {
  font-size: 15px;
}
.wk-form-control input.uk-form-large ~ label {
  height: 44px;
  line-height: 44px;
  font-size: 15px;
}
.wk-form-control > label {
  color: #808080;
  cursor: text;
  padding: 0;
  transition: all 0.15s ease-out;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  position: absolute;
  left: 15px;
}
/*
 * -------------------------------------------------------------
 * Divider
 * -------------------------------------------------------------
 */
.tm-divider {
  padding-top: 5px;
  margin-top: 5px;
  border-top: 1px solid #eee;
}
/*
 * -------------------------------------------------------------
 * Backward button
 * -------------------------------------------------------------
 */
.tm-button-backward {
  cursor: pointer;
  line-height: 53px;
  padding: 0 0 0 14px;
  text-shadow: 0 0 3px rgba(90, 90, 90, 0.4);
  text-align: left;
  height: 55px;
  width: 55px;
  z-index: 10;
  box-sizing: border-box;
}
/*
 * -------------------------------------------------------------
 * Native Scroll Area
 * -------------------------------------------------------------
 */
.wk-native-scroll-area {
  overflow: hidden;
}
.wk-native-scroll-area > .wk-native-scroll-area-inner {
  overflow: hidden;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translate3d(0, 0, 0);
  margin-bottom: -30px;
  padding-bottom: 30px;
}
.wk-native-scroll-area > .wk-native-scroll-area-inner::-webkit-scrollbar {
  height: 0 !important;
  width: 0 !important;
}
/*
 * -------------------------------------------------------------
 * Line clamp
 * -------------------------------------------------------------
 */
[class*='tm-line-clamp'] {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: -o-ellipsis-lastline;
  vertical-align: middle;
  box-sizing: content-box;
  overflow: hidden;
  max-width: 100%;
  line-height: 1.3rem;
  text-overflow: ellipsis;
}
.tm-line-clamp-2 {
  -webkit-line-clamp: 2;
}
.tm-line-clamp-3 {
  -webkit-line-clamp: 3;
}
.tm-line-clamp-4 {
  -webkit-line-clamp: 4;
}
.tm-line-clamp-5 {
  -webkit-line-clamp: 5;
}
[class*='uk-overlay-page'] {
  overflow: hidden;
}
[class*='uk-overlay-page'] body {
  overflow-y: scroll;
}
[class*='uk-overlay-page'] .uk-offcanvas-content .tm-wrapper:before {
  background-color: #fff;
  content: '';
  display: block;
  box-sizing: content-box;
  height: 120%;
  width: 100%;
  max-width: 640px;
  position: fixed;
  top: 0;
  -webkit-transform: translateY(-70px);
          transform: translateY(-70px);
  z-index: 1;
}
/*
 * Overlay
 */
.tm-overlay-wrapper {
  background-color: #e4e4e4;
  box-sizing: border-box;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 1010;
  -webkit-overflow-scrolling: touch;
}
.tm-overlay-wrapper > .tm-container {
  background-color: #fff;
  min-height: 100%;
  position: relative;
}
.tm-overlay {
  background-color: #fff;
  box-sizing: border-box;
  min-height: 100%;
  padding: 0;
  position: relative;
  z-index: 2;
}
.tm-overlay .uk-navbar {
  max-width: 640px;
  top: 0;
  position: fixed;
  width: 100%;
  z-index: 1;
}
.tm-overlay.tm-overlay-alt {
  background-color: rgba(255, 255, 255, 0.95);
}
.tm-overlay-close {
  background: #806127;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  border-radius: 50%;
  color: #fff !important;
  cursor: pointer;
  display: block;
  height: 40px;
  width: 40px;
  margin: -65px 0 -20px;
  padding: 10px;
  position: fixed;
  top: 100%;
  left: 50%;
  z-index: 1400;
  transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
}
.tm-overlay-close:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  color: #fff !important;
}
.tm-overlay-close span {
  color: #fff;
  position: absolute;
  left: 13px;
  top: 14px;
}
.wk-overlay-terms {
  padding-top: 55px;
}
.wk-overlay-terms .tm-titlebar.uk-navbar {
  background-color: #fff;
  box-shadow: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}
.wk-overlay-terms .tm-titlebar.uk-navbar .uk-navbar-toggle,
.wk-overlay-terms .tm-titlebar.uk-navbar .uk-navbar-item {
  color: #000;
}
.uk-device.uk-overlay-page {
  max-height: 100vh;
}
/*
 * -------------------------------------------------------------
 * Ripple Effect
 * -------------------------------------------------------------
 *
 * Ripple Effect for UI elements
 * (JavaScript placed in aurora/js/theme.js)
 *
 */
/* Elements for the ripple effect */
.uk-ripple-overlay {
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: all 0.2s ease;
  -webkit-transform-style: preserve-3d;
  /* preventing flickering in webkit browsers */
}
.uk-ripple {
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  z-index: 20;
}
/* Ripple animation */
.uk-ripple-animate {
  -webkit-animation: uk-ripple 0.65s linear;
          animation: uk-ripple 0.65s linear;
}
@-webkit-keyframes uk-ripple {
  100% {
    opacity: 0;
    -webkit-transform: scale(2.5);
  }
}
@keyframes uk-ripple {
  100% {
    opacity: 0;
    -webkit-transform: scale(2.5);
            transform: scale(2.5);
  }
}
/*
 * -------------------------------------------------------------
 * Loader
 * -------------------------------------------------------------
 */
.tm-loader {
  width: 50px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--Brand_MTS_Red);
  --_m: conic-gradient(#0000 0 10%, #000), linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  -webkit-animation: l3 1s infinite linear;
          animation: l3 1s infinite linear;
}
.tm-loader-page {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  margin: -35px 0 0 -35px;
}
.tm-page-splash .tm-middle,
.tm-page-full-page-error .tm-middle {
  height: 100vh;
}
@-webkit-keyframes l3 {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
@keyframes l3 {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
/* ========================================================================
   Component: Spinner
 ========================================================================== */
/*
 * Adopts `uk-icon`
 */
/* SVG
 ========================================================================== */
.uk-spinner > * {
  -webkit-animation: uk-spinner-rotate 1.4s linear infinite;
  animation: uk-spinner-rotate 1.4s linear infinite;
}
@-webkit-keyframes uk-spinner-rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
  }
}
@keyframes uk-spinner-rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}
/*
 * Circle
 */
.uk-spinner > * > * {
  stroke-dasharray: 88px;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: uk-spinner-dash 1.4s ease-in-out infinite;
  animation: uk-spinner-dash 1.4s ease-in-out infinite;
  stroke-width: 2;
  stroke-linecap: round;
}
@-webkit-keyframes uk-spinner-dash {
  0% {
    stroke-dashoffset: 88px;
  }
  50% {
    stroke-dashoffset: 22px;
    -webkit-transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 88px;
    -webkit-transform: rotate(450deg);
  }
}
@keyframes uk-spinner-dash {
  0% {
    stroke-dashoffset: 88px;
  }
  50% {
    stroke-dashoffset: 22px;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 88px;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
  }
}
/*
 * -------------------------------------------------------------
 * Datepicker
 * -------------------------------------------------------------
 */
.wk-daypicker {
  outline: none;
}
.wk-daypicker * {
  outline: none;
}
.wk-daypicker abbr[title] {
  border: none;
  text-decoration: none;
}
.wk-daypicker.DayPicker {
  padding: 12px 3px;
}
.wk-daypicker .DayPicker-wrapper {
  padding: 0;
}
.wk-daypicker .DayPicker-NavBar {
  top: 0;
  z-index: 3;
}
.wk-daypicker .DayPicker-NavButton {
  width: 11px;
  height: 11px;
  padding: 5px;
  background-clip: content-box;
  margin-top: -2px;
}
.wk-daypicker .DayPicker-Month {
  width: 100%;
  margin: 0;
}
.wk-daypicker .DayPicker-Day {
  border: 0;
  padding: 0;
  width: 30px;
  height: 30px;
}
.wk-daypicker .DayPicker-Day.DayPicker-Day--disabled {
  background-color: rgba(239, 241, 241, 0);
}
.wk-daypicker .DayPicker-Day.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside) {
  background: none;
  color: #806127;
  box-shadow: 0 0 0 1.25px #806127 inset;
  border-radius: 2px;
}
.wk-daypicker-navbar {
  margin: 0;
  height: 40px;
}
.wk-daypicker-navbar > li {
  margin: 0;
  padding: 0;
  height: 40px;
}
.wk-daypicker-navbar > li a {
  color: #007fff;
  font-size: 12px;
  line-height: 40px;
  height: 40px;
  padding: 0 6px;
}
.wk-daypicker-navbar > li.uk-active {
  box-shadow: 0 -2px 0 #806127 inset;
}
.wk-daypicker-navbar > li.uk-active .wk-daypicker-day-title,
.wk-daypicker-navbar > li.uk-active .uk-icon,
.wk-daypicker-navbar > li.uk-active .uk-icon:before {
  color: #806127;
}
.wk-daypicker-navbar > li .wk-daypicker-day-title {
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  padding-top: 2px;
}
.wk-daypicker-navbar > li .wk-daypicker-day-subtitle {
  height: 14px;
  line-height: 10px;
  font-size: 10px;
  color: #808080;
}
.wk-daypicker-navbar > li .uk-icon {
  padding: 0 6px;
  line-height: 38px;
  color: #007fff;
  text-align: right;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  display: inline-block;
  min-width: 20px;
  height: 40px;
  position: relative;
  margin: 0 !important;
  -webkit-transform: none !important;
          transform: none !important;
}
.wk-daypicker-navbar *:focus {
  outline: none !important;
}
.video {
  background: #000;
  display: block;
  height: 100%;
  outline: none;
}
.video * {
  outline: none !important;
}
.video .video-icon {
  margin: 0;
}
.video .video-icon:before {
  font-family: 'VideoIcon';
}
.video .video-controls {
  background: none;
  height: 70px;
}
.video .video-controls .video-seek {
  height: 2px;
  border-radius: 2px;
  bottom: 60px;
  position: absolute;
  padding: 0 25px;
  width: 100%;
}
.video .video-controls .video-seek .video-seek__container {
  border-radius: 2px;
  height: 2px;
}
.video .video-controls .video-seek .video-seek__buffer-bar {
  border-radius: 2px;
}
.video .video-controls .video-seek .video-progress-bar--horizontal {
  border-radius: 2px;
  height: 2px;
}
.video .video-controls .video-seek .video-progress-bar__fill {
  background-color: #007fff;
  box-shadow: 0 0 10px 5px rgba(0, 127, 255, 0.3);
  border-radius: 2px;
}
.video .video-controls .video-time {
  position: absolute;
  top: 10px;
  left: 25px;
  right: 25px;
  margin-top: 10px;
  padding: 0;
  height: 20px;
  font-size: 0.001px;
  line-height: 1;
}
.video .video-controls .video-time .video-time__current,
.video .video-controls .video-time .video-time__duration {
  font-size: 11px;
}
.video .video-controls .video-time .video-time__duration {
  float: right;
}
.video .video-controls .video-play {
  background-color: transparent;
  position: absolute;
  left: 50%;
  bottom: -10px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 250%;
  padding: 0;
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
.video .video-controls .video-play .video-icon--play-1:before {
  content: '\E801';
}
.video .video-controls .video-play .video-icon--pause-1:before {
  content: '\E800';
}
.video .video-controls .video-mute {
  background-color: transparent;
  position: absolute;
  bottom: 10px;
  left: 25%;
  height: auto;
}
.video .video-controls .video-mute .video-icon--volume-up:before {
  content: '\E80C';
}
.video .video-controls .video-mute .video-icon--volume-off:before {
  content: '\E80D';
}
.video .video-controls .video-mute .video-mute__volume {
  background: none;
  height: 60px;
}
.video .video-controls .video-mute .video-mute__volume .video-mute__track {
  border-radius: 3px;
}
.video .video-controls .video-mute .video-mute__volume .video-progress-bar__fill {
  background-color: #007fff;
  border-radius: 3px;
}
.video .video-controls .video-mute .video-mute__volume .video-progress-bar__fill:before {
  content: '';
  position: absolute;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transform: translate(-4px, -4px);
          transform: translate(-4px, -4px);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
.video .video-controls .video-fullscreen {
  background-color: transparent;
  position: absolute;
  bottom: 10px;
  right: 25%;
  height: auto;
}
.video .video-controls .video-fullscreen .video-icon--resize-full:before {
  content: '\E80B';
}
.video .video-overlay {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.video .video-overlay .video-overlay__play .video-icon,
.video .video-overlay .video-overlay__loader .video-spinner {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  height: 60px;
  line-height: 40px;
  margin-left: -30px;
  margin-top: -30px;
  padding: 10px;
  width: 60px;
}
.video .video-overlay .video-overlay__loader .video-spinner {
  background: none;
}
.video .video-overlay__error-text {
  display: block;
}
.video.video--playing .video-overlay {
  background: none !important;
}
.wk-form-control .Select--single {
  outline: none;
}
.wk-form-control .Select--single.is-focused .Select-control {
  border-bottom-color: #000 !important;
}
.wk-form-control .Select--single .Select-control {
  height: 35px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: none !important;
}
.wk-form-control .Select--single .Select-control .Select-input {
  height: 34px;
  padding-left: 0;
}
.wk-form-control .Select--single .Select-control .Select-input input {
  line-height: 34px;
  border: 0;
  padding: 0;
}
.wk-form-control .Select--single .Select-control .Select-value {
  line-height: 34px;
  padding-left: 0;
}
.wk-form-control .Select--single .Select-placeholder {
  color: #808080;
  line-height: 34px;
  padding-left: 0;
}
.wk-form-control .Select--single .Select-menu-outer {
  border: 0;
  border-radius: 1px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
  margin-top: 3px;
}
.select-lang {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  height: 240px;
}
.select-lang .caption-secondary {
  color: #A6A6A6;
  margin-bottom: auto;
  margin-top: 5px;
  font-size: 12px;
}
.select-lang button {
  border: 1px solid rgba(236, 28, 66, 0.15);
  color: #ec1c42;
  background: white;
  border-radius: 3px;
  margin-bottom: 10px;
  height: 44px;
}
.select-lang button:focus,
.select-lang button:hover {
  outline: none;
  border: 1px solid #ec1c42;
}
.select-lang button:not(:last-child) {
  margin-bottom: 5px;
}
.tm-page-auth .tm-container .tm-wrapper,
.tm-page-sign-in .tm-container .tm-wrapper,
.tm-page-sign-up .tm-container .tm-wrapper {
  background-color: #fff;
}
.wk-button-facebook,
.wk-button-vkontakte,
.wk-button-classmates,
.wk-button-plus-google {
  color: #fff;
  padding: 0 12px;
}
.wk-button-facebook {
  background-color: #3b5998;
}
.wk-button-vkontakte {
  background-color: #4c6c91;
}
.wk-button-classmates {
  background-color: #f68634;
}
.wk-button-plus-google {
  background-color: #db4437;
}
.wk-overlay-email {
  padding-top: 55px;
}
.wk-overlay-email .uk-navbar-toggle,
.wk-overlay-email .uk-navbar-item {
  color: #000;
}
/*
 * -------------------------------------------------------------
 * To-top scroller
 * -------------------------------------------------------------
 */
.tm-totop-scroller {
  background: #007fff;
  color: #fff !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  border-radius: 100px;
  display: block;
  height: 50px;
  line-height: 50px;
  text-align: center;
  width: 50px;
  position: fixed;
  right: 40px;
  top: auto;
  bottom: 30px;
  z-index: 110;
  transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  -webkit-tap-highlight-color: transparent;
}
.tm-totop-scroller:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  color: #fff !important;
}
@media (max-width: 639px) {
  .uk-device .tm-totop-scroller {
    height: 40px;
    line-height: 40px;
    width: 40px;
    right: 20px;
  }
  .uk-device .uk-attached .tm-totop-scroller {
    position: absolute;
    top: -20px;
  }
}
/*
 * -------------------------------------------------------------
 * Document
 * -------------------------------------------------------------
 */
.uk-card-preview-page {
  overflow: hidden;
}
.uk-card-preview-page body {
  overflow: scroll;
}
/*
 * -------------------------------------------------------------
 * Card
 * -------------------------------------------------------------
 */
.wk-card.uk-active,
.wk-card.uk-transition {
  position: relative;
  z-index: 1005;
}
.wk-card .wk-card-header {
  max-width: 640px;
  width: 100%;
}
.wk-card .wk-card-body {
  box-sizing: border-box;
}
/*
 * -------------------------------------------------------------
 * Overlay
 * -------------------------------------------------------------
 */
.wk-card-overlay.uk-ripple-overlay {
  transition: -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
  transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
}
.wk-card-overlay.uk-ripple-overlay > .uk-ripple-animate {
  -webkit-animation: uk-ripple-alt 0.2s linear;
          animation: uk-ripple-alt 0.2s linear;
}
.wk-card-overlay.uk-transition.uk-active:not(.uk-open) {
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
.wk-card-overlay.uk-active {
  box-sizing: border-box;
  height: 100vh !important;
}
.wk-card-overlay.uk-open.uk-active:not(.uk-transition) {
  overflow: visible;
  /*
             * Kill repeat transform after leaving full-screen mode
             */
  transition: none !important;
}
.wk-card-overlay.uk-open.uk-active:not(.uk-transition) .wk-card-scrollbox {
  background-color: #e4e4e4;
  box-sizing: border-box;
  display: block;
  height: 100vh;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  width: 100vw;
}
@media (max-width: 639px) {
  .wk-card-overlay.uk-open.uk-active:not(.uk-transition) .wk-card-scrollbox {
    margin: 0 !important;
  }
}
.wk-card-overlay.uk-open.uk-active:not(.uk-transition) .wk-card-scrollbox > .uk-container {
  background-color: #ffffff;
  min-height: 100%;
  min-height: 100vh;
}
.wk-card-overlay.uk-open.uk-active:not(.uk-transition) .wk-card-scrollbox .tm-container {
  box-shadow: none;
}
.wk-card-overlay.uk-open.uk-active:not(.uk-transition) .wk-card-header {
  display: block;
  position: fixed;
  top: 0;
  z-index: 105;
}
.wk-card-overlay.uk-open.uk-active:not(.uk-transition) .wk-card-body {
  box-sizing: border-box;
  min-height: 100vh;
}
.wk-card-overlay.uk-open > .uk-ripple:not(.uk-ripple-animate) {
  display: none;
}
/*
 * -------------------------------------------------------------
 * Scrollbox
 * -------------------------------------------------------------
 */
.wk-card-scrollbox {
  position: relative;
  z-index: 100;
  -webkit-overflow-scrolling: touch;
}
/*
 * -------------------------------------------------------------
 * Devices
 * -------------------------------------------------------------
 */
@media (max-width: 639px) {
  .uk-device .wk-card-header {
    left: 0;
    top: 0;
  }
}
.uk-device .wk-card-overlay.uk-open.uk-active:not(.uk-transition) .wk-card-scrollbox {
  margin: 0 !important;
}
/*
 * -------------------------------------------------------------
 * Animations
 * -------------------------------------------------------------
 */
@-webkit-keyframes uk-ripple-alt {
  100% {
    -webkit-transform: scale(2.5);
  }
}
@keyframes uk-ripple-alt {
  100% {
    -webkit-transform: scale(2.5);
            transform: scale(2.5);
  }
}
.wk-toolbar {
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 2px 5px rgba(191, 191, 191, 0.7);
  position: relative;
  z-index: 10;
  padding: 0 6px;
  min-height: 40px;
  margin-bottom: 10px;
}
/*
 * -------------------------------------------------------------
 * Layout
 * -------------------------------------------------------------
 */
.wk-badge-holder {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
}
.wk-badge-holder + .wk-badge-holder .wk-badge {
  box-shadow: none;
  -webkit-transform: rotate(45deg) translate(50%, 0);
          transform: rotate(45deg) translate(50%, 0);
}
.wk-badge {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  color: #000;
  cursor: default;
  font-size: 11px;
  font-weight: 600;
  line-height: 11px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transform: rotate(45deg) translate(50%, 35px);
          transform: rotate(45deg) translate(50%, 35px);
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
  padding: 8px 25px;
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  z-index: 35;
}
.wk-badge-infobar {
  background: #fff;
  border: 1px solid #806127;
  position: absolute;
  right: 14px;
  top: -5px;
  line-height: 12px;
  border-radius: 20px;
  height: 14px;
  min-width: 14px;
  box-sizing: border-box;
  font-size: 10px;
  text-align: center;
  display: inline-block;
  padding: 0 3px;
  z-index: 1;
}
/*
 * -------------------------------------------------------------
 * Trailer
 * -------------------------------------------------------------
 */
.wk-trailer {
  box-sizing: border-box;
  max-width: 100%;
  min-height: 100%;
  position: relative;
  z-index: 3;
}
.wk-trailer .wk-trailer-overlay {
  border-radius: 2px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: block;
  outline: none;
  height: 100%;
  max-width: 100%;
  overflow: hidden;
}
.wk-trailer > .uk-icon-play {
  z-index: 40;
}
/*
 * -------------------------------------------------------------
 * Trailer Panel
 * -------------------------------------------------------------
 */
.wk-panel-trailer .wk-title {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 2px;
}
.wk-panel-trailer .wk-meta {
  color: #fff;
  font-size: 11px;
  line-height: 11px;
  opacity: 0.7;
  padding: 0;
  margin-top: 2px;
}
.wk-panel-trailer .wk-movie-restriction-age {
  background-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.45);
  border-radius: 1px;
  font-size: 10px;
  line-height: 10px;
  margin-left: 4px;
  padding: 2px;
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
/*
 * -------------------------------------------------------------
 * Trailers list
 * -------------------------------------------------------------
 */
.wk-trailers-list.uk-active .wk-trailer:not(.uk-active) {
  -webkit-filter: blur(1.5px);
          filter: blur(1.5px);
}
/*
 * -------------------------------------------------------------
 * Panel
 * -------------------------------------------------------------
 */
/*
 * -------------------------------------------------------------
 * Devices
 * -------------------------------------------------------------
 */
.uk-device.uk-device-android .wk-list-trailers.wk-list-cards {
  padding: 6px 6px 0;
}
.uk-device.uk-device-android .wk-list-trailers.wk-list-cards .uk-grid > div + div {
  margin-top: 6px;
}
.uk-device.uk-device-android .wk-list-trailers.wk-list-cards .uk-grid .wk-panel-trailer {
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}
.uk-device.uk-device-android .wk-list-trailers.wk-list-cards .uk-grid .wk-panel-trailer:not(.uk-active) {
  overflow: hidden;
}
.uk-device .wk-caption-movie {
  padding-bottom: 10px;
}
.wk-list-subway {
  margin: 2px 0 0;
  padding: 0;
}
.wk-list-subway > li {
  margin: 0 15px 0 0;
  padding: 0;
}
.wk-list-subway > li > span {
  color: #808080 !important;
}
.wk-list-subway .wk-subway-circle {
  display: inline-block;
  height: 10px;
  width: 10px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid;
  margin: 0 3px -1px 0;
}
.wk-list-subway .wk-subway-name {
  font-size: 14px;
  line-height: 20;
}
.wk-payment-return-conditions-container {
  background-color: #f2f2f2;
  margin-bottom: 15px;
}
.wk-payment-opening-modal-about-return-condition {
  font-size: 14px;
  color: #0080ff;
  margin: 10px;
  cursor: pointer;
}
.wk-payment-title-modal-return-conditions {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 10px;
}
.wk-payment-return-conditions-modal {
  font-family: Roboto;
}
.wk-payment-details {
  background-color: var(--Background_Primary);
  border-radius: 20px;
  padding: 12px 20px;
}
.wk-payment-details .uk-accordion-title {
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
  display: -webkit-box;
  display: flex;
}
.wk-payment-details .uk-accordion-title :first-child {
  -webkit-box-ordinal-group: 0;
          order: -1;
}
.wk-payment-details .uk-accordion-title :nth-child(2) {
  margin-left: auto;
  -webkit-box-ordinal-group: 2;
          order: 1;
}
.wk-payment-details .uk-accordion-title::after {
  -webkit-box-ordinal-group: 1;
          order: 0;
  margin-left: 5px;
}
.wk-payment-details .uk-accordion-content {
  color: #828c96;
}
.wk-payment-checkout {
  padding: 0;
}
.wk-list-payment .wk-payment-type {
  border-radius: 16px;
  box-sizing: border-box;
  cursor: pointer;
  min-height: 76px;
  min-width: 144px;
  padding: 12px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  position: relative;
  background-color: var(--Background_Primary);
  border: 1px solid #bcc3d080;
}
.wk-list-payment .wk-payment-type.wk-payment-active {
  border: 2px solid var(--Brand_MTS_Red);
}
.wk-list-payment .wk-payment-type.wk-payment-active .wk-payment-type-icon-checked svg .circle {
  fill: var(--Brand_MTS_Red);
}
.wk-list-payment .wk-payment-type.wk-payment-active .wk-payment-type-icon-checked svg .circle-2 {
  fill: #fff;
  stroke: none;
}
.wk-list-payment .wk-payment-type-icons {
  min-height: 42px;
  -webkit-box-align: start;
          align-items: flex-start;
}
.wk-list-payment .wk-payment-type-icon {
  border-radius: 2px;
  box-sizing: border-box;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  font-size: 16px;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 3px 5px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.wk-list-payment .wk-payment-type-icon[data-payment-type='applepay'] {
  background-color: transparent !important;
  border: 1px solid #000;
}
.wk-list-payment .wk-payment-type-icon > span + span {
  margin-left: 3px;
}
.wk-list-payment .wk-payment-type-icon + .wk-payment-type-icon {
  margin-left: 3px;
}
.wk-list-payment .wk-payment-type-title {
  font-size: 14px;
  vertical-align: middle;
  line-height: 1.1rem;
  margin-top: 10px;
  font-weight: 500;
}
.wk-list-payment .wk-payment-type-title .wk-payment-discount {
  font-weight: 500;
  font-size: 10px;
  background: #0080ff;
  border-radius: 35px;
  color: #ffffff;
  padding: 1px 2px;
  margin-right: 4px;
}
.wk-list-payment .wk-payment-type-amount {
  margin-top: 6px;
  font-weight: 600;
}
.wk-list-payment .wk-payment-type-discounted {
  color: #828c96;
  font-size: 10px;
  position: relative;
}
.wk-list-payment .wk-payment-type-discounted::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #828c96;
}
.wk-list-payment .wk-payment-type-amount-loading {
  -webkit-animation: fading 1.5s linear infinite;
          animation: fading 1.5s linear infinite;
  background: #eaeaea;
  border-radius: 20px;
  height: 16px;
  margin-top: 6px;
  width: 70%;
}
.wk-list-payment .wk-payment-type-icon-checked {
  position: absolute;
  top: 10px;
  right: 10px;
}
.wk-list-payment .wk-payment-type-icon-checked svg .circle {
  fill: var(--Icons_Secondary);
}
.wk-list-payment .wk-payment-type-icon-checked svg .circle-2 {
  fill: var(--Background_Primary);
}
.wk-list-payment .wk-payment-type-icon-checked svg .symbol {
  fill: none;
  stroke: none;
}
.uk-device .wk-list-payment .wk-payment-type {
  box-shadow: 0 0 2px rgba(69, 107, 138, 0.3);
}
.uk-device .wk-list-payment .wk-payment-type.uk-active {
  box-shadow: 0 2px 10px rgba(69, 107, 138, 0.3);
}
.uk-device .wk-list-payment .wk-payment-type-icons {
  min-height: 0;
}
.uk-device .wk-list-payment .wk-payment-type-icon {
  font-size: 10px;
  min-width: 29px;
  height: 18px;
  background-color: #f1efeb;
  padding: 0 2px;
}
.wk-button-payment {
  background-color: var(--Brand_MTS_Red);
  font-size: 17px;
  font-weight: 500;
}
.wk-button-payment-text {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  grid-gap: 6px;
}
.wk-button-payment[class*='mastercard']:not([class*='apple']),
.wk-button-payment[class*='mc']:not([class*='apple']) {
  position: relative;
}
.wk-button-payment[class*='apple'] {
  background: #000;
  color: #fff;
}
.wk-button-payment[class*='apple']:hover,
.wk-button-payment[class*='apple']:focus {
  background-color: #262626;
}
.wk-button-payment[class*='apple']:active {
  background-color: #4d4d4d;
}
.wk-button-payment[class*='apple']:disabled,
.wk-button-payment[class*='apple'].uk-disabled {
  background-color: #fff !important;
}
.wk-button-payment[class*='gpay|googlepay|androidpay'] {
  background-color: #000;
  color: #fff;
}
.wk-extra-mc-payments {
  background-color: #000;
  padding: 12px 0;
}
.wk-extra-mc-payments .wk-button-payment[class*='apple'] {
  background-color: #fff;
  color: #000;
}
.wk-extra-mc-payments .wk-button-payment[class*='apple']:hover,
.wk-extra-mc-payments .wk-button-payment[class*='apple']:focus {
  background-color: #f2f2f2;
}
.wk-extra-mc-payments .wk-button-payment[class*='apple']:active {
  background-color: #e6e6e6;
}
.wk-extra-mc-payments .wk-button-payment[class*='apple']:disabled,
.wk-extra-mc-payments .wk-button-payment[class*='apple'].uk-disabled {
  background-color: #fff !important;
}
.wk-extra-mc-payments .wk-button-payment span {
  display: inline-block;
  vertical-align: middle;
  line-height: 0.9rem;
  margin-top: -1px;
}
.wk-overlay-payment {
  padding-top: 55px;
}
.wk-overlay-payment .uk-navbar-toggle,
.wk-overlay-payment .uk-navbar-item {
  color: #000;
}
@-webkit-keyframes fading {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.4;
  }
}
@keyframes fading {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.4;
  }
}
.wk-overlay-khl {
  background-color: #14192d;
}
.wk-overlay-khl:before {
  background-color: #14192d;
  content: '';
  height: 100%;
  max-width: 640px;
  top: 0;
  position: fixed;
  width: 100%;
}
#mastercard_promo_khl_fk,
#mastercard_promo_khl_kinohod {
  background: #14192d url(/static/assets/images/actions/mastercard_promo_khl_kinohod_504x478.jpg) 50% 0 no-repeat;
  background-size: 100% auto;
}
#mastercard_promo_khl_fk:before,
#mastercard_promo_khl_kinohod:before {
  content: '';
  position: absolute;
  display: block;
  top: 65%;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #14192d;
}
#mastercard_promo_khl_fk *,
#mastercard_promo_khl_kinohod * {
  z-index: 1;
}
#mastercard_promo_khl_fk a,
#mastercard_promo_khl_kinohod a {
  color: #ff9e01;
}
#mastercard_promo_khl_fk a:hover,
#mastercard_promo_khl_kinohod a:hover,
#mastercard_promo_khl_fk a:focus,
#mastercard_promo_khl_kinohod a:focus,
#mastercard_promo_khl_fk a:active,
#mastercard_promo_khl_kinohod a:active {
  color: #fe5c03;
}
#mastercard_promo_khl_fk input[type='text'],
#mastercard_promo_khl_kinohod input[type='text'] {
  background: none !important;
  border: none;
  border-bottom: 1px solid #ff9e00;
  color: #fff !important;
}
#mastercard_promo_khl_fk input[type='text']:-ms-input-placeholder,
#mastercard_promo_khl_kinohod input[type='text']:-ms-input-placeholder {
  color: #fff !important;
}
#mastercard_promo_khl_fk input[type='text']::-moz-placeholder,
#mastercard_promo_khl_kinohod input[type='text']::-moz-placeholder {
  color: #fff;
}
#mastercard_promo_khl_fk input[type='text']::-webkit-input-placeholder,
#mastercard_promo_khl_kinohod input[type='text']::-webkit-input-placeholder {
  color: #fff;
}
#mastercard_promo_khl_fk .uk-checkbox,
#mastercard_promo_khl_kinohod .uk-checkbox {
  border-color: #ff9e00;
}
#mastercard_promo_khl_fk .uk-checkbox:checked,
#mastercard_promo_khl_kinohod .uk-checkbox:checked {
  background-color: #ff9e00;
}
#mastercard_promo_khl_fk .uk-button,
#mastercard_promo_khl_kinohod .uk-button {
  background: none;
  border: 1px solid #ff9e00;
  color: #ff9e00;
}
#mastercard_promo_khl_fk .uk-button-primary,
#mastercard_promo_khl_kinohod .uk-button-primary {
  background-color: #ff9e00;
  color: #fff;
}
#mastercard_promo_khl_fk .uk-button-primary:disabled,
#mastercard_promo_khl_kinohod .uk-button-primary:disabled,
#mastercard_promo_khl_fk .uk-button-primary.uk-disabled,
#mastercard_promo_khl_kinohod .uk-button-primary.uk-disabled {
  border-color: #f29b0d;
  background-color: #f29b0d !important;
}
@media (orientation: portrait) {
  .uk-device #mastercard_promo_khl_fk:before,
  .uk-device #mastercard_promo_khl_kinohod:before {
    top: 30%;
  }
}
/*
 * -------------------------------------------------------------
 * Loyalties
 * -------------------------------------------------------------
 */
.wk-list-loyalties > li {
  padding: 10px 0 !important;
  margin: 0 !important;
}
.wk-list-loyalties > li > a {
  display: block;
  -webkit-tap-highlight-color: transparent;
}
.wk-list-loyalties > li img {
  max-height: 30px;
}
.wk-overlay-loyalty {
  padding-top: 55px;
}
.wk-overlay-loyalty .uk-navbar-toggle,
.wk-overlay-loyalty .uk-navbar-item {
  color: #000;
}
.wk-loyalties-showcase .slick-slider {
  display: -webkit-box;
  display: flex;
}
.wk-loyalties-showcase .slick-slider img {
  display: inline-block;
}
.wk-loyalties-showcase .slick-slider .slick-list {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.wk-loyalties-showcase .slick-slider .slick-track,
.wk-loyalties-showcase .slick-slider .slick-slide {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
.wk-loyalties-showcase .slick-slider .slick-track {
  -webkit-box-align: stretch;
  align-items: stretch;
}
.wk-loyalties-showcase .slick-slider .slick-slide {
  height: auto;
  box-sizing: border-box;
  width: 100%;
}
.wk-loyalties-showcase .slick-slider .slick-slide .slick-slide-inner {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0 18px;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  transition: -webkit-transform ease-in-out 0.2s;
  transition: transform ease-in-out 0.2s;
  transition: transform ease-in-out 0.2s, -webkit-transform ease-in-out 0.2s;
}
.wk-loyalties-showcase .slick-slider .slick-slide .uk-flex {
  box-sizing: border-box;
  height: 100%;
}
.wk-loyalties-showcase .slick-slider .slick-active .slick-slide-inner {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.wk-loyalties-showcase .slick-slider .uk-dotnav {
  margin: 15px auto 0;
  width: auto;
  display: -webkit-box !important;
  display: flex !important;
}
.wk-loyalties-showcase .slick-slider .uk-dotnav > li {
  padding: 0;
  margin: 0;
  width: auto;
}
.wk-loyalties-showcase .slick-slider .uk-dotnav > li + li {
  margin-left: 10px;
}
.wk-loyalties-showcase .slick-slider .uk-dotnav > li > button {
  background-color: rgba(255, 255, 255, 0.6);
  height: 10px;
  width: 10px;
  padding: 0;
  border: 0;
  cursor: pointer;
}
.wk-loyalties-showcase .slick-slider .uk-dotnav > li.slick-active button {
  background-color: #806127;
}
.wk-overlay-merchant {
  background: #efeff4;
  padding-top: 55px;
}
.wk-overlay-merchant .wk-merchant-frame-holder {
  height: calc(100% - 55px);
  top: 55px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.wk-overlay-merchant .wk-merchant-frame-holder-ios {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.wk-overlay-merchant .wk-merchant-frame-holder-ios iframe {
  height: 100%;
  width: 100%;
}
.tm-page-purchase .tm-wrapper {
  background-color: #007fff !important;
}
.wk-purchase {
  box-sizing: border-box;
}
.wk-purchase .uk-icon-button {
  background: none !important;
  border: 2px solid #fff !important;
  color: #fff !important;
  box-sizing: border-box;
  line-height: 33px;
}
.wk-purchase .uk-button {
  background: none !important;
  border: 2px solid #fff !important;
  color: #fff !important;
  padding: 0 12px;
}
.wk-purchase .uk-button:hover,
.wk-purchase .uk-button:focus {
  background: #fff !important;
  color: #007fff !important;
}
.wk-purchase-status-loader .wk-purchase-status-label {
  color: #fff !important;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 22px;
  margin-bottom: 20px;
}
.wk-purchase-status-loader .wk-ellipsis-loader {
  text-align: left;
  display: inline-block;
}
/*
 * -------------------------------------------------------------
 * Profile
 * -------------------------------------------------------------
 */
.tm-page-profile .tm-container .tm-wrapper {
  background-color: #fff;
}
.wk-banner-onboard {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  box-sizing: border-box;
}
.wk-banner-onboard:before {
  content: '';
  height: 60px;
  width: 60px;
  right: -10px;
  top: -10px;
  border-radius: 100%;
  z-index: 100;
  position: absolute;
  display: block;
  box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.55);
}
/*
 * Search
 */
.wk-overlay-search {
  background: #fff;
  overflow-y: scroll;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 20px;
}
.wk-overlay-search .tm-button-backward {
  line-height: 55px;
}
.wk-overlay-search .wk-search {
  background: none;
  border: none;
  position: relative;
  width: 100%;
}
.wk-overlay-search .wk-search .uk-search-input {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  border: none;
  height: 35px;
  font-weight: 300;
  font-size: 14px;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}
.wk-overlay-search .wk-search .uk-search-input:focus {
  background: rgba(255, 255, 255, 0.1);
}
.wk-overlay-search .wk-search .uk-search-input:focus:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.wk-overlay-search .wk-search .uk-search-input:focus::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.wk-overlay-search .wk-search .uk-search-input:focus::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.wk-overlay-search .wk-search .uk-spinner {
  display: inline-block;
  fill: currentColor;
  line-height: 0;
  top: 10px;
  width: 25px;
}
.tm-navbar .wk-search-trigger {
  box-sizing: border-box;
  cursor: pointer !important;
  min-width: 55px;
  text-align: center;
}
.wk-search-results .uk-list > li {
  margin: 0;
  padding: 0;
}
.wk-search-results .uk-list > li a {
  display: block;
  padding: 10px 2px;
}
/*
 * Selections
 */
[class*='wk-selection'] .wk-selection-item a {
  border: 1px solid #d2e8ff;
  color: #42b1ff;
  border-radius: 2px;
  padding: 5px 7px !important;
}
.uk-device .wk-overlay-search .wk-selection-container {
  margin-left: -12px;
  margin-right: -12px;
  overflow: hidden;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
}
.uk-device .wk-overlay-search .wk-selection-container::-webkit-scrollbar {
  height: 0 !important;
  width: 0 !important;
}
.uk-device .wk-overlay-search .wk-selection-container > div {
  display: table;
  padding-left: 12px;
  padding-right: 12px;
}
.search {
  padding: 0;
}
/*
 * -------------------------------------------------------------
 * Cities
 * -------------------------------------------------------------
 */
.wk-list-cities {
  margin: 0;
  position: relative;
}
.wk-list-cities > li {
  font-size: 17px;
  line-height: 24px;
}
.wk-list-cities > li.uk-header {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--Text_Secondary);
  padding: 12px 0;
  box-sizing: border-box;
}
.wk-list-cities > li.uk-active > a {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
}
.wk-list-cities > li.uk-active .uk-icon {
  color: #eb360f;
}
.wk-list-cities > li > a {
  display: block;
  padding: 10px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: var(--Text_Primary);
}
.wk-list-cities > li:nth-child(n + 2) {
  margin-top: 0;
}
.tm-navbar .wk-cities-trigger {
  box-sizing: border-box;
  cursor: pointer !important;
  min-width: 44px;
  text-align: center;
  padding: 0;
}
/*
 * -------------------------------------------------------------
 * Movie Card
 * -------------------------------------------------------------
 */
.wk-card-movie {
  background-color: #fff;
  margin: 0;
  padding: 0;
  margin-bottom: 24px;
}
.wk-card-movie.uk-active .wk-card-header,
.wk-card-movie.uk-transition .wk-card-header {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.wk-card-movie:hover .wk-card-header,
.wk-card-movie:focus .wk-card-header {
  will-change: transform;
}
.wk-card-movie:hover .wk-panel,
.wk-card-movie:focus .wk-panel {
  will-change: height;
}
.wk-card-movie .wk-movie-age-restriction {
  padding: 1px 4px 1px 4px;
  margin-left: 5px;
}
.wk-card-movie .wk-movie-pushkin {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  z-index: 10;
  padding: 3px 5px;
}
.wk-card-movie .wk-movie-pushkin > span {
  font-family: MTSCompact, Roboto, 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 9px;
  line-height: 9px;
  color: #ffffff;
}
/*
 * -------------------------------------------------------------
 * Movie Panel
 * -------------------------------------------------------------
 */
.wk-panel-movie {
  background-color: #fff;
  cursor: default;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 10;
}
.wk-panel-movie.wk-trailer-active {
  overflow: visible;
  height: auto !important;
}
.wk-panel-movie .wk-badge-holder + .wk-badge-holder .wk-badge {
  padding-top: 20px;
}
.wk-panel-movie .wk-badge {
  box-shadow: none;
  font-size: 9px;
  font-weight: 500;
  line-height: 8px;
  opacity: 1;
  padding-top: 6px;
  padding-bottom: 6px;
  -webkit-transform: rotate(45deg) translate(50%, 30px);
          transform: rotate(45deg) translate(50%, 30px);
}
.wk-panel-movie .wk-caption {
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.85);
}
.wk-panel-movie .wk-title {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 2px;
}
.wk-panel-movie .wk-meta {
  color: #fff;
  font-size: 11px;
  line-height: 11px;
  opacity: 0.7;
  padding: 0;
}
.wk-panel-movie .wk-rating {
  margin-bottom: 6px;
}
.wk-panel-movie .wk-fave-button {
  padding: 0;
}
.wk-panel-movie .wk-fave-button .circle {
  fill: rgba(64, 64, 64, 0.5);
  stroke: #fff;
  transition: fill 0.15s ease;
}
.wk-panel-movie .wk-fave-button .plus {
  fill: #fff;
  stroke: #fff;
}
.wk-panel-movie .wk-fave-button.is-fave {
  color: #007fff;
}
.wk-panel-movie .wk-fave-button.is-fave svg {
  margin-bottom: -4px;
}
.wk-panel-movie .wk-fave-button:hover .circle {
  fill: #007fff;
  stroke: #007fff;
}
.wk-panel-movie .wk-share-button svg {
  color: #fff;
}
.wk-movie-premiere-date {
  font-family: NewsGothicCond, sans-serif;
  letter-spacing: 0.1px;
  color: #fff;
  display: inline-block;
  font-size: 11px;
  line-height: 18px;
  height: 18px;
  background-color: rgba(204, 136, 40, 0.75);
  vertical-align: middle;
  text-transform: uppercase;
  text-shadow: none;
  padding: 0 5.5px;
  margin-bottom: 6px;
  position: relative;
}
.wk-movie-premiere-date:before,
.wk-movie-premiere-date:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  left: 100%;
}
.wk-movie-premiere-date:before {
  top: 0;
  border-width: 9px 5px 0 0;
  border-color: rgba(204, 136, 40, 0.75) transparent transparent transparent;
}
.wk-movie-premiere-date:after {
  bottom: 0;
  border-width: 9px 0 0 5px;
  border-color: transparent transparent transparent rgba(204, 136, 40, 0.75);
}
.wk-movie-actors {
  padding-bottom: 2px;
}
.wk-movie-genres {
  display: inline-block;
}
.wk-movie-age-restriction {
  background-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.45);
  border-radius: 1px;
  font-family: Arial, sans-serif;
  font-size: 11px;
  line-height: 11px;
  margin: 0 0 -1px 4px;
  padding: 2px 2px 1px 2px;
  color: #fff;
}
/*
 * -------------------------------------------------------------
 * Movie schedule toolbar
 * -------------------------------------------------------------
 */
.wk-toolbar-movie {
  background: #fff;
  box-shadow: none !important;
  padding: 0;
  margin-bottom: 28px;
}
/*
 * -------------------------------------------------------------
 * Movies lists
 * -------------------------------------------------------------
 */
.wk-list-movies {
  background-color: #ffffff;
  margin-top: 16px;
}
.wk-list-movies > * + * {
  margin: 0;
}
.wk-list-movies .wk-card.uk-active .wk-panel-movie {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.wk-list-movies .wk-card.uk-active .wk-panel-movie .wk-teaser,
.wk-list-movies .wk-card.uk-active .wk-panel-movie .wk-caption {
  cursor: default;
}
.wk-list-movies .wk-panel-movie {
  margin: 0;
  z-index: 30;
}
.wk-list-movies .wk-panel-movie .wk-teaser,
.wk-list-movies .wk-panel-movie .wk-caption {
  cursor: pointer;
}
/*
 * -------------------------------------------------------------
 * Movie Article
 * -------------------------------------------------------------
 */
.wk-article-movie .wk-article-container {
  padding: 16px 20px;
}
.wk-article-movie .wk-panel-movie {
  z-index: 30;
  will-change: height;
  border-radius: 16px;
  overflow: hidden;
}
.wk-article-movie em {
  color: inherit;
}
/*
 * -------------------------------------------------------------
 * Collapsed state
 * -------------------------------------------------------------
 */
.wk-article-movie .wk-card-header,
.wk-card-movie .wk-card-header {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
}
.wk-article-movie .wk-card-header .wk-panel,
.wk-card-movie .wk-card-header .wk-panel {
  transition: height 0.1s ease-out;
}
.wk-article-movie .wk-card-header .wk-badge,
.wk-card-movie .wk-card-header .wk-badge {
  transition: opacity 0.1s ease-out;
}
.wk-article-movie .wk-card-header .uk-icon-play,
.wk-card-movie .wk-card-header .uk-icon-play {
  -webkit-transform: scale(1) translate(-50%, -50%);
          transform: scale(1) translate(-50%, -50%);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  transition: opacity 0.1s ease-out, -webkit-transform 0.1s ease-out 0.1s;
  transition: opacity 0.1s ease-out, transform 0.1s ease-out 0.1s;
  transition: opacity 0.1s ease-out, transform 0.1s ease-out 0.1s, -webkit-transform 0.1s ease-out 0.1s;
}
.wk-article-movie .wk-card-header .wk-caption,
.wk-card-movie .wk-card-header .wk-caption {
  transition: left 0.1s ease-out;
}
.wk-article-movie .wk-card-header.uk-collapsed .wk-panel,
.wk-card-movie .wk-card-header.uk-collapsed .wk-panel {
  height: 66px !important;
}
.wk-article-movie .wk-card-header.uk-collapsed .uk-icon-play,
.wk-card-movie .wk-card-header.uk-collapsed .uk-icon-play,
.wk-article-movie .wk-card-header.uk-collapsed .wk-badge,
.wk-card-movie .wk-card-header.uk-collapsed .wk-badge {
  opacity: 0;
}
.wk-article-movie .wk-card-header.uk-collapsed .uk-icon-play,
.wk-card-movie .wk-card-header.uk-collapsed .uk-icon-play {
  -webkit-transform: scale(0) translate(-50%, -50%);
          transform: scale(0) translate(-50%, -50%);
}
.wk-article-movie .wk-card-header.uk-collapsed .wk-caption,
.wk-card-movie .wk-card-header.uk-collapsed .wk-caption {
  z-index: 40;
  left: 43px;
}
.is-kinohod .wk-article-movie .wk-card-header,
.is-kinohod .wk-card-movie .wk-card-header {
  transition: -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
  transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
}
.is-kinohod .wk-article-movie .wk-card-header.uk-collapsed,
.is-kinohod .wk-card-movie .wk-card-header.uk-collapsed {
  -webkit-transform: translateY(-55px);
          transform: translateY(-55px);
}
/*
 * -------------------------------------------------------------
 * Devices
 * -------------------------------------------------------------
 */
.uk-device .wk-list-movies.wk-list-cards {
  background-color: transparent;
}
.uk-device .wk-list-movies.wk-list-cards > * + * {
  margin-top: 6px;
}
.uk-device .wk-list-movies.wk-list-cards .wk-card-placeholder {
  margin: 0;
  transition: margin 0.1s ease-out;
}
.uk-device .wk-list-movies.wk-list-cards .wk-card-placeholder .wk-panel-movie {
  box-shadow: none;
}
.uk-device .wk-list-movies.wk-list-cards .wk-card-overlay {
  border-radius: 3px;
}
.uk-device .wk-list-movies.wk-list-cards .wk-card-movie {
  background-color: transparent;
}
.uk-device .wk-list-movies.wk-list-cards .wk-card-movie.uk-open .wk-card-placeholder,
.uk-device .wk-list-movies.wk-list-cards .wk-card-movie.uk-active .wk-card-placeholder,
.uk-device .wk-list-movies.wk-list-cards .wk-card-movie.uk-transition .wk-card-placeholder {
  margin: 0 -6px;
}
.uk-device .wk-list-movies.wk-list-cards .wk-card-movie.uk-open .wk-card-overlay,
.uk-device .wk-list-movies.wk-list-cards .wk-card-movie.uk-active .wk-card-overlay,
.uk-device .wk-list-movies.wk-list-cards .wk-card-movie.uk-transition .wk-card-overlay {
  box-shadow: none;
  border-radius: 0;
}
.uk-device.uk-device-ios .wk-list-movies.wk-list-cards .wk-card-overlay {
  border-radius: 8px;
}
.uk-device.is-native-app .wk-list-movies.wk-list-cards .wk-card-overlay {
  border-radius: 8px;
  box-shadow: none !important;
}
.uk-device.uk-device-android .wk-list-movies.wk-list-cards .wk-card-overlay {
  border-radius: 3px;
}
.uk-device .wk-panel-movie .wk-caption {
  padding-bottom: 10px;
}
.wk-schedule-movie {
  padding: 0;
}
.wk-schedule-movie .uk-card-default {
  box-shadow: none;
}
/*
 * -------------------------------------------------------------
 * Cinema Card
 * -------------------------------------------------------------
 */
.wk-card-cinema {
  background-color: #fff;
  margin: 0;
  padding: 0;
}
.wk-card-cinema.uk-active .wk-card-header,
.wk-card-cinema.uk-transition .wk-card-header {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.wk-card-cinema.uk-open,
.wk-card-cinema.uk-active,
.wk-card-cinema.uk-transition {
  box-shadow: none;
}
/*
 * -------------------------------------------------------------
 * Cinema Panel
 * -------------------------------------------------------------
 */
.wk-panel-cinema {
  background-color: #fff;
  box-sizing: border-box;
  cursor: default;
  margin: 0;
  position: relative;
  z-index: 10;
  box-shadow: none;
  padding: 0;
}
.wk-panel-cinema .wk-caption {
  padding: 0;
  text-shadow: none;
}
.wk-panel-cinema .wk-caption .wk-cinema-pushkin {
  font-size: 11px;
  line-height: 13px;
  color: #ffffff;
  background: #c44891;
  border: 0.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 1px;
  padding: 2px 4px 2px 2px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}
.wk-panel-cinema .wk-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 10px;
}
.wk-panel-cinema .wk-rating {
  line-height: 11px;
  margin-bottom: 4px;
}
.wk-panel-cinema .wk-rating svg {
  vertical-align: top;
}
.wk-panel-cinema .wk-cinema-promo {
  border: 1px solid #806127;
  color: #806127;
  font-size: 11px;
  font-weight: 400;
  line-height: 18px;
  vertical-align: top;
  padding: 0 3px;
  border-radius: 2px;
  margin: 2px 0 0 5px;
}
.wk-panel-cinema .wk-cinema-address {
  font-size: 14px;
  line-height: 20px;
  padding: 0;
  margin: 0;
}
.wk-panel-cinema .wk-cinema-distance {
  font-weight: 500;
  display: none;
}
.wk-panel-cinema .wk-fave-button.is-fave svg {
  margin-bottom: -4px;
}
.wk-panel-cinema .wk-share-button svg {
  color: #007fff;
}
.wk-panel-cinema .wk-map {
  position: relative;
}
.wk-panel-cinema .wk-map:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 4;
}
.wk-panel-cinema .wk-map > div {
  position: relative;
  z-index: 2;
}
/*
 * -------------------------------------------------------------
 * Cinema Schedule
 * -------------------------------------------------------------
 */
.wk-schedule-cinema {
  padding-left: 20px;
  padding-right: 20px;
}
.wk-schedule-cinema .wk-panel-movie {
  border-radius: 16px !important;
  overflow: hidden;
}
.wk-schedule-cinema .wk-panel-movie .wk-teaser {
  border-radius: 16px;
}
.wk-schedule-cinema .uk-card {
  box-shadow: none;
}
.wk-schedule-cinema .wk-movie-age-restriction {
  padding: 4px 4px 3px 4px;
}
/*
 * -------------------------------------------------------------
 * Cinema Subway
 * -------------------------------------------------------------
 */
ul.wk-list-subway {
  margin-top: 2px;
}
ul.wk-list-subway > li > span,
ul.wk-list-subway > li > span > span {
  font-size: 14px;
  line-height: 13px;
}
/*
 * -------------------------------------------------------------
 * Cinema schedule toolbar
 * -------------------------------------------------------------
 */
.wk-toolbar-cinema {
  background: #fff;
  box-shadow: none !important;
}
/*
 * -------------------------------------------------------------
 * Cinemas lists
 * -------------------------------------------------------------
 */
.wk-list-cinemas > * + * {
  margin-top: 6px;
}
.wk-list-cinemas .wk-card.uk-active {
  box-shadow: none;
}
.wk-list-cinemas .wk-card.uk-active .wk-panel-cinema {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  cursor: default;
  padding-top: 67px;
}
.wk-list-cinemas .wk-panel-cinema {
  cursor: pointer;
  z-index: 30;
  padding: 24px 0 24px;
  border-bottom: 1px solid #bcc3d080;
}
.wk-list-cinemas > :last-child .wk-panel-cinema {
  border-bottom: none;
}
/*
 * -------------------------------------------------------------
 * Cinema Article
 * -------------------------------------------------------------
 */
.wk-article-cinema .wk-article-container {
  padding-left: 20px;
  padding-right: 20px;
}
.wk-article-cinema .wk-article-container .wk-toolbar {
  padding: 0;
}
.wk-article-cinema .wk-card-header {
  max-width: 640px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 105;
}
.wk-article-cinema .wk-card-body {
  box-sizing: border-box;
}
.wk-article-cinema .wk-panel-cinema {
  z-index: 30;
}
/*
 * -------------------------------------------------------------
 * Collapsed state
 * -------------------------------------------------------------
 */
.wk-article-cinema .wk-card-header,
.wk-card-cinema .wk-card-header {
  background-color: #fff;
}
.wk-article-cinema .wk-card-header .wk-panel,
.wk-card-cinema .wk-card-header .wk-panel {
  transition: height 0.1s linear, padding 0.1s linear;
}
.wk-article-cinema .wk-card-header .wk-map,
.wk-card-cinema .wk-card-header .wk-map {
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear;
}
.wk-article-cinema .wk-card-header.uk-collapsed .wk-map,
.wk-card-cinema .wk-card-header.uk-collapsed .wk-map {
  -webkit-transform: translateY(-55px);
          transform: translateY(-55px);
}
.wk-article-cinema .wk-card-header.uk-collapsed .wk-panel,
.wk-card-cinema .wk-card-header.uk-collapsed .wk-panel {
  padding: 12px 12px 12px 55px;
  min-height: 55px;
}
.wk-article-cinema .wk-card-header.uk-collapsed .wk-cinema-address,
.wk-card-cinema .wk-card-header.uk-collapsed .wk-cinema-address,
.wk-article-cinema .wk-card-header.uk-collapsed .wk-list-subway,
.wk-card-cinema .wk-card-header.uk-collapsed .wk-list-subway {
  display: none;
}
.wk-article-cinema .wk-card-header.uk-collapsed .wk-title,
.wk-card-cinema .wk-card-header.uk-collapsed .wk-title {
  margin: 4px 0;
}
.is-kinohod .wk-article-cinema .wk-card-header,
.is-kinohod .wk-card-cinema .wk-card-header {
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear;
}
.is-kinohod .wk-article-cinema .wk-card-header.uk-collapsed,
.is-kinohod .wk-card-cinema .wk-card-header.uk-collapsed {
  -webkit-transform: translateY(-55px);
          transform: translateY(-55px);
}
/*
 * -------------------------------------------------------------
 * Devices
 * -------------------------------------------------------------
 */
.uk-device .wk-list-cinemas > * + * {
  margin-top: 6px;
}
.uk-device .wk-list-cinemas.wk-list-cards {
  background-color: transparent;
}
.uk-device .wk-list-cinemas.wk-list-cards .wk-card {
  box-shadow: none;
}
.uk-device .wk-list-cinemas.wk-list-cards .wk-card-placeholder {
  margin: 0;
  transition: margin 0.1s linear;
}
.uk-device .wk-list-cinemas.wk-list-cards .wk-card-placeholder .wk-panel-cinema {
  box-shadow: none;
}
.uk-device .wk-list-cinemas.wk-list-cards .wk-card-overlay {
  border-radius: 3px;
}
.uk-device .wk-list-cinemas.wk-list-cards .wk-card-cinema {
  background-color: transparent;
}
.uk-device .wk-list-cinemas.wk-list-cards .wk-card-cinema.uk-open .wk-card-placeholder,
.uk-device .wk-list-cinemas.wk-list-cards .wk-card-cinema.uk-active .wk-card-placeholder,
.uk-device .wk-list-cinemas.wk-list-cards .wk-card-cinema.uk-transition .wk-card-placeholder {
  margin: 0 -6px;
}
.uk-device .wk-list-cinemas.wk-list-cards .wk-card-cinema.uk-open .wk-card-overlay,
.uk-device .wk-list-cinemas.wk-list-cards .wk-card-cinema.uk-active .wk-card-overlay,
.uk-device .wk-list-cinemas.wk-list-cards .wk-card-cinema.uk-transition .wk-card-overlay {
  box-shadow: none;
  border-radius: 0;
}
.uk-device.uk-device-ios .wk-list-cinemas.wk-list-cards .wk-card-overlay {
  border-radius: 2px;
}
.uk-device.uk-device-android .wk-list-cinemas.wk-list-cards .wk-card-overlay {
  border-radius: 3px;
}
.wk-cinema-address {
  color: var(--Text_Secondary);
  font-size: 14px;
  font-weight: 400;
}
/*
 * -------------------------------------------------------------
 * Schedule
 * -------------------------------------------------------------
 */
.wk-article-schedule {
  padding-top: 70px;
}
.wk-article-schedule .wk-seance-header {
  top: 0;
}
.is-kinohod .wk-article-schedule {
  padding-top: 125px;
}
.wk-schedule > * + * {
  margin-top: 6px;
}
.wk-schedule-groups {
  padding-top: 12px;
}
.wk-schedule-groups .wk-schedule-group {
  padding: 0 0 12px;
}
.wk-schedule-groups .wk-format-title {
  color: var(--Text_Secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 8px;
}
.wk-schedule-groups .wk-schedule-prices {
  color: #806127;
  display: none;
}
.wk-schedule-groups .wk-schedule-prices svg {
  margin-top: -3px;
  max-height: 10px;
}
.wk-schedule-pills {
  margin-top: -6px;
  margin-bottom: 0;
  flex-wrap: nowrap;
  overflow-x: scroll;
}
.wk-schedule-pills > * {
  margin-top: 6px;
}
.wk-schedule-pill {
  box-sizing: border-box;
  display: inline-block;
  transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  min-width: 60px;
  background-color: var(--Background_Secondary);
  padding: 12px 18px 12px 16px;
  border-radius: 16px;
}
.wk-schedule-pill > span {
  font-size: 17px;
  font-weight: 500;
}
.wk-schedule-pill:not(.uk-disabled) {
  color: var(--Text_Primary);
}
.wk-schedule-pill:not(.uk-disabled):hover {
  border-color: rgba(0, 127, 255, 0.7);
  color: #007fff;
}
.wk-schedule-pill:not(.uk-disabled):hover .wk-seance-price {
  color: #808080;
}
.wk-schedule-pill.uk-disabled.uk-disabled.uk-disabled {
  background: none;
  border: none;
  color: #999b9b;
  cursor: default;
  pointer-events: all;
}
.wk-schedule-pill.uk-disabled.uk-disabled.uk-disabled:hover,
.wk-schedule-pill.uk-disabled.uk-disabled.uk-disabled:focus,
.wk-schedule-pill.uk-disabled.uk-disabled.uk-disabled:active {
  color: #999b9b;
}
.wk-schedule-pill.uk-disabled.uk-disabled.uk-disabled .wk-seance-price {
  color: #999b9b;
}
.wk-schedule-pill .wk-seance-price {
  color: var(--Text_Secondary);
  font-size: 14px;
  font-weight: 4000;
  display: block;
  line-height: 20pxt;
  margin: 0;
  margin-top: 5px;
  transition: color 0.3s ease-in-out;
}
.wk-schedule-pill .wk-seance-price svg {
  max-height: 8px;
}
.wk-seances-outdated {
  color: #808080;
  font-size: 13px;
  padding: 24px;
  text-align: center;
}
/*
 * -------------------------------------------------------------
 * Devices
 * -------------------------------------------------------------
 */
.uk-device .wk-schedule.wk-schedule-cinema.wk-schedule-cards {
  padding-left: 20px;
  padding-right: 20px;
}
.uk-device .wk-schedule.wk-schedule-cards {
  padding: 6px 6px;
}
.uk-device .wk-schedule.wk-schedule-cards .uk-article {
  border-radius: 2px;
}
.uk-device .wk-schedule.wk-schedule-cards .wk-panel-movie {
  border-radius: 2px 2px 0 0;
}
.uk-device .wk-schedule .wk-schedule-pills-container {
  margin-left: -12px;
  margin-right: -12px;
  overflow: hidden;
  overflow-x: scroll;
}
.uk-device .wk-schedule .wk-schedule-pills-container > div {
  display: table;
  padding-left: 12px;
  padding-right: 12px;
}
.uk-device .wk-schedule .wk-schedule-pills-container::-webkit-scrollbar {
  height: 0 !important;
  width: 0 !important;
}
.uk-device .wk-schedule .wk-schedule-pill.uk-disabled {
  background: none;
  border: none;
}
.uk-device.uk-device-ios .wk-schedule.wk-schedule-cards .uk-article {
  border-radius: 2px;
}
.uk-device.uk-device-ios .wk-schedule.wk-schedule-cards .wk-panel-movie {
  border-radius: 2px 2px 0 0;
}
.uk-device.uk-device-android .wk-schedule.wk-schedule-cards .uk-article {
  border-radius: 3px;
}
.uk-device .wk-seances-groups,
.uk-device .wk-seances-outdated {
  padding: 0 12px 12px;
}
.uk-device .wk-seances-outdated {
  padding-bottom: 24px;
  padding-top: 24px;
}
.wk-schedule-pushkin {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  padding: 8px 12px;
  background: #ffffff;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  margin-bottom: 8px;
  margin-top: 8px;
}
.wk-schedule-pushkin-icon {
  width: 43px;
  height: 43px;
  border: 1px solid #1d5deb;
  border-radius: 50%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  margin-right: 12px;
}
.wk-schedule-pushkin-info {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  font-family: MTSCompact, Roboto, 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}
.wk-schedule-pushkin-info span:nth-child(1) {
  color: black;
  font-size: 12px;
  line-height: 15px;
  margin-bottom: 3px;
}
.wk-schedule-pushkin-info span:nth-child(2) {
  color: #828c96;
  font-size: 11px;
  line-height: 15px;
}
/*
 * -------------------------------------------------------------
 * Seance article
 * -------------------------------------------------------------
 */
.wk-article-seance {
  position: relative;
  background-color: var(--Background_Secondary);
  min-height: 100%;
}
.wk-seance-header {
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  margin: 0;
  max-width: 640px;
  position: fixed;
  width: 100%;
  z-index: 2;
}
.wk-seance-header .language-choice {
  position: absolute;
  right: 20px;
  bottom: 15px;
  cursor: pointer;
  z-index: 2;
}
.wk-seance-header .language-choice:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  border-color: #ffffff transparent transparent transparent;
  position: absolute;
  top: 5px;
  right: -12px;
}
.wk-seance-header .currency-choice {
  position: absolute;
  right: 60px;
  bottom: 15px;
  cursor: pointer;
  z-index: 13;
}
.wk-seance-header .currency-choice:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  border-color: #ffffff transparent transparent transparent;
  position: absolute;
  top: 5px;
  right: -12px;
}
.wk-seance-teaser {
  z-index: 2;
}
.wk-seance-teaser .wk-teaser {
  border-radius: 8px;
  height: 70px;
  width: 50px;
  position: relative;
}
.wk-seance-teaser .wk-teaser::after,
.wk-seance-teaser .wk-teaser .wk-teaser-filter {
  border-radius: 6px;
}
.wk-seance-caption {
  margin-right: 15px;
  padding: 8px 0;
  margin-left: 8px;
}
.wk-seance-caption code {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 11px;
  vertical-align: middle;
}
.wk-seance-caption code + code {
  margin-left: 3px;
}
.wk-seance-caption .wk-seance-title {
  color: var(--Text_Primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 0;
}
.wk-seance-caption .wk-movie-restriction-age {
  background-color: #9e7932;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 400;
  line-height: 12px;
  margin-left: 4px;
  padding: 4px 3px 2px;
  color: #fff;
}
.wk-seance-caption .wk-seance-meta {
  font-size: 12px;
  line-height: 15px;
  padding: 0;
  margin-top: 2px;
}
.wk-seance-caption .wk-seance-date {
  color: var(--Text_Secondary);
}
.wk-seance-infobar {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.wk-seance-infobar .wk-seance-infobar-scroll {
  overflow: hidden;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  margin-bottom: -25px;
  padding-bottom: 25px;
  max-height: 40px;
}
.wk-seance-infobar .wk-seance-infobar-scroll::-webkit-scrollbar {
  height: 0 !important;
  width: 0 !important;
}
.wk-seance-infobar .wk-seance-infobar-scroll > div {
  display: table;
  padding: 5px 10px;
}
.wk-seance-infobar .wk-seance-infobar-item {
  margin-left: -6px;
}
.wk-seance-infobar .wk-seance-infobar-item > * {
  padding-left: 6px;
}
.wk-seance-infobar .uk-icon {
  fill: #808080;
  color: #808080;
}
.wk-seance-infobar .uk-icon .star,
.wk-seance-infobar .uk-icon .dash {
  fill: #fff;
}
.wk-seance-infobar .uk-icon.uk-active {
  fill: #007fff;
  color: #007fff;
}
.wk-seance-body {
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding: 55px 0 0;
  min-height: 100%;
  max-width: 100vw;
}
[class*='wk-article-seance-'] .wk-seance-body {
  padding-bottom: 115px;
}
.wk-seance-return-conditions {
  font-size: 11px;
  text-align: center;
}
.wk-seance-terms {
  margin-top: 12px;
  font-size: 11px;
  text-align: center;
}
.price-old {
  font-size: 12px;
  position: relative;
}
.price-old:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: #f00;
}
.is-kinohod .wk-seance-body {
  padding-top: 185px;
}
.has-apps-banner .wk-seance-body {
  padding-top: 240px;
}
.has-apps-banner .wk-seance-body {
  padding-bottom: 55px;
}
.wk-article-seance-checkout .wk-seance-body {
  background: #fff;
  padding-top: 55px;
  padding-bottom: 0;
}
.wk-article-seance-checkout .wk-seance-body-checkout {
  background-color: var(--Background_Secondary);
}
.wk-article-seance-checkout .wk-seance-body-checkout > :first-child {
  padding-bottom: 85px;
}
.wk-seance-payments {
  background-color: #fff;
  box-shadow: 0 -1px 5px rgba(69, 107, 138, 0.15);
  box-sizing: border-box;
  max-width: 640px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: fixed;
  bottom: 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 100%;
  box-shadow: 0 -2px 24px 0 rgba(0, 0, 0, 0.078);
}
.wk-seance-payments .wk-native-scroll-area {
  margin: 0 -15px;
}
.wk-seance-payments .wk-native-scroll-area .wk-list-payment {
  padding: 5px 15px 15px;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
}
.wk-seance-payments-heading {
  font-size: 17px;
  font-weight: 500;
}
.wk-seance-payments-heading.has-discounts-note {
  margin-bottom: 5px;
}
.wk-seance-payments-heading .wk-seance-payments-discount {
  font-family: Roboto;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #828c96;
}
.wk-seance-payments-heading .wk-seance-payments-discount span {
  color: #0080ff;
}
.wk-seance-payments-discounts-note {
  margin-bottom: 15px;
}
.wk-seance-payments-panel {
  background-color: var(--Background_Primary);
  box-sizing: border-box;
  padding: 16px 20px;
  border-radius: 20px;
}
.wk-seance-payments-submit {
  background-color: #fff;
  box-sizing: border-box;
  max-width: 640px;
  padding: 15px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.wk-seance-footer {
  background-color: #fff;
  box-shadow: 0 -1px 5px rgba(69, 107, 138, 0.15);
  box-sizing: border-box;
  height: auto;
  max-width: 640px;
  padding: 20px;
  padding-top: 15px;
  width: 100%;
  z-index: 2;
  margin: auto;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.wk-seance-footer .wk-seance-places {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  vertical-align: middle;
  box-sizing: border-box;
  overflow: hidden;
  max-width: 100%;
  max-height: 40px;
  text-overflow: ellipsis;
}
.wk-seance-footer .wk-seance-places .wk-seance-places-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  color: var(--Text_Primary);
  font-size: 20px;
  font-weight: 500;
  padding: 3px 0;
}
.wk-seance-footer.uk-active {
  display: block !important;
}
.wk-seance-footer .wk-seance-footer-panel {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
}
.wk-seance-footer .wk-seance-footer-panel > div {
  -webkit-box-flex: 1;
          flex-grow: 1;
}
@media (max-width: 639px) {
  .uk-device .wk-seance-footer {
    left: 0;
  }
}
.wk-seance-payment-email {
  background-color: var(--Background_Primary);
  box-sizing: border-box;
  padding: 16px 20px;
  border-radius: 20px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}
.wk-seance-payment-email > h3 {
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}
.wk-seance-payment-email > input {
  border: 1px solid #bcc3d080;
  border-radius: 8px;
}
.wk-seance-payment-email > label {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  background: var(--Text_Secondary, #626c77);
}
/*
 * Scheme
 */
.wk-scheme-viewport {
  box-sizing: border-box;
  padding: 0;
  width: 100%;
}
.wk-scheme {
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: 100%;
  width: 100%;
  stroke-width: 0;
  fill: #e85ca7;
  position: absolute;
}
.wk-scheme .wk-scheme-seat-is-social-distance {
  background-color: #a6d7f9 !important;
  fill: #a6d7f9 !important;
}
.wk-scheme .wk-scheme-seat-is-social-distance rect.wk-scheme-seat-inner {
  fill: #a6d7f9;
}
.wk-scheme.wk-scheme-limit .wk-scheme-seat:not(.uk-selected) {
  opacity: 0.5;
}
.wk-scheme.wk-scheme-limit .wk-scheme-seat:not(.uk-selected) .wk-scheme-seat-inner,
.wk-scheme.wk-scheme-limit .wk-scheme-seat:not(.uk-selected) text {
  cursor: default;
}
.wk-scheme .wk-scheme-zoom-helper {
  fill: transparent;
  width: 100%;
  height: 100%;
}
.wk-scheme .wk-scheme-zoom-helper:active {
  cursor: move;
}
.wk-scheme .wk-scheme-holder,
.wk-scheme .wk-scheme-wrapper,
.wk-scheme .wk-scheme-inner {
  -webkit-tap-highlight-color: transparent;
}
/*
 * Rows
 */
.wk-scheme-row:hover .wk-scheme-row-title {
  fill: #f15500;
}
.wk-scheme-row-title {
  font-size: 0.8rem;
  font-weight: 400;
  fill: var(--Text_Primary);
  stroke: var(--Text_Primary);
}
.wk-scheme-row-title.wk-scheme-row-title-start text {
  text-anchor: start;
}
.wk-scheme-row-title.wk-scheme-row-title-end text {
  text-anchor: end;
}
/*
 * Seats
 */
.wk-scheme-seat {
  transition: opacity 0.25s ease-in;
  stroke-width: 0;
  padding: 11px;
  padding-left: 8px;
  border-radius: 8px;
  background-color: var(--Background_Primary);
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  box-shadow: 0px 4px 8px 0px #00000014;
}
.wk-scheme-seat.uk-selected:not(div) {
  fill: transparent;
}
.wk-scheme-seat.uk-selected:not(div) .wk-scheme-seat-inner {
  fill: transparent;
}
.wk-scheme-seat.uk-selected:not(div) svg path {
  fill: #f15500;
}
.wk-scheme-seat.uk-disabled {
  fill: #bdbdbd;
}
.wk-scheme-seat.uk-disabled .wk-scheme-seat-inner {
  fill: #bdbdbd;
}
.wk-scheme-seat .wk-scheme-seat-inner {
  stroke-width: 0;
  pointer-events: all;
}
.wk-scheme-seat .wk-scheme-seat-inner:not(div) {
  fill: inherit;
}
.wk-scheme-seat:not(.uk-disabled) .wk-scheme-seat-inner,
.wk-scheme-seat:not(.uk-disabled) text,
.wk-scheme-seat:not(.uk-disabled) svg {
  cursor: pointer;
}
.wk-scheme-seat text {
  fill: #fff;
  text-anchor: middle;
  dominant-baseline: central;
  alignment-baseline: central;
  font-size: 0.75rem;
  font-weight: 400;
}
/*
 * Display
 */
.wk-scheme-screen {
  fill: #a6d7f9;
}
.wk-scheme-screen-arc {
  /*
     * Display line weight
     */
  stroke-width: 1px;
  stroke: inherit;
  fill: var(--Text_Primary);
  stroke: var(--Text_Primary);
}
.wk-hallname-overlay {
  fill: #f2f2f2;
  stroke-width: 0;
}
.wk-hallname-title {
  fill: inherit;
  text-anchor: middle;
  dominant-baseline: central;
  alignment-baseline: central;
  font-size: 12px;
  stroke-width: 0;
}
/*
 * Legend
 */
.wk-scheme-legend {
  background-color: #f2f2f2;
  box-sizing: border-box;
  display: block;
  padding: 5px 0;
  margin-top: 15px;
  width: 100%;
  overflow: hidden;
}
.wk-scheme-legend .wk-scheme-legend-scroll {
  overflow: hidden;
  overflow-x: scroll;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-overflow-scrolling: touch;
  margin-bottom: -15px;
  padding: 0 10px 25px;
}
.wk-scheme-legend .wk-scheme-legend-scroll::-webkit-scrollbar {
  height: 0 !important;
  width: 0 !important;
}
.wk-scheme-legend .wk-scheme-legend-scroll > div {
  padding-right: 10px;
  display: table;
}
@media (min-width: 960px) {
  .wk-scheme-legend {
    max-width: 640px;
  }
}
.wk-scheme-legend .wk-scheme-seat-inner,
.wk-scheme-legend .wk-scheme-legend-price {
  border-radius: 1px;
  display: inline-block;
  vertical-align: top;
}
.wk-scheme-legend .wk-scheme-seat-inner {
  height: 10px;
  width: 10px;
  border-radius: 50%;
}
.wk-scheme-legend .wk-scheme-legend-price,
.wk-scheme-legend .wk-scheme-legend-title {
  font-size: 10px;
  line-height: 10px;
}
.wk-scheme-legend .wk-scheme-legend-price > span,
.wk-scheme-legend .wk-scheme-legend-title > span {
  display: inline-block;
}
.wk-scheme-legend .wk-scheme-legend-price.multi-currencies,
.wk-scheme-legend .wk-scheme-legend-title.multi-currencies {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}
.wk-scheme-legend .wk-scheme-legend-price.multi-currencies .currency,
.wk-scheme-legend .wk-scheme-legend-title.multi-currencies .currency {
  display: -webkit-box;
  display: flex;
  margin-bottom: 5px;
  -webkit-box-align: center;
          align-items: center;
}
.wk-scheme-legend .wk-scheme-legend-price.multi-currencies .currency span:first-child,
.wk-scheme-legend .wk-scheme-legend-title.multi-currencies .currency span:first-child {
  margin-right: 5px;
}
.wk-scheme-legend .wk-scheme-legend-price {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--Text_Primary);
}
/*
 * Colors modifiers
 */
.color1 {
  fill: #e85ca7;
  background-color: #e85ca7;
}
.color2 {
  fill: #8b89f1;
  background-color: #8b89f1;
}
.color3 {
  fill: #df5050;
  background-color: #df5050;
}
.color4 {
  fill: #997450;
  background-color: #997450;
}
.color5 {
  fill: #8db230;
  background-color: #8db230;
}
.color6 {
  fill: #eb7fba;
  background-color: #eb7fba;
}
.color7 {
  fill: #3280e1;
  background-color: #3280e1;
}
.color8 {
  fill: #ff6c00;
  background-color: #ff6c00;
}
.color9 {
  fill: #c7468c;
  background-color: #c7468c;
}
.color10 {
  fill: #9976e3;
  background-color: #9976e3;
}
.color11 {
  fill: #8b2b25;
  background-color: #8b2b25;
}
.color12 {
  fill: #26ca84;
  background-color: #26ca84;
}
.color13 {
  fill: #4f6f00;
  background-color: #4f6f00;
}
.color14 {
  fill: #144179;
  background-color: #144179;
}
.color15 {
  fill: #b2e4fb;
  background-color: #b2e4fb;
}
.color16 {
  fill: #ffd97f;
  background-color: #ffd97f;
}
.color17 {
  fill: #efa7a7;
  background-color: #efa7a7;
}
.color18 {
  fill: #ccb9a7;
  background-color: #ccb9a7;
}
.color19 {
  fill: #c6d897;
  background-color: #c6d897;
}
.color20 {
  fill: #f5bfdc;
  background-color: #f5bfdc;
}
.tm-page-personalize [class*='wk-personalize'] .wk-panel {
  cursor: pointer;
  overflow: hidden;
  width: 100%;
}
.tm-page-personalize [class*='wk-personalize'] .wk-badge {
  font-size: 9px;
  font-weight: 500;
  line-height: 8px;
  -webkit-transform: rotate(45deg) translate(50%, 30px);
          transform: rotate(45deg) translate(50%, 30px);
}
.tm-page-personalize [class*='wk-personalize'] .wk-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  color: #fff;
  padding: 0 12px 12px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.45);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.tm-page-personalize [class*='wk-personalize'] .wk-caption .wk-title {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 19px;
  margin: 0 0 2px;
}
.tm-page-personalize [class*='wk-personalize'] .wk-caption .wk-meta {
  font-size: 13px;
  color: #ccc;
}
.tm-page-personalize .wk-banner > a:not([href]) {
  display: none !important;
}
.tm-page-personalize .wk-personalize-planetarium .wk-caption {
  left: 50%;
  padding: 0;
}
/*
 * -------------------------------------------------------------
 * Post Page
 * -------------------------------------------------------------
 */
body.tm-page-post .tm-footer {
  background-color: #000;
  box-shadow: 0 1px 1px #333 inset;
}
/*
 * -------------------------------------------------------------
 * Post Article
 * -------------------------------------------------------------
 */
.wk-article-post {
  background-color: #000;
  min-height: 100%;
}
.wk-article-post .wk-card-header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  z-index: 105;
  width: 100%;
  max-width: 640px;
}
.wk-article-post .wk-teaser:after {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 100%);
  height: 75%;
  top: auto;
  bottom: 0;
}
.wk-article-post .wk-content {
  color: #eee;
  padding-top: 40px;
}
.wk-article-post .wk-content img {
  height: auto !important;
  width: auto !important;
}
.wk-article-post .wk-content em {
  color: inherit;
}
.wk-article-post .wk-content iframe[src*='youtube'] {
  margin: 15px 0;
  max-width: 100%;
}
.wk-article-post .wk-content iframe[src*='youtube']:first-child {
  margin-top: 0;
}
.wk-article-post .wk-content iframe[src*='youtube']:last-child {
  margin-bottom: 0;
}
.wk-article-post .wk-content:not(:empty) iframe[src*='youtube'] {
  margin-top: 15px;
}
/*
 * -------------------------------------------------------------
 * Posts list
 * -------------------------------------------------------------
 */
.wk-list-posts .wk-card.uk-active .wk-panel-post {
  cursor: default;
}
.wk-list-posts .wk-card + .wk-card {
  margin: 0;
}
.wk-list-posts .wk-panel-post {
  cursor: pointer;
}
/*
 * -------------------------------------------------------------
 * Post Panel
 * -------------------------------------------------------------
 */
.wk-panel-post {
  height: 100%;
  width: 100%;
  cursor: default;
  position: relative;
  overflow: hidden;
  z-index: 10;
}
.wk-panel-post .wk-datetime {
  color: #ccc;
  font-size: 13px;
  display: inline-block;
}
.wk-panel-post .wk-title {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 19px;
  margin: 0 0 2px;
}
/*
 * -------------------------------------------------------------
 * Post Card
 * -------------------------------------------------------------
 */
.wk-card-post.uk-active .wk-title {
  font-size: 17px;
}
.wk-card-post.uk-active .wk-teaser:after {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, #000 100%);
  height: 75%;
  top: auto;
  bottom: 0;
}
.wk-card-post.uk-active .wk-content {
  background-color: #000;
  color: #eee;
  padding-top: 40px;
}
.wk-card-post.uk-active .wk-content img {
  height: auto !important;
  width: auto !important;
}
.wk-card-post.uk-active .wk-content em {
  color: inherit;
}
.wk-card-post.uk-active .wk-content iframe[src*='youtube'] {
  margin: 15px 0;
  max-width: 100%;
}
.wk-card-post.uk-active .wk-content iframe[src*='youtube']:first-child {
  margin-top: 0;
}
.wk-card-post.uk-active .wk-content iframe[src*='youtube']:last-child {
  margin-bottom: 0;
}
.wk-card-post.uk-active .wk-content:not(:empty) iframe[src*='youtube'] {
  margin-top: 15px;
}
.wk-card-post.uk-active .tm-footer {
  background-color: #000;
  border-color: #333;
}
/*
 * -------------------------------------------------------------
 * Review Page
 * -------------------------------------------------------------
 */
body.tm-page-review .tm-footer {
  background-color: #000;
  box-shadow: 0 1px 1px #333 inset;
}
/*
 * -------------------------------------------------------------
 * Review Article
 * -------------------------------------------------------------
 */
.wk-article-review {
  background-color: #000;
  min-height: 100%;
}
.wk-article-review .wk-card-header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  z-index: 105;
  width: 100%;
}
.wk-article-review .wk-teaser:after {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 100%);
  height: 75%;
  top: auto;
  bottom: 0;
}
.wk-article-review .wk-title {
  font-size: 17px;
}
.wk-article-review .wk-content {
  color: #eee;
  padding-top: 40px;
}
.wk-article-review .wk-content img {
  height: auto !important;
  width: auto !important;
}
.wk-article-review .wk-content em {
  color: inherit;
}
.wk-article-review .wk-content iframe[src*='youtube'] {
  margin: 15px 0;
  max-width: 100%;
}
.wk-article-review .wk-content iframe[src*='youtube']:first-child {
  margin-top: 0;
}
.wk-article-review .wk-content iframe[src*='youtube']:last-child {
  margin-bottom: 0;
}
.wk-article-review .wk-content:not(:empty) iframe[src*='youtube'] {
  margin-top: 15px;
}
/*
 * -------------------------------------------------------------
 * Reviews lists
 * -------------------------------------------------------------
 */
.wk-list-reviews .wk-card.uk-active .wk-panel-review {
  cursor: default;
}
.wk-list-reviews .wk-card + .wk-card {
  margin: 0;
}
.wk-list-reviews .wk-panel-review {
  cursor: pointer;
}
/*
 * -------------------------------------------------------------
 * Review Panel
 * -------------------------------------------------------------
 */
.wk-panel-review {
  height: 100%;
  width: 100%;
  cursor: default;
  position: relative;
  overflow: hidden;
  z-index: 10;
}
.wk-panel-review .wk-label {
  background: #fff;
  color: #111;
  font-size: 11px;
  border-radius: 1px;
  display: inline-block;
  padding: 3px 5px;
  line-height: 1;
  text-shadow: none;
}
.wk-panel-review .wk-label + .wk-label {
  margin-left: 8px;
}
.wk-panel-review .wk-author {
  border-radius: 10px;
  padding: 3px 8px;
}
.wk-panel-review .wk-title {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 17px;
  margin: 5px 0 0;
}
/*
 * -------------------------------------------------------------
 * Review Card
 * -------------------------------------------------------------
 */
.wk-card-review.uk-active .wk-title {
  font-size: 17px;
}
.wk-card-review.uk-active .wk-teaser:after {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, #000 100%);
  height: 75%;
  top: auto;
  bottom: 0;
}
.wk-card-review.uk-active .wk-content {
  background-color: #000;
  color: #eee;
  padding-top: 40px;
}
.wk-card-review.uk-active .wk-content img {
  height: auto !important;
  width: auto !important;
}
.wk-card-review.uk-active .wk-content em {
  color: inherit;
}
.wk-card-review.uk-active .wk-content iframe[src*='youtube'] {
  margin: 15px 0;
  max-width: 100%;
}
.wk-card-review.uk-active .wk-content iframe[src*='youtube']:first-child {
  margin-top: 0;
}
.wk-card-review.uk-active .wk-content iframe[src*='youtube']:last-child {
  margin-bottom: 0;
}
.wk-card-review.uk-active .wk-content:not(:empty) iframe[src*='youtube'] {
  margin-top: 15px;
}
.wk-card-review.uk-active .tm-footer {
  background-color: #000;
  border-color: #333;
}
/* required styles */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}
.leaflet-container {
  overflow: hidden;
}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-user-drag: none;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
}
.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
  max-width: none !important;
  max-height: none !important;
}
.leaflet-container.leaflet-touch-zoom {
  touch-action: pan-x pan-y;
}
.leaflet-container.leaflet-touch-drag {
  /* Fallback for FF which doesn't support pinch-zoom */
  touch-action: none;
  touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  touch-action: none;
}
.leaflet-container {
  -webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
  -webkit-filter: inherit;
          filter: inherit;
  visibility: hidden;
}
.leaflet-tile-loaded {
  visibility: inherit;
}
.leaflet-zoom-box {
  width: 0;
  height: 0;
  box-sizing: border-box;
  z-index: 800;
}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  -moz-user-select: none;
}
.leaflet-pane {
  z-index: 400;
}
.leaflet-tile-pane {
  z-index: 200;
}
.leaflet-overlay-pane {
  z-index: 400;
}
.leaflet-shadow-pane {
  z-index: 500;
}
.leaflet-marker-pane {
  z-index: 600;
}
.leaflet-tooltip-pane {
  z-index: 650;
}
.leaflet-popup-pane {
  z-index: 700;
}
.leaflet-map-pane canvas {
  z-index: 100;
}
.leaflet-map-pane svg {
  z-index: 200;
}
.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}
.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}
/* control positioning */
.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}
.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}
.leaflet-top {
  top: 0;
}
.leaflet-right {
  right: 0;
}
.leaflet-bottom {
  bottom: 0;
}
.leaflet-left {
  left: 0;
}
.leaflet-control {
  float: left;
  clear: both;
}
.leaflet-right .leaflet-control {
  float: right;
}
.leaflet-top .leaflet-control {
  margin-top: 10px;
}
.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}
.leaflet-left .leaflet-control {
  margin-left: 10px;
}
.leaflet-right .leaflet-control {
  margin-right: 10px;
}
/* zoom and fade animations */
.leaflet-fade-anim .leaflet-tile {
  will-change: opacity;
}
.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  transition: opacity 0.2s linear;
}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}
.leaflet-zoom-animated {
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
  will-change: transform;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
  transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1), -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  transition: none;
}
.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}
/* cursors */
.leaflet-interactive {
  cursor: pointer;
}
.leaflet-grab {
  cursor: -webkit-grab;
  cursor: grab;
}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
}
.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none;
}
.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive {
  pointer-events: visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}
/* visual tweaks */
.leaflet-container {
  background: #ddd;
  outline: 0;
}
.leaflet-container a {
  color: #0078A8;
}
.leaflet-container a.leaflet-active {
  outline: 2px solid orange;
}
.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5);
}
/* general typography */
.leaflet-container {
  font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
}
/* general toolbar styles */
.leaflet-bar {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
}
.leaflet-bar a,
.leaflet-bar a:hover {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black;
}
.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}
.leaflet-bar a:hover {
  background-color: #f4f4f4;
}
.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
}
.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
}
.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}
/* zoom control */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px 'Lucida Console', Monaco, monospace;
  text-indent: 1px;
}
.leaflet-touch .leaflet-control-zoom-in,
.leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px;
}
/* layers control */
.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px;
}
.leaflet-control-layers-toggle {
  width: 36px;
  height: 36px;
}
.leaflet-retina .leaflet-control-layers-toggle {
  background-size: 26px 26px;
}
.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}
.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff;
}
.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px;
}
.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}
.leaflet-control-layers label {
  display: block;
}
.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
}
/* Default icon URLs */
/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
}
.leaflet-control-attribution a {
  text-decoration: none;
}
.leaflet-control-attribution a:hover {
  text-decoration: underline;
}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
  font-size: 11px;
}
.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}
.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}
.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
}
.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  background-clip: padding-box;
}
/* popup */
.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px;
}
.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px;
}
.leaflet-popup-content {
  margin: 13px 19px;
  line-height: 1.4;
}
.leaflet-popup-content p {
  margin: 18px 0;
}
.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}
.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}
.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 4px 0 0;
  border: none;
  text-align: center;
  width: 18px;
  height: 14px;
  font: 16px/14px Tahoma, Verdana, sans-serif;
  color: #c3c3c3;
  text-decoration: none;
  font-weight: bold;
  background: transparent;
}
.leaflet-container a.leaflet-popup-close-button:hover {
  color: #999;
}
.leaflet-popup-scrolled {
  overflow: auto;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}
.leaflet-oldie .leaflet-popup-content-wrapper {
  zoom: 1;
}
.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}
.leaflet-oldie .leaflet-popup-tip-container {
  margin-top: -1px;
}
.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
}
/* div icon */
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}
/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.leaflet-tooltip.leaflet-clickable {
  cursor: pointer;
  pointer-events: auto;
}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}
/* Directions */
.leaflet-tooltip-bottom {
  margin-top: 6px;
}
.leaflet-tooltip-top {
  margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px;
}
.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff;
}
.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff;
}
.leaflet-tooltip-left {
  margin-left: -6px;
}
.leaflet-tooltip-right {
  margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px;
}
.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff;
}
.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff;
}
.select-currency {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  height: 240px;
}
.select-currency .caption-secondary {
  color: #A6A6A6;
  margin-bottom: auto;
  margin-top: 5px;
  font-size: 12px;
}
.select-currency button {
  border: 1px solid rgba(236, 28, 66, 0.15);
  color: #ec1c42;
  background: white;
  border-radius: 3px;
  margin-bottom: 10px;
  height: 44px;
}
.select-currency button:focus,
.select-currency button:hover {
  outline: none;
  border: 1px solid #ec1c42;
}
.select-currency button:not(:last-child) {
  margin-bottom: 5px;
}
.container-alfa {
  padding-right: 20px;
  padding-left: 20px;
  margin: 0 auto;
  box-sizing: border-box;
  font-style: normal;
  font-weight: normal;
}
.container-alfa .title-alfa {
  font-weight: bold;
  font-size: 35px;
  line-height: 120%;
  color: black;
  margin-bottom: 25px;
}
.container-alfa .promo-alfa {
  margin-bottom: 60px;
}
.container-alfa .promo-alfa__title {
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  color: #828C96;
  margin-bottom: 5px;
}
.container-alfa .promo-alfa__title + span {
  font-size: 16px;
  line-height: 21px;
  color: #000000;
}
.container-alfa .alfa-info {
  font-size: 16px;
  line-height: 21px;
  color: #000000;
  background: #F3F3F4;
  border-radius: 8px;
  padding: 10px 15px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.container-alfa .alfa-sub {
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  color: #828C96;
}
.container-alfa .kh-logo-a {
  padding-top: 20px;
  padding-bottom: 20px;
}
.container-alfa iframe {
  width: 100%;
}
.container-alfa .alfa-rules {
  margin-top: 5px;
  text-decoration: underline;
}
.container-alfa .alfa-rules a {
  color: #000000;
}
@media (max-width: 640px) {
  .container-alfa {
    padding-right: 12px;
    padding-left: 12px;
  }
  .container-alfa .title-alfa {
    font-size: 25px;
  }
  .container-alfa .alfa-sub {
    font-size: 12px;
  }
  .container-alfa .kh-logo-a {
    margin: auto;
  }
}
.wk-main-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  max-height: 530px;
}
@media (min-width: 415px) {
  .wk-main-banner {
    max-height: 850px;
  }
}
.wk-main-banner-button-link {
  position: absolute;
  bottom: 15px;
  right: 12px;
  width: 200px;
  height: 50px;
  padding: 0;
  font-family: MTSCompact, Roboto, 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 20px;
  line-height: 22px;
  font-weight: 500;
  color: #fff;
  border: 2px solid #ccc;
  border-radius: 8px;
  background: linear-gradient(91.54deg, rgba(255, 255, 255, 0.25) 0.82%, rgba(255, 255, 255, 0.125) 99.59%);
  cursor: pointer;
}
.kh-page-banner {
  max-height: 115px;
}
.wk-loyalty-page {
  font-family: MTSCompact, Roboto, 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}
.wk-loyalty-promo {
  background: linear-gradient(180deg, #C8AD7D 0%, #917540 101.94%);
  min-height: 700px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  margin-top: -55px;
  padding-top: 55px;
  padding-bottom: 0;
}
@media (min-width: 515px) {
  .wk-loyalty-promo {
    min-height: 720px;
  }
}
.wk-loyalty-promo-mastercard {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  color: #FFFFFF;
}
.wk-loyalty-promo-mastercard > div {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  margin-left: 12px;
}
.wk-loyalty-promo-mastercard > div > span {
  font-size: 11px;
  line-height: 130%;
  letter-spacing: -0.02em;
}
.wk-loyalty-promo-mastercard > div > strong {
  font-size: 16px;
  line-height: 115%;
}
.wk-loyalty-promo-title {
  margin-top: 25px;
}
.wk-loyalty-promo-title > h1 {
  color: #FFFFFF;
  font-size: 25px;
  line-height: 120%;
}
@media (min-width: 515px) {
  .wk-loyalty-promo-title > h1 {
    font-size: 36px;
  }
}
.wk-loyalty-promo-card {
  margin-top: 16px;
  border-radius: 10px;
  box-shadow: 0px 5px 12px -4px rgba(3, 2, 34, 0.6);
}
.wk-loyalty-promo-subtitle {
  margin-top: 32px;
}
.wk-loyalty-promo-subtitle > h2 {
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  color: #FFFFFF;
  padding-bottom: 12px;
}
@media (min-width: 515px) {
  .wk-loyalty-promo-subtitle > h2 {
    font-size: 28px;
    line-height: 100%;
  }
}
.wk-loyalty-promo-subtitle > p {
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  padding-bottom: 0;
}
@media (min-width: 515px) {
  .wk-loyalty-promo-subtitle > p {
    font-size: 20px;
    line-height: 100%;
  }
}
.wk-loyalty-info-title > span {
  font-weight: bold;
  font-size: 12px;
  line-height: 140%;
  color: #AA8E58;
  text-transform: uppercase;
}
@media (min-width: 515px) {
  .wk-loyalty-info-title > span {
    font-size: 18px;
  }
}
.wk-loyalty-info-title > h2 {
  font-weight: bold;
  font-size: 25px;
  line-height: 120%;
  color: #3F1C14;
}
.wk-loyalty-info-list {
  margin-top: 24px;
}
.wk-loyalty-info-list > h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  color: #340F06;
  opacity: 0.85;
}
.wk-loyalty-info-list > ul {
  padding-left: 17px;
  list-style: none;
}
.wk-loyalty-info-list li {
  margin-top: 12px;
  font-size: 16px;
  line-height: 19px;
  color: rgba(52, 15, 6, 0.75);
}
.wk-loyalty-info-list li:before {
  content: "\2022";
  width: 4px;
  color: #C8AD7D;
  font-weight: bold;
  display: inline-block;
  margin-left: -16px;
  margin-right: 12px;
}
.wk-loyalty-card {
  width: 100%;
  height: 218px;
  background: linear-gradient(258.94deg, #361518 -26.63%, #4D2225 69.92%);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  min-width: 318px;
}
.wk-loyalty-card:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(91.86deg, #DDC59A 1.44%, #AA8E58 51.66%);
  -webkit-clip-path: circle(57.4% at 21% 68%);
          clip-path: circle(57.4% at 21% 68%);
  position: absolute;
  z-index: 2;
}
.wk-loyalty-card:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #FFDFAF;
  -webkit-clip-path: circle(57.4% at 22% 68%);
          clip-path: circle(57.4% at 22% 68%);
  position: absolute;
  z-index: 1;
}
.wk-loyalty-card-button {
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 79px;
  height: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  outline: none;
  border: none;
  padding: 0;
  font-family: MTSCompact, Roboto, 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  cursor: pointer;
}
.wk-loyalty-card-button > a {
  color: #FFFFFF;
}
.wk-loyalty-card-prime-logo {
  position: absolute;
  top: 20px;
  right: 20px;
}
.wk-loyalty-card-kh-logo {
  position: absolute;
  top: 21px;
  left: 20px;
  z-index: 3;
}
.wk-loyalty-card-qr-block {
  position: absolute;
  width: 90px;
  height: 110px;
  left: 20px;
  bottom: 20px;
  background: #F6F5F3;
  border-radius: 3px;
  z-index: 3;
}
.wk-loyalty-card-qr-block > div {
  font-size: 10px;
  line-height: 120%;
  color: #340F06;
  text-align: center;
}
.wk-loyalty-card-describe {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  width: 150px;
  font-weight: 400;
  font-size: 11px;
  line-height: 13px;
  color: #FFFFFF;
  opacity: 0.7;
}
.wk-loyalty-card-qr-code {
  width: 80px;
  height: 80px;
  padding: 5px;
}
.wk-prime-page {
  background: #F6F5F4;
  position: relative;
  overflow: hidden;
  margin-top: -55px;
  padding-top: 55px;
}
.wk-prime-title {
  padding-top: 0;
  padding-bottom: 140px;
}
.wk-prime-title > h1 {
  font-weight: bold;
  font-size: 28px;
  line-height: 120%;
  color: #3F1C14;
  position: relative;
  z-index: 3;
}
.wk-prime-title > p {
  font-size: 14px;
  line-height: 130%;
  color: #340F06;
  padding-top: 20px;
  position: relative;
  z-index: 3;
}
@media (min-width: 480px) {
  .wk-prime-title {
    margin-left: 24px;
    margin-right: 24px;
  }
}
@media (min-width: 550px) {
  .wk-prime-title {
    margin-left: 48px;
    margin-right: 48px;
  }
}
.wk-prime-info {
  margin-left: 8px;
  margin-right: 8px;
  background: linear-gradient(211.18deg, #59281C 9.37%, #3F1C14 89.5%);
  border-radius: 15px;
  min-height: 704px;
  position: relative;
}
@media (min-width: 480px) {
  .wk-prime-info {
    margin-left: 24px;
    margin-right: 24px;
  }
}
@media (min-width: 550px) {
  .wk-prime-info {
    margin-left: 48px;
    margin-right: 48px;
  }
}
.wk-prime-info-card {
  padding-left: 17px;
  padding-right: 17px;
  padding-bottom: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: relative;
  z-index: 3;
}
.wk-prime-info-header {
  padding-top: 0;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  padding-bottom: 0;
}
.wk-prime-info-header > b {
  font-weight: bold;
  font-size: 12px;
  line-height: 140%;
  color: #AA8E58;
}
.wk-prime-info-header > h2 {
  font-weight: bold;
  font-size: 28px;
  line-height: 120%;
  color: #ffffff;
}
.wk-prime-info-header-line {
  width: 40%;
  height: 3px;
  background: #C8AD7D;
  margin-top: 20px;
}
.wk-prime-info-list {
  -webkit-transform: translateY(-20%);
          transform: translateY(-20%);
  margin-top: 10px;
  padding-bottom: 0;
}
.wk-prime-info-list > h3 {
  font-weight: bold;
  font-size: 20px;
  line-height: 115%;
  color: #ffffff;
}
.wk-prime-info-list > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wk-prime-info-list li {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  margin-top: 14px;
}
.wk-prime-info-list-icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  border-radius: 50%;
  border: 0.5px solid #C8AD7D;
}
.wk-prime-info-list-text {
  font-size: 14px;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.9);
  margin-left: 12px;
}
.wk-prime-info-button {
  -webkit-transform: translateY(-70%);
          transform: translateY(-70%);
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 480px) {
  .wk-prime-list {
    margin-left: 24px;
    margin-right: 24px;
  }
}
@media (min-width: 550px) {
  .wk-prime-list {
    margin-left: 48px;
    margin-right: 48px;
  }
}
.wk-prime-decoration-circle-1 {
  width: 503px;
  height: 503px;
  border-radius: 50%;
  opacity: 0.5;
  border: 10px solid #C8AD7D;
  position: absolute;
  left: -255px;
  top: -322px;
  z-index: 2;
}
.wk-prime-decoration-circle-2 {
  width: 487px;
  height: 487px;
  border-radius: 50%;
  opacity: 0.5;
  border: 2px solid #b0945f;
  position: absolute;
  left: 288px;
  top: 206px;
  z-index: 2;
}
@media (min-width: 480px) {
  .wk-prime-decoration-circle-2 {
    left: 360px;
  }
}
@media (min-width: 550px) {
  .wk-prime-decoration-circle-2 {
    left: 440px;
    top: 175px;
  }
}
html.vk-app::-webkit-scrollbar,
html.vk-app body::-webkit-scrollbar,
html.vk-app .wk-card-scrollbox::-webkit-scrollbar {
  height: 0 !important;
  width: 0 !important;
}
html.vk-app .tm-navbar > .uk-navbar-item.uk-width-expand:first-child {
  padding-left: 55px !important;
}
html.vk-app .tm-navbar > .uk-navbar-item.uk-width-expand:last-child {
  padding-right: 55px !important;
}
html.vk-app .wk-card-header.uk-collapsed {
  -webkit-transform: none !important;
          transform: none !important;
}
html.vk-app .tm-overlay-wrapper {
  overflow: auto;
}
html.vk-app-admin .wk-seance-body {
  padding-top: 165px;
}
html.vk-app-admin .wk-article-schedule {
  padding-top: 125px;
}
.wk-overlay-vkontakte {
  padding-top: 55px;
}
.wk-overlay-vkontakte .tm-titlebar.uk-navbar {
  background-color: #fff;
  box-shadow: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}
.wk-overlay-vkontakte .uk-navbar-toggle,
.wk-overlay-vkontakte .uk-navbar-item {
  color: #000;
}
html.ok-app::-webkit-scrollbar,
html.ok-app body::-webkit-scrollbar,
html.ok-app .wk-card-scrollbox::-webkit-scrollbar {
  height: 0 !important;
  width: 0 !important;
}
html.ok-app .tm-navbar > .uk-navbar-item.uk-width-expand:first-child {
  padding-left: 55px !important;
}
html.ok-app .tm-navbar > .uk-navbar-item.uk-width-expand:last-child {
  padding-right: 55px !important;
}
html.ok-app .wk-card-header.uk-collapsed {
  -webkit-transform: none !important;
          transform: none !important;
}
html.ok-app .tm-overlay-wrapper {
  overflow: auto;
}
html.ok-app .wk-seance-body {
  padding-top: 165px;
}
html.ok-app-admin .wk-article-schedule {
  padding-top: 125px;
}
.wk-overlay-odnoklassniki {
  padding-top: 55px;
}
.wk-overlay-odnoklassniki .tm-titlebar.uk-navbar {
  background-color: #fff;
  box-shadow: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}
.wk-overlay-odnoklassniki .uk-navbar-toggle,
.wk-overlay-odnoklassniki .uk-navbar-item {
  color: #000;
}
a.sidenav_default.sidenav_default {
  display: none;
}
/*
 * -------------------------------------------------------------
 * Layout
 * -------------------------------------------------------------
 */
html:not(.uk-device) {
  min-height: 100vh;
}
html:not(.uk-device) body,
html:not(.uk-device) .tm-wrapper {
  min-height: 100vh;
}
@media (max-device-width: 639px) {
  html {
    background-color: #fff;
  }
}
#root,
#app {
  min-height: 100%;
  position: relative;
  overflow-x: hidden;
}
.tm-page {
  overflow-x: hidden;
}
/*
 * Container
 */
.tm-container {
  background-color: rgba(0, 0, 0, 0);
  padding: 0;
  position: relative;
  max-width: 640px;
  width: 100%;
}
.tm-container .tm-wrapper {
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  min-height: 100%;
  min-width: 0;
  position: relative;
}
.banner-app-download {
  background-color: #0053c0;
  color: white;
  padding: 16px 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}
.banner-app-download > .download-btn-banner-app-download {
  background-color: #0080ff;
  color: white;
  min-width: 106px;
  width: 106px;
  height: 44px;
  border-radius: 4px;
  margin-right: 10px;
  text-transform: uppercase;
  font-size: 12px;
  text-align: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}
.banner-app-download > .desc-banner-app-download {
  margin-left: 10px;
  font-size: 12px;
  margin-right: 10;
  max-width: 300px;
}
.banner-app-download > .logo-banner-app-download {
  min-width: 44px;
  width: 44px;
  height: 44px;
  background-color: #0f85ff;
  color: white !important;
  margin-left: 12px;
  border-radius: 11px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}
.banner-app-download > .button-close {
  min-width: 26px;
  width: 26px;
  height: 26px;
  background-color: #1964c6;
  border-radius: 50%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  color: white;
  border: none;
  margin-left: 10px;
}
/*
 * Header
 */
.tm-header {
  box-sizing: border-box;
  min-height: 55px;
  position: absolute;
  top: 0;
  width: 100%;
  max-width: 640px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 999;
}
.tm-header:not(.uk-navbar-transparent) {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
.tm-header:not(.uk-navbar-transparent):not([class*='uk-background-']) {
  background-color: #0080ff;
}
.tm-header.uk-collapsed {
  position: fixed;
}
.tm-header.uk-attached {
  position: fixed;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: -webkit-transform 0.15s linear;
  transition: transform 0.15s linear;
  transition: transform 0.15s linear, -webkit-transform 0.15s linear;
}
.tm-header.uk-attached.uk-collapsed {
  -webkit-transform: translateY(-55px);
          transform: translateY(-55px);
}
.tm-header.uk-attached:not(.uk-collapsed) {
  box-shadow: none;
}
.tm-header *:not(.tm-close) + .tm-page-title {
  padding-left: 0 !important;
}
.tm-header .tm-navbar,
.tm-header .tm-headerbar,
.tm-header .tm-titlebar {
  box-shadow: none !important;
}
.tm-header .tm-navbar {
  padding-left: 10px;
  padding-right: 10px;
}
.tm-header .tm-headerbar {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
/*
 * Headerbar
 */
.tm-headerbar:not(.uk-navbar-transparent) {
  background-color: #0080ff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
/*
 * Titlebar
 */
.tm-titlebar:not(.uk-navbar-transparent) {
  background-color: #0080ff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
/*
 * Page title
 */
.tm-page-title {
  line-height: 55px;
  font-size: 16px;
  font-weight: 300;
  text-transform: none;
}
.tm-page-title:not(:first-child) {
  padding-left: 0;
}
/*
 * Navbar
 */
.tm-navbar:not(.uk-navbar-transparent) {
  background-color: #006be6;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
.tm-navbar .uk-navbar-nav > li > a {
  font-size: 12px;
  padding: 0;
}
.tm-navbar .uk-navbar-nav > li + li > a {
  padding-left: 12px;
}
.tm-navbar .tm-sidenav-toggle {
  padding: 0 12px;
  min-width: 55px;
}
.tm-navbar .tm-sidenav-toggle:after {
  content: '';
}
.tm-navbar .tm-sidenav-toggle svg {
  fill: currentColor;
}
/*
 * Main
 */
.tm-layout {
  padding: 32px 20px 40px;
}
.tm-layout > h1 {
  margin-bottom: 20px;
}
.tm-main {
  box-sizing: border-box;
  padding: 0;
  position: relative;
}
/*
 * Footer
 */
.tm-footer {
  background-color: rgba(239, 241, 243, 0);
  box-shadow: 0 0 1px rgba(226, 226, 226, 0) inset;
  bottom: 0;
  box-sizing: border-box;
  padding: 18px 0;
  position: absolute;
  width: 100%;
  max-width: 640px;
  z-index: 100;
}
/*
 * -------------------------------------------------------------
 * Not found page
 * -------------------------------------------------------------
 */
.tm-page-not-found .tm-wrapper {
  background: url(/images/404.png) 50% 100% no-repeat;
  background-size: cover;
}
/*
 * -------------------------------------------------------------
 * Off-canvas
 * -------------------------------------------------------------
 */
.uk-offcanvas-page .tm-container {
  box-shadow: none;
}
.uk-offcanvas-page .tm-wrapper {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
.uk-offcanvas-page .uk-offcanvas-content.uk-flex {
  display: block;
}
.tm-offcanvas-navbar .uk-offcanvas-bar {
  box-shadow: 3px 0 5px rgba(0, 0, 0, 0.3);
  background: linear-gradient(183.11deg, #aa884e 2.58%, rgba(220, 192, 145, 0) 40%);
  padding: 15px;
  background-color: #e6ddcf;
}
.tm-offcanvas-navbar .uk-nav li > a {
  padding: 12px 0;
  font-size: 14px;
  color: black;
}
.tm-offcanvas-navbar .wk-card-block {
  margin-bottom: 10px;
  width: 100%;
}
.tm-offcanvas-navbar .wk-card-block .uk-navbar-item {
  -webkit-box-pack: start;
          justify-content: flex-start;
  height: auto;
  padding: 0;
}
.tm-offcanvas-navbar .wk-loyalty-card {
  min-width: 240px;
  height: 150px;
}
.tm-offcanvas-navbar .wk-loyalty-card .wk-loyalty-card-kh-logo {
  width: 85px;
  height: 12px;
  top: 15px;
  left: 15px;
}
.tm-offcanvas-navbar .wk-loyalty-card .wk-loyalty-card-prime-logo {
  top: 15px;
  right: 12px;
  width: 11px;
  height: 40px;
}
.tm-offcanvas-navbar .wk-loyalty-card .wk-loyalty-card-qr-block {
  width: 70px;
  height: 82px;
  left: 15px;
  bottom: 15px;
}
.tm-offcanvas-navbar .wk-loyalty-card .wk-loyalty-card-qr-block > div {
  font-size: 9px;
  line-height: 120%;
  text-align: center;
}
.tm-offcanvas-navbar .wk-loyalty-card .wk-loyalty-card-qr-code {
  width: 60px;
  height: 60px;
  padding: 5px;
}
.uk-offcanvas-content > .tm-container {
  min-height: 100%;
}
/* Phone landscape and larger */
@media (min-width: 960px) {
  /*
     * Header + page overlay
     */
  .tm-header,
  .tm-page-overlay {
    max-width: 640px;
  }
}
/*
 * -------------------------------------------------------------
 * Device
 * -------------------------------------------------------------
 */
.uk-device {
  /*
     * Container
     */
  /* Desktop and larger */
  /*
     * Footer
     */
}
.uk-device.uk-offcanvas-page .tm-offcanvas-navbar .uk-offcanvas-bar {
  box-shadow: none;
}
.uk-device.uk-offcanvas-page .tm-offcanvas-navbar .uk-offcanvas-bar > * {
  position: relative;
  z-index: 2;
}
.uk-device.uk-offcanvas-page .uk-offcanvas-content {
  overflow: hidden;
  /* Tablet landscape and smaller */
}
@media (max-width: 639px) {
  .uk-device .tm-container {
    max-width: none;
  }
}
.uk-device .tm-footer {
  background-color: transparent;
  box-shadow: none;
  padding: 18px 0 12px;
}
.wk-app-banner {
  background: #101631 url(/static/assets/images/background.png) 50% 0 no-repeat;
  background-size: cover;
  box-sizing: border-box;
  width: 100%;
  height: 55px;
  z-index: 1000;
  position: relative;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: -webkit-transform 0.15s linear;
  transition: transform 0.15s linear;
  transition: transform 0.15s linear, -webkit-transform 0.15s linear;
}
.wk-app-banner .wk-app-banner-close {
  position: absolute;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
  top: 50%;
  left: 12px;
  height: 17px;
  line-height: 17px;
  width: 17px;
  text-align: center;
  margin-top: -8px;
}
.wk-app-banner .uk-button {
  background-color: #fff;
  color: #808080 !important;
  border-radius: 3px;
}
.wk-card-header .wk-app-banner {
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear;
}
.uk-collapsed .wk-app-banner {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
/*
 * -------------------------------------------------------------
 * Embedded app
 * -------------------------------------------------------------
 */
.tm-boxoffice .tm-overlay-wrapper {
  overflow: auto;
}
.tm-boxoffice .tm-overlay .tm-button-backward {
  display: none;
}
.tm-boxoffice .tm-overlay .tm-page-title {
  padding-left: 12px;
}
.kh-app-movie .wk-card-movie .tm-button-backward,
.tm-boxoffice .wk-card-movie .tm-button-backward,
.kh-app-movie .wk-article-movie .tm-button-backward,
.tm-boxoffice .wk-article-movie .tm-button-backward {
  display: none;
}
.kh-app-movie .wk-card-movie .wk-caption,
.tm-boxoffice .wk-card-movie .wk-caption,
.kh-app-movie .wk-article-movie .wk-caption,
.tm-boxoffice .wk-article-movie .wk-caption {
  left: 0 !important;
}
.no-backward.wk-card-movie .tm-button-backward,
.no-backward.wk-article-movie .tm-button-backward {
  display: none;
}
.no-backward.wk-card-movie .wk-caption,
.no-backward.wk-article-movie .wk-caption {
  left: 0 !important;
}
.kh-app-cinema .wk-card-cinema .tm-button-backward,
.tm-boxoffice .wk-card-cinema .tm-button-backward,
.kh-app-cinema .wk-article-cinema .tm-button-backward,
.tm-boxoffice .wk-article-cinema .tm-button-backward {
  display: none;
}
.kh-app-cinema .wk-card-cinema .wk-caption,
.tm-boxoffice .wk-card-cinema .wk-caption,
.kh-app-cinema .wk-article-cinema .wk-caption,
.tm-boxoffice .wk-article-cinema .wk-caption {
  margin-left: 0;
}
.no-backward.wk-card-cinema .wk-panel-cinema,
.no-backward.wk-article-cinema .wk-panel-cinema {
  padding-left: 12px !important;
}
.no-backward.wk-card-cinema .tm-button-backward,
.no-backward.wk-article-cinema .tm-button-backward {
  display: none;
}
.no-backward.wk-card-cinema .wk-caption,
.no-backward.wk-article-cinema .wk-caption {
  margin-left: 0;
}
.kh-app-seance .wk-seance-teaser .tm-button-backward,
.kh-app-seances .wk-seance-teaser .tm-button-backward,
.tm-boxoffice .wk-seance-teaser .tm-button-backward {
  display: none;
}
.kh-app-seance .wk-seance-teaser .wk-teaser,
.kh-app-seances .wk-seance-teaser .wk-teaser,
.tm-boxoffice .wk-seance-teaser .wk-teaser {
  margin-left: 15px;
}
.kh-app-seance .wk-seance-teaser .wk-seance-caption,
.kh-app-seances .wk-seance-teaser .wk-seance-caption,
.tm-boxoffice .wk-seance-teaser .wk-seance-caption {
  left: 10px;
}
.no-flexbox .uk-subnav,
.no-flexbox .uk-grid {
  display: block;
}
.is-msie .tm-container {
  min-width: 640px;
}
@font-face {
  font-family: 'anticon';
  src: url('//at.alicdn.com/t/font_1434092639_4910953.eot');
  /* IE9*/
  src: url('//at.alicdn.com/t/font_1434092639_4910953.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('//at.alicdn.com/t/font_1434092639_4910953.woff') format('woff'), /* chrome、firefox */ url('//at.alicdn.com/t/font_1434092639_4910953.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/ url('//at.alicdn.com/t/font_1434092639_4910953.svg#iconfont') format('svg');
  /* iOS 4.1- */
}
.rc-dropdown {
  position: absolute;
  left: -9999px;
  top: -9999px;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
}
.rc-dropdown-hidden {
  display: none;
}
.rc-dropdown .rc-menu {
  outline: none;
  position: relative;
  list-style-type: none;
  padding: 0;
  margin: 2px 0 2px;
  text-align: left;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 1px 5px #ccc;
  background-clip: padding-box;
  border: 1px solid #ccc;
}
.rc-dropdown .rc-menu > li {
  margin: 0;
  padding: 0;
}
.rc-dropdown .rc-menu:before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.01);
}
.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item {
  position: relative;
  display: block;
  padding: 7px 10px;
  clear: both;
  font-size: 12px;
  font-weight: normal;
  color: #666666;
  white-space: nowrap;
}
.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item:hover,
.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item-active,
.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item-selected {
  background-color: #ebfaff;
}
.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item-selected {
  position: relative;
}
.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item-selected:after {
  content: '\E613';
  font-family: 'anticon';
  font-weight: bold;
  position: absolute;
  top: 6px;
  right: 16px;
  color: #3CB8F0;
}
.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item-disabled {
  color: #ccc;
  cursor: not-allowed;
  pointer-events: none;
}
.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item-disabled:hover {
  color: #ccc;
  background-color: #fff;
  cursor: not-allowed;
}
.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item-divider {
  height: 1px;
  margin: 1px 0;
  overflow: hidden;
  background-color: #e5e5e5;
  line-height: 0;
}
.rc-dropdown-slide-up-enter,
.rc-dropdown-slide-up-appear {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  display: block !important;
  opacity: 0;
  -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
          animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.rc-dropdown-slide-up-leave {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  display: block !important;
  opacity: 1;
  -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
          animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.rc-dropdown-slide-up-enter.rc-dropdown-slide-up-enter-active.rc-dropdown-placement-bottomLeft,
.rc-dropdown-slide-up-appear.rc-dropdown-slide-up-appear-active.rc-dropdown-placement-bottomLeft,
.rc-dropdown-slide-up-enter.rc-dropdown-slide-up-enter-active.rc-dropdown-placement-bottomCenter,
.rc-dropdown-slide-up-appear.rc-dropdown-slide-up-appear-active.rc-dropdown-placement-bottomCenter,
.rc-dropdown-slide-up-enter.rc-dropdown-slide-up-enter-active.rc-dropdown-placement-bottomRight,
.rc-dropdown-slide-up-appear.rc-dropdown-slide-up-appear-active.rc-dropdown-placement-bottomRight {
  -webkit-animation-name: rcDropdownSlideUpIn;
          animation-name: rcDropdownSlideUpIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.rc-dropdown-slide-up-enter.rc-dropdown-slide-up-enter-active.rc-dropdown-placement-topLeft,
.rc-dropdown-slide-up-appear.rc-dropdown-slide-up-appear-active.rc-dropdown-placement-topLeft,
.rc-dropdown-slide-up-enter.rc-dropdown-slide-up-enter-active.rc-dropdown-placement-topCenter,
.rc-dropdown-slide-up-appear.rc-dropdown-slide-up-appear-active.rc-dropdown-placement-topCenter,
.rc-dropdown-slide-up-enter.rc-dropdown-slide-up-enter-active.rc-dropdown-placement-topRight,
.rc-dropdown-slide-up-appear.rc-dropdown-slide-up-appear-active.rc-dropdown-placement-topRight {
  -webkit-animation-name: rcDropdownSlideDownIn;
          animation-name: rcDropdownSlideDownIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.rc-dropdown-slide-up-leave.rc-dropdown-slide-up-leave-active.rc-dropdown-placement-bottomLeft,
.rc-dropdown-slide-up-leave.rc-dropdown-slide-up-leave-active.rc-dropdown-placement-bottomCenter,
.rc-dropdown-slide-up-leave.rc-dropdown-slide-up-leave-active.rc-dropdown-placement-bottomRight {
  -webkit-animation-name: rcDropdownSlideUpOut;
          animation-name: rcDropdownSlideUpOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.rc-dropdown-slide-up-leave.rc-dropdown-slide-up-leave-active.rc-dropdown-placement-topLeft,
.rc-dropdown-slide-up-leave.rc-dropdown-slide-up-leave-active.rc-dropdown-placement-topCenter,
.rc-dropdown-slide-up-leave.rc-dropdown-slide-up-leave-active.rc-dropdown-placement-topRight {
  -webkit-animation-name: rcDropdownSlideDownOut;
          animation-name: rcDropdownSlideDownOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
@-webkit-keyframes rcDropdownSlideUpIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes rcDropdownSlideUpIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@-webkit-keyframes rcDropdownSlideUpOut {
  0% {
    opacity: 1;
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    opacity: 0;
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}
@keyframes rcDropdownSlideUpOut {
  0% {
    opacity: 1;
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    opacity: 0;
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}
@-webkit-keyframes rcDropdownSlideDownIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes rcDropdownSlideDownIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@-webkit-keyframes rcDropdownSlideDownOut {
  0% {
    opacity: 1;
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    opacity: 0;
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}
@keyframes rcDropdownSlideDownOut {
  0% {
    opacity: 1;
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    opacity: 0;
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}
.rc-dropdown-arrow {
  position: absolute;
  border-width: 4px;
  border-color: transparent;
  box-shadow: 0 1px 5px #ccc;
  border-style: solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.rc-dropdown-show-arrow.rc-dropdown-placement-top,
.rc-dropdown-show-arrow.rc-dropdown-placement-topLeft,
.rc-dropdown-show-arrow.rc-dropdown-placement-topRight {
  padding-bottom: 6px;
}
.rc-dropdown-show-arrow.rc-dropdown-placement-bottom,
.rc-dropdown-show-arrow.rc-dropdown-placement-bottomLeft,
.rc-dropdown-show-arrow.rc-dropdown-placement-bottomRight {
  padding-top: 6px;
}
.rc-dropdown-placement-top .rc-dropdown-arrow,
.rc-dropdown-placement-topLeft .rc-dropdown-arrow,
.rc-dropdown-placement-topRight .rc-dropdown-arrow {
  bottom: 4px;
  border-top-color: white;
}
.rc-dropdown-placement-top .rc-dropdown-arrow {
  left: 50%;
}
.rc-dropdown-placement-topLeft .rc-dropdown-arrow {
  left: 15%;
}
.rc-dropdown-placement-topRight .rc-dropdown-arrow {
  right: 15%;
}
.rc-dropdown-placement-bottom .rc-dropdown-arrow,
.rc-dropdown-placement-bottomLeft .rc-dropdown-arrow,
.rc-dropdown-placement-bottomRight .rc-dropdown-arrow {
  top: 4px;
  border-bottom-color: white;
}
.rc-dropdown-placement-bottom .rc-dropdown-arrow {
  left: 50%;
}
.rc-dropdown-placement-bottomLeft .rc-dropdown-arrow {
  left: 15%;
}
.rc-dropdown-placement-bottomRight .rc-dropdown-arrow {
  right: 15%;
}
