/* BASICS */

.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: 300px;
  color: black;
  direction: ltr;
}

/* PADDING */

.CodeMirror-lines {
  padding: 4px 0; /* Vertical padding around content */
}
.CodeMirror pre {
  padding: 0 4px; /* Horizontal padding of content */
}

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  background-color: white; /* The little square between H and V scrollbars */
}

/* GUTTER */

.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
.CodeMirror-linenumbers {}
.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}

.CodeMirror-guttermarker { color: black; }
.CodeMirror-guttermarker-subtle { color: #999; }

/* CURSOR */

.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}
.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}
.cm-fat-cursor-mark {
  background-color: rgba(20, 255, 20, 0.5);
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
}
.cm-animate-fat-cursor {
  width: auto;
  border: 0;
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
  background-color: #7e7;
}
@-moz-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@-webkit-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}

/* Can style cursor different in overwrite (non-insert) mode */
.CodeMirror-overwrite .CodeMirror-cursor {}

.cm-tab { display: inline-block; text-decoration: inherit; }

.CodeMirror-rulers {
  position: absolute;
  left: 0; right: 0; top: -50px; bottom: -20px;
  overflow: hidden;
}
.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0; bottom: 0;
  position: absolute;
}

/* DEFAULT THEME */

.cm-s-default .cm-header {color: blue;}
.cm-s-default .cm-quote {color: #090;}
.cm-negative {color: #d44;}
.cm-positive {color: #292;}
.cm-header, .cm-strong {font-weight: bold;}
.cm-em {font-style: italic;}
.cm-link {text-decoration: underline;}
.cm-strikethrough {text-decoration: line-through;}

.cm-s-default .cm-keyword {color: #708;}
.cm-s-default .cm-atom {color: #219;}
.cm-s-default .cm-number {color: #164;}
.cm-s-default .cm-def {color: #00f;}
.cm-s-default .cm-variable,
.cm-s-default .cm-punctuation,
.cm-s-default .cm-property,
.cm-s-default .cm-operator {}
.cm-s-default .cm-variable-2 {color: #05a;}
.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}
.cm-s-default .cm-comment {color: #a50;}
.cm-s-default .cm-string {color: #a11;}
.cm-s-default .cm-string-2 {color: #f50;}
.cm-s-default .cm-meta {color: #555;}
.cm-s-default .cm-qualifier {color: #555;}
.cm-s-default .cm-builtin {color: #30a;}
.cm-s-default .cm-bracket {color: #997;}
.cm-s-default .cm-tag {color: #170;}
.cm-s-default .cm-attribute {color: #00c;}
.cm-s-default .cm-hr {color: #999;}
.cm-s-default .cm-link {color: #00c;}

.cm-s-default .cm-error {color: #f00;}
.cm-invalidchar {color: #f00;}

.CodeMirror-composing { border-bottom: 2px solid; }

/* Default styles for common addons */

div.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}
.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
.CodeMirror-activeline-background {background: #e8f2ff;}

/* STOP */

/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */

.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}

.CodeMirror-scroll {
  overflow: scroll !important; /* Things will break if this is overridden */
  /* 30px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -30px; margin-right: -30px;
  padding-bottom: 30px;
  height: 100%;
  outline: none; /* Prevent dragging from highlighting the element */
  position: relative;
}
.CodeMirror-sizer {
  position: relative;
  border-right: 30px solid transparent;
}

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actual scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
}
.CodeMirror-vscrollbar {
  right: 0; top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.CodeMirror-hscrollbar {
  bottom: 0; left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
  right: 0; bottom: 0;
}
.CodeMirror-gutter-filler {
  left: 0; bottom: 0;
}

.CodeMirror-gutters {
  position: absolute; left: 0; top: 0;
  min-height: 100%;
  z-index: 3;
}
.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -30px;
}
.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}
.CodeMirror-gutter-background {
  position: absolute;
  top: 0; bottom: 0;
  z-index: 4;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
.CodeMirror-gutter-wrapper ::selection { background-color: transparent }
.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }

.CodeMirror-lines {
  cursor: text;
  min-height: 1px; /* prevents collapsing before first draw */
}
.CodeMirror pre {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: contextual;
  font-variant-ligatures: contextual;
}
.CodeMirror-wrap pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}

.CodeMirror-linebackground {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 0;
}

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  padding: 0.1px; /* Force widget margins to stay inside of the container */
}

.CodeMirror-widget {}

.CodeMirror-rtl pre { direction: rtl; }

.CodeMirror-code {
  outline: none;
}

/* Force content-box sizing for the elements where we expect it */
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}
.CodeMirror-measure pre { position: static; }

div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}
div.CodeMirror-dragcursors {
  visibility: visible;
}

.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}

.CodeMirror-selected { background: #d9d9d9; }
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
.CodeMirror-crosshair { cursor: crosshair; }
.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }

.cm-searching {
  background-color: #ffa;
  background-color: rgba(255, 255, 0, .4);
}

/* Used to force a border model for a node */
.cm-force-border { padding-right: .1px; }

@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}

/* See issue #2901 */
.cm-tab-wrap-hack:after { content: ''; }

/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext { background: none; }

/*! UIkit 2.27.4 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: HTML editor
 ========================================================================== */
/* Sub-object `uk-htmleditor-navbar`
 ========================================================================== */
.uk-htmleditor-navbar {
  background: #eee;
}
/*
 * Micro clearfix
 */
.uk-htmleditor-navbar:before,
.uk-htmleditor-navbar:after {
  content: "";
  display: table;
}
.uk-htmleditor-navbar:after {
  clear: both;
}
/* Sub-object `uk-htmleditor-navbar-nav`
 ========================================================================== */
.uk-htmleditor-navbar-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
}
.uk-htmleditor-navbar-nav > li {
  float: left;
}
/*
 * 1. Dimensions
 * 2. Style
 */
.uk-htmleditor-navbar-nav > li > a {
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  /* 1 */
  height: 40px;
  padding: 0 15px;
  line-height: 40px;
  /* 2 */
  color: #444;
  font-size: 11px;
  cursor: pointer;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-htmleditor-navbar-nav > li:hover > a,
.uk-htmleditor-navbar-nav > li > a:focus {
  background-color: #f5f5f5;
  color: #444;
  outline: none;
  /* 2 */
}
/* OnClick */
.uk-htmleditor-navbar-nav > li > a:active {
  background-color: #ddd;
  color: #444;
}
/* Active */
.uk-htmleditor-navbar-nav > li.uk-active > a {
  background-color: #f5f5f5;
  color: #444;
}
/* Sub-object: `uk-htmleditor-navbar-flip`
 ========================================================================== */
.uk-htmleditor-navbar-flip {
  float: right;
}
/* Sub-object for special buttons
 ========================================================================== */
[data-mode='split'] .uk-htmleditor-button-code,
[data-mode='split'] .uk-htmleditor-button-preview {
  display: none;
}
/* Sub-object `uk-htmleditor-content`
 ========================================================================== */
.uk-htmleditor-content {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background: #fff;
}
/*
 * Micro clearfix
 */
.uk-htmleditor-content:before,
.uk-htmleditor-content:after {
  content: "";
  display: table;
}
.uk-htmleditor-content:after {
  clear: both;
}
/* Modifier `uk-htmleditor-fullscreen`
 ========================================================================== */
.uk-htmleditor-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
}
.uk-htmleditor-fullscreen .uk-htmleditor-content {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  bottom: 0;
}
.uk-htmleditor-fullscreen .uk-icon-expand:before {
  content: "\F066";
}
/* Sub-objects `uk-htmleditor-code` and `uk-htmleditor-preview`
 ========================================================================== */
.uk-htmleditor-code,
.uk-htmleditor-preview {
  box-sizing: border-box;
}
.uk-htmleditor-preview {
  padding: 20px;
  overflow-y: scroll;
  position: relative;
}
/*
 * Tab view
 */
[data-mode='tab'][data-active-tab='code'] .uk-htmleditor-preview,
[data-mode='tab'][data-active-tab='preview'] .uk-htmleditor-code {
  display: none;
}
/*
 * Split view
 */
[data-mode='split'] .uk-htmleditor-code,
[data-mode='split'] .uk-htmleditor-preview {
  float: left;
  width: 50%;
}
[data-mode='split'] .uk-htmleditor-code {
  border-right: 1px solid #eee;
}
/* Sub-object `uk-htmleditor-iframe`
 ========================================================================== */
.uk-htmleditor-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* CodeMirror modifications
 ========================================================================== */
.uk-htmleditor .CodeMirror {
  padding: 10px;
  box-sizing: border-box;
}

/*! UIkit 2.27.4 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Base
 ========================================================================== */
/*
 * 1. Normalize default `font-family` and set `font-size` to support `rem` units
 * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
 * 3. Style
 */
html {
  /* 1 */
  font: normal 14px / 20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 3 */
  background: #fff;
  color: #444;
}
/*
 * Removes default margin.
 */
body {
  margin: 0;
}
/* Links
 ========================================================================== */
/*
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}
/*
 * Improve readability of focused elements when they are also in an active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}
/*
 * Style
 */
a,
.uk-link {
  color: #07D;
  text-decoration: none;
  cursor: pointer;
}
a:hover,
.uk-link:hover {
  color: #059;
  text-decoration: underline;
}
/* Text-level semantics
 ========================================================================== */
/*
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/*
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/*
 * 1. Address odd `em`-unit font size rendering in all browsers.
 * 2. Consolas has a better baseline in running text compared to `Courier`
 */
:not(pre) > code,
:not(pre) > kbd,
:not(pre) > samp {
  /* 1 */
  font-size: 12px;
  /* 2 */
  font-family: Consolas, monospace, serif;
  /* 3 */
  color: #D05;
  white-space: nowrap;
}
/*
 * Emphasize
 */
em {
  color: #D05;
}
/*
 * Insert
 */
ins {
  background: #ffa;
  color: #444;
  text-decoration: none;
}
/*
 * Mark
 * Note: Addresses styling not present in IE 8/9.
 */
mark {
  background: #ffa;
  color: #444;
}
/*
 * Quote
 */
q {
  font-style: italic;
}
/*
 * Addresses inconsistent and variable 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. Sets a maximum width relative to the parent and auto scales the height
 * 2. Corrects `max-width` behavior if padding and border are used
 */
audio,
canvas,
img,
svg,
video {
  /* 1 */
  max-width: 100%;
  height: auto;
  /* 2 */
  box-sizing: border-box;
}
/*
 * Preserve original dimensions
 */
.uk-img-preserve,
.uk-img-preserve audio,
.uk-img-preserve canvas,
.uk-img-preserve img,
.uk-img-preserve svg,
.uk-img-preserve video {
  max-width: none;
}
/*
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}
/*
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Block elements
 ========================================================================== */
/*
 * Reset margin
 */
blockquote,
figure {
  margin: 0;
}
/*
 * Margins
 */
p,
ul,
ol,
dl,
blockquote,
pre,
address,
fieldset,
figure {
  margin: 0 0 15px 0;
}
* + p,
* + ul,
* + ol,
* + dl,
* + blockquote,
* + pre,
* + address,
* + fieldset,
* + figure {
  margin-top: 15px;
}
/* Headings
 ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  color: #444;
  text-transform: none;
}
/*
 * Margins
 */
* + h1,
* + h2,
* + h3,
* + h4,
* + h5,
* + h6 {
  margin-top: 25px;
}
/*
 * Sizes
 */
h1,
.uk-h1 {
  font-size: 36px;
  line-height: 42px;
}
h2,
.uk-h2 {
  font-size: 24px;
  line-height: 30px;
}
h3,
.uk-h3 {
  font-size: 18px;
  line-height: 24px;
}
h4,
.uk-h4 {
  font-size: 16px;
  line-height: 22px;
}
h5,
.uk-h5 {
  font-size: 14px;
  line-height: 20px;
}
h6,
.uk-h6 {
  font-size: 12px;
  line-height: 18px;
}
/* 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. Address differences between Firefox and other browsers.
 * 2. Style
 */
hr {
  /* 1 */
  box-sizing: content-box;
  height: 0;
  /* 2 */
  margin: 15px 0;
  border: 0;
  border-top: 1px solid #ddd;
}
/* Address
 ========================================================================== */
address {
  font-style: normal;
}
/* Blockquotes
 ========================================================================== */
blockquote {
  padding-left: 15px;
  border-left: 5px solid #ddd;
  font-size: 16px;
  line-height: 22px;
  font-style: italic;
}
/* Preformatted text
 ========================================================================== */
/*
 * 1. Contain overflow in all browsers.
 */
pre {
  padding: 10px;
  background: #f5f5f5;
  font: 12px / 18px Consolas, monospace, serif;
  color: #444;
  -moz-tab-size: 4;
  tab-size: 4;
  /* 1 */
  overflow: auto;
}
/* Selection pseudo-element
 ========================================================================== */
::-moz-selection {
  background: #39f;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #39f;
  color: #fff;
  text-shadow: none;
}
/* HTML5 elements
 ========================================================================== */
/*
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}
/*
 * Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}
/*
 * Prevent displaying `audio` without controls in Chrome, Safari and Opera
 */
audio:not([controls]) {
  display: none;
}
/*
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
/* Iframe
 ========================================================================== */
iframe {
  border: 0;
}
/* Fix viewport for IE10 snap mode
 ========================================================================== */
@media screen and (max-width: 400px) {
  @-ms-viewport {
    width: device-width;
  }
}
/* ========================================================================
   Component: Grid
 ========================================================================== */
/*
 * 1. Makes grid more robust so that it can be used with other block elements like lists
 */
.uk-grid {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * DEPRECATED
 * Micro clearfix
 * Can't use `table` because it creates a 1px gap when it becomes a flex item, only in Webkit
 */
.uk-grid:before,
.uk-grid:after {
  content: "";
  display: block;
  overflow: hidden;
}
.uk-grid:after {
  clear: both;
}
/*
 * Grid cell
 * 1. Space is allocated solely based on content dimensions
 * 2. Makes grid more robust so that it can be used with other block elements
 * 3. DEPRECATED Using `float` to support IE9
 */
.uk-grid > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  /* 2 */
  margin: 0;
  /* 3 */
  float: left;
}
/*
 * Remove margin from the last-child
 */
.uk-grid > * > :last-child {
  margin-bottom: 0;
}
/* Grid gutter
 ========================================================================== */
/*
 * Default gutter
 */
/* Horizontal */
.uk-grid {
  margin-left: -25px;
}
.uk-grid > * {
  padding-left: 25px;
}
/* Vertical */
.uk-grid + .uk-grid,
.uk-grid-margin,
.uk-grid > * > .uk-panel + .uk-panel {
  margin-top: 25px;
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  /* Horizontal */
  .uk-grid {
    margin-left: -35px;
  }
  .uk-grid > * {
    padding-left: 35px;
  }
  /* Vertical */
  .uk-grid + .uk-grid,
  .uk-grid-margin,
  .uk-grid > * > .uk-panel + .uk-panel {
    margin-top: 35px;
  }
}
/*
 * Collapse gutter
 */
/* Horizontal */
.uk-grid-collapse {
  margin-left: 0;
}
.uk-grid-collapse > * {
  padding-left: 0;
}
/* Vertical */
.uk-grid-collapse + .uk-grid-collapse,
.uk-grid-collapse > .uk-grid-margin,
.uk-grid-collapse > * > .uk-panel + .uk-panel {
  margin-top: 0;
}
/*
 * Small gutter
 */
/* Horizontal */
.uk-grid-small {
  margin-left: -10px;
}
.uk-grid-small > * {
  padding-left: 10px;
}
/* Vertical */
.uk-grid-small + .uk-grid-small,
.uk-grid-small > .uk-grid-margin,
.uk-grid-small > * > .uk-panel + .uk-panel {
  margin-top: 10px;
}
/*
 * Medium gutter
 */
/* Horizontal */
.uk-grid-medium {
  margin-left: -25px;
}
.uk-grid-medium > * {
  padding-left: 25px;
}
/* Vertical */
.uk-grid-medium + .uk-grid-medium,
.uk-grid-medium > .uk-grid-margin,
.uk-grid-medium > * > .uk-panel + .uk-panel {
  margin-top: 25px;
}
/*
 * Large gutter
 */
/* Large screen and bigger */
@media (min-width: 960px) {
  /* Horizontal */
  .uk-grid-large {
    margin-left: -35px;
  }
  .uk-grid-large > * {
    padding-left: 35px;
  }
  /* Vertical */
  .uk-grid-large + .uk-grid-large,
  .uk-grid-large-margin,
  .uk-grid-large > * > .uk-panel + .uk-panel {
    margin-top: 35px;
  }
}
/* Extra Large screens */
@media (min-width: 1220px) {
  /* Horizontal */
  .uk-grid-large {
    margin-left: -50px;
  }
  .uk-grid-large > * {
    padding-left: 50px;
  }
  /* Vertical */
  .uk-grid-large + .uk-grid-large,
  .uk-grid-large-margin,
  .uk-grid-large > * > .uk-panel + .uk-panel {
    margin-top: 50px;
  }
}
/* Modifier: `uk-grid-divider`
 ========================================================================== */
/*
 * Horizontal divider
 * Only works with the default gutter. Does not work with gutter collapse, small or large.
 * Does not work with `uk-push-*`, `uk-pull-*` and not if the columns float into the next row.
 */
.uk-grid-divider:not(:empty) {
  margin-left: -25px;
  margin-right: -25px;
}
.uk-grid-divider > * {
  padding-left: 25px;
  padding-right: 25px;
}
.uk-grid-divider > [class*='uk-width-1-']:not(.uk-width-1-1):nth-child(n+2),
.uk-grid-divider > [class*='uk-width-2-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-3-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-4-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-5-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-6-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-7-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-8-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-9-']:nth-child(n+2) {
  border-left: 1px solid #ddd;
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-grid-divider > [class*='uk-width-medium-']:not(.uk-width-medium-1-1):nth-child(n+2) {
    border-left: 1px solid #ddd;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .uk-grid-divider > [class*='uk-width-large-']:not(.uk-width-large-1-1):nth-child(n+2) {
    border-left: 1px solid #ddd;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  /*
     * Large gutter
     */
  .uk-grid-divider:not(:empty) {
    margin-left: -35px;
    margin-right: -35px;
  }
  .uk-grid-divider > * {
    padding-left: 35px;
    padding-right: 35px;
  }
  .uk-grid-divider:empty {
    margin-top: 35px;
    margin-bottom: 35px;
  }
}
/*
 * Vertical divider
 */
.uk-grid-divider:empty {
  margin-top: 25px;
  margin-bottom: 25px;
  border-top: 1px solid #ddd;
}
/* Match panels in grids
 ========================================================================== */
/*
 * 1. Behave like a block element
 */
.uk-grid-match > * {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /* 1 */
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.uk-grid-match > * > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  box-sizing: border-box;
  width: 100%;
}
/* Even grid cell widths
 ========================================================================== */
[class*='uk-grid-width'] > * {
  box-sizing: border-box;
  width: 100%;
}
.uk-grid-width-1-2 > * {
  width: 50%;
}
.uk-grid-width-1-3 > * {
  width: 33.333%;
}
.uk-grid-width-1-4 > * {
  width: 25%;
}
.uk-grid-width-1-5 > * {
  width: 20%;
}
.uk-grid-width-1-6 > * {
  width: 16.666%;
}
.uk-grid-width-1-10 > * {
  width: 10%;
}
.uk-grid-width-auto > * {
  width: auto;
}
/* Phone landscape and bigger */
@media (min-width: 480px) {
  .uk-grid-width-small-1-1 > * {
    width: 100%;
  }
  .uk-grid-width-small-1-2 > * {
    width: 50%;
  }
  .uk-grid-width-small-1-3 > * {
    width: 33.333%;
  }
  .uk-grid-width-small-1-4 > * {
    width: 25%;
  }
  .uk-grid-width-small-1-5 > * {
    width: 20%;
  }
  .uk-grid-width-small-1-6 > * {
    width: 16.666%;
  }
  .uk-grid-width-small-1-10 > * {
    width: 10%;
  }
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-grid-width-medium-1-1 > * {
    width: 100%;
  }
  .uk-grid-width-medium-1-2 > * {
    width: 50%;
  }
  .uk-grid-width-medium-1-3 > * {
    width: 33.333%;
  }
  .uk-grid-width-medium-1-4 > * {
    width: 25%;
  }
  .uk-grid-width-medium-1-5 > * {
    width: 20%;
  }
  .uk-grid-width-medium-1-6 > * {
    width: 16.666%;
  }
  .uk-grid-width-medium-1-10 > * {
    width: 10%;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .uk-grid-width-large-1-1 > * {
    width: 100%;
  }
  .uk-grid-width-large-1-2 > * {
    width: 50%;
  }
  .uk-grid-width-large-1-3 > * {
    width: 33.333%;
  }
  .uk-grid-width-large-1-4 > * {
    width: 25%;
  }
  .uk-grid-width-large-1-5 > * {
    width: 20%;
  }
  .uk-grid-width-large-1-6 > * {
    width: 16.666%;
  }
  .uk-grid-width-large-1-10 > * {
    width: 10%;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .uk-grid-width-xlarge-1-1 > * {
    width: 100%;
  }
  .uk-grid-width-xlarge-1-2 > * {
    width: 50%;
  }
  .uk-grid-width-xlarge-1-3 > * {
    width: 33.333%;
  }
  .uk-grid-width-xlarge-1-4 > * {
    width: 25%;
  }
  .uk-grid-width-xlarge-1-5 > * {
    width: 20%;
  }
  .uk-grid-width-xlarge-1-6 > * {
    width: 16.666%;
  }
  .uk-grid-width-xlarge-1-10 > * {
    width: 10%;
  }
}
/* Sub-objects: `uk-width-*`
 ========================================================================== */
[class*='uk-width'] {
  box-sizing: border-box;
  width: 100%;
}
/*
 * Widths
 */
/* Whole */
.uk-width-1-1 {
  width: 100%;
}
/* Halves */
.uk-width-1-2,
.uk-width-2-4,
.uk-width-3-6,
.uk-width-5-10 {
  width: 50%;
}
/* Thirds */
.uk-width-1-3,
.uk-width-2-6 {
  width: 33.333%;
}
.uk-width-2-3,
.uk-width-4-6 {
  width: 66.666%;
}
/* Quarters */
.uk-width-1-4 {
  width: 25%;
}
.uk-width-3-4 {
  width: 75%;
}
/* Fifths */
.uk-width-1-5,
.uk-width-2-10 {
  width: 20%;
}
.uk-width-2-5,
.uk-width-4-10 {
  width: 40%;
}
.uk-width-3-5,
.uk-width-6-10 {
  width: 60%;
}
.uk-width-4-5,
.uk-width-8-10 {
  width: 80%;
}
/* Sixths */
.uk-width-1-6 {
  width: 16.666%;
}
.uk-width-5-6 {
  width: 83.333%;
}
/* Tenths */
.uk-width-1-10 {
  width: 10%;
}
.uk-width-3-10 {
  width: 30%;
}
.uk-width-7-10 {
  width: 70%;
}
.uk-width-9-10 {
  width: 90%;
}
/* Phone landscape and bigger */
@media (min-width: 480px) {
  /* Whole */
  .uk-width-small-1-1 {
    width: 100%;
  }
  /* Halves */
  .uk-width-small-1-2,
  .uk-width-small-2-4,
  .uk-width-small-3-6,
  .uk-width-small-5-10 {
    width: 50%;
  }
  /* Thirds */
  .uk-width-small-1-3,
  .uk-width-small-2-6 {
    width: 33.333%;
  }
  .uk-width-small-2-3,
  .uk-width-small-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .uk-width-small-1-4 {
    width: 25%;
  }
  .uk-width-small-3-4 {
    width: 75%;
  }
  /* Fifths */
  .uk-width-small-1-5,
  .uk-width-small-2-10 {
    width: 20%;
  }
  .uk-width-small-2-5,
  .uk-width-small-4-10 {
    width: 40%;
  }
  .uk-width-small-3-5,
  .uk-width-small-6-10 {
    width: 60%;
  }
  .uk-width-small-4-5,
  .uk-width-small-8-10 {
    width: 80%;
  }
  /* Sixths */
  .uk-width-small-1-6 {
    width: 16.666%;
  }
  .uk-width-small-5-6 {
    width: 83.333%;
  }
  /* Tenths */
  .uk-width-small-1-10 {
    width: 10%;
  }
  .uk-width-small-3-10 {
    width: 30%;
  }
  .uk-width-small-7-10 {
    width: 70%;
  }
  .uk-width-small-9-10 {
    width: 90%;
  }
}
/* Tablet and bigger */
@media (min-width: 768px) {
  /* Whole */
  .uk-width-medium-1-1 {
    width: 100%;
  }
  /* Halves */
  .uk-width-medium-1-2,
  .uk-width-medium-2-4,
  .uk-width-medium-3-6,
  .uk-width-medium-5-10 {
    width: 50%;
  }
  /* Thirds */
  .uk-width-medium-1-3,
  .uk-width-medium-2-6 {
    width: 33.333%;
  }
  .uk-width-medium-2-3,
  .uk-width-medium-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .uk-width-medium-1-4 {
    width: 25%;
  }
  .uk-width-medium-3-4 {
    width: 75%;
  }
  /* Fifths */
  .uk-width-medium-1-5,
  .uk-width-medium-2-10 {
    width: 20%;
  }
  .uk-width-medium-2-5,
  .uk-width-medium-4-10 {
    width: 40%;
  }
  .uk-width-medium-3-5,
  .uk-width-medium-6-10 {
    width: 60%;
  }
  .uk-width-medium-4-5,
  .uk-width-medium-8-10 {
    width: 80%;
  }
  /* Sixths */
  .uk-width-medium-1-6 {
    width: 16.666%;
  }
  .uk-width-medium-5-6 {
    width: 83.333%;
  }
  /* Tenths */
  .uk-width-medium-1-10 {
    width: 10%;
  }
  .uk-width-medium-3-10 {
    width: 30%;
  }
  .uk-width-medium-7-10 {
    width: 70%;
  }
  .uk-width-medium-9-10 {
    width: 90%;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  /* Whole */
  .uk-width-large-1-1 {
    width: 100%;
  }
  /* Halves */
  .uk-width-large-1-2,
  .uk-width-large-2-4,
  .uk-width-large-3-6,
  .uk-width-large-5-10 {
    width: 50%;
  }
  /* Thirds */
  .uk-width-large-1-3,
  .uk-width-large-2-6 {
    width: 33.333%;
  }
  .uk-width-large-2-3,
  .uk-width-large-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .uk-width-large-1-4 {
    width: 25%;
  }
  .uk-width-large-3-4 {
    width: 75%;
  }
  /* Fifths */
  .uk-width-large-1-5,
  .uk-width-large-2-10 {
    width: 20%;
  }
  .uk-width-large-2-5,
  .uk-width-large-4-10 {
    width: 40%;
  }
  .uk-width-large-3-5,
  .uk-width-large-6-10 {
    width: 60%;
  }
  .uk-width-large-4-5,
  .uk-width-large-8-10 {
    width: 80%;
  }
  /* Sixths */
  .uk-width-large-1-6 {
    width: 16.666%;
  }
  .uk-width-large-5-6 {
    width: 83.333%;
  }
  /* Tenths */
  .uk-width-large-1-10 {
    width: 10%;
  }
  .uk-width-large-3-10 {
    width: 30%;
  }
  .uk-width-large-7-10 {
    width: 70%;
  }
  .uk-width-large-9-10 {
    width: 90%;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  /* Whole */
  .uk-width-xlarge-1-1 {
    width: 100%;
  }
  /* Halves */
  .uk-width-xlarge-1-2,
  .uk-width-xlarge-2-4,
  .uk-width-xlarge-3-6,
  .uk-width-xlarge-5-10 {
    width: 50%;
  }
  /* Thirds */
  .uk-width-xlarge-1-3,
  .uk-width-xlarge-2-6 {
    width: 33.333%;
  }
  .uk-width-xlarge-2-3,
  .uk-width-xlarge-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .uk-width-xlarge-1-4 {
    width: 25%;
  }
  .uk-width-xlarge-3-4 {
    width: 75%;
  }
  /* Fifths */
  .uk-width-xlarge-1-5,
  .uk-width-xlarge-2-10 {
    width: 20%;
  }
  .uk-width-xlarge-2-5,
  .uk-width-xlarge-4-10 {
    width: 40%;
  }
  .uk-width-xlarge-3-5,
  .uk-width-xlarge-6-10 {
    width: 60%;
  }
  .uk-width-xlarge-4-5,
  .uk-width-xlarge-8-10 {
    width: 80%;
  }
  /* Sixths */
  .uk-width-xlarge-1-6 {
    width: 16.666%;
  }
  .uk-width-xlarge-5-6 {
    width: 83.333%;
  }
  /* Tenths */
  .uk-width-xlarge-1-10 {
    width: 10%;
  }
  .uk-width-xlarge-3-10 {
    width: 30%;
  }
  .uk-width-xlarge-7-10 {
    width: 70%;
  }
  .uk-width-xlarge-9-10 {
    width: 90%;
  }
}
/* Sub-object: `uk-push-*` and `uk-pull-*`
 ========================================================================== */
/*
 * Source ordering
 * Works only with `uk-width-medium-*`
 */
/* Tablet and bigger */
@media (min-width: 768px) {
  [class*='uk-push-'],
  [class*='uk-pull-'] {
    position: relative;
  }
  /*
     * Push
     */
  /* Halves */
  .uk-push-1-2,
  .uk-push-2-4,
  .uk-push-3-6,
  .uk-push-5-10 {
    left: 50%;
  }
  /* Thirds */
  .uk-push-1-3,
  .uk-push-2-6 {
    left: 33.333%;
  }
  .uk-push-2-3,
  .uk-push-4-6 {
    left: 66.666%;
  }
  /* Quarters */
  .uk-push-1-4 {
    left: 25%;
  }
  .uk-push-3-4 {
    left: 75%;
  }
  /* Fifths */
  .uk-push-1-5,
  .uk-push-2-10 {
    left: 20%;
  }
  .uk-push-2-5,
  .uk-push-4-10 {
    left: 40%;
  }
  .uk-push-3-5,
  .uk-push-6-10 {
    left: 60%;
  }
  .uk-push-4-5,
  .uk-push-8-10 {
    left: 80%;
  }
  /* Sixths */
  .uk-push-1-6 {
    left: 16.666%;
  }
  .uk-push-5-6 {
    left: 83.333%;
  }
  /* Tenths */
  .uk-push-1-10 {
    left: 10%;
  }
  .uk-push-3-10 {
    left: 30%;
  }
  .uk-push-7-10 {
    left: 70%;
  }
  .uk-push-9-10 {
    left: 90%;
  }
  /*
     * Pull
     */
  /* Halves */
  .uk-pull-1-2,
  .uk-pull-2-4,
  .uk-pull-3-6,
  .uk-pull-5-10 {
    left: -50%;
  }
  /* Thirds */
  .uk-pull-1-3,
  .uk-pull-2-6 {
    left: -33.333%;
  }
  .uk-pull-2-3,
  .uk-pull-4-6 {
    left: -66.666%;
  }
  /* Quarters */
  .uk-pull-1-4 {
    left: -25%;
  }
  .uk-pull-3-4 {
    left: -75%;
  }
  /* Fifths */
  .uk-pull-1-5,
  .uk-pull-2-10 {
    left: -20%;
  }
  .uk-pull-2-5,
  .uk-pull-4-10 {
    left: -40%;
  }
  .uk-pull-3-5,
  .uk-pull-6-10 {
    left: -60%;
  }
  .uk-pull-4-5,
  .uk-pull-8-10 {
    left: -80%;
  }
  /* Sixths */
  .uk-pull-1-6 {
    left: -16.666%;
  }
  .uk-pull-5-6 {
    left: -83.333%;
  }
  /* Tenths */
  .uk-pull-1-10 {
    left: -10%;
  }
  .uk-pull-3-10 {
    left: -30%;
  }
  .uk-pull-7-10 {
    left: -70%;
  }
  .uk-pull-9-10 {
    left: -90%;
  }
}
/* ========================================================================
   Component: Panel
 ========================================================================== */
/*
 * 1. Needed for `a` elements
 * 2. Create position context for badges
 */
.uk-panel {
  /* 1 */
  display: block;
  /* 2 */
  position: relative;
}
/*
 * Allow panels to be anchors
 */
.uk-panel,
.uk-panel:hover {
  text-decoration: none;
}
/*
 * Micro clearfix to make panels more robust
 */
.uk-panel:before,
.uk-panel:after {
  content: "";
  display: table;
}
.uk-panel:after {
  clear: both;
}
/*
 * Remove margin from the last-child if not `uk-widget-title`
 */
.uk-panel > :not(.uk-panel-title):last-child {
  margin-bottom: 0;
}
/* Sub-object: `uk-panel-title`
 ========================================================================== */
.uk-panel-title {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 24px;
  font-weight: normal;
  text-transform: none;
  color: #444;
}
/* Sub-object: `uk-panel-badge`
 ========================================================================== */
.uk-panel-badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
/* Sub-object: `uk-panel-teaser`
 ========================================================================== */
.uk-panel-teaser {
  margin-bottom: 15px;
}
/* Sub-object: `uk-panel-body`
 ========================================================================== */
.uk-panel-body {
  padding: 15px;
}
/* Modifier: `uk-panel-box`
 ========================================================================== */
.uk-panel-box {
  padding: 15px;
  background: #f5f5f5;
  color: #444;
}
.uk-panel-box-hover:hover {
  color: #444;
}
.uk-panel-box .uk-panel-title {
  color: #444;
}
.uk-panel-box .uk-panel-badge {
  top: 10px;
  right: 10px;
}
.uk-panel-box > .uk-panel-teaser {
  margin-top: -15px;
  margin-left: -15px;
  margin-right: -15px;
}
/*
 * Nav in panel
 */
.uk-panel-box > .uk-nav-side {
  margin: 0 -15px;
}
/*
 * Sub-modifier: `uk-panel-box-primary`
 */
.uk-panel-box-primary {
  background-color: #ebf7fd;
  color: #2d7091;
}
.uk-panel-box-primary-hover:hover {
  color: #2d7091;
}
.uk-panel-box-primary .uk-panel-title {
  color: #2d7091;
}
/*
 * Sub-modifier: `uk-panel-box-secondary`
 */
.uk-panel-box-secondary {
  background-color: #eee;
  color: #444;
}
.uk-panel-box-secondary-hover:hover {
  color: #444;
}
.uk-panel-box-secondary .uk-panel-title {
  color: #444;
}
/* Modifier: `uk-panel-hover`
 ========================================================================== */
.uk-panel-hover {
  padding: 15px;
  color: #444;
}
.uk-panel-hover:hover {
  background: #f5f5f5;
  color: #444;
}
.uk-panel-hover .uk-panel-badge {
  top: 10px;
  right: 10px;
}
.uk-panel-hover > .uk-panel-teaser {
  margin-top: -15px;
  margin-left: -15px;
  margin-right: -15px;
}
/* Modifier: `uk-panel-header`
 ========================================================================== */
.uk-panel-header .uk-panel-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  color: #444;
}
/* Modifier: `uk-panel-space`
 ========================================================================== */
.uk-panel-space {
  padding: 30px;
}
.uk-panel-space .uk-panel-badge {
  top: 30px;
  right: 30px;
}
/* Modifier: `uk-panel-divider`
 ========================================================================== */
.uk-panel + .uk-panel-divider {
  margin-top: 50px !important;
}
.uk-panel + .uk-panel-divider:before {
  content: "";
  display: block;
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  border-top: 1px solid #ddd;
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .uk-panel + .uk-panel-divider {
    margin-top: 70px !important;
  }
  .uk-panel + .uk-panel-divider:before {
    top: -35px;
  }
}
/* ========================================================================
   Component: Block
 ========================================================================== */
.uk-block {
  position: relative;
  box-sizing: border-box;
  padding-top: 20px;
  padding-bottom: 20px;
}
/* Phone landscape and bigger */
@media (min-width: 768px) {
  .uk-block {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/*
 * Micro clearfix to make blocks more robust
 */
.uk-block:before,
.uk-block:after {
  content: "";
  display: table;
}
.uk-block:after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.uk-block > :last-child {
  margin-bottom: 0;
}
/* Padding Modifier
 ========================================================================== */
/*
 * Large padding
 */
.uk-block-large {
  padding-top: 20px;
  padding-bottom: 20px;
}
/* Tablets and bigger */
@media (min-width: 768px) {
  .uk-block-large {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .uk-block-large {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
/* Color Modifier
 ========================================================================== */
/*
 * Default
 */
.uk-block-default {
  background: #fff;
}
/*
 * Muted
 */
.uk-block-muted {
  background: #f9f9f9;
}
/*
 * Primary
 */
.uk-block-primary {
  background: #00a8e6;
}
/*
 * Secondary
 */
.uk-block-secondary {
  background: #222;
}
/*
     * Adjust padding between equal colored blocks
     */
.uk-block-default + .uk-block-default,
.uk-block-muted + .uk-block-muted,
.uk-block-primary + .uk-block-primary,
.uk-block-secondary + .uk-block-secondary {
  padding-top: 0;
}
/* ========================================================================
   Component: Article
 ========================================================================== */
/*
 * Micro clearfix to make articles more robust
 */
.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;
}
/*
 * Vertical gutter for articles
 */
.uk-article + .uk-article {
  margin-top: 25px;
}
/* Sub-object `uk-article-title`
 ========================================================================== */
.uk-article-title {
  font-size: 36px;
  line-height: 42px;
  font-weight: normal;
  text-transform: none;
}
.uk-article-title a {
  color: inherit;
  text-decoration: none;
}
/* Sub-object `uk-article-meta`
 ========================================================================== */
.uk-article-meta {
  font-size: 12px;
  line-height: 18px;
  color: #999;
}
/* Sub-object `uk-article-lead`
 ========================================================================== */
.uk-article-lead {
  color: #444;
  font-size: 18px;
  line-height: 24px;
  font-weight: normal;
}
/* Sub-object `uk-article-divider`
 ========================================================================== */
.uk-article-divider {
  margin-bottom: 25px;
  border-color: #ddd;
}
* + .uk-article-divider {
  margin-top: 25px;
}
/* ========================================================================
   Component: Comment
 ========================================================================== */
/* Sub-object `uk-comment-header`
 ========================================================================== */
.uk-comment-header {
  margin-bottom: 15px;
}
/*
 * Micro clearfix
 */
.uk-comment-header:before,
.uk-comment-header:after {
  content: "";
  display: table;
}
.uk-comment-header:after {
  clear: both;
}
/* Sub-object `uk-comment-avatar`
 ========================================================================== */
.uk-comment-avatar {
  margin-right: 15px;
  float: left;
}
/* Sub-object `uk-comment-title`
 ========================================================================== */
.uk-comment-title {
  margin: 5px 0 0 0;
  font-size: 16px;
  line-height: 22px;
}
/* Sub-object `uk-comment-meta`
 ========================================================================== */
.uk-comment-meta {
  margin: 2px 0 0 0;
  font-size: 11px;
  line-height: 16px;
  color: #999;
}
/* Sub-object `uk-comment-body`
 ========================================================================== */
/*
 * Remove margin from the last-child
 */
.uk-comment-body > :last-child {
  margin-bottom: 0;
}
/* Sub-object `uk-comment-list`
 ========================================================================== */
.uk-comment-list {
  padding: 0;
  list-style: none;
}
.uk-comment-list .uk-comment + ul {
  margin: 15px 0 0 0;
  list-style: none;
}
.uk-comment-list > li:nth-child(n+2),
.uk-comment-list .uk-comment + ul > li:nth-child(n+2) {
  margin-top: 15px;
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-comment-list .uk-comment + ul {
    padding-left: 100px;
  }
}
/* Modifier `uk-comment-primary`
 ========================================================================== */
/* ========================================================================
   Component: Cover
 ========================================================================== */
/*
 * Background image always covers and centers its element
 */
.uk-cover-background {
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
/*
 * Emulates image cover, works with video and image elements
 * 1. Parent container which clips resized object
 * 2. Resizes the object to always covers its container
 * 3. Reset the responsive image CSS
 * 4. Center object
 */
/* 1 */
.uk-cover {
  overflow: hidden;
}
.uk-cover-object {
  /* 2 */
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  /* 3 */
  max-width: none;
  /* 4 */
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/*
 * To center iframes use `data-uk-cover` JavaScript
 */
[data-uk-cover] {
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/* ========================================================================
   Component: Nav
 ========================================================================== */
.uk-nav,
.uk-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * Items
 */
.uk-nav li > a {
  display: block;
  text-decoration: none;
}
.uk-nav > li > a {
  padding: 5px 15px;
}
/*
 * Nested items
 */
.uk-nav ul {
  padding-left: 15px;
}
.uk-nav ul a {
  padding: 2px 0;
}
/*
 * Item subtitle
 */
.uk-nav li > a > div {
  font-size: 12px;
  line-height: 18px;
}
/* Sub-object: `uk-nav-header`
 ========================================================================== */
.uk-nav-header {
  padding: 5px 15px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
}
.uk-nav-header:not(:first-child) {
  margin-top: 15px;
}
/* Sub-object: `uk-nav-divider`
 ========================================================================== */
.uk-nav-divider {
  margin: 9px 15px;
}
/* Sub-object: `uk-nav-sub`
 ========================================================================== */
/*
 * `ul` needed for higher specificity to override padding
 */
ul.uk-nav-sub {
  padding: 5px 0 5px 15px;
}
/* Modifier: `uk-nav-parent-icon`
 ========================================================================== */
.uk-nav-parent-icon > .uk-parent > a:after {
  content: "\F104";
  width: 20px;
  margin-right: -10px;
  float: right;
  font-family: FontAwesome;
  text-align: center;
}
.uk-nav-parent-icon > .uk-parent.uk-open > a:after {
  content: "\F107";
}
/* Modifier `uk-nav-side`
 ========================================================================== */
/*
 * Items
 */
.uk-nav-side > li > a {
  color: #444;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-nav-side > li > a:hover,
.uk-nav-side > li > a:focus {
  background: rgba(0, 0, 0, 0.05);
  color: #444;
  /* 2 */
  outline: none;
}
/* Active */
.uk-nav-side > li.uk-active > a {
  background: #00a8e6;
  color: #fff;
}
/*
 * Sub-object: `uk-nav-header`
 */
.uk-nav-side .uk-nav-header {
  color: #444;
}
/*
 * Sub-object: `uk-nav-divider`
 */
.uk-nav-side .uk-nav-divider {
  border-top: 1px solid #ddd;
}
/*
 * Nested items
 */
.uk-nav-side ul a {
  color: #07D;
}
.uk-nav-side ul a:hover {
  color: #059;
}
/* Modifier `uk-nav-dropdown`
 ========================================================================== */
/*
 * Items
 */
.uk-nav-dropdown > li > a {
  color: #444;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-nav-dropdown > li > a:hover,
.uk-nav-dropdown > li > a:focus {
  background: #00a8e6;
  color: #fff;
  /* 2 */
  outline: none;
}
/*
 * Sub-object: `uk-nav-header`
 */
.uk-nav-dropdown .uk-nav-header {
  color: #999;
}
/*
 * Sub-object: `uk-nav-divider`
 */
.uk-nav-dropdown .uk-nav-divider {
  border-top: 1px solid #ddd;
}
/*
 * Nested items
 */
.uk-nav-dropdown ul a {
  color: #07D;
}
.uk-nav-dropdown ul a:hover {
  color: #059;
}
/* Modifier `uk-nav-navbar`
 ========================================================================== */
/*
 * Items
 */
.uk-nav-navbar > li > a {
  color: #444;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-nav-navbar > li > a:hover,
.uk-nav-navbar > li > a:focus {
  background: #00a8e6;
  color: #fff;
  /* 2 */
  outline: none;
}
/*
 * Sub-object: `uk-nav-header`
 */
.uk-nav-navbar .uk-nav-header {
  color: #999;
}
/*
 * Sub-object: `uk-nav-divider`
 */
.uk-nav-navbar .uk-nav-divider {
  border-top: 1px solid #ddd;
}
/*
 * Nested items
 */
.uk-nav-navbar ul a {
  color: #07D;
}
.uk-nav-navbar ul a:hover {
  color: #059;
}
/* Modifier `uk-nav-offcanvas`
 ========================================================================== */
/*
 * Items
 */
.uk-nav-offcanvas > li > a {
  color: #ccc;
  padding: 10px 15px;
}
/*
 * Hover
 * No hover on touch devices because it behaves buggy in fixed offcanvas
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-nav-offcanvas > .uk-open > a,
html:not(.uk-touch) .uk-nav-offcanvas > li > a:hover,
html:not(.uk-touch) .uk-nav-offcanvas > li > a:focus {
  background: #404040;
  color: #fff;
  /* 2 */
  outline: none;
}
/*
 * Active
 * `html .uk-nav` needed for higher specificity to override hover
 */
html .uk-nav.uk-nav-offcanvas > li.uk-active > a {
  background: #1a1a1a;
  color: #fff;
}
/*
 * Sub-object: `uk-nav-header`
 */
.uk-nav-offcanvas .uk-nav-header {
  color: #777;
}
/*
 * Sub-object: `uk-nav-divider`
 */
.uk-nav-offcanvas .uk-nav-divider {
  border-top: 1px solid #1a1a1a;
}
/*
 * Nested items
 * No hover on touch devices because it behaves buggy in fixed offcanvas
 */
.uk-nav-offcanvas ul a {
  color: #ccc;
}
html:not(.uk-touch) .uk-nav-offcanvas ul a:hover {
  color: #fff;
}
/* ========================================================================
   Component: Navbar
 ========================================================================== */
.uk-navbar {
  background: #eee;
  color: #444;
}
/*
 * Micro clearfix
 */
.uk-navbar:before,
.uk-navbar:after {
  content: "";
  display: table;
}
.uk-navbar:after {
  clear: both;
}
/* Sub-object: `uk-navbar-nav`
 ========================================================================== */
.uk-navbar-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
}
/*
 * 1. Create position context for dropdowns
 */
.uk-navbar-nav > li {
  float: left;
  /* 1 */
  position: relative;
}
/*
 * 1. Dimensions
 * 2. Style
 */
.uk-navbar-nav > li > a {
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  /* 1 */
  height: 40px;
  padding: 0 15px;
  line-height: 40px;
  /* 2 */
  color: #444;
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
}
/* Appear not as link */
.uk-navbar-nav > li > a[href='#'] {
  cursor: text;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Also apply if dropdown is opened
 * 3. Remove default focus style
 */
.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li > a:focus,
.uk-navbar-nav > li.uk-open > a {
  background-color: #f5f5f5;
  color: #444;
  /* 3 */
  outline: none;
}
/* OnClick */
.uk-navbar-nav > li > a:active {
  background-color: #ddd;
  color: #444;
}
/* Active */
.uk-navbar-nav > li.uk-active > a {
  background-color: #f5f5f5;
  color: #444;
}
/* Sub-objects: `uk-navbar-nav-subtitle`
 ========================================================================== */
.uk-navbar-nav .uk-navbar-nav-subtitle {
  line-height: 28px;
}
.uk-navbar-nav-subtitle > div {
  margin-top: -6px;
  font-size: 10px;
  line-height: 12px;
}
/* Sub-objects: `uk-navbar-content`, `uk-navbar-brand`, `uk-navbar-toggle`
 ========================================================================== */
/*
 * Imitate navbar items
 */
.uk-navbar-content,
.uk-navbar-brand,
.uk-navbar-toggle {
  box-sizing: border-box;
  display: block;
  height: 40px;
  padding: 0 15px;
  float: left;
}
/*
 * Helper to center all child elements vertically
 */
.uk-navbar-content:before,
.uk-navbar-brand:before,
.uk-navbar-toggle:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
/* Sub-objects: `uk-navbar-content`
 ========================================================================== */
/*
 * Better sibling spacing
 */
.uk-navbar-content + .uk-navbar-content:not(.uk-navbar-center) {
  padding-left: 0;
}
/*
 * Link colors
 */
.uk-navbar-content > a:not([class]) {
  color: #07D;
}
.uk-navbar-content > a:not([class]):hover {
  color: #059;
}
/* Sub-objects: `uk-navbar-brand`
 ========================================================================== */
.uk-navbar-brand {
  font-size: 18px;
  color: #444;
  text-decoration: none;
}
/*
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-navbar-brand:hover,
.uk-navbar-brand:focus {
  color: #444;
  text-decoration: none;
  /* 2 */
  outline: none;
}
/* Sub-object: `uk-navbar-toggle`
 ========================================================================== */
.uk-navbar-toggle {
  font-size: 18px;
  color: #444;
  text-decoration: none;
}
/*
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-navbar-toggle:hover,
.uk-navbar-toggle:focus {
  color: #444;
  text-decoration: none;
  /* 2 */
  outline: none;
}
/*
 * 1. Center icon vertically
 */
.uk-navbar-toggle:after {
  content: "\F0C9";
  font-family: FontAwesome;
  /* 1 */
  vertical-align: middle;
}
.uk-navbar-toggle-alt:after {
  content: "\F002";
}
/* Sub-object: `uk-navbar-center`
 ========================================================================== */
/*
 * The element with this class needs to be last child in the navbar
 * 1. This hack is needed because other float elements shift centered text
 */
.uk-navbar-center {
  float: none;
  text-align: center;
  /* 1 */
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}
/* Sub-object: `uk-navbar-flip`
 ========================================================================== */
.uk-navbar-flip {
  float: right;
}
/* ========================================================================
   Component: Subnav
 ========================================================================== */
/*
 * 1. Gutter
 * 2. Remove default list style
 */
.uk-subnav {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 1 */
  margin-left: -10px;
  margin-top: -10px;
  /* 2 */
  padding: 0;
  list-style: none;
}
/*
 * 1. Space is allocated solely based on content dimensions
 * 2. Horizontal gutter is using `padding` so `uk-width-*` classes can be applied
 * 3. Create position context for dropdowns
 */
.uk-subnav > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  /* 2 */
  padding-left: 10px;
  margin-top: 10px;
  /* 3 */
  position: relative;
}
/*
 * DEPRECATED IE9 Support
 */
.uk-subnav:before,
.uk-subnav:after {
  content: "";
  display: block;
  overflow: hidden;
}
.uk-subnav:after {
  clear: both;
}
.uk-subnav > * {
  float: left;
}
/* Items
 ========================================================================== */
.uk-subnav > * > * {
  display: inline-block;
  color: #444;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 */
.uk-subnav > * > :hover,
.uk-subnav > * > :focus {
  color: #07D;
  text-decoration: none;
}
/*
 * Active
 */
.uk-subnav > .uk-active > * {
  color: #07D;
}
/* Modifier: 'subnav-line'
 ========================================================================== */
.uk-subnav-line > :before {
  content: "";
  display: inline-block;
  height: 10px;
  vertical-align: middle;
}
.uk-subnav-line > :nth-child(n+2):before {
  margin-right: 10px;
  border-left: 1px solid #ddd;
}
/* Modifier: 'subnav-pill'
 ========================================================================== */
.uk-subnav-pill > * > * {
  padding: 3px 9px;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-subnav-pill > * > :hover,
.uk-subnav-pill > * > :focus {
  background: #eee;
  color: #444;
  text-decoration: none;
  /* 2 */
  outline: none;
}
/*
 * Active
 * `li` needed for higher specificity to override hover
 */
.uk-subnav-pill > .uk-active > * {
  background: #00a8e6;
  color: #fff;
}
/* Disabled state
 ========================================================================== */
.uk-subnav > .uk-disabled > * {
  background: none;
  color: #999;
  text-decoration: none;
  cursor: text;
}
/* ========================================================================
   Component: Breadcrumb
 ========================================================================== */
/*
 * 1. Remove default list style
 * 2. Remove whitespace between child elements when using `inline-block`
 */
.uk-breadcrumb {
  /* 1 */
  padding: 0;
  list-style: none;
  /* 2 */
  font-size: 0.001px;
}
/* Items
 ========================================================================== */
/*
 * Reset whitespace hack
 */
.uk-breadcrumb > li {
  font-size: 1rem;
  vertical-align: top;
}
.uk-breadcrumb > li,
.uk-breadcrumb > li > a,
.uk-breadcrumb > li > span {
  display: inline-block;
}
.uk-breadcrumb > li:nth-child(n+2):before {
  content: "/";
  display: inline-block;
  margin: 0 8px;
}
/*
 * Disabled
 */
.uk-breadcrumb > li:not(.uk-active) > span {
  color: #999;
}
/* ========================================================================
   Component: Pagination
 ========================================================================== */
/*
 * 1. Remove default list style
 * 2. Center pagination by default
 * 3. Remove whitespace between child elements when using `inline-block`
 */
.uk-pagination {
  /* 1 */
  padding: 0;
  list-style: none;
  /* 2 */
  text-align: center;
  /* 3 */
  font-size: 0.001px;
}
/*
 * Micro clearfix
 * Needed if `uk-pagination-previous` or `uk-pagination-next` sub-objects are used
 */
.uk-pagination:before,
.uk-pagination:after {
  content: "";
  display: table;
}
.uk-pagination:after {
  clear: both;
}
/* Items
 ========================================================================== */
/*
 * 1. Reset whitespace hack
 * 2. Remove the gap at the bottom of it container
 */
.uk-pagination > li {
  display: inline-block;
  /* 1 */
  font-size: 1rem;
  /* 2 */
  vertical-align: top;
}
.uk-pagination > li:nth-child(n+2) {
  margin-left: 5px;
}
/*
 * 1. Makes pagination more robust against different box-sizing use
 * 2. Reset text-align to center if alignment modifier is used
 */
.uk-pagination > li > a,
.uk-pagination > li > span {
  display: inline-block;
  min-width: 16px;
  padding: 3px 5px;
  line-height: 20px;
  text-decoration: none;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
  text-align: center;
}
/*
 * Links
 */
.uk-pagination > li > a {
  background: #eee;
  color: #444;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-pagination > li > a:hover,
.uk-pagination > li > a:focus {
  background-color: #f5f5f5;
  color: #444;
  /* 2 */
  outline: none;
}
/* OnClick */
.uk-pagination > li > a:active {
  background-color: #ddd;
  color: #444;
}
/*
 * Active
 */
.uk-pagination > .uk-active > span {
  background: #00a8e6;
  color: #fff;
}
/*
 * Disabled
 */
.uk-pagination > .uk-disabled > span {
  background-color: #f5f5f5;
  color: #999;
}
/* Previous and next navigation
 ========================================================================== */
.uk-pagination-previous {
  float: left;
}
.uk-pagination-next {
  float: right;
}
/* Alignment modifiers
 ========================================================================== */
.uk-pagination-left {
  text-align: left;
}
.uk-pagination-right {
  text-align: right;
}
/* ========================================================================
   Component: Tab
 ========================================================================== */
.uk-tab {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #ddd;
}
/*
 * Micro clearfix on the deepest container
 */
.uk-tab:before,
.uk-tab:after {
  content: "";
  display: table;
}
.uk-tab:after {
  clear: both;
}
/*
 * Items
 * 1. Create position context for dropdowns
 */
.uk-tab > li {
  margin-bottom: -1px;
  float: left;
  /* 1 */
  position: relative;
}
.uk-tab > li > a {
  display: block;
  padding: 8px 12px 8px 12px;
  border: 1px solid transparent;
  border-bottom-width: 0;
  color: #07D;
  text-decoration: none;
}
.uk-tab > li:nth-child(n+2) > a {
  margin-left: 5px;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Also apply if dropdown is opened
 * 3. Remove default focus style
 */
.uk-tab > li > a:hover,
.uk-tab > li > a:focus,
.uk-tab > li.uk-open > a {
  border-color: #f5f5f5;
  background: #f5f5f5;
  color: #059;
  /* 2 */
  outline: none;
}
.uk-tab > li:not(.uk-active) > a:hover,
.uk-tab > li:not(.uk-active) > a:focus,
.uk-tab > li.uk-open:not(.uk-active) > a {
  margin-bottom: 1px;
  padding-bottom: 7px;
}
/* Active */
.uk-tab > li.uk-active > a {
  border-color: #ddd;
  border-bottom-color: transparent;
  background: #fff;
  color: #444;
}
/* Disabled */
.uk-tab > li.uk-disabled > a {
  color: #999;
  cursor: text;
}
.uk-tab > li.uk-disabled > a:hover,
.uk-tab > li.uk-disabled > a:focus,
.uk-tab > li.uk-disabled.uk-active > a {
  background: none;
  border-color: transparent;
}
/* Modifier: 'tab-flip'
 ========================================================================== */
.uk-tab-flip > li {
  float: right;
}
.uk-tab-flip > li:nth-child(n+2) > a {
  margin-left: 0;
  margin-right: 5px;
}
/* Modifier: 'tab-responsive'
 ========================================================================== */
.uk-tab > li.uk-tab-responsive > a {
  margin-left: 0;
  margin-right: 0;
}
/*
 * Icon
 */
.uk-tab-responsive > a:before {
  content: "\F0C9\A0";
  font-family: FontAwesome;
}
/* Modifier: 'tab-center'
 ========================================================================== */
.uk-tab-center {
  border-bottom: 1px solid #ddd;
}
.uk-tab-center-bottom {
  border-bottom: none;
  border-top: 1px solid #ddd;
}
.uk-tab-center:before,
.uk-tab-center:after {
  content: "";
  display: table;
}
.uk-tab-center:after {
  clear: both;
}
/*
 * 1. Using `right` to prevent vertical scrollbar caused by centering if to many tabs
 */
.uk-tab-center .uk-tab {
  position: relative;
  right: 50%;
  border: none;
  float: right;
}
.uk-tab-center .uk-tab > li {
  position: relative;
  right: -50%;
}
.uk-tab-center .uk-tab > li > a {
  text-align: center;
}
/* Modifier: 'tab-bottom'
 ========================================================================== */
.uk-tab-bottom {
  border-top: 1px solid #ddd;
  border-bottom: none;
}
.uk-tab-bottom > li {
  margin-top: -1px;
  margin-bottom: 0;
}
.uk-tab-bottom > li > a {
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom-width: 1px;
  border-top-width: 0;
}
.uk-tab-bottom > li:not(.uk-active) > a:hover,
.uk-tab-bottom > li:not(.uk-active) > a:focus,
.uk-tab-bottom > li.uk-open:not(.uk-active) > a {
  margin-bottom: 0;
  margin-top: 1px;
  padding-bottom: 8px;
  padding-top: 7px;
}
.uk-tab-bottom > li.uk-active > a {
  border-top-color: transparent;
  border-bottom-color: #ddd;
}
/* Modifier: 'tab-grid'
 ========================================================================== */
/*
 * 1. Create position context to prevent hidden border because of negative `z-index`
 */
.uk-tab-grid {
  margin-left: -5px;
  border-bottom: none;
  /* 1 */
  position: relative;
  z-index: 0;
}
.uk-tab-grid:before {
  display: block;
  position: absolute;
  left: 5px;
  right: 0;
  bottom: -1px;
  border-top: 1px solid #ddd;
  /* 1 */
  z-index: -1;
}
.uk-tab-grid > li:first-child > a {
  margin-left: 5px;
}
.uk-tab-grid > li > a {
  text-align: center;
}
/*
 * If `uk-tab-bottom`
 */
.uk-tab-grid.uk-tab-bottom {
  border-top: none;
}
.uk-tab-grid.uk-tab-bottom:before {
  top: -1px;
  bottom: auto;
}
/* Modifier: 'tab-left', 'tab-right'
 ========================================================================== */
/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-tab-left,
  .uk-tab-right {
    border-bottom: none;
  }
  .uk-tab-left > li,
  .uk-tab-right > li {
    margin-bottom: 0;
    float: none;
  }
  .uk-tab-left > li > a,
  .uk-tab-right > li > a {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .uk-tab-left > li:nth-child(n+2) > a,
  .uk-tab-right > li:nth-child(n+2) > a {
    margin-left: 0;
    margin-top: 5px;
  }
  .uk-tab-left > li.uk-active > a,
  .uk-tab-right > li.uk-active > a {
    border-color: #ddd;
  }
  /*
     * Modifier: 'tab-left'
     */
  .uk-tab-left {
    border-right: 1px solid #ddd;
  }
  .uk-tab-left > li {
    margin-right: -1px;
  }
  .uk-tab-left > li > a {
    border-bottom-width: 1px;
    border-right-width: 0;
  }
  .uk-tab-left > li:not(.uk-active) > a:hover,
  .uk-tab-left > li:not(.uk-active) > a:focus {
    margin-bottom: 0;
    margin-right: 1px;
    padding-bottom: 8px;
    padding-right: 11px;
  }
  .uk-tab-left > li.uk-active > a {
    border-right-color: transparent;
  }
  /*
     * Modifier: 'tab-right'
     */
  .uk-tab-right {
    border-left: 1px solid #ddd;
  }
  .uk-tab-right > li {
    margin-left: -1px;
  }
  .uk-tab-right > li > a {
    border-bottom-width: 1px;
    border-left-width: 0;
  }
  .uk-tab-right > li:not(.uk-active) > a:hover,
  .uk-tab-right > li:not(.uk-active) > a:focus {
    margin-bottom: 0;
    margin-left: 1px;
    padding-bottom: 8px;
    padding-left: 11px;
  }
  .uk-tab-right > li.uk-active > a {
    border-left-color: transparent;
  }
}
/* ========================================================================
   Component: Thumbnav
 ========================================================================== */
/*
 * 1. Gutter
 * 2. Remove default list style
 */
.uk-thumbnav {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 1 */
  margin-left: -10px;
  margin-top: -10px;
  /* 2 */
  padding: 0;
  list-style: none;
}
/*
 * 1. Space is allocated solely based on content dimensions
 * 2. Horizontal gutter is using `padding` so `uk-width-*` classes can be applied
 */
.uk-thumbnav > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  /* 2 */
  padding-left: 10px;
  margin-top: 10px;
}
/*
 * DEPRECATED IE9 Support
 */
.uk-thumbnav:before,
.uk-thumbnav:after {
  content: "";
  display: block;
  overflow: hidden;
}
.uk-thumbnav:after {
  clear: both;
}
.uk-thumbnav > * {
  float: left;
}
/* Items
 ========================================================================== */
.uk-thumbnav > * > * {
  display: block;
  background: #fff;
}
.uk-thumbnav > * > * > img {
  opacity: 0.7;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
/*
 * Hover
 */
.uk-thumbnav > * > :hover > img,
.uk-thumbnav > * > :focus > img {
  opacity: 1;
}
/*
 * Active
 */
.uk-thumbnav > .uk-active > * > img {
  opacity: 1;
}
/* ========================================================================
   Component: List
 ========================================================================== */
.uk-list {
  padding: 0;
  list-style: none;
}
/*
 * Micro clearfix to make list more robust
 */
.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: 20px;
  list-style: none;
}
/* Modifier: `uk-list-line`
 ========================================================================== */
.uk-list-line > li:nth-child(n+2) {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #ddd;
}
/* Modifier: `uk-list-striped`
 ========================================================================== */
.uk-list-striped > li {
  padding: 5px 5px;
}
.uk-list-striped > li:nth-of-type(odd) {
  background: #f5f5f5;
}
/* Modifier: `uk-list-space`
 ========================================================================== */
.uk-list-space > li:nth-child(n+2) {
  margin-top: 10px;
}
/* ========================================================================
   Component: Description list
 ========================================================================== */
/* Modifier: `uk-description-list-horizontal`
 ========================================================================== */
/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-description-list-horizontal {
    overflow: hidden;
  }
  .uk-description-list-horizontal > dt {
    width: 160px;
    float: left;
    clear: both;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .uk-description-list-horizontal > dd {
    margin-left: 180px;
  }
}
/* Modifier: `uk-description-list-line`
 ========================================================================== */
.uk-description-list-line > dt {
  font-weight: normal;
}
.uk-description-list-line > dt:nth-child(n+2) {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #ddd;
}
.uk-description-list-line > dd {
  color: #999;
}
/* ========================================================================
   Component: Table
 ========================================================================== */
/*
 * 1. Remove most spacing between table cells.
 * 2. Block element behavior
 * 3. Style
 */
.uk-table {
  /* 1 */
  border-collapse: collapse;
  border-spacing: 0;
  /* 2 */
  width: 100%;
  /* 3 */
  margin-bottom: 15px;
}
/*
 * Add margin if adjacent element
 */
* + .uk-table {
  margin-top: 15px;
}
.uk-table th,
.uk-table td {
  padding: 8px 8px;
}
/*
 * Set alignment
 */
.uk-table th {
  text-align: left;
}
.uk-table td {
  vertical-align: top;
}
.uk-table thead th {
  vertical-align: bottom;
}
/*
 * Caption and footer
 */
.uk-table caption,
.uk-table tfoot {
  font-size: 12px;
  font-style: italic;
}
.uk-table caption {
  text-align: left;
  color: #999;
}
/*
 * Active State
 */
.uk-table tbody tr.uk-active {
  background: #EEE;
}
/* Sub-modifier: `uk-table-middle`
 ========================================================================== */
.uk-table-middle,
.uk-table-middle td {
  vertical-align: middle !important;
}
/* Modifier: `uk-table-striped`
 ========================================================================== */
.uk-table-striped tbody tr:nth-of-type(odd) {
  background: #f5f5f5;
}
/* Modifier: `uk-table-condensed`
 ========================================================================== */
.uk-table-condensed td {
  padding: 4px 8px;
}
/* Modifier: `uk-table-hover`
 ========================================================================== */
.uk-table-hover tbody tr:hover {
  background: #EEE;
}
/* ========================================================================
   Component: Form
 ========================================================================== */
/*
 * 1. Define consistent box sizing.
 *    Default is `content-box` with following exceptions set to `border-box`
 *    `button`, `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. Correct `font` properties and `color` not being inherited.
 */
.uk-form input,
.uk-form select,
.uk-form textarea {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  margin: 0;
  /* 3 */
  border-radius: 0;
  /* 4 */
  font: inherit;
  color: inherit;
}
/*
 * Address inconsistent `text-transform` inheritance which is only inherit in Firefox
 */
.uk-form select {
  text-transform: none;
}
/*
 * 1. Correct `font` properties not being inherited.
 * 2. Don't inherit the `font-weight` and use `bold` instead.
 * NOTE: Both declarations don't work in Chrome, Safari and Opera.
 */
.uk-form optgroup {
  /* 1 */
  font: inherit;
  /* 2 */
  font-weight: bold;
}
/*
 * Removes inner padding and border in Firefox 4+.
 */
.uk-form input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * Removes excess padding in IE 8/9/10.
 */
.uk-form input[type="checkbox"],
.uk-form input[type="radio"] {
  padding: 0;
}
/*
 * Improves consistency of cursor style for clickable elements
 */
.uk-form input[type="checkbox"]:not(:disabled),
.uk-form input[type="radio"]:not(:disabled) {
  cursor: pointer;
}
/*
 * Remove default style in iOS.
 */
.uk-form textarea,
.uk-form input:not([type]),
.uk-form input[type="text"],
.uk-form input[type="password"],
.uk-form input[type="email"],
.uk-form input[type="url"],
.uk-form input[type="search"],
.uk-form input[type="tel"],
.uk-form input[type="number"],
.uk-form input[type="datetime"] {
  -webkit-appearance: none;
}
/*
 * Remove inner padding and search cancel button in Chrome, Safari and Opera on OS X.
 */
.uk-form input[type="search"]::-webkit-search-cancel-button,
.uk-form input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
.uk-form input[type="number"]::-webkit-inner-spin-button,
.uk-form input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/*
 * Define consistent border, margin, and padding.
 */
.uk-form fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
/*
 * 1. Remove default vertical scrollbar in IE 8/9/10/11.
 * 2. Improve readability and alignment in all browsers.
 */
.uk-form textarea {
  /* 1 */
  overflow: auto;
  /* 2 */
  vertical-align: top;
}
/*
 * Removes placeholder transparency in Firefox.
 */
.uk-form ::-moz-placeholder {
  opacity: 1;
}
/*
 * Removes `box-shadow` for invalid controls in Firefox.
 */
.uk-form :invalid {
  box-shadow: none;
}
/*
 * Vertical alignment
 */
.uk-form input:not([type="radio"]):not([type="checkbox"]),
.uk-form select {
  vertical-align: middle;
}
/* Style
 ========================================================================== */
/*
 * Remove margin from the last-child
 */
.uk-form > :last-child {
  margin-bottom: 0;
}
/*
 * Controls
 * Except for `range`, `radio`, `checkbox`, `file`, `submit`, `reset`, `button` and `image`
 * 1. Must be `height` because `min-height` is not working in OSX
 * 2. Responsiveness: Sets a maximum width relative to the parent to scale on narrower viewports
 * 3. Vertical `padding` needed for `select` elements in Firefox
 * 4. Style
 */
.uk-form select,
.uk-form textarea,
.uk-form input:not([type]),
.uk-form input[type="text"],
.uk-form input[type="password"],
.uk-form input[type="datetime"],
.uk-form input[type="datetime-local"],
.uk-form input[type="date"],
.uk-form input[type="month"],
.uk-form input[type="time"],
.uk-form input[type="week"],
.uk-form input[type="number"],
.uk-form input[type="email"],
.uk-form input[type="url"],
.uk-form input[type="search"],
.uk-form input[type="tel"],
.uk-form input[type="color"] {
  /* 1 */
  height: 30px;
  /* 2 */
  max-width: 100%;
  /* 3 */
  padding: 4px 6px;
  /* 4 */
  border: 1px solid #ddd;
  background: #fff;
  color: #444;
  -webkit-transition: all 0.2s linear;
  -webkit-transition-property: border, background, color, box-shadow, padding;
  transition: all 0.2s linear;
  transition-property: border, background, color, box-shadow, padding;
}
.uk-form select:focus,
.uk-form textarea:focus,
.uk-form input:not([type]):focus,
.uk-form input[type="text"]:focus,
.uk-form input[type="password"]:focus,
.uk-form input[type="datetime"]:focus,
.uk-form input[type="datetime-local"]:focus,
.uk-form input[type="date"]:focus,
.uk-form input[type="month"]:focus,
.uk-form input[type="time"]:focus,
.uk-form input[type="week"]:focus,
.uk-form input[type="number"]:focus,
.uk-form input[type="email"]:focus,
.uk-form input[type="url"]:focus,
.uk-form input[type="search"]:focus,
.uk-form input[type="tel"]:focus,
.uk-form input[type="color"]:focus {
  border-color: #99baca;
  outline: 0;
  background: #f5fbfe;
  color: #444;
}
.uk-form select:disabled,
.uk-form textarea:disabled,
.uk-form input:not([type]):disabled,
.uk-form input[type="text"]:disabled,
.uk-form input[type="password"]:disabled,
.uk-form input[type="datetime"]:disabled,
.uk-form input[type="datetime-local"]:disabled,
.uk-form input[type="date"]:disabled,
.uk-form input[type="month"]:disabled,
.uk-form input[type="time"]:disabled,
.uk-form input[type="week"]:disabled,
.uk-form input[type="number"]:disabled,
.uk-form input[type="email"]:disabled,
.uk-form input[type="url"]:disabled,
.uk-form input[type="search"]:disabled,
.uk-form input[type="tel"]:disabled,
.uk-form input[type="color"]:disabled {
  border-color: #ddd;
  background-color: #f5f5f5;
  color: #999;
}
/*
 * Placeholder
 */
.uk-form :-ms-input-placeholder {
  color: #999 !important;
}
.uk-form ::-moz-placeholder {
  color: #999;
}
.uk-form ::-webkit-input-placeholder {
  color: #999;
}
.uk-form :disabled:-ms-input-placeholder {
  color: #999 !important;
}
.uk-form :disabled::-moz-placeholder {
  color: #999;
}
.uk-form :disabled::-webkit-input-placeholder {
  color: #999;
}
/*
 * Legend
 * 1. Behave like block element
 * 2. Correct `color` not being inherited in IE 8/9/10/11.
 * 3. Remove padding
 * 4. `margin-bottom` is not working in Safari and Opera.
 *    Using `padding` and :after instead to create the border
 * 5. Style
 */
.uk-form legend {
  /* 1 */
  width: 100%;
  /* 2 */
  border: 0;
  /* 3 */
  padding: 0;
  /* 4 */
  padding-bottom: 15px;
  /* 5 */
  font-size: 18px;
  line-height: 30px;
}
/*
 * 1. Fixes IE9
 */
.uk-form legend:after {
  content: "";
  display: block;
  border-bottom: 1px solid #ddd;
  /* 1 */
  width: 100%;
}
/* Size modifiers
 * Higher specificity needed to override defaults
 ========================================================================== */
select.uk-form-small,
textarea.uk-form-small,
input[type].uk-form-small,
input:not([type]).uk-form-small {
  height: 25px;
  padding: 3px 3px;
  font-size: 12px;
}
select.uk-form-large,
textarea.uk-form-large,
input[type].uk-form-large,
input:not([type]).uk-form-large {
  height: 40px;
  padding: 8px 6px;
  font-size: 16px;
}
/* Reset height
 * Must be after size modifiers
 ========================================================================== */
.uk-form textarea,
.uk-form select[multiple],
.uk-form select[size] {
  height: auto;
}
/* Validation states
 * Using !important to keep the selector simple
 ========================================================================== */
/*
 * Error state
 */
.uk-form-danger {
  border-color: #dc8d99 !important;
  background: #fff7f8 !important;
  color: #d85030 !important;
}
/*
 * Success state
 */
.uk-form-success {
  border-color: #8ec73b !important;
  background: #fafff2 !important;
  color: #659f13 !important;
}
/* Style modifiers
 * Using !important to keep the selector simple
 ========================================================================== */
/*
 * Blank form
 */
.uk-form-blank {
  border-color: transparent !important;
  border-style: dashed !important;
  background: none !important;
}
.uk-form-blank:focus {
  border-color: #ddd !important;
}
/* Size sub-modifiers
 ========================================================================== */
/*
 * Fixed widths
 * Different widths for mini sized `input` and `select` elements
 */
input.uk-form-width-mini {
  width: 40px;
}
select.uk-form-width-mini {
  width: 65px;
}
.uk-form-width-small {
  width: 130px;
}
.uk-form-width-medium {
  width: 200px;
}
.uk-form-width-large {
  width: 500px;
}
/* Sub-objects: `uk-form-row`
 * Groups labels and controls in rows
 ========================================================================== */
/*
 * Micro clearfix
 * Needed for `uk-form-horizontal` modifier
 */
.uk-form-row:before,
.uk-form-row:after {
  content: "";
  display: table;
}
.uk-form-row:after {
  clear: both;
}
/*
 * Vertical gutter
 */
.uk-form-row + .uk-form-row {
  margin-top: 15px;
}
/* Help text
 * Sub-object: `uk-form-help-inline`, `uk-form-help-block`
 ========================================================================== */
.uk-form-help-inline {
  display: inline-block;
  margin: 0 0 0 10px;
}
.uk-form-help-block {
  margin: 5px 0 0 0;
}
/* Controls content
 * Sub-object: `uk-form-controls`, `uk-form-controls-condensed`
 ========================================================================== */
/*
 * Remove margins
 */
.uk-form-controls > :first-child {
  margin-top: 0;
}
.uk-form-controls > :last-child {
  margin-bottom: 0;
}
/*
 * Group controls and text into blocks with a small spacing between blocks
 */
.uk-form-controls-condensed {
  margin: 5px 0;
}
/* Modifier: `uk-form-stacked`
 * Requires sub-object: `uk-form-label`
 ========================================================================== */
.uk-form-stacked .uk-form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
/* Modifier: `uk-form-horizontal`
 * Requires sub-objects: `uk-form-label`, `uk-form-controls`
 ========================================================================== */
/* Tablet portrait and smaller */
@media (max-width: 959px) {
  /* Behave like `uk-form-stacked` */
  .uk-form-horizontal .uk-form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .uk-form-horizontal .uk-form-label {
    width: 200px;
    margin-top: 5px;
    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: 5px;
  }
}
/* Sub-object: `uk-form-icon`
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Create position context
 * 3. Prevent `inline-block` consequences
 */
.uk-form-icon {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
}
/*
 * 1. Make form element clickable through icon
 */
.uk-form-icon > [class*='uk-icon-'] {
  position: absolute;
  top: 50%;
  width: 30px;
  margin-top: -7px;
  font-size: 14px;
  color: #999;
  text-align: center;
  /* 1 */
  pointer-events: none;
}
.uk-form-icon:not(.uk-form-icon-flip) > input {
  padding-left: 30px !important;
}
/*
 * Sub-modifier: `uk-form-icon-flip`
 */
.uk-form-icon-flip > [class*='uk-icon-'] {
  right: 0;
}
.uk-form-icon-flip > input {
  padding-right: 30px !important;
}
/* ========================================================================
   Component: Button
 ========================================================================== */
/*
 * Removes inner padding and border in Firefox 4+.
 */
.uk-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * 1. Correct inability to style clickable `input` types in iOS.
 * 2. Remove margins in Chrome, Safari and Opera.
 * 3. Remove borders for `button`.
 * 4. Address `overflow` set to `hidden` in IE 8/9/10/11.
 * 5. Correct `font` properties and `color` not being inherited for `button`.
 * 6. Address inconsistent `text-transform` inheritance which is only inherit in Firefox and IE
 * 7. Style
 * 8. `line-height` is used to create a height
 * 9. `min-height` is necessary for `input` elements in Firefox and Opera because `line-height` is not working.
 * 10. Reset button group whitespace hack
 * 11. Required for `a`.
 */
.uk-button {
  /* 1 */
  -webkit-appearance: none;
  /* 2 */
  margin: 0;
  /* 3 */
  border: none;
  /* 4 */
  overflow: visible;
  /* 5 */
  font: inherit;
  color: #444;
  /* 6 */
  text-transform: none;
  /* 7 */
  display: inline-block;
  box-sizing: border-box;
  padding: 0 12px;
  background: #eee;
  vertical-align: middle;
  /* 8 */
  line-height: 30px;
  /* 9 */
  min-height: 30px;
  /* 10 */
  font-size: 1rem;
  /* 11 */
  text-decoration: none;
  text-align: center;
}
.uk-button:not(:disabled) {
  cursor: pointer;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 * 3. Required for `a` elements
 */
.uk-button:hover,
.uk-button:focus {
  background-color: #f5f5f5;
  color: #444;
  /* 2 */
  outline: none;
  /* 3 */
  text-decoration: none;
}
/* Active */
.uk-button:active,
.uk-button.uk-active {
  background-color: #ddd;
  color: #444;
}
/* Color modifiers
 ========================================================================== */
/*
 * Modifier: `uk-button-primary`
 */
.uk-button-primary {
  background-color: #00a8e6;
  color: #fff;
}
/* Hover */
.uk-button-primary:hover,
.uk-button-primary:focus {
  background-color: #35b3ee;
  color: #fff;
}
/* Active */
.uk-button-primary:active,
.uk-button-primary.uk-active {
  background-color: #0091ca;
  color: #fff;
}
/*
 * Modifier: `uk-button-success`
 */
.uk-button-success {
  background-color: #8cc14c;
  color: #fff;
}
/* Hover */
.uk-button-success:hover,
.uk-button-success:focus {
  background-color: #8ec73b;
  color: #fff;
}
/* Active */
.uk-button-success:active,
.uk-button-success.uk-active {
  background-color: #72ae41;
  color: #fff;
}
/*
 * Modifier: `uk-button-danger`
 */
.uk-button-danger {
  background-color: #da314b;
  color: #fff;
}
/* Hover */
.uk-button-danger:hover,
.uk-button-danger:focus {
  background-color: #e4354f;
  color: #fff;
}
/* Active */
.uk-button-danger:active,
.uk-button-danger.uk-active {
  background-color: #c91032;
  color: #fff;
}
/* Disabled state
 * Overrides also the color modifiers
 ========================================================================== */
/* Equal for all button types */
.uk-button:disabled {
  background-color: #f5f5f5;
  color: #999;
}
/* Modifier: `uk-button-link`
 ========================================================================== */
/* Reset */
.uk-button-link,
.uk-button-link:hover,
.uk-button-link:focus,
.uk-button-link:active,
.uk-button-link.uk-active,
.uk-button-link:disabled {
  border-color: transparent;
  background: none;
}
/* Color */
.uk-button-link {
  color: #07D;
}
.uk-button-link:hover,
.uk-button-link:focus,
.uk-button-link:active,
.uk-button-link.uk-active {
  color: #059;
  text-decoration: underline;
}
.uk-button-link:disabled {
  color: #999;
}
/* Focus */
.uk-button-link:focus {
  outline: 1px dotted;
}
/* Size modifiers
 ========================================================================== */
.uk-button-mini {
  min-height: 20px;
  padding: 0 6px;
  line-height: 20px;
  font-size: 11px;
}
.uk-button-small {
  min-height: 25px;
  padding: 0 10px;
  line-height: 25px;
  font-size: 12px;
}
.uk-button-large {
  min-height: 40px;
  padding: 0 15px;
  line-height: 40px;
  font-size: 16px;
}
/* Sub-object `uk-button-group`
 ========================================================================== */
/*
 * 1. Behave like buttons
 * 2. Create position context for dropdowns
 * 3. Remove whitespace between child elements when using `inline-block`
 * 4. Prevent buttons from wrapping
 * 5. Remove whitespace between child elements when using `inline-block`
 */
.uk-button-group {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
  /* 3 */
  font-size: 0.001px;
  /* 4 */
  white-space: nowrap;
}
.uk-button-group > * {
  display: inline-block;
}
/* 5 */
.uk-button-group .uk-button {
  vertical-align: top;
}
/* Sub-object: `uk-button-dropdown`
 ========================================================================== */
/*
 * 1. Behave like buttons
 * 2. Create position context for dropdowns
 */
.uk-button-dropdown {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
}
/* ========================================================================
   Component: Icon
 ========================================================================== */
@font-face {
  font-family: 'FontAwesome';
  src: url(/dist/fonts/fontawesome-webfont.woff2) format('woff2'), url(/dist/fonts/fontawesome-webfont.woff) format("woff"), url(/dist/fonts/fontawesome-webfont.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
/*
 * 1. Allow margin
 * 2. Prevent inherit font style
 * 4. Correct line-height
 * 5. Better font rendering
 * 6. Remove `text-decoration` for anchors
 */
[class*='uk-icon-'] {
  font-family: FontAwesome;
  /* 1 */
  display: inline-block;
  /* 2 */
  font-weight: normal;
  font-style: normal;
  /* 4 */
  line-height: 1;
  /* 5 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* 6 */
[class*='uk-icon-'],
[class*='uk-icon-']:hover,
[class*='uk-icon-']:focus {
  text-decoration: none;
}
/* Size modifiers
 ========================================================================== */
.uk-icon-small {
  font-size: 150%;
  vertical-align: -10%;
}
.uk-icon-medium {
  font-size: 200%;
  vertical-align: -16%;
}
.uk-icon-large {
  font-size: 250%;
  vertical-align: -22%;
}
/* Modifier: `uk-icon-justify`
 ========================================================================== */
.uk-icon-justify {
  width: 1em;
  text-align: center;
}
/* Modifier: `uk-icon-spin`
 ========================================================================== */
.uk-icon-spin {
  display: inline-block;
  -webkit-animation: uk-rotate 2s infinite linear;
  animation: uk-rotate 2s infinite linear;
}
/* Modifier: `uk-icon-hover`
 ========================================================================== */
.uk-icon-hover {
  color: #999;
}
/*
 * Hover
 */
.uk-icon-hover:hover {
  color: #444;
}
/* Modifier: `uk-icon-button`
 ========================================================================== */
.uk-icon-button {
  box-sizing: border-box;
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background: #eee;
  line-height: 35px;
  color: #444;
  font-size: 18px;
  text-align: center;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-icon-button:hover,
.uk-icon-button:focus {
  background-color: #f5f5f5;
  color: #444;
  /* 2 */
  outline: none;
}
/* Active */
.uk-icon-button:active {
  background-color: #ddd;
  color: #444;
}
/* Icon mapping
 ========================================================================== */
.uk-icon-glass:before {
  content: "\F000";
}
.uk-icon-music:before {
  content: "\F001";
}
.uk-icon-search:before {
  content: "\F002";
}
.uk-icon-envelope-o:before {
  content: "\F003";
}
.uk-icon-heart:before {
  content: "\F004";
}
.uk-icon-star:before {
  content: "\F005";
}
.uk-icon-star-o:before {
  content: "\F006";
}
.uk-icon-user:before {
  content: "\F007";
}
.uk-icon-film:before {
  content: "\F008";
}
.uk-icon-th-large:before {
  content: "\F009";
}
.uk-icon-th:before {
  content: "\F00A";
}
.uk-icon-th-list:before {
  content: "\F00B";
}
.uk-icon-check:before {
  content: "\F00C";
}
.uk-icon-remove:before,
.uk-icon-close:before,
.uk-icon-times:before {
  content: "\F00D";
}
.uk-icon-search-plus:before {
  content: "\F00E";
}
.uk-icon-search-minus:before {
  content: "\F010";
}
.uk-icon-power-off:before {
  content: "\F011";
}
.uk-icon-signal:before {
  content: "\F012";
}
.uk-icon-gear:before,
.uk-icon-cog:before {
  content: "\F013";
}
.uk-icon-trash-o:before {
  content: "\F014";
}
.uk-icon-home:before {
  content: "\F015";
}
.uk-icon-file-o:before {
  content: "\F016";
}
.uk-icon-clock-o:before {
  content: "\F017";
}
.uk-icon-road:before {
  content: "\F018";
}
.uk-icon-download:before {
  content: "\F019";
}
.uk-icon-arrow-circle-o-down:before {
  content: "\F01A";
}
.uk-icon-arrow-circle-o-up:before {
  content: "\F01B";
}
.uk-icon-inbox:before {
  content: "\F01C";
}
.uk-icon-play-circle-o:before {
  content: "\F01D";
}
.uk-icon-rotate-right:before,
.uk-icon-repeat:before {
  content: "\F01E";
}
.uk-icon-refresh:before {
  content: "\F021";
}
.uk-icon-list-alt:before {
  content: "\F022";
}
.uk-icon-lock:before {
  content: "\F023";
}
.uk-icon-flag:before {
  content: "\F024";
}
.uk-icon-headphones:before {
  content: "\F025";
}
.uk-icon-volume-off:before {
  content: "\F026";
}
.uk-icon-volume-down:before {
  content: "\F027";
}
.uk-icon-volume-up:before {
  content: "\F028";
}
.uk-icon-qrcode:before {
  content: "\F029";
}
.uk-icon-barcode:before {
  content: "\F02A";
}
.uk-icon-tag:before {
  content: "\F02B";
}
.uk-icon-tags:before {
  content: "\F02C";
}
.uk-icon-book:before {
  content: "\F02D";
}
.uk-icon-bookmark:before {
  content: "\F02E";
}
.uk-icon-print:before {
  content: "\F02F";
}
.uk-icon-camera:before {
  content: "\F030";
}
.uk-icon-font:before {
  content: "\F031";
}
.uk-icon-bold:before {
  content: "\F032";
}
.uk-icon-italic:before {
  content: "\F033";
}
.uk-icon-text-height:before {
  content: "\F034";
}
.uk-icon-text-width:before {
  content: "\F035";
}
.uk-icon-align-left:before {
  content: "\F036";
}
.uk-icon-align-center:before {
  content: "\F037";
}
.uk-icon-align-right:before {
  content: "\F038";
}
.uk-icon-align-justify:before {
  content: "\F039";
}
.uk-icon-list:before {
  content: "\F03A";
}
.uk-icon-dedent:before,
.uk-icon-outdent:before {
  content: "\F03B";
}
.uk-icon-indent:before {
  content: "\F03C";
}
.uk-icon-video-camera:before {
  content: "\F03D";
}
.uk-icon-photo:before,
.uk-icon-image:before,
.uk-icon-picture-o:before {
  content: "\F03E";
}
.uk-icon-pencil:before {
  content: "\F040";
}
.uk-icon-map-marker:before {
  content: "\F041";
}
.uk-icon-adjust:before {
  content: "\F042";
}
.uk-icon-tint:before {
  content: "\F043";
}
.uk-icon-edit:before,
.uk-icon-pencil-square-o:before {
  content: "\F044";
}
.uk-icon-share-square-o:before {
  content: "\F045";
}
.uk-icon-check-square-o:before {
  content: "\F046";
}
.uk-icon-arrows:before {
  content: "\F047";
}
.uk-icon-step-backward:before {
  content: "\F048";
}
.uk-icon-fast-backward:before {
  content: "\F049";
}
.uk-icon-backward:before {
  content: "\F04A";
}
.uk-icon-play:before {
  content: "\F04B";
}
.uk-icon-pause:before {
  content: "\F04C";
}
.uk-icon-stop:before {
  content: "\F04D";
}
.uk-icon-forward:before {
  content: "\F04E";
}
.uk-icon-fast-forward:before {
  content: "\F050";
}
.uk-icon-step-forward:before {
  content: "\F051";
}
.uk-icon-eject:before {
  content: "\F052";
}
.uk-icon-chevron-left:before {
  content: "\F053";
}
.uk-icon-chevron-right:before {
  content: "\F054";
}
.uk-icon-plus-circle:before {
  content: "\F055";
}
.uk-icon-minus-circle:before {
  content: "\F056";
}
.uk-icon-times-circle:before {
  content: "\F057";
}
.uk-icon-check-circle:before {
  content: "\F058";
}
.uk-icon-question-circle:before {
  content: "\F059";
}
.uk-icon-info-circle:before {
  content: "\F05A";
}
.uk-icon-crosshairs:before {
  content: "\F05B";
}
.uk-icon-times-circle-o:before {
  content: "\F05C";
}
.uk-icon-check-circle-o:before {
  content: "\F05D";
}
.uk-icon-ban:before {
  content: "\F05E";
}
.uk-icon-arrow-left:before {
  content: "\F060";
}
.uk-icon-arrow-right:before {
  content: "\F061";
}
.uk-icon-arrow-up:before {
  content: "\F062";
}
.uk-icon-arrow-down:before {
  content: "\F063";
}
.uk-icon-mail-forward:before,
.uk-icon-share:before {
  content: "\F064";
}
.uk-icon-expand:before {
  content: "\F065";
}
.uk-icon-compress:before {
  content: "\F066";
}
.uk-icon-plus:before {
  content: "\F067";
}
.uk-icon-minus:before {
  content: "\F068";
}
.uk-icon-asterisk:before {
  content: "\F069";
}
.uk-icon-exclamation-circle:before {
  content: "\F06A";
}
.uk-icon-gift:before {
  content: "\F06B";
}
.uk-icon-leaf:before {
  content: "\F06C";
}
.uk-icon-fire:before {
  content: "\F06D";
}
.uk-icon-eye:before {
  content: "\F06E";
}
.uk-icon-eye-slash:before {
  content: "\F070";
}
.uk-icon-warning:before,
.uk-icon-exclamation-triangle:before {
  content: "\F071";
}
.uk-icon-plane:before {
  content: "\F072";
}
.uk-icon-calendar:before {
  content: "\F073";
}
.uk-icon-random:before {
  content: "\F074";
}
.uk-icon-comment:before {
  content: "\F075";
}
.uk-icon-magnet:before {
  content: "\F076";
}
.uk-icon-chevron-up:before {
  content: "\F077";
}
.uk-icon-chevron-down:before {
  content: "\F078";
}
.uk-icon-retweet:before {
  content: "\F079";
}
.uk-icon-shopping-cart:before {
  content: "\F07A";
}
.uk-icon-folder:before {
  content: "\F07B";
}
.uk-icon-folder-open:before {
  content: "\F07C";
}
.uk-icon-arrows-v:before {
  content: "\F07D";
}
.uk-icon-arrows-h:before {
  content: "\F07E";
}
.uk-icon-bar-chart-o:before,
.uk-icon-bar-chart:before {
  content: "\F080";
}
.uk-icon-twitter-square:before {
  content: "\F081";
}
.uk-icon-facebook-square:before {
  content: "\F082";
}
.uk-icon-camera-retro:before {
  content: "\F083";
}
.uk-icon-key:before {
  content: "\F084";
}
.uk-icon-gears:before,
.uk-icon-cogs:before {
  content: "\F085";
}
.uk-icon-comments:before {
  content: "\F086";
}
.uk-icon-thumbs-o-up:before {
  content: "\F087";
}
.uk-icon-thumbs-o-down:before {
  content: "\F088";
}
.uk-icon-star-half:before {
  content: "\F089";
}
.uk-icon-heart-o:before {
  content: "\F08A";
}
.uk-icon-sign-out:before {
  content: "\F08B";
}
.uk-icon-linkedin-square:before {
  content: "\F08C";
}
.uk-icon-thumb-tack:before {
  content: "\F08D";
}
.uk-icon-external-link:before {
  content: "\F08E";
}
.uk-icon-sign-in:before {
  content: "\F090";
}
.uk-icon-trophy:before {
  content: "\F091";
}
.uk-icon-github-square:before {
  content: "\F092";
}
.uk-icon-upload:before {
  content: "\F093";
}
.uk-icon-lemon-o:before {
  content: "\F094";
}
.uk-icon-phone:before {
  content: "\F095";
}
.uk-icon-square-o:before {
  content: "\F096";
}
.uk-icon-bookmark-o:before {
  content: "\F097";
}
.uk-icon-phone-square:before {
  content: "\F098";
}
.uk-icon-twitter:before {
  content: "\F099";
}
.uk-icon-facebook-f:before,
.uk-icon-facebook:before {
  content: "\F09A";
}
.uk-icon-github:before {
  content: "\F09B";
}
.uk-icon-unlock:before {
  content: "\F09C";
}
.uk-icon-credit-card:before {
  content: "\F09D";
}
.uk-icon-rss:before {
  content: "\F09E";
}
.uk-icon-hdd-o:before {
  content: "\F0A0";
}
.uk-icon-bullhorn:before {
  content: "\F0A1";
}
.uk-icon-bell:before {
  content: "\F0F3";
}
.uk-icon-certificate:before {
  content: "\F0A3";
}
.uk-icon-hand-o-right:before {
  content: "\F0A4";
}
.uk-icon-hand-o-left:before {
  content: "\F0A5";
}
.uk-icon-hand-o-up:before {
  content: "\F0A6";
}
.uk-icon-hand-o-down:before {
  content: "\F0A7";
}
.uk-icon-arrow-circle-left:before {
  content: "\F0A8";
}
.uk-icon-arrow-circle-right:before {
  content: "\F0A9";
}
.uk-icon-arrow-circle-up:before {
  content: "\F0AA";
}
.uk-icon-arrow-circle-down:before {
  content: "\F0AB";
}
.uk-icon-globe:before {
  content: "\F0AC";
}
.uk-icon-wrench:before {
  content: "\F0AD";
}
.uk-icon-tasks:before {
  content: "\F0AE";
}
.uk-icon-filter:before {
  content: "\F0B0";
}
.uk-icon-briefcase:before {
  content: "\F0B1";
}
.uk-icon-arrows-alt:before {
  content: "\F0B2";
}
.uk-icon-group:before,
.uk-icon-users:before {
  content: "\F0C0";
}
.uk-icon-chain:before,
.uk-icon-link:before {
  content: "\F0C1";
}
.uk-icon-cloud:before {
  content: "\F0C2";
}
.uk-icon-flask:before {
  content: "\F0C3";
}
.uk-icon-cut:before,
.uk-icon-scissors:before {
  content: "\F0C4";
}
.uk-icon-copy:before,
.uk-icon-files-o:before {
  content: "\F0C5";
}
.uk-icon-paperclip:before {
  content: "\F0C6";
}
.uk-icon-save:before,
.uk-icon-floppy-o:before {
  content: "\F0C7";
}
.uk-icon-square:before {
  content: "\F0C8";
}
.uk-icon-navicon:before,
.uk-icon-reorder:before,
.uk-icon-bars:before {
  content: "\F0C9";
}
.uk-icon-list-ul:before {
  content: "\F0CA";
}
.uk-icon-list-ol:before {
  content: "\F0CB";
}
.uk-icon-strikethrough:before {
  content: "\F0CC";
}
.uk-icon-underline:before {
  content: "\F0CD";
}
.uk-icon-table:before {
  content: "\F0CE";
}
.uk-icon-magic:before {
  content: "\F0D0";
}
.uk-icon-truck:before {
  content: "\F0D1";
}
.uk-icon-pinterest:before {
  content: "\F0D2";
}
.uk-icon-pinterest-square:before {
  content: "\F0D3";
}
.uk-icon-google-plus-square:before {
  content: "\F0D4";
}
.uk-icon-google-plus:before {
  content: "\F0D5";
}
.uk-icon-money:before {
  content: "\F0D6";
}
.uk-icon-caret-down:before {
  content: "\F0D7";
}
.uk-icon-caret-up:before {
  content: "\F0D8";
}
.uk-icon-caret-left:before {
  content: "\F0D9";
}
.uk-icon-caret-right:before {
  content: "\F0DA";
}
.uk-icon-columns:before {
  content: "\F0DB";
}
.uk-icon-unsorted:before,
.uk-icon-sort:before {
  content: "\F0DC";
}
.uk-icon-sort-down:before,
.uk-icon-sort-desc:before {
  content: "\F0DD";
}
.uk-icon-sort-up:before,
.uk-icon-sort-asc:before {
  content: "\F0DE";
}
.uk-icon-envelope:before {
  content: "\F0E0";
}
.uk-icon-linkedin:before {
  content: "\F0E1";
}
.uk-icon-rotate-left:before,
.uk-icon-undo:before {
  content: "\F0E2";
}
.uk-icon-legal:before,
.uk-icon-gavel:before {
  content: "\F0E3";
}
.uk-icon-dashboard:before,
.uk-icon-tachometer:before {
  content: "\F0E4";
}
.uk-icon-comment-o:before {
  content: "\F0E5";
}
.uk-icon-comments-o:before {
  content: "\F0E6";
}
.uk-icon-flash:before,
.uk-icon-bolt:before {
  content: "\F0E7";
}
.uk-icon-sitemap:before {
  content: "\F0E8";
}
.uk-icon-umbrella:before {
  content: "\F0E9";
}
.uk-icon-paste:before,
.uk-icon-clipboard:before {
  content: "\F0EA";
}
.uk-icon-lightbulb-o:before {
  content: "\F0EB";
}
.uk-icon-exchange:before {
  content: "\F0EC";
}
.uk-icon-cloud-download:before {
  content: "\F0ED";
}
.uk-icon-cloud-upload:before {
  content: "\F0EE";
}
.uk-icon-user-md:before {
  content: "\F0F0";
}
.uk-icon-stethoscope:before {
  content: "\F0F1";
}
.uk-icon-suitcase:before {
  content: "\F0F2";
}
.uk-icon-bell-o:before {
  content: "\F0A2";
}
.uk-icon-coffee:before {
  content: "\F0F4";
}
.uk-icon-cutlery:before {
  content: "\F0F5";
}
.uk-icon-file-text-o:before {
  content: "\F0F6";
}
.uk-icon-building-o:before {
  content: "\F0F7";
}
.uk-icon-hospital-o:before {
  content: "\F0F8";
}
.uk-icon-ambulance:before {
  content: "\F0F9";
}
.uk-icon-medkit:before {
  content: "\F0FA";
}
.uk-icon-fighter-jet:before {
  content: "\F0FB";
}
.uk-icon-beer:before {
  content: "\F0FC";
}
.uk-icon-h-square:before {
  content: "\F0FD";
}
.uk-icon-plus-square:before {
  content: "\F0FE";
}
.uk-icon-angle-double-left:before {
  content: "\F100";
}
.uk-icon-angle-double-right:before {
  content: "\F101";
}
.uk-icon-angle-double-up:before {
  content: "\F102";
}
.uk-icon-angle-double-down:before {
  content: "\F103";
}
.uk-icon-angle-left:before {
  content: "\F104";
}
.uk-icon-angle-right:before {
  content: "\F105";
}
.uk-icon-angle-up:before {
  content: "\F106";
}
.uk-icon-angle-down:before {
  content: "\F107";
}
.uk-icon-desktop:before {
  content: "\F108";
}
.uk-icon-laptop:before {
  content: "\F109";
}
.uk-icon-tablet:before {
  content: "\F10A";
}
.uk-icon-mobile-phone:before,
.uk-icon-mobile:before {
  content: "\F10B";
}
.uk-icon-circle-o:before {
  content: "\F10C";
}
.uk-icon-quote-left:before {
  content: "\F10D";
}
.uk-icon-quote-right:before {
  content: "\F10E";
}
.uk-icon-spinner:before {
  content: "\F110";
}
.uk-icon-circle:before {
  content: "\F111";
}
.uk-icon-mail-reply:before,
.uk-icon-reply:before {
  content: "\F112";
}
.uk-icon-github-alt:before {
  content: "\F113";
}
.uk-icon-folder-o:before {
  content: "\F114";
}
.uk-icon-folder-open-o:before {
  content: "\F115";
}
.uk-icon-smile-o:before {
  content: "\F118";
}
.uk-icon-frown-o:before {
  content: "\F119";
}
.uk-icon-meh-o:before {
  content: "\F11A";
}
.uk-icon-gamepad:before {
  content: "\F11B";
}
.uk-icon-keyboard-o:before {
  content: "\F11C";
}
.uk-icon-flag-o:before {
  content: "\F11D";
}
.uk-icon-flag-checkered:before {
  content: "\F11E";
}
.uk-icon-terminal:before {
  content: "\F120";
}
.uk-icon-code:before {
  content: "\F121";
}
.uk-icon-mail-reply-all:before,
.uk-icon-reply-all:before {
  content: "\F122";
}
.uk-icon-star-half-empty:before,
.uk-icon-star-half-full:before,
.uk-icon-star-half-o:before {
  content: "\F123";
}
.uk-icon-location-arrow:before {
  content: "\F124";
}
.uk-icon-crop:before {
  content: "\F125";
}
.uk-icon-code-fork:before {
  content: "\F126";
}
.uk-icon-unlink:before,
.uk-icon-chain-broken:before {
  content: "\F127";
}
.uk-icon-question:before {
  content: "\F128";
}
.uk-icon-info:before {
  content: "\F129";
}
.uk-icon-exclamation:before {
  content: "\F12A";
}
.uk-icon-superscript:before {
  content: "\F12B";
}
.uk-icon-subscript:before {
  content: "\F12C";
}
.uk-icon-eraser:before {
  content: "\F12D";
}
.uk-icon-puzzle-piece:before {
  content: "\F12E";
}
.uk-icon-microphone:before {
  content: "\F130";
}
.uk-icon-microphone-slash:before {
  content: "\F131";
}
.uk-icon-shield:before {
  content: "\F132";
}
.uk-icon-calendar-o:before {
  content: "\F133";
}
.uk-icon-fire-extinguisher:before {
  content: "\F134";
}
.uk-icon-rocket:before {
  content: "\F135";
}
.uk-icon-maxcdn:before {
  content: "\F136";
}
.uk-icon-chevron-circle-left:before {
  content: "\F137";
}
.uk-icon-chevron-circle-right:before {
  content: "\F138";
}
.uk-icon-chevron-circle-up:before {
  content: "\F139";
}
.uk-icon-chevron-circle-down:before {
  content: "\F13A";
}
.uk-icon-html5:before {
  content: "\F13B";
}
.uk-icon-css3:before {
  content: "\F13C";
}
.uk-icon-anchor:before {
  content: "\F13D";
}
.uk-icon-unlock-alt:before {
  content: "\F13E";
}
.uk-icon-bullseye:before {
  content: "\F140";
}
.uk-icon-ellipsis-h:before {
  content: "\F141";
}
.uk-icon-ellipsis-v:before {
  content: "\F142";
}
.uk-icon-rss-square:before {
  content: "\F143";
}
.uk-icon-play-circle:before {
  content: "\F144";
}
.uk-icon-ticket:before {
  content: "\F145";
}
.uk-icon-minus-square:before {
  content: "\F146";
}
.uk-icon-minus-square-o:before {
  content: "\F147";
}
.uk-icon-level-up:before {
  content: "\F148";
}
.uk-icon-level-down:before {
  content: "\F149";
}
.uk-icon-check-square:before {
  content: "\F14A";
}
.uk-icon-pencil-square:before {
  content: "\F14B";
}
.uk-icon-external-link-square:before {
  content: "\F14C";
}
.uk-icon-share-square:before {
  content: "\F14D";
}
.uk-icon-compass:before {
  content: "\F14E";
}
.uk-icon-toggle-down:before,
.uk-icon-caret-square-o-down:before {
  content: "\F150";
}
.uk-icon-toggle-up:before,
.uk-icon-caret-square-o-up:before {
  content: "\F151";
}
.uk-icon-toggle-right:before,
.uk-icon-caret-square-o-right:before {
  content: "\F152";
}
.uk-icon-euro:before,
.uk-icon-eur:before {
  content: "\F153";
}
.uk-icon-gbp:before {
  content: "\F154";
}
.uk-icon-dollar:before,
.uk-icon-usd:before {
  content: "\F155";
}
.uk-icon-rupee:before,
.uk-icon-inr:before {
  content: "\F156";
}
.uk-icon-cny:before,
.uk-icon-rmb:before,
.uk-icon-yen:before,
.uk-icon-jpy:before {
  content: "\F157";
}
.uk-icon-ruble:before,
.uk-icon-rouble:before,
.uk-icon-rub:before {
  content: "\F158";
}
.uk-icon-won:before,
.uk-icon-krw:before {
  content: "\F159";
}
.uk-icon-bitcoin:before,
.uk-icon-btc:before {
  content: "\F15A";
}
.uk-icon-file:before {
  content: "\F15B";
}
.uk-icon-file-text:before {
  content: "\F15C";
}
.uk-icon-sort-alpha-asc:before {
  content: "\F15D";
}
.uk-icon-sort-alpha-desc:before {
  content: "\F15E";
}
.uk-icon-sort-amount-asc:before {
  content: "\F160";
}
.uk-icon-sort-amount-desc:before {
  content: "\F161";
}
.uk-icon-sort-numeric-asc:before {
  content: "\F162";
}
.uk-icon-sort-numeric-desc:before {
  content: "\F163";
}
.uk-icon-thumbs-up:before {
  content: "\F164";
}
.uk-icon-thumbs-down:before {
  content: "\F165";
}
.uk-icon-youtube-square:before {
  content: "\F166";
}
.uk-icon-youtube:before {
  content: "\F167";
}
.uk-icon-xing:before {
  content: "\F168";
}
.uk-icon-xing-square:before {
  content: "\F169";
}
.uk-icon-youtube-play:before {
  content: "\F16A";
}
.uk-icon-dropbox:before {
  content: "\F16B";
}
.uk-icon-stack-overflow:before {
  content: "\F16C";
}
.uk-icon-instagram:before {
  content: "\F16D";
}
.uk-icon-flickr:before {
  content: "\F16E";
}
.uk-icon-adn:before {
  content: "\F170";
}
.uk-icon-bitbucket:before {
  content: "\F171";
}
.uk-icon-bitbucket-square:before {
  content: "\F172";
}
.uk-icon-tumblr:before {
  content: "\F173";
}
.uk-icon-tumblr-square:before {
  content: "\F174";
}
.uk-icon-long-arrow-down:before {
  content: "\F175";
}
.uk-icon-long-arrow-up:before {
  content: "\F176";
}
.uk-icon-long-arrow-left:before {
  content: "\F177";
}
.uk-icon-long-arrow-right:before {
  content: "\F178";
}
.uk-icon-apple:before {
  content: "\F179";
}
.uk-icon-windows:before {
  content: "\F17A";
}
.uk-icon-android:before {
  content: "\F17B";
}
.uk-icon-linux:before {
  content: "\F17C";
}
.uk-icon-dribbble:before {
  content: "\F17D";
}
.uk-icon-skype:before {
  content: "\F17E";
}
.uk-icon-foursquare:before {
  content: "\F180";
}
.uk-icon-trello:before {
  content: "\F181";
}
.uk-icon-female:before {
  content: "\F182";
}
.uk-icon-male:before {
  content: "\F183";
}
.uk-icon-gittip:before,
.uk-icon-gratipay:before {
  content: "\F184";
}
.uk-icon-sun-o:before {
  content: "\F185";
}
.uk-icon-moon-o:before {
  content: "\F186";
}
.uk-icon-archive:before {
  content: "\F187";
}
.uk-icon-bug:before {
  content: "\F188";
}
.uk-icon-vk:before {
  content: "\F189";
}
.uk-icon-weibo:before {
  content: "\F18A";
}
.uk-icon-renren:before {
  content: "\F18B";
}
.uk-icon-pagelines:before {
  content: "\F18C";
}
.uk-icon-stack-exchange:before {
  content: "\F18D";
}
.uk-icon-arrow-circle-o-right:before {
  content: "\F18E";
}
.uk-icon-arrow-circle-o-left:before {
  content: "\F190";
}
.uk-icon-toggle-left:before,
.uk-icon-caret-square-o-left:before {
  content: "\F191";
}
.uk-icon-dot-circle-o:before {
  content: "\F192";
}
.uk-icon-wheelchair:before {
  content: "\F193";
}
.uk-icon-vimeo-square:before {
  content: "\F194";
}
.uk-icon-turkish-lira:before,
.uk-icon-try:before {
  content: "\F195";
}
.uk-icon-plus-square-o:before {
  content: "\F196";
}
.uk-icon-space-shuttle:before {
  content: "\F197";
}
.uk-icon-slack:before {
  content: "\F198";
}
.uk-icon-envelope-square:before {
  content: "\F199";
}
.uk-icon-wordpress:before {
  content: "\F19A";
}
.uk-icon-openid:before {
  content: "\F19B";
}
.uk-icon-institution:before,
.uk-icon-bank:before,
.uk-icon-university:before {
  content: "\F19C";
}
.uk-icon-mortar-board:before,
.uk-icon-graduation-cap:before {
  content: "\F19D";
}
.uk-icon-yahoo:before {
  content: "\F19E";
}
.uk-icon-google:before {
  content: "\F1A0";
}
.uk-icon-reddit:before {
  content: "\F1A1";
}
.uk-icon-reddit-square:before {
  content: "\F1A2";
}
.uk-icon-stumbleupon-circle:before {
  content: "\F1A3";
}
.uk-icon-stumbleupon:before {
  content: "\F1A4";
}
.uk-icon-delicious:before {
  content: "\F1A5";
}
.uk-icon-digg:before {
  content: "\F1A6";
}
.uk-icon-pied-piper:before {
  content: "\F1A7";
}
.uk-icon-pied-piper-alt:before {
  content: "\F1A8";
}
.uk-icon-drupal:before {
  content: "\F1A9";
}
.uk-icon-joomla:before {
  content: "\F1AA";
}
.uk-icon-language:before {
  content: "\F1AB";
}
.uk-icon-fax:before {
  content: "\F1AC";
}
.uk-icon-building:before {
  content: "\F1AD";
}
.uk-icon-child:before {
  content: "\F1AE";
}
.uk-icon-paw:before {
  content: "\F1B0";
}
.uk-icon-spoon:before {
  content: "\F1B1";
}
.uk-icon-cube:before {
  content: "\F1B2";
}
.uk-icon-cubes:before {
  content: "\F1B3";
}
.uk-icon-behance:before {
  content: "\F1B4";
}
.uk-icon-behance-square:before {
  content: "\F1B5";
}
.uk-icon-steam:before {
  content: "\F1B6";
}
.uk-icon-steam-square:before {
  content: "\F1B7";
}
.uk-icon-recycle:before {
  content: "\F1B8";
}
.uk-icon-automobile:before,
.uk-icon-car:before {
  content: "\F1B9";
}
.uk-icon-cab:before,
.uk-icon-taxi:before {
  content: "\F1BA";
}
.uk-icon-tree:before {
  content: "\F1BB";
}
.uk-icon-spotify:before {
  content: "\F1BC";
}
.uk-icon-deviantart:before {
  content: "\F1BD";
}
.uk-icon-soundcloud:before {
  content: "\F1BE";
}
.uk-icon-database:before {
  content: "\F1C0";
}
.uk-icon-file-pdf-o:before {
  content: "\F1C1";
}
.uk-icon-file-word-o:before {
  content: "\F1C2";
}
.uk-icon-file-excel-o:before {
  content: "\F1C3";
}
.uk-icon-file-powerpoint-o:before {
  content: "\F1C4";
}
.uk-icon-file-photo-o:before,
.uk-icon-file-picture-o:before,
.uk-icon-file-image-o:before {
  content: "\F1C5";
}
.uk-icon-file-zip-o:before,
.uk-icon-file-archive-o:before {
  content: "\F1C6";
}
.uk-icon-file-sound-o:before,
.uk-icon-file-audio-o:before {
  content: "\F1C7";
}
.uk-icon-file-movie-o:before,
.uk-icon-file-video-o:before {
  content: "\F1C8";
}
.uk-icon-file-code-o:before {
  content: "\F1C9";
}
.uk-icon-vine:before {
  content: "\F1CA";
}
.uk-icon-codepen:before {
  content: "\F1CB";
}
.uk-icon-jsfiddle:before {
  content: "\F1CC";
}
.uk-icon-life-bouy:before,
.uk-icon-life-buoy:before,
.uk-icon-life-saver:before,
.uk-icon-support:before,
.uk-icon-life-ring:before {
  content: "\F1CD";
}
.uk-icon-circle-o-notch:before {
  content: "\F1CE";
}
.uk-icon-ra:before,
.uk-icon-rebel:before {
  content: "\F1D0";
}
.uk-icon-ge:before,
.uk-icon-empire:before {
  content: "\F1D1";
}
.uk-icon-git-square:before {
  content: "\F1D2";
}
.uk-icon-git:before {
  content: "\F1D3";
}
.uk-icon-hacker-news:before {
  content: "\F1D4";
}
.uk-icon-tencent-weibo:before {
  content: "\F1D5";
}
.uk-icon-qq:before {
  content: "\F1D6";
}
.uk-icon-wechat:before,
.uk-icon-weixin:before {
  content: "\F1D7";
}
.uk-icon-send:before,
.uk-icon-paper-plane:before {
  content: "\F1D8";
}
.uk-icon-send-o:before,
.uk-icon-paper-plane-o:before {
  content: "\F1D9";
}
.uk-icon-history:before {
  content: "\F1DA";
}
.uk-icon-genderless:before,
.uk-icon-circle-thin:before {
  content: "\F1DB";
}
.uk-icon-header:before {
  content: "\F1DC";
}
.uk-icon-paragraph:before {
  content: "\F1DD";
}
.uk-icon-sliders:before {
  content: "\F1DE";
}
.uk-icon-share-alt:before {
  content: "\F1E0";
}
.uk-icon-share-alt-square:before {
  content: "\F1E1";
}
.uk-icon-bomb:before {
  content: "\F1E2";
}
.uk-icon-soccer-ball-o:before,
.uk-icon-futbol-o:before {
  content: "\F1E3";
}
.uk-icon-tty:before {
  content: "\F1E4";
}
.uk-icon-binoculars:before {
  content: "\F1E5";
}
.uk-icon-plug:before {
  content: "\F1E6";
}
.uk-icon-slideshare:before {
  content: "\F1E7";
}
.uk-icon-twitch:before {
  content: "\F1E8";
}
.uk-icon-yelp:before {
  content: "\F1E9";
}
.uk-icon-newspaper-o:before {
  content: "\F1EA";
}
.uk-icon-wifi:before {
  content: "\F1EB";
}
.uk-icon-calculator:before {
  content: "\F1EC";
}
.uk-icon-paypal:before {
  content: "\F1ED";
}
.uk-icon-google-wallet:before {
  content: "\F1EE";
}
.uk-icon-cc-visa:before {
  content: "\F1F0";
}
.uk-icon-cc-mastercard:before {
  content: "\F1F1";
}
.uk-icon-cc-discover:before {
  content: "\F1F2";
}
.uk-icon-cc-amex:before {
  content: "\F1F3";
}
.uk-icon-cc-paypal:before {
  content: "\F1F4";
}
.uk-icon-cc-stripe:before {
  content: "\F1F5";
}
.uk-icon-bell-slash:before {
  content: "\F1F6";
}
.uk-icon-bell-slash-o:before {
  content: "\F1F7";
}
.uk-icon-trash:before {
  content: "\F1F8";
}
.uk-icon-copyright:before {
  content: "\F1F9";
}
.uk-icon-at:before {
  content: "\F1FA";
}
.uk-icon-eyedropper:before {
  content: "\F1FB";
}
.uk-icon-paint-brush:before {
  content: "\F1FC";
}
.uk-icon-birthday-cake:before {
  content: "\F1FD";
}
.uk-icon-area-chart:before {
  content: "\F1FE";
}
.uk-icon-pie-chart:before {
  content: "\F200";
}
.uk-icon-line-chart:before {
  content: "\F201";
}
.uk-icon-lastfm:before {
  content: "\F202";
}
.uk-icon-lastfm-square:before {
  content: "\F203";
}
.uk-icon-toggle-off:before {
  content: "\F204";
}
.uk-icon-toggle-on:before {
  content: "\F205";
}
.uk-icon-bicycle:before {
  content: "\F206";
}
.uk-icon-bus:before {
  content: "\F207";
}
.uk-icon-ioxhost:before {
  content: "\F208";
}
.uk-icon-angellist:before {
  content: "\F209";
}
.uk-icon-cc:before {
  content: "\F20A";
}
.uk-icon-shekel:before,
.uk-icon-sheqel:before,
.uk-icon-ils:before {
  content: "\F20B";
}
.uk-icon-meanpath:before {
  content: "\F20C";
}
.uk-icon-buysellads:before {
  content: "\F20D";
}
.uk-icon-connectdevelop:before {
  content: "\F20E";
}
.uk-icon-dashcube:before {
  content: "\F210";
}
.uk-icon-forumbee:before {
  content: "\F211";
}
.uk-icon-leanpub:before {
  content: "\F212";
}
.uk-icon-sellsy:before {
  content: "\F213";
}
.uk-icon-shirtsinbulk:before {
  content: "\F214";
}
.uk-icon-simplybuilt:before {
  content: "\F215";
}
.uk-icon-skyatlas:before {
  content: "\F216";
}
.uk-icon-cart-plus:before {
  content: "\F217";
}
.uk-icon-cart-arrow-down:before {
  content: "\F218";
}
.uk-icon-diamond:before {
  content: "\F219";
}
.uk-icon-ship:before {
  content: "\F21A";
}
.uk-icon-user-secret:before {
  content: "\F21B";
}
.uk-icon-motorcycle:before {
  content: "\F21C";
}
.uk-icon-street-view:before {
  content: "\F21D";
}
.uk-icon-heartbeat:before {
  content: "\F21E";
}
.uk-icon-venus:before {
  content: "\F221";
}
.uk-icon-mars:before {
  content: "\F222";
}
.uk-icon-mercury:before {
  content: "\F223";
}
.uk-icon-transgender:before {
  content: "\F224";
}
.uk-icon-transgender-alt:before {
  content: "\F225";
}
.uk-icon-venus-double:before {
  content: "\F226";
}
.uk-icon-mars-double:before {
  content: "\F227";
}
.uk-icon-venus-mars:before {
  content: "\F228";
}
.uk-icon-mars-stroke:before {
  content: "\F229";
}
.uk-icon-mars-stroke-v:before {
  content: "\F22A";
}
.uk-icon-mars-stroke-h:before {
  content: "\F22B";
}
.uk-icon-neuter:before {
  content: "\F22C";
}
.uk-icon-facebook-official:before {
  content: "\F230";
}
.uk-icon-pinterest-p:before {
  content: "\F231";
}
.uk-icon-whatsapp:before {
  content: "\F232";
}
.uk-icon-server:before {
  content: "\F233";
}
.uk-icon-user-plus:before {
  content: "\F234";
}
.uk-icon-user-times:before {
  content: "\F235";
}
.uk-icon-hotel:before,
.uk-icon-bed:before {
  content: "\F236";
}
.uk-icon-viacoin:before {
  content: "\F237";
}
.uk-icon-train:before {
  content: "\F238";
}
.uk-icon-subway:before {
  content: "\F239";
}
.uk-icon-medium-logo:before {
  content: "\F23A";
}
.uk-icon-500px:before {
  content: "\F26E";
}
.uk-icon-amazon:before {
  content: "\F270";
}
.uk-icon-balance-scale:before {
  content: "\F24E";
}
.uk-icon-battery-empty:before,
.uk-icon-battery-0:before {
  content: "\F244";
}
.uk-icon-battery-quarter:before,
.uk-icon-battery-1:before {
  content: "\F243";
}
.uk-icon-battery-half:before,
.uk-icon-battery-2:before {
  content: "\F242";
}
.uk-icon-battery-three-quarters:before,
.uk-icon-battery-3:before {
  content: "\F241";
}
.uk-icon-battery-full:before,
.uk-icon-battery-4:before {
  content: "\F240";
}
.uk-icon-black-tie:before {
  content: "\F27E";
}
.uk-icon-calendar-check-o:before {
  content: "\F274";
}
.uk-icon-calendar-minus-o:before {
  content: "\F272";
}
.uk-icon-calendar-plus-o:before {
  content: "\F271";
}
.uk-icon-calendar-times-o:before {
  content: "\F273";
}
.uk-icon-cc-diners-club:before {
  content: "\F24C";
}
.uk-icon-cc-jcb:before {
  content: "\F24B";
}
.uk-icon-chrome:before {
  content: "\F268";
}
.uk-icon-clone:before {
  content: "\F24D";
}
.uk-icon-commenting:before {
  content: "\F27A";
}
.uk-icon-commenting-o:before {
  content: "\F27B";
}
.uk-icon-contao:before {
  content: "\F26D";
}
.uk-icon-creative-commons:before {
  content: "\F25E";
}
.uk-icon-expeditedssl:before {
  content: "\F23E";
}
.uk-icon-firefox:before {
  content: "\F269";
}
.uk-icon-fonticons:before {
  content: "\F280";
}
.uk-icon-get-pocket:before {
  content: "\F265";
}
.uk-icon-gg:before {
  content: "\F260";
}
.uk-icon-gg-circle:before {
  content: "\F261";
}
.uk-icon-hand-lizard-o:before {
  content: "\F258";
}
.uk-icon-hand-stop-o:before,
.uk-icon-hand-paper-o:before {
  content: "\F256";
}
.uk-icon-hand-peace-o:before {
  content: "\F25B";
}
.uk-icon-hand-pointer-o:before {
  content: "\F25A";
}
.uk-icon-hand-grab-o:before,
.uk-icon-hand-rock-o:before {
  content: "\F255";
}
.uk-icon-hand-scissors-o:before {
  content: "\F257";
}
.uk-icon-hand-spock-o:before {
  content: "\F259";
}
.uk-icon-hourglass:before {
  content: "\F254";
}
.uk-icon-hourglass-o:before {
  content: "\F250";
}
.uk-icon-hourglass-1:before,
.uk-icon-hourglass-start:before {
  content: "\F251";
}
.uk-icon-hourglass-2:before,
.uk-icon-hourglass-half:before {
  content: "\F252";
}
.uk-icon-hourglass-3:before,
.uk-icon-hourglass-end:before {
  content: "\F253";
}
.uk-icon-houzz:before {
  content: "\F27C";
}
.uk-icon-i-cursor:before {
  content: "\F246";
}
.uk-icon-industry:before {
  content: "\F275";
}
.uk-icon-internet-explorer:before {
  content: "\F26B";
}
.uk-icon-map:before {
  content: "\F279";
}
.uk-icon-map-o:before {
  content: "\F278";
}
.uk-icon-map-pin:before {
  content: "\F276";
}
.uk-icon-map-signs:before {
  content: "\F277";
}
.uk-icon-mouse-pointer:before {
  content: "\F245";
}
.uk-icon-object-group:before {
  content: "\F247";
}
.uk-icon-object-ungroup:before {
  content: "\F248";
}
.uk-icon-odnoklassniki:before {
  content: "\F263";
}
.uk-icon-odnoklassniki-square:before {
  content: "\F264";
}
.uk-icon-opencart:before {
  content: "\F23D";
}
.uk-icon-opera:before {
  content: "\F26A";
}
.uk-icon-optin-monster:before {
  content: "\F23C";
}
.uk-icon-registered:before {
  content: "\F25D";
}
.uk-icon-safari:before {
  content: "\F267";
}
.uk-icon-sticky-note:before {
  content: "\F249";
}
.uk-icon-sticky-note-o:before {
  content: "\F24A";
}
.uk-icon-tv:before,
.uk-icon-television:before {
  content: "\F26C";
}
.uk-icon-trademark:before {
  content: "\F25C";
}
.uk-icon-tripadvisor:before {
  content: "\F262";
}
.uk-icon-vimeo:before {
  content: "\F27D";
}
.uk-icon-wikipedia-w:before {
  content: "\F266";
}
.uk-icon-yc:before,
.uk-icon-y-combinator:before {
  content: "\F23B";
}
.uk-icon-yc-square:before,
.uk-icon-y-combinator-square:before {
  content: "\F1D4";
}
.uk-icon-bluetooth:before {
  content: "\F293";
}
.uk-icon-bluetooth-b:before {
  content: "\F294";
}
.uk-icon-codiepie:before {
  content: "\F284";
}
.uk-icon-credit-card-alt:before {
  content: "\F283";
}
.uk-icon-edge:before {
  content: "\F282";
}
.uk-icon-fort-awesome:before {
  content: "\F286";
}
.uk-icon-hashtag:before {
  content: "\F292";
}
.uk-icon-mixcloud:before {
  content: "\F289";
}
.uk-icon-modx:before {
  content: "\F285";
}
.uk-icon-pause-circle:before {
  content: "\F28B";
}
.uk-icon-pause-circle-o:before {
  content: "\F28C";
}
.uk-icon-percent:before {
  content: "\F295";
}
.uk-icon-product-hunt:before {
  content: "\F288";
}
.uk-icon-reddit-alien:before {
  content: "\F281";
}
.uk-icon-scribd:before {
  content: "\F28A";
}
.uk-icon-shopping-bag:before {
  content: "\F290";
}
.uk-icon-shopping-basket:before {
  content: "\F291";
}
.uk-icon-stop-circle:before {
  content: "\F28D";
}
.uk-icon-stop-circle-o:before {
  content: "\F28E";
}
.uk-icon-usb:before {
  content: "\F287";
}
.uk-icon-american-sign-language-interpreting:before,
.uk-icon-asl-interpreting:before {
  content: "\F2A3";
}
.uk-icon-assistive-listening-systems:before {
  content: "\F2A2";
}
.uk-icon-audio-description:before {
  content: "\F29E";
}
.uk-icon-blind:before {
  content: "\F29D";
}
.uk-icon-braille:before {
  content: "\F2A1";
}
.uk-icon-deaf:before,
.uk-icon-deafness:before {
  content: "\F2A4";
}
.uk-icon-envira:before {
  content: "\F299";
}
.uk-icon-font-awesome:before,
.uk-icon-fa:before {
  content: "\F2B4";
}
.uk-icon-first-order:before {
  content: "\F2B0";
}
.uk-icon-gitlab:before {
  content: "\F296";
}
.uk-icon-glide:before {
  content: "\F2A5";
}
.uk-icon-glide-g:before {
  content: "\F2A6";
}
.uk-icon-hard-of-hearing:before {
  content: "\F2A4";
}
.uk-icon-low-vision:before {
  content: "\F2A8";
}
.uk-icon-question-circle-o:before {
  content: "\F29C";
}
.uk-icon-sign-language:before,
.uk-icon-signing:before {
  content: "\F2A7";
}
.uk-icon-snapchat:before {
  content: "\F2AB";
}
.uk-icon-snapchat-ghost:before {
  content: "\F2AC";
}
.uk-icon-snapchat-square:before {
  content: "\F2AD";
}
.uk-icon-themeisle:before {
  content: "\F2B2";
}
.uk-icon-universal-access:before {
  content: "\F29A";
}
.uk-icon-viadeo:before {
  content: "\F2A9";
}
.uk-icon-viadeo-square:before {
  content: "\F2AA";
}
.uk-icon-volume-control-phone:before {
  content: "\F2A0";
}
.uk-icon-wheelchair-alt:before {
  content: "\F29B";
}
.uk-icon-wpbeginner:before {
  content: "\F297";
}
.uk-icon-wpforms:before {
  content: "\F298";
}
.uk-icon-yoast:before {
  content: "\F2B1";
}
.uk-icon-adress-book:before {
  content: "\F2B9";
}
.uk-icon-adress-book-o:before {
  content: "\F2BA";
}
.uk-icon-adress-card:before {
  content: "\F2BB";
}
.uk-icon-adress-card-o:before {
  content: "\F2BC";
}
.uk-icon-bandcamp:before {
  content: "\F2D5";
}
.uk-icon-bath:before {
  content: "\F2CD";
}
.uk-icon-bathub:before {
  content: "\F2CD";
}
.uk-icon-drivers-license:before {
  content: "\F2C2";
}
.uk-icon-drivers-license-o:before {
  content: "\F2C3";
}
.uk-icon-eercast:before {
  content: "\F2DA";
}
.uk-icon-envelope-open:before {
  content: "\F2B6";
}
.uk-icon-envelope-open-o:before {
  content: "\F2B7";
}
.uk-icon-etsy:before {
  content: "\F2D7";
}
.uk-icon-free-code-camp:before {
  content: "\F2C5";
}
.uk-icon-grav:before {
  content: "\F2D6";
}
.uk-icon-handshake-o:before {
  content: "\F2B5";
}
.uk-icon-id-badge:before {
  content: "\F2C1";
}
.uk-icon-id-card:before {
  content: "\F2C2";
}
.uk-icon-id-card-o:before {
  content: "\F2C3";
}
.uk-icon-imdb:before {
  content: "\F2D8";
}
.uk-icon-linode:before {
  content: "\F2B8";
}
.uk-icon-meetup:before {
  content: "\F2E0";
}
.uk-icon-microchip:before {
  content: "\F2DB";
}
.uk-icon-podcast:before {
  content: "\F2CE";
}
.uk-icon-quora:before {
  content: "\F2C4";
}
.uk-icon-ravelry:before {
  content: "\F2D9";
}
.uk-icon-s15:before {
  content: "\F2CD";
}
.uk-icon-shower:before {
  content: "\F2CC";
}
.uk-icon-snowflake-o:before {
  content: "\F2DC";
}
.uk-icon-superpowers:before {
  content: "\F2DD";
}
.uk-icon-telegram:before {
  content: "\F2C6";
}
.uk-icon-thermometer:before {
  content: "\F2C7";
}
.uk-icon-thermometer-0:before {
  content: "\F2CB";
}
.uk-icon-thermometer-1:before {
  content: "\F2CA";
}
.uk-icon-thermometer-2:before {
  content: "\F2C9";
}
.uk-icon-thermometer-3:before {
  content: "\F2C8";
}
.uk-icon-thermometer-4:before {
  content: "\F2C7";
}
.uk-icon-thermometer-empty:before {
  content: "\F2CB";
}
.uk-icon-thermometer-full:before {
  content: "\F2C7";
}
.uk-icon-thermometer-half:before {
  content: "\F2C9";
}
.uk-icon-thermometer-quarter:before {
  content: "\F2CA";
}
.uk-icon-thermometer-three-quarters:before {
  content: "\F2C8";
}
.uk-icon-times-rectangle:before {
  content: "\F2D3";
}
.uk-icon-times-rectangle-o:before {
  content: "\F2D4";
}
.uk-icon-user-circle:before {
  content: "\F2BD";
}
.uk-icon-user-circle-o:before {
  content: "\F2BE";
}
.uk-icon-user-o:before {
  content: "\F2C0";
}
.uk-icon-vcard:before {
  content: "\F2BB";
}
.uk-icon-vcard-o:before {
  content: "\F2BC";
}
.uk-icon-widow-close:before {
  content: "\F2D3";
}
.uk-icon-widow-close-o:before {
  content: "\F2D4";
}
.uk-icon-window-maximize:before {
  content: "\F2D0";
}
.uk-icon-window-minimize:before {
  content: "\F2D1";
}
.uk-icon-window-restore:before {
  content: "\F2D2";
}
.uk-icon-wpexplorer:before {
  content: "\F2DE";
}
/* ========================================================================
   Component: Close
 ========================================================================== */
/*
 * Removes inner padding and border in Firefox 4+.
 */
.uk-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * 1. Correct inability to style clickable `input` types in iOS.
 * 2. Remove margins in Chrome, Safari and Opera.
 * 3. Remove borders for `button`.
 * 4. Address `overflow` set to `hidden` in IE 8/9/10/11.
 * 5. Correct `font` properties and `color` not being inherited for `button`.
 * 6. Address inconsistent `text-transform` inheritance which is only inherit in Firefox and IE
 * 7. Remove default `button` padding and background color
 * 8. Style
 */
.uk-close {
  /* 1 */
  -webkit-appearance: none;
  /* 2 */
  margin: 0;
  /* 3 */
  border: none;
  /* 4 */
  overflow: visible;
  /* 5 */
  font: inherit;
  color: inherit;
  /* 6 */
  text-transform: none;
  /* 7. */
  padding: 0;
  background: transparent;
  /* 8 */
  display: inline-block;
  box-sizing: content-box;
  width: 20px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  opacity: 0.3;
}
/* Icon */
.uk-close:after {
  display: block;
  content: "\F00D";
  font-family: FontAwesome;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 * 3. Required for `a` elements
 */
.uk-close:hover,
.uk-close:focus {
  opacity: 0.5;
  /* 2 */
  outline: none;
  /* 3 */
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
/* Modifier
 ========================================================================== */
.uk-close-alt {
  padding: 2px;
  border-radius: 50%;
  background: #eee;
  opacity: 1;
}
/* Hover */
.uk-close-alt:hover,
.uk-close-alt:focus {
  opacity: 1;
}
/* Icon */
.uk-close-alt:after {
  opacity: 0.5;
}
.uk-close-alt:hover:after,
.uk-close-alt:focus:after {
  opacity: 0.8;
}
/* ========================================================================
   Component: Badge
 ========================================================================== */
.uk-badge {
  display: inline-block;
  padding: 0 5px;
  background: #00a8e6;
  font-size: 10px;
  font-weight: bold;
  line-height: 14px;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  text-transform: none;
}
/*
 * Keep color when badge is a link
 */
a.uk-badge:hover {
  color: #fff;
}
/* Modifier: `uk-badge-notification`;
 ========================================================================== */
.uk-badge-notification {
  box-sizing: border-box;
  min-width: 18px;
  border-radius: 500px;
  font-size: 12px;
  line-height: 18px;
}
/* Color modifier
 ========================================================================== */
/*
 * Modifier: `uk-badge-success`
 */
.uk-badge-success {
  background-color: #8cc14c;
}
/*
 * Modifier: `uk-badge-warning`
 */
.uk-badge-warning {
  background-color: #faa732;
}
/*
 * Modifier: `uk-badge-danger`
 */
.uk-badge-danger {
  background-color: #da314b;
}
/* ========================================================================
   Component: Alert
 ========================================================================== */
.uk-alert {
  margin-bottom: 15px;
  padding: 10px;
  background: #ebf7fd;
  color: #2d7091;
}
/*
 * Add margin if adjacent element
 */
* + .uk-alert {
  margin-top: 15px;
}
/*
 * Remove margin from the last-child
 */
.uk-alert > :last-child {
  margin-bottom: 0;
}
/*
 * Keep color for headings if the default heading color is changed
 */
.uk-alert h1,
.uk-alert h2,
.uk-alert h3,
.uk-alert h4,
.uk-alert h5,
.uk-alert h6 {
  color: inherit;
}
/* Close in alert
 ========================================================================== */
.uk-alert > .uk-close:first-child {
  float: right;
}
/*
 * Remove margin from adjacent element
 */
.uk-alert > .uk-close:first-child + * {
  margin-top: 0;
}
/* Modifier: `uk-alert-success`
 ========================================================================== */
.uk-alert-success {
  background: #f2fae3;
  color: #659f13;
}
/* Modifier: `uk-alert-warning`
 ========================================================================== */
.uk-alert-warning {
  background: #fffceb;
  color: #e28327;
}
/* Modifier: `uk-alert-danger`
 ========================================================================== */
.uk-alert-danger {
  background: #fff1f0;
  color: #d85030;
}
/* Modifier: `uk-alert-large`
 ========================================================================== */
.uk-alert-large {
  padding: 20px;
}
.uk-alert-large > .uk-close:first-child {
  margin: -10px -10px 0 0;
}
/* ========================================================================
   Component: Thumbnail
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Responsive behavior
 * 3. Corrects `max-width` behavior sed
 * 4. Required for `figure` element
 * 5. Style
 */
.uk-thumbnail {
  /* 1 */
  display: inline-block;
  /* 2 */
  max-width: 100%;
  /* 3 */
  box-sizing: border-box;
  /* 3 */
  margin: 0;
  /* 4 */
  padding: 4px;
  border: 1px solid #ddd;
  background: #fff;
}
/*
 * Hover state for `a` elements
 * 1. Apply hover style also to focus state
 * 2. Needed for caption
 * 3. Remove default focus style
 */
a.uk-thumbnail:hover,
a.uk-thumbnail:focus {
  border-color: #aaaaaa;
  background-color: #fff;
  /* 2 */
  text-decoration: none;
  /* 3 */
  outline: none;
}
/* Caption
 ========================================================================== */
.uk-thumbnail-caption {
  padding-top: 4px;
  text-align: center;
  color: #444;
}
/* Sizes
 ========================================================================== */
.uk-thumbnail-mini {
  width: 150px;
}
.uk-thumbnail-small {
  width: 200px;
}
.uk-thumbnail-medium {
  width: 300px;
}
.uk-thumbnail-large {
  width: 400px;
}
.uk-thumbnail-expand,
.uk-thumbnail-expand > img {
  width: 100%;
}
/* ========================================================================
   Component: Overlay
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Create position context
 * 3. Set max-width for responsive images to prevent `inline-block` consequences
 * 4. Remove the gap between the container and its child element
 * 5. Needed for transitions and to fixed wrong scaling calculation for images in Chrome
 * 6. Fixed `overflow: hidden` to be ignored with border-radius and CSS transforms in Webkit
 * 7. Reset margin
 */
.uk-overlay {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
  /* 5 */
  overflow: hidden;
  /* 6 */
  -webkit-transform: translateZ(0);
  /* 7 */
  margin: 0;
}
/* 6 for Safari */
.uk-overlay.uk-border-circle {
  -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}
/*
 * Remove margin from content
 */
.uk-overlay > :first-child {
  margin-bottom: 0;
}
/* Sub-object `uk-overlay-panel`
 ========================================================================== */
/*
 * 1. Position cover
 * 2. Style
 */
.uk-overlay-panel {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* 2 */
  padding: 20px;
  color: #fff;
}
/*
 * Remove margin from the last-child
 */
.uk-overlay-panel > :last-child,
.uk-overlay-panel.uk-flex > * > :last-child {
  margin-bottom: 0;
}
/*
 * Keep color for headings if the default heading color is changed
 */
.uk-overlay-panel h1,
.uk-overlay-panel h2,
.uk-overlay-panel h3,
.uk-overlay-panel h4,
.uk-overlay-panel h5,
.uk-overlay-panel h6 {
  color: inherit;
}
.uk-overlay-panel a:not([class]) {
  color: inherit;
  text-decoration: underline;
}
.uk-overlay-panel a[class*='uk-icon-']:not(.uk-icon-button) {
  color: inherit;
}
/* Sub-object `uk-overlay-hover` and `uk-overlay-active`
 ========================================================================== */
.uk-overlay-hover:not(:hover):not(.uk-hover) .uk-overlay-panel:not(.uk-ignore) {
  opacity: 0;
}
.uk-overlay-active :not(.uk-active) > .uk-overlay-panel:not(.uk-ignore) {
  opacity: 0;
}
/* Modifier `uk-overlay-background`
 ========================================================================== */
.uk-overlay-background {
  background: rgba(0, 0, 0, 0.5);
}
/* Modifier `uk-overlay-image`
 ========================================================================== */
/*
 * Reset panel
 */
.uk-overlay-image {
  padding: 0;
}
/* Position modifiers
 ========================================================================== */
.uk-overlay-top {
  bottom: auto;
}
.uk-overlay-bottom {
  top: auto;
}
.uk-overlay-left {
  right: auto;
}
.uk-overlay-right {
  left: auto;
}
/* Sub-object `uk-overlay-icon`
 ========================================================================== */
.uk-overlay-icon:before {
  content: "\F002";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  margin-left: -25px;
  font-size: 50px;
  line-height: 1;
  font-family: FontAwesome;
  text-align: center;
  color: #fff;
}
/* Transitions
 ========================================================================== */
.uk-overlay-fade,
.uk-overlay-scale,
.uk-overlay-spin,
.uk-overlay-grayscale,
.uk-overlay-blur,
[class*='uk-overlay-slide'] {
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  transition-property: opacity, transform, filter;
}
.uk-overlay-active .uk-overlay-fade,
.uk-overlay-active .uk-overlay-scale,
.uk-overlay-active .uk-overlay-spin,
.uk-overlay-active [class*='uk-overlay-slide'] {
  transition-duration: 0.8s;
}
/*
 * Fade
 */
.uk-overlay-fade {
  opacity: 0.7;
}
.uk-overlay-hover:hover .uk-overlay-fade,
.uk-overlay-hover.uk-hover .uk-overlay-fade,
.uk-overlay-active .uk-active > .uk-overlay-fade {
  opacity: 1;
}
/*
 * Scale
 */
.uk-overlay-scale {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.uk-overlay-hover:hover .uk-overlay-scale,
.uk-overlay-hover.uk-hover .uk-overlay-scale,
.uk-overlay-active .uk-active > .uk-overlay-scale {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
/*
 * Spin
 */
.uk-overlay-spin {
  -webkit-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
}
.uk-overlay-hover:hover .uk-overlay-spin,
.uk-overlay-hover.uk-hover .uk-overlay-spin,
.uk-overlay-active .uk-active > .uk-overlay-spin {
  -webkit-transform: scale(1.1) rotate(3deg);
  transform: scale(1.1) rotate(3deg);
}
/*
 * Grayscale
 */
.uk-overlay-grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.uk-overlay-hover:hover .uk-overlay-grayscale,
.uk-overlay-hover.uk-hover .uk-overlay-grayscale,
.uk-overlay-active .uk-active > .uk-overlay-grayscale {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
/*
 * Slide
 */
[class*='uk-overlay-slide'] {
  opacity: 0;
}
/* Top */
.uk-overlay-slide-top {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
/* Bottom */
.uk-overlay-slide-bottom {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
/* Left */
.uk-overlay-slide-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
/* Right */
.uk-overlay-slide-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
/* Hover */
.uk-overlay-hover:hover [class*='uk-overlay-slide'],
.uk-overlay-hover.uk-hover [class*='uk-overlay-slide'],
.uk-overlay-active .uk-active > [class*='uk-overlay-slide'] {
  opacity: 1;
  -webkit-transform: translateX(0) translateY(0);
  transform: translateX(0) translateY(0);
}
/* DEPRECATED
 * Sub-object `uk-overlay-area`
 ========================================================================== */
/*
 * 1. Set position
 * 2. Set style
 * 3. Fade-in transition
 */
.uk-overlay-area {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* 2 */
  background: rgba(0, 0, 0, 0.3);
  /* 3 */
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  -webkit-transform: translate3d(0, 0, 0);
}
/*
 * Hover
 * 1. `uk-hover` to support touch devices
 * 2. Use optional `uk-overlay-toggle` to trigger the overlay earlier
 */
.uk-overlay:hover .uk-overlay-area,
.uk-overlay.uk-hover .uk-overlay-area,
.uk-overlay-toggle:hover .uk-overlay-area,
.uk-overlay-toggle.uk-hover .uk-overlay-area {
  opacity: 1;
}
/*
 * Icon
 */
.uk-overlay-area:empty:before {
  content: "\F002";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  margin-left: -25px;
  font-size: 50px;
  line-height: 1;
  font-family: FontAwesome;
  text-align: center;
  color: #fff;
}
/* DEPRECATED
 * Sub-object `uk-overlay-area-content`
 ========================================================================== */
/*
 * Remove whitespace between child elements when using `inline-block`
 * Needed for Firefox
 */
.uk-overlay-area:not(:empty) {
  font-size: 0.001px;
}
/*
 * 1. Needed for vertical alignment
 */
.uk-overlay-area:not(:empty):before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
/*
 * 1. Set vertical alignment
 * 2. Reset whitespace hack
 * 3. Set horizontal alignment
 * 4. Set style
 */
.uk-overlay-area-content {
  /* 1 */
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  vertical-align: middle;
  /* 2 */
  font-size: 1rem;
  /* 3 */
  text-align: center;
  /* 4 */
  padding: 0 15px;
  color: #fff;
}
/*
 * Remove margin from the last-child
 */
.uk-overlay-area-content > :last-child {
  margin-bottom: 0;
}
/*
 * Links in overlay area
 */
.uk-overlay-area-content a:not([class]),
.uk-overlay-area-content a:not([class]):hover {
  color: inherit;
}
/* DEPRECATED
 * Sub-object `uk-overlay-caption`
 ========================================================================== */
/*
 * 1. Set position
 * 2. Set style
 * 3. Fade-in transition
 */
.uk-overlay-caption {
  /* 1 */
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* 2 */
  padding: 15px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  /* 3 */
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  -webkit-transform: translate3d(0, 0, 0);
}
/*
 * Hover
 * 1. `uk-hover` to support touch devices
 * 2. Use optional `uk-overlay-toggle` to trigger the overlay earlier
 */
.uk-overlay:hover .uk-overlay-caption,
.uk-overlay.uk-hover .uk-overlay-caption,
.uk-overlay-toggle:hover .uk-overlay-caption,
.uk-overlay-toggle.uk-hover .uk-overlay-caption {
  opacity: 1;
}
/* ========================================================================
   Component: Column
 ========================================================================== */
[class*='uk-column-'] {
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
}
/* Width modifiers
 ========================================================================== */
.uk-column-1-2 {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}
.uk-column-1-3 {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
}
.uk-column-1-4 {
  -webkit-column-count: 4;
  -moz-column-count: 4;
  column-count: 4;
}
.uk-column-1-5 {
  -webkit-column-count: 5;
  -moz-column-count: 5;
  column-count: 5;
}
.uk-column-1-6 {
  -webkit-column-count: 6;
  -moz-column-count: 6;
  column-count: 6;
}
/* Phone landscape and bigger */
@media (min-width: 480px) {
  .uk-column-small-1-2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .uk-column-small-1-3 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
  .uk-column-small-1-4 {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }
  .uk-column-small-1-5 {
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
  }
  .uk-column-small-1-6 {
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
  }
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-column-medium-1-2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .uk-column-medium-1-3 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
  .uk-column-medium-1-4 {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }
  .uk-column-medium-1-5 {
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
  }
  .uk-column-medium-1-6 {
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .uk-column-large-1-2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .uk-column-large-1-3 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
  .uk-column-large-1-4 {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }
  .uk-column-large-1-5 {
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
  }
  .uk-column-large-1-6 {
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .uk-column-xlarge-1-2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .uk-column-xlarge-1-3 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
  .uk-column-xlarge-1-4 {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }
  .uk-column-xlarge-1-5 {
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
  }
  .uk-column-xlarge-1-6 {
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
  }
}
/* ========================================================================
   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;
}
/* Hide animated element if scrollspy is used */
@media screen {
  [data-uk-scrollspy*='uk-animation-']:not([data-uk-scrollspy*='target']) {
    opacity: 0;
  }
}
/*
 * Fade
 * Higher specificity (!important) needed because of reverse modifier
 */
.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 !important;
  animation-timing-function: linear !important;
}
/*
 * Fade with 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;
}
/*
 * Fade with 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;
}
/*
 * Scale
 */
.uk-animation-scale {
  -webkit-animation-name: uk-scale-12;
  animation-name: uk-scale-12;
}
/*
 * Shake
 */
.uk-animation-shake {
  -webkit-animation-name: uk-shake;
  animation-name: uk-shake;
}
/* Direction modifiers
 ========================================================================== */
.uk-animation-reverse {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* Duration modifiers
========================================================================== */
.uk-animation-15 {
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
}
/* Origin modifiers
========================================================================== */
.uk-animation-top-left {
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.uk-animation-top-center {
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
}
.uk-animation-top-right {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.uk-animation-middle-left {
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
}
.uk-animation-middle-right {
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}
.uk-animation-bottom-left {
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.uk-animation-bottom-center {
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.uk-animation-bottom-right {
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
/* Sub-object: `uk-animation-hover`
========================================================================== */
/*
 * Enable animation only on hover
 * Note: Firefox also needs this because animations are not triggered when switching between display `hidden` and `block`
 */
.uk-animation-hover:not(:hover),
.uk-animation-hover:not(:hover) [class*='uk-animation-'],
.uk-touch .uk-animation-hover:not(.uk-hover),
.uk-touch .uk-animation-hover:not(.uk-hover) [class*='uk-animation-'] {
  -webkit-animation-name: none;
  animation-name: none;
}
/* Keyframes: Fade
 * Used by dropdown, datepicker and slideshow component
 ========================================================================== */
@-webkit-keyframes uk-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes uk-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Keyframes: Fade with 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;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
 * 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;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
 * 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;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*
 * 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;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Keyframes: Fade with scale
 ========================================================================== */
/*
 * Scale by 0.2
 */
@-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;
    transform: scale(0.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/*
 * Scale by 1.5
 * Used by slideshow component
 */
@-webkit-keyframes uk-fade-scale-15 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@keyframes uk-fade-scale-15 {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/*
 * Scale by 1.8
 */
@-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;
    transform: scale(1.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* Keyframes: Slide
 * Used by slideshow component
 ========================================================================== */
/*
 * Left
 */
@-webkit-keyframes uk-slide-left {
  0% {
    -webkit-transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes uk-slide-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
/*
 * Right
 */
@-webkit-keyframes uk-slide-right {
  0% {
    -webkit-transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes uk-slide-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
/*
 * Left third
 */
@-webkit-keyframes uk-slide-left-33 {
  0% {
    -webkit-transform: translateX(33%);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes uk-slide-left-33 {
  0% {
    transform: translateX(33%);
  }
  100% {
    transform: translateX(0);
  }
}
/*
 * Right third
 */
@-webkit-keyframes uk-slide-right-33 {
  0% {
    -webkit-transform: translateX(-33%);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes uk-slide-right-33 {
  0% {
    transform: translateX(-33%);
  }
  100% {
    transform: translateX(0);
  }
}
/* Keyframes: Scale
 ========================================================================== */
@-webkit-keyframes uk-scale-12 {
  0% {
    -webkit-transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes uk-scale-12 {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/* Keyframes: Rotate
 * Used by icon component
 ========================================================================== */
@-webkit-keyframes uk-rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes uk-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
/* Keyframes: 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% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-9px);
  }
  20% {
    transform: translateX(8px);
  }
  30% {
    transform: translateX(-7px);
  }
  40% {
    transform: translateX(6px);
  }
  50% {
    transform: translateX(-5px);
  }
  60% {
    transform: translateX(4px);
  }
  70% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(2px);
  }
  90% {
    transform: translateX(-1px);
  }
}
/* Keyframes: Fade with slide fixed
 * Used by dropdown and search component
 ========================================================================== */
/*
 * Top fixed
 */
@-webkit-keyframes uk-slide-top-fixed {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes uk-slide-top-fixed {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
 * Bottom fixed
 */
@-webkit-keyframes uk-slide-bottom-fixed {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes uk-slide-bottom-fixed {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ========================================================================
   Component: Dropdown
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Box-sizing is needed for `uk-dropdown-justify`
 * 4. Set width
 */
.uk-dropdown,
.uk-dropdown-blank {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1020;
  /* 3 */
  box-sizing: border-box;
  /* 4 */
  width: 200px;
}
/*
 * Dropdown style
 * 1. Reset button group whitespace hack
 */
.uk-dropdown {
  padding: 15px;
  background: #f5f5f5;
  color: #444;
  /* 1 */
  font-size: 1rem;
  vertical-align: top;
}
/* Focus */
.uk-dropdown:focus {
  outline: none;
}
/*
 * 1. Show dropdown
 * 2. Set animation
 * 3. Needed for scale animation
 */
.uk-open > .uk-dropdown,
.uk-open > .uk-dropdown-blank {
  /* 1 */
  display: block;
  /* 2 */
  -webkit-animation: uk-fade 0.2s ease-in-out;
  animation: uk-fade 0.2s ease-in-out;
  /* 3 */
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
/* Alignment modifiers
 ========================================================================== */
/*
 * Modifier
 */
.uk-dropdown-top {
  margin-top: -5px;
}
.uk-dropdown-bottom {
  margin-top: 5px;
}
.uk-dropdown-left {
  margin-left: -5px;
}
.uk-dropdown-right {
  margin-left: 5px;
}
/* Nav in dropdown
 ========================================================================== */
.uk-dropdown .uk-nav {
  margin: 0 -15px;
}
/* Grid and panel in dropdown
 ========================================================================== */
/*
* Vertical gutter
*/
/*
 * Grid
 * Higher specificity to override large gutter
 */
.uk-grid .uk-dropdown-grid + .uk-dropdown-grid {
  margin-top: 15px;
}
/* Panels */
.uk-dropdown-grid > [class*='uk-width-'] > .uk-panel + .uk-panel {
  margin-top: 15px;
}
/* Tablet and bigger */
@media (min-width: 768px) {
  /*
     * Horizontal gutter
     */
  .uk-dropdown:not(.uk-dropdown-stack) > .uk-dropdown-grid {
    margin-left: -15px;
    margin-right: -15px;
  }
  .uk-dropdown:not(.uk-dropdown-stack) > .uk-dropdown-grid > [class*='uk-width-'] {
    padding-left: 15px;
    padding-right: 15px;
  }
  /*
     * Column divider
     */
  .uk-dropdown:not(.uk-dropdown-stack) > .uk-dropdown-grid > [class*='uk-width-']:nth-child(n+2) {
    border-left: 1px solid #ddd;
  }
  /*
     * Width multiplier for dropdown columns
     */
  .uk-dropdown-width-2:not(.uk-dropdown-stack) {
    width: 400px;
  }
  .uk-dropdown-width-3:not(.uk-dropdown-stack) {
    width: 600px;
  }
  .uk-dropdown-width-4:not(.uk-dropdown-stack) {
    width: 800px;
  }
  .uk-dropdown-width-5:not(.uk-dropdown-stack) {
    width: 1000px;
  }
}
/* Phone landscape and smaller */
@media (max-width: 767px) {
  /*
     * Stack columns and take full width
     */
  .uk-dropdown-grid > [class*='uk-width-'] {
    width: 100%;
  }
  /*
     * Vertical gutter
     */
  .uk-dropdown-grid > [class*='uk-width-']:nth-child(n+2) {
    margin-top: 15px;
  }
}
/*
* Stack grid columns
*/
.uk-dropdown-stack > .uk-dropdown-grid > [class*='uk-width-'] {
  width: 100%;
}
.uk-dropdown-stack > .uk-dropdown-grid > [class*='uk-width-']:nth-child(n+2) {
  margin-top: 15px;
}
/* Modifier `uk-dropdown-small`
 ========================================================================== */
/*
 * Set min-width and text expands dropdown if needed
 */
.uk-dropdown-small {
  min-width: 150px;
  width: auto;
  padding: 5px;
  white-space: nowrap;
}
/*
 * Nav in dropdown
 */
.uk-dropdown-small .uk-nav {
  margin: 0 -5px;
}
/* Modifier: `uk-dropdown-navbar`
 ========================================================================== */
.uk-dropdown-navbar {
  margin-top: 0;
  background: #f5f5f5;
  color: #444;
}
.uk-open > .uk-dropdown-navbar {
  -webkit-animation: uk-slide-top-fixed 0.2s ease-in-out;
  animation: uk-slide-top-fixed 0.2s ease-in-out;
}
/* Modifier `uk-dropdown-scrollable`
 ========================================================================== */
/*
 * Usefull for long lists
 */
.uk-dropdown-scrollable {
  overflow-y: auto;
  max-height: 200px;
}
/* Sub-object: `uk-dropdown-overlay`
 ========================================================================== */
/* ========================================================================
   Component: Modal
 ========================================================================== */
/*
 * This is the modal overlay and modal dialog container
 * 1. Hide by default
 * 2. Set fixed position
 * 3. Allow scrolling for the modal dialog
 * 4. Mask the background page
 * 5. Fade-in transition
 * 6. Deactivate browser history navigation in IE11
 * 7. force hardware acceleration to prevent browser rendering hiccups
 */
.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 */
  background: rgba(0, 0, 0, 0.6);
  /* 5 */
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  /* 6 */
  touch-action: cross-slide-y pinch-zoom double-tap-zoom;
  /* 7 */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
/*
 * Open state
 */
.uk-modal.uk-open {
  opacity: 1;
}
/*
 * Prevents duplicated scrollbar caused by 4.
 */
.uk-modal-page,
.uk-modal-page body {
  overflow: hidden;
}
/* Sub-object: `uk-modal-dialog`
 ========================================================================== */
/*
 * 1. Create position context for caption, spinner and close button
 * 2. Set box sizing
 * 3. Set style
 * 4. Slide-in transition
 */
.uk-modal-dialog {
  /* 1 */
  position: relative;
  /* 2 */
  box-sizing: border-box;
  margin: 50px auto;
  padding: 20px;
  width: 600px;
  max-width: 100%;
  max-width: calc(100% - 20px);
  /* 3 */
  background: #fff;
  /* 4 */
  opacity: 0;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  -webkit-transition: opacity 0.3s linear, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s linear, transform 0.3s ease-out;
}
/* Phone landscape and smaller */
@media (max-width: 767px) {
  /*
     * Fit in small screen
     */
  .uk-modal-dialog {
    width: auto;
    margin: 10px auto;
  }
}
/*
 * Open state
 */
.uk-open .uk-modal-dialog {
  /* 4 */
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/*
 * Remove margin from the last-child
 */
.uk-modal-dialog > :not([class*='uk-modal-']):last-child {
  margin-bottom: 0;
}
/* Close in modal
 ========================================================================== */
.uk-modal-dialog > .uk-close:first-child {
  margin: -10px -10px 0 0;
  float: right;
}
/*
 * Remove margin from adjacent element
 */
.uk-modal-dialog > .uk-close:first-child + :not([class*='uk-modal-']) {
  margin-top: 0;
}
/* Modifier: `uk-modal-dialog-lightbox`
 ========================================================================== */
.uk-modal-dialog-lightbox {
  margin: 15px auto;
  padding: 0;
  max-width: 95%;
  max-width: calc(100% - 30px);
  min-height: 50px;
}
/*
 * Close button
 */
.uk-modal-dialog-lightbox > .uk-close:first-child {
  position: absolute;
  top: -12px;
  right: -12px;
  margin: 0;
  float: none;
}
/* Phone landscape and smaller */
@media (max-width: 767px) {
  .uk-modal-dialog-lightbox > .uk-close:first-child {
    top: -7px;
    right: -7px;
  }
}
/* Modifier: `uk-modal-dialog-blank`
 ========================================================================== */
.uk-modal-dialog-blank {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
/*
* Close button
*/
.uk-modal-dialog-blank > .uk-close:first-child {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  margin: 0;
  float: none;
}
/* Modifier: `uk-modal-dialog-large`
 ========================================================================== */
/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-modal-dialog-large {
    width: 930px;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .uk-modal-dialog-large {
    width: 1130px;
  }
}
/* Sub-Object: `uk-modal-header` and `uk-modal-footer`
 ========================================================================== */
.uk-modal-header {
  margin-bottom: 15px;
}
.uk-modal-footer {
  margin-top: 15px;
}
/*
 * Remove margin from the last-child
 */
.uk-modal-header > :last-child,
.uk-modal-footer > :last-child {
  margin-bottom: 0;
}
/* Sub-Object: `uk-modal-caption`
 ========================================================================== */
.uk-modal-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  margin-bottom: -10px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* Sub-Object: `uk-modal-spinner`
 ========================================================================== */
.uk-modal-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 25px;
  color: #ddd;
}
.uk-modal-spinner:after {
  content: "\F110";
  display: block;
  font-family: FontAwesome;
  -webkit-animation: uk-rotate 2s infinite linear;
  animation: uk-rotate 2s infinite linear;
}
/* ========================================================================
   Component: Off-canvas
 ========================================================================== */
/*
 * This is the offcanvas overlay and bar container
 * 1. Hide by default
 * 2. Set fixed position
 * 3. Deactivate browser touch actions in IE11
 * 4. Mask the background page
 */
.uk-offcanvas {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  /* 3 */
  touch-action: none;
  /* 4 */
  background: rgba(0, 0, 0, 0.1);
}
.uk-offcanvas.uk-active {
  display: block;
}
/* Sub-object `uk-offcanvas-page`
 ========================================================================== */
/*
 * Prepares the whole HTML page to slide-out
 * 1. Fix the main page and disallow scrolling
 * 2. Side-out transition
 * 3. Needed for the transition to work instead of just letting it pop to the side
 */
.uk-offcanvas-page {
  /* 1 */
  position: fixed;
  /* 2 */
  -webkit-transition: margin-left 0.3s ease-in-out;
  transition: margin-left 0.3s ease-in-out;
  /* 3 */
  margin-left: 0;
}
/* Sub-object `uk-offcanvas-bar`
 ========================================================================== */
/*
 * This is the offcanvas bar
 * 1. Set fixed position
 * 2. Size and style
 * 3. Allow scrolling
 * 4. Side-out transition
 * 5. Deactivate scroll chaining in IE11
 */
.uk-offcanvas-bar {
  /* 1 */
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  z-index: 1001;
  /* 2 */
  width: 270px;
  max-width: 100%;
  background: #333;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  /* 5 */
  -ms-scroll-chaining: none;
}
.uk-offcanvas.uk-active .uk-offcanvas-bar.uk-offcanvas-bar-show {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
/* Modifier `uk-offcanvas-bar-flip`
 ========================================================================== */
.uk-offcanvas-bar-flip {
  left: auto;
  right: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
/* Offcanvase modes
 ========================================================================== */
.uk-offcanvas-bar[mode='none'] {
  -webkit-transition: none;
  transition: none;
}
.uk-offcanvas-bar[mode='reveal'] {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  clip: rect(0, 0, 100vh, 0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out, clip 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, clip 0.3s ease-in-out;
}
.uk-offcanvas-bar-flip[mode='reveal'] {
  clip: none;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.uk-offcanvas-bar-flip[mode='reveal'] > * {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}
.uk-offcanvas.uk-active .uk-offcanvas-bar-flip[mode='reveal'].uk-offcanvas-bar-show > * {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
/* Panel in offcanvas
 ========================================================================== */
.uk-offcanvas .uk-panel {
  margin: 20px 15px;
  color: #777;
}
.uk-offcanvas .uk-panel-title {
  color: #ccc;
}
.uk-offcanvas .uk-panel a:not([class]) {
  color: #ccc;
}
.uk-offcanvas .uk-panel a:not([class]):hover {
  color: #fff;
}
/* ========================================================================
   Component: Switcher
 ========================================================================== */
/*
 * 1. Deactivate browser history navigation in IE11
 */
.uk-switcher {
  margin: 0;
  padding: 0;
  list-style: none;
  /* 1 */
  touch-action: cross-slide-y pinch-zoom double-tap-zoom;
}
/*
 * Items
 */
.uk-switcher > :not(.uk-active) {
  display: none;
}
/* ========================================================================
   Component: Text
 ========================================================================== */
/* Size modifiers
 ========================================================================== */
.uk-text-small {
  font-size: 11px;
  line-height: 16px;
}
.uk-text-large {
  font-size: 18px;
  line-height: 24px;
  font-weight: normal;
}
/* Weight modifiers
 ========================================================================== */
.uk-text-bold {
  font-weight: bold;
}
/* Color modifiers
 ========================================================================== */
.uk-text-muted {
  color: #999 !important;
}
.uk-text-primary {
  color: #2d7091 !important;
}
.uk-text-success {
  color: #659f13 !important;
}
.uk-text-warning {
  color: #e28327 !important;
}
.uk-text-danger {
  color: #d85030 !important;
}
.uk-text-contrast {
  color: #fff !important;
}
/* Alignment modifiers
 ========================================================================== */
.uk-text-left {
  text-align: left !important;
}
.uk-text-right {
  text-align: right !important;
}
.uk-text-center {
  text-align: center !important;
}
.uk-text-justify {
  text-align: justify !important;
}
.uk-text-top {
  vertical-align: top !important;
}
.uk-text-middle {
  vertical-align: middle !important;
}
.uk-text-bottom {
  vertical-align: bottom !important;
}
/* Only tablets portrait and smaller */
@media (max-width: 959px) {
  .uk-text-center-medium {
    text-align: center !important;
  }
  .uk-text-left-medium {
    text-align: left !important;
  }
}
/* Phone landscape and smaller */
@media (max-width: 767px) {
  .uk-text-center-small {
    text-align: center !important;
  }
  .uk-text-left-small {
    text-align: left !important;
  }
}
/* Wrap modifiers
 ========================================================================== */
/*
 * Prevent text from wrapping onto multiple lines
 */
.uk-text-nowrap {
  white-space: nowrap;
}
/*
 * Prevent text from wrapping onto multiple lines, and truncate with an ellipsis
 */
.uk-text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/*
 * Break strings if their length exceeds the width of their container
 */
.uk-text-break {
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
/* Transform modifiers
 ========================================================================== */
.uk-text-capitalize {
  text-transform: capitalize !important;
}
.uk-text-lowercase {
  text-transform: lowercase !important;
}
.uk-text-uppercase {
  text-transform: uppercase !important;
}
/* ========================================================================
   Component: Utility
 ========================================================================== */
/* Container
 ========================================================================== */
.uk-container {
  box-sizing: border-box;
  max-width: 980px;
  padding: 0 25px;
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .uk-container {
    max-width: 1200px;
    padding: 0 35px;
  }
}
/*
 * Micro clearfix
 */
.uk-container:before,
.uk-container:after {
  content: "";
  display: table;
}
.uk-container:after {
  clear: both;
}
/*
 * Center container
 */
.uk-container-center {
  margin-left: auto;
  margin-right: auto;
}
/* Clearing
 ========================================================================== */
/*
 * Micro clearfix
* `table-cell` is used with `:before` because `table` creates a 1px gap when it becomes a flex item, only in Webkit
 * `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
 */
.uk-clearfix:before {
  content: "";
  display: table-cell;
}
.uk-clearfix:after {
  content: "";
  display: table;
  clear: both;
}
/*
 *  Create a new block formatting context
 */
.uk-nbfc {
  overflow: hidden;
}
.uk-nbfc-alt {
  display: table-cell;
  width: 10000px;
}
/* Alignment of block elements
 ========================================================================== */
/*
 * Float blocks
 * 1. Prevent content overflow on small devices
 */
.uk-float-left {
  float: left;
}
.uk-float-right {
  float: right;
}
/* 1 */
[class*='uk-float-'] {
  max-width: 100%;
}
/* Alignment of images and objects
 ========================================================================== */
/*
 * Alignment
 */
[class*='uk-align-'] {
  display: block;
  margin-bottom: 15px;
}
.uk-align-left {
  margin-right: 15px;
  float: left;
}
.uk-align-right {
  margin-left: 15px;
  float: right;
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-align-medium-left {
    margin-right: 15px;
    float: left;
  }
  .uk-align-medium-right {
    margin-left: 15px;
    float: right;
  }
}
.uk-align-center {
  margin-left: auto;
  margin-right: auto;
}
/* Vertical alignment
 ========================================================================== */
/*
 * Remove whitespace between child elements when using `inline-block`
 */
.uk-vertical-align {
  font-size: 0.001px;
}
/*
 *  The `uk-vertical-align` container needs a specific height
 */
.uk-vertical-align:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
/*
 * Sub-object which can have any height
 * 1. Reset whitespace hack
 */
.uk-vertical-align-middle,
.uk-vertical-align-bottom {
  display: inline-block;
  max-width: 100%;
  /* 1 */
  font-size: 1rem;
}
.uk-vertical-align-middle {
  vertical-align: middle;
}
.uk-vertical-align-bottom {
  vertical-align: bottom;
}
/* Height
 ========================================================================== */
/*
 * More robust if padding and border are used
 */
[class*='uk-height'] {
  box-sizing: border-box;
}
/*
 * Useful to extend the `html` and `body` element to the full height of the page.
 */
.uk-height-1-1 {
  height: 100%;
}
/*
 * Useful to create image teasers
 */
.uk-height-viewport {
  height: 100vh;
  min-height: 600px;
}
/* Responsive objects
 * Note: Images are already responsive by default, see Base component
 ========================================================================== */
/*
 * 1. Corrects `max-width` and `max-height` behavior if padding and border are used
 */
.uk-responsive-width,
.uk-responsive-height {
  box-sizing: border-box;
}
/*
 * Responsiveness: Sets a maximum width relative to the parent and auto scales the height
 * `important` needed to override `uk-img-preserve img`
 */
.uk-responsive-width {
  max-width: 100% !important;
  height: auto;
}
/*
 * Responsiveness: Sets a maximum height relative to the parent and auto scales the width
 * Only works if the parent element has a fixed height.
 */
.uk-responsive-height {
  max-height: 100%;
  width: auto;
}
/* Margin
 ========================================================================== */
/*
 * Create a block with the same margin of a paragraph
 * Add margin if adjacent element
 */
.uk-margin {
  margin-bottom: 15px;
}
* + .uk-margin {
  margin-top: 15px;
}
.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;
}
/*
 * Larger margins
 */
.uk-margin-large {
  margin-bottom: 50px;
}
* + .uk-margin-large {
  margin-top: 50px;
}
.uk-margin-large-top {
  margin-top: 50px !important;
}
.uk-margin-large-bottom {
  margin-bottom: 50px !important;
}
.uk-margin-large-left {
  margin-left: 50px !important;
}
.uk-margin-large-right {
  margin-right: 50px !important;
}
/*
 * Smaller margins
 */
.uk-margin-small {
  margin-bottom: 5px;
}
* + .uk-margin-small {
  margin-top: 5px;
}
.uk-margin-small-top {
  margin-top: 5px !important;
}
.uk-margin-small-bottom {
  margin-bottom: 5px !important;
}
.uk-margin-small-left {
  margin-left: 5px !important;
}
.uk-margin-small-right {
  margin-right: 5px !important;
}
/*
 * Remove margins
 */
.uk-margin-remove {
  margin: 0 !important;
}
.uk-margin-top-remove {
  margin-top: 0 !important;
}
.uk-margin-bottom-remove {
  margin-bottom: 0 !important;
}
/* Padding
 ========================================================================== */
.uk-padding-remove {
  padding: 0 !important;
}
.uk-padding-top-remove {
  padding-top: 0 !important;
}
.uk-padding-bottom-remove {
  padding-bottom: 0 !important;
}
.uk-padding-vertical-remove {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
/* Border
 ========================================================================== */
.uk-border-circle {
  border-radius: 50%;
}
.uk-border-rounded {
  border-radius: 5px;
}
/* Headings
 ========================================================================== */
.uk-heading-large {
  font-size: 36px;
  line-height: 42px;
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-heading-large {
    font-size: 52px;
    line-height: 64px;
  }
}
/* Link
 ========================================================================== */
/*
 * Let links appear in default text color
 */
.uk-link-muted,
.uk-link-muted a {
  color: #444;
}
.uk-link-muted:hover,
.uk-link-muted a:hover {
  color: #444;
}
/*
 * Reset link style
 */
.uk-link-reset,
.uk-link-reset a,
.uk-link-reset:hover,
.uk-link-reset a:hover,
.uk-link-reset:focus,
.uk-link-reset a:focus {
  color: inherit;
  text-decoration: none;
}
/* Scrollable
 ========================================================================== */
/*
 * Enable scrolling for preformatted text
 */
.uk-scrollable-text {
  height: 300px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  resize: both;
}
/*
 * Box with scrolling enabled
 */
.uk-scrollable-box {
  box-sizing: border-box;
  height: 170px;
  padding: 10px;
  border: 1px solid #ddd;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  resize: both;
}
.uk-scrollable-box > :last-child {
  margin-bottom: 0;
}
/* Overflow
 ========================================================================== */
.uk-overflow-hidden {
  overflow: hidden;
}
/*
 * Enable scrollbars if content is clipped
 */
.uk-overflow-container {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.uk-overflow-container > :last-child {
  margin-bottom: 0;
}
/* Position
 ========================================================================== */
.uk-position-absolute,
[class*='uk-position-top'],
[class*='uk-position-bottom'] {
  position: absolute !important;
}
/* 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-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;
}
/*
 * Cover
 */
.uk-position-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
/*
 * Relative
 */
.uk-position-relative {
  position: relative !important;
}
/*
 * Z-index
 */
.uk-position-z-index {
  z-index: 1;
}
/* Display
 ========================================================================== */
/*
 * Display
 * 1. Required if child is a responsive image
 */
.uk-display-block {
  display: block !important;
}
.uk-display-inline {
  display: inline !important;
}
.uk-display-inline-block {
  display: inline-block !important;
  /* 1 */
  max-width: 100%;
}
/*
 * Visibility
 * Avoids setting display to `block` so it works also with `inline-block` and `table`
 */
/* Desktop and bigger */
@media (min-width: 960px) {
  .uk-visible-small {
    display: none !important;
  }
  .uk-visible-medium {
    display: none !important;
  }
  .uk-hidden-large {
    display: none !important;
  }
}
/* Tablets portrait */
@media (min-width: 768px) and (max-width: 959px) {
  .uk-visible-small {
    display: none !important;
  }
  .uk-visible-large {
    display: none !important ;
  }
  .uk-hidden-medium {
    display: none !important;
  }
}
/* Phone landscape and smaller*/
@media (max-width: 767px) {
  .uk-visible-medium {
    display: none !important;
  }
  .uk-visible-large {
    display: none !important;
  }
  .uk-hidden-small {
    display: none !important;
  }
}
/* Remove from the flow and screen readers on any device */
.uk-hidden {
  display: none !important;
  visibility: hidden !important;
}
/* It's hidden, but still affects layout */
.uk-invisible {
  visibility: hidden !important;
}
/* Show on hover */
.uk-visible-hover:hover .uk-hidden,
.uk-visible-hover:hover .uk-invisible {
  display: block !important;
  visibility: visible !important;
}
.uk-visible-hover-inline:hover .uk-hidden,
.uk-visible-hover-inline:hover .uk-invisible {
  display: inline-block !important;
  visibility: visible !important;
}
/* Hide on touch */
.uk-touch .uk-hidden-touch,
.uk-notouch .uk-hidden-notouch {
  display: none !important;
}
/* ========================================================================
   Component: Flex
 ========================================================================== */
.uk-flex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.uk-flex-inline {
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
}
/*
 * Fixes initial flex-shrink value in IE10
 */
.uk-flex > *,
.uk-flex-inline > * {
  -ms-flex-negative: 1;
}
/* Alignment
 ========================================================================== */
/*
 * Vertical alignment
 * Default value is `stretch`
 */
.uk-flex-top {
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.uk-flex-middle {
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.uk-flex-bottom {
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
/*
 * Horizontal alignment
 * Default value is `flex-start`
 */
.uk-flex-center {
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.uk-flex-right {
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.uk-flex-space-between {
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.uk-flex-space-around {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
/* Direction
 ========================================================================== */
.uk-flex-row-reverse {
  -ms-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.uk-flex-column {
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.uk-flex-column-reverse {
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
/* Wrap
 ========================================================================== */
.uk-flex-nowrap {
  -ms-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.uk-flex-wrap {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.uk-flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  -webkit-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
/*
 * Horizontal alignment
 * Default value is `stretch`
 */
.uk-flex-wrap-top {
  -ms-flex-line-pack: start;
  -webkit-align-content: flex-start;
  align-content: flex-start;
}
.uk-flex-wrap-middle {
  -ms-flex-line-pack: center;
  -webkit-align-content: center;
  align-content: center;
}
.uk-flex-wrap-bottom {
  -ms-flex-line-pack: end;
  -webkit-align-content: flex-end;
  align-content: flex-end;
}
.uk-flex-wrap-space-between {
  -ms-flex-line-pack: justify;
  -webkit-align-content: space-between;
  align-content: space-between;
}
.uk-flex-wrap-space-around {
  -ms-flex-line-pack: distribute;
  -webkit-align-content: space-around;
  align-content: space-around;
}
/* Item ordering
 ========================================================================== */
/*
 * Default is 0
 */
.uk-flex-order-first {
  -ms-flex-order: -1;
  -webkit-order: -1;
  order: -1;
}
.uk-flex-order-last {
  -ms-flex-order: 99;
  -webkit-order: 99;
  order: 99;
}
/* Phone landscape and bigger */
@media (min-width: 480px) {
  .uk-flex-order-first-small {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
  }
  .uk-flex-order-last-small {
    -ms-flex-order: 99;
    -webkit-order: 99;
    order: 99;
  }
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-flex-order-first-medium {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
  }
  .uk-flex-order-last-medium {
    -ms-flex-order: 99;
    -webkit-order: 99;
    order: 99;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .uk-flex-order-first-large {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
  }
  .uk-flex-order-last-large {
    -ms-flex-order: 99;
    -webkit-order: 99;
    order: 99;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .uk-flex-order-first-xlarge {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
  }
  .uk-flex-order-last-xlarge {
    -ms-flex-order: 99;
    -webkit-order: 99;
    order: 99;
  }
}
/* Item dimensions
 ========================================================================== */
/*
 * Initial: 0 1 auto
 * Content dimensions, but shrinks
 */
/*
 * No Flex: 0 0 auto
 * Content dimensions
 */
.uk-flex-item-none {
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
}
/*
 * Relative Flex: 1 1 auto
 * Space is allocated considering content
 * 1. Fixes flex-shrink value in IE10
 */
.uk-flex-item-auto {
  -ms-flex: auto;
  -webkit-flex: auto;
  flex: auto;
  /* 1 */
  -ms-flex-negative: 1;
}
/*
 * Absolute Flex: 1 1 0%
 * Space is allocated solely based on flex
 */
.uk-flex-item-1 {
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
/* ========================================================================
   Component: Contrast
 ========================================================================== */
.uk-contrast {
  color: #fff;
  /* Active */
}
.uk-contrast a:not([class]),
.uk-contrast .uk-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.uk-contrast a:not([class]):hover,
.uk-contrast .uk-link:hover {
  color: #fff;
  text-decoration: underline;
}
.uk-contrast :not(pre) > code,
.uk-contrast :not(pre) > kbd,
.uk-contrast :not(pre) > samp {
  color: #fff;
}
.uk-contrast em {
  color: #fff;
}
.uk-contrast h1,
.uk-contrast h2,
.uk-contrast h3,
.uk-contrast h4,
.uk-contrast h5,
.uk-contrast h6 {
  color: #fff;
}
.uk-contrast hr {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-contrast .uk-nav li > a,
.uk-contrast .uk-nav li > a:hover {
  text-decoration: none;
}
.uk-contrast .uk-nav-side > li > a {
  color: #fff;
}
.uk-contrast .uk-nav-side > li > a:hover,
.uk-contrast .uk-nav-side > li > a:focus {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.uk-contrast .uk-nav-side > li.uk-active > a {
  background: #fff;
  color: #444;
}
.uk-contrast .uk-nav-side .uk-nav-header {
  color: #fff;
}
.uk-contrast .uk-nav-side .uk-nav-divider {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-contrast .uk-nav-side ul a {
  color: rgba(255, 255, 255, 0.7);
}
.uk-contrast .uk-nav-side ul a:hover {
  color: #fff;
}
.uk-contrast .uk-subnav > * > a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.uk-contrast .uk-subnav > * > a:hover,
.uk-contrast .uk-subnav > * > a:focus {
  color: #fff;
  text-decoration: none;
}
.uk-contrast .uk-subnav > .uk-active > a {
  color: #fff;
}
.uk-contrast .uk-subnav-line > :nth-child(n+2):before {
  border-left-color: rgba(255, 255, 255, 0.2);
}
.uk-contrast .uk-subnav-pill > * > a:hover,
.uk-contrast .uk-subnav-pill > * > a:focus {
  background: rgba(255, 255, 255, 0.7);
  color: #444;
  text-decoration: none;
}
.uk-contrast .uk-subnav-pill > .uk-active > a {
  background: #fff;
  color: #444;
}
.uk-contrast .uk-tab {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.uk-contrast .uk-tab > li > a {
  border-color: transparent;
  color: rgba(255, 255, 255, 0.7);
}
.uk-contrast .uk-tab > li > a:hover,
.uk-contrast .uk-tab > li > a:focus,
.uk-contrast .uk-tab > li.uk-open > a {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.7);
  color: #444;
  text-decoration: none;
}
.uk-contrast .uk-tab > li.uk-active > a {
  border-color: rgba(255, 255, 255, 0.2);
  border-bottom-color: transparent;
  background: #fff;
  color: #444;
}
.uk-contrast .uk-tab-center {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.uk-contrast .uk-tab-grid:before {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-contrast .uk-list-line > li:nth-child(n+2) {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.uk-contrast .uk-form select,
.uk-contrast .uk-form textarea,
.uk-contrast .uk-form input:not([type]),
.uk-contrast .uk-form input[type="text"],
.uk-contrast .uk-form input[type="password"],
.uk-contrast .uk-form input[type="datetime"],
.uk-contrast .uk-form input[type="datetime-local"],
.uk-contrast .uk-form input[type="date"],
.uk-contrast .uk-form input[type="month"],
.uk-contrast .uk-form input[type="time"],
.uk-contrast .uk-form input[type="week"],
.uk-contrast .uk-form input[type="number"],
.uk-contrast .uk-form input[type="email"],
.uk-contrast .uk-form input[type="url"],
.uk-contrast .uk-form input[type="search"],
.uk-contrast .uk-form input[type="tel"],
.uk-contrast .uk-form input[type="color"] {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.8);
  color: #444;
  background-clip: padding-box;
}
.uk-contrast .uk-form select:focus,
.uk-contrast .uk-form textarea:focus,
.uk-contrast .uk-form input:not([type]):focus,
.uk-contrast .uk-form input[type="text"]:focus,
.uk-contrast .uk-form input[type="password"]:focus,
.uk-contrast .uk-form input[type="datetime"]:focus,
.uk-contrast .uk-form input[type="datetime-local"]:focus,
.uk-contrast .uk-form input[type="date"]:focus,
.uk-contrast .uk-form input[type="month"]:focus,
.uk-contrast .uk-form input[type="time"]:focus,
.uk-contrast .uk-form input[type="week"]:focus,
.uk-contrast .uk-form input[type="number"]:focus,
.uk-contrast .uk-form input[type="email"]:focus,
.uk-contrast .uk-form input[type="url"]:focus,
.uk-contrast .uk-form input[type="search"]:focus,
.uk-contrast .uk-form input[type="tel"]:focus,
.uk-contrast .uk-form input[type="color"]:focus {
  border-color: #fff;
  background: #fff;
  color: #444;
}
.uk-contrast .uk-form :-ms-input-placeholder {
  color: rgba(68, 68, 68, 0.7) !important;
}
.uk-contrast .uk-form ::-moz-placeholder {
  color: rgba(68, 68, 68, 0.7);
}
.uk-contrast .uk-form ::-webkit-input-placeholder {
  color: rgba(68, 68, 68, 0.7);
}
.uk-contrast .uk-button {
  color: #444;
  background: #fff;
}
.uk-contrast .uk-button:hover,
.uk-contrast .uk-button:focus {
  background-color: rgba(255, 255, 255, 0.8);
  color: #444;
}
.uk-contrast .uk-button:active,
.uk-contrast .uk-button.uk-active {
  background-color: rgba(255, 255, 255, 0.7);
  color: #444;
}
.uk-contrast .uk-button-primary {
  background-color: #00a8e6;
  color: #fff;
}
.uk-contrast .uk-button-primary:hover,
.uk-contrast .uk-button-primary:focus {
  background-color: #35b3ee;
  color: #fff;
}
.uk-contrast .uk-button-primary:active,
.uk-contrast .uk-button-primary.uk-active {
  background-color: #0091ca;
  color: #fff;
}
.uk-contrast .uk-icon-hover {
  color: rgba(255, 255, 255, 0.7);
}
.uk-contrast .uk-icon-hover:hover {
  color: #fff;
}
.uk-contrast .uk-icon-button {
  background: #fff;
  color: #444;
}
.uk-contrast .uk-icon-button:hover,
.uk-contrast .uk-icon-button:focus {
  background-color: rgba(255, 255, 255, 0.8);
  color: #444;
}
.uk-contrast .uk-icon-button:active {
  background-color: rgba(255, 255, 255, 0.7);
  color: #444;
}
.uk-contrast .uk-text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
}
.uk-contrast .uk-text-primary {
  color: #2d7091 !important;
}
/* ========================================================================
   Component: Print
 ========================================================================== */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

/*!
 * jQuery UI CSS Framework 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0); /* support: IE8 */
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
	pointer-events: none;
}


/* Icons
----------------------------------*/
.ui-icon {
	display: inline-block;
	vertical-align: middle;
	margin-top: -.25em;
	position: relative;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}

.ui-widget-icon-block {
	left: 50%;
	margin-left: -8px;
	display: block;
}

/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*!
 * jQuery UI Draggable 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 */
.ui-draggable-handle {
	-ms-touch-action: none;
	touch-action: none;
}

/*!
 * jQuery UI Resizable 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 */
.ui-resizable {
	position: relative;
}
.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
	display: none;
}
.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0;
}
.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0;
}
.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px;
}
.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px;
}
.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px;
}
.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px;
}

/*!
 * jQuery UI Selectable 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 */
.ui-selectable {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black;
}

/*!
 * jQuery UI Sortable 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 */
.ui-sortable-handle {
	-ms-touch-action: none;
	touch-action: none;
}

/*!
 * jQuery UI Accordion 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/accordion/#theming
 */
.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin: 2px 0 0 0;
	padding: .5em .5em .5em .7em;
	font-size: 100%;
}
.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto;
}

/*!
 * jQuery UI Autocomplete 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/autocomplete/#theming
 */
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}

/*!
 * jQuery UI Button 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/button/#theming
 */
.ui-button {
	padding: .4em 1em;
	display: inline-block;
	position: relative;
	line-height: normal;
	margin-right: .1em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	/* Support: IE <= 11 */
	overflow: visible;
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
	text-decoration: none;
}

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
	width: 2em;
	box-sizing: border-box;
	text-indent: -9999px;
	white-space: nowrap;
}

/* no icon support for input elements */
input.ui-button.ui-button-icon-only {
	text-indent: 0;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -8px;
	margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
	padding: 0;
	width: 2.1em;
	height: 2.1em;
	text-indent: -9999px;
	white-space: nowrap;

}

input.ui-button.ui-icon-notext .ui-icon {
	width: auto;
	height: auto;
	text-indent: 0;
	white-space: normal;
	padding: .4em 1em;
}

/* workarounds */
/* Support: Firefox 5 - 40 */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/*!
 * jQuery UI Checkboxradio 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/checkboxradio/#theming
 */

.ui-checkboxradio-label .ui-icon-background {
	box-shadow: inset 1px 1px 1px #ccc;
	border-radius: .12em;
	border: none;
}
.ui-checkboxradio-radio-label .ui-icon-background {
	width: 16px;
	height: 16px;
	border-radius: 1em;
	overflow: visible;
	border: none;
}
.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
	background-image: none;
	width: 8px;
	height: 8px;
	border-width: 4px;
	border-style: solid;
}
.ui-checkboxradio-disabled {
	pointer-events: none;
}

/*!
 * jQuery UI Controlgroup 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/controlgroup/#theming
 */

.ui-controlgroup {
	vertical-align: middle;
	display: inline-block;
}
.ui-controlgroup > .ui-controlgroup-item {
	float: left;
	margin-left: 0;
	margin-right: 0;
}
.ui-controlgroup > .ui-controlgroup-item:focus,
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
	z-index: 9999;
}
.ui-controlgroup-vertical > .ui-controlgroup-item {
	display: block;
	float: none;
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	text-align: left;
}
.ui-controlgroup-vertical .ui-controlgroup-item {
	box-sizing: border-box;
}
.ui-controlgroup .ui-controlgroup-label {
	padding: .4em 1em;
}
.ui-controlgroup .ui-controlgroup-label span {
	font-size: 80%;
}
.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
	border-left: none;
}
.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
	border-top: none;
}
.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
	border-right: none;
}
.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
	border-bottom: none;
}

/* Spinner specific style fixes */
.ui-controlgroup-vertical .ui-spinner-input {

	/* Support: IE8 only, Android < 4.4 only */
	width: 75%;
	width: calc( 100% - 2.4em );
}
.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
	border-top-style: solid;
}


/*!
 * jQuery UI Datepicker 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/datepicker/#theming
 */
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
	left: .5em;
	top: .3em;
}

/*!
 * jQuery UI Dialog 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/dialog/#theming
 */
.ui-dialog {
	position: absolute;
	top: 0;
	left: 0;
	padding: .2em;
	outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
	padding: .4em 1em;
	position: relative;
}
.ui-dialog .ui-dialog-title {
	float: left;
	margin: .1em 0;
	white-space: nowrap;
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 20px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px;
}
.ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: .5em 1em;
	background: none;
	overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin-top: .5em;
	padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer;
}
.ui-dialog .ui-resizable-n {
	height: 2px;
	top: 0;
}
.ui-dialog .ui-resizable-e {
	width: 2px;
	right: 0;
}
.ui-dialog .ui-resizable-s {
	height: 2px;
	bottom: 0;
}
.ui-dialog .ui-resizable-w {
	width: 2px;
	left: 0;
}
.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
	width: 7px;
	height: 7px;
}
.ui-dialog .ui-resizable-se {
	right: 0;
	bottom: 0;
}
.ui-dialog .ui-resizable-sw {
	left: 0;
	bottom: 0;
}
.ui-dialog .ui-resizable-ne {
	right: 0;
	top: 0;
}
.ui-dialog .ui-resizable-nw {
	left: 0;
	top: 0;
}
.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}

/*!
 * jQuery UI Menu 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/menu/#theming
 */
.ui-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	outline: 0;
}
.ui-menu .ui-menu {
	position: absolute;
}
.ui-menu .ui-menu-item {
	margin: 0;
	cursor: pointer;
	/* support: IE10, see #8844 */
	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}
.ui-menu .ui-menu-item-wrapper {
	position: relative;
	padding: 3px 1em 3px .4em;
}
.ui-menu .ui-menu-divider {
	margin: 5px 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
	margin: -1px;
}

/* icon support */
.ui-menu-icons {
	position: relative;
}
.ui-menu-icons .ui-menu-item-wrapper {
	padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: .2em;
	margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
	left: auto;
	right: 0;
}

/*!
 * jQuery UI Progressbar 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/progressbar/#theming
 */
.ui-progressbar {
	height: 2em;
	text-align: left;
	overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
	margin: -1px;
	height: 100%;
}
.ui-progressbar .ui-progressbar-overlay {
	background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
	height: 100%;
	filter: alpha(opacity=25); /* support: IE8 */
	opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
	background-image: none;
}

/*!
 * jQuery UI Selectmenu 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/selectmenu/#theming
 */
.ui-selectmenu-menu {
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
.ui-selectmenu-menu .ui-menu {
	overflow: auto;
	overflow-x: hidden;
	padding-bottom: 1px;
}
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.5;
	padding: 2px 0.4em;
	margin: 0.5em 0 0 0;
	height: auto;
	border: 0;
}
.ui-selectmenu-open {
	display: block;
}
.ui-selectmenu-text {
	display: block;
	margin-right: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-selectmenu-button.ui-button {
	text-align: left;
	white-space: nowrap;
	width: 14em;
}
.ui-selectmenu-icon.ui-icon {
	float: right;
	margin-top: 0;
}

/*!
 * jQuery UI Slider 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/slider/#theming
 */
.ui-slider {
	position: relative;
	text-align: left;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}

.ui-slider-horizontal {
	height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.ui-slider-vertical {
	width: .8em;
	height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}

/*!
 * jQuery UI Spinner 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/spinner/#theming
 */
.ui-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle;
}
.ui-spinner-input {
	border: none;
	background: none;
	color: inherit;
	padding: .222em 0;
	margin: .2em 0;
	vertical-align: middle;
	margin-left: .4em;
	margin-right: 2em;
}
.ui-spinner-button {
	width: 1.6em;
	height: 50%;
	font-size: .5em;
	padding: 0;
	margin: 0;
	text-align: center;
	position: absolute;
	cursor: default;
	display: block;
	overflow: hidden;
	right: 0;
}
/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
	border-top-style: none;
	border-bottom-style: none;
	border-right-style: none;
}
.ui-spinner-up {
	top: 0;
}
.ui-spinner-down {
	bottom: 0;
}

/*!
 * jQuery UI Tabs 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/tabs/#theming
 */
.ui-tabs {
	position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
	padding: .2em;
}
.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: .2em .2em 0;
}
.ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 0;
	margin: 1px .2em 0 0;
	border-bottom-width: 0;
	padding: 0;
	white-space: nowrap;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	float: left;
	padding: .5em 1em;
	text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	margin-bottom: -1px;
	padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
	cursor: text;
}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
	cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 1.4em;
	background: none;
}

/*!
 * jQuery UI Tooltip 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/tooltip/#theming
 */
.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
}
body .ui-tooltip {
	border-width: 2px;
}

/*!
 * ui-grid - v4.10.0 - 2021-02-01
 * Copyright (c) 2021 ; License: MIT 
 */
.ui-grid {
  border: 1px solid #d4d4d4;
  box-sizing: content-box;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -o-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.ui-grid-vertical-bar {
  position: absolute;
  right: 0;
  width: 0;
}
.ui-grid-header-cell:not(:last-child) .ui-grid-vertical-bar,
.ui-grid-cell:not(:last-child) .ui-grid-vertical-bar {
  width: 1px;
}
.ui-grid-scrollbar-placeholder {
  background-color: transparent;
}
.ui-grid-header-cell:not(:last-child) .ui-grid-vertical-bar {
  background-color: #d4d4d4;
}
.ui-grid-cell:not(:last-child) .ui-grid-vertical-bar {
  background-color: #d4d4d4;
}
.ui-grid-header-cell:last-child .ui-grid-vertical-bar {
  right: -1px;
  width: 1px;
  background-color: #d4d4d4;
}
.ui-grid-clearfix:before,
.ui-grid-clearfix:after {
  content: "";
  display: table;
}
.ui-grid-clearfix:after {
  clear: both;
}
.ui-grid-invisible {
  visibility: hidden;
}
.ui-grid-contents-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}
.ui-grid-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.ui-grid-icon-button {
  background-color: transparent;
  border: none;
  padding: 0;
}
.clickable {
  cursor: pointer;
}
.ui-grid-top-panel-background {
  background-color: #f3f3f3;
}
.ui-grid-header {
  border-bottom: 1px solid #d4d4d4;
  box-sizing: border-box;
}
.ui-grid-top-panel {
  position: relative;
  overflow: hidden;
  font-weight: bold;
  background-color: #f3f3f3;
  -webkit-border-top-right-radius: -1px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: -1px;
  -moz-border-radius-topright: -1px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: -1px;
  border-top-right-radius: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: -1px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.ui-grid-header-viewport {
  overflow: hidden;
}
.ui-grid-header-canvas:before,
.ui-grid-header-canvas:after {
  content: "";
  display: -ms-flexbox;
  display: flex;
  line-height: 0;
}
.ui-grid-header-canvas:after {
  clear: both;
}
.ui-grid-header-cell-wrapper {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
}
.ui-grid-header-cell-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ui-grid-header-cell {
  position: relative;
  box-sizing: border-box;
  background-color: inherit;
  border-right: 1px solid;
  border-color: #d4d4d4;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 0;
}
.ui-grid-header-cell:last-child {
  border-right: 0;
}
.ui-grid-header-cell .sortable {
  cursor: pointer;
}
.ui-grid-header-cell .ui-grid-sort-priority-number {
  margin-left: -8px;
}
/* Fixes IE word-wrap if needed on header cells */
.ui-grid-header-cell > div {
  -ms-flex-basis: 100%;
  flex-basis: 100%;
}
.ui-grid-header .ui-grid-vertical-bar {
  top: 0;
  bottom: 0;
}
.ui-grid-column-menu-button {
  position: absolute;
  right: 1px;
  top: 0;
}
.ui-grid-column-menu-button .ui-grid-icon-angle-down {
  vertical-align: sub;
}
.ui-grid-header-cell-last-col .ui-grid-cell-contents,
.ui-grid-header-cell-last-col .ui-grid-filter-container,
.ui-grid-header-cell-last-col .ui-grid-column-menu-button,
.ui-grid-header-cell-last-col + .ui-grid-column-resizer.right {
  margin-right: 13px;
}
.ui-grid-render-container-right .ui-grid-header-cell-last-col .ui-grid-cell-contents,
.ui-grid-render-container-right .ui-grid-header-cell-last-col .ui-grid-filter-container,
.ui-grid-render-container-right .ui-grid-header-cell-last-col .ui-grid-column-menu-button,
.ui-grid-render-container-right .ui-grid-header-cell-last-col + .ui-grid-column-resizer.right {
  margin-right: 28px;
}
.ui-grid-column-menu {
  position: absolute;
}
/* Slide up/down animations */
.ui-grid-column-menu .ui-grid-menu .ui-grid-menu-mid.ng-hide-add,
.ui-grid-column-menu .ui-grid-menu .ui-grid-menu-mid.ng-hide-remove {
  -webkit-transition: all 0.04s linear;
  -moz-transition: all 0.04s linear;
  -o-transition: all 0.04s linear;
  transition: all 0.04s linear;
  display: block !important;
}
.ui-grid-column-menu .ui-grid-menu .ui-grid-menu-mid.ng-hide-add.ng-hide-add-active,
.ui-grid-column-menu .ui-grid-menu .ui-grid-menu-mid.ng-hide-remove {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
.ui-grid-column-menu .ui-grid-menu .ui-grid-menu-mid.ng-hide-add,
.ui-grid-column-menu .ui-grid-menu .ui-grid-menu-mid.ng-hide-remove.ng-hide-remove-active {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
/* Slide up/down animations */
.ui-grid-menu-button .ui-grid-menu .ui-grid-menu-mid.ng-hide-add,
.ui-grid-menu-button .ui-grid-menu .ui-grid-menu-mid.ng-hide-remove {
  -webkit-transition: all 0.04s linear;
  -moz-transition: all 0.04s linear;
  -o-transition: all 0.04s linear;
  transition: all 0.04s linear;
  display: block !important;
}
.ui-grid-menu-button .ui-grid-menu .ui-grid-menu-mid.ng-hide-add.ng-hide-add-active,
.ui-grid-menu-button .ui-grid-menu .ui-grid-menu-mid.ng-hide-remove {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
.ui-grid-menu-button .ui-grid-menu .ui-grid-menu-mid.ng-hide-add,
.ui-grid-menu-button .ui-grid-menu .ui-grid-menu-mid.ng-hide-remove.ng-hide-remove-active {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.ui-grid-filter-container {
  padding: 4px 10px;
  position: relative;
}
.ui-grid-filter-container .ui-grid-filter-button {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
.ui-grid-filter-container .ui-grid-filter-button [class^="ui-grid-icon"] {
  position: absolute;
  top: 50%;
  line-height: 32px;
  margin-top: -16px;
  right: 10px;
  opacity: 0.66;
}
.ui-grid-filter-container .ui-grid-filter-button [class^="ui-grid-icon"]:hover {
  opacity: 1;
}
.ui-grid-filter-container .ui-grid-filter-button-select {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
.ui-grid-filter-container .ui-grid-filter-button-select [class^="ui-grid-icon"] {
  position: absolute;
  top: 50%;
  line-height: 32px;
  margin-top: -16px;
  right: 0px;
  opacity: 0.66;
}
.ui-grid-filter-container .ui-grid-filter-button-select [class^="ui-grid-icon"]:hover {
  opacity: 1;
}
input[type="text"].ui-grid-filter-input {
  box-sizing: border-box;
  padding: 0 18px 0 0;
  margin: 0;
  width: 100%;
  border: 1px solid #d4d4d4;
  -webkit-border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
input[type="text"].ui-grid-filter-input:hover {
  border: 1px solid #d4d4d4;
}
select.ui-grid-filter-select {
  padding: 0;
  margin: 0;
  border: 0;
  width: 90%;
  border: 1px solid #d4d4d4;
  -webkit-border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
select.ui-grid-filter-select:hover {
  border: 1px solid #d4d4d4;
}
.ui-grid-filter-cancel-button-hidden select.ui-grid-filter-select {
  width: 100%;
}
.ui-grid-render-container {
  position: inherit;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 0px;
  -moz-border-radius-bottomleft: 0px;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.ui-grid-render-container:focus {
  outline: none;
}
.ui-grid-viewport {
  min-height: 20px;
  position: relative;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.ui-grid-viewport:focus {
  outline: none !important;
}
.ui-grid-canvas {
  position: relative;
  padding-top: 1px;
}
.ui-grid-row {
  clear: both;
}
.ui-grid-row:nth-child(odd) .ui-grid-cell {
  background-color: #fdfdfd;
}
.ui-grid-row:nth-child(even) .ui-grid-cell {
  background-color: #f3f3f3;
}
.ui-grid-row:last-child .ui-grid-cell {
  border-bottom-color: #d4d4d4;
  border-bottom-style: solid;
}
.ui-grid-row:hover > [ui-grid-row] > .ui-grid-cell:hover .ui-grid-cell,
.ui-grid-row:nth-child(odd):hover .ui-grid-cell,
.ui-grid-row:nth-child(even):hover .ui-grid-cell {
  background-color: #d5eaee;
}
.ui-grid-no-row-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 10%;
  background-color: #f3f3f3;
  -webkit-border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #d4d4d4;
  font-size: 2em;
  text-align: center;
}
.ui-grid-no-row-overlay > * {
  position: absolute;
  display: table;
  margin: auto 0;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.66;
}
.ui-grid-cell {
  overflow: hidden;
  float: left;
  background-color: inherit;
  border-right: 1px solid;
  border-color: #d4d4d4;
  box-sizing: border-box;
}
.ui-grid-cell:last-child {
  border-right: 0;
}
.ui-grid-cell-contents {
  padding: 5px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 100%;
}
.ui-grid-cell-contents-hidden {
  visibility: hidden;
  width: 0;
  height: 0;
  display: none;
}
.ui-grid-row .ui-grid-cell.ui-grid-row-header-cell {
  background-color: #F0F0EE;
  border-bottom: solid 1px #d4d4d4;
}
.ui-grid-cell-empty {
  display: inline-block;
  width: 10px;
  height: 10px;
}
.ui-grid-footer-info {
  padding: 5px 10px;
}
.ui-grid-footer-panel-background {
  background-color: #f3f3f3;
}
.ui-grid-footer-panel {
  position: relative;
  border-bottom: 1px solid #d4d4d4;
  border-top: 1px solid #d4d4d4;
  overflow: hidden;
  font-weight: bold;
  background-color: #f3f3f3;
  -webkit-border-top-right-radius: -1px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: -1px;
  -moz-border-radius-topright: -1px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: -1px;
  border-top-right-radius: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: -1px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.ui-grid-grid-footer {
  float: left;
  width: 100%;
}
.ui-grid-footer-viewport,
.ui-grid-footer-canvas {
  height: 100%;
}
.ui-grid-footer-viewport {
  overflow: hidden;
}
.ui-grid-footer-canvas {
  position: relative;
}
.ui-grid-footer-canvas:before,
.ui-grid-footer-canvas:after {
  content: "";
  display: table;
  line-height: 0;
}
.ui-grid-footer-canvas:after {
  clear: both;
}
.ui-grid-footer-cell-wrapper {
  position: relative;
  display: table;
  box-sizing: border-box;
  height: 100%;
}
.ui-grid-footer-cell-row {
  display: table-row;
}
.ui-grid-footer-cell {
  overflow: hidden;
  background-color: inherit;
  border-right: 1px solid;
  border-color: #d4d4d4;
  box-sizing: border-box;
  display: table-cell;
}
.ui-grid-footer-cell:last-child {
  border-right: 0;
}
.ui-grid-menu-button {
  z-index: 2;
  position: absolute;
  right: 0;
  top: 0;
  background: #f3f3f3;
  border: 0;
  border-left: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
  cursor: pointer;
  height: 32px;
  font-weight: normal;
}
.ui-grid-menu-button .ui-grid-icon-container {
  margin-top: 5px;
  margin-left: 2px;
}
.ui-grid-menu-button .ui-grid-menu {
  right: 0;
}
.ui-grid-menu-button .ui-grid-menu .ui-grid-menu-mid {
  overflow: scroll;
}
.ui-grid-menu {
  overflow: hidden;
  max-width: 320px;
  z-index: 2;
  position: absolute;
  right: 100%;
  padding: 0 10px 20px 10px;
  cursor: pointer;
  box-sizing: border-box;
}
.ui-grid-menu-item {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ui-grid-menu .ui-grid-menu-inner {
  background: #fff;
  border: 1px solid #d4d4d4;
  position: relative;
  white-space: nowrap;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.ui-grid-menu .ui-grid-menu-inner ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.ui-grid-menu .ui-grid-menu-inner ul li {
  padding: 0;
}
.ui-grid-menu .ui-grid-menu-inner ul li .ui-grid-menu-item {
  color: #000;
  min-width: 100%;
  padding: 8px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: default;
}
.ui-grid-menu .ui-grid-menu-inner ul li button.ui-grid-menu-item {
  cursor: pointer;
}
.ui-grid-menu .ui-grid-menu-inner ul li button.ui-grid-menu-item:hover,
.ui-grid-menu .ui-grid-menu-inner ul li button.ui-grid-menu-item:focus {
  background-color: #b3c4c7;
}
.ui-grid-menu .ui-grid-menu-inner ul li button.ui-grid-menu-item.ui-grid-menu-item-active {
  background-color: #9cb2b6;
}
.ui-grid-menu .ui-grid-menu-inner ul li:not(:last-child) > .ui-grid-menu-item {
  border-bottom: 1px solid #d4d4d4;
}
.ui-grid-sortarrow {
  right: 5px;
  position: absolute;
  width: 20px;
  top: 0;
  bottom: 0;
  background-position: center;
}
.ui-grid-sortarrow.down {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
@font-face {
  font-family: 'ui-grid';
  src: url(/dist/fonts/ui-grid.eot);
  src: url(/dist/fonts/ui-grid.eot#iefix) format('embedded-opentype'), url(/dist/fonts/ui-grid.woff) format('woff'), url(/dist/fonts/ui-grid.ttf) format('truetype'), url(/dist/fonts/ui-grid.svg?#ui-grid) format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'ui-grid';
    src: url('@{font-path}ui-grid.svg?12312827#ui-grid') format('svg');
  }
}
*/
[class^="ui-grid-icon"]:before,
[class*=" ui-grid-icon"]:before {
  font-family: "ui-grid";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.ui-grid-icon-blank::before {
  width: 1em;
  content: ' ';
}
.ui-grid-icon-plus-squared:before {
  content: '\C350';
}
.ui-grid-icon-minus-squared:before {
  content: '\C351';
}
.ui-grid-icon-search:before {
  content: '\C352';
}
.ui-grid-icon-cancel:before {
  content: '\C353';
}
.ui-grid-icon-info-circled:before {
  content: '\C354';
}
.ui-grid-icon-lock:before {
  content: '\C355';
}
.ui-grid-icon-lock-open:before {
  content: '\C356';
}
.ui-grid-icon-pencil:before {
  content: '\C357';
}
.ui-grid-icon-down-dir:before {
  content: '\C358';
}
.ui-grid-icon-up-dir:before {
  content: '\C359';
}
.ui-grid-icon-left-dir:before {
  content: '\C35A';
}
.ui-grid-icon-right-dir:before {
  content: '\C35B';
}
.ui-grid-icon-left-open:before {
  content: '\C35C';
}
.ui-grid-icon-right-open:before {
  content: '\C35D';
}
.ui-grid-icon-angle-down:before {
  content: '\C35E';
}
.ui-grid-icon-filter:before {
  content: '\C35F';
}
.ui-grid-icon-sort-alt-up:before {
  content: '\C360';
}
.ui-grid-icon-sort-alt-down:before {
  content: '\C361';
}
.ui-grid-icon-ok:before {
  content: '\C362';
}
.ui-grid-icon-menu:before {
  content: '\C363';
}
.ui-grid-icon-indent-left:before {
  content: '\E800';
}
.ui-grid-icon-indent-right:before {
  content: '\E801';
}
.ui-grid-icon-spin5:before {
  content: '\EA61';
}
/*
* RTL Styles
*/
.ui-grid[dir=rtl] .ui-grid-header-cell,
.ui-grid[dir=rtl] .ui-grid-footer-cell,
.ui-grid[dir=rtl] .ui-grid-cell {
  float: right !important;
}
.ui-grid[dir=rtl] .ui-grid-column-menu-button {
  position: absolute;
  left: 1px;
  top: 0;
  right: inherit;
}
.ui-grid[dir=rtl] .ui-grid-cell:first-child,
.ui-grid[dir=rtl] .ui-grid-header-cell:first-child,
.ui-grid[dir=rtl] .ui-grid-footer-cell:first-child {
  border-right: 0;
}
.ui-grid[dir=rtl] .ui-grid-cell:last-child,
.ui-grid[dir=rtl] .ui-grid-header-cell:last-child {
  border-right: 1px solid #d4d4d4;
  border-left: 0;
}
.ui-grid[dir=rtl] .ui-grid-header-cell:first-child .ui-grid-vertical-bar,
.ui-grid[dir=rtl] .ui-grid-footer-cell:first-child .ui-grid-vertical-bar,
.ui-grid[dir=rtl] .ui-grid-cell:first-child .ui-grid-vertical-bar {
  width: 0;
}
.ui-grid[dir=rtl] .ui-grid-menu-button {
  z-index: 2;
  position: absolute;
  left: 0;
  right: auto;
  background: #f3f3f3;
  border: 1px solid #d4d4d4;
  cursor: pointer;
  min-height: 27px;
  font-weight: normal;
}
.ui-grid[dir=rtl] .ui-grid-menu-button .ui-grid-menu {
  left: 0;
  right: auto;
}
.ui-grid[dir=rtl] .ui-grid-filter-container .ui-grid-filter-button {
  right: initial;
  left: 0;
}
.ui-grid[dir=rtl] .ui-grid-filter-container .ui-grid-filter-button [class^="ui-grid-icon"] {
  right: initial;
  left: 10px;
}
/*
   Animation example, for spinners
*/
.ui-grid-animate-spin {
  -moz-animation: ui-grid-spin 2s infinite linear;
  -o-animation: ui-grid-spin 2s infinite linear;
  -webkit-animation: ui-grid-spin 2s infinite linear;
  animation: ui-grid-spin 2s infinite linear;
  display: inline-block;
}
@-moz-keyframes ui-grid-spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-webkit-keyframes ui-grid-spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-o-keyframes ui-grid-spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-ms-keyframes ui-grid-spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes ui-grid-spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.ui-grid-cell-focus {
  outline: 0;
  background-color: #b3c4c7;
}
.ui-grid-focuser {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.ui-grid-focuser:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.ui-grid-offscreen {
  display: block;
  position: absolute;
  left: -10000px;
  top: -10000px;
  clip: rect(0px, 0px, 0px, 0px);
}

.ui-grid-cell input {
  border-radius: inherit;
  padding: 0;
  width: 100%;
  color: inherit;
  height: auto;
  font: inherit;
  outline: none;
}
.ui-grid-cell input:focus {
  color: inherit;
  outline: none;
}
.ui-grid-cell input[type="checkbox"] {
  margin: 9px 0 0 6px;
  width: auto;
}
.ui-grid-cell input.ng-invalid {
  border: 1px solid #fc8f8f;
}
.ui-grid-cell input.ng-valid {
  border: 1px solid #d4d4d4;
}

.ui-grid-viewport .ui-grid-empty-base-layer-container {
  position: absolute;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.expandableRow .ui-grid-row:nth-child(odd) .ui-grid-cell {
  background-color: #fdfdfd;
}
.expandableRow .ui-grid-row:nth-child(even) .ui-grid-cell {
  background-color: #f3f3f3;
}
.ui-grid-cell.ui-grid-disable-selection.ui-grid-row-header-cell {
  pointer-events: none;
}
.ui-grid-expandable-buttons-cell i {
  pointer-events: all;
}
.scrollFiller {
  float: left;
  border: 1px solid #d4d4d4;
}


.ui-grid-tree-header-row {
  font-weight: bold !important;
}


.movingColumn {
  position: absolute;
  top: 0;
  border: 1px solid #d4d4d4;
  box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
}
.movingColumn .ui-grid-icon-angle-down {
  display: none;
}

/* This file contains variable declarations (do not remove this line) */
/*-- VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
/**
* @section Grid styles
*/
/**
* @section Header styles
*/
/** @description Colors for header gradient */
/**
* @section Grid body styles
*/
/** @description Colors used for row alternation */
/**
* @section Grid Menu colors
*/
/**
* @section Sort arrow colors
*/
/**
* @section Scrollbar styles
*/
/**
* @section font library path
*/
/*-- END VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.ui-grid-pager-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-top: 3px;
  padding-bottom: 3px;
  box-sizing: content-box;
}
.ui-grid-pager-container {
  float: left;
}
.ui-grid-pager-control {
  padding: 5px 0;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin-right: 10px;
  margin-left: 10px;
  min-width: 135px;
  float: left;
}
.ui-grid-pager-control button,
.ui-grid-pager-control span,
.ui-grid-pager-control input {
  margin-right: 4px;
}
.ui-grid-pager-control button {
  height: 25px;
  min-width: 26px;
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background: #f3f3f3;
  border: 1px solid #ccc;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #eee;
}
.ui-grid-pager-control button:hover {
  border-color: #adadad;
  text-decoration: none;
}
.ui-grid-pager-control button:focus {
  border-color: #8c8c8c;
  text-decoration: none;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.ui-grid-pager-control button:active {
  border-color: #adadad;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.ui-grid-pager-control button:active:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.ui-grid-pager-control button:active:hover,
.ui-grid-pager-control button:active:focus {
  background-color: #c8c8c8;
  border-color: #8c8c8c;
}
.ui-grid-pager-control button:hover,
.ui-grid-pager-control button:focus,
.ui-grid-pager-control button:active {
  color: #eee;
  background: #dadada;
}
.ui-grid-pager-control button[disabled] {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ui-grid-pager-control button[disabled]:hover,
.ui-grid-pager-control button[disabled]:focus {
  background-color: #f3f3f3;
  border-color: #ccc;
}
.ui-grid-pager-control input {
  display: inline;
  height: 26px;
  width: 50px;
  vertical-align: top;
  color: #555555;
  background: #fff;
  border: 1px solid #ccc;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.ui-grid-pager-control input:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.ui-grid-pager-control input[disabled],
.ui-grid-pager-control input[readonly],
.ui-grid-pager-control input::-moz-placeholder {
  opacity: 1;
}
.ui-grid-pager-control input::-moz-placeholder,
.ui-grid-pager-control input:-ms-input-placeholder,
.ui-grid-pager-control input::-webkit-input-placeholder {
  color: #999;
}
.ui-grid-pager-control input::-ms-expand {
  border: 0;
  background-color: transparent;
}
.ui-grid-pager-control input[disabled],
.ui-grid-pager-control input[readonly] {
  background-color: #eeeeee;
}
.ui-grid-pager-control input[disabled] {
  cursor: not-allowed;
}
.ui-grid-pager-control .ui-grid-pager-max-pages-number {
  vertical-align: bottom;
}
.ui-grid-pager-control .ui-grid-pager-max-pages-number > * {
  vertical-align: bottom;
}
.ui-grid-pager-control .ui-grid-pager-max-pages-number abbr {
  border-bottom: none;
  text-decoration: none;
}
.ui-grid-pager-control .first-bar {
  width: 10px;
  border-left: 2px solid #4d4d4d;
  margin-top: -6px;
  height: 12px;
  margin-left: -3px;
}
.ui-grid-pager-control .first-bar-rtl {
  width: 10px;
  border-left: 2px solid #4d4d4d;
  margin-top: -6px;
  height: 12px;
  margin-right: -7px;
}
.ui-grid-pager-control .first-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 8.7px 5px 0;
  border-color: transparent #4d4d4d transparent transparent;
  margin-left: 2px;
}
.ui-grid-pager-control .next-triangle {
  margin-left: 1px;
}
.ui-grid-pager-control .prev-triangle {
  margin-left: 0;
}
.ui-grid-pager-control .last-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8.7px;
  border-color: transparent transparent transparent #4d4d4d;
  margin-left: -1px;
}
.ui-grid-pager-control .last-bar {
  width: 10px;
  border-left: 2px solid #4d4d4d;
  margin-top: -6px;
  height: 12px;
  margin-left: 1px;
}
.ui-grid-pager-control .last-bar-rtl {
  width: 10px;
  border-left: 2px solid #4d4d4d;
  margin-top: -6px;
  height: 12px;
  margin-right: -11px;
}
.ui-grid-pager-row-count-picker {
  float: left;
  padding: 5px 10px;
}
.ui-grid-pager-row-count-picker select {
  color: #555555;
  background: #fff;
  border: 1px solid #ccc;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
  height: 25px;
  width: 67px;
  display: inline;
  vertical-align: middle;
}
.ui-grid-pager-row-count-picker select:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.ui-grid-pager-row-count-picker select[disabled],
.ui-grid-pager-row-count-picker select[readonly],
.ui-grid-pager-row-count-picker select::-moz-placeholder {
  opacity: 1;
}
.ui-grid-pager-row-count-picker select::-moz-placeholder,
.ui-grid-pager-row-count-picker select:-ms-input-placeholder,
.ui-grid-pager-row-count-picker select::-webkit-input-placeholder {
  color: #999;
}
.ui-grid-pager-row-count-picker select::-ms-expand {
  border: 0;
  background-color: transparent;
}
.ui-grid-pager-row-count-picker select[disabled],
.ui-grid-pager-row-count-picker select[readonly] {
  background-color: #eeeeee;
}
.ui-grid-pager-row-count-picker select[disabled] {
  cursor: not-allowed;
}
.ui-grid-pager-row-count-picker .ui-grid-pager-row-count-label {
  margin-top: 3px;
}
.ui-grid-pager-count-container {
  float: right;
  margin-top: 4px;
  min-width: 50px;
}
.ui-grid-pager-count-container .ui-grid-pager-count {
  margin-right: 10px;
  margin-left: 10px;
  float: right;
}
.ui-grid-pager-count-container .ui-grid-pager-count abbr {
  border-bottom: none;
  text-decoration: none;
}

.ui-grid-pinned-container {
  position: absolute;
  display: inline;
  top: 0;
}
.ui-grid-pinned-container.ui-grid-pinned-container-left {
  float: left;
  left: 0;
}
.ui-grid-pinned-container.ui-grid-pinned-container-right {
  float: right;
  right: 0;
}
.ui-grid-pinned-container.ui-grid-pinned-container-left .ui-grid-header-cell:last-child {
  box-sizing: border-box;
  border-right: 1px solid;
  border-width: 1px;
  border-right-color: #aeaeae;
}
.ui-grid-pinned-container.ui-grid-pinned-container-left .ui-grid-cell:last-child {
  box-sizing: border-box;
  border-right: 1px solid;
  border-width: 1px;
  border-right-color: #aeaeae;
}
.ui-grid-pinned-container.ui-grid-pinned-container-left .ui-grid-header-cell:not(:last-child) .ui-grid-vertical-bar,
.ui-grid-pinned-container .ui-grid-cell:not(:last-child) .ui-grid-vertical-bar {
  width: 1px;
}
.ui-grid-pinned-container.ui-grid-pinned-container-left .ui-grid-header-cell:not(:last-child) .ui-grid-vertical-bar {
  background-color: #d4d4d4;
}
.ui-grid-pinned-container.ui-grid-pinned-container-left .ui-grid-cell:not(:last-child) .ui-grid-vertical-bar {
  background-color: #aeaeae;
}
.ui-grid-pinned-container.ui-grid-pinned-container-left .ui-grid-header-cell:last-child .ui-grid-vertical-bar {
  right: -1px;
  width: 1px;
  background-color: #aeaeae;
}
.ui-grid-pinned-container.ui-grid-pinned-container-right .ui-grid-header-cell:first-child {
  box-sizing: border-box;
  border-left: 1px solid;
  border-width: 1px;
  border-left-color: #aeaeae;
}
.ui-grid-pinned-container.ui-grid-pinned-container-right .ui-grid-cell:first-child {
  box-sizing: border-box;
  border-left: 1px solid;
  border-width: 1px;
  border-left-color: #aeaeae;
}
.ui-grid-pinned-container.ui-grid-pinned-container-right .ui-grid-header-cell:not(:first-child) .ui-grid-vertical-bar,
.ui-grid-pinned-container .ui-grid-cell:not(:first-child) .ui-grid-vertical-bar {
  width: 1px;
}
.ui-grid-pinned-container.ui-grid-pinned-container-right .ui-grid-header-cell:not(:first-child) .ui-grid-vertical-bar {
  background-color: #d4d4d4;
}
.ui-grid-pinned-container.ui-grid-pinned-container-right .ui-grid-cell:not(:last-child) .ui-grid-vertical-bar {
  background-color: #aeaeae;
}
.ui-grid-pinned-container.ui-grid-pinned-container-first .ui-grid-header-cell:first-child .ui-grid-vertical-bar {
  left: -1px;
  width: 1px;
  background-color: #aeaeae;
}

.ui-grid-column-resizer {
  top: 0;
  bottom: 0;
  width: 5px;
  position: absolute;
  cursor: col-resize;
}
.ui-grid-column-resizer.left {
  left: 0;
}
.ui-grid-column-resizer.right {
  right: 0;
}
.ui-grid-header-cell:last-child .ui-grid-column-resizer.right {
  border-right: 1px solid #d4d4d4;
}
.ui-grid[dir=rtl] .ui-grid-header-cell:last-child .ui-grid-column-resizer.right {
  border-right: 0;
}
.ui-grid[dir=rtl] .ui-grid-header-cell:last-child .ui-grid-column-resizer.left {
  border-left: 1px solid #d4d4d4;
}
.ui-grid.column-resizing {
  cursor: col-resize;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ui-grid.column-resizing .ui-grid-resize-overlay {
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #aeaeae;
}

.ui-grid-row-saving .ui-grid-cell {
  color: #848484 !important;
}
.ui-grid-row-dirty .ui-grid-cell {
  color: #610B38;
}
.ui-grid-row-error .ui-grid-cell {
  color: #FF0000 !important;
}

.ui-grid-row.ui-grid-row-selected > [ui-grid-row] > .ui-grid-cell {
  background-color: #C9DDE1;
}
.ui-grid-disable-selection {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}
.ui-grid-selection-row-header-buttons {
  display: flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
}
.ui-grid-selection-row-header-buttons::before {
  opacity: 0.1;
}
.ui-grid-selection-row-header-buttons.ui-grid-row-selected::before,
.ui-grid-selection-row-header-buttons.ui-grid-all-selected::before {
  opacity: 1;
}

.ui-grid-tree-row-header-buttons.ui-grid-tree-header {
  cursor: pointer;
  opacity: 1;
}

.ui-grid-tree-header-row {
  font-weight: bold !important;
}
.ui-grid-tree-header-row .ui-grid-cell.ui-grid-disable-selection.ui-grid-row-header-cell {
  pointer-events: all;
}

.ui-grid-cell-contents.invalid {
  border: 1px solid #fc8f8f;
}

/**
 * gridster.js - v0.2.1 - 2013-10-28 * http://gridster.net
 * Copyright (c) 2013 ducksboard; Licensed MIT
 */
.gridster {
  position: relative;
  margin: auto;
  height: 0;
}
.gridster > ul {
  margin: 0;
  list-style: none;
  padding: 0;
}
.gridster-item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  z-index: 2;
  position: absolute;
  display: none;
}
.gridster-loaded {
  -webkit-transition: height .3s;
  -moz-transition: height .3s;
  -o-transition: height .3s;
  transition: height .3s;
}
.gridster-loaded .gridster-item {
  display: block;
  position: absolute;
  -webkit-transition: opacity .3s, left .3s, top .3s, width .3s, height .3s;
  -moz-transition: opacity .3s, left .3s, top .3s, width .3s, height .3s;
  -o-transition: opacity .3s, left .3s, top .3s, width .3s, height .3s;
  transition: opacity .3s, left .3s, top .3s, width .3s, height .3s;
  -webkit-transition-delay: 50ms;
  -moz-transition-delay: 50ms;
  -o-transition-delay: 50ms;
  transition-delay: 50ms;
}
.gridster-loaded .gridster-preview-holder {
  display: none;
  z-index: 1;
  position: absolute;
  background-color: #ddd;
  border-color: #fff;
  opacity: 0.2;
}
.gridster-loaded .gridster-item.gridster-item-moving,
.gridster-loaded .gridster-preview-holder {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
.gridster-mobile {
  height: auto !important;
}
.gridster-mobile .gridster-item {
  height: auto;
  position: static;
  float: none;
}
.gridster-item.ng-leave.ng-leave-active {
  opacity: 0;
}
.gridster-item.ng-enter {
  opacity: 1;
}
.gridster-item-moving {
  z-index: 3;
}
/* RESIZE */
.gridster-item-resizable-handler {
  position: absolute;
  font-size: 1px;
  display: block;
  z-index: 5;
}
.handle-se {
  cursor: se-resize;
  width: 0;
  height: 0;
  right: 1px;
  bottom: 1px;
  border-style: solid;
  border-width: 0 0 12px 12px;
  border-color: transparent;
}
.handle-ne {
  cursor: ne-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  top: 1px;
}
.handle-nw {
  cursor: nw-resize;
  width: 12px;
  height: 12px;
  left: 1px;
  top: 1px;
}
.handle-sw {
  cursor: sw-resize;
  width: 12px;
  height: 12px;
  left: 1px;
  bottom: 1px;
}
.handle-e {
  cursor: e-resize;
  width: 12px;
  bottom: 0;
  right: 1px;
  top: 0;
}
.handle-s {
  cursor: s-resize;
  height: 12px;
  right: 0;
  bottom: 1px;
  left: 0;
}
.handle-n {
  cursor: n-resize;
  height: 12px;
  right: 0;
  top: 1px;
  left: 0;
}
.handle-w {
  cursor: w-resize;
  width: 12px;
  left: 1px;
  top: 0;
  bottom: 0;
}
.gridster .gridster-item:hover .gridster-box {
  border: 1.5px solid #B3B2B3;
}
.gridster .gridster-item:hover .handle-se {
  border-color: transparent transparent #ccc;
}

/*!
 * ui-select
 * http://github.com/angular-ui/ui-select
 * Version: 0.19.8 - 2017-04-18T05:43:43.881Z
 * License: MIT
 */


/* Style when highlighting a search. */
.ui-select-highlight {
  font-weight: bold;
}

.ui-select-offscreen {
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  outline: 0 !important;
  left: 0px !important;
  top: 0px !important;
}


.ui-select-choices-row:hover {
  background-color: #f5f5f5;
}

/* Select2 theme */

/* Mark invalid Select2 */
.ng-dirty.ng-invalid > a.select2-choice {
    border-color: #D44950;
}

.select2-result-single {
  padding-left: 0;
}

.select2-locked > .select2-search-choice-close{
  display:none;
}

.select-locked > .ui-select-match-close{
    display:none;
}

body > .select2-container.open {
  z-index: 9999; /* The z-index Select2 applies to the select2-drop */
}

/* Handle up direction Select2 */
.ui-select-container[theme="select2"].direction-up .ui-select-match,
.ui-select-container.select2.direction-up .ui-select-match {
    border-radius: 4px; /* FIXME hardcoded value :-/ */
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.ui-select-container[theme="select2"].direction-up .ui-select-dropdown,
.ui-select-container.select2.direction-up .ui-select-dropdown {
    border-radius: 4px; /* FIXME hardcoded value :-/ */
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    border-top-width: 1px;  /* FIXME hardcoded value :-/ */
    border-top-style: solid;

    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);

    margin-top: -4px; /* FIXME hardcoded value :-/ */
}
.ui-select-container[theme="select2"].direction-up .ui-select-dropdown .select2-search,
.ui-select-container.select2.direction-up .ui-select-dropdown .select2-search {
    margin-top: 4px; /* FIXME hardcoded value :-/ */
}
.ui-select-container[theme="select2"].direction-up.select2-dropdown-open .ui-select-match,
.ui-select-container.select2.direction-up.select2-dropdown-open .ui-select-match {
    border-bottom-color: #5897fb;
}

.ui-select-container[theme="select2"] .ui-select-dropdown .ui-select-search-hidden,
.ui-select-container[theme="select2"] .ui-select-dropdown .ui-select-search-hidden input{
    opacity: 0;
    height: 0;
    min-height: 0;
    padding: 0;
    margin: 0;
    border:0;
}

/* Selectize theme */

/* Helper class to show styles when focus */
.selectize-input.selectize-focus{
  border-color: #007FBB !important;
}

/* Fix input width for Selectize theme */
.selectize-control.single > .selectize-input > input {
  width: 100%;
}

/* Fix line break when there's at least one item selected with the Selectize theme */
.selectize-control.multi > .selectize-input > input {
  margin: 0 !important;
}

/* Fix dropdown width for Selectize theme */
.selectize-control > .selectize-dropdown {
  width: 100%;
}

/* Mark invalid Selectize */
.ng-dirty.ng-invalid > div.selectize-input {
    border-color: #D44950;
}

/* Handle up direction Selectize */
.ui-select-container[theme="selectize"].direction-up .ui-select-dropdown {
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
    margin-top: -2px; /* FIXME hardcoded value :-/ */
}

.ui-select-container[theme="selectize"] input.ui-select-search-hidden{
    opacity: 0;
    height: 0;
    min-height: 0;
    padding: 0;
    margin: 0;
    border:0;
    width: 0;
}

/* Bootstrap theme */

/* Helper class to show styles when focus */
.btn-default-focus {
  color: #333;
  background-color: #EBEBEB;
  border-color: #ADADAD;
  text-decoration: none;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.ui-select-bootstrap .ui-select-toggle {
  position: relative;
}

.ui-select-bootstrap .ui-select-toggle > .caret {
  position: absolute;
  height: 10px;
  top: 50%;
  right: 10px;
  margin-top: -2px;
}

/* Fix Bootstrap dropdown position when inside a input-group */
.input-group > .ui-select-bootstrap.dropdown {
  /* Instead of relative */
  position: static;
}

.input-group > .ui-select-bootstrap > input.ui-select-search.form-control {
  border-radius: 4px; /* FIXME hardcoded value :-/ */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .ui-select-bootstrap > input.ui-select-search.form-control.direction-up {
  border-radius: 4px !important; /* FIXME hardcoded value :-/ */
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.ui-select-bootstrap .ui-select-search-hidden{
    opacity: 0;
    height: 0;
    min-height: 0;
    padding: 0;
    margin: 0;
    border:0;
}

.ui-select-bootstrap > .ui-select-match > .btn{
  /* Instead of center because of .btn */
  text-align: left !important;
}

.ui-select-bootstrap > .ui-select-match > .caret {
  position: absolute;
  top: 45%;
  right: 15px;
}

/* See Scrollable Menu with Bootstrap 3 http://stackoverflow.com/questions/19227496 */
.ui-select-bootstrap > .ui-select-choices ,.ui-select-bootstrap > .ui-select-no-choice {
  width: 100%;
  height: auto;
  max-height: 200px;
  overflow-x: hidden;
  margin-top: -1px;
}

body > .ui-select-bootstrap.open {
  z-index: 1000; /* Standard Bootstrap dropdown z-index */
}

.ui-select-multiple.ui-select-bootstrap {
  height: auto;
  padding: 3px 3px 0 3px;
}

.ui-select-multiple.ui-select-bootstrap input.ui-select-search {
  background-color: transparent !important; /* To prevent double background when disabled */
  border: none;
  outline: none;
  height: 1.666666em;
  margin-bottom: 3px;
}

.ui-select-multiple.ui-select-bootstrap .ui-select-match .close {
  font-size: 1.6em;
  line-height: 0.75;
}

.ui-select-multiple.ui-select-bootstrap .ui-select-match-item {
  outline: 0;
  margin: 0 3px 3px 0;
}

.ui-select-multiple .ui-select-match-item {
  position: relative;
}

.ui-select-multiple .ui-select-match-item.dropping .ui-select-match-close {
  pointer-events: none;
}

.ui-select-multiple:hover .ui-select-match-item.dropping-before:before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  margin-right: 2px;
  border-left: 1px solid #428bca;
}

.ui-select-multiple:hover .ui-select-match-item.dropping-after:after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  margin-left: 2px;
  border-right: 1px solid #428bca;
}

.ui-select-bootstrap .ui-select-choices-row>span {
    cursor: pointer;
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}

.ui-select-bootstrap .ui-select-choices-row>span:hover, .ui-select-bootstrap .ui-select-choices-row>span:focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5;
}

.ui-select-bootstrap .ui-select-choices-row.active>span {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #428bca;
}

.ui-select-bootstrap .ui-select-choices-row.disabled>span,
.ui-select-bootstrap .ui-select-choices-row.active.disabled>span {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
}

/* fix hide/show angular animation */
.ui-select-match.ng-hide-add,
.ui-select-search.ng-hide-add {
    display: none !important;
}

/* Mark invalid Bootstrap */
.ui-select-bootstrap.ng-dirty.ng-invalid > button.btn.ui-select-match {
    border-color: #D44950;
}

/* Handle up direction Bootstrap */
.ui-select-container[theme="bootstrap"].direction-up .ui-select-dropdown {
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
}

.ui-select-bootstrap .ui-select-match-text {
    width: 100%;
    padding-right: 1em;
}
.ui-select-bootstrap .ui-select-match-text span {
    display: inline-block;
    width: 100%;
    overflow: hidden;
}
.ui-select-bootstrap .ui-select-toggle > a.btn {
  position: absolute;
  height: 10px;
  right: 10px;
  margin-top: -2px;
}

/* Spinner */
.ui-select-refreshing.glyphicon {
    position: absolute;
    right: 0;
    padding: 8px 27px;
 }

@-webkit-keyframes ui-select-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes ui-select-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.ui-select-spin {
  -webkit-animation: ui-select-spin 2s infinite linear;
  animation: ui-select-spin 2s infinite linear;
}

.ui-select-refreshing.ng-animate {
  -webkit-animation: none 0s;
}

tags-input {
  display: block;
}
tags-input *, tags-input *:before, tags-input *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
tags-input .host {
  position: relative;
  margin-top: 5px;
  margin-bottom: 5px;
  height: 100%;
}
tags-input .host:active {
  outline: none;
}

tags-input .tags {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  padding: 1px;
  overflow: hidden;
  word-wrap: break-word;
  cursor: text;
  background-color: #fff;
  border: 1px solid darkgray;
  box-shadow: 1px 1px 1px 0 lightgray inset;
  height: 100%;
}
tags-input .tags.focused {
  outline: none;
  -webkit-box-shadow: 0 0 3px 1px rgba(5, 139, 242, 0.6);
  -moz-box-shadow: 0 0 3px 1px rgba(5, 139, 242, 0.6);
  box-shadow: 0 0 3px 1px rgba(5, 139, 242, 0.6);
}
tags-input .tags .tag-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
tags-input .tags .tag-item {
  margin: 2px;
  padding: 0 5px;
  display: inline-block;
  float: left;
  font: 14px "Helvetica Neue", Helvetica, Arial, sans-serif;
  height: 26px;
  line-height: 25px;
  border: 1px solid #acacac;
  border-radius: 3px;
  background: -webkit-linear-gradient(top, #f0f9ff 0%, #cbebff 47%, #a1dbff 100%);
  background: linear-gradient(to bottom, #f0f9ff 0%, #cbebff 47%, #a1dbff 100%);
}
tags-input .tags .tag-item.selected {
  background: -webkit-linear-gradient(top, #febbbb 0%, #fe9090 45%, #ff5c5c 100%);
  background: linear-gradient(to bottom, #febbbb 0%, #fe9090 45%, #ff5c5c 100%);
}
tags-input .tags .tag-item .remove-button {
  margin: 0 0 0 5px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  vertical-align: middle;
  font: bold 16px Arial, sans-serif;
  color: #585858;
}
tags-input .tags .tag-item .remove-button:active {
  color: #ff0000;
}
tags-input .tags .input {
  border: 0;
  outline: none;
  margin: 2px;
  padding: 0;
  padding-left: 5px;
  float: left;
  height: 26px;
  font: 14px "Helvetica Neue", Helvetica, Arial, sans-serif;
}
tags-input .tags .input.invalid-tag {
  color: #ff0000;
}
tags-input .tags .input::-ms-clear {
  display: none;
}
tags-input.ng-invalid .tags {
  -webkit-box-shadow: 0 0 3px 1px rgba(255, 0, 0, 0.6);
  -moz-box-shadow: 0 0 3px 1px rgba(255, 0, 0, 0.6);
  box-shadow: 0 0 3px 1px rgba(255, 0, 0, 0.6);
}
tags-input[disabled] .host:focus {
  outline: none;
}
tags-input[disabled] .tags {
  background-color: #eee;
  cursor: default;
}
tags-input[disabled] .tags .tag-item {
  opacity: 0.65;
  background: -webkit-linear-gradient(top, #f0f9ff 0%, rgba(203, 235, 255, 0.75) 47%, rgba(161, 219, 255, 0.62) 100%);
  background: linear-gradient(to bottom, #f0f9ff 0%, rgba(203, 235, 255, 0.75) 47%, rgba(161, 219, 255, 0.62) 100%);
}
tags-input[disabled] .tags .tag-item .remove-button {
  cursor: default;
}
tags-input[disabled] .tags .tag-item .remove-button:active {
  color: #585858;
}
tags-input[disabled] .tags .input {
  background-color: #eee;
  cursor: default;
}

tags-input .autocomplete {
  margin-top: 5px;
  position: absolute;
  padding: 5px 0;
  z-index: 999;
  width: 100%;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
tags-input .autocomplete .suggestion-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  max-height: 280px;
  overflow-y: auto;
  position: relative;
}
tags-input .autocomplete .suggestion-item {
  padding: 5px 10px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font: 16px "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000;
  background-color: #fff;
}
tags-input .autocomplete .suggestion-item.selected {
  color: #fff;
  background-color: #0097cf;
}
tags-input .autocomplete .suggestion-item.selected em {
  color: #fff;
  background-color: #0097cf;
}
tags-input .autocomplete .suggestion-item em {
  font: normal bold 16px "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000;
  background-color: #fff;
}

.ta-hidden-input {
    width: 1px;
    height: 1px;
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: -10000px;
    left: -10000px;
    opacity: 0;
    overflow: hidden;
}

/* add generic styling for the editor */
.ta-root.focussed > .ta-scroll-window.form-control {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.ta-editor.ta-html, .ta-scroll-window.form-control {
    min-height: 300px;
    height: auto;
    overflow: auto;
    font-family: inherit;
    font-size: 100%;
}

.ta-scroll-window.form-control {
    position: relative;
    padding: 0;
}

.ta-scroll-window > .ta-bind {
    height: auto;
    min-height: 300px;
    padding: 6px 12px;
}

.ta-editor:focus {
    user-select: text;
}

/* add the styling for the awesomness of the resizer */
.ta-resizer-handle-overlay {
    z-index: 100;
    position: absolute;
    display: none;
}

.ta-resizer-handle-overlay > .ta-resizer-handle-info {
    position: absolute;
    bottom: 16px;
    right: 16px;
    border: 1px solid black;
    background-color: #FFF;
    padding: 0 4px;
    opacity: 0.7;
}

.ta-resizer-handle-overlay > .ta-resizer-handle-background {
    position: absolute;
    bottom: 5px;
    right: 5px;
    left: 5px;
    top: 5px;
    border: 1px solid black;
    background-color: rgba(0, 0, 0, 0.2);
}

.ta-resizer-handle-overlay > .ta-resizer-handle-corner {
    width: 10px;
    height: 10px;
    position: absolute;
}

.ta-resizer-handle-overlay > .ta-resizer-handle-corner-tl{
    top: 0;
    left: 0;
    border-left: 1px solid black;
    border-top: 1px solid black;
}

.ta-resizer-handle-overlay > .ta-resizer-handle-corner-tr{
    top: 0;
    right: 0;
    border-right: 1px solid black;
    border-top: 1px solid black;
}

.ta-resizer-handle-overlay > .ta-resizer-handle-corner-bl{
    bottom: 0;
    left: 0;
    border-left: 1px solid black;
    border-bottom: 1px solid black;
}

.ta-resizer-handle-overlay > .ta-resizer-handle-corner-br{
    bottom: 0;
    right: 0;
    border: 1px solid black;
    cursor: se-resize;
    background-color: white;
}

/* copy the popover code from bootstrap so this will work even without it */
.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 276px;
    padding: 1px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: left;
    white-space: normal;
    background-color: #fff;
    -webkit-background-clip: padding-box;
            background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
            box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}
.popover.top {
    margin-top: -10px;
}
.popover.bottom {
    margin-top: 10px;
}
.popover-title {
    padding: 8px 14px;
    margin: 0;
    font-size: 14px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
}
.popover-content {
    padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}
.popover > .arrow {
    border-width: 11px;
}
.popover > .arrow:after {
    content: "";
    border-width: 10px;
}
.popover.top > .arrow {
    bottom: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-color: #999;
    border-top-color: rgba(0, 0, 0, .25);
    border-bottom-width: 0;
}
.popover.top > .arrow:after {
    bottom: 1px;
    margin-left: -10px;
    content: " ";
    border-top-color: #fff;
    border-bottom-width: 0;
}
.popover.bottom > .arrow {
    top: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999;
    border-bottom-color: rgba(0, 0, 0, .25);
}
.popover.bottom > .arrow:after {
    top: 1px;
    margin-left: -10px;
    content: " ";
    border-top-width: 0;
    border-bottom-color: #fff;
}

/*
Version: @@ver@@ Timestamp: @@timestamp@@
*/
.select2-container {
    margin: 0;
    position: relative;
    display: inline-block;
    /* inline-block for ie7 */
    zoom: 1;
    *display: inline;
    vertical-align: middle;
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.
    More Info : http://www.quirksmode.org/css/box.html
  */
  -webkit-box-sizing: border-box; /* webkit */
     -moz-box-sizing: border-box; /* firefox */
          box-sizing: border-box; /* css3 */
}

.select2-container .select2-choice {
    display: block;
    height: 26px;
    padding: 0 0 0 8px;
    overflow: hidden;
    position: relative;

    border: 1px solid #aaa;
    white-space: nowrap;
    line-height: 26px;
    color: #444;
    text-decoration: none;

    border-radius: 4px;

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #fff;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
    background-image: linear-gradient(top, #fff 0%, #eee 50%);
}

.select2-container.select2-drop-above .select2-choice {
    border-bottom-color: #aaa;

    border-radius: 0 0 4px 4px;

    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
    background-image: linear-gradient(top, #eee 0%, #fff 90%);
}

.select2-container.select2-allowclear .select2-choice .select2-chosen {
    margin-right: 42px;
}

.select2-container .select2-choice > .select2-chosen {
    margin-right: 26px;
    display: block;
    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
}

.select2-container .select2-choice abbr {
    display: none;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 24px;
    top: 8px;

    font-size: 1px;
    text-decoration: none;

    border: 0;
    background: url(/dist/images/select2.png) right top no-repeat;
    cursor: pointer;
    outline: 0;
}

.select2-container.select2-allowclear .select2-choice abbr {
    display: inline-block;
}

.select2-container .select2-choice abbr:hover {
    background-position: right -11px;
    cursor: pointer;
}

.select2-drop-mask {
    border: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 9998;
    /* styles required for IE to work */
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-drop {
    width: 100%;
    margin-top: -1px;
    position: absolute;
    z-index: 9999;
    top: 100%;

    background: #fff;
    color: #000;
    border: 1px solid #aaa;
    border-top: 0;

    border-radius: 0 0 4px 4px;

    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}

.select2-drop.select2-drop-above {
    margin-top: 1px;
    border-top: 1px solid #aaa;
    border-bottom: 0;

    border-radius: 4px 4px 0 0;

    -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
}

.select2-drop-active {
    border: 1px solid #5897fb;
    border-top: none;
}

.select2-drop.select2-drop-above.select2-drop-active {
    border-top: 1px solid #5897fb;
}

.select2-drop-auto-width {
    border-top: 1px solid #aaa;
    width: auto;
}

.select2-drop-auto-width .select2-search {
    padding-top: 4px;
}

.select2-container .select2-choice .select2-arrow {
    display: inline-block;
    width: 18px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;

    border-left: 1px solid #aaa;
    border-radius: 0 4px 4px 0;

    background-clip: padding-box;

    background: #ccc;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
    background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
    background-image: linear-gradient(top, #ccc 0%, #eee 60%);
}

.select2-container .select2-choice .select2-arrow b {
    display: block;
    width: 100%;
    height: 100%;
    background: url(/dist/images/select2.png) no-repeat 0 1px;
}

.select2-search {
    display: inline-block;
    width: 100%;
    min-height: 26px;
    margin: 0;
    padding-left: 4px;
    padding-right: 4px;

    position: relative;
    z-index: 10000;

    white-space: nowrap;
}

.select2-search input {
    width: 100%;
    height: auto !important;
    min-height: 26px;
    padding: 4px 20px 4px 5px;
    margin: 0;

    outline: 0;
    font-family: sans-serif;
    font-size: 1em;

    border: 1px solid #aaa;
    border-radius: 0;

    -webkit-box-shadow: none;
            box-shadow: none;

    background: #fff url(/dist/images/select2.png) no-repeat 100% -22px;
    background: url(/dist/images/select2.png) no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url(/dist/images/select2.png) no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url(/dist/images/select2.png) no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url(/dist/images/select2.png) no-repeat 100% -22px, linear-gradient(top, #fff 85%, #eee 99%);
}

.select2-drop.select2-drop-above .select2-search input {
    margin-top: 4px;
}

.select2-search input.select2-active {
    background: #fff url(/dist/images/select2-spinner.gif) no-repeat 100%;
    background: url(/dist/images/select2-spinner.gif) no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url(/dist/images/select2-spinner.gif) no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url(/dist/images/select2-spinner.gif) no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url(/dist/images/select2-spinner.gif) no-repeat 100%, linear-gradient(top, #fff 85%, #eee 99%);
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;

    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
            box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.select2-dropdown-open .select2-choice {
    border-bottom-color: transparent;
    -webkit-box-shadow: 0 1px 0 #fff inset;
            box-shadow: 0 1px 0 #fff inset;

    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    background-color: #eee;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(top, #fff 0%, #eee 50%);
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
    border: 1px solid #5897fb;
    border-top-color: transparent;

    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(bottom, #fff 0%, #eee 50%);
}

.select2-dropdown-open .select2-choice .select2-arrow {
    background: transparent;
    border-left: none;
    filter: none;
}
.select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -18px 1px;
}

/* results */
.select2-results {
    max-height: 200px;
    padding: 0 0 0 4px;
    margin: 4px 4px 4px 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.select2-results ul.select2-result-sub {
    margin: 0;
    padding-left: 0;
}

.select2-results ul.select2-result-sub > li .select2-result-label { padding-left: 20px }
.select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 40px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 60px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 80px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 100px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 110px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 120px }

.select2-results li {
    list-style: none;
    display: list-item;
    background-image: none;
}

.select2-results li.select2-result-with-children > .select2-result-label {
    font-weight: bold;
}

.select2-results .select2-result-label {
    padding: 3px 7px 4px;
    margin: 0;
    cursor: pointer;

    min-height: 1em;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
}

.select2-results .select2-highlighted {
    background: #3875d7;
    color: #fff;
}

.select2-results li em {
    background: #feffde;
    font-style: normal;
}

.select2-results .select2-highlighted em {
    background: transparent;
}

.select2-results .select2-highlighted ul {
    background: #fff;
    color: #000;
}


.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-selection-limit {
    background: #f4f4f4;
    display: list-item;
}

/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
    color: #666;
    background: #f4f4f4;
    display: list-item;
    cursor: default;
}
.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}

.select2-results .select2-selected {
    display: none;
}

.select2-more-results.select2-active {
    background: #f4f4f4 url(/dist/images/select2-spinner.gif) no-repeat 100%;
}

.select2-more-results {
    background: #f4f4f4;
    display: list-item;
}

/* disabled styles */

.select2-container.select2-container-disabled .select2-choice {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container.select2-container-disabled .select2-choice .select2-arrow {
    background-color: #f4f4f4;
    background-image: none;
    border-left: 0;
}

.select2-container.select2-container-disabled .select2-choice abbr {
    display: none;
}


/* multiselect */

.select2-container-multi .select2-choices {
    height: auto !important;
    height: 1%;
    margin: 0;
    padding: 0;
    position: relative;

    border: 1px solid #aaa;
    cursor: text;
    overflow: hidden;

    background-color: #fff;
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
    background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: linear-gradient(top, #eee 1%, #fff 15%);
}

.select2-locked {
  padding: 3px 5px 3px 5px !important;
}

.select2-container-multi .select2-choices {
    min-height: 26px;
}

.select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;

    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
            box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
.select2-container-multi .select2-choices li {
    float: left;
    list-style: none;
}
html[dir="rtl"] .select2-container-multi .select2-choices li
{
    float: right;
}
.select2-container-multi .select2-choices .select2-search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.select2-container-multi .select2-choices .select2-search-field input {
    padding: 5px;
    margin: 1px 0;

    font-family: sans-serif;
    font-size: 100%;
    color: #666;
    outline: 0;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: transparent !important;
}

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
    background: #fff url(/dist/images/select2-spinner.gif) no-repeat 100% !important;
}

.select2-default {
    color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 18px;
    margin: 3px 0 3px 5px;
    position: relative;

    line-height: 13px;
    color: #333;
    cursor: default;
    border: 1px solid #aaaaaa;

    border-radius: 3px;

    -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #e4e4e4;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
    background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}
html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice
{
    margin-left: 0;
    margin-right: 5px;
}
.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
    cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
    background: #d4d4d4;
}

.select2-search-choice-close {
    display: block;
    width: 12px;
    height: 13px;
    position: absolute;
    right: 3px;
    top: 4px;

    font-size: 1px;
    outline: none;
    background: url(/dist/images/select2.png) right top no-repeat;
}
html[dir="rtl"] .select2-search-choice-close {
    right: auto;
    left: 3px;
}

.select2-container-multi .select2-search-choice-close {
    left: 3px;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
    background-position: right -11px;
}

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 5px;
    border: 1px solid #ddd;
    background-image: none;
    background-color: #f4f4f4;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {    display: none;
    background: none;
}
/* end multiselect */


.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
    text-decoration: underline;
}

.select2-offscreen, .select2-offscreen:focus {
    clip: rect(0 0 0 0) !important;
    width: 1px !important;
    height: 1px !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    outline: 0 !important;
    left: 0px !important;
    top: 0px !important;
}

.select2-display-none {
    display: none;
}

.select2-measure-scrollbar {
    position: absolute;
    top: -10000px;
    left: -10000px;
    width: 100px;
    height: 100px;
    overflow: scroll;
}
/* Retina-ize icons */

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi)  {
  .select2-search input, .select2-search-choice-close, .select2-container .select2-choice abbr, .select2-container .select2-choice .select2-arrow b {
      background-image: url(/dist/images/select2x2.png) !important;
      background-repeat: no-repeat !important;
      background-size: 60px 40px !important;
  }
  .select2-search input {
      background-position: 100% -21px !important;
  }
}

/*!
 * Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1; }

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -.0667em; }

.fa-xs {
  font-size: .75em; }

.fa-sm {
  font-size: .875em; }

.fa-1x {
  font-size: 1em; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-6x {
  font-size: 6em; }

.fa-7x {
  font-size: 7em; }

.fa-8x {
  font-size: 8em; }

.fa-9x {
  font-size: 9em; }

.fa-10x {
  font-size: 10em; }

.fa-fw {
  text-align: center;
  width: 1.25em; }

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit; }

.fa-border {
  border: solid 0.08em #eee;
  border-radius: .1em;
  padding: .2em .25em .15em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
          animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
          animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1); }

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  -webkit-filter: none;
          filter: none; }

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em; }

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\F26E"; }

.fa-accessible-icon:before {
  content: "\F368"; }

.fa-accusoft:before {
  content: "\F369"; }

.fa-acquisitions-incorporated:before {
  content: "\F6AF"; }

.fa-ad:before {
  content: "\F641"; }

.fa-address-book:before {
  content: "\F2B9"; }

.fa-address-card:before {
  content: "\F2BB"; }

.fa-adjust:before {
  content: "\F042"; }

.fa-adn:before {
  content: "\F170"; }

.fa-adversal:before {
  content: "\F36A"; }

.fa-affiliatetheme:before {
  content: "\F36B"; }

.fa-air-freshener:before {
  content: "\F5D0"; }

.fa-airbnb:before {
  content: "\F834"; }

.fa-algolia:before {
  content: "\F36C"; }

.fa-align-center:before {
  content: "\F037"; }

.fa-align-justify:before {
  content: "\F039"; }

.fa-align-left:before {
  content: "\F036"; }

.fa-align-right:before {
  content: "\F038"; }

.fa-alipay:before {
  content: "\F642"; }

.fa-allergies:before {
  content: "\F461"; }

.fa-amazon:before {
  content: "\F270"; }

.fa-amazon-pay:before {
  content: "\F42C"; }

.fa-ambulance:before {
  content: "\F0F9"; }

.fa-american-sign-language-interpreting:before {
  content: "\F2A3"; }

.fa-amilia:before {
  content: "\F36D"; }

.fa-anchor:before {
  content: "\F13D"; }

.fa-android:before {
  content: "\F17B"; }

.fa-angellist:before {
  content: "\F209"; }

.fa-angle-double-down:before {
  content: "\F103"; }

.fa-angle-double-left:before {
  content: "\F100"; }

.fa-angle-double-right:before {
  content: "\F101"; }

.fa-angle-double-up:before {
  content: "\F102"; }

.fa-angle-down:before {
  content: "\F107"; }

.fa-angle-left:before {
  content: "\F104"; }

.fa-angle-right:before {
  content: "\F105"; }

.fa-angle-up:before {
  content: "\F106"; }

.fa-angry:before {
  content: "\F556"; }

.fa-angrycreative:before {
  content: "\F36E"; }

.fa-angular:before {
  content: "\F420"; }

.fa-ankh:before {
  content: "\F644"; }

.fa-app-store:before {
  content: "\F36F"; }

.fa-app-store-ios:before {
  content: "\F370"; }

.fa-apper:before {
  content: "\F371"; }

.fa-apple:before {
  content: "\F179"; }

.fa-apple-alt:before {
  content: "\F5D1"; }

.fa-apple-pay:before {
  content: "\F415"; }

.fa-archive:before {
  content: "\F187"; }

.fa-archway:before {
  content: "\F557"; }

.fa-arrow-alt-circle-down:before {
  content: "\F358"; }

.fa-arrow-alt-circle-left:before {
  content: "\F359"; }

.fa-arrow-alt-circle-right:before {
  content: "\F35A"; }

.fa-arrow-alt-circle-up:before {
  content: "\F35B"; }

.fa-arrow-circle-down:before {
  content: "\F0AB"; }

.fa-arrow-circle-left:before {
  content: "\F0A8"; }

.fa-arrow-circle-right:before {
  content: "\F0A9"; }

.fa-arrow-circle-up:before {
  content: "\F0AA"; }

.fa-arrow-down:before {
  content: "\F063"; }

.fa-arrow-left:before {
  content: "\F060"; }

.fa-arrow-right:before {
  content: "\F061"; }

.fa-arrow-up:before {
  content: "\F062"; }

.fa-arrows-alt:before {
  content: "\F0B2"; }

.fa-arrows-alt-h:before {
  content: "\F337"; }

.fa-arrows-alt-v:before {
  content: "\F338"; }

.fa-artstation:before {
  content: "\F77A"; }

.fa-assistive-listening-systems:before {
  content: "\F2A2"; }

.fa-asterisk:before {
  content: "\F069"; }

.fa-asymmetrik:before {
  content: "\F372"; }

.fa-at:before {
  content: "\F1FA"; }

.fa-atlas:before {
  content: "\F558"; }

.fa-atlassian:before {
  content: "\F77B"; }

.fa-atom:before {
  content: "\F5D2"; }

.fa-audible:before {
  content: "\F373"; }

.fa-audio-description:before {
  content: "\F29E"; }

.fa-autoprefixer:before {
  content: "\F41C"; }

.fa-avianex:before {
  content: "\F374"; }

.fa-aviato:before {
  content: "\F421"; }

.fa-award:before {
  content: "\F559"; }

.fa-aws:before {
  content: "\F375"; }

.fa-baby:before {
  content: "\F77C"; }

.fa-baby-carriage:before {
  content: "\F77D"; }

.fa-backspace:before {
  content: "\F55A"; }

.fa-backward:before {
  content: "\F04A"; }

.fa-bacon:before {
  content: "\F7E5"; }

.fa-bacteria:before {
  content: "\E059"; }

.fa-bacterium:before {
  content: "\E05A"; }

.fa-bahai:before {
  content: "\F666"; }

.fa-balance-scale:before {
  content: "\F24E"; }

.fa-balance-scale-left:before {
  content: "\F515"; }

.fa-balance-scale-right:before {
  content: "\F516"; }

.fa-ban:before {
  content: "\F05E"; }

.fa-band-aid:before {
  content: "\F462"; }

.fa-bandcamp:before {
  content: "\F2D5"; }

.fa-barcode:before {
  content: "\F02A"; }

.fa-bars:before {
  content: "\F0C9"; }

.fa-baseball-ball:before {
  content: "\F433"; }

.fa-basketball-ball:before {
  content: "\F434"; }

.fa-bath:before {
  content: "\F2CD"; }

.fa-battery-empty:before {
  content: "\F244"; }

.fa-battery-full:before {
  content: "\F240"; }

.fa-battery-half:before {
  content: "\F242"; }

.fa-battery-quarter:before {
  content: "\F243"; }

.fa-battery-three-quarters:before {
  content: "\F241"; }

.fa-battle-net:before {
  content: "\F835"; }

.fa-bed:before {
  content: "\F236"; }

.fa-beer:before {
  content: "\F0FC"; }

.fa-behance:before {
  content: "\F1B4"; }

.fa-behance-square:before {
  content: "\F1B5"; }

.fa-bell:before {
  content: "\F0F3"; }

.fa-bell-slash:before {
  content: "\F1F6"; }

.fa-bezier-curve:before {
  content: "\F55B"; }

.fa-bible:before {
  content: "\F647"; }

.fa-bicycle:before {
  content: "\F206"; }

.fa-biking:before {
  content: "\F84A"; }

.fa-bimobject:before {
  content: "\F378"; }

.fa-binoculars:before {
  content: "\F1E5"; }

.fa-biohazard:before {
  content: "\F780"; }

.fa-birthday-cake:before {
  content: "\F1FD"; }

.fa-bitbucket:before {
  content: "\F171"; }

.fa-bitcoin:before {
  content: "\F379"; }

.fa-bity:before {
  content: "\F37A"; }

.fa-black-tie:before {
  content: "\F27E"; }

.fa-blackberry:before {
  content: "\F37B"; }

.fa-blender:before {
  content: "\F517"; }

.fa-blender-phone:before {
  content: "\F6B6"; }

.fa-blind:before {
  content: "\F29D"; }

.fa-blog:before {
  content: "\F781"; }

.fa-blogger:before {
  content: "\F37C"; }

.fa-blogger-b:before {
  content: "\F37D"; }

.fa-bluetooth:before {
  content: "\F293"; }

.fa-bluetooth-b:before {
  content: "\F294"; }

.fa-bold:before {
  content: "\F032"; }

.fa-bolt:before {
  content: "\F0E7"; }

.fa-bomb:before {
  content: "\F1E2"; }

.fa-bone:before {
  content: "\F5D7"; }

.fa-bong:before {
  content: "\F55C"; }

.fa-book:before {
  content: "\F02D"; }

.fa-book-dead:before {
  content: "\F6B7"; }

.fa-book-medical:before {
  content: "\F7E6"; }

.fa-book-open:before {
  content: "\F518"; }

.fa-book-reader:before {
  content: "\F5DA"; }

.fa-bookmark:before {
  content: "\F02E"; }

.fa-bootstrap:before {
  content: "\F836"; }

.fa-border-all:before {
  content: "\F84C"; }

.fa-border-none:before {
  content: "\F850"; }

.fa-border-style:before {
  content: "\F853"; }

.fa-bowling-ball:before {
  content: "\F436"; }

.fa-box:before {
  content: "\F466"; }

.fa-box-open:before {
  content: "\F49E"; }

.fa-box-tissue:before {
  content: "\E05B"; }

.fa-boxes:before {
  content: "\F468"; }

.fa-braille:before {
  content: "\F2A1"; }

.fa-brain:before {
  content: "\F5DC"; }

.fa-bread-slice:before {
  content: "\F7EC"; }

.fa-briefcase:before {
  content: "\F0B1"; }

.fa-briefcase-medical:before {
  content: "\F469"; }

.fa-broadcast-tower:before {
  content: "\F519"; }

.fa-broom:before {
  content: "\F51A"; }

.fa-brush:before {
  content: "\F55D"; }

.fa-btc:before {
  content: "\F15A"; }

.fa-buffer:before {
  content: "\F837"; }

.fa-bug:before {
  content: "\F188"; }

.fa-building:before {
  content: "\F1AD"; }

.fa-bullhorn:before {
  content: "\F0A1"; }

.fa-bullseye:before {
  content: "\F140"; }

.fa-burn:before {
  content: "\F46A"; }

.fa-buromobelexperte:before {
  content: "\F37F"; }

.fa-bus:before {
  content: "\F207"; }

.fa-bus-alt:before {
  content: "\F55E"; }

.fa-business-time:before {
  content: "\F64A"; }

.fa-buy-n-large:before {
  content: "\F8A6"; }

.fa-buysellads:before {
  content: "\F20D"; }

.fa-calculator:before {
  content: "\F1EC"; }

.fa-calendar:before {
  content: "\F133"; }

.fa-calendar-alt:before {
  content: "\F073"; }

.fa-calendar-check:before {
  content: "\F274"; }

.fa-calendar-day:before {
  content: "\F783"; }

.fa-calendar-minus:before {
  content: "\F272"; }

.fa-calendar-plus:before {
  content: "\F271"; }

.fa-calendar-times:before {
  content: "\F273"; }

.fa-calendar-week:before {
  content: "\F784"; }

.fa-camera:before {
  content: "\F030"; }

.fa-camera-retro:before {
  content: "\F083"; }

.fa-campground:before {
  content: "\F6BB"; }

.fa-canadian-maple-leaf:before {
  content: "\F785"; }

.fa-candy-cane:before {
  content: "\F786"; }

.fa-cannabis:before {
  content: "\F55F"; }

.fa-capsules:before {
  content: "\F46B"; }

.fa-car:before {
  content: "\F1B9"; }

.fa-car-alt:before {
  content: "\F5DE"; }

.fa-car-battery:before {
  content: "\F5DF"; }

.fa-car-crash:before {
  content: "\F5E1"; }

.fa-car-side:before {
  content: "\F5E4"; }

.fa-caravan:before {
  content: "\F8FF"; }

.fa-caret-down:before {
  content: "\F0D7"; }

.fa-caret-left:before {
  content: "\F0D9"; }

.fa-caret-right:before {
  content: "\F0DA"; }

.fa-caret-square-down:before {
  content: "\F150"; }

.fa-caret-square-left:before {
  content: "\F191"; }

.fa-caret-square-right:before {
  content: "\F152"; }

.fa-caret-square-up:before {
  content: "\F151"; }

.fa-caret-up:before {
  content: "\F0D8"; }

.fa-carrot:before {
  content: "\F787"; }

.fa-cart-arrow-down:before {
  content: "\F218"; }

.fa-cart-plus:before {
  content: "\F217"; }

.fa-cash-register:before {
  content: "\F788"; }

.fa-cat:before {
  content: "\F6BE"; }

.fa-cc-amazon-pay:before {
  content: "\F42D"; }

.fa-cc-amex:before {
  content: "\F1F3"; }

.fa-cc-apple-pay:before {
  content: "\F416"; }

.fa-cc-diners-club:before {
  content: "\F24C"; }

.fa-cc-discover:before {
  content: "\F1F2"; }

.fa-cc-jcb:before {
  content: "\F24B"; }

.fa-cc-mastercard:before {
  content: "\F1F1"; }

.fa-cc-paypal:before {
  content: "\F1F4"; }

.fa-cc-stripe:before {
  content: "\F1F5"; }

.fa-cc-visa:before {
  content: "\F1F0"; }

.fa-centercode:before {
  content: "\F380"; }

.fa-centos:before {
  content: "\F789"; }

.fa-certificate:before {
  content: "\F0A3"; }

.fa-chair:before {
  content: "\F6C0"; }

.fa-chalkboard:before {
  content: "\F51B"; }

.fa-chalkboard-teacher:before {
  content: "\F51C"; }

.fa-charging-station:before {
  content: "\F5E7"; }

.fa-chart-area:before {
  content: "\F1FE"; }

.fa-chart-bar:before {
  content: "\F080"; }

.fa-chart-line:before {
  content: "\F201"; }

.fa-chart-pie:before {
  content: "\F200"; }

.fa-check:before {
  content: "\F00C"; }

.fa-check-circle:before {
  content: "\F058"; }

.fa-check-double:before {
  content: "\F560"; }

.fa-check-square:before {
  content: "\F14A"; }

.fa-cheese:before {
  content: "\F7EF"; }

.fa-chess:before {
  content: "\F439"; }

.fa-chess-bishop:before {
  content: "\F43A"; }

.fa-chess-board:before {
  content: "\F43C"; }

.fa-chess-king:before {
  content: "\F43F"; }

.fa-chess-knight:before {
  content: "\F441"; }

.fa-chess-pawn:before {
  content: "\F443"; }

.fa-chess-queen:before {
  content: "\F445"; }

.fa-chess-rook:before {
  content: "\F447"; }

.fa-chevron-circle-down:before {
  content: "\F13A"; }

.fa-chevron-circle-left:before {
  content: "\F137"; }

.fa-chevron-circle-right:before {
  content: "\F138"; }

.fa-chevron-circle-up:before {
  content: "\F139"; }

.fa-chevron-down:before {
  content: "\F078"; }

.fa-chevron-left:before {
  content: "\F053"; }

.fa-chevron-right:before {
  content: "\F054"; }

.fa-chevron-up:before {
  content: "\F077"; }

.fa-child:before {
  content: "\F1AE"; }

.fa-chrome:before {
  content: "\F268"; }

.fa-chromecast:before {
  content: "\F838"; }

.fa-church:before {
  content: "\F51D"; }

.fa-circle:before {
  content: "\F111"; }

.fa-circle-notch:before {
  content: "\F1CE"; }

.fa-city:before {
  content: "\F64F"; }

.fa-clinic-medical:before {
  content: "\F7F2"; }

.fa-clipboard:before {
  content: "\F328"; }

.fa-clipboard-check:before {
  content: "\F46C"; }

.fa-clipboard-list:before {
  content: "\F46D"; }

.fa-clock:before {
  content: "\F017"; }

.fa-clone:before {
  content: "\F24D"; }

.fa-closed-captioning:before {
  content: "\F20A"; }

.fa-cloud:before {
  content: "\F0C2"; }

.fa-cloud-download-alt:before {
  content: "\F381"; }

.fa-cloud-meatball:before {
  content: "\F73B"; }

.fa-cloud-moon:before {
  content: "\F6C3"; }

.fa-cloud-moon-rain:before {
  content: "\F73C"; }

.fa-cloud-rain:before {
  content: "\F73D"; }

.fa-cloud-showers-heavy:before {
  content: "\F740"; }

.fa-cloud-sun:before {
  content: "\F6C4"; }

.fa-cloud-sun-rain:before {
  content: "\F743"; }

.fa-cloud-upload-alt:before {
  content: "\F382"; }

.fa-cloudflare:before {
  content: "\E07D"; }

.fa-cloudscale:before {
  content: "\F383"; }

.fa-cloudsmith:before {
  content: "\F384"; }

.fa-cloudversify:before {
  content: "\F385"; }

.fa-cocktail:before {
  content: "\F561"; }

.fa-code:before {
  content: "\F121"; }

.fa-code-branch:before {
  content: "\F126"; }

.fa-codepen:before {
  content: "\F1CB"; }

.fa-codiepie:before {
  content: "\F284"; }

.fa-coffee:before {
  content: "\F0F4"; }

.fa-cog:before {
  content: "\F013"; }

.fa-cogs:before {
  content: "\F085"; }

.fa-coins:before {
  content: "\F51E"; }

.fa-columns:before {
  content: "\F0DB"; }

.fa-comment:before {
  content: "\F075"; }

.fa-comment-alt:before {
  content: "\F27A"; }

.fa-comment-dollar:before {
  content: "\F651"; }

.fa-comment-dots:before {
  content: "\F4AD"; }

.fa-comment-medical:before {
  content: "\F7F5"; }

.fa-comment-slash:before {
  content: "\F4B3"; }

.fa-comments:before {
  content: "\F086"; }

.fa-comments-dollar:before {
  content: "\F653"; }

.fa-compact-disc:before {
  content: "\F51F"; }

.fa-compass:before {
  content: "\F14E"; }

.fa-compress:before {
  content: "\F066"; }

.fa-compress-alt:before {
  content: "\F422"; }

.fa-compress-arrows-alt:before {
  content: "\F78C"; }

.fa-concierge-bell:before {
  content: "\F562"; }

.fa-confluence:before {
  content: "\F78D"; }

.fa-connectdevelop:before {
  content: "\F20E"; }

.fa-contao:before {
  content: "\F26D"; }

.fa-cookie:before {
  content: "\F563"; }

.fa-cookie-bite:before {
  content: "\F564"; }

.fa-copy:before {
  content: "\F0C5"; }

.fa-copyright:before {
  content: "\F1F9"; }

.fa-cotton-bureau:before {
  content: "\F89E"; }

.fa-couch:before {
  content: "\F4B8"; }

.fa-cpanel:before {
  content: "\F388"; }

.fa-creative-commons:before {
  content: "\F25E"; }

.fa-creative-commons-by:before {
  content: "\F4E7"; }

.fa-creative-commons-nc:before {
  content: "\F4E8"; }

.fa-creative-commons-nc-eu:before {
  content: "\F4E9"; }

.fa-creative-commons-nc-jp:before {
  content: "\F4EA"; }

.fa-creative-commons-nd:before {
  content: "\F4EB"; }

.fa-creative-commons-pd:before {
  content: "\F4EC"; }

.fa-creative-commons-pd-alt:before {
  content: "\F4ED"; }

.fa-creative-commons-remix:before {
  content: "\F4EE"; }

.fa-creative-commons-sa:before {
  content: "\F4EF"; }

.fa-creative-commons-sampling:before {
  content: "\F4F0"; }

.fa-creative-commons-sampling-plus:before {
  content: "\F4F1"; }

.fa-creative-commons-share:before {
  content: "\F4F2"; }

.fa-creative-commons-zero:before {
  content: "\F4F3"; }

.fa-credit-card:before {
  content: "\F09D"; }

.fa-critical-role:before {
  content: "\F6C9"; }

.fa-crop:before {
  content: "\F125"; }

.fa-crop-alt:before {
  content: "\F565"; }

.fa-cross:before {
  content: "\F654"; }

.fa-crosshairs:before {
  content: "\F05B"; }

.fa-crow:before {
  content: "\F520"; }

.fa-crown:before {
  content: "\F521"; }

.fa-crutch:before {
  content: "\F7F7"; }

.fa-css3:before {
  content: "\F13C"; }

.fa-css3-alt:before {
  content: "\F38B"; }

.fa-cube:before {
  content: "\F1B2"; }

.fa-cubes:before {
  content: "\F1B3"; }

.fa-cut:before {
  content: "\F0C4"; }

.fa-cuttlefish:before {
  content: "\F38C"; }

.fa-d-and-d:before {
  content: "\F38D"; }

.fa-d-and-d-beyond:before {
  content: "\F6CA"; }

.fa-dailymotion:before {
  content: "\E052"; }

.fa-dashcube:before {
  content: "\F210"; }

.fa-database:before {
  content: "\F1C0"; }

.fa-deaf:before {
  content: "\F2A4"; }

.fa-deezer:before {
  content: "\E077"; }

.fa-delicious:before {
  content: "\F1A5"; }

.fa-democrat:before {
  content: "\F747"; }

.fa-deploydog:before {
  content: "\F38E"; }

.fa-deskpro:before {
  content: "\F38F"; }

.fa-desktop:before {
  content: "\F108"; }

.fa-dev:before {
  content: "\F6CC"; }

.fa-deviantart:before {
  content: "\F1BD"; }

.fa-dharmachakra:before {
  content: "\F655"; }

.fa-dhl:before {
  content: "\F790"; }

.fa-diagnoses:before {
  content: "\F470"; }

.fa-diaspora:before {
  content: "\F791"; }

.fa-dice:before {
  content: "\F522"; }

.fa-dice-d20:before {
  content: "\F6CF"; }

.fa-dice-d6:before {
  content: "\F6D1"; }

.fa-dice-five:before {
  content: "\F523"; }

.fa-dice-four:before {
  content: "\F524"; }

.fa-dice-one:before {
  content: "\F525"; }

.fa-dice-six:before {
  content: "\F526"; }

.fa-dice-three:before {
  content: "\F527"; }

.fa-dice-two:before {
  content: "\F528"; }

.fa-digg:before {
  content: "\F1A6"; }

.fa-digital-ocean:before {
  content: "\F391"; }

.fa-digital-tachograph:before {
  content: "\F566"; }

.fa-directions:before {
  content: "\F5EB"; }

.fa-discord:before {
  content: "\F392"; }

.fa-discourse:before {
  content: "\F393"; }

.fa-disease:before {
  content: "\F7FA"; }

.fa-divide:before {
  content: "\F529"; }

.fa-dizzy:before {
  content: "\F567"; }

.fa-dna:before {
  content: "\F471"; }

.fa-dochub:before {
  content: "\F394"; }

.fa-docker:before {
  content: "\F395"; }

.fa-dog:before {
  content: "\F6D3"; }

.fa-dollar-sign:before {
  content: "\F155"; }

.fa-dolly:before {
  content: "\F472"; }

.fa-dolly-flatbed:before {
  content: "\F474"; }

.fa-donate:before {
  content: "\F4B9"; }

.fa-door-closed:before {
  content: "\F52A"; }

.fa-door-open:before {
  content: "\F52B"; }

.fa-dot-circle:before {
  content: "\F192"; }

.fa-dove:before {
  content: "\F4BA"; }

.fa-download:before {
  content: "\F019"; }

.fa-draft2digital:before {
  content: "\F396"; }

.fa-drafting-compass:before {
  content: "\F568"; }

.fa-dragon:before {
  content: "\F6D5"; }

.fa-draw-polygon:before {
  content: "\F5EE"; }

.fa-dribbble:before {
  content: "\F17D"; }

.fa-dribbble-square:before {
  content: "\F397"; }

.fa-dropbox:before {
  content: "\F16B"; }

.fa-drum:before {
  content: "\F569"; }

.fa-drum-steelpan:before {
  content: "\F56A"; }

.fa-drumstick-bite:before {
  content: "\F6D7"; }

.fa-drupal:before {
  content: "\F1A9"; }

.fa-dumbbell:before {
  content: "\F44B"; }

.fa-dumpster:before {
  content: "\F793"; }

.fa-dumpster-fire:before {
  content: "\F794"; }

.fa-dungeon:before {
  content: "\F6D9"; }

.fa-dyalog:before {
  content: "\F399"; }

.fa-earlybirds:before {
  content: "\F39A"; }

.fa-ebay:before {
  content: "\F4F4"; }

.fa-edge:before {
  content: "\F282"; }

.fa-edge-legacy:before {
  content: "\E078"; }

.fa-edit:before {
  content: "\F044"; }

.fa-egg:before {
  content: "\F7FB"; }

.fa-eject:before {
  content: "\F052"; }

.fa-elementor:before {
  content: "\F430"; }

.fa-ellipsis-h:before {
  content: "\F141"; }

.fa-ellipsis-v:before {
  content: "\F142"; }

.fa-ello:before {
  content: "\F5F1"; }

.fa-ember:before {
  content: "\F423"; }

.fa-empire:before {
  content: "\F1D1"; }

.fa-envelope:before {
  content: "\F0E0"; }

.fa-envelope-open:before {
  content: "\F2B6"; }

.fa-envelope-open-text:before {
  content: "\F658"; }

.fa-envelope-square:before {
  content: "\F199"; }

.fa-envira:before {
  content: "\F299"; }

.fa-equals:before {
  content: "\F52C"; }

.fa-eraser:before {
  content: "\F12D"; }

.fa-erlang:before {
  content: "\F39D"; }

.fa-ethereum:before {
  content: "\F42E"; }

.fa-ethernet:before {
  content: "\F796"; }

.fa-etsy:before {
  content: "\F2D7"; }

.fa-euro-sign:before {
  content: "\F153"; }

.fa-evernote:before {
  content: "\F839"; }

.fa-exchange-alt:before {
  content: "\F362"; }

.fa-exclamation:before {
  content: "\F12A"; }

.fa-exclamation-circle:before {
  content: "\F06A"; }

.fa-exclamation-triangle:before {
  content: "\F071"; }

.fa-expand:before {
  content: "\F065"; }

.fa-expand-alt:before {
  content: "\F424"; }

.fa-expand-arrows-alt:before {
  content: "\F31E"; }

.fa-expeditedssl:before {
  content: "\F23E"; }

.fa-external-link-alt:before {
  content: "\F35D"; }

.fa-external-link-square-alt:before {
  content: "\F360"; }

.fa-eye:before {
  content: "\F06E"; }

.fa-eye-dropper:before {
  content: "\F1FB"; }

.fa-eye-slash:before {
  content: "\F070"; }

.fa-facebook:before {
  content: "\F09A"; }

.fa-facebook-f:before {
  content: "\F39E"; }

.fa-facebook-messenger:before {
  content: "\F39F"; }

.fa-facebook-square:before {
  content: "\F082"; }

.fa-fan:before {
  content: "\F863"; }

.fa-fantasy-flight-games:before {
  content: "\F6DC"; }

.fa-fast-backward:before {
  content: "\F049"; }

.fa-fast-forward:before {
  content: "\F050"; }

.fa-faucet:before {
  content: "\E005"; }

.fa-fax:before {
  content: "\F1AC"; }

.fa-feather:before {
  content: "\F52D"; }

.fa-feather-alt:before {
  content: "\F56B"; }

.fa-fedex:before {
  content: "\F797"; }

.fa-fedora:before {
  content: "\F798"; }

.fa-female:before {
  content: "\F182"; }

.fa-fighter-jet:before {
  content: "\F0FB"; }

.fa-figma:before {
  content: "\F799"; }

.fa-file:before {
  content: "\F15B"; }

.fa-file-alt:before {
  content: "\F15C"; }

.fa-file-archive:before {
  content: "\F1C6"; }

.fa-file-audio:before {
  content: "\F1C7"; }

.fa-file-code:before {
  content: "\F1C9"; }

.fa-file-contract:before {
  content: "\F56C"; }

.fa-file-csv:before {
  content: "\F6DD"; }

.fa-file-download:before {
  content: "\F56D"; }

.fa-file-excel:before {
  content: "\F1C3"; }

.fa-file-export:before {
  content: "\F56E"; }

.fa-file-image:before {
  content: "\F1C5"; }

.fa-file-import:before {
  content: "\F56F"; }

.fa-file-invoice:before {
  content: "\F570"; }

.fa-file-invoice-dollar:before {
  content: "\F571"; }

.fa-file-medical:before {
  content: "\F477"; }

.fa-file-medical-alt:before {
  content: "\F478"; }

.fa-file-pdf:before {
  content: "\F1C1"; }

.fa-file-powerpoint:before {
  content: "\F1C4"; }

.fa-file-prescription:before {
  content: "\F572"; }

.fa-file-signature:before {
  content: "\F573"; }

.fa-file-upload:before {
  content: "\F574"; }

.fa-file-video:before {
  content: "\F1C8"; }

.fa-file-word:before {
  content: "\F1C2"; }

.fa-fill:before {
  content: "\F575"; }

.fa-fill-drip:before {
  content: "\F576"; }

.fa-film:before {
  content: "\F008"; }

.fa-filter:before {
  content: "\F0B0"; }

.fa-fingerprint:before {
  content: "\F577"; }

.fa-fire:before {
  content: "\F06D"; }

.fa-fire-alt:before {
  content: "\F7E4"; }

.fa-fire-extinguisher:before {
  content: "\F134"; }

.fa-firefox:before {
  content: "\F269"; }

.fa-firefox-browser:before {
  content: "\E007"; }

.fa-first-aid:before {
  content: "\F479"; }

.fa-first-order:before {
  content: "\F2B0"; }

.fa-first-order-alt:before {
  content: "\F50A"; }

.fa-firstdraft:before {
  content: "\F3A1"; }

.fa-fish:before {
  content: "\F578"; }

.fa-fist-raised:before {
  content: "\F6DE"; }

.fa-flag:before {
  content: "\F024"; }

.fa-flag-checkered:before {
  content: "\F11E"; }

.fa-flag-usa:before {
  content: "\F74D"; }

.fa-flask:before {
  content: "\F0C3"; }

.fa-flickr:before {
  content: "\F16E"; }

.fa-flipboard:before {
  content: "\F44D"; }

.fa-flushed:before {
  content: "\F579"; }

.fa-fly:before {
  content: "\F417"; }

.fa-folder:before {
  content: "\F07B"; }

.fa-folder-minus:before {
  content: "\F65D"; }

.fa-folder-open:before {
  content: "\F07C"; }

.fa-folder-plus:before {
  content: "\F65E"; }

.fa-font:before {
  content: "\F031"; }

.fa-font-awesome:before {
  content: "\F2B4"; }

.fa-font-awesome-alt:before {
  content: "\F35C"; }

.fa-font-awesome-flag:before {
  content: "\F425"; }

.fa-font-awesome-logo-full:before {
  content: "\F4E6"; }

.fa-fonticons:before {
  content: "\F280"; }

.fa-fonticons-fi:before {
  content: "\F3A2"; }

.fa-football-ball:before {
  content: "\F44E"; }

.fa-fort-awesome:before {
  content: "\F286"; }

.fa-fort-awesome-alt:before {
  content: "\F3A3"; }

.fa-forumbee:before {
  content: "\F211"; }

.fa-forward:before {
  content: "\F04E"; }

.fa-foursquare:before {
  content: "\F180"; }

.fa-free-code-camp:before {
  content: "\F2C5"; }

.fa-freebsd:before {
  content: "\F3A4"; }

.fa-frog:before {
  content: "\F52E"; }

.fa-frown:before {
  content: "\F119"; }

.fa-frown-open:before {
  content: "\F57A"; }

.fa-fulcrum:before {
  content: "\F50B"; }

.fa-funnel-dollar:before {
  content: "\F662"; }

.fa-futbol:before {
  content: "\F1E3"; }

.fa-galactic-republic:before {
  content: "\F50C"; }

.fa-galactic-senate:before {
  content: "\F50D"; }

.fa-gamepad:before {
  content: "\F11B"; }

.fa-gas-pump:before {
  content: "\F52F"; }

.fa-gavel:before {
  content: "\F0E3"; }

.fa-gem:before {
  content: "\F3A5"; }

.fa-genderless:before {
  content: "\F22D"; }

.fa-get-pocket:before {
  content: "\F265"; }

.fa-gg:before {
  content: "\F260"; }

.fa-gg-circle:before {
  content: "\F261"; }

.fa-ghost:before {
  content: "\F6E2"; }

.fa-gift:before {
  content: "\F06B"; }

.fa-gifts:before {
  content: "\F79C"; }

.fa-git:before {
  content: "\F1D3"; }

.fa-git-alt:before {
  content: "\F841"; }

.fa-git-square:before {
  content: "\F1D2"; }

.fa-github:before {
  content: "\F09B"; }

.fa-github-alt:before {
  content: "\F113"; }

.fa-github-square:before {
  content: "\F092"; }

.fa-gitkraken:before {
  content: "\F3A6"; }

.fa-gitlab:before {
  content: "\F296"; }

.fa-gitter:before {
  content: "\F426"; }

.fa-glass-cheers:before {
  content: "\F79F"; }

.fa-glass-martini:before {
  content: "\F000"; }

.fa-glass-martini-alt:before {
  content: "\F57B"; }

.fa-glass-whiskey:before {
  content: "\F7A0"; }

.fa-glasses:before {
  content: "\F530"; }

.fa-glide:before {
  content: "\F2A5"; }

.fa-glide-g:before {
  content: "\F2A6"; }

.fa-globe:before {
  content: "\F0AC"; }

.fa-globe-africa:before {
  content: "\F57C"; }

.fa-globe-americas:before {
  content: "\F57D"; }

.fa-globe-asia:before {
  content: "\F57E"; }

.fa-globe-europe:before {
  content: "\F7A2"; }

.fa-gofore:before {
  content: "\F3A7"; }

.fa-golf-ball:before {
  content: "\F450"; }

.fa-goodreads:before {
  content: "\F3A8"; }

.fa-goodreads-g:before {
  content: "\F3A9"; }

.fa-google:before {
  content: "\F1A0"; }

.fa-google-drive:before {
  content: "\F3AA"; }

.fa-google-pay:before {
  content: "\E079"; }

.fa-google-play:before {
  content: "\F3AB"; }

.fa-google-plus:before {
  content: "\F2B3"; }

.fa-google-plus-g:before {
  content: "\F0D5"; }

.fa-google-plus-square:before {
  content: "\F0D4"; }

.fa-google-wallet:before {
  content: "\F1EE"; }

.fa-gopuram:before {
  content: "\F664"; }

.fa-graduation-cap:before {
  content: "\F19D"; }

.fa-gratipay:before {
  content: "\F184"; }

.fa-grav:before {
  content: "\F2D6"; }

.fa-greater-than:before {
  content: "\F531"; }

.fa-greater-than-equal:before {
  content: "\F532"; }

.fa-grimace:before {
  content: "\F57F"; }

.fa-grin:before {
  content: "\F580"; }

.fa-grin-alt:before {
  content: "\F581"; }

.fa-grin-beam:before {
  content: "\F582"; }

.fa-grin-beam-sweat:before {
  content: "\F583"; }

.fa-grin-hearts:before {
  content: "\F584"; }

.fa-grin-squint:before {
  content: "\F585"; }

.fa-grin-squint-tears:before {
  content: "\F586"; }

.fa-grin-stars:before {
  content: "\F587"; }

.fa-grin-tears:before {
  content: "\F588"; }

.fa-grin-tongue:before {
  content: "\F589"; }

.fa-grin-tongue-squint:before {
  content: "\F58A"; }

.fa-grin-tongue-wink:before {
  content: "\F58B"; }

.fa-grin-wink:before {
  content: "\F58C"; }

.fa-grip-horizontal:before {
  content: "\F58D"; }

.fa-grip-lines:before {
  content: "\F7A4"; }

.fa-grip-lines-vertical:before {
  content: "\F7A5"; }

.fa-grip-vertical:before {
  content: "\F58E"; }

.fa-gripfire:before {
  content: "\F3AC"; }

.fa-grunt:before {
  content: "\F3AD"; }

.fa-guilded:before {
  content: "\E07E"; }

.fa-guitar:before {
  content: "\F7A6"; }

.fa-gulp:before {
  content: "\F3AE"; }

.fa-h-square:before {
  content: "\F0FD"; }

.fa-hacker-news:before {
  content: "\F1D4"; }

.fa-hacker-news-square:before {
  content: "\F3AF"; }

.fa-hackerrank:before {
  content: "\F5F7"; }

.fa-hamburger:before {
  content: "\F805"; }

.fa-hammer:before {
  content: "\F6E3"; }

.fa-hamsa:before {
  content: "\F665"; }

.fa-hand-holding:before {
  content: "\F4BD"; }

.fa-hand-holding-heart:before {
  content: "\F4BE"; }

.fa-hand-holding-medical:before {
  content: "\E05C"; }

.fa-hand-holding-usd:before {
  content: "\F4C0"; }

.fa-hand-holding-water:before {
  content: "\F4C1"; }

.fa-hand-lizard:before {
  content: "\F258"; }

.fa-hand-middle-finger:before {
  content: "\F806"; }

.fa-hand-paper:before {
  content: "\F256"; }

.fa-hand-peace:before {
  content: "\F25B"; }

.fa-hand-point-down:before {
  content: "\F0A7"; }

.fa-hand-point-left:before {
  content: "\F0A5"; }

.fa-hand-point-right:before {
  content: "\F0A4"; }

.fa-hand-point-up:before {
  content: "\F0A6"; }

.fa-hand-pointer:before {
  content: "\F25A"; }

.fa-hand-rock:before {
  content: "\F255"; }

.fa-hand-scissors:before {
  content: "\F257"; }

.fa-hand-sparkles:before {
  content: "\E05D"; }

.fa-hand-spock:before {
  content: "\F259"; }

.fa-hands:before {
  content: "\F4C2"; }

.fa-hands-helping:before {
  content: "\F4C4"; }

.fa-hands-wash:before {
  content: "\E05E"; }

.fa-handshake:before {
  content: "\F2B5"; }

.fa-handshake-alt-slash:before {
  content: "\E05F"; }

.fa-handshake-slash:before {
  content: "\E060"; }

.fa-hanukiah:before {
  content: "\F6E6"; }

.fa-hard-hat:before {
  content: "\F807"; }

.fa-hashtag:before {
  content: "\F292"; }

.fa-hat-cowboy:before {
  content: "\F8C0"; }

.fa-hat-cowboy-side:before {
  content: "\F8C1"; }

.fa-hat-wizard:before {
  content: "\F6E8"; }

.fa-hdd:before {
  content: "\F0A0"; }

.fa-head-side-cough:before {
  content: "\E061"; }

.fa-head-side-cough-slash:before {
  content: "\E062"; }

.fa-head-side-mask:before {
  content: "\E063"; }

.fa-head-side-virus:before {
  content: "\E064"; }

.fa-heading:before {
  content: "\F1DC"; }

.fa-headphones:before {
  content: "\F025"; }

.fa-headphones-alt:before {
  content: "\F58F"; }

.fa-headset:before {
  content: "\F590"; }

.fa-heart:before {
  content: "\F004"; }

.fa-heart-broken:before {
  content: "\F7A9"; }

.fa-heartbeat:before {
  content: "\F21E"; }

.fa-helicopter:before {
  content: "\F533"; }

.fa-highlighter:before {
  content: "\F591"; }

.fa-hiking:before {
  content: "\F6EC"; }

.fa-hippo:before {
  content: "\F6ED"; }

.fa-hips:before {
  content: "\F452"; }

.fa-hire-a-helper:before {
  content: "\F3B0"; }

.fa-history:before {
  content: "\F1DA"; }

.fa-hive:before {
  content: "\E07F"; }

.fa-hockey-puck:before {
  content: "\F453"; }

.fa-holly-berry:before {
  content: "\F7AA"; }

.fa-home:before {
  content: "\F015"; }

.fa-hooli:before {
  content: "\F427"; }

.fa-hornbill:before {
  content: "\F592"; }

.fa-horse:before {
  content: "\F6F0"; }

.fa-horse-head:before {
  content: "\F7AB"; }

.fa-hospital:before {
  content: "\F0F8"; }

.fa-hospital-alt:before {
  content: "\F47D"; }

.fa-hospital-symbol:before {
  content: "\F47E"; }

.fa-hospital-user:before {
  content: "\F80D"; }

.fa-hot-tub:before {
  content: "\F593"; }

.fa-hotdog:before {
  content: "\F80F"; }

.fa-hotel:before {
  content: "\F594"; }

.fa-hotjar:before {
  content: "\F3B1"; }

.fa-hourglass:before {
  content: "\F254"; }

.fa-hourglass-end:before {
  content: "\F253"; }

.fa-hourglass-half:before {
  content: "\F252"; }

.fa-hourglass-start:before {
  content: "\F251"; }

.fa-house-damage:before {
  content: "\F6F1"; }

.fa-house-user:before {
  content: "\E065"; }

.fa-houzz:before {
  content: "\F27C"; }

.fa-hryvnia:before {
  content: "\F6F2"; }

.fa-html5:before {
  content: "\F13B"; }

.fa-hubspot:before {
  content: "\F3B2"; }

.fa-i-cursor:before {
  content: "\F246"; }

.fa-ice-cream:before {
  content: "\F810"; }

.fa-icicles:before {
  content: "\F7AD"; }

.fa-icons:before {
  content: "\F86D"; }

.fa-id-badge:before {
  content: "\F2C1"; }

.fa-id-card:before {
  content: "\F2C2"; }

.fa-id-card-alt:before {
  content: "\F47F"; }

.fa-ideal:before {
  content: "\E013"; }

.fa-igloo:before {
  content: "\F7AE"; }

.fa-image:before {
  content: "\F03E"; }

.fa-images:before {
  content: "\F302"; }

.fa-imdb:before {
  content: "\F2D8"; }

.fa-inbox:before {
  content: "\F01C"; }

.fa-indent:before {
  content: "\F03C"; }

.fa-industry:before {
  content: "\F275"; }

.fa-infinity:before {
  content: "\F534"; }

.fa-info:before {
  content: "\F129"; }

.fa-info-circle:before {
  content: "\F05A"; }

.fa-innosoft:before {
  content: "\E080"; }

.fa-instagram:before {
  content: "\F16D"; }

.fa-instagram-square:before {
  content: "\E055"; }

.fa-instalod:before {
  content: "\E081"; }

.fa-intercom:before {
  content: "\F7AF"; }

.fa-internet-explorer:before {
  content: "\F26B"; }

.fa-invision:before {
  content: "\F7B0"; }

.fa-ioxhost:before {
  content: "\F208"; }

.fa-italic:before {
  content: "\F033"; }

.fa-itch-io:before {
  content: "\F83A"; }

.fa-itunes:before {
  content: "\F3B4"; }

.fa-itunes-note:before {
  content: "\F3B5"; }

.fa-java:before {
  content: "\F4E4"; }

.fa-jedi:before {
  content: "\F669"; }

.fa-jedi-order:before {
  content: "\F50E"; }

.fa-jenkins:before {
  content: "\F3B6"; }

.fa-jira:before {
  content: "\F7B1"; }

.fa-joget:before {
  content: "\F3B7"; }

.fa-joint:before {
  content: "\F595"; }

.fa-joomla:before {
  content: "\F1AA"; }

.fa-journal-whills:before {
  content: "\F66A"; }

.fa-js:before {
  content: "\F3B8"; }

.fa-js-square:before {
  content: "\F3B9"; }

.fa-jsfiddle:before {
  content: "\F1CC"; }

.fa-kaaba:before {
  content: "\F66B"; }

.fa-kaggle:before {
  content: "\F5FA"; }

.fa-key:before {
  content: "\F084"; }

.fa-keybase:before {
  content: "\F4F5"; }

.fa-keyboard:before {
  content: "\F11C"; }

.fa-keycdn:before {
  content: "\F3BA"; }

.fa-khanda:before {
  content: "\F66D"; }

.fa-kickstarter:before {
  content: "\F3BB"; }

.fa-kickstarter-k:before {
  content: "\F3BC"; }

.fa-kiss:before {
  content: "\F596"; }

.fa-kiss-beam:before {
  content: "\F597"; }

.fa-kiss-wink-heart:before {
  content: "\F598"; }

.fa-kiwi-bird:before {
  content: "\F535"; }

.fa-korvue:before {
  content: "\F42F"; }

.fa-landmark:before {
  content: "\F66F"; }

.fa-language:before {
  content: "\F1AB"; }

.fa-laptop:before {
  content: "\F109"; }

.fa-laptop-code:before {
  content: "\F5FC"; }

.fa-laptop-house:before {
  content: "\E066"; }

.fa-laptop-medical:before {
  content: "\F812"; }

.fa-laravel:before {
  content: "\F3BD"; }

.fa-lastfm:before {
  content: "\F202"; }

.fa-lastfm-square:before {
  content: "\F203"; }

.fa-laugh:before {
  content: "\F599"; }

.fa-laugh-beam:before {
  content: "\F59A"; }

.fa-laugh-squint:before {
  content: "\F59B"; }

.fa-laugh-wink:before {
  content: "\F59C"; }

.fa-layer-group:before {
  content: "\F5FD"; }

.fa-leaf:before {
  content: "\F06C"; }

.fa-leanpub:before {
  content: "\F212"; }

.fa-lemon:before {
  content: "\F094"; }

.fa-less:before {
  content: "\F41D"; }

.fa-less-than:before {
  content: "\F536"; }

.fa-less-than-equal:before {
  content: "\F537"; }

.fa-level-down-alt:before {
  content: "\F3BE"; }

.fa-level-up-alt:before {
  content: "\F3BF"; }

.fa-life-ring:before {
  content: "\F1CD"; }

.fa-lightbulb:before {
  content: "\F0EB"; }

.fa-line:before {
  content: "\F3C0"; }

.fa-link:before {
  content: "\F0C1"; }

.fa-linkedin:before {
  content: "\F08C"; }

.fa-linkedin-in:before {
  content: "\F0E1"; }

.fa-linode:before {
  content: "\F2B8"; }

.fa-linux:before {
  content: "\F17C"; }

.fa-lira-sign:before {
  content: "\F195"; }

.fa-list:before {
  content: "\F03A"; }

.fa-list-alt:before {
  content: "\F022"; }

.fa-list-ol:before {
  content: "\F0CB"; }

.fa-list-ul:before {
  content: "\F0CA"; }

.fa-location-arrow:before {
  content: "\F124"; }

.fa-lock:before {
  content: "\F023"; }

.fa-lock-open:before {
  content: "\F3C1"; }

.fa-long-arrow-alt-down:before {
  content: "\F309"; }

.fa-long-arrow-alt-left:before {
  content: "\F30A"; }

.fa-long-arrow-alt-right:before {
  content: "\F30B"; }

.fa-long-arrow-alt-up:before {
  content: "\F30C"; }

.fa-low-vision:before {
  content: "\F2A8"; }

.fa-luggage-cart:before {
  content: "\F59D"; }

.fa-lungs:before {
  content: "\F604"; }

.fa-lungs-virus:before {
  content: "\E067"; }

.fa-lyft:before {
  content: "\F3C3"; }

.fa-magento:before {
  content: "\F3C4"; }

.fa-magic:before {
  content: "\F0D0"; }

.fa-magnet:before {
  content: "\F076"; }

.fa-mail-bulk:before {
  content: "\F674"; }

.fa-mailchimp:before {
  content: "\F59E"; }

.fa-male:before {
  content: "\F183"; }

.fa-mandalorian:before {
  content: "\F50F"; }

.fa-map:before {
  content: "\F279"; }

.fa-map-marked:before {
  content: "\F59F"; }

.fa-map-marked-alt:before {
  content: "\F5A0"; }

.fa-map-marker:before {
  content: "\F041"; }

.fa-map-marker-alt:before {
  content: "\F3C5"; }

.fa-map-pin:before {
  content: "\F276"; }

.fa-map-signs:before {
  content: "\F277"; }

.fa-markdown:before {
  content: "\F60F"; }

.fa-marker:before {
  content: "\F5A1"; }

.fa-mars:before {
  content: "\F222"; }

.fa-mars-double:before {
  content: "\F227"; }

.fa-mars-stroke:before {
  content: "\F229"; }

.fa-mars-stroke-h:before {
  content: "\F22B"; }

.fa-mars-stroke-v:before {
  content: "\F22A"; }

.fa-mask:before {
  content: "\F6FA"; }

.fa-mastodon:before {
  content: "\F4F6"; }

.fa-maxcdn:before {
  content: "\F136"; }

.fa-mdb:before {
  content: "\F8CA"; }

.fa-medal:before {
  content: "\F5A2"; }

.fa-medapps:before {
  content: "\F3C6"; }

.fa-medium:before {
  content: "\F23A"; }

.fa-medium-m:before {
  content: "\F3C7"; }

.fa-medkit:before {
  content: "\F0FA"; }

.fa-medrt:before {
  content: "\F3C8"; }

.fa-meetup:before {
  content: "\F2E0"; }

.fa-megaport:before {
  content: "\F5A3"; }

.fa-meh:before {
  content: "\F11A"; }

.fa-meh-blank:before {
  content: "\F5A4"; }

.fa-meh-rolling-eyes:before {
  content: "\F5A5"; }

.fa-memory:before {
  content: "\F538"; }

.fa-mendeley:before {
  content: "\F7B3"; }

.fa-menorah:before {
  content: "\F676"; }

.fa-mercury:before {
  content: "\F223"; }

.fa-meteor:before {
  content: "\F753"; }

.fa-microblog:before {
  content: "\E01A"; }

.fa-microchip:before {
  content: "\F2DB"; }

.fa-microphone:before {
  content: "\F130"; }

.fa-microphone-alt:before {
  content: "\F3C9"; }

.fa-microphone-alt-slash:before {
  content: "\F539"; }

.fa-microphone-slash:before {
  content: "\F131"; }

.fa-microscope:before {
  content: "\F610"; }

.fa-microsoft:before {
  content: "\F3CA"; }

.fa-minus:before {
  content: "\F068"; }

.fa-minus-circle:before {
  content: "\F056"; }

.fa-minus-square:before {
  content: "\F146"; }

.fa-mitten:before {
  content: "\F7B5"; }

.fa-mix:before {
  content: "\F3CB"; }

.fa-mixcloud:before {
  content: "\F289"; }

.fa-mixer:before {
  content: "\E056"; }

.fa-mizuni:before {
  content: "\F3CC"; }

.fa-mobile:before {
  content: "\F10B"; }

.fa-mobile-alt:before {
  content: "\F3CD"; }

.fa-modx:before {
  content: "\F285"; }

.fa-monero:before {
  content: "\F3D0"; }

.fa-money-bill:before {
  content: "\F0D6"; }

.fa-money-bill-alt:before {
  content: "\F3D1"; }

.fa-money-bill-wave:before {
  content: "\F53A"; }

.fa-money-bill-wave-alt:before {
  content: "\F53B"; }

.fa-money-check:before {
  content: "\F53C"; }

.fa-money-check-alt:before {
  content: "\F53D"; }

.fa-monument:before {
  content: "\F5A6"; }

.fa-moon:before {
  content: "\F186"; }

.fa-mortar-pestle:before {
  content: "\F5A7"; }

.fa-mosque:before {
  content: "\F678"; }

.fa-motorcycle:before {
  content: "\F21C"; }

.fa-mountain:before {
  content: "\F6FC"; }

.fa-mouse:before {
  content: "\F8CC"; }

.fa-mouse-pointer:before {
  content: "\F245"; }

.fa-mug-hot:before {
  content: "\F7B6"; }

.fa-music:before {
  content: "\F001"; }

.fa-napster:before {
  content: "\F3D2"; }

.fa-neos:before {
  content: "\F612"; }

.fa-network-wired:before {
  content: "\F6FF"; }

.fa-neuter:before {
  content: "\F22C"; }

.fa-newspaper:before {
  content: "\F1EA"; }

.fa-nimblr:before {
  content: "\F5A8"; }

.fa-node:before {
  content: "\F419"; }

.fa-node-js:before {
  content: "\F3D3"; }

.fa-not-equal:before {
  content: "\F53E"; }

.fa-notes-medical:before {
  content: "\F481"; }

.fa-npm:before {
  content: "\F3D4"; }

.fa-ns8:before {
  content: "\F3D5"; }

.fa-nutritionix:before {
  content: "\F3D6"; }

.fa-object-group:before {
  content: "\F247"; }

.fa-object-ungroup:before {
  content: "\F248"; }

.fa-octopus-deploy:before {
  content: "\E082"; }

.fa-odnoklassniki:before {
  content: "\F263"; }

.fa-odnoklassniki-square:before {
  content: "\F264"; }

.fa-oil-can:before {
  content: "\F613"; }

.fa-old-republic:before {
  content: "\F510"; }

.fa-om:before {
  content: "\F679"; }

.fa-opencart:before {
  content: "\F23D"; }

.fa-openid:before {
  content: "\F19B"; }

.fa-opera:before {
  content: "\F26A"; }

.fa-optin-monster:before {
  content: "\F23C"; }

.fa-orcid:before {
  content: "\F8D2"; }

.fa-osi:before {
  content: "\F41A"; }

.fa-otter:before {
  content: "\F700"; }

.fa-outdent:before {
  content: "\F03B"; }

.fa-page4:before {
  content: "\F3D7"; }

.fa-pagelines:before {
  content: "\F18C"; }

.fa-pager:before {
  content: "\F815"; }

.fa-paint-brush:before {
  content: "\F1FC"; }

.fa-paint-roller:before {
  content: "\F5AA"; }

.fa-palette:before {
  content: "\F53F"; }

.fa-palfed:before {
  content: "\F3D8"; }

.fa-pallet:before {
  content: "\F482"; }

.fa-paper-plane:before {
  content: "\F1D8"; }

.fa-paperclip:before {
  content: "\F0C6"; }

.fa-parachute-box:before {
  content: "\F4CD"; }

.fa-paragraph:before {
  content: "\F1DD"; }

.fa-parking:before {
  content: "\F540"; }

.fa-passport:before {
  content: "\F5AB"; }

.fa-pastafarianism:before {
  content: "\F67B"; }

.fa-paste:before {
  content: "\F0EA"; }

.fa-patreon:before {
  content: "\F3D9"; }

.fa-pause:before {
  content: "\F04C"; }

.fa-pause-circle:before {
  content: "\F28B"; }

.fa-paw:before {
  content: "\F1B0"; }

.fa-paypal:before {
  content: "\F1ED"; }

.fa-peace:before {
  content: "\F67C"; }

.fa-pen:before {
  content: "\F304"; }

.fa-pen-alt:before {
  content: "\F305"; }

.fa-pen-fancy:before {
  content: "\F5AC"; }

.fa-pen-nib:before {
  content: "\F5AD"; }

.fa-pen-square:before {
  content: "\F14B"; }

.fa-pencil-alt:before {
  content: "\F303"; }

.fa-pencil-ruler:before {
  content: "\F5AE"; }

.fa-penny-arcade:before {
  content: "\F704"; }

.fa-people-arrows:before {
  content: "\E068"; }

.fa-people-carry:before {
  content: "\F4CE"; }

.fa-pepper-hot:before {
  content: "\F816"; }

.fa-perbyte:before {
  content: "\E083"; }

.fa-percent:before {
  content: "\F295"; }

.fa-percentage:before {
  content: "\F541"; }

.fa-periscope:before {
  content: "\F3DA"; }

.fa-person-booth:before {
  content: "\F756"; }

.fa-phabricator:before {
  content: "\F3DB"; }

.fa-phoenix-framework:before {
  content: "\F3DC"; }

.fa-phoenix-squadron:before {
  content: "\F511"; }

.fa-phone:before {
  content: "\F095"; }

.fa-phone-alt:before {
  content: "\F879"; }

.fa-phone-slash:before {
  content: "\F3DD"; }

.fa-phone-square:before {
  content: "\F098"; }

.fa-phone-square-alt:before {
  content: "\F87B"; }

.fa-phone-volume:before {
  content: "\F2A0"; }

.fa-photo-video:before {
  content: "\F87C"; }

.fa-php:before {
  content: "\F457"; }

.fa-pied-piper:before {
  content: "\F2AE"; }

.fa-pied-piper-alt:before {
  content: "\F1A8"; }

.fa-pied-piper-hat:before {
  content: "\F4E5"; }

.fa-pied-piper-pp:before {
  content: "\F1A7"; }

.fa-pied-piper-square:before {
  content: "\E01E"; }

.fa-piggy-bank:before {
  content: "\F4D3"; }

.fa-pills:before {
  content: "\F484"; }

.fa-pinterest:before {
  content: "\F0D2"; }

.fa-pinterest-p:before {
  content: "\F231"; }

.fa-pinterest-square:before {
  content: "\F0D3"; }

.fa-pizza-slice:before {
  content: "\F818"; }

.fa-place-of-worship:before {
  content: "\F67F"; }

.fa-plane:before {
  content: "\F072"; }

.fa-plane-arrival:before {
  content: "\F5AF"; }

.fa-plane-departure:before {
  content: "\F5B0"; }

.fa-plane-slash:before {
  content: "\E069"; }

.fa-play:before {
  content: "\F04B"; }

.fa-play-circle:before {
  content: "\F144"; }

.fa-playstation:before {
  content: "\F3DF"; }

.fa-plug:before {
  content: "\F1E6"; }

.fa-plus:before {
  content: "\F067"; }

.fa-plus-circle:before {
  content: "\F055"; }

.fa-plus-square:before {
  content: "\F0FE"; }

.fa-podcast:before {
  content: "\F2CE"; }

.fa-poll:before {
  content: "\F681"; }

.fa-poll-h:before {
  content: "\F682"; }

.fa-poo:before {
  content: "\F2FE"; }

.fa-poo-storm:before {
  content: "\F75A"; }

.fa-poop:before {
  content: "\F619"; }

.fa-portrait:before {
  content: "\F3E0"; }

.fa-pound-sign:before {
  content: "\F154"; }

.fa-power-off:before {
  content: "\F011"; }

.fa-pray:before {
  content: "\F683"; }

.fa-praying-hands:before {
  content: "\F684"; }

.fa-prescription:before {
  content: "\F5B1"; }

.fa-prescription-bottle:before {
  content: "\F485"; }

.fa-prescription-bottle-alt:before {
  content: "\F486"; }

.fa-print:before {
  content: "\F02F"; }

.fa-procedures:before {
  content: "\F487"; }

.fa-product-hunt:before {
  content: "\F288"; }

.fa-project-diagram:before {
  content: "\F542"; }

.fa-pump-medical:before {
  content: "\E06A"; }

.fa-pump-soap:before {
  content: "\E06B"; }

.fa-pushed:before {
  content: "\F3E1"; }

.fa-puzzle-piece:before {
  content: "\F12E"; }

.fa-python:before {
  content: "\F3E2"; }

.fa-qq:before {
  content: "\F1D6"; }

.fa-qrcode:before {
  content: "\F029"; }

.fa-question:before {
  content: "\F128"; }

.fa-question-circle:before {
  content: "\F059"; }

.fa-quidditch:before {
  content: "\F458"; }

.fa-quinscape:before {
  content: "\F459"; }

.fa-quora:before {
  content: "\F2C4"; }

.fa-quote-left:before {
  content: "\F10D"; }

.fa-quote-right:before {
  content: "\F10E"; }

.fa-quran:before {
  content: "\F687"; }

.fa-r-project:before {
  content: "\F4F7"; }

.fa-radiation:before {
  content: "\F7B9"; }

.fa-radiation-alt:before {
  content: "\F7BA"; }

.fa-rainbow:before {
  content: "\F75B"; }

.fa-random:before {
  content: "\F074"; }

.fa-raspberry-pi:before {
  content: "\F7BB"; }

.fa-ravelry:before {
  content: "\F2D9"; }

.fa-react:before {
  content: "\F41B"; }

.fa-reacteurope:before {
  content: "\F75D"; }

.fa-readme:before {
  content: "\F4D5"; }

.fa-rebel:before {
  content: "\F1D0"; }

.fa-receipt:before {
  content: "\F543"; }

.fa-record-vinyl:before {
  content: "\F8D9"; }

.fa-recycle:before {
  content: "\F1B8"; }

.fa-red-river:before {
  content: "\F3E3"; }

.fa-reddit:before {
  content: "\F1A1"; }

.fa-reddit-alien:before {
  content: "\F281"; }

.fa-reddit-square:before {
  content: "\F1A2"; }

.fa-redhat:before {
  content: "\F7BC"; }

.fa-redo:before {
  content: "\F01E"; }

.fa-redo-alt:before {
  content: "\F2F9"; }

.fa-registered:before {
  content: "\F25D"; }

.fa-remove-format:before {
  content: "\F87D"; }

.fa-renren:before {
  content: "\F18B"; }

.fa-reply:before {
  content: "\F3E5"; }

.fa-reply-all:before {
  content: "\F122"; }

.fa-replyd:before {
  content: "\F3E6"; }

.fa-republican:before {
  content: "\F75E"; }

.fa-researchgate:before {
  content: "\F4F8"; }

.fa-resolving:before {
  content: "\F3E7"; }

.fa-restroom:before {
  content: "\F7BD"; }

.fa-retweet:before {
  content: "\F079"; }

.fa-rev:before {
  content: "\F5B2"; }

.fa-ribbon:before {
  content: "\F4D6"; }

.fa-ring:before {
  content: "\F70B"; }

.fa-road:before {
  content: "\F018"; }

.fa-robot:before {
  content: "\F544"; }

.fa-rocket:before {
  content: "\F135"; }

.fa-rocketchat:before {
  content: "\F3E8"; }

.fa-rockrms:before {
  content: "\F3E9"; }

.fa-route:before {
  content: "\F4D7"; }

.fa-rss:before {
  content: "\F09E"; }

.fa-rss-square:before {
  content: "\F143"; }

.fa-ruble-sign:before {
  content: "\F158"; }

.fa-ruler:before {
  content: "\F545"; }

.fa-ruler-combined:before {
  content: "\F546"; }

.fa-ruler-horizontal:before {
  content: "\F547"; }

.fa-ruler-vertical:before {
  content: "\F548"; }

.fa-running:before {
  content: "\F70C"; }

.fa-rupee-sign:before {
  content: "\F156"; }

.fa-rust:before {
  content: "\E07A"; }

.fa-sad-cry:before {
  content: "\F5B3"; }

.fa-sad-tear:before {
  content: "\F5B4"; }

.fa-safari:before {
  content: "\F267"; }

.fa-salesforce:before {
  content: "\F83B"; }

.fa-sass:before {
  content: "\F41E"; }

.fa-satellite:before {
  content: "\F7BF"; }

.fa-satellite-dish:before {
  content: "\F7C0"; }

.fa-save:before {
  content: "\F0C7"; }

.fa-schlix:before {
  content: "\F3EA"; }

.fa-school:before {
  content: "\F549"; }

.fa-screwdriver:before {
  content: "\F54A"; }

.fa-scribd:before {
  content: "\F28A"; }

.fa-scroll:before {
  content: "\F70E"; }

.fa-sd-card:before {
  content: "\F7C2"; }

.fa-search:before {
  content: "\F002"; }

.fa-search-dollar:before {
  content: "\F688"; }

.fa-search-location:before {
  content: "\F689"; }

.fa-search-minus:before {
  content: "\F010"; }

.fa-search-plus:before {
  content: "\F00E"; }

.fa-searchengin:before {
  content: "\F3EB"; }

.fa-seedling:before {
  content: "\F4D8"; }

.fa-sellcast:before {
  content: "\F2DA"; }

.fa-sellsy:before {
  content: "\F213"; }

.fa-server:before {
  content: "\F233"; }

.fa-servicestack:before {
  content: "\F3EC"; }

.fa-shapes:before {
  content: "\F61F"; }

.fa-share:before {
  content: "\F064"; }

.fa-share-alt:before {
  content: "\F1E0"; }

.fa-share-alt-square:before {
  content: "\F1E1"; }

.fa-share-square:before {
  content: "\F14D"; }

.fa-shekel-sign:before {
  content: "\F20B"; }

.fa-shield-alt:before {
  content: "\F3ED"; }

.fa-shield-virus:before {
  content: "\E06C"; }

.fa-ship:before {
  content: "\F21A"; }

.fa-shipping-fast:before {
  content: "\F48B"; }

.fa-shirtsinbulk:before {
  content: "\F214"; }

.fa-shoe-prints:before {
  content: "\F54B"; }

.fa-shopify:before {
  content: "\E057"; }

.fa-shopping-bag:before {
  content: "\F290"; }

.fa-shopping-basket:before {
  content: "\F291"; }

.fa-shopping-cart:before {
  content: "\F07A"; }

.fa-shopware:before {
  content: "\F5B5"; }

.fa-shower:before {
  content: "\F2CC"; }

.fa-shuttle-van:before {
  content: "\F5B6"; }

.fa-sign:before {
  content: "\F4D9"; }

.fa-sign-in-alt:before {
  content: "\F2F6"; }

.fa-sign-language:before {
  content: "\F2A7"; }

.fa-sign-out-alt:before {
  content: "\F2F5"; }

.fa-signal:before {
  content: "\F012"; }

.fa-signature:before {
  content: "\F5B7"; }

.fa-sim-card:before {
  content: "\F7C4"; }

.fa-simplybuilt:before {
  content: "\F215"; }

.fa-sink:before {
  content: "\E06D"; }

.fa-sistrix:before {
  content: "\F3EE"; }

.fa-sitemap:before {
  content: "\F0E8"; }

.fa-sith:before {
  content: "\F512"; }

.fa-skating:before {
  content: "\F7C5"; }

.fa-sketch:before {
  content: "\F7C6"; }

.fa-skiing:before {
  content: "\F7C9"; }

.fa-skiing-nordic:before {
  content: "\F7CA"; }

.fa-skull:before {
  content: "\F54C"; }

.fa-skull-crossbones:before {
  content: "\F714"; }

.fa-skyatlas:before {
  content: "\F216"; }

.fa-skype:before {
  content: "\F17E"; }

.fa-slack:before {
  content: "\F198"; }

.fa-slack-hash:before {
  content: "\F3EF"; }

.fa-slash:before {
  content: "\F715"; }

.fa-sleigh:before {
  content: "\F7CC"; }

.fa-sliders-h:before {
  content: "\F1DE"; }

.fa-slideshare:before {
  content: "\F1E7"; }

.fa-smile:before {
  content: "\F118"; }

.fa-smile-beam:before {
  content: "\F5B8"; }

.fa-smile-wink:before {
  content: "\F4DA"; }

.fa-smog:before {
  content: "\F75F"; }

.fa-smoking:before {
  content: "\F48D"; }

.fa-smoking-ban:before {
  content: "\F54D"; }

.fa-sms:before {
  content: "\F7CD"; }

.fa-snapchat:before {
  content: "\F2AB"; }

.fa-snapchat-ghost:before {
  content: "\F2AC"; }

.fa-snapchat-square:before {
  content: "\F2AD"; }

.fa-snowboarding:before {
  content: "\F7CE"; }

.fa-snowflake:before {
  content: "\F2DC"; }

.fa-snowman:before {
  content: "\F7D0"; }

.fa-snowplow:before {
  content: "\F7D2"; }

.fa-soap:before {
  content: "\E06E"; }

.fa-socks:before {
  content: "\F696"; }

.fa-solar-panel:before {
  content: "\F5BA"; }

.fa-sort:before {
  content: "\F0DC"; }

.fa-sort-alpha-down:before {
  content: "\F15D"; }

.fa-sort-alpha-down-alt:before {
  content: "\F881"; }

.fa-sort-alpha-up:before {
  content: "\F15E"; }

.fa-sort-alpha-up-alt:before {
  content: "\F882"; }

.fa-sort-amount-down:before {
  content: "\F160"; }

.fa-sort-amount-down-alt:before {
  content: "\F884"; }

.fa-sort-amount-up:before {
  content: "\F161"; }

.fa-sort-amount-up-alt:before {
  content: "\F885"; }

.fa-sort-down:before {
  content: "\F0DD"; }

.fa-sort-numeric-down:before {
  content: "\F162"; }

.fa-sort-numeric-down-alt:before {
  content: "\F886"; }

.fa-sort-numeric-up:before {
  content: "\F163"; }

.fa-sort-numeric-up-alt:before {
  content: "\F887"; }

.fa-sort-up:before {
  content: "\F0DE"; }

.fa-soundcloud:before {
  content: "\F1BE"; }

.fa-sourcetree:before {
  content: "\F7D3"; }

.fa-spa:before {
  content: "\F5BB"; }

.fa-space-shuttle:before {
  content: "\F197"; }

.fa-speakap:before {
  content: "\F3F3"; }

.fa-speaker-deck:before {
  content: "\F83C"; }

.fa-spell-check:before {
  content: "\F891"; }

.fa-spider:before {
  content: "\F717"; }

.fa-spinner:before {
  content: "\F110"; }

.fa-splotch:before {
  content: "\F5BC"; }

.fa-spotify:before {
  content: "\F1BC"; }

.fa-spray-can:before {
  content: "\F5BD"; }

.fa-square:before {
  content: "\F0C8"; }

.fa-square-full:before {
  content: "\F45C"; }

.fa-square-root-alt:before {
  content: "\F698"; }

.fa-squarespace:before {
  content: "\F5BE"; }

.fa-stack-exchange:before {
  content: "\F18D"; }

.fa-stack-overflow:before {
  content: "\F16C"; }

.fa-stackpath:before {
  content: "\F842"; }

.fa-stamp:before {
  content: "\F5BF"; }

.fa-star:before {
  content: "\F005"; }

.fa-star-and-crescent:before {
  content: "\F699"; }

.fa-star-half:before {
  content: "\F089"; }

.fa-star-half-alt:before {
  content: "\F5C0"; }

.fa-star-of-david:before {
  content: "\F69A"; }

.fa-star-of-life:before {
  content: "\F621"; }

.fa-staylinked:before {
  content: "\F3F5"; }

.fa-steam:before {
  content: "\F1B6"; }

.fa-steam-square:before {
  content: "\F1B7"; }

.fa-steam-symbol:before {
  content: "\F3F6"; }

.fa-step-backward:before {
  content: "\F048"; }

.fa-step-forward:before {
  content: "\F051"; }

.fa-stethoscope:before {
  content: "\F0F1"; }

.fa-sticker-mule:before {
  content: "\F3F7"; }

.fa-sticky-note:before {
  content: "\F249"; }

.fa-stop:before {
  content: "\F04D"; }

.fa-stop-circle:before {
  content: "\F28D"; }

.fa-stopwatch:before {
  content: "\F2F2"; }

.fa-stopwatch-20:before {
  content: "\E06F"; }

.fa-store:before {
  content: "\F54E"; }

.fa-store-alt:before {
  content: "\F54F"; }

.fa-store-alt-slash:before {
  content: "\E070"; }

.fa-store-slash:before {
  content: "\E071"; }

.fa-strava:before {
  content: "\F428"; }

.fa-stream:before {
  content: "\F550"; }

.fa-street-view:before {
  content: "\F21D"; }

.fa-strikethrough:before {
  content: "\F0CC"; }

.fa-stripe:before {
  content: "\F429"; }

.fa-stripe-s:before {
  content: "\F42A"; }

.fa-stroopwafel:before {
  content: "\F551"; }

.fa-studiovinari:before {
  content: "\F3F8"; }

.fa-stumbleupon:before {
  content: "\F1A4"; }

.fa-stumbleupon-circle:before {
  content: "\F1A3"; }

.fa-subscript:before {
  content: "\F12C"; }

.fa-subway:before {
  content: "\F239"; }

.fa-suitcase:before {
  content: "\F0F2"; }

.fa-suitcase-rolling:before {
  content: "\F5C1"; }

.fa-sun:before {
  content: "\F185"; }

.fa-superpowers:before {
  content: "\F2DD"; }

.fa-superscript:before {
  content: "\F12B"; }

.fa-supple:before {
  content: "\F3F9"; }

.fa-surprise:before {
  content: "\F5C2"; }

.fa-suse:before {
  content: "\F7D6"; }

.fa-swatchbook:before {
  content: "\F5C3"; }

.fa-swift:before {
  content: "\F8E1"; }

.fa-swimmer:before {
  content: "\F5C4"; }

.fa-swimming-pool:before {
  content: "\F5C5"; }

.fa-symfony:before {
  content: "\F83D"; }

.fa-synagogue:before {
  content: "\F69B"; }

.fa-sync:before {
  content: "\F021"; }

.fa-sync-alt:before {
  content: "\F2F1"; }

.fa-syringe:before {
  content: "\F48E"; }

.fa-table:before {
  content: "\F0CE"; }

.fa-table-tennis:before {
  content: "\F45D"; }

.fa-tablet:before {
  content: "\F10A"; }

.fa-tablet-alt:before {
  content: "\F3FA"; }

.fa-tablets:before {
  content: "\F490"; }

.fa-tachometer-alt:before {
  content: "\F3FD"; }

.fa-tag:before {
  content: "\F02B"; }

.fa-tags:before {
  content: "\F02C"; }

.fa-tape:before {
  content: "\F4DB"; }

.fa-tasks:before {
  content: "\F0AE"; }

.fa-taxi:before {
  content: "\F1BA"; }

.fa-teamspeak:before {
  content: "\F4F9"; }

.fa-teeth:before {
  content: "\F62E"; }

.fa-teeth-open:before {
  content: "\F62F"; }

.fa-telegram:before {
  content: "\F2C6"; }

.fa-telegram-plane:before {
  content: "\F3FE"; }

.fa-temperature-high:before {
  content: "\F769"; }

.fa-temperature-low:before {
  content: "\F76B"; }

.fa-tencent-weibo:before {
  content: "\F1D5"; }

.fa-tenge:before {
  content: "\F7D7"; }

.fa-terminal:before {
  content: "\F120"; }

.fa-text-height:before {
  content: "\F034"; }

.fa-text-width:before {
  content: "\F035"; }

.fa-th:before {
  content: "\F00A"; }

.fa-th-large:before {
  content: "\F009"; }

.fa-th-list:before {
  content: "\F00B"; }

.fa-the-red-yeti:before {
  content: "\F69D"; }

.fa-theater-masks:before {
  content: "\F630"; }

.fa-themeco:before {
  content: "\F5C6"; }

.fa-themeisle:before {
  content: "\F2B2"; }

.fa-thermometer:before {
  content: "\F491"; }

.fa-thermometer-empty:before {
  content: "\F2CB"; }

.fa-thermometer-full:before {
  content: "\F2C7"; }

.fa-thermometer-half:before {
  content: "\F2C9"; }

.fa-thermometer-quarter:before {
  content: "\F2CA"; }

.fa-thermometer-three-quarters:before {
  content: "\F2C8"; }

.fa-think-peaks:before {
  content: "\F731"; }

.fa-thumbs-down:before {
  content: "\F165"; }

.fa-thumbs-up:before {
  content: "\F164"; }

.fa-thumbtack:before {
  content: "\F08D"; }

.fa-ticket-alt:before {
  content: "\F3FF"; }

.fa-tiktok:before {
  content: "\E07B"; }

.fa-times:before {
  content: "\F00D"; }

.fa-times-circle:before {
  content: "\F057"; }

.fa-tint:before {
  content: "\F043"; }

.fa-tint-slash:before {
  content: "\F5C7"; }

.fa-tired:before {
  content: "\F5C8"; }

.fa-toggle-off:before {
  content: "\F204"; }

.fa-toggle-on:before {
  content: "\F205"; }

.fa-toilet:before {
  content: "\F7D8"; }

.fa-toilet-paper:before {
  content: "\F71E"; }

.fa-toilet-paper-slash:before {
  content: "\E072"; }

.fa-toolbox:before {
  content: "\F552"; }

.fa-tools:before {
  content: "\F7D9"; }

.fa-tooth:before {
  content: "\F5C9"; }

.fa-torah:before {
  content: "\F6A0"; }

.fa-torii-gate:before {
  content: "\F6A1"; }

.fa-tractor:before {
  content: "\F722"; }

.fa-trade-federation:before {
  content: "\F513"; }

.fa-trademark:before {
  content: "\F25C"; }

.fa-traffic-light:before {
  content: "\F637"; }

.fa-trailer:before {
  content: "\E041"; }

.fa-train:before {
  content: "\F238"; }

.fa-tram:before {
  content: "\F7DA"; }

.fa-transgender:before {
  content: "\F224"; }

.fa-transgender-alt:before {
  content: "\F225"; }

.fa-trash:before {
  content: "\F1F8"; }

.fa-trash-alt:before {
  content: "\F2ED"; }

.fa-trash-restore:before {
  content: "\F829"; }

.fa-trash-restore-alt:before {
  content: "\F82A"; }

.fa-tree:before {
  content: "\F1BB"; }

.fa-trello:before {
  content: "\F181"; }

.fa-tripadvisor:before {
  content: "\F262"; }

.fa-trophy:before {
  content: "\F091"; }

.fa-truck:before {
  content: "\F0D1"; }

.fa-truck-loading:before {
  content: "\F4DE"; }

.fa-truck-monster:before {
  content: "\F63B"; }

.fa-truck-moving:before {
  content: "\F4DF"; }

.fa-truck-pickup:before {
  content: "\F63C"; }

.fa-tshirt:before {
  content: "\F553"; }

.fa-tty:before {
  content: "\F1E4"; }

.fa-tumblr:before {
  content: "\F173"; }

.fa-tumblr-square:before {
  content: "\F174"; }

.fa-tv:before {
  content: "\F26C"; }

.fa-twitch:before {
  content: "\F1E8"; }

.fa-twitter:before {
  content: "\F099"; }

.fa-twitter-square:before {
  content: "\F081"; }

.fa-typo3:before {
  content: "\F42B"; }

.fa-uber:before {
  content: "\F402"; }

.fa-ubuntu:before {
  content: "\F7DF"; }

.fa-uikit:before {
  content: "\F403"; }

.fa-umbraco:before {
  content: "\F8E8"; }

.fa-umbrella:before {
  content: "\F0E9"; }

.fa-umbrella-beach:before {
  content: "\F5CA"; }

.fa-uncharted:before {
  content: "\E084"; }

.fa-underline:before {
  content: "\F0CD"; }

.fa-undo:before {
  content: "\F0E2"; }

.fa-undo-alt:before {
  content: "\F2EA"; }

.fa-uniregistry:before {
  content: "\F404"; }

.fa-unity:before {
  content: "\E049"; }

.fa-universal-access:before {
  content: "\F29A"; }

.fa-university:before {
  content: "\F19C"; }

.fa-unlink:before {
  content: "\F127"; }

.fa-unlock:before {
  content: "\F09C"; }

.fa-unlock-alt:before {
  content: "\F13E"; }

.fa-unsplash:before {
  content: "\E07C"; }

.fa-untappd:before {
  content: "\F405"; }

.fa-upload:before {
  content: "\F093"; }

.fa-ups:before {
  content: "\F7E0"; }

.fa-usb:before {
  content: "\F287"; }

.fa-user:before {
  content: "\F007"; }

.fa-user-alt:before {
  content: "\F406"; }

.fa-user-alt-slash:before {
  content: "\F4FA"; }

.fa-user-astronaut:before {
  content: "\F4FB"; }

.fa-user-check:before {
  content: "\F4FC"; }

.fa-user-circle:before {
  content: "\F2BD"; }

.fa-user-clock:before {
  content: "\F4FD"; }

.fa-user-cog:before {
  content: "\F4FE"; }

.fa-user-edit:before {
  content: "\F4FF"; }

.fa-user-friends:before {
  content: "\F500"; }

.fa-user-graduate:before {
  content: "\F501"; }

.fa-user-injured:before {
  content: "\F728"; }

.fa-user-lock:before {
  content: "\F502"; }

.fa-user-md:before {
  content: "\F0F0"; }

.fa-user-minus:before {
  content: "\F503"; }

.fa-user-ninja:before {
  content: "\F504"; }

.fa-user-nurse:before {
  content: "\F82F"; }

.fa-user-plus:before {
  content: "\F234"; }

.fa-user-secret:before {
  content: "\F21B"; }

.fa-user-shield:before {
  content: "\F505"; }

.fa-user-slash:before {
  content: "\F506"; }

.fa-user-tag:before {
  content: "\F507"; }

.fa-user-tie:before {
  content: "\F508"; }

.fa-user-times:before {
  content: "\F235"; }

.fa-users:before {
  content: "\F0C0"; }

.fa-users-cog:before {
  content: "\F509"; }

.fa-users-slash:before {
  content: "\E073"; }

.fa-usps:before {
  content: "\F7E1"; }

.fa-ussunnah:before {
  content: "\F407"; }

.fa-utensil-spoon:before {
  content: "\F2E5"; }

.fa-utensils:before {
  content: "\F2E7"; }

.fa-vaadin:before {
  content: "\F408"; }

.fa-vector-square:before {
  content: "\F5CB"; }

.fa-venus:before {
  content: "\F221"; }

.fa-venus-double:before {
  content: "\F226"; }

.fa-venus-mars:before {
  content: "\F228"; }

.fa-vest:before {
  content: "\E085"; }

.fa-vest-patches:before {
  content: "\E086"; }

.fa-viacoin:before {
  content: "\F237"; }

.fa-viadeo:before {
  content: "\F2A9"; }

.fa-viadeo-square:before {
  content: "\F2AA"; }

.fa-vial:before {
  content: "\F492"; }

.fa-vials:before {
  content: "\F493"; }

.fa-viber:before {
  content: "\F409"; }

.fa-video:before {
  content: "\F03D"; }

.fa-video-slash:before {
  content: "\F4E2"; }

.fa-vihara:before {
  content: "\F6A7"; }

.fa-vimeo:before {
  content: "\F40A"; }

.fa-vimeo-square:before {
  content: "\F194"; }

.fa-vimeo-v:before {
  content: "\F27D"; }

.fa-vine:before {
  content: "\F1CA"; }

.fa-virus:before {
  content: "\E074"; }

.fa-virus-slash:before {
  content: "\E075"; }

.fa-viruses:before {
  content: "\E076"; }

.fa-vk:before {
  content: "\F189"; }

.fa-vnv:before {
  content: "\F40B"; }

.fa-voicemail:before {
  content: "\F897"; }

.fa-volleyball-ball:before {
  content: "\F45F"; }

.fa-volume-down:before {
  content: "\F027"; }

.fa-volume-mute:before {
  content: "\F6A9"; }

.fa-volume-off:before {
  content: "\F026"; }

.fa-volume-up:before {
  content: "\F028"; }

.fa-vote-yea:before {
  content: "\F772"; }

.fa-vr-cardboard:before {
  content: "\F729"; }

.fa-vuejs:before {
  content: "\F41F"; }

.fa-walking:before {
  content: "\F554"; }

.fa-wallet:before {
  content: "\F555"; }

.fa-warehouse:before {
  content: "\F494"; }

.fa-watchman-monitoring:before {
  content: "\E087"; }

.fa-water:before {
  content: "\F773"; }

.fa-wave-square:before {
  content: "\F83E"; }

.fa-waze:before {
  content: "\F83F"; }

.fa-weebly:before {
  content: "\F5CC"; }

.fa-weibo:before {
  content: "\F18A"; }

.fa-weight:before {
  content: "\F496"; }

.fa-weight-hanging:before {
  content: "\F5CD"; }

.fa-weixin:before {
  content: "\F1D7"; }

.fa-whatsapp:before {
  content: "\F232"; }

.fa-whatsapp-square:before {
  content: "\F40C"; }

.fa-wheelchair:before {
  content: "\F193"; }

.fa-whmcs:before {
  content: "\F40D"; }

.fa-wifi:before {
  content: "\F1EB"; }

.fa-wikipedia-w:before {
  content: "\F266"; }

.fa-wind:before {
  content: "\F72E"; }

.fa-window-close:before {
  content: "\F410"; }

.fa-window-maximize:before {
  content: "\F2D0"; }

.fa-window-minimize:before {
  content: "\F2D1"; }

.fa-window-restore:before {
  content: "\F2D2"; }

.fa-windows:before {
  content: "\F17A"; }

.fa-wine-bottle:before {
  content: "\F72F"; }

.fa-wine-glass:before {
  content: "\F4E3"; }

.fa-wine-glass-alt:before {
  content: "\F5CE"; }

.fa-wix:before {
  content: "\F5CF"; }

.fa-wizards-of-the-coast:before {
  content: "\F730"; }

.fa-wodu:before {
  content: "\E088"; }

.fa-wolf-pack-battalion:before {
  content: "\F514"; }

.fa-won-sign:before {
  content: "\F159"; }

.fa-wordpress:before {
  content: "\F19A"; }

.fa-wordpress-simple:before {
  content: "\F411"; }

.fa-wpbeginner:before {
  content: "\F297"; }

.fa-wpexplorer:before {
  content: "\F2DE"; }

.fa-wpforms:before {
  content: "\F298"; }

.fa-wpressr:before {
  content: "\F3E4"; }

.fa-wrench:before {
  content: "\F0AD"; }

.fa-x-ray:before {
  content: "\F497"; }

.fa-xbox:before {
  content: "\F412"; }

.fa-xing:before {
  content: "\F168"; }

.fa-xing-square:before {
  content: "\F169"; }

.fa-y-combinator:before {
  content: "\F23B"; }

.fa-yahoo:before {
  content: "\F19E"; }

.fa-yammer:before {
  content: "\F840"; }

.fa-yandex:before {
  content: "\F413"; }

.fa-yandex-international:before {
  content: "\F414"; }

.fa-yarn:before {
  content: "\F7E3"; }

.fa-yelp:before {
  content: "\F1E9"; }

.fa-yen-sign:before {
  content: "\F157"; }

.fa-yin-yang:before {
  content: "\F6AD"; }

.fa-yoast:before {
  content: "\F2B1"; }

.fa-youtube:before {
  content: "\F167"; }

.fa-youtube-square:before {
  content: "\F431"; }

.fa-zhihu:before {
  content: "\F63F"; }

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }
@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/dist/fonts/fa-brands-400.eot);
  src: url(/dist/fonts/fa-brands-400.eot?#iefix) format("embedded-opentype"), url(/dist/fonts/fa-brands-400.woff2) format("woff2"), url(/dist/fonts/fa-brands-400.woff) format("woff"), url(/dist/fonts/fa-brands-400.ttf) format("truetype"), url(/dist/fonts/fa-brands-400.svg#fontawesome) format("svg"); }

.fab {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400; }
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/dist/fonts/fa-regular-400.eot);
  src: url(/dist/fonts/fa-regular-400.eot?#iefix) format("embedded-opentype"), url(/dist/fonts/fa-regular-400.woff2) format("woff2"), url(/dist/fonts/fa-regular-400.woff) format("woff"), url(/dist/fonts/fa-regular-400.ttf) format("truetype"), url(/dist/fonts/fa-regular-400.svg#fontawesome) format("svg"); }

.far {
  font-family: 'Font Awesome 5 Free';
  font-weight: 400; }
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(/dist/fonts/fa-solid-900.eot);
  src: url(/dist/fonts/fa-solid-900.eot?#iefix) format("embedded-opentype"), url(/dist/fonts/fa-solid-900.woff2) format("woff2"), url(/dist/fonts/fa-solid-900.woff) format("woff"), url(/dist/fonts/fa-solid-900.ttf) format("truetype"), url(/dist/fonts/fa-solid-900.svg#fontawesome) format("svg"); }

.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900; }

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url(/dist/fonts/fontawesome-webfont.eot);
  src: url(/dist/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'), url(/dist/fonts/fontawesome-webfont.woff2) format('woff2'), url(/dist/fonts/fontawesome-webfont.woff) format('woff'), url(/dist/fonts/fontawesome-webfont.ttf) format('truetype'), url(/dist/fonts/fontawesome-webfont.svg#fontawesomeregular) format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\F000";
}
.fa-music:before {
  content: "\F001";
}
.fa-search:before {
  content: "\F002";
}
.fa-envelope-o:before {
  content: "\F003";
}
.fa-heart:before {
  content: "\F004";
}
.fa-star:before {
  content: "\F005";
}
.fa-star-o:before {
  content: "\F006";
}
.fa-user:before {
  content: "\F007";
}
.fa-film:before {
  content: "\F008";
}
.fa-th-large:before {
  content: "\F009";
}
.fa-th:before {
  content: "\F00A";
}
.fa-th-list:before {
  content: "\F00B";
}
.fa-check:before {
  content: "\F00C";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\F00D";
}
.fa-search-plus:before {
  content: "\F00E";
}
.fa-search-minus:before {
  content: "\F010";
}
.fa-power-off:before {
  content: "\F011";
}
.fa-signal:before {
  content: "\F012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\F013";
}
.fa-trash-o:before {
  content: "\F014";
}
.fa-home:before {
  content: "\F015";
}
.fa-file-o:before {
  content: "\F016";
}
.fa-clock-o:before {
  content: "\F017";
}
.fa-road:before {
  content: "\F018";
}
.fa-download:before {
  content: "\F019";
}
.fa-arrow-circle-o-down:before {
  content: "\F01A";
}
.fa-arrow-circle-o-up:before {
  content: "\F01B";
}
.fa-inbox:before {
  content: "\F01C";
}
.fa-play-circle-o:before {
  content: "\F01D";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\F01E";
}
.fa-refresh:before {
  content: "\F021";
}
.fa-list-alt:before {
  content: "\F022";
}
.fa-lock:before {
  content: "\F023";
}
.fa-flag:before {
  content: "\F024";
}
.fa-headphones:before {
  content: "\F025";
}
.fa-volume-off:before {
  content: "\F026";
}
.fa-volume-down:before {
  content: "\F027";
}
.fa-volume-up:before {
  content: "\F028";
}
.fa-qrcode:before {
  content: "\F029";
}
.fa-barcode:before {
  content: "\F02A";
}
.fa-tag:before {
  content: "\F02B";
}
.fa-tags:before {
  content: "\F02C";
}
.fa-book:before {
  content: "\F02D";
}
.fa-bookmark:before {
  content: "\F02E";
}
.fa-print:before {
  content: "\F02F";
}
.fa-camera:before {
  content: "\F030";
}
.fa-font:before {
  content: "\F031";
}
.fa-bold:before {
  content: "\F032";
}
.fa-italic:before {
  content: "\F033";
}
.fa-text-height:before {
  content: "\F034";
}
.fa-text-width:before {
  content: "\F035";
}
.fa-align-left:before {
  content: "\F036";
}
.fa-align-center:before {
  content: "\F037";
}
.fa-align-right:before {
  content: "\F038";
}
.fa-align-justify:before {
  content: "\F039";
}
.fa-list:before {
  content: "\F03A";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\F03B";
}
.fa-indent:before {
  content: "\F03C";
}
.fa-video-camera:before {
  content: "\F03D";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\F03E";
}
.fa-pencil:before {
  content: "\F040";
}
.fa-map-marker:before {
  content: "\F041";
}
.fa-adjust:before {
  content: "\F042";
}
.fa-tint:before {
  content: "\F043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\F044";
}
.fa-share-square-o:before {
  content: "\F045";
}
.fa-check-square-o:before {
  content: "\F046";
}
.fa-arrows:before {
  content: "\F047";
}
.fa-step-backward:before {
  content: "\F048";
}
.fa-fast-backward:before {
  content: "\F049";
}
.fa-backward:before {
  content: "\F04A";
}
.fa-play:before {
  content: "\F04B";
}
.fa-pause:before {
  content: "\F04C";
}
.fa-stop:before {
  content: "\F04D";
}
.fa-forward:before {
  content: "\F04E";
}
.fa-fast-forward:before {
  content: "\F050";
}
.fa-step-forward:before {
  content: "\F051";
}
.fa-eject:before {
  content: "\F052";
}
.fa-chevron-left:before {
  content: "\F053";
}
.fa-chevron-right:before {
  content: "\F054";
}
.fa-plus-circle:before {
  content: "\F055";
}
.fa-minus-circle:before {
  content: "\F056";
}
.fa-times-circle:before {
  content: "\F057";
}
.fa-check-circle:before {
  content: "\F058";
}
.fa-question-circle:before {
  content: "\F059";
}
.fa-info-circle:before {
  content: "\F05A";
}
.fa-crosshairs:before {
  content: "\F05B";
}
.fa-times-circle-o:before {
  content: "\F05C";
}
.fa-check-circle-o:before {
  content: "\F05D";
}
.fa-ban:before {
  content: "\F05E";
}
.fa-arrow-left:before {
  content: "\F060";
}
.fa-arrow-right:before {
  content: "\F061";
}
.fa-arrow-up:before {
  content: "\F062";
}
.fa-arrow-down:before {
  content: "\F063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\F064";
}
.fa-expand:before {
  content: "\F065";
}
.fa-compress:before {
  content: "\F066";
}
.fa-plus:before {
  content: "\F067";
}
.fa-minus:before {
  content: "\F068";
}
.fa-asterisk:before {
  content: "\F069";
}
.fa-exclamation-circle:before {
  content: "\F06A";
}
.fa-gift:before {
  content: "\F06B";
}
.fa-leaf:before {
  content: "\F06C";
}
.fa-fire:before {
  content: "\F06D";
}
.fa-eye:before {
  content: "\F06E";
}
.fa-eye-slash:before {
  content: "\F070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\F071";
}
.fa-plane:before {
  content: "\F072";
}
.fa-calendar:before {
  content: "\F073";
}
.fa-random:before {
  content: "\F074";
}
.fa-comment:before {
  content: "\F075";
}
.fa-magnet:before {
  content: "\F076";
}
.fa-chevron-up:before {
  content: "\F077";
}
.fa-chevron-down:before {
  content: "\F078";
}
.fa-retweet:before {
  content: "\F079";
}
.fa-shopping-cart:before {
  content: "\F07A";
}
.fa-folder:before {
  content: "\F07B";
}
.fa-folder-open:before {
  content: "\F07C";
}
.fa-arrows-v:before {
  content: "\F07D";
}
.fa-arrows-h:before {
  content: "\F07E";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\F080";
}
.fa-twitter-square:before {
  content: "\F081";
}
.fa-facebook-square:before {
  content: "\F082";
}
.fa-camera-retro:before {
  content: "\F083";
}
.fa-key:before {
  content: "\F084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\F085";
}
.fa-comments:before {
  content: "\F086";
}
.fa-thumbs-o-up:before {
  content: "\F087";
}
.fa-thumbs-o-down:before {
  content: "\F088";
}
.fa-star-half:before {
  content: "\F089";
}
.fa-heart-o:before {
  content: "\F08A";
}
.fa-sign-out:before {
  content: "\F08B";
}
.fa-linkedin-square:before {
  content: "\F08C";
}
.fa-thumb-tack:before {
  content: "\F08D";
}
.fa-external-link:before {
  content: "\F08E";
}
.fa-sign-in:before {
  content: "\F090";
}
.fa-trophy:before {
  content: "\F091";
}
.fa-github-square:before {
  content: "\F092";
}
.fa-upload:before {
  content: "\F093";
}
.fa-lemon-o:before {
  content: "\F094";
}
.fa-phone:before {
  content: "\F095";
}
.fa-square-o:before {
  content: "\F096";
}
.fa-bookmark-o:before {
  content: "\F097";
}
.fa-phone-square:before {
  content: "\F098";
}
.fa-twitter:before {
  content: "\F099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\F09A";
}
.fa-github:before {
  content: "\F09B";
}
.fa-unlock:before {
  content: "\F09C";
}
.fa-credit-card:before {
  content: "\F09D";
}
.fa-feed:before,
.fa-rss:before {
  content: "\F09E";
}
.fa-hdd-o:before {
  content: "\F0A0";
}
.fa-bullhorn:before {
  content: "\F0A1";
}
.fa-bell:before {
  content: "\F0F3";
}
.fa-certificate:before {
  content: "\F0A3";
}
.fa-hand-o-right:before {
  content: "\F0A4";
}
.fa-hand-o-left:before {
  content: "\F0A5";
}
.fa-hand-o-up:before {
  content: "\F0A6";
}
.fa-hand-o-down:before {
  content: "\F0A7";
}
.fa-arrow-circle-left:before {
  content: "\F0A8";
}
.fa-arrow-circle-right:before {
  content: "\F0A9";
}
.fa-arrow-circle-up:before {
  content: "\F0AA";
}
.fa-arrow-circle-down:before {
  content: "\F0AB";
}
.fa-globe:before {
  content: "\F0AC";
}
.fa-wrench:before {
  content: "\F0AD";
}
.fa-tasks:before {
  content: "\F0AE";
}
.fa-filter:before {
  content: "\F0B0";
}
.fa-briefcase:before {
  content: "\F0B1";
}
.fa-arrows-alt:before {
  content: "\F0B2";
}
.fa-group:before,
.fa-users:before {
  content: "\F0C0";
}
.fa-chain:before,
.fa-link:before {
  content: "\F0C1";
}
.fa-cloud:before {
  content: "\F0C2";
}
.fa-flask:before {
  content: "\F0C3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\F0C4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\F0C5";
}
.fa-paperclip:before {
  content: "\F0C6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\F0C7";
}
.fa-square:before {
  content: "\F0C8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\F0C9";
}
.fa-list-ul:before {
  content: "\F0CA";
}
.fa-list-ol:before {
  content: "\F0CB";
}
.fa-strikethrough:before {
  content: "\F0CC";
}
.fa-underline:before {
  content: "\F0CD";
}
.fa-table:before {
  content: "\F0CE";
}
.fa-magic:before {
  content: "\F0D0";
}
.fa-truck:before {
  content: "\F0D1";
}
.fa-pinterest:before {
  content: "\F0D2";
}
.fa-pinterest-square:before {
  content: "\F0D3";
}
.fa-google-plus-square:before {
  content: "\F0D4";
}
.fa-google-plus:before {
  content: "\F0D5";
}
.fa-money:before {
  content: "\F0D6";
}
.fa-caret-down:before {
  content: "\F0D7";
}
.fa-caret-up:before {
  content: "\F0D8";
}
.fa-caret-left:before {
  content: "\F0D9";
}
.fa-caret-right:before {
  content: "\F0DA";
}
.fa-columns:before {
  content: "\F0DB";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\F0DC";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\F0DD";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\F0DE";
}
.fa-envelope:before {
  content: "\F0E0";
}
.fa-linkedin:before {
  content: "\F0E1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\F0E2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\F0E3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\F0E4";
}
.fa-comment-o:before {
  content: "\F0E5";
}
.fa-comments-o:before {
  content: "\F0E6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\F0E7";
}
.fa-sitemap:before {
  content: "\F0E8";
}
.fa-umbrella:before {
  content: "\F0E9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\F0EA";
}
.fa-lightbulb-o:before {
  content: "\F0EB";
}
.fa-exchange:before {
  content: "\F0EC";
}
.fa-cloud-download:before {
  content: "\F0ED";
}
.fa-cloud-upload:before {
  content: "\F0EE";
}
.fa-user-md:before {
  content: "\F0F0";
}
.fa-stethoscope:before {
  content: "\F0F1";
}
.fa-suitcase:before {
  content: "\F0F2";
}
.fa-bell-o:before {
  content: "\F0A2";
}
.fa-coffee:before {
  content: "\F0F4";
}
.fa-cutlery:before {
  content: "\F0F5";
}
.fa-file-text-o:before {
  content: "\F0F6";
}
.fa-building-o:before {
  content: "\F0F7";
}
.fa-hospital-o:before {
  content: "\F0F8";
}
.fa-ambulance:before {
  content: "\F0F9";
}
.fa-medkit:before {
  content: "\F0FA";
}
.fa-fighter-jet:before {
  content: "\F0FB";
}
.fa-beer:before {
  content: "\F0FC";
}
.fa-h-square:before {
  content: "\F0FD";
}
.fa-plus-square:before {
  content: "\F0FE";
}
.fa-angle-double-left:before {
  content: "\F100";
}
.fa-angle-double-right:before {
  content: "\F101";
}
.fa-angle-double-up:before {
  content: "\F102";
}
.fa-angle-double-down:before {
  content: "\F103";
}
.fa-angle-left:before {
  content: "\F104";
}
.fa-angle-right:before {
  content: "\F105";
}
.fa-angle-up:before {
  content: "\F106";
}
.fa-angle-down:before {
  content: "\F107";
}
.fa-desktop:before {
  content: "\F108";
}
.fa-laptop:before {
  content: "\F109";
}
.fa-tablet:before {
  content: "\F10A";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\F10B";
}
.fa-circle-o:before {
  content: "\F10C";
}
.fa-quote-left:before {
  content: "\F10D";
}
.fa-quote-right:before {
  content: "\F10E";
}
.fa-spinner:before {
  content: "\F110";
}
.fa-circle:before {
  content: "\F111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\F112";
}
.fa-github-alt:before {
  content: "\F113";
}
.fa-folder-o:before {
  content: "\F114";
}
.fa-folder-open-o:before {
  content: "\F115";
}
.fa-smile-o:before {
  content: "\F118";
}
.fa-frown-o:before {
  content: "\F119";
}
.fa-meh-o:before {
  content: "\F11A";
}
.fa-gamepad:before {
  content: "\F11B";
}
.fa-keyboard-o:before {
  content: "\F11C";
}
.fa-flag-o:before {
  content: "\F11D";
}
.fa-flag-checkered:before {
  content: "\F11E";
}
.fa-terminal:before {
  content: "\F120";
}
.fa-code:before {
  content: "\F121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\F122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\F123";
}
.fa-location-arrow:before {
  content: "\F124";
}
.fa-crop:before {
  content: "\F125";
}
.fa-code-fork:before {
  content: "\F126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\F127";
}
.fa-question:before {
  content: "\F128";
}
.fa-info:before {
  content: "\F129";
}
.fa-exclamation:before {
  content: "\F12A";
}
.fa-superscript:before {
  content: "\F12B";
}
.fa-subscript:before {
  content: "\F12C";
}
.fa-eraser:before {
  content: "\F12D";
}
.fa-puzzle-piece:before {
  content: "\F12E";
}
.fa-microphone:before {
  content: "\F130";
}
.fa-microphone-slash:before {
  content: "\F131";
}
.fa-shield:before {
  content: "\F132";
}
.fa-calendar-o:before {
  content: "\F133";
}
.fa-fire-extinguisher:before {
  content: "\F134";
}
.fa-rocket:before {
  content: "\F135";
}
.fa-maxcdn:before {
  content: "\F136";
}
.fa-chevron-circle-left:before {
  content: "\F137";
}
.fa-chevron-circle-right:before {
  content: "\F138";
}
.fa-chevron-circle-up:before {
  content: "\F139";
}
.fa-chevron-circle-down:before {
  content: "\F13A";
}
.fa-html5:before {
  content: "\F13B";
}
.fa-css3:before {
  content: "\F13C";
}
.fa-anchor:before {
  content: "\F13D";
}
.fa-unlock-alt:before {
  content: "\F13E";
}
.fa-bullseye:before {
  content: "\F140";
}
.fa-ellipsis-h:before {
  content: "\F141";
}
.fa-ellipsis-v:before {
  content: "\F142";
}
.fa-rss-square:before {
  content: "\F143";
}
.fa-play-circle:before {
  content: "\F144";
}
.fa-ticket:before {
  content: "\F145";
}
.fa-minus-square:before {
  content: "\F146";
}
.fa-minus-square-o:before {
  content: "\F147";
}
.fa-level-up:before {
  content: "\F148";
}
.fa-level-down:before {
  content: "\F149";
}
.fa-check-square:before {
  content: "\F14A";
}
.fa-pencil-square:before {
  content: "\F14B";
}
.fa-external-link-square:before {
  content: "\F14C";
}
.fa-share-square:before {
  content: "\F14D";
}
.fa-compass:before {
  content: "\F14E";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\F150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\F151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\F152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\F153";
}
.fa-gbp:before {
  content: "\F154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\F155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\F156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\F157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\F158";
}
.fa-won:before,
.fa-krw:before {
  content: "\F159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\F15A";
}
.fa-file:before {
  content: "\F15B";
}
.fa-file-text:before {
  content: "\F15C";
}
.fa-sort-alpha-asc:before {
  content: "\F15D";
}
.fa-sort-alpha-desc:before {
  content: "\F15E";
}
.fa-sort-amount-asc:before {
  content: "\F160";
}
.fa-sort-amount-desc:before {
  content: "\F161";
}
.fa-sort-numeric-asc:before {
  content: "\F162";
}
.fa-sort-numeric-desc:before {
  content: "\F163";
}
.fa-thumbs-up:before {
  content: "\F164";
}
.fa-thumbs-down:before {
  content: "\F165";
}
.fa-youtube-square:before {
  content: "\F166";
}
.fa-youtube:before {
  content: "\F167";
}
.fa-xing:before {
  content: "\F168";
}
.fa-xing-square:before {
  content: "\F169";
}
.fa-youtube-play:before {
  content: "\F16A";
}
.fa-dropbox:before {
  content: "\F16B";
}
.fa-stack-overflow:before {
  content: "\F16C";
}
.fa-instagram:before {
  content: "\F16D";
}
.fa-flickr:before {
  content: "\F16E";
}
.fa-adn:before {
  content: "\F170";
}
.fa-bitbucket:before {
  content: "\F171";
}
.fa-bitbucket-square:before {
  content: "\F172";
}
.fa-tumblr:before {
  content: "\F173";
}
.fa-tumblr-square:before {
  content: "\F174";
}
.fa-long-arrow-down:before {
  content: "\F175";
}
.fa-long-arrow-up:before {
  content: "\F176";
}
.fa-long-arrow-left:before {
  content: "\F177";
}
.fa-long-arrow-right:before {
  content: "\F178";
}
.fa-apple:before {
  content: "\F179";
}
.fa-windows:before {
  content: "\F17A";
}
.fa-android:before {
  content: "\F17B";
}
.fa-linux:before {
  content: "\F17C";
}
.fa-dribbble:before {
  content: "\F17D";
}
.fa-skype:before {
  content: "\F17E";
}
.fa-foursquare:before {
  content: "\F180";
}
.fa-trello:before {
  content: "\F181";
}
.fa-female:before {
  content: "\F182";
}
.fa-male:before {
  content: "\F183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\F184";
}
.fa-sun-o:before {
  content: "\F185";
}
.fa-moon-o:before {
  content: "\F186";
}
.fa-archive:before {
  content: "\F187";
}
.fa-bug:before {
  content: "\F188";
}
.fa-vk:before {
  content: "\F189";
}
.fa-weibo:before {
  content: "\F18A";
}
.fa-renren:before {
  content: "\F18B";
}
.fa-pagelines:before {
  content: "\F18C";
}
.fa-stack-exchange:before {
  content: "\F18D";
}
.fa-arrow-circle-o-right:before {
  content: "\F18E";
}
.fa-arrow-circle-o-left:before {
  content: "\F190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\F191";
}
.fa-dot-circle-o:before {
  content: "\F192";
}
.fa-wheelchair:before {
  content: "\F193";
}
.fa-vimeo-square:before {
  content: "\F194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\F195";
}
.fa-plus-square-o:before {
  content: "\F196";
}
.fa-space-shuttle:before {
  content: "\F197";
}
.fa-slack:before {
  content: "\F198";
}
.fa-envelope-square:before {
  content: "\F199";
}
.fa-wordpress:before {
  content: "\F19A";
}
.fa-openid:before {
  content: "\F19B";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\F19C";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\F19D";
}
.fa-yahoo:before {
  content: "\F19E";
}
.fa-google:before {
  content: "\F1A0";
}
.fa-reddit:before {
  content: "\F1A1";
}
.fa-reddit-square:before {
  content: "\F1A2";
}
.fa-stumbleupon-circle:before {
  content: "\F1A3";
}
.fa-stumbleupon:before {
  content: "\F1A4";
}
.fa-delicious:before {
  content: "\F1A5";
}
.fa-digg:before {
  content: "\F1A6";
}
.fa-pied-piper-pp:before {
  content: "\F1A7";
}
.fa-pied-piper-alt:before {
  content: "\F1A8";
}
.fa-drupal:before {
  content: "\F1A9";
}
.fa-joomla:before {
  content: "\F1AA";
}
.fa-language:before {
  content: "\F1AB";
}
.fa-fax:before {
  content: "\F1AC";
}
.fa-building:before {
  content: "\F1AD";
}
.fa-child:before {
  content: "\F1AE";
}
.fa-paw:before {
  content: "\F1B0";
}
.fa-spoon:before {
  content: "\F1B1";
}
.fa-cube:before {
  content: "\F1B2";
}
.fa-cubes:before {
  content: "\F1B3";
}
.fa-behance:before {
  content: "\F1B4";
}
.fa-behance-square:before {
  content: "\F1B5";
}
.fa-steam:before {
  content: "\F1B6";
}
.fa-steam-square:before {
  content: "\F1B7";
}
.fa-recycle:before {
  content: "\F1B8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\F1B9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\F1BA";
}
.fa-tree:before {
  content: "\F1BB";
}
.fa-spotify:before {
  content: "\F1BC";
}
.fa-deviantart:before {
  content: "\F1BD";
}
.fa-soundcloud:before {
  content: "\F1BE";
}
.fa-database:before {
  content: "\F1C0";
}
.fa-file-pdf-o:before {
  content: "\F1C1";
}
.fa-file-word-o:before {
  content: "\F1C2";
}
.fa-file-excel-o:before {
  content: "\F1C3";
}
.fa-file-powerpoint-o:before {
  content: "\F1C4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\F1C5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\F1C6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\F1C7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\F1C8";
}
.fa-file-code-o:before {
  content: "\F1C9";
}
.fa-vine:before {
  content: "\F1CA";
}
.fa-codepen:before {
  content: "\F1CB";
}
.fa-jsfiddle:before {
  content: "\F1CC";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\F1CD";
}
.fa-circle-o-notch:before {
  content: "\F1CE";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\F1D0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\F1D1";
}
.fa-git-square:before {
  content: "\F1D2";
}
.fa-git:before {
  content: "\F1D3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\F1D4";
}
.fa-tencent-weibo:before {
  content: "\F1D5";
}
.fa-qq:before {
  content: "\F1D6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\F1D7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\F1D8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\F1D9";
}
.fa-history:before {
  content: "\F1DA";
}
.fa-circle-thin:before {
  content: "\F1DB";
}
.fa-header:before {
  content: "\F1DC";
}
.fa-paragraph:before {
  content: "\F1DD";
}
.fa-sliders:before {
  content: "\F1DE";
}
.fa-share-alt:before {
  content: "\F1E0";
}
.fa-share-alt-square:before {
  content: "\F1E1";
}
.fa-bomb:before {
  content: "\F1E2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\F1E3";
}
.fa-tty:before {
  content: "\F1E4";
}
.fa-binoculars:before {
  content: "\F1E5";
}
.fa-plug:before {
  content: "\F1E6";
}
.fa-slideshare:before {
  content: "\F1E7";
}
.fa-twitch:before {
  content: "\F1E8";
}
.fa-yelp:before {
  content: "\F1E9";
}
.fa-newspaper-o:before {
  content: "\F1EA";
}
.fa-wifi:before {
  content: "\F1EB";
}
.fa-calculator:before {
  content: "\F1EC";
}
.fa-paypal:before {
  content: "\F1ED";
}
.fa-google-wallet:before {
  content: "\F1EE";
}
.fa-cc-visa:before {
  content: "\F1F0";
}
.fa-cc-mastercard:before {
  content: "\F1F1";
}
.fa-cc-discover:before {
  content: "\F1F2";
}
.fa-cc-amex:before {
  content: "\F1F3";
}
.fa-cc-paypal:before {
  content: "\F1F4";
}
.fa-cc-stripe:before {
  content: "\F1F5";
}
.fa-bell-slash:before {
  content: "\F1F6";
}
.fa-bell-slash-o:before {
  content: "\F1F7";
}
.fa-trash:before {
  content: "\F1F8";
}
.fa-copyright:before {
  content: "\F1F9";
}
.fa-at:before {
  content: "\F1FA";
}
.fa-eyedropper:before {
  content: "\F1FB";
}
.fa-paint-brush:before {
  content: "\F1FC";
}
.fa-birthday-cake:before {
  content: "\F1FD";
}
.fa-area-chart:before {
  content: "\F1FE";
}
.fa-pie-chart:before {
  content: "\F200";
}
.fa-line-chart:before {
  content: "\F201";
}
.fa-lastfm:before {
  content: "\F202";
}
.fa-lastfm-square:before {
  content: "\F203";
}
.fa-toggle-off:before {
  content: "\F204";
}
.fa-toggle-on:before {
  content: "\F205";
}
.fa-bicycle:before {
  content: "\F206";
}
.fa-bus:before {
  content: "\F207";
}
.fa-ioxhost:before {
  content: "\F208";
}
.fa-angellist:before {
  content: "\F209";
}
.fa-cc:before {
  content: "\F20A";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\F20B";
}
.fa-meanpath:before {
  content: "\F20C";
}
.fa-buysellads:before {
  content: "\F20D";
}
.fa-connectdevelop:before {
  content: "\F20E";
}
.fa-dashcube:before {
  content: "\F210";
}
.fa-forumbee:before {
  content: "\F211";
}
.fa-leanpub:before {
  content: "\F212";
}
.fa-sellsy:before {
  content: "\F213";
}
.fa-shirtsinbulk:before {
  content: "\F214";
}
.fa-simplybuilt:before {
  content: "\F215";
}
.fa-skyatlas:before {
  content: "\F216";
}
.fa-cart-plus:before {
  content: "\F217";
}
.fa-cart-arrow-down:before {
  content: "\F218";
}
.fa-diamond:before {
  content: "\F219";
}
.fa-ship:before {
  content: "\F21A";
}
.fa-user-secret:before {
  content: "\F21B";
}
.fa-motorcycle:before {
  content: "\F21C";
}
.fa-street-view:before {
  content: "\F21D";
}
.fa-heartbeat:before {
  content: "\F21E";
}
.fa-venus:before {
  content: "\F221";
}
.fa-mars:before {
  content: "\F222";
}
.fa-mercury:before {
  content: "\F223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\F224";
}
.fa-transgender-alt:before {
  content: "\F225";
}
.fa-venus-double:before {
  content: "\F226";
}
.fa-mars-double:before {
  content: "\F227";
}
.fa-venus-mars:before {
  content: "\F228";
}
.fa-mars-stroke:before {
  content: "\F229";
}
.fa-mars-stroke-v:before {
  content: "\F22A";
}
.fa-mars-stroke-h:before {
  content: "\F22B";
}
.fa-neuter:before {
  content: "\F22C";
}
.fa-genderless:before {
  content: "\F22D";
}
.fa-facebook-official:before {
  content: "\F230";
}
.fa-pinterest-p:before {
  content: "\F231";
}
.fa-whatsapp:before {
  content: "\F232";
}
.fa-server:before {
  content: "\F233";
}
.fa-user-plus:before {
  content: "\F234";
}
.fa-user-times:before {
  content: "\F235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\F236";
}
.fa-viacoin:before {
  content: "\F237";
}
.fa-train:before {
  content: "\F238";
}
.fa-subway:before {
  content: "\F239";
}
.fa-medium:before {
  content: "\F23A";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\F23B";
}
.fa-optin-monster:before {
  content: "\F23C";
}
.fa-opencart:before {
  content: "\F23D";
}
.fa-expeditedssl:before {
  content: "\F23E";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\F240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\F241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\F242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\F243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\F244";
}
.fa-mouse-pointer:before {
  content: "\F245";
}
.fa-i-cursor:before {
  content: "\F246";
}
.fa-object-group:before {
  content: "\F247";
}
.fa-object-ungroup:before {
  content: "\F248";
}
.fa-sticky-note:before {
  content: "\F249";
}
.fa-sticky-note-o:before {
  content: "\F24A";
}
.fa-cc-jcb:before {
  content: "\F24B";
}
.fa-cc-diners-club:before {
  content: "\F24C";
}
.fa-clone:before {
  content: "\F24D";
}
.fa-balance-scale:before {
  content: "\F24E";
}
.fa-hourglass-o:before {
  content: "\F250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\F251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\F252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\F253";
}
.fa-hourglass:before {
  content: "\F254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\F255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\F256";
}
.fa-hand-scissors-o:before {
  content: "\F257";
}
.fa-hand-lizard-o:before {
  content: "\F258";
}
.fa-hand-spock-o:before {
  content: "\F259";
}
.fa-hand-pointer-o:before {
  content: "\F25A";
}
.fa-hand-peace-o:before {
  content: "\F25B";
}
.fa-trademark:before {
  content: "\F25C";
}
.fa-registered:before {
  content: "\F25D";
}
.fa-creative-commons:before {
  content: "\F25E";
}
.fa-gg:before {
  content: "\F260";
}
.fa-gg-circle:before {
  content: "\F261";
}
.fa-tripadvisor:before {
  content: "\F262";
}
.fa-odnoklassniki:before {
  content: "\F263";
}
.fa-odnoklassniki-square:before {
  content: "\F264";
}
.fa-get-pocket:before {
  content: "\F265";
}
.fa-wikipedia-w:before {
  content: "\F266";
}
.fa-safari:before {
  content: "\F267";
}
.fa-chrome:before {
  content: "\F268";
}
.fa-firefox:before {
  content: "\F269";
}
.fa-opera:before {
  content: "\F26A";
}
.fa-internet-explorer:before {
  content: "\F26B";
}
.fa-tv:before,
.fa-television:before {
  content: "\F26C";
}
.fa-contao:before {
  content: "\F26D";
}
.fa-500px:before {
  content: "\F26E";
}
.fa-amazon:before {
  content: "\F270";
}
.fa-calendar-plus-o:before {
  content: "\F271";
}
.fa-calendar-minus-o:before {
  content: "\F272";
}
.fa-calendar-times-o:before {
  content: "\F273";
}
.fa-calendar-check-o:before {
  content: "\F274";
}
.fa-industry:before {
  content: "\F275";
}
.fa-map-pin:before {
  content: "\F276";
}
.fa-map-signs:before {
  content: "\F277";
}
.fa-map-o:before {
  content: "\F278";
}
.fa-map:before {
  content: "\F279";
}
.fa-commenting:before {
  content: "\F27A";
}
.fa-commenting-o:before {
  content: "\F27B";
}
.fa-houzz:before {
  content: "\F27C";
}
.fa-vimeo:before {
  content: "\F27D";
}
.fa-black-tie:before {
  content: "\F27E";
}
.fa-fonticons:before {
  content: "\F280";
}
.fa-reddit-alien:before {
  content: "\F281";
}
.fa-edge:before {
  content: "\F282";
}
.fa-credit-card-alt:before {
  content: "\F283";
}
.fa-codiepie:before {
  content: "\F284";
}
.fa-modx:before {
  content: "\F285";
}
.fa-fort-awesome:before {
  content: "\F286";
}
.fa-usb:before {
  content: "\F287";
}
.fa-product-hunt:before {
  content: "\F288";
}
.fa-mixcloud:before {
  content: "\F289";
}
.fa-scribd:before {
  content: "\F28A";
}
.fa-pause-circle:before {
  content: "\F28B";
}
.fa-pause-circle-o:before {
  content: "\F28C";
}
.fa-stop-circle:before {
  content: "\F28D";
}
.fa-stop-circle-o:before {
  content: "\F28E";
}
.fa-shopping-bag:before {
  content: "\F290";
}
.fa-shopping-basket:before {
  content: "\F291";
}
.fa-hashtag:before {
  content: "\F292";
}
.fa-bluetooth:before {
  content: "\F293";
}
.fa-bluetooth-b:before {
  content: "\F294";
}
.fa-percent:before {
  content: "\F295";
}
.fa-gitlab:before {
  content: "\F296";
}
.fa-wpbeginner:before {
  content: "\F297";
}
.fa-wpforms:before {
  content: "\F298";
}
.fa-envira:before {
  content: "\F299";
}
.fa-universal-access:before {
  content: "\F29A";
}
.fa-wheelchair-alt:before {
  content: "\F29B";
}
.fa-question-circle-o:before {
  content: "\F29C";
}
.fa-blind:before {
  content: "\F29D";
}
.fa-audio-description:before {
  content: "\F29E";
}
.fa-volume-control-phone:before {
  content: "\F2A0";
}
.fa-braille:before {
  content: "\F2A1";
}
.fa-assistive-listening-systems:before {
  content: "\F2A2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\F2A3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\F2A4";
}
.fa-glide:before {
  content: "\F2A5";
}
.fa-glide-g:before {
  content: "\F2A6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\F2A7";
}
.fa-low-vision:before {
  content: "\F2A8";
}
.fa-viadeo:before {
  content: "\F2A9";
}
.fa-viadeo-square:before {
  content: "\F2AA";
}
.fa-snapchat:before {
  content: "\F2AB";
}
.fa-snapchat-ghost:before {
  content: "\F2AC";
}
.fa-snapchat-square:before {
  content: "\F2AD";
}
.fa-pied-piper:before {
  content: "\F2AE";
}
.fa-first-order:before {
  content: "\F2B0";
}
.fa-yoast:before {
  content: "\F2B1";
}
.fa-themeisle:before {
  content: "\F2B2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\F2B3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\F2B4";
}
.fa-handshake-o:before {
  content: "\F2B5";
}
.fa-envelope-open:before {
  content: "\F2B6";
}
.fa-envelope-open-o:before {
  content: "\F2B7";
}
.fa-linode:before {
  content: "\F2B8";
}
.fa-address-book:before {
  content: "\F2B9";
}
.fa-address-book-o:before {
  content: "\F2BA";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\F2BB";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\F2BC";
}
.fa-user-circle:before {
  content: "\F2BD";
}
.fa-user-circle-o:before {
  content: "\F2BE";
}
.fa-user-o:before {
  content: "\F2C0";
}
.fa-id-badge:before {
  content: "\F2C1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\F2C2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\F2C3";
}
.fa-quora:before {
  content: "\F2C4";
}
.fa-free-code-camp:before {
  content: "\F2C5";
}
.fa-telegram:before {
  content: "\F2C6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\F2C7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\F2C8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\F2C9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\F2CA";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\F2CB";
}
.fa-shower:before {
  content: "\F2CC";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\F2CD";
}
.fa-podcast:before {
  content: "\F2CE";
}
.fa-window-maximize:before {
  content: "\F2D0";
}
.fa-window-minimize:before {
  content: "\F2D1";
}
.fa-window-restore:before {
  content: "\F2D2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\F2D3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\F2D4";
}
.fa-bandcamp:before {
  content: "\F2D5";
}
.fa-grav:before {
  content: "\F2D6";
}
.fa-etsy:before {
  content: "\F2D7";
}
.fa-imdb:before {
  content: "\F2D8";
}
.fa-ravelry:before {
  content: "\F2D9";
}
.fa-eercast:before {
  content: "\F2DA";
}
.fa-microchip:before {
  content: "\F2DB";
}
.fa-snowflake-o:before {
  content: "\F2DC";
}
.fa-superpowers:before {
  content: "\F2DD";
}
.fa-wpexplorer:before {
  content: "\F2DE";
}
.fa-meetup:before {
  content: "\F2E0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

@charset "UTF-8";
/* Fonts */
/* Metrics */
/* General */
/* Colors */
/* General */
/* Notify */
/* Tables */
/* List */
/* Header */
/* Notice */
/* Menu */
/* Navbar */
/* Blade */
/* Text */
/* Font Awesome */
/* Dialogs */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("/css/themes/main/fonts/Roboto-regular/Roboto-Regular.ttf") format("truetype"); }

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("/css/themes/main/fonts/Roboto-medium/Roboto-Medium.ttf") format("truetype"); }

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("/css/themes/main/fonts/Roboto-bold/Roboto-Bold.ttf") format("truetype"); }

* {
  margin: 0;
  outline: none;
  padding: 0; }

html,
body {
  height: 100%;
  width: 100%; }

html.hidden {
  overflow: hidden; }

html {
  -webkit-text-size-adjust: none; }

.clearfix:after {
  clear: both;
  content: '';
  display: block;
  font-size: 0; }

body {
  background: #f5f6f9;
  color: #333;
  direction: ltr;
  font-family: "Roboto";
  font-size: 16px;
  line-height: 1.4;
  overflow-x: hidden; }

pre, code, kbd, samp, tt {
  font-size: 13px; }

fieldset {
  min-width: 0;
  width: 100%; }

@-moz-document url-prefix() {
  fieldset {
    display: table-cell; } }

ul,
ol {
  padding: 0;
  margin: 0; }

a:hover {
  text-decoration: none; }

a .disabled {
  pointer-events: none;
  cursor: default; }

p {
  margin: 0; }

/* Window and Modals */
.modal-backdrop.fade,
.modal.fade {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0; }

.modal-backdrop.fade {
  background: #000;
  opacity: .5;
  filter: alpha(opacity=50); }

.window,
.modal-content {
  background: #fff;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  font-family: "Roboto";
  line-height: 1.3;
  min-height: 316px;
  width: 516px; }
  .window .modal-header-error,
  .modal-content .modal-header-error {
    background: #7a1c13;
    height: auto;
    line-height: 1;
    position: relative;
    z-index: 50; }
    .window .modal-header-error .modal-title,
    .modal-content .modal-header-error .modal-title {
      color: #fff;
      font-size: 20px;
      font-weight: 400;
      padding: 10px 20px; }

.window {
  position: relative; }

.__gallery .modal-dialog {
  background-color: #fff;
  border: 5px solid #a1c0d4;
  bottom: 40px;
  left: 80px;
  margin: 0;
  position: absolute;
  right: 80px;
  top: 40px;
  width: auto;
  transform: none; }

.__gallery .modal-content {
  box-shadow: none;
  height: 100%;
  margin: 0;
  position: static;
  width: 100%;
  transform: none; }
  .__gallery .modal-content .modal-body {
    height: 100%;
    padding: 0; }

.modal-content {
  min-height: inherit; }

.window .window-status {
  height: 50px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 25; }
  .window .window-status .progress-bar {
    height: 100%;
    margin: 0; }

.window .window-head,
.modal-content .modal-header {
  background: #465769;
  border-radius: 2px 2px 0px 0px;
  height: 50px;
  line-height: 38px;
  position: relative;
  z-index: 50; }

.window-head.warning {
  background: #FFBB0D; }

.modal-content .modal-header {
  height: auto;
  line-height: 1; }

.window .window-status ~ .window-head {
  background-color: transparent; }

.window-head .window-t,
.modal-header .modal-title {
  color: #fff;
  font-size: 16px;
  line-height: 50px;
  padding: 0 28px; }

.modal-header .modal-title {
  font-size: 18px;
  font-weight: 500;
  padding: 0 17px; }

.window-head .__logo {
  padding-left: 18px; }
  .window-head .__logo ~ .window-t {
    padding: 0 20px 0 10px; }

.window .window-cnt {
  padding: 0 28px; }

.modal-content .modal-body,
.modal-content .modal-footer {
  font-size: 14px;
  padding: 20px; }

.modal-content .modal-body .warning {
  background: transparent;
  float: left;
  margin: 5px 10px 0 6px;
  width: 10%; }

.modal-content .modal-body .form-input {
  margin: 15px 0 0; }

.modal-content .modal-footer {
  text-align: right; }

.window-cnt .form-label, .window-cnt .form-label-login, .window-cnt .themeSettingsBlade .uploader__form-label, .themeSettingsBlade .window-cnt .uploader__form-label, .window-cnt .themeSettingsBlade .uploader-preview__sub-title, .themeSettingsBlade .window-cnt .uploader-preview__sub-title {
  margin-left: 0; }

.password-dialog-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%; }

.window-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; }

.login-screen-logo {
  height: 0; }
  .login-screen-logo__img {
    height: auto;
    transform: translateY(-100%);
    position: relative;
    bottom: 20px; }

.modal-dialog {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center; }

.modal-window {
  font-family: "Roboto"; }
  .modal-window__header {
    user-select: none;
    height: 42px;
    padding-left: 16px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: baseline; }
    .modal-window__header--confirm {
      background-color: #465769; }
    .modal-window__header--warning {
      background-color: #FFBB0D; }
    .modal-window__header--success {
      background-color: #87B563; }
    .modal-window__header--error {
      background-color: #FF4A4A; }
  .modal-window__title {
    font-size: 16px; }
  .modal-window__header-button {
    background-color: transparent;
    border: none;
    width: 42px;
    height: 42px;
    cursor: pointer; }
    .modal-window__header-button:hover {
      background-color: #f15100; }
    .modal-window__header-button--no-bg:hover {
      background: none; }
  .modal-window__body {
    display: flex;
    justify-content: start;
    align-items: flex-start;
    margin: 30px 16px;
    font-size: 13px;
    line-height: 21px; }
  .modal-window__icon-container {
    user-select: none;
    margin-right: 10px;
    min-width: 30px;
    min-height: 30px; }
    .modal-window__icon-container ~ .modal-window__dialog-message {
      padding-top: 4px; }
  .modal-window__dialog-message {
    flex-grow: 1;
    max-height: 300px;
    overflow: scroll; }
    .modal-window__dialog-message::-webkit-scrollbar {
      background-color: transparent; }
    .modal-window__dialog-message::-webkit-scrollbar-thumb {
      background-color: transparent; }
    .modal-window__dialog-message:hover::-webkit-scrollbar {
      background-color: rgba(0, 0, 0, 0); }
    .modal-window__dialog-message:hover::-webkit-scrollbar-thumb {
      background-color: #A6A6A6; }
  .modal-window__footer {
    display: flex;
    justify-content: end;
    align-items: center;
    padding-right: 16px;
    padding-bottom: 16px; }
  .modal-window__footer-button {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 90px;
    min-height: 28px;
    margin-left: 12px;
    padding: 0 10px;
    border-radius: 2px;
    font-size: 12px;
    user-select: none;
    cursor: pointer; }
    .modal-window__footer-button--primary {
      background-color: #43b0e6;
      color: #fff;
      border: none; }
      .modal-window__footer-button--primary:hover {
        background-color: #319ED4; }
    .modal-window__footer-button--primary-outline {
      background-color: #fff;
      color: #43b0e6;
      border: 1px solid #43b0e6; }
      .modal-window__footer-button--primary-outline:hover {
        color: #319ED4;
        background-color: #F2F8FD; }

/* General classes for text */
.text-error {
  color: #a94442; }

.text-success {
  color: #3c763d; }

.text-warning {
  color: #8a6d3b; }

.text-info {
  color: #31708f; }

.text-notify {
  color: #999; }

form label.required:after {
  color: #F14E4E;
  content: " *"; }

form label.label-error {
  color: #FF4A4A; }

/* Lists */
ul,
ol {
  list-style: none; }

.list.__inline, .themeSettingsBlade .__inline.uploader__form-group,
.menu.__inline {
  word-spacing: 0px; }

.menu.__inline {
  font-size: 0px; }

ul li,
ol li {
  padding-bottom: 2px;
  padding-left: 15px;
  padding-top: 2px;
  text-indent: -15px; }
  ul li::before,
  ol li::before {
    color: #a6a6a6;
    content: '\2014\A0   '; }

.list .list-item, .themeSettingsBlade .uploader__form-group .list-item,
.menu .menu-item,
.tree .tree-item {
  padding-bottom: 0;
  padding-left: 0;
  padding-top: 0;
  text-indent: 0; }
  .list .list-item::before, .themeSettingsBlade .uploader__form-group .list-item::before,
  .menu .menu-item::before,
  .tree .tree-item::before {
    content: ' '; }

.__inline .list-item,
.__inline .menu-item {
  display: inline-block;
  vertical-align: top;
  word-spacing: 0; }

.__actions .list-item,
.__actions .menu-item {
  display: inline-block;
  padding: 0 2px;
  vertical-align: top;
  word-spacing: 0; }

/* List notice */
.list.__notice .list-item, .themeSettingsBlade .__notice.uploader__form-group .list-item {
  background: inherit;
  box-shadow: inherit;
  height: 28px;
  line-height: 28px;
  position: inherit;
  text-align: left; }
  .list.__notice .list-item:hover, .themeSettingsBlade .__notice.uploader__form-group .list-item:hover {
    box-shadow: none; }

.list.__notice .list-link, .themeSettingsBlade .__notice.uploader__form-group .list-link {
  color: #4c4c4c;
  display: block;
  font-size: 14px;
  padding: 0 10px; }
  .list.__notice .list-link:hover, .themeSettingsBlade .__notice.uploader__form-group .list-link:hover {
    background: #ececec; }

.list.__notice .list-ico, .themeSettingsBlade .__notice.uploader__form-group .list-ico {
  font-size: 18px;
  margin: 0 2px 0 0;
  width: 25px; }

.list.__notice .list-item.__error .list-ico, .themeSettingsBlade .__notice.uploader__form-group .list-item.__error .list-ico {
  color: #FF4A4A; }

.list.__notice .list-item.__warning .list-ico, .themeSettingsBlade .__notice.uploader__form-group .list-item.__warning .list-ico {
  color: #FFBB0D; }

/* List car info */
.list.__car-info, .themeSettingsBlade .__car-info.uploader__form-group {
  display: inline-block; }
  .list.__car-info .list-item, .themeSettingsBlade .__car-info.uploader__form-group .list-item {
    font-size: 14px;
    margin: 15px 0 0;
    padding: 0 0 0 35px;
    position: relative;
    text-align: left; }
  .list.__car-info .tile-ico, .themeSettingsBlade .__car-info.uploader__form-group .tile-ico {
    font-size: 18px;
    left: 0;
    position: absolute;
    top: 5px;
    width: 25px; }
  .list.__car-info .list-name, .themeSettingsBlade .__car-info.uploader__form-group .list-name {
    color: #43b0e6;
    display: block; }

.tile.double .list.__car-info .tile-ico, .tile.double .themeSettingsBlade .__car-info.uploader__form-group .tile-ico, .themeSettingsBlade .tile.double .__car-info.uploader__form-group .tile-ico {
  margin: 0; }

.menu.__theme-links {
  padding: 10px 0;
  word-spacing: -12px; }
  .menu.__theme-links .menu-item {
    text-align: center;
    width: 33.3333%; }
  .menu.__theme-links .menu-link {
    display: block;
    font-size: 13px; }
  .menu.__theme-links .menu-ico {
    display: block;
    font-size: 17px;
    margin: 0 0 5px; }

.menu.__context {
  background: #333;
  display: none;
  position: fixed;
  padding: 10px 0;
  z-index: 100; }
  .menu.__context .menu-item {
    color: #fff;
    cursor: pointer;
    font-family: "Roboto";
    font-size: 13px;
    padding: 5px 20px;
    position: relative;
    text-align: left;
    text-shadow: none;
    white-space: nowrap; }
    .menu.__context .menu-item:hover {
      color: #43b0e6; }
      .menu.__context .menu-item:hover .menu.__sub {
        display: block; }
  .menu.__context .menu-item.__right {
    padding: 5px 40px 5px 20px; }
    .menu.__context .menu-item.__right .menu-ico {
      position: absolute;
      right: 20px;
      width: 6px; }
  .menu.__context .menu-ico {
    font-size: 18px;
    width: 25px; }
  .menu.__context .menu.__sub {
    background: #333;
    display: none;
    left: 100%;
    padding: 10px 0;
    position: absolute;
    top: -10px; }

.menu.__context.open,
.menu.__context.__open {
  display: block; }

/* List info */
.list.__info, .themeSettingsBlade .uploader__form-group {
  margin: 15px 0; }
  .list.__info > .list-item, .themeSettingsBlade .uploader__form-group > .list-item {
    padding: 5px 0; }
  .list.__info .list-t, .themeSettingsBlade .uploader__form-group .list-t {
    color: #4c4c4c;
    display: block;
    font-size: 14px; }
  .list.__info .list-descr, .themeSettingsBlade .uploader__form-group .list-descr, .list.__info .themeSettingsBlade .uploader__hint, .themeSettingsBlade .list.__info .uploader__hint, .themeSettingsBlade .uploader__form-group .uploader__hint {
    color: #999;
    font-size: 12px;
    margin: 5px 0 0;
    word-wrap: break-word;
    word-break: break-word; }
  .list.__info .alert, .themeSettingsBlade .uploader__form-group .alert {
    color: #FF4A4A; }
  .list.__info .list-link, .themeSettingsBlade .uploader__form-group .list-link {
    font-size: 12px; }

/* List tags */
.list.__tags, .themeSettingsBlade .__tags.uploader__form-group {
  margin: 5px 0 0;
  word-spacing: -4px; }
  .list.__tags .list-item, .themeSettingsBlade .__tags.uploader__form-group .list-item {
    background: #43b0e6;
    color: #fff;
    display: inline-block;
    line-height: 1.1;
    margin: 0 5px 0 0;
    padding: 5px 10px;
    word-spacing: 0; }
  .list.__tags .list-ico, .themeSettingsBlade .__tags.uploader__form-group .list-ico {
    font-size: 14px;
    vertical-align: 2px; }
  .list.__tags .list-name, .themeSettingsBlade .__tags.uploader__form-group .list-name {
    display: inline-block;
    font-size: 12px;
    vertical-align: 3px; }

/* List number */
.list.__number, .themeSettingsBlade .__number.uploader__form-group {
  counter-reset: num; }
  .list.__number .list-item, .themeSettingsBlade .__number.uploader__form-group .list-item {
    padding: 0 0 0 20px;
    position: relative; }
    .list.__number .list-item::before, .themeSettingsBlade .__number.uploader__form-group .list-item::before {
      color: #a6a6a6;
      content: counter(num) ". ";
      counter-increment: num;
      left: 0;
      position: absolute;
      top: 2px; }

/* Headings */
h1 {
  font-size: 53px; }

h2 {
  font-size: 44px; }

h3 {
  font-size: 36px; }

h1,
h2,
h3 {
  color: #161d25;
  font-weight: 300;
  line-height: 1; }

.t {
  font-size: 32px; }

.sub-t {
  font-size: 24px;
  margin: 20px 0 10px; }

.t,
.sub-t {
  font-weight: 300;
  line-height: 1; }

.sub-t.__border {
  border-bottom: 1px solid #eaedf3;
  margin: 20px 0 0;
  padding: 0 0 10px; }

.t + .t,
.sub-t + .sub-t {
  margin: 20px 0 10px; }

.t.__divider {
  background: #fbfdfe;
  border-color: #eaedf3;
  border-style: solid;
  border-width: 1px 0;
  margin: 0 -20px 10px;
  padding: 10px 20px;
  position: relative; }
  .t.__divider .t-ico {
    position: absolute;
    width: 32px;
    background-size: 32px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%); }

.t.__divider + .t.__divider {
  margin-top: 20px; }

.text {
  font-size: 14px;
  margin: 5px 0; }

.text.__debug {
  color: #a6a6a6;
  font-size: 11px;
  word-wrap: break-word; }

.text.__note {
  border: 1px solid #eee;
  margin: 10px 0;
  padding: 10px; }
  .text.__note span:first-child {
    color: #FF4A4A; }

.text.__editable {
  background: #fbfdfe;
  border: 1px dashed #eaedf3;
  color: #43b0e6;
  cursor: text;
  padding: 5px 10px; }

.text.__editable:hover,
.text.__editable.__selected {
  background-color: #ecf7fc;
  border-color: #a1c0d4; }

.sub-text {
  font-size: 14px; }

.text-mini {
  font-size: 11px; }

.__right {
  text-align: right; }

/* Notifies */
.note,
.note.error,
.note.success,
.note.warning,
.note.info {
  border-style: solid;
  border-width: 1px;
  font-size: 14px;
  margin: 20px 0;
  padding: 10px; }

.note {
  background: #f9f9f9;
  border-color: #eee;
  color: #999; }

.error {
  background: #f2dede;
  border-color: #ebccd1;
  color: #a94442; }

.success {
  background: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d; }

.warning {
  background: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b; }

.info {
  background: #d9edf7;
  border-color: #bce8f1;
  color: #31708f; }

/* Tables */
.table-wrapper {
  margin: 0 -20px 0; }

.form .table-wrapper, .themeSettingsBlade .uploader__form .table-wrapper {
  margin: 0 -36px 15px -20px; }

.table {
  border-collapse: collapse;
  border-spacing: 0;
  padding: 0;
  width: 100%; }
  .table.__fixed {
    table-layout: fixed; }
  .table .table-head {
    border-bottom: 1px solid #eaedf3;
    font-size: 14px;
    padding: 5px 20px; }
  .table .table-col {
    border-color: #eaedf3;
    border-style: solid;
    border-width: 1px 0;
    font-size: 14px;
    padding: 10px;
    text-align: left;
    height: 40px; }
  .table .table-col:first-child {
    text-align: center;
    padding-top: 10px;
    padding-right: 0px;
    width: 5%;
    padding-left: 20px; }
  .table .table-col:last-child {
    padding-right: 20px; }
  .table.__data .table-col {
    vertical-align: top; }
  .table th.table-col {
    background: rgba(0, 0, 0, 0.025);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3; }
  .table .table-item {
    cursor: pointer; }
    .table .table-item:hover .table-ico {
      color: #161d25;
      transition: color .25s ease-in-out; }
  .table .table-ico .sort {
    font-size: 16px;
    margin: 5px 0 0 10px; }
  .table .table-ico.sort.fa-sort-down {
    margin: -8px 0 0 10px; }

.table.__indexed th:nth-last-child(2) ~ th {
  width: 100%; }

.table.__indexed th:nth-last-child(3) ~ th {
  width: 50%; }

.table.__indexed th:nth-last-child(4) ~ th {
  width: 33.33333%; }

.table.__indexed th:nth-last-child(5) ~ th {
  width: 25%; }

.table.__indexed th:nth-last-child(6) ~ th {
  width: 20%; }

.table-info {
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.table-t,
.table-descr {
  display: block;
  font-size: 12px; }

.table-t {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle; }
  .table-t .table-descr {
    display: inline; }

.table-descr {
  color: #999; }

.table-progress {
  margin: 10px 0 0;
  position: relative; }

.table-status {
  background: #a6a6a6;
  color: #fff;
  display: block;
  font-size: 12px;
  height: 20px;
  line-height: 18px;
  padding: 0 5px;
  text-align: center;
  text-shadow: none; }
  .table-status.__active {
    background: #43b0e6; }

.table-date {
  color: #999;
  font-size: 12px; }

.table-img {
  border: none;
  height: auto;
  max-width: 40px;
  vertical-align: middle; }

.table-ico {
  color: #a6a6a6;
  font-size: 28px;
  margin: 0 10px 0 6px;
  vertical-align: middle; }

.table-item.__error .table-ico {
  color: #FF4A4A; }

.table-item.__warning .table-ico {
  color: #FFBB0D; }

.table-item.__info .table-ico, .themeSettingsBlade .table-item.uploader__form-group .table-ico {
  color: #43b0e6; }

/* Product */
.product-img {
  height: 40px;
  line-height: 40px;
  text-align: center;
  width: 40px; }
  .product-img .image {
    background-blend-mode: darken;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    position: relative;
    width: 100%; }
  .product-img img.image {
    height: auto; }
  .product-img .table-badge {
    position: absolute;
    left: 1px;
    top: 2px;
    width: 16px; }

.table-item:hover .product-img .image {
  background-color: #ecf7fc; }

.table-item.__selected .product-img .image {
  background-color: #d9effa; }

.product .table-ico {
  color: #a6a6a6;
  font-size: 28px;
  margin: 0 10px;
  vertical-align: middle; }

/* UI Grid */
.ui-grid,
.ui-grid-header {
  border-color: #eaedf3; }

.ui-grid-render-container-body > .ui-grid-viewport {
  overflow: hidden !important; }

.ui-grid-contents-wrapper:hover > .ui-grid-render-container-body > .ui-grid-viewport {
  overflow: auto !important; }

.ui-grid-top-panel {
  background: rgba(0, 0, 0, 0.024); }

.ui-grid-header-cell {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  vertical-align: middle; }

.ui-grid-cell {
  border-style: solid;
  border-width: 0 0 1px;
  font-size: 14px;
  cursor: pointer; }
  .ui-grid-cell .table-descr {
    color: #999;
    font-size: 12px; }

.ui-grid-pinned-container.ui-grid-pinned-container-left .ui-grid-cell:last-child {
  border-color: #eaedf3;
  border-top: none; }

.ui-grid-row .ui-grid-cell.ui-grid-row-header-cell {
  border-color: #eaedf3; }

.ui-grid-row.ui-grid-cell,
.ui-grid-row:nth-child(2n) .ui-grid-cell {
  transition: background-color .35s ease-in-out; }

.ui-grid-row:nth-child(2n) .ui-grid-cell {
  background: #F9F9F9; }

.ui-grid-row:nth-child(2n+1) .ui-grid-cell.__selected {
  background: #d9effa !important; }

.ui-grid-row.ui-grid-row-selected > [ui-grid-row] > .ui-grid-cell {
  background: none; }

.ui-grid-row:hover .ui-grid-cell,
.ui-grid-row:nth-child(2n):hover .ui-grid-cell,
.ui-grid-row:nth-child(2n):hover .ui-grid-cell,
.ui-grid-row .ui-grid-cell.__hovered,
.ui-grid-row:nth-child(2n):hover .image,
.ui-grid-row:nth-child(2n) .ui-grid-cell.__hovered {
  background-color: #ecf7fc !important; }

.ui-grid-row:nth-child(2n) .ui-grid-cell.__selected .image,
.ui-grid-row:nth-child(2n+1) .ui-grid-cell.__selected .image {
  background-color: #d9effa !important; }

.ui-grid-pinned-container.ui-grid-pinned-container-left .ui-grid-row:hover .ui-grid-cell,
.ui-grid-pinned-container.ui-grid-pinned-container-left .ui-grid-row:nth-child(2n):hover .ui-grid-cell {
  background: none !important; }

.ui-grid-row.ui-grid-row-selected > [ui-grid-row] > .ui-grid-cell.__selected {
  background: #d9effa !important; }

.ui-grid-header-cell,
.ui-grid-cell,
.ui-grid-header-cell:last-child .ui-grid-column-resizer.right {
  border-color: #eaedf3; }

.ui-grid-canvas {
  padding: 0; }

.ui-grid-row,
.ui-grid-cell,
.ui-grid-cell .ui-grid-vertical-bar {
  overflow: visible;
  position: static;
  width: 100%; }

.ui-grid-scrollbar-placeholder {
  height: 0 !important; }

.ui-grid-row-header-cell > :first-child {
  height: 100%; }

.ui-grid-header-cell {
  padding-top: 6px;
  font-weight: bold; }
  .ui-grid-header-cell .ui-grid-selection-row-header-buttons {
    margin-right: 2px; }
  .ui-grid-header-cell .ui-grid-cell-contents:after {
    display: inline; }

.ui-grid-row-header-cell .ui-grid-cell-contents,
.ui-grid-pinned-container-left .ui-grid-cell-contents {
  text-align: center; }

.table-wrapper.nowrap .ui-grid-cell-contents {
  white-space: initial; }

.table-wrapper.nowrap .ui-grid-cell {
  height: auto;
  display: table-cell;
  float: none; }

.table-wrapper.nowrap .ui-grid-row {
  height: auto; }

.ui-grid-cell-contents {
  display: inline-block;
  font-size: 14px;
  height: 100%;
  padding: 4px 0 0 10px;
  text-shadow: 1px 1px #fff;
  vertical-align: middle;
  width: 100%; }

.ui-grid-cell-contents.ui-grid-cell-contents-hidden {
  display: none; }

.ui-grid-cell .form-editor {
  height: 31px;
  padding: 0 10px;
  margin: 14px 0;
  position: relative; }
  .ui-grid-cell .form-editor .form-input {
    border-color: #eaedf3;
    box-sizing: border-box;
    padding: 5px 10px; }

.ui-grid-cell-focus {
  background: #d9effa; }

.ui-grid-focuser:focus {
  box-shadow: none; }

.ui-grid-cell.__filters .ui-grid-cell-contents {
  background: #f6f6f6; }

.ui-grid-cell-contents .inner-t {
  font-size: 16px;
  font-weight: 400; }

.ui-grid-cell-contents .count {
  color: #43b0e6;
  font-weight: 600; }

.ui-grid-cell-contents .inner-contents {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%; }

.ui-grid-cell-contents::after {
  content: ' ';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.ui-grid-icon-cancel::before {
  visibility: hidden; }

.ui-grid-row:last-child .ui-grid-cell {
  border-bottom-color: #eaedf3;
  border-bottom-width: 1px !important; }

.ui-grid-menu-button .ui-grid-menu .ui-grid-menu-mid {
  overflow-x: hidden !important;
  overflow: auto; }

.ui-grid-menu .ui-grid-menu-inner {
  background: #fff;
  border: none;
  box-shadow: none; }
  .ui-grid-menu .ui-grid-menu-inner ul li button {
    cursor: pointer;
    font-family: inherit; }
    .ui-grid-menu .ui-grid-menu-inner ul li button:hover, .ui-grid-menu .ui-grid-menu-inner ul li button:focus {
      background: #ecf7fc;
      box-shadow: none; }

.ui-grid-selection-row-header-buttons {
  color: #a1c0d4;
  height: 100%;
  opacity: 1;
  margin-left: -3px; }

.ui-grid-selection-row-header-buttons::after {
  content: ' ';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.ui-grid-selection-row-header-buttons::before {
  content: '\F096';
  font-size: 17px;
  font-family: 'FontAwesome';
  margin: 0;
  opacity: 1; }

.ui-grid-selection-row-header-buttons.ui-grid-row-selected::before,
.ui-grid-selection-row-header-buttons.ui-grid-all-selected::before {
  content: '\F046';
  margin: 0 0 0 1px; }

.ui-grid-row:nth-child(2n) .ui-grid-cell.__selected {
  background: #d9effa !important; }

.ui-grid-pinned-container.ui-grid-pinned-container-left .ui-grid-cell.__selected,
.ui-grid-pinned-container.ui-grid-pinned-container-left .ui-grid-row:nth-child(2n+1) .ui-grid-cell.__selected {
  background: none !important; }

.ui-grid-filter-container {
  padding: 0 10px 10px; }

input.ui-grid-filter-input[type="text"] {
  padding: 5px;
  box-sizing: border-box; }

.ui-grid-filter-container .ui-grid-filter-button [class^="ui-grid-icon"] {
  line-height: 2;
  margin: 0;
  top: 0; }

.ui-grid[dir=rtl] .ui-grid-filter-container .ui-grid-filter-button {
  right: inherit; }
  .ui-grid[dir=rtl] .ui-grid-filter-container .ui-grid-filter-button [class^="ui-grid-icon"] {
    right: inherit; }

.ui-grid-column-menu-button {
  top: 50%;
  transform: translateY(-50%); }
  .ui-grid-column-menu-button .ui-grid-icon-angle-down {
    vertical-align: top; }

.ui-grid-row-header-cell {
  background: none !important; }

.ui-grid-pinned-container.ui-grid-pinned-container-left .ui-grid-header-cell:last-child {
  border-color: #eaedf3; }

.ui-grid-header-cell:not(:last-child) .ui-grid-vertical-bar {
  background: none; }

.ui-grid-column-menu-button {
  display: none; }

.ui-grid-cell .product-img {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  vertical-align: middle; }
  .ui-grid-cell .product-img .pr-ico {
    color: #a6a6a6;
    display: inline-block;
    font-size: 28px;
    margin: -4px 0 0;
    text-shadow: 1px 1px #fff;
    vertical-align: middle; }

.ui-grid-row:hover .ui-grid-cell .pr-ico,
.ui-grid-row-selected .ui-grid-cell .pr-ico {
  color: #a1c0d4; }

.ui-grid-row > :first-child {
  height: 100%;
  overflow: visible;
  position: relative; }

.ui-grid-render-container-left .ui-grid-header-cell,
.ui-grid-render-container-body .ui-grid-header-cell {
  height: 40px; }

.ui-grid-menu-button {
  right: 15px;
  top: 4px; }

.blade-inner:hover .ui-grid.__scrolled .ui-grid-menu-button {
  right: 20px; }

.ui-grid-menu-button {
  box-sizing: border-box;
  height: 26px;
  margin-top: 3px;
  padding: 1px 0 0;
  text-align: center;
  width: 26px;
  border-bottom: 1px solid #d4d4d4;
  border-top: 1px solid #d4d4d4;
  border-right: 1px solid #d4d4d4; }

.ui-grid-sort-priority-number {
  color: #43b0e6; }

.ui-grid-menu-button .ui-grid-icon-container {
  margin-top: 1px;
  margin-left: unset; }

.ui-grid-menu-button .ui-grid-icon-menu {
  color: #43b0e6; }
  .ui-grid-menu-button .ui-grid-icon-menu::before {
    width: 9px; }

.ui-grid-menu-button .ui-grid-menu {
  margin: 6px -1px 0 0;
  min-width: 160px;
  padding: 0; }

.ui-grid-menu .ui-grid-menu-inner ul li {
  text-indent: 0; }
  .ui-grid-menu .ui-grid-menu-inner ul li::before {
    display: none; }

.ui-grid-actions {
  height: 100%;
  position: relative;
  text-align: center;
  z-index: 50;
  padding-top: 2px;
  padding-left: 3px;
  overflow: hidden; }
  .ui-grid-actions::after {
    content: ' ';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }
  .ui-grid-actions .fa {
    color: #43b0e6;
    font-size: 21px;
    vertical-align: middle;
    transition: font .3s ease; }
    .ui-grid-actions .fa.context-menu::before {
      content: "\F142"; }

.ui-grid-actions ~ .menu {
  background: #eaedf3;
  box-sizing: border-box;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  white-space: nowrap;
  z-index: 10;
  transition: width .35s ease .5s; }
  .ui-grid-actions ~ .menu::after {
    content: ' ';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }
  .ui-grid-actions ~ .menu .menu-item {
    display: inline-block;
    vertical-align: middle; }
  .ui-grid-actions ~ .menu .menu-link {
    display: block;
    padding: 0 10px; }
  .ui-grid-actions ~ .menu .menu-ico {
    width: 18px; }

.ui-grid-actions.__opened ~ .menu {
  width: calc(100% - 80px); }

.ui-grid-draggable-row-target {
  opacity: 0.5 !important; }

.ui-grid-draggable-row {
  height: 60px; }

.ui-grid-draggable-row-over {
  position: relative; }
  .ui-grid-draggable-row-over:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    border-bottom: 1px dashed #808080; }

.ui-grid-draggable-row-over--above:before {
  top: 0; }

.ui-grid-draggable-row-over--below:before {
  bottom: 0; }

/* Forms */
input::-ms-clear {
  display: none; }

.__error {
  color: #FF4A4A; }

.form-input input.ng-invalid,
.form-input input.ng-invalid.form-input,
.form-input textarea.ng-invalid,
.ui-select-container.ng-invalid .select2-choice,
.ui-select-container.ng-invalid .select2-choices,
.form-input input.ng-invalid:focus,
.form-input textarea.ng-invalid:focus {
  background: #fef8f7;
  border-color: #fce7e6;
  color: #FF4A4A; }

fieldset {
  border: none;
  margin-bottom: 10px; }
  fieldset legend {
    border-bottom: 1px solid #eaedf3;
    display: block;
    font-size: 24px;
    font-weight: 300;
    padding: 0 0 5px;
    width: 100%; }

fieldset + fieldset {
  margin: 15px 0 0; }

.__gray fieldset legend,
.__gray .form-label,
.__gray .form-label-login,
.__gray .themeSettingsBlade .uploader__form-label,
.themeSettingsBlade .__gray .uploader__form-label,
.__gray .themeSettingsBlade .uploader-preview__sub-title,
.themeSettingsBlade .__gray .uploader-preview__sub-title {
  color: #161d25; }

.form, .themeSettingsBlade .uploader__form {
  padding: 15px 0; }
  .form .chars-counter, .themeSettingsBlade .uploader__form .chars-counter {
    float: right;
    margin-bottom: 5px;
    font-size: 14px; }
  .form > .form-group:first-child, .themeSettingsBlade .uploader__form > .form-group:first-child, .themeSettingsBlade .form > .uploader__form-group:first-child, .themeSettingsBlade .uploader__form > .uploader__form-group:first-child {
    margin-top: 0; }
    .form > .form-group:first-child > .column > .form-group:first-child, .themeSettingsBlade .uploader__form > .form-group:first-child > .column > .form-group:first-child, .themeSettingsBlade .form > .uploader__form-group:first-child > .column > .form-group:first-child, .themeSettingsBlade .uploader__form > .uploader__form-group:first-child > .column > .form-group:first-child, .themeSettingsBlade .form > .form-group:first-child > .column > .uploader__form-group:first-child, .themeSettingsBlade .uploader__form > .form-group:first-child > .column > .uploader__form-group:first-child, .themeSettingsBlade .form > .uploader__form-group:first-child > .column > .uploader__form-group:first-child, .themeSettingsBlade .uploader__form > .uploader__form-group:first-child > .column > .uploader__form-group:first-child {
      margin-top: 0; }

.form-group.__head, .themeSettingsBlade .__head.uploader__form-group {
  border-bottom: 1px solid #eaedf3; }

.__inline .form-group, .__inline .themeSettingsBlade .uploader__form-group, .themeSettingsBlade .__inline .uploader__form-group {
  display: inline-block; }

.form-group, .themeSettingsBlade .uploader__form-group {
  margin: 15px 0 0; }

.__inline .form-group + .form-group, .__inline .themeSettingsBlade .uploader__form-group + .form-group, .themeSettingsBlade .__inline .uploader__form-group + .form-group, .__inline .themeSettingsBlade .form-group + .uploader__form-group, .themeSettingsBlade .__inline .form-group + .uploader__form-group, .__inline .themeSettingsBlade .uploader__form-group + .uploader__form-group, .themeSettingsBlade .__inline .uploader__form-group + .uploader__form-group {
  margin-left: 15px; }

.form-group .form-hint, .themeSettingsBlade .uploader__form-group .form-hint {
  color: #999;
  font-size: 12px; }

.form-error {
  color: #FF4A4A;
  font-size: 12px;
  line-height: 1.4;
  padding: 5px 0; }
  .form-error * {
    display: block; }

.form .columns, .themeSettingsBlade .uploader__form .columns {
  padding: 0; }

.form-group .form-input ~ .form-error, .themeSettingsBlade .uploader__form-group .form-input ~ .form-error,
.form-group .form-input ~ .form-hint,
.themeSettingsBlade .uploader__form-group .form-input ~ .form-hint {
  margin: 5px 0 0; }

.form-input {
  position: relative; }

.form .form-input + .form-input, .themeSettingsBlade .uploader__form .form-input + .form-input {
  margin: 15px 0 0; }

.form .form-count, .themeSettingsBlade .uploader__form .form-count {
  font-size: 14px; }

.count {
  color: #43b0e6;
  font-weight: 600; }

.form-input.__number {
  height: 34px;
  position: relative; }

.form-group .form-t, .themeSettingsBlade .uploader__form-group .form-t {
  background: #fbfdfe;
  border: 1px solid #eaedf3;
  margin: 0 0 5px;
  padding: 5px; }
  .form-group .form-t .__link, .themeSettingsBlade .uploader__form-group .form-t .__link {
    float: right;
    margin: 4px 0 0; }

.form-group .form-line, .themeSettingsBlade .uploader__form-group .form-line {
  display: flex;
  align-items: center; }

.form-group .form-line .form-line-item-250, .themeSettingsBlade .uploader__form-group .form-line .form-line-item-250 {
  display: inline-block;
  width: 250px;
  padding-right: 20px; }

.form-input input,
.form-input textarea,
.form-input select {
  box-sizing: border-box;
  color: #4c4c4c;
  font-family: inherit;
  font-size: 13px;
  vertical-align: top;
  width: 100%; }

.form-input.__mini {
  width: 68px; }

.form-input.__inline {
  display: inline-block;
  vertical-align: middle; }

.table-col .form-input.__mini {
  margin: 5px 0 0; }

.table-col .form-input .form-text {
  margin: 5px 0 0; }

.table-col .table-space {
  height: 17px; }

.form-input input,
.form-input select,
.form-input .form-text {
  height: 34px; }

.form-input input,
.form-input textarea,
.form-input select {
  border: 1px solid #eaedf3;
  padding: 5px 10px; }

.form-input textarea {
  height: 110px;
  max-width: 100%;
  min-height: 110px;
  min-width: 100%;
  overflow: auto;
  padding-top: 8px; }

.form-input textarea.__small {
  height: 55px;
  min-height: 55px; }

.form-input textarea.__large {
  height: 220px;
  min-height: 220px; }

.form-input textarea.__xlarge {
  height: 330px;
  min-height: 330px; }

.form-input.__langs select {
  padding-left: 36px; }

.form-input.__langs input {
  padding-right: 60px; }

.form-input.__langs label.lang-code {
  position: absolute;
  right: 0;
  z-index: 100;
  line-height: 34px;
  padding-right: 15px; }

.form-input.__currency input,
.form-input.__currency textarea,
.form-input.__currency select {
  padding-right: 40px; }

.form-input.__number input {
  padding-right: 20px; }

.form-input.__calendar input,
.form-input.__file input,
.form-input.__info input,
.themeSettingsBlade .form-input.uploader__form-group input,
.form-input.__other input {
  padding-right: 45px; }

.form-input select {
  position: relative; }

.form-input input:focus,
.form-input textarea:focus,
.form-input select:focus {
  border-color: #a1c0d4; }

.form-input input[type=file] {
  height: 0;
  position: absolute;
  visibility: hidden;
  width: 0;
  z-index: 0;
  filter: alpha(opacity=0); }

.form-input.__number .down,
.form-input.__number .up {
  background: #fbfdfe;
  border: 1px solid #eaedf3;
  box-sizing: border-box;
  cursor: pointer;
  height: 14px;
  right: 2px;
  position: absolute;
  width: 16px; }

.form-input.__number .up {
  top: 2px; }
  .form-input.__number .up::after {
    border-color: transparent transparent #43b0e6;
    bottom: 4px; }

.form-input.__number .down {
  bottom: 2px; }
  .form-input.__number .down::after {
    border-color: #43b0e6 transparent transparent;
    top: 4px; }

.form-input.__number .down::after,
.form-input.__number .up::after {
  border-style: solid;
  border-width: 4px;
  content: '';
  left: 50%;
  position: absolute;
  transform: translateX(-50%); }

.form-input.__langs .flag {
  left: 11px;
  position: absolute;
  top: 11px;
  z-index: 50; }

.form-input.__langs .langCode {
  left: 8px;
  position: absolute;
  top: 6px;
  z-index: 50; }

.form-input.__currency {
  position: relative; }
  .form-input.__currency .currency {
    color: #43b0e6;
    font-size: 12px;
    right: 10px;
    position: absolute;
    top: 10px;
    z-index: 50; }

.form-label, .form-label-login, .themeSettingsBlade .uploader__form-label, .themeSettingsBlade .uploader-preview__sub-title {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 5px; }

.form-edit {
  display: inline-block;
  margin: 0 0 0 5px; }
  .form-edit .form-ico {
    vertical-align: 2px; }

.form-label + .form-nav, .form-label-login + .form-nav, .themeSettingsBlade .uploader__form-label + .form-nav, .themeSettingsBlade .uploader-preview__sub-title + .form-nav {
  float: right; }
  .form-label + .form-nav *, .form-label-login + .form-nav *, .themeSettingsBlade .uploader__form-label + .form-nav *, .themeSettingsBlade .uploader-preview__sub-title + .form-nav * {
    display: inline-block;
    font-size: 14px;
    margin: 0 0 0 5px; }

.form-input .btn {
  background: none;
  bottom: 0;
  color: #4c4c4c;
  height: 34px;
  line-height: 1;
  min-width: 45px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0; }
  .form-input .btn:hover {
    background: none; }

.form-input .form-text {
  font-size: 14px;
  line-height: 34px; }

.form-input .btn-ico {
  color: #43b0e6;
  font-size: 24px;
  height: 26px;
  padding: 0 10px; }

.form-input.__info .btn-ico, .themeSettingsBlade .form-input.uploader__form-group .btn-ico {
  color: #fff;
  font-size: 16px;
  height: auto;
  text-shadow: none;
  width: 20px; }
  .form-input.__info .btn-ico::before, .themeSettingsBlade .form-input.uploader__form-group .btn-ico::before {
    background: #43b0e6;
    border-radius: 50%;
    display: block;
    height: 20px;
    line-height: 20px; }

.form-input .btn.__other .btn-ico {
  font-size: 12px;
  line-height: 24px; }

.form-input .btn.__ico .btn-ico {
  font-size: 1.2rem;
  line-height: 2rem; }

.form-control .form-label, .form-control .form-label-login, .form-control .themeSettingsBlade .uploader__form-label, .themeSettingsBlade .form-control .uploader__form-label, .form-control .themeSettingsBlade .uploader-preview__sub-title, .themeSettingsBlade .form-control .uploader-preview__sub-title {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  position: relative; }

.form-label-login {
  font-size: 12px !important;
  font-weight: 100 !important;
  line-height: 0.8 !important; }

.form-control .form-label + .form-label, .form-control .form-label-login + .form-label, .form-control .themeSettingsBlade .uploader__form-label + .form-label, .themeSettingsBlade .form-control .uploader__form-label + .form-label, .form-control .themeSettingsBlade .uploader-preview__sub-title + .form-label, .themeSettingsBlade .form-control .uploader-preview__sub-title + .form-label, .form-control .form-label + .form-label-login, .form-control .form-label-login + .form-label-login, .form-control .themeSettingsBlade .uploader__form-label + .form-label-login, .themeSettingsBlade .form-control .uploader__form-label + .form-label-login, .form-control .themeSettingsBlade .uploader-preview__sub-title + .form-label-login, .themeSettingsBlade .form-control .uploader-preview__sub-title + .form-label-login, .form-control .themeSettingsBlade .form-label + .uploader__form-label, .themeSettingsBlade .form-control .form-label + .uploader__form-label, .form-control .themeSettingsBlade .form-label-login + .uploader__form-label, .themeSettingsBlade .form-control .form-label-login + .uploader__form-label, .form-control .themeSettingsBlade .uploader__form-label + .uploader__form-label, .themeSettingsBlade .form-control .uploader__form-label + .uploader__form-label, .form-control .themeSettingsBlade .uploader-preview__sub-title + .uploader__form-label, .themeSettingsBlade .form-control .uploader-preview__sub-title + .uploader__form-label, .form-control .themeSettingsBlade .form-label + .uploader-preview__sub-title, .themeSettingsBlade .form-control .form-label + .uploader-preview__sub-title, .form-control .themeSettingsBlade .form-label-login + .uploader-preview__sub-title, .themeSettingsBlade .form-control .form-label-login + .uploader-preview__sub-title, .form-control .themeSettingsBlade .uploader__form-label + .uploader-preview__sub-title, .themeSettingsBlade .form-control .uploader__form-label + .uploader-preview__sub-title, .form-control .themeSettingsBlade .uploader-preview__sub-title + .uploader-preview__sub-title, .themeSettingsBlade .form-control .uploader-preview__sub-title + .uploader-preview__sub-title {
  margin-left: 10px; }

a.btn-ico {
  float: right;
  padding: 0 0 0 18px;
  margin: 4px 0 0 10px; }
  a.btn-ico.check {
    background: url("/images/layout/check_circle.svg") no-repeat left center; }
  a.btn-ico.remove {
    background: url("/images/layout/remove_circle.svg") no-repeat left center; }

label.form-control {
  display: inline-block;
  height: 12px;
  position: relative;
  top: -2px;
  vertical-align: middle;
  width: 12px; }

.form-control {
  min-height: 12px;
  position: relative; }

.form-control.__inline {
  display: inline-block;
  margin: 0 20px 0 0;
  vertical-align: middle; }

.form-control.__checkbox,
.form-control.__radio {
  height: 13px; }

.blade-static .form-control.__checkbox,
.blade-static .form-control.__radio {
  margin: 0 0 10px; }

.form-control.__checkbox + .form-control,
.form-control.__radio + .form-control {
  margin-top: 5px; }

.form-control.__checkbox .form-label, .form-control.__checkbox .form-label-login, .form-control.__checkbox .themeSettingsBlade .uploader__form-label, .themeSettingsBlade .form-control.__checkbox .uploader__form-label, .form-control.__checkbox .themeSettingsBlade .uploader-preview__sub-title, .themeSettingsBlade .form-control.__checkbox .uploader-preview__sub-title,
.form-control.__radio .form-label,
.form-control.__radio .form-label-login,
.form-control.__radio .themeSettingsBlade .uploader__form-label,
.themeSettingsBlade .form-control.__radio .uploader__form-label,
.form-control.__radio .themeSettingsBlade .uploader-preview__sub-title,
.themeSettingsBlade .form-control.__radio .uploader-preview__sub-title {
  line-height: 1.1;
  margin-bottom: 0;
  vertical-align: top; }

.form-control.__checkbox .form-label, .form-control.__checkbox .form-label-login, .form-control.__checkbox .themeSettingsBlade .uploader__form-label, .themeSettingsBlade .form-control.__checkbox .uploader__form-label, .form-control.__checkbox .themeSettingsBlade .uploader-preview__sub-title, .themeSettingsBlade .form-control.__checkbox .uploader-preview__sub-title {
  vertical-align: bottom;
  padding-top: 3px; }

.window .__required:after {
  content: " *";
  color: #F14E4E; }

.window .form-group .btn, .window .themeSettingsBlade .uploader__form-group .btn, .themeSettingsBlade .window .uploader__form-group .btn {
  margin-top: -3px;
  padding: 0 42px; }

.form-control input {
  position: absolute;
  visibility: hidden; }

.form-control .check {
  background: #fff;
  border: 1px solid #a1c0d4;
  box-sizing: border-box;
  height: 13px;
  left: 0;
  position: absolute;
  top: 0;
  width: 13px; }

.form-control.__radio .check {
  border-radius: 50%; }

.form-control .form-label:hover .check, .form-control .form-label-login:hover .check, .form-control .themeSettingsBlade .uploader__form-label:hover .check, .themeSettingsBlade .form-control .uploader__form-label:hover .check, .form-control .themeSettingsBlade .uploader-preview__sub-title:hover .check, .themeSettingsBlade .form-control .uploader-preview__sub-title:hover .check,
.form-control :checked ~ .check {
  border-color: #80a0b5; }

.form-control :checked ~ .check:after {
  content: '';
  position: absolute; }

.form-control.__checkbox :checked ~ .check:after {
  bottom: 0;
  color: #43b0e6;
  content: '\F00C';
  font-family: "FontAwesome";
  font-size: 11px;
  font-weight: normal;
  left: 0;
  line-height: 1.3;
  position: absolute;
  top: -1px; }

.form-control.__radio :checked ~ .check:after {
  background: #43b0e6;
  border-radius: 50%;
  height: 7px;
  left: 2px;
  top: 2px;
  width: 7px; }

.form-control .name {
  color: #161d25;
  display: inline-block;
  margin: 0 0 0 18px;
  vertical-align: 2px; }

.comment-text {
  color: #838D9A;
  display: flex;
  font-size: 11px;
  margin-top: 3px; }

img.comment-icon {
  margin-right: 6px; }

/* Switch */
.__switch {
  cursor: pointer;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: top;
  width: 60px; }
  .__switch input {
    display: none; }
  .__switch .switch {
    background: #555;
    border-radius: 3px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    display: block;
    height: 20px;
    width: 60px;
    transition: background .15s ease; }
    .__switch .switch::after {
      background: #fff;
      border-radius: 3px;
      color: #ccc;
      content: '|||';
      font-size: 11px;
      height: 18px;
      left: 0;
      line-height: 16px;
      margin: 1px 0 0 1px;
      position: absolute;
      text-align: center;
      text-indent: -1px;
      width: 25px;
      transition: margin-left .15s ease; }
    .__switch .switch::before {
      color: #fff;
      content: '\F00D';
      font-family: "FontAwesome";
      font-size: 12px;
      font-weight: normal;
      line-height: 20px;
      position: absolute;
      right: 0;
      text-align: center;
      text-transform: uppercase;
      width: 35px; }

.__switch.__two::after, .__switch.__two::before {
  content: '';
  position: absolute;
  top: 6px; }

.__switch.__two::after {
  background: #999;
  height: 10px;
  right: -7px;
  width: 1px; }

.__switch.__two::before {
  border: 1px solid #999;
  border-radius: 50%;
  box-sizing: border-box;
  height: 8px;
  left: -15px;
  width: 8px; }

.__switch :checked ~ .switch {
  background: #43b0e6; }

.__switch :checked ~ .switch::after {
  margin-left: 34px; }

.__switch :checked ~ .switch::before {
  content: '\F00C';
  left: 0;
  right: auto; }

/* Editable */
.editable {
  font-size: 14px; }
  .editable .btn {
    padding: 0 10px; }
  .editable .btn-toolbar {
    background: #43b0e6; }
  .editable .ta-scroll-window.form-control {
    border: 1px solid #eaedf3; }

.ta-root.focussed > .ta-scroll-window.form-control {
  border-color: #a1c0d4;
  box-shadow: none; }

.ta-editor.ta-html,
.ta-scroll-window.form-control {
  border: 1px solid #a1c0d4;
  box-sizing: border-box;
  max-width: 100%;
  min-width: 100%;
  width: 100%; }

/* Buttons */
.btn-default,
.btn {
  background: #43b0e6;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  font-size: 13px;
  height: 30px;
  line-height: 28px;
  padding: 0 20px;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.1);
  vertical-align: top; }
  .btn-default:hover,
  .btn:hover {
    color: #fff;
    opacity: .8;
    filter: alpha(opacity=80); }

button.btn {
  padding: 0 17px; }

.btn.__loading {
  font-size: 0;
  min-width: 132px;
  pointer-events: none;
  position: relative;
  vertical-align: top; }
  .btn.__loading::after {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
    background-image: linear, 45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0);
    background-size: 30px 30px;
    bottom: 0;
    content: '';
    left: 0;
    opacity: .8;
    position: absolute;
    right: 0;
    top: 0;
    filter: alpha(opacity=80);
    animation: linear 2s infinite progress; }

.btn.__cancel {
  background-color: #a6a6a6; }
  .btn.__cancel:hover {
    background-color: #a0a0a0; }

/* Editors */
.md-editor {
  background: #fbfdfe;
  border: 1px solid #eaedf3;
  margin: -1px -20px 0; }
  .md-editor textarea {
    background: none;
    border: none;
    box-sizing: border-box;
    color: #333;
    height: 300px;
    padding: 10px;
    width: 100%; }
  .md-editor .btn-toolbar {
    background: #eaedf3;
    padding: 10px;
    overflow: hidden; }
    .md-editor .btn-toolbar .btn-group {
      float: left;
      margin: 0 5px 0 0; }
      .md-editor .btn-toolbar .btn-group .btn {
        padding: 0 10px; }
      .md-editor .btn-toolbar .btn-group .btn.hidden {
        display: none !important;
        visibility: hidden !important; }
      .md-editor .btn-toolbar .btn-group .btn + .btn {
        border-left: 1px solid rgba(255, 255, 255, 0.35); }
    .md-editor .btn-toolbar .md-controls {
      float: right;
      margin: 3px 10px 0 0; }

.md-editor.md-fullscreen-mode {
  background: #ffffff !important;
  border: 0 none !important;
  box-sizing: border-box;
  height: 100%;
  left: 0;
  margin: 0;
  padding: 60px 30px 15px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999; }

.md-editor.active {
  border-color: #66afe9;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
  outline: 0 none; }

.md-fullscreen-controls {
  display: none; }
  .md-fullscreen-controls .md-header {
    background: none;
    position: fixed;
    text-align: center;
    top: 20px;
    width: 100%; }
  .md-fullscreen-controls .btn-group {
    display: inline-block;
    float: none; }
  .md-fullscreen-controls .md-fullscreen-controls {
    display: block;
    position: absolute;
    right: 20px;
    text-align: right;
    top: 20px;
    z-index: 1002; }
    .md-fullscreen-controls .md-fullscreen-controls a {
      clear: right;
      color: #b3b3b3;
      height: 30px;
      margin: 10px;
      text-align: center;
      width: 30px; }

.md-editor.md-fullscreen-mode .md-input,
.md-editor.md-fullscreen-mode .md-preview {
  padding: 20px 20px 20px 120px !important; }

i.fa-password {
  width: 14px;
  height: 0px;
  line-height: 34px;
  text-align: center;
  margin-right: 10px;
  position: relative;
  z-index: 1;
  float: right;
  color: #319ED4;
  padding-left: 26px; }

/* Tiles */
.tile-group {
  margin: 0 -10px 0 0;
  min-width: 130px;
  overflow: hidden;
  position: relative;
  width: auto; }

.tile-group + .tile-group {
  margin: 20px 0 0; }

.dashboard .tile-group {
  overflow: visible; }

.tile-group .tile-group,
.tile-group .tile-group + .tile-group {
  float: left;
  margin: 0;
  padding: 0; }

.tile-group.one {
  width: 130px; }

.tile-group.two {
  width: 260px; }

.tile-group.three {
  width: 390px; }

.tile-group.four {
  width: 520px; }

.tile-group.five {
  width: 650px; }

.tile-group.six {
  width: 780px; }

.tile-group.seven {
  width: 910px; }

.tile {
  height: 120px;
  width: 120px; }

.tile.double {
  height: 250px;
  width: 250px; }
  .tile.double.tall {
    height: 250px;
    width: 120px; }
  .tile.double.wide {
    height: 120px;
    width: 250px; }

.tile.triple {
  height: 380px;
  width: 380px; }
  .tile.triple.tall {
    height: 380px;
    width: 250px; }
  .tile.triple.wide {
    height: 250px;
    width: 380px; }
  .tile.triple.wide.mini {
    height: 120px;
    width: 380px; }

.tile.quadro {
  height: 510px;
  width: 510px; }
  .tile.quadro.tall {
    height: 510px;
    width: 380px; }
  .tile.quadro.wide {
    height: 380px;
    width: 510px; }
  .tile.quadro.wide.mini {
    height: 120px;
    width: 510px; }

.tile {
  background: #fbfdfe;
  box-sizing: border-box;
  box-shadow: 0 0 0 2px #eaedf3 inset;
  color: #161d25;
  cursor: pointer;
  float: left;
  font-size: 48px;
  margin: 10px 10px 0 0;
  padding: 2px;
  position: relative;
  text-align: center;
  vertical-align: top; }
  .tile::before {
    opacity: 0; }
  .tile .tile-ico {
    margin: 25px 0 0; }
  .tile .btn {
    display: inline-block;
    line-height: 28px;
    vertical-align: top; }
  .tile .tile-descr {
    display: block;
    font-size: 14px;
    margin: 10px 0 5px;
    max-height: 78px;
    overflow: hidden; }
  .tile .tile-count {
    color: #999;
    font-size: 30px;
    line-height: 1;
    margin: 0 0 10px; }
  .tile .tile-t {
    font-size: 24px;
    margin: 10px 0; }
  .tile .tile-img {
    display: inline-block;
    max-height: 100%;
    max-width: 100%;
    vertical-align: middle; }
  .tile .tile-action {
    background: #eaedf3;
    height: 30px;
    line-height: 30px;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    filter: alpha(opacity=0);
    transition: opacity .25s ease-in-out; }
  .tile:hover .tile-action {
    background-color: #a1c0d4;
    opacity: 1;
    filter: alpha(opacity=100); }
    .tile:hover .tile-action * {
      color: #fff;
      font-size: 17px; }
  .tile .tile-action:nth-child(2) {
    left: auto;
    right: 0; }

.tile.__price {
  line-height: 0; }
  .tile.__price * {
    display: block;
    line-height: 1; }
  .tile.__price .tile-count {
    color: #43b0e6;
    font-size: 24px;
    margin: 10px 0 0; }
  .tile.__price .tile-price {
    color: #43b0e6;
    font-size: 30px;
    height: 49px;
    line-height: 40px;
    margin: 20px 0 0; }
  .tile.__price .tile-descr + .tile-price {
    font-size: 14px;
    height: auto;
    line-height: 1; }

.tile:hover,
.tile.__selected {
  box-shadow: 0 0 0 2px #a1c0d4 inset; }

.tile.__info:hover, .themeSettingsBlade .tile.uploader__form-group:hover,
.tile.__selected.__info,
.themeSettingsBlade .tile.__selected.uploader__form-group {
  cursor: default;
  box-shadow: none; }

.__note {
  background-color: #fffff5; }

.tile.__selected::after {
  border-color: #a1c0d4 #a1c0d4 transparent transparent;
  border-style: solid;
  border-width: 15px;
  content: '';
  font-family: "FontAwesome";
  font-size: 16px;
  position: absolute;
  right: 0;
  top: 0; }

.tile.__selected::before {
  color: #fff;
  content: "\F00C";
  font-family: "FontAwesome";
  font-size: 10px;
  line-height: 0;
  position: absolute;
  right: 4px;
  top: 9px;
  z-index: 25; }

.tile.__selected::after, .tile.__selected::before {
  opacity: 1; }

.__images-list .tile {
  line-height: 100px; }

.tile.__brand .tile-descr {
  font-size: 24px;
  margin: 20px 0; }

.tile.__brand .tile-image {
  display: inline-block;
  height: 120px;
  line-height: 96px;
  text-align: center;
  width: 120px; }
  .tile.__brand .tile-image img {
    display: inline-block;
    max-height: 100%;
    max-width: 100%;
    vertical-align: middle; }

.tile .tile-descr.__once {
  font-size: 24px;
  margin: 35px 0; }

.tile .tile-ico + .tile-descr {
  margin: 0 10px; }

/* Half */
.tile.double {
  font-size: 72px; }
  .tile.double .tile-descr.__once {
    margin: 100px 0 0; }
  .tile.double .tile-ico {
    margin: 60px 0 0; }

.tile-double.wide {
  font-size: 48px; }
  .tile-double.wide .tile-descr.__once {
    margin: 35px 0; }
  .tile-double.wide .tile-ico {
    margin: 35px 10px 0 0; }
  .tile-double.wide .tile-descr {
    display: inline-block;
    vertical-align: 10px; }
  .tile-double.wide .tile-count + .tile-descr {
    display: block; }

.__images-list .tile.double {
  line-height: 225px; }

.tile.double.tall {
  font-size: 48px; }
  .tile.double.tall .tile-ico {
    margin: 80px 0 0; }

.tile.quadro.__tree:hover {
  overflow-y: auto; }

/* Items lists */
.list.__items, .themeSettingsBlade .__items.uploader__form-group,
.list.__files,
.themeSettingsBlade .__files.uploader__form-group {
  margin: 0 -20px 15px; }


.list.__files,
.themeSettingsBlade .__files.uploader__form-group {
  margin: 15px -20px; }

.__items .list-group {
  background: #fbfdf;
  border-bottom: 1px solid #eaedf3;
  cursor: pointer;
  font-size: 14px;
  padding: 10px 20px;
  position: relative; }
  .__items .list-group::after {
    color: #a6a6a6;
    content: '\F078';
    font-family: "FontAwesome";
    font-size: 16px;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%); }

.__items .list-group.__opened::after {
  content: '\F077'; }

.__items .list-item {
  background: #fff;
  border-bottom: 1px solid #eaedf3;
  cursor: pointer;
  display: block;
  padding: 10px 20px;
  position: relative; }

.__items .list-item.__hovered {
  background: #ecf7fc; }

.__items .list-group + .list.__sub, .__items .themeSettingsBlade .list-group + .__sub.uploader__form-group, .themeSettingsBlade .__items .list-group + .__sub.uploader__form-group {
  display: none;
  margin: -1px 0 0; }

.__items .list-group.__opened + .list.__sub, .__items .themeSettingsBlade .list-group.__opened + .__sub.uploader__form-group, .themeSettingsBlade .__items .list-group.__opened + .__sub.uploader__form-group {
  display: block; }

.__items .list-item.__error {
  background: #fef8f7;
  border-color: #fce7e6; }

.__items .list-item.__default {
  background: #ecf7fc; }
  .__items .list-item.__default::after {
    border-color: #a1c0d4 #a1c0d4 transparent transparent;
    border-style: solid;
    border-width: 15px;
    content: "";
    font-family: "FontAwesome";
    font-size: 16px;
    position: absolute;
    right: 0;
    top: 0;
    transform: none; }
  .__items .list-item.__default::before {
    color: #fff;
    content: "\F00C";
    font-family: "FontAwesome";
    font-size: 10px;
    line-height: 0;
    position: absolute;
    right: 4px;
    top: 9px;
    z-index: 25; }

.__items .list-item:after {
  display: none; }

.__items .list-item.__more:before {
  background: url("/images/navbar/more.svg") no-repeat;
  color: #161d25;
  float: left;
  font-family: "FontAwesome";
  font-size: 16px;
  height: 20px;
  margin: 0 10px 0 0;
  width: 20px; }

.__items.__reverse .list-item:after {
  right: 60px;
  content: "\F053"; }

.__items .list-item.__not-icon::after, .__items .list-item.__not-icon::before {
  content: ''; }

.__items label.list-item:after {
  display: none; }

.__items .list-item:hover:after {
  right: 25px; }

.__items.__reverse .list-item:hover:after {
  right: 55px; }

.__items .list-item.__default:hover:after {
  right: 0; }

.__items .list-item .cover {
  display: flex;
  align-items: center; }

.__items .list-item .cover .first {
  display: inline; }

.__items .list-item .cover .next {
  display: inline-block;
  padding-left: 15px; }

.__items .list-link {
  display: block;
  white-space: nowrap;
  overflow: hidden; }

.__items .list-ico,
.__files .list-ico {
  font-size: 28px;
  height: 30px;
  line-height: 30px;
  margin: 0 5px 0 0;
  vertical-align: middle;
  width: 40px; }

.__files .list-ico {
  font-size: 24px;
  width: 30px; }

.__files .list.__sub .list-ico, .__files .themeSettingsBlade .__sub.uploader__form-group .list-ico, .themeSettingsBlade .__files .__sub.uploader__form-group .list-ico {
  font-size: 24px; }

.__items .list-ico ~ .list-name,
.__files .list-ico ~ .list-name {
  vertical-align: middle; }

.__items .list-name,
.__files .list-name {
  color: #161d25;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  vertical-align: middle;
  z-index: 25; }

.__items .list-img {
  background-blend-mode: darken;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  height: 30px;
  margin: 0 15px 0 0;
  position: relative;
  vertical-align: middle;
  width: 30px; }

.__files .list-name {
  vertical-align: middle; }

.__files .list-descr, .__files .themeSettingsBlade .uploader__hint, .themeSettingsBlade .__files .uploader__hint {
  color: #161d25;
  display: block;
  font-size: 12px; }

.__files .list-ico ~ .list-descr, .__files .themeSettingsBlade .list-ico ~ .uploader__hint, .themeSettingsBlade .__files .list-ico ~ .uploader__hint,
.__files .list-img ~ .list-descr,
.__files .themeSettingsBlade .list-img ~ .uploader__hint,
.themeSettingsBlade .__files .list-img ~ .uploader__hint {
  margin: 0 0 0 37px; }

.__items .list-t {
  display: block;
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis; }

.__items .list-descr, .__items .themeSettingsBlade .uploader__hint, .themeSettingsBlade .__items .uploader__hint {
  color: #999;
  display: block;
  font-size: 12px; }

.__items .list-action {
  display: inline-block;
  margin: -10px 10px -10px -10px;
  text-align: center;
  width: 28px; }
  .__items .list-action::after {
    content: ' ';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }
  .__items .list-action .list-ico {
    color: #43b0e6;
    font-size: 21px;
    margin: 0;
    width: auto; }

.__items .list-item:hover .list-action .list-ico {
  color: #43b0e6; }

.__items .list-ico ~ .list-t {
  display: inline-block; }

.__items .list-ico ~ .list-descr, .__items .themeSettingsBlade .list-ico ~ .uploader__hint, .themeSettingsBlade .__items .list-ico ~ .uploader__hint {
  margin: 0 0 0 50px; }

.__items .list-t, .__items .list-descr, .__items .themeSettingsBlade .uploader__hint, .themeSettingsBlade .__items .uploader__hint {
  position: relative;
  z-index: 50; }

.__items .list-item input[type=checkbox],
.__items .list-item input[type=radio] {
  left: 0;
  position: absolute;
  top: 0;
  visibility: hidden; }

.__items .list-item .switch {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0; }

.__items label.list-item :checked ~ .switch,
.__items label.list-item.__selected .switch {
  background: #ecf7fc;
  box-shadow: 0 0 0 1px #a1c0d4; }
  .__items label.list-item :checked ~ .switch::after,
  .__items label.list-item.__selected .switch::after {
    border-color: #a1c0d4 #a1c0d4 transparent transparent;
    border-style: solid;
    border-width: 15px;
    content: '';
    font-family: "FontAwesome";
    font-size: 16px;
    position: absolute;
    right: 0;
    top: 0; }
  .__items label.list-item :checked ~ .switch::before,
  .__items label.list-item.__selected .switch::before {
    color: #fff;
    content: "\F00C";
    font-family: "FontAwesome";
    font-size: 10px;
    line-height: 0;
    position: absolute;
    right: 4px;
    top: 9px;
    z-index: 25; }

.__items .list-item.__selected .switch:after {
  border-color: #dee9f0 #dee9f0 transparent transparent; }

.__items label.list-item.__selected .list-name {
  color: #a6a6a6; }

.list.__chosen, .themeSettingsBlade .__chosen.uploader__form-group {
  margin: 10px 0; }

.__chosen .list-item {
  margin: 0 10px 10px 0;
  position: relative; }

.__chosen .list-name {
  background: #43b0e6;
  color: #fff;
  float: right;
  font-size: 11px;
  max-width: 345px;
  min-height: 15px;
  min-width: 30px;
  overflow: hidden;
  padding: 2px 5px;
  text-overflow: ellipsis;
  vertical-align: top;
  white-space: nowrap; }

.__chosen .list-remove {
  color: #a1c0d4;
  cursor: pointer;
  float: left;
  font-family: caption;
  font-size: 17px;
  font-weight: bold;
  line-height: 1;
  margin: 3px 4px 0 0; }
  .__chosen .list-remove:hover {
    color: #43b0e6; }

.__files .list-item {
  border: none;
  position: relative; }

.__files .list-block {
  cursor: pointer;
  display: block;
  padding: 2px 20px; }

.__files .list-link {
  display: inline-block;
  font-size: 14px;
  margin: 10px 0 0;
  padding: 2px 20px; }

.__files .list-img {
  display: inline-block;
  height: 30px;
  margin: 0 5px 0 0;
  overflow: hidden;
  position: relative;
  top: 5px;
  vertical-align: middle;
  width: 30px; }
  .__files .list-img * {
    display: block;
    max-width: 100%; }

.__files .list.__sub .list-item, .__files .themeSettingsBlade .__sub.uploader__form-group .list-item, .themeSettingsBlade .__files .__sub.uploader__form-group .list-item {
  margin: 0 0 0 40px; }

/* Pagination */
.pagination {
  background: #fbfdfe;
  border-color: #eaedf3;
  border-style: solid;
  border-width: 1px 0;
  margin: 0 -20px;
  padding: 10px 20px;
  text-align: center; }
  .pagination .menu-item {
    text-align: center; }
  .pagination .menu-item + .menu-item {
    margin: 0 0 0 5px; }
  .pagination .menu-link {
    background: #fff;
    border: 1px solid #eaedf3;
    box-sizing: border-box;
    color: #161d25;
    cursor: pointer;
    display: block;
    font-size: 12px;
    font-weight: 400;
    height: 30px;
    line-height: 26px;
    width: 30px; }
    .pagination .menu-link:hover {
      background: #e8f5fb; }
  .pagination .menu-item.__selected .menu-link {
    background: #43b0e6;
    color: #fff; }
  .pagination .menu-ico {
    font-size: 14px; }

/* Breadcrumbs */
.breadcrumbs {
  padding: 15px 0; }
  .breadcrumbs .arrow-color {
    color: #A1C0D4; }
  .breadcrumbs .menu {
    display: flex;
    margin: 4px 0 -8px 0;
    vertical-align: top; }
    .breadcrumbs .menu.flex-row-wrap {
      flex-flow: row wrap; }
  .breadcrumbs li.menu-item:not(:last-child),
  .breadcrumbs li.menu-item:first-child {
    margin: 0 6px 8px 0; }
  .breadcrumbs .menu-link {
    padding: 4px 12px 4px 12px;
    border: 1px solid #A1C0D4;
    border-radius: 15px;
    background-color: white;
    max-width: 123px;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #43b0e6;
    font-size: 14px; }
    .breadcrumbs .menu-link:hover {
      color: #52a2ca; }
    .breadcrumbs .menu-link.last-item {
      border: 1px solid #838d9a;
      color: #838d9a; }

/* Tree */
.tree {
  font-size: 0;
  text-align: center; }

.tree-view {
  overflow-x: auto; }
  .tree-view ul {
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap; }

.tree-scroll {
  padding: 20px 0;
  text-align: center; }

.tree,
.tree-item {
  display: inline-block;
  padding: 0;
  position: relative;
  vertical-align: top; }

.tree.__horizontal .tree-item {
  display: block; }
  .tree.__horizontal .tree-item:first-child::before {
    background: #fff;
    content: "";
    height: 50%;
    left: -1px;
    position: absolute;
    top: -1px;
    width: 2px;
    z-index: 5; }
  .tree.__horizontal .tree-item:last-child::after {
    background: #fff;
    content: "";
    height: 50%;
    left: -1px;
    position: absolute;
    top: 51%;
    width: 2px;
    z-index: 5; }
  .tree.__horizontal .tree-item .tree-block {
    vertical-align: middle; }
    .tree.__horizontal .tree-item .tree-block::before {
      background: #a1c0d4;
      content: "";
      height: 2px;
      left: -14px;
      position: absolute;
      top: 50%;
      width: 12px;
      transform: translateY(-50%); }

.tree-item:first-child::before {
  background: #fff;
  content: '';
  height: 2px;
  left: -1px;
  position: absolute;
  top: 0;
  width: 50%;
  z-index: 5; }

.tree-item:last-child::before {
  background: #fff;
  content: '';
  height: 2px;
  right: -1px;
  position: absolute;
  top: 0;
  width: 50%;
  z-index: 5; }

.tree-block {
  border: 2px solid #a1c0d4;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  margin: 10px 11px;
  padding: 5px 0;
  position: relative;
  vertical-align: top;
  width: 160px; }
  .tree-block:hover {
    background: #ecf7fc; }
  .tree-block::before {
    background: #a1c0d4;
    content: '';
    height: 10px;
    left: 50%;
    position: absolute;
    top: -12px;
    width: 2px;
    transform: translateX(-50%); }

.tree-block.__canceled:hover {
  background: #faf1f1; }

.tree-block.__selected {
  background: #d9effa;
  border-color: #a1c0d4; }

.tree-block .inner {
  height: 100%;
  margin: 0 10px;
  text-align: left; }

.tree-item.last .tree-block .inner::after {
  background: #fff;
  content: '';
  height: 2px;
  left: -1px;
  position: absolute;
  top: -12px;
  width: 50%;
  z-index: 5; }

.tree-item.last .tree-block .inner::before {
  background: #fff;
  content: '';
  height: 2px;
  position: absolute;
  right: -1px;
  top: -12px;
  width: 50%;
  z-index: 10; }

.first > :first-child::before {
  display: none; }

.tree-node {
  position: relative; }
  .tree-node::after {
    background: #a1c0d4;
    content: '';
    height: 2px;
    left: 0;
    position: absolute;
    right: 7px;
    top: 0; }
  .tree-node::before {
    background: #a1c0d4;
    content: '';
    height: 12px;
    left: 50%;
    position: absolute;
    top: -10px;
    width: 2px;
    transform: translateX(-50%); }

.tree-node.__one-el {
  margin: -10px 0 0; }
  .tree-node.__one-el::after, .tree-node.__one-el::before {
    display: none; }

.tree.__horizontal .tree-node.__one-el {
  margin: 0 0 0 -10px; }

.tree.__horizontal .tree-node {
  display: inline-block;
  vertical-align: middle; }
  .tree.__horizontal .tree-node .tree-item {
    text-align: left; }
  .tree.__horizontal .tree-node::after {
    background: #a1c0d4;
    bottom: 0;
    content: "";
    height: auto;
    left: -1px;
    position: absolute;
    top: 1px;
    width: 2px; }
  .tree.__horizontal .tree-node::before {
    background: #a1c0d4;
    content: "";
    height: 2px;
    left: -12px;
    position: absolute;
    top: 50%;
    width: 12px;
    transform: translateY(-50%); }

.tree-node.__empty::after {
  display: none; }

.tree-el {
  color: #161d25;
  display: block;
  font-size: 12px;
  line-height: 1;
  margin: 0;
  padding: 5px 0 5px 20px;
  position: relative;
  white-space: normal; }
  .tree-el .tree-ico {
    color: #161d25;
    font-size: 14px;
    left: 0;
    position: absolute;
    width: 20px; }

.tree-el.__canceled {
  background: #43b0e6;
  color: #fff;
  margin: 5px -10px -5px;
  padding: 5px 0;
  text-align: center; }

.tree-el.__title {
  color: #43b0e6;
  height: 24px; }

/* Columns */
.columns {
  padding: 15px 0; }
  .columns:last-of-type {
    clear: both;
    padding-top: 0; }

.form.columns, .themeSettingsBlade .columns.uploader__form {
  padding: 0; }

.column:nth-last-child(2),
.column:nth-last-child(2) ~ .column {
  float: left;
  width: 50%; }

.column:nth-last-child(3),
.column:nth-last-child(3) ~ .column {
  float: left;
  width: 33.33333%; }

.column .list.__info, .column .themeSettingsBlade .uploader__form-group, .themeSettingsBlade .column .uploader__form-group {
  margin: 0; }

.column .form-group, .column .themeSettingsBlade .uploader__form-group, .themeSettingsBlade .column .uploader__form-group {
  margin-right: 10px; }

.column + .column .form-group, .column + .column .themeSettingsBlade .uploader__form-group, .themeSettingsBlade .column + .column .uploader__form-group {
  margin-left: 10px;
  margin-right: 0; }

.column .column .form-group, .column .column .themeSettingsBlade .uploader__form-group, .themeSettingsBlade .column .column .uploader__form-group {
  margin-left: 0;
  margin-right: 0; }

.column .column + .column .form-group, .column .column + .column .themeSettingsBlade .uploader__form-group, .themeSettingsBlade .column .column + .column .uploader__form-group {
  margin-left: 10px;
  margin-right: 0; }

.column + .column .table-wrapper {
  margin-left: 10px; }

/* Calendar */
.form-input.__calendar .dropdown-menu {
  background: #fff;
  border: 1px solid #eaedf3;
  margin: -1px 0 0;
  max-width: 400px;
  position: absolute;
  right: 0;
  z-index: 100; }
  .form-input.__calendar .dropdown-menu .btn {
    background: #fbfdfe;
    color: #161d25;
    font-size: 14px;
    font-weight: 400;
    position: static;
    text-shadow: none; }
    .form-input.__calendar .dropdown-menu .btn:disabled:hover {
      background: #fbfdfe; }
    .form-input.__calendar .dropdown-menu .btn:hover {
      background: #ecf7fc; }
  .form-input.__calendar .dropdown-menu table .btn {
    width: 100%;
    justify-content: center; }
  .form-input.__calendar .dropdown-menu table input {
    text-align: center;
    padding: 2px; }
  .form-input.__calendar .dropdown-menu .btn-group .btn,
  .form-input.__calendar .dropdown-menu .btn-group ~ .btn,
  .form-input.__calendar .dropdown-menu .btn-success {
    background: #43b0e6;
    color: #fff;
    display: inline-block;
    padding: 0 10px; }
  .form-input.__calendar .dropdown-menu .btn-info,
  .form-input.__calendar .dropdown-menu .btn.active {
    background: #43b0e6;
    color: #fff; }

.text-muted {
  color: #999; }

.dropdown-menu li {
  padding: 0;
  text-indent: 0; }
  .dropdown-menu li:last-child {
    background: #e8f5fb;
    overflow: hidden;
    padding: 5px !important; }
  .dropdown-menu li::before {
    content: ''; }

.dropdown-menu table {
  border-collapse: collapse;
  border-spacing: 0;
  padding: 0;
  width: 100%; }
  .dropdown-menu table th,
  .dropdown-menu table td {
    background: #eaedf3;
    border-color: #fff;
    border-style: solid;
    border-width: 2px;
    font-size: 14px;
    padding: 1px;
    text-align: center;
    width: 12.5%; }
  .dropdown-menu table th {
    background: #eaedf3;
    font-weight: 500; }
    .dropdown-menu table th small {
      display: block;
      font-size: 13px;
      line-height: 1.4;
      margin: 5px 0;
      vertical-align: top; }

.dropdown-menu .glyphicon {
  font-family: "FontAwesome";
  font-style: normal; }

.dropdown-menu .glyphicon.glyphicon-chevron-left:before {
  content: '\F053'; }

.dropdown-menu .glyphicon.glyphicon-chevron-right:before {
  content: '\F054'; }

.dropdown-menu .glyphicon.glyphicon-chevron-up:before {
  content: '\F077'; }

.dropdown-menu .glyphicon.glyphicon-chevron-down:before {
  content: '\F078'; }

/* Select */
.select2-container {
  cursor: pointer;
  display: block; }
  .select2-container input {
    height: auto; }

.select2-container .select2-choice,
.select2-container-multi .select2-choices {
  background: #fff;
  border-color: #eaedf3;
  color: #161d25;
  font-size: 14px;
  line-height: 32px;
  min-height: 32px;
  padding: 0 10px; }

.select2-container-multi .select2-choices {
  line-height: 32px;
  padding: 0px 10px 10px 4px; }

.select2-container .select2-choice,
.select2-drop {
  border-radius: 0; }

.select2-container-active .select2-choice,
.select2-container-active .select2-choices,
.select2-drop-active,
.select2-container-multi.select2-container-active .select2-choices {
  border-color: #a1c0d4;
  box-shadow: none; }

.form-input.__langs .select2-choice,
.form-input.__langs .select2-choices {
  padding-left: 36px; }

.select2-choice > .select2-chosen {
  margin: 0; }

.select2-container .select2-choice .select2-arrow {
  background: none;
  border: none;
  width: 30px; }
  .select2-container .select2-choice .select2-arrow::after {
    border-color: #43b0e6 transparent transparent;
    border-style: solid;
    border-width: 5px 4px;
    content: '';
    margin: -3px 0 0;
    position: absolute;
    right: 10px;
    top: 50%; }

.select2-dropdown-open .select2-choice .select2-arrow::after {
  border-color: transparent transparent #43b0e6;
  margin: -10px 0 0; }

.select2-search input {
  background: #fff; }

.select2-results .select2-highlighted {
  background: #43b0e6; }

.select2-container li {
  color: #161d25;
  padding: 0;
  text-indent: 0; }
  .select2-container li::before {
    content: ''; }

/* Multi selects */
.form-input.__langs .select2-search-field {
  left: 36px; }

.select2-container-multi .select2-choices .select2-search-choice {
  background: #fbfdfe;
  border: 1px solid #a1c0d4;
  border-radius: 0;
  box-shadow: none;
  font-size: 13px;
  line-height: 1;
  margin: 10px 0 0px 10px;
  padding: 6px 30px 6px 5px;
  z-index: 49; }
  .select2-container-multi .select2-choices .select2-search-choice.btn-default {
    background: #43b0e6 url("/images/layout/plus.svg") no-repeat right center;
    background-size: 10px;
    background-position-x: 35px;
    border-radius: 2px;
    color: #fff;
    height: 19px;
    padding: 6px 20px 0 7px; }

.select2-container-multi .select2-choices .select2-search-field input {
  padding: 7px 10px 7px 5px; }

.select2-search-choice-close {
  left: auto !important;
  top: 6px; }

.select2-container .select2-choice abbr {
  height: 100%;
  padding: 0 10px;
  right: 16px;
  top: 0;
  background: none !important; }

.select2-search-choice-close::after {
  color: #43b0e6;
  content: '\F00D';
  font-family: "FontAwesome";
  font-size: 13px;
  text-shadow: none;
  top: 0; }
  .select2-search-choice-close::after:hover::after {
    color: #43b0e6; }

.select2-container-multi .select2-search-choice-close::after,
.select2-container-multi .select2-search-choice-close:hover::after {
  color: #a1c0d4; }

.select2-container .select2-search {
  margin-top: 4px; }

.select2-container .select2-search input,
.select2-container .select2-choice .select2-arrow b {
  background-image: none !important; }

/* Tags input */
tags-input .host {
  margin: 0; }

tags-input .tags {
  border-color: #eaedf3;
  box-shadow: none;
  color: #161d25;
  padding: 0 10px;
  -moz-appearance: none;
  -webkit-appearance: none; }
  tags-input .tags li {
    padding: 0;
    text-indent: 0; }
    tags-input .tags li::before {
      content: ''; }
  tags-input .tags .input {
    height: 28px;
    padding: 0; }
  tags-input .tags .tag-item {
    background: #43b0e6;
    border: none;
    border-radius: 0;
    color: #fff;
    font-family: "Roboto";
    font-size: 13px;
    height: 24px;
    margin: 4px 4px 0 0;
    padding: 0 30px 0 6px;
    position: relative; }
  tags-input .tags .tag-item.selected {
    background: #e51400; }
  tags-input .tags .tag-item .remove-button {
    font-family: caption;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    position: absolute;
    right: 6px;
    top: 5px; }

tags-input .tags.focused {
  border-color: #a1c0d4;
  box-shadow: none; }

/* Main */
.nav-bar,
.cnt {
  bottom: 0;
  position: fixed;
  top: 0; }

.has-demo-warning .nav-bar,
.has-demo-warning .nav-bar .dropdown,
.has-demo-warning .header {
  top: 28px !important; }

.has-demo-warning .cnt {
  padding-top: 88px; }

/* Nav bar - Left navigation menu */
.nav-bar {
  font-family: "Roboto";
  left: 0;
  width: 240px;
  z-index: 100;
  /* Dropdown - dropdown menu navigation */ }
  .nav-bar.__collapsed {
    width: 72px; }
    .nav-bar.__collapsed ~ .cnt {
      left: 72px; }
    .nav-bar.__collapsed ~ .cnt .header {
      padding-left: 72px; }
    .nav-bar.__collapsed .logo-version {
      display: none; }
    .nav-bar.__collapsed .bar .__items .list-item,
    .nav-bar.__collapsed .bar .__items .list-item.__more {
      width: 32px; }
    .nav-bar.__collapsed .bar .__items .list-item.__more {
      padding: 10px 20px 10px 20px; }
    .nav-bar.__collapsed .bar .__items .list-ico {
      margin: 0;
      width: 100%; }
    .nav-bar.__collapsed .bar .__items .list-name {
      display: none; }
    .nav-bar.__collapsed .bar .__items .list-count {
      left: 44px; }
    .nav-bar.__collapsed .dropdown.__opened {
      transform: translateX(72px); }
  .nav-bar .logo {
    height: 60px;
    width: 100%;
    z-index: 50;
    align-items: center;
    display: flex;
    background: #161d25; }
    .nav-bar .logo__img {
      margin: 13px;
      max-height: 34px; }
    .nav-bar .logo__img--collapsed {
      width: 100%; }
    .nav-bar .logo-version {
      color: #838d9a;
      font-size: 10px;
      text-overflow: ellipsis;
      width: 30%; }
  .nav-bar .bar {
    background: #f5f6f9;
    box-shadow: 1px 0 0 0 #eaedf3;
    box-sizing: border-box;
    display: table;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 50; }
    .nav-bar .bar .wrapper {
      display: table-row;
      height: 100%; }
    .nav-bar .bar .list, .nav-bar .bar .themeSettingsBlade .uploader__form-group, .themeSettingsBlade .nav-bar .bar .uploader__form-group {
      display: table;
      margin: 0;
      width: 100%;
      height: 100%; }
      .nav-bar .bar .list .outer-wrapper, .nav-bar .bar .themeSettingsBlade .uploader__form-group .outer-wrapper, .themeSettingsBlade .nav-bar .bar .uploader__form-group .outer-wrapper {
        display: table-row;
        height: 100%; }
      .nav-bar .bar .list .inner-wrapper, .nav-bar .bar .themeSettingsBlade .uploader__form-group .inner-wrapper, .themeSettingsBlade .nav-bar .bar .uploader__form-group .inner-wrapper {
        position: relative;
        height: calc(100% - 120px);
        overflow-x: hidden;
        overflow-y: hidden; }
        .nav-bar .bar .list .inner-wrapper:hover, .nav-bar .bar .themeSettingsBlade .uploader__form-group .inner-wrapper:hover, .themeSettingsBlade .nav-bar .bar .uploader__form-group .inner-wrapper:hover {
          overflow-y: auto; }
        .nav-bar .bar .list .inner-wrapper .content, .nav-bar .bar .themeSettingsBlade .uploader__form-group .inner-wrapper .content, .themeSettingsBlade .nav-bar .bar .uploader__form-group .inner-wrapper .content {
          position: absolute;
          left: 0;
          right: 0;
          top: 0;
          bottom: 0; }
    .nav-bar .bar .__items .list-item {
      background: #f5f6f9;
      border-bottom: 1px solid #eaedf3;
      height: 22px;
      width: auto; }
      .nav-bar .bar .__items .list-item:hover .list-t,
      .nav-bar .bar .__items .list-item:hover .list-name,
      .nav-bar .bar .__items .list-item:hover .list-ico {
        text-shadow: none; }
      .nav-bar .bar .__items .list-item:hover .list-ico {
        color: #161d25; }
      .nav-bar .bar .__items .list-item:not(.__more) {
        padding: 10px 20px; }
      .nav-bar .bar .__items .list-item.__hovered {
        background: #f5f6f9; }
      .nav-bar .bar .__items .list-item.__selected {
        background: #d9effa !important; }
      .nav-bar .bar .__items .list-item.__animated {
        animation: notify ease 1 1.5s; }
        .nav-bar .bar .__items .list-item.__animated .list-ico,
        .nav-bar .bar .__items .list-item.__animated:hover .list-ico {
          animation: bell ease-in-out 1s .5s; }
        .nav-bar .bar .__items .list-item.__animated .list-name,
        .nav-bar .bar .__items .list-item.__animated .list-t,
        .nav-bar .bar .__items .list-item.__animated:hover .list-name,
        .nav-bar .bar .__items .list-item.__animated:hover .list-t {
          color: #fff;
          text-shadow: none; }
      .nav-bar .bar .__items .list-item.__draggable:before {
        color: #a6a6a6;
        background-image: url("/images/navbar/3_dot_icon.svg");
        background-repeat: no-repeat;
        background-position-x: center;
        background-position-y: center;
        cursor: move;
        opacity: 0;
        display: none;
        position: absolute;
        left: 0;
        top: 50%;
        width: 20px;
        height: 42px;
        transform: translateY(-50%);
        transition: opacity .25s ease-in-out 0s; }
      .nav-bar .bar .__items .list-item.__draggable:hover:before {
        opacity: 1;
        display: block; }
      .nav-bar .bar .__items .list-item.__more {
        height: 22px;
        width: auto; }
        .nav-bar .bar .__items .list-item.__more .list-ico {
          display: none;
          margin: 0; }
    .nav-bar .bar .__items .list-name {
      color: #161d25; }
    .nav-bar .bar .__items .list-ico {
      color: #161d25;
      font-size: 20px;
      height: 20px;
      line-height: 1;
      margin: 0 6px 0 0;
      text-shadow: none;
      width: 20px; }
      .nav-bar .bar .__items .list-ico::before {
        display: block;
        height: 100%;
        width: 100%; }
    .nav-bar .bar .__items .list-ico.list-toggle {
      color: #319ED4; }
    .nav-bar .bar .__items .list-count {
      background: #fff;
      height: 14px;
      font-size: 10px;
      line-height: 14px;
      text-align: center;
      min-width: 14px;
      position: absolute;
      left: 42px;
      top: 8px;
      border-radius: 50%; }
    .nav-bar .bar .divider {
      border: none;
      height: 0;
      margin: 0; }
    .nav-bar .bar .info {
      background: #f5f6f9;
      font-size: 0;
      text-align: center;
      padding: 5px 0 0 0;
      z-index: 50; }
    .nav-bar .bar .info-version {
      display: block;
      font-size: 12px;
      padding: 0 0 5px 0; }
  .nav-bar .menu-item {
    text-align: center; }
  .nav-bar .menu-link {
    color: #c2c2c2;
    display: block;
    font-size: 13px;
    padding: 15px 0;
    position: relative; }
  .nav-bar .menu-item.__done {
    left: 0;
    position: absolute;
    right: 0;
    top: 0; }
  .nav-bar .menu-item.__done .menu-link {
    background: #43b0e6;
    color: #fff;
    cursor: pointer; }
  .nav-bar .menu-link:hover {
    color: #43b0e6; }
  .nav-bar .__selected .menu-link {
    background-color: #383838;
    color: #43b0e6; }
  .nav-bar .menu-ico {
    display: block;
    font-size: 24px;
    height: 20px;
    margin: 0 0 10px; }
  .nav-bar .dropdown {
    background: #fff;
    bottom: 0;
    box-shadow: 1px 0 0 0 #eaedf3;
    margin-top: 60px;
    position: fixed;
    top: 0;
    width: 360px;
    z-index: 25;
    transform: translateX(-360px); }
    .nav-bar .dropdown.__more {
      background: #fff; }
    .nav-bar .dropdown.__opened {
      transform: translateX(240px); }

.dropdown .dropdown-close {
  color: #c2c2c2;
  cursor: pointer;
  font-family: caption;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  right: 15px;
  top: 30px; }
  .dropdown .dropdown-close:hover {
    color: #fff; }

.dropdown.__more .dropdown-close {
  color: #a6a6a6;
  top: 10px;
  right: 10px; }
  .dropdown.__more .dropdown-close:hover {
    color: #333; }

.dropdown .dropdown-head {
  padding: 85px 20px 14px;
  text-align: right; }

.dropdown.__more .dropdown-head {
  background: #465769;
  border-color: #2e3d4e;
  border-style: solid;
  border-width: 0 0 1px;
  text-align: left;
  padding: 0;
  height: 124px;
  box-sizing: border-box; }
  .dropdown.__more .dropdown-head .form-group, .dropdown.__more .dropdown-head .themeSettingsBlade .uploader__form-group, .themeSettingsBlade .dropdown.__more .dropdown-head .uploader__form-group,
  .dropdown.__more .dropdown-head .form,
  .dropdown.__more .dropdown-head .themeSettingsBlade .uploader__form,
  .themeSettingsBlade .dropdown.__more .dropdown-head .uploader__form {
    margin: 0 20px;
    padding: 17px 0;
    position: relative; }
  .dropdown.__more .dropdown-head .form-group .form-hint, .dropdown.__more .dropdown-head .themeSettingsBlade .uploader__form-group .form-hint, .themeSettingsBlade .dropdown.__more .dropdown-head .uploader__form-group .form-hint {
    padding: 5px 0; }
  .dropdown.__more .dropdown-head .form-input.__search {
    top: 30px; }

.dropdown .menu-item {
  margin: 0 0 0 20px;
  text-align: left; }

.dropdown .menu-link {
  cursor: pointer;
  font-size: 14px; }
  .dropdown .menu-link:hover {
    color: #fff; }

.dropdown .menu-ico {
  display: inline-block;
  font-size: 18px;
  margin: 0 5px 0 0; }

.dropdown .dropdown-content {
  height: calc(100% - 149px);
  padding: 0 20px;
  overflow: hidden; }
  .dropdown .dropdown-content:hover {
    overflow-y: auto; }

.dropdown.__more .dropdown-content {
  height: calc(100% - 100px); }

.dropdown.__more .list, .dropdown.__more .themeSettingsBlade .uploader__form-group, .themeSettingsBlade .dropdown.__more .uploader__form-group {
  width: 360px; }

.dropdown.__more .list-group {
  font-weight: bold;
  padding: 10px 20px; }

.dropdown.__more .list-group:after {
  right: 20px; }

.dropdown.__more .list-item {
  padding: 10px 20px; }

.dropdown.__more .list-item:after {
  display: none; }

.dropdown.__more .list-ico {
  color: #dfe3e8;
  font-size: 20px;
  height: 20px;
  line-height: 1;
  margin: 0 6px 0 0;
  width: 20px; }
  .dropdown.__more .list-ico::before {
    display: block;
    height: 100%;
    width: 100%; }

.dropdown.__more .list-fav {
  display: block;
  font-size: 16px;
  font-weight: 300;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 20px; }
  .dropdown.__more .list-fav .list-ico {
    font-size: 16px;
    text-align: center;
    margin: 0;
    top: 0;
    width: 16px; }
    .dropdown.__more .list-fav .list-ico.favorite {
      color: #f89406; }

.dropdown:not(.__more) .dropdown-content {
  -ms-scrollbar-arrow-color: #545454;
  -ms-scrollbar-face-color: #434343;
  -ms-scrollbar-shadow-color: #434343;
  -ms-scrollbar-track-color: #545454; }
  .dropdown:not(.__more) .dropdown-content .list, .dropdown:not(.__more) .dropdown-content .themeSettingsBlade .uploader__form-group, .themeSettingsBlade .dropdown:not(.__more) .dropdown-content .uploader__form-group {
    width: 315px; }
  .dropdown:not(.__more) .dropdown-content .list-item {
    border-top: 1px solid #606060; }
  .dropdown:not(.__more) .dropdown-content .list-link {
    color: #c2c2c2;
    display: block;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    padding: 20px;
    text-transform: uppercase; }
    .dropdown:not(.__more) .dropdown-content .list-link:hover {
      background: rgba(0, 0, 0, 0.2);
      color: #fff; }
  .dropdown:not(.__more) .dropdown-content .__selected .list-link {
    background: none;
    color: #43b0e6; }
  .dropdown:not(.__more) .dropdown-content .list-ico {
    font-size: 25px;
    height: 24px;
    margin: 0 20px 0 0;
    position: relative;
    top: 2px;
    width: 32px; }
  .dropdown:not(.__more) .dropdown-content .info .list-ico {
    color: #43b0e6; }
  .dropdown:not(.__more) .dropdown-content .error .list-ico {
    color: #FF4A4A; }
  .dropdown:not(.__more) .dropdown-content .warning .list-ico {
    color: #FFBB0D; }
  .dropdown:not(.__more) .dropdown-content .error .list-ico::after,
  .dropdown:not(.__more) .dropdown-content .warning .list-ico::after {
    background: #fff;
    content: '';
    height: 12px;
    left: 11px;
    position: absolute;
    top: 7px;
    width: 3px;
    z-index: -1; }

.dropdown .list-t,
.dropdown .list-date,
.dropdown .list-descr,
.dropdown .themeSettingsBlade .uploader__hint,
.themeSettingsBlade .dropdown .uploader__hint {
  color: #fff;
  text-transform: none; }

.dropdown .list-date,
.dropdown .list-descr,
.dropdown .themeSettingsBlade .uploader__hint,
.themeSettingsBlade .dropdown .uploader__hint {
  display: block;
  font-size: 12px; }

.dropdown .list-t {
  font-size: 14px; }


.dropdown .list-descr,
.dropdown .themeSettingsBlade .uploader__hint,
.themeSettingsBlade .dropdown .uploader__hint {
  display: block;
  margin: 0 0 0 55px; }

.dropdown .list-date {
  color: #c2c2c2;
  margin: 5px 0 0 55px;
  padding: 0 0 0 25px;
  position: relative; }
  .dropdown .list-date::after {
    color: #c2c2c2;
    content: '\F073';
    font-family: "FontAwesome";
    font-size: 14px;
    left: 0;
    position: absolute;
    top: 0; }

.dropdown .list-bar {
  background-color: #43b0e6;
  display: block;
  height: 10px;
  margin-left: 55px; }

.header {
  background: #161d25;
  display: flex;
  height: 60px;
  left: 0;
  padding-left: 240px;
  position: fixed;
  right: 0;
  top: 0;
  transition: all .25s ease-in-out;
  z-index: 500; }
  .header__info {
    border-left: 1px solid #2e3d4e;
    border-right: 1px solid #2e3d4e;
    color: #fff;
    min-width: 420px;
    width: 420px; }
    .header__info.__small-narrow {
      min-width: 290px;
      width: 290px; }
    .header__info.__medium-wide {
      min-width: 550px;
      width: 550px; }
    .header__info.__large-wide {
      min-width: 680px;
      width: 680px; }
    .header__info.__xlarge-wide {
      min-width: 810px;
      width: 810px; }
    .header__info.__xxlarge-wide {
      min-width: 940px;
      width: 940px; }
  .header__info2 {
    color: #fff;
    min-width: 340px;
    width: 340px; }
    .header__info2.__small-narrow {
      min-width: 340px;
      width: 340px; }
    .header__info2.__medium-wide {
      min-width: 340px;
      width: 340px; }
    .header__info2.__large-wide {
      min-width: 340px;
      width: 340px; }
    .header__info2.__xlarge-wide {
      min-width: 340px;
      width: 340px; }
    .header__info2.__xxlarge-wide {
      min-width: 340px;
      width: 340px; }
  .header__nav {
    display: flex;
    margin-left: auto; }
    .header__nav-item {
      align-items: center;
      border-left: 1px solid #2e3d4e;
      cursor: pointer;
      display: flex;
      position: relative; }
      .header__nav-item:hover {
        background-color: #2e3d4e; }
      .header__nav-item--opened {
        background-color: #ffffff !important; }
      .header__nav-item--opened .account-user__carret {
        transform: rotate(180deg); }
    .header__nav-ico {
      background-position: 50% 50%;
      background-repeat: no-repeat;
      background-size: 20px;
      height: 20px;
      padding: 20px;
      width: 20px; }
      .header__nav-ico.__animated {
        animation: bell ease-in-out 1s .5s; }
      .header__nav-ico--warning {
        background-image: url("/images/header/warning.svg"); }
      .header__nav-ico--settings {
        background-image: url("/images/header/settings.svg"); }
      .header__nav-ico--help {
        background-image: url("/images/header/support.svg"); }
      .header__nav-ico--notice {
        background-image: url("/images/header/notify_empty.svg"); }
        .header__nav-ico--notice-give {
          background-image: url("/images/header/notify.svg"); }
  .header .license {
    align-items: center;
    display: flex;
    height: 100%;
    padding: 0 20px; }
    .header .license__text {
      min-width: 220px;
      white-space: normal;
      font-size: 12px;
      margin-right: 20px; }
    .header .license.active {
      cursor: pointer; }
  .header .password-expiry {
    align-items: center;
    display: flex;
    height: 100%; }
    .header .password-expiry__text {
      white-space: normal;
      font-size: 12px;
      margin-right: 20px; }
  .header .account-user {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    padding: 0 15px;
    width: 325px; }
    .header .account-user__img {
      background-color: #fff;
      border-radius: 34px;
      height: 34px;
      margin-right: 15px;
      width: 34px; }
    .header .account-user__name, .header .account-user__role {
      color: #fff;
      display: block;
      font-size: 14px; }
    .header .account-user__role {
      color: #838d9a; }
    .header .account-user__carret {
      background: url("/images/chevron.svg") no-repeat;
      height: 7px;
      margin-left: auto;
      pointer-events: none;
      width: 13px; }
  .header .dropdown-menu {
    background: #fff;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    box-shadow: 0 12px 18px rgba(0, 0, 0, 0.12);
    display: none;
    min-width: 100%;
    padding: 10px 0;
    position: absolute;
    right: 0;
    top: 100%; }
    .header .dropdown-menu__item {
      color: #161d25;
      display: block;
      font-size: 14px;
      font-weight: 500;
      padding: 10px 15px; }
      .header .dropdown-menu__item:hover {
        background-color: #fafafa; }
  .header .dropdown-menu.notifications {
    padding: 12px 0 0 0;
    overflow: auto;
    width: 480px; }
  .header .notice__bg {
    background: url("/images/notify_empty.png") no-repeat;
    background-size: contain;
    float: left;
    height: 108px;
    width: 144px;
    margin: 0 16px; }
  .header .notice__t {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px; }
  .header .notice__descr {
    font-size: 14px; }
  .header .notice .btn {
    margin-right: 10px;
    float: right; }
  .header .notice-list {
    position: relative;
    overflow-y: auto;
    max-height: 600px; }
    .header .notice-list__item {
      border-bottom: 1px solid #dfe3e8;
      font-size: 14px;
      padding: 10px 15px;
      position: relative;
      text-align: left;
      display: flex;
      flex-flow: row wrap;
      justify-content: left;
      align-items: center; }
      .header .notice-list__item:hover {
        background-color: #fafafa; }
    .header .notice-list__ico {
      background-color: #87B563;
      border-radius: 50%;
      width: 24px;
      height: 24px;
      padding: 8px;
      display: flex;
      justify-content: center; }
      .header .notice-list__ico.error {
        background-color: #f14e4e; }
      .header .notice-list__ico.progress {
        background-color: #a9bccd; }
      .header .notice-list__ico i {
        font-size: 1.4rem;
        color: #ffffff;
        margin-top: 2px; }
    .header .notice-list__content {
      max-width: 309px; }
    .header .notice-list__date {
      color: #959da6;
      font-size: 11px;
      position: absolute;
      right: 15px;
      top: 10px; }
    .header .notice-list__name {
      font-weight: bold;
      padding-left: 16px;
      padding-right: 95px; }
    .header .notice-list__descr, .header .notice-list__errors {
      padding-left: 16px;
      font-size: 12px;
      width: 285px;
      white-space: normal; }
    .header .notice-list__errors {
      color: #FF4A4A; }
    .header .notice-list .btn {
      float: right;
      margin: 20px 10px 0 0; }
    .header .notice-list__bar {
      flex-basis: 100%;
      height: 12px;
      margin: 5px 0 0 55px; }
  .header .dropdown-menu.notifications .bottom-buttons {
    box-shadow: inset 0px 2px 7px rgba(46, 61, 78, 0.1);
    background-color: #FBFDFE;
    padding: 13px 12px 12px 12px;
    text-align: right; }
    .header .dropdown-menu.notifications .bottom-buttons .btn-outline {
      background: unset;
      border: 1px solid #43b0e6;
      color: #43b0e6;
      margin-left: 4px; }

.header__nav-item--opened .dropdown-menu {
  display: block; }

/* Content - main content area */
.cnt {
  left: 240px;
  overflow: hidden;
  overflow-x: auto;
  padding-top: 60px;
  right: 0;
  white-space: nowrap;
  z-index: 50; }
  .cnt .cnt-inner {
    display: inline-block;
    height: 100%;
    word-spacing: -4px;
    width: 100%; }
    .cnt .cnt-inner .blade:not(:first-child):last-child {
      margin-right: 90px; }
  .cnt .dashboard,
  .cnt .blade {
    display: inline-block;
    height: 100%;
    vertical-align: top;
    white-space: nowrap;
    word-spacing: 0; }

.cnt.__hidden {
  overflow-x: hidden; }

/* Blades */
.blade {
  background: #fff;
  box-shadow: 1px 0 0 0 #eaedf3;
  font-family: serif;
  margin-right: 1px;
  overflow: hidden;
  position: relative; }
  .blade.__animated {
    z-index: -1;
    animation: blade ease-in-out .25s; }
    .blade.__animated:nth-child(2) {
      z-index: -2; }
    .blade.__animated:nth-child(3) {
      z-index: -3; }
    .blade.__animated:nth-child(4) {
      z-index: -4; }
    .blade.__animated:nth-child(5) {
      z-index: -5; }
    .blade.__animated.__closing {
      animation-direction: reverse;
      animation-duration: .125s; }
  .blade .blade-head,
  .blade .blade-container {
    box-shadow: none;
    font-family: "Roboto"; }
  .blade .blade-head {
    background: #465769;
    box-sizing: border-box;
    height: 127px;
    padding: 30px 0 5px;
    position: relative;
    transition: height .3s ease; }
    .blade .blade-head .blade-status {
      height: 30px;
      position: absolute;
      top: 0;
      right: 0;
      left: 0; }
      .blade .blade-head .blade-status .status-message {
        height: 30px;
        background: #7a1c13;
        color: #fff;
        font-size: 14px;
        filter: alpha(opacity=50);
        display: flex;
        align-items: center;
        box-sizing: border-box;
        padding-left: 15px;
        line-height: normal; }
      .blade .blade-head .blade-status .error-icon-container {
        padding-bottom: 2px; }
      .blade .blade-head .blade-status .error-message {
        padding-left: 7px;
        flex-grow: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        padding-right: 15px; }
      .blade .blade-head .blade-status .link-error-details {
        font-size: 14px;
        color: #999;
        margin-right: 15px;
        text-decoration: underline; }
        .blade .blade-head .blade-status .link-error-details:hover {
          color: #fff; }
      .blade .blade-head .blade-status .progress-bar {
        bottom: 0;
        height: auto;
        left: 0;
        margin: 0;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 200; }
    .blade .blade-head .blade-nav {
      height: 30px;
      left: 0;
      position: absolute;
      right: 0;
      text-align: right;
      top: 0; }
      .blade .blade-head .blade-nav .menu {
        background: rgba(0, 0, 0, 0.25);
        position: relative; }
      .blade .blade-head .blade-nav .menu-item {
        background: none;
        border: none;
        cursor: pointer;
        font-size: 0;
        height: 30px;
        line-height: 1.4;
        position: relative;
        width: 30px;
        z-index: 250; }
        .blade .blade-head .blade-nav .menu-item * {
          background: none;
          border: none;
          cursor: pointer;
          font-size: 0;
          height: 100%;
          width: 100%; }
        .blade .blade-head .blade-nav .menu-item .btn-ico {
          color: #fff;
          font-size: 13px;
          line-height: 0;
          margin: 12px 0 0; }
      .blade .blade-head .blade-nav .menu-item.__disabled {
        cursor: not-allowed; }
      .blade .blade-head .blade-nav .menu-item::after {
        color: #fff;
        content: '';
        left: 50%;
        margin: 0 0 0 -6px;
        position: absolute; }
      .blade .blade-head .blade-nav .menu-item:hover {
        background: #43b0e6; }
      .blade .blade-head .blade-nav .menu-item.__close:hover {
        background: #FF4A4A; }
      .blade .blade-head .blade-nav .menu-item.__disabled:hover {
        background: none; }
      .blade .blade-head .blade-nav .menu-item > *:disabled {
        cursor: not-allowed; }
    .blade .blade-head .blade-t {
      color: #fff;
      left: 0;
      margin: 8px 15px;
      min-height: 34px;
      padding: 0 0 0 45px;
      position: absolute;
      right: 0; }
      .blade .blade-head .blade-t .blade-t_head {
        font-size: 18px;
        margin: 4px 0 0; }
    .blade .blade-head .blade-t_ico {
      font-size: 34px;
      line-height: 34px;
      height: 34px;
      left: 0;
      position: absolute;
      top: 0;
      width: 40px; }
    .blade .blade-head .blade-t_head,
    .blade .blade-head .blade-t_subhead {
      font-weight: 300;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .blade .blade-head .blade-t_subhead {
      color: #bbb;
      font-size: 11px; }
    .blade .blade-head .blade-t.__secondary .blade-t_head {
      font-size: 14px;
      margin: 0; }
    .blade .blade-head .blade-toolbar {
      background: #465769;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: none;
      left: 0;
      overflow: hidden;
      position: absolute;
      right: 0;
      top: 79px;
      z-index: 50;
      transition: height .3s ease; }
      .blade .blade-head .blade-toolbar .menu {
        margin: 0 0 0 7px;
        white-space: normal; }
      .blade .blade-head .blade-toolbar .menu-item {
        margin: 7px 0; }
        .blade .blade-head .blade-toolbar .menu-item.separator {
          border-right: 1px solid rgba(255, 255, 255, 0.2); }
      .blade .blade-head .blade-toolbar .menu-item.__loading {
        pointer-events: none;
        position: relative; }
        .blade .blade-head .blade-toolbar .menu-item.__loading::after {
          background-color: #333;
          background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
          background-image: linear, 45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0);
          background-size: 30px 30px;
          bottom: 0;
          content: '';
          left: 0;
          opacity: .8;
          position: absolute;
          right: 0;
          top: 0;
          animation: linear 2s infinite progress;
          filter: alpha(opacity=80); }
      .blade .blade-head .blade-toolbar .menu-btn {
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
        font-size: 11px;
        font-weight: 300;
        display: block;
        padding: 0 10px;
        position: relative;
        text-align: center; }
        .blade .blade-head .blade-toolbar .menu-btn:hover {
          color: #43b0e6; }
        .blade .blade-head .blade-toolbar .menu-btn:disabled {
          color: #fff;
          cursor: not-allowed; }
      .blade .blade-head .blade-toolbar .menu-ico {
        display: block;
        font-size: 18px;
        margin: 0 0 3px; }
    .blade .blade-head .blade-switch {
      bottom: 4px;
      position: absolute;
      right: 28px;
      text-align: center;
      z-index: 100; }
      .blade .blade-head .blade-switch .switch-t {
        color: #fff;
        display: block;
        font-size: 11px;
        font-weight: 300;
        margin: 0 0 3px;
        text-transform: uppercase; }
      .blade .blade-head .blade-switch .form-control .form-label, .blade .blade-head .blade-switch .form-control .form-label-login, .blade .blade-head .blade-switch .form-control .themeSettingsBlade .uploader__form-label, .themeSettingsBlade .blade .blade-head .blade-switch .form-control .uploader__form-label, .blade .blade-head .blade-switch .form-control .themeSettingsBlade .uploader-preview__sub-title, .themeSettingsBlade .blade .blade-head .blade-switch .form-control .uploader-preview__sub-title {
        margin: 0; }

.blade.__animate {
  z-index: -1; }

.blade.__active {
  margin: 0 0 0 40px; }
  .blade.__active .blade-head {
    background: #34454c; }

.menu.__more .menu-item {
  margin: 5px 0; }

.menu.__more .blade-switch {
  padding: 0 10px;
  position: static; }

.blade .blade-head,
.blade .blade-container {
  padding-right: 0; }

.blade .blade-wrapper,
.blade .blade-container,
.blade .blade-content,
.blade .themeSettingsBlade__blade-content,
.blade .blade-inner {
  height: 100%; }

.blade .blade-container {
  height: calc(100% - 130px);
  overflow: hidden;
  position: relative;
  transition: height .3s ease; }
  .blade .blade-container .blade-static {
    background: #fbfdfe;
    border-color: #eaedf3;
    border-style: solid;
    border-width: 0 0 2px;
    box-sizing: border-box;
    height: 70px; }
  .blade .blade-container .blade-static.__quote {
    height: 230px; }
  .blade .blade-container .blade-static.__collapsed .breadcrumbs {
    padding: 13px 20px; }
  .blade .blade-container .blade-static.__expanded .breadcrumbs {
    margin: 0 0 -15px;
    padding: 14px 15px; }
  .blade .blade-container .blade-static .form-group, .blade .blade-container .blade-static .themeSettingsBlade .uploader__form-group, .themeSettingsBlade .blade .blade-container .blade-static .uploader__form-group,
  .blade .blade-container .blade-static .form,
  .blade .blade-container .blade-static .themeSettingsBlade .uploader__form,
  .themeSettingsBlade .blade .blade-container .blade-static .uploader__form {
    margin: 0 20px;
    padding: 17px 0;
    position: relative; }
  .blade .blade-container .blade-static .form-group:only-child, .blade .blade-container .blade-static .themeSettingsBlade .uploader__form-group:only-child, .themeSettingsBlade .blade .blade-container .blade-static .uploader__form-group:only-child {
    box-sizing: border-box;
    height: 100%; }
  .blade .blade-container .blade-static .column .form-group, .blade .blade-container .blade-static .column .themeSettingsBlade .uploader__form-group, .themeSettingsBlade .blade .blade-container .blade-static .column .uploader__form-group {
    margin: 5px 10px 0 0;
    padding: 0; }
  .blade .blade-container .blade-static .form-group .link, .blade .blade-container .blade-static .themeSettingsBlade .uploader__form-group .link, .themeSettingsBlade .blade .blade-container .blade-static .uploader__form-group .link {
    display: inline-block;
    font-size: 14px;
    margin: 12px 10px 0 0; }
  .blade .blade-container .blade-static .form-input.__search {
    margin-right: 80px; }
    .blade .blade-container .blade-static .form-input.__search:last-child {
      margin-right: 0; }
  .blade .blade-container .blade-static .form-count {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0; }
  .blade .blade-container .blade-static .searchrow {
    align-content: stretch;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row; }
    .blade .blade-container .blade-static .searchrow .column {
      width: 94%;
      margin-right: 16px; }
      .blade .blade-container .blade-static .searchrow .column-half {
        width: 47%;
        margin-right: 16px; }
    .blade .blade-container .blade-static .searchrow .form-input .btn {
      background: url(/images/layout/remove.svg) no-repeat content-box center;
      min-width: 34px; }
    .blade .blade-container .blade-static .searchrow .filter-edit {
      font-size: 17px;
      margin: 4px 16px 0 -8px; }
    .blade .blade-container .blade-static .searchrow .form-count2 {
      top: 16%;
      transform: translateY(16%);
      font-weight: 500; }
  .blade .blade-container .blade-static .pagination {
    border: none;
    margin: 0;
    padding: 0;
    text-align: left; }
  .blade .blade-container .blade-static .btn + .btn {
    margin: 0 0 0 15px; }
  .blade .blade-container .blade-static.__expanded {
    height: 114px; }
  .blade .blade-container .blade-static.__collapsed {
    height: 60px; }
  .blade .blade-container .blade-static.__bottom {
    border-width: 2px 0 0;
    bottom: 0;
    left: 0;
    padding: 18px 20px;
    position: absolute;
    right: 8px;
    z-index: 100; }
  .blade .blade-container .blade-static.__bottom .form-label, .blade .blade-container .blade-static.__bottom .form-label-login, .blade .blade-container .blade-static.__bottom .themeSettingsBlade .uploader__form-label, .themeSettingsBlade .blade .blade-container .blade-static.__bottom .uploader__form-label, .blade .blade-container .blade-static.__bottom .themeSettingsBlade .uploader-preview__sub-title, .themeSettingsBlade .blade .blade-container .blade-static.__bottom .uploader-preview__sub-title {
    margin: 0 0 5px; }
  .blade .blade-container .blade-static + .blade-content, .blade .blade-container .blade-static + .themeSettingsBlade__blade-content {
    height: calc(100% - 72px); }
  .blade .blade-container .blade-static.__quote + .blade-content, .blade .blade-container .blade-static.__quote + .themeSettingsBlade__blade-content {
    height: calc(100% - 230px); }
  .blade .blade-container .blade-static.__collapsed + .blade-content, .blade .blade-container .blade-static.__collapsed + .themeSettingsBlade__blade-content {
    height: calc(100% - 62px); }
  .blade .blade-container .blade-static.__expanded + .blade-content, .blade .blade-container .blade-static.__expanded + .themeSettingsBlade__blade-content {
    height: calc(100% - 116px); }
  .blade .blade-container .blade-static + .blade-static.__bottom + .blade-content, .blade .blade-container .blade-static + .blade-static.__bottom + .themeSettingsBlade__blade-content {
    height: calc(100% - 140px); }
  .blade .blade-container .blade-static.__collapsed + .blade-static.__bottom + .blade-content, .blade .blade-container .blade-static.__collapsed + .blade-static.__bottom + .themeSettingsBlade__blade-content,
  .blade .blade-container .blade-static + .blade-static.__bottom.__collapsed + .blade-content,
  .blade .blade-container .blade-static + .blade-static.__bottom.__collapsed + .themeSettingsBlade__blade-content {
    height: calc(100% - 130px); }
  .blade .blade-container .blade-static.__collapsed + .blade-static.__bottom.__collapsed + .blade-content, .blade .blade-container .blade-static.__collapsed + .blade-static.__bottom.__collapsed + .themeSettingsBlade__blade-content {
    height: calc(100% - 120px); }
  .blade .blade-container .blade-static.__expanded + .blade-static.__bottom + .blade-content, .blade .blade-container .blade-static.__expanded + .blade-static.__bottom + .themeSettingsBlade__blade-content,
  .blade .blade-container .blade-static + .blade-static.__bottom.__expanded + .blade-content,
  .blade .blade-container .blade-static + .blade-static.__bottom.__expanded + .themeSettingsBlade__blade-content {
    height: calc(100% - 184px); }
  .blade .blade-container .blade-static.__expanded + .blade-static.__bottom.__expanded + .blade-content, .blade .blade-container .blade-static.__expanded + .blade-static.__bottom.__expanded + .themeSettingsBlade__blade-content {
    height: calc(100% - 228px); }
  .blade .blade-container .blade-static.__expanded + .blade-static.__bottom.__collapsed + .blade-content, .blade .blade-container .blade-static.__expanded + .blade-static.__bottom.__collapsed + .themeSettingsBlade__blade-content {
    height: calc(100% - 174px); }
  .blade .blade-container .blade-container .canceled + .blade-content, .blade .blade-container .blade-container .canceled + .themeSettingsBlade__blade-content {
    height: calc(100% - 45px); }

.blade .blade-container.__loading {
  opacity: .25;
  pointer-events: none;
  filter: alpha(opacity=25); }


.blade .blade-content,
.blade .themeSettingsBlade__blade-content {
  white-space: normal; }

.blade.__active .blade-content, .blade.__active .themeSettingsBlade__blade-content {
  background: #f1fbfe; }

.blade .blade-content.__gray, .blade .__gray.themeSettingsBlade__blade-content {
  background: #fbfdfe; }

.__canceled {
  background-color: #eff7fc; }


.blade .blade-content,
.blade .themeSettingsBlade__blade-content {
  min-width: 420px;
  width: 420px; }
  .blade .blade-content.__small-narrow, .blade .__small-narrow.themeSettingsBlade__blade-content {
    min-width: 290px;
    width: 290px; }
  .blade .blade-content.__medium-wide, .blade .__medium-wide.themeSettingsBlade__blade-content {
    min-width: 550px;
    width: 550px; }
  .blade .blade-content.__large-wide, .blade .__large-wide.themeSettingsBlade__blade-content {
    min-width: 680px;
    width: 680px; }
  .blade .blade-content.__xlarge-wide, .blade .__xlarge-wide.themeSettingsBlade__blade-content {
    min-width: 810px;
    width: 810px; }
  .blade .blade-content.__xxlarge-wide, .blade .__xxlarge-wide.themeSettingsBlade__blade-content {
    min-width: 940px;
    width: 940px; }

.blade.__maximized .blade-content, .blade.__maximized .themeSettingsBlade__blade-content,
.blade.__expanded .blade-content,
.blade.__expanded .themeSettingsBlade__blade-content {
  width: 100%; }

.blade .blade-content.__tree, .blade .__tree.themeSettingsBlade__blade-content {
  width: 340px; }

.blade-content .table, .themeSettingsBlade__blade-content .table {
  min-width: 420px; }

.blade-content.__medium-wide .table, .__medium-wide.themeSettingsBlade__blade-content .table {
  min-width: 550px; }

.blade .blade-inner {
  box-sizing: border-box;
  overflow: hidden;
  padding: 0 20px;
  position: relative; }

.blade.__maximized .blade-inner,
.blade.__expanded .blade-inner,
.blade .blade-inner:hover {
  overflow-y: auto; }

.blade .blade-inner.ui-grid-no-scroll {
  overflow: visible; }

.blade-content.__small-narrow .inner-block, .__small-narrow.themeSettingsBlade__blade-content .inner-block, .blade-content.__small-narrow .themeSettingsBlade__inner-block, .__small-narrow.themeSettingsBlade__blade-content .themeSettingsBlade__inner-block {
  min-width: 250px;
  width: 250px; }

.blade-content .inner-block, .themeSettingsBlade__blade-content .inner-block, .blade-content .themeSettingsBlade__inner-block, .themeSettingsBlade__blade-content .themeSettingsBlade__inner-block {
  min-width: 380px;
  width: 380px; }

.blade-content.__medium-wide .inner-block, .__medium-wide.themeSettingsBlade__blade-content .inner-block, .blade-content.__medium-wide .themeSettingsBlade__inner-block, .__medium-wide.themeSettingsBlade__blade-content .themeSettingsBlade__inner-block {
  min-width: 510px;
  width: 510px; }

.blade-content.__large-wide .inner-block, .__large-wide.themeSettingsBlade__blade-content .inner-block, .blade-content.__large-wide .themeSettingsBlade__inner-block, .__large-wide.themeSettingsBlade__blade-content .themeSettingsBlade__inner-block {
  min-width: 640px;
  width: 640px; }

.blade-content.__xlarge-wide .inner-block, .__xlarge-wide.themeSettingsBlade__blade-content .inner-block, .blade-content.__xlarge-wide .themeSettingsBlade__inner-block, .__xlarge-wide.themeSettingsBlade__blade-content .themeSettingsBlade__inner-block {
  min-width: 770px;
  width: 770px; }

.blade-content.__xxlarge-wide .inner-block, .__xxlarge-wide.themeSettingsBlade__blade-content .inner-block, .blade-content.__xxlarge-wide .themeSettingsBlade__inner-block, .__xxlarge-wide.themeSettingsBlade__blade-content .themeSettingsBlade__inner-block {
  min-width: 900px;
  width: 900px; }

.blade.__maximized .blade-content .inner-block, .blade.__maximized .themeSettingsBlade__blade-content .inner-block, .blade.__maximized .blade-content .themeSettingsBlade__inner-block, .blade.__maximized .themeSettingsBlade__blade-content .themeSettingsBlade__inner-block,
.blade.__expanded .blade-content .inner-block,
.blade.__expanded .themeSettingsBlade__blade-content .inner-block,
.blade.__expanded .blade-content .themeSettingsBlade__inner-block,
.blade.__expanded .themeSettingsBlade__blade-content .themeSettingsBlade__inner-block {
  width: 100%; }

.blade-content.__tree .inner-block, .__tree.themeSettingsBlade__blade-content .inner-block, .blade-content.__tree .themeSettingsBlade__inner-block, .__tree.themeSettingsBlade__blade-content .themeSettingsBlade__inner-block {
  width: 300px; }

.blade .blade-loader {
  padding: 20px;
  text-align: center; }
  .blade .blade-loader::after {
    color: #43b0e6;
    content: attr(data-title);
    font-size: 60px;
    left: 0;
    overflow: hidden;
    position: absolute;
    text-transform: uppercase;
    top: 0;
    white-space: nowrap;
    animation: loading 2s infinite ease-in-out; }

.blade .example-mail {
  padding: 20px 0; }

/* Image preview */
.image-preview {
  background: #fff;
  border: 2px solid #a1c0d4;
  height: 300px;
  line-height: 298px;
  overflow: hidden;
  position: fixed;
  width: 300px;
  z-index: 50; }
  .image-preview * {
    display: inline-block;
    max-width: 100%;
    vertical-align: middle; }

.image-preview-small {
  background: #fff;
  border: 2px solid #a1c0d4;
  height: 108px;
  width: 108px;
  line-height: 100px;
  overflow: hidden;
  z-index: 50; }
  .image-preview-small * {
    display: inline-block;
    max-width: 100%;
    vertical-align: middle; }

.image-preview-no-image {
  text-align: center;
  font-size: 48px;
  color: #dee9f0; }

/* Gridster */
.gridster {
  list-style: none; }
  .gridster > ul {
    height: 100%; }
  .gridster > .list.__editing, .themeSettingsBlade .gridster > .__editing.uploader__form-group {
    background: url(/images/grid.png) repeat scroll 0 0; }
  .gridster gridster-item,
  .gridster .list-item {
    background: #fbfdfe;
    box-sizing: border-box;
    box-shadow: 0 0 0 2px #dee9f0 inset;
    padding: 2px;
    position: absolute;
    text-align: center; }
    .gridster gridster-item:hover,
    .gridster .list-item:hover {
      box-shadow: 0 0 0 2px #a1c0d4 inset; }
  .gridster .list-item.error {
    background: #f2dede;
    box-shadow: 0 0 0 2px #ebccd1 inset;
    color: #e0a9a9; }
  .gridster .list-item.success {
    background: #dff0d8;
    box-shadow: 0 0 0 2px #d6e9c6 inset;
    color: #b2e0a9; }
  .gridster .list-item.warning {
    background: #fcf8e3;
    box-shadow: 0 0 0 2px #faebcc inset;
    color: #e0d8a9; }
  .gridster .list-item.info {
    background: #d9edf7;
    box-shadow: 0 0 0 2px #bce8f1 inset;
    color: #a9d1e0; }
  .gridster .gridster-item-moving {
    opacity: .7;
    filter: alpha(opacity=70); }
  .gridster .list:not(.__editing) .list-item .customize, .gridster .themeSettingsBlade .uploader__form-group:not(.__editing) .list-item .customize, .themeSettingsBlade .gridster .uploader__form-group:not(.__editing) .list-item .customize {
    background: #a1c0d4;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    left: 0;
    padding: 3px 10px;
    position: absolute;
    text-align: center;
    top: -22px;
    z-index: 50; }

.customize .custom-ico {
  color: #fff;
  font-size: 12px; }

.gridster-preview-holder {
  background: #eaedf3;
  border-color: #a1c0d4;
  border-style: dashed;
  border-width: 1px; }

.gridster .gridster-cnt,
.gridster [ng-model="widget"] {
  overflow: hidden;
  text-align: center; }

.gridster .gridster-cnt {
  cursor: pointer;
  bottom: 10px;
  left: 10px;
  position: absolute;
  right: 10px;
  top: 10px; }

.gridster [ng-model="widget"] {
  cursor: move;
  height: 100%;
  width: 100%; }

.gridster .gridster-cnt.__info, .gridster .themeSettingsBlade .gridster-cnt.uploader__form-group, .themeSettingsBlade .gridster .gridster-cnt.uploader__form-group,
.gridster .gridster-cnt.__note {
  cursor: inherit;
  bottom: 2px;
  left: 2px;
  right: 2px;
  top: 2px; }

.gridster .gridster-cnt.__note {
  cursor: pointer; }

.gridster .gridster-cnt::after {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.gridster-cnt .cnt-inner {
  display: inline-block;
  height: auto;
  line-height: 1.4;
  margin: -24px 0 0;
  padding: 0;
  vertical-align: middle;
  word-spacing: 0; }

.gridster .image {
  border: 1px solid #eaedf3;
  box-sizing: border-box;
  height: 50px;
  left: 69px;
  position: absolute;
  top: 69px;
  width: 50px; }
  .gridster .image::after {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }
  .gridster .image img {
    display: block;
    max-height: 100%;
    max-width: 100%; }

.gridster .list-t,
.gridster .gallery-descr {
  color: #161d25;
  font-size: 12px;
  font-weight: 500;
  word-spacing: 0; }

.gridster .list-price {
  color: #43b0e6;
  font-size: 12px; }

.gridster .list-count {
  color: #43b0e6;
  font-size: 22px;
  font-weight: 300; }

.gridster .list-count + .list-t {
  font-size: 12px; }

.gridster .list-ico,
.gridster .gallery-ico,
.gridster .comment-ico {
  color: #dee9f0;
  font-size: 24px; }

.gridster .gallery-ico,
.gridster .comment-ico {
  font-size: 48px; }

.gridster .list-item:hover .list-ico,
.gridster .list-item:hover .gallery-ico,
.gridster .list-item:hover .comment-ico {
  color: #a1c0d4; }

.gridster .list-img {
  border: 1px solid #eaedf3;
  display: inline-block;
  height: 50px;
  vertical-align: middle;
  width: 50px; }
  .gridster .list-img * {
    display: block;
    max-width: 100%; }

/* Tooltip */
.tooltip {
  font-family: "Roboto";
  font-size: 12px;
  position: absolute;
  z-index: 100; }
  .tooltip .tooltip-arrow {
    border-color: transparent;
    border-style: solid;
    position: absolute;
    width: 0;
    height: 0; }
  .tooltip.left, .tooltip.right {
    padding: 0 8px; }
    .tooltip.left .tooltip-arrow, .tooltip.right .tooltip-arrow {
      top: 50%;
      margin-top: -8px; }
  .tooltip.left {
    margin-left: -3px; }
    .tooltip.left .tooltip-arrow {
      border-left-color: #43b0e6;
      border-width: 8px 0 8px 8px;
      right: 0; }
  .tooltip.right {
    margin-left: 3px; }
    .tooltip.right .tooltip-arrow {
      border-right-color: #43b0e6;
      border-width: 8px 8px 8px 0;
      left: 0; }
  .tooltip.top, .tooltip.bottom {
    padding: 8px 0; }
    .tooltip.top .tooltip-arrow, .tooltip.bottom .tooltip-arrow {
      left: 50%;
      margin-left: -8px; }
  .tooltip.top {
    margin-top: -3px; }
    .tooltip.top .tooltip-arrow {
      border-top-color: #43b0e6;
      border-width: 8px 8px 0 8px;
      bottom: 0; }
  .tooltip.bottom {
    margin-top: 3px; }
    .tooltip.bottom .tooltip-arrow {
      border-bottom-color: #43b0e6;
      border-width: 0 8px 8px 8px;
      top: 0; }
  .tooltip .tooltip-inner {
    background: #43b0e6;
    color: #fff;
    padding: 10px;
    max-width: 600px; }

/* Informer */
.__informer {
  background: #ecf7fc;
  box-shadow: 0 0 0 2px #dee9f0 inset;
  color: #a1c0d4;
  font-size: 22px;
  padding: 10px; }
  .__informer::after {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }
  .__informer * {
    display: inline-block;
    line-height: 1.2;
    vertical-align: middle; }

.iframe-cnt {
  bottom: 20px;
  left: 20px;
  position: absolute;
  right: 280px;
  top: 20px; }

.lookbook {
  background: #fff;
  bottom: 20px;
  position: absolute;
  right: 28px;
  top: 20px;
  width: 240px; }

/* Tabs */
.tabs-elements {
  margin: 0 -20px;
  padding: 18px 0 0;
  overflow: hidden;
  position: relative; }

.tabs .tab-item {
  background: #eaedf3;
  border-top: 1px solid #eaedf3;
  box-sizing: border-box;
  color: #43b0e6;
  cursor: pointer;
  float: left;
  font-size: 14px;
  font-weight: 600;
  height: 34px;
  line-height: 26px;
  position: relative;
  top: 2px;
  text-align: center; }

.tabs .tab-item + .tab-item {
  border-left: 1px solid #fff; }

.tabs .tab-item.__selected {
  background: #fff;
  border-bottom: 2px solid #fff;
  line-height: 30px;
  top: 0; }

.tabs .tab-item:nth-last-child(2),
.tabs .tab-item:nth-last-child(2) ~ .tab-item {
  width: 50%; }

.tabs .tab-item:nth-last-child(3),
.tabs .tab-item:nth-last-child(3) ~ .tab-item {
  width: 33.3333%; }

.tabs .tab-item:nth-last-child(4),
.tabs .tab-item:nth-last-child(4) ~ .tab-item {
  width: 25%; }

.tabs .tab-item:nth-last-child(5),
.tabs .tab-item:nth-last-child(5) ~ .tab-item {
  width: 20%; }

.tabs .tab-cnt {
  clear: both;
  display: none;
  padding: 10px 0; }

.tabs .tab-cnt.__opened {
  display: block; }

.tab-cnt h1,
.tab-cnt h2,
.tab-cnt h3 {
  margin: 20px 0; }

.tab-cnt p,
.tab-cnt ul,
.tab-cnt ol {
  margin: 0 0 10px; }

.tab-cnt img {
  margin: 10px 0; }

/* Popup */
.overlay {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  z-index: 9000;
  transition: .5s ease-in-out; }

.gallery-tpl {
  display: none; }

.overlay.__loaded {
  background: rgba(0, 0, 0, 0.7); }

.overlay .overlay-cnt {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0; }
  .overlay .overlay-cnt::after {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }

.overlay .popup {
  background: #fff;
  border: 5px solid #a1c0d4;
  bottom: 40px;
  font-family: "Roboto";
  left: 80px;
  position: absolute;
  right: 80px;
  transform-origin: 50% 100%;
  top: 40px;
  transform: scale(0);
  transition: .5s ease; }

.popup .popup-cnt {
  bottom: 0;
  box-sizing: border-box;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center; }

.modal-body .popup-close {
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 50; }

.modal-body.size-clearfix {
  max-height: 530px;
  overflow: auto; }

@media (max-height: 766px) {
  .modal-body.size-clearfix {
    max-height: 400px;
    overflow: auto; } }

.modal-body .item-list-clearfix {
  max-height: 530px; }

.modal-body .gallery {
  height: 100%;
  overflow: hidden;
  position: relative;
  text-align: center; }

.gallery .image-link {
  background: #a1c0d4;
  color: #fff;
  left: 0;
  height: 45px;
  line-height: 40px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  z-index: 25; }

.gallery .__slides,
.gallery .__slides .list-item {
  height: 100%;
  width: 100%; }

.gallery .control {
  color: #a1c0d4;
  font-size: 30px;
  left: -50px;
  position: absolute;
  text-align: center;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  transition: .35s ease; }
  .gallery .control::after {
    content: '';
    height: 100%;
    display: inline-block;
    vertical-align: middle; }

.gallery .control:hover {
  color: #43b0e6; }

.gallery:hover .ctrl-l {
  left: 20px; }

.gallery .ctrl-r {
  left: auto;
  right: 20px; }

.gallery:hover .ctrl-r {
  right: 20px; }

.gallery .__slides {
  padding: 55px 0 10px;
  position: relative; }

.__slides .list-item {
  float: left; }
  .__slides .list-item::after {
    content: '';
    height: 100%;
    display: inline-block;
    vertical-align: middle; }

.__slides .list-img {
  display: inline-block;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle; }

.gallery .__navs {
  bottom: -100px;
  height: 50px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: .35s ease; }

.gallery:hover .__navs {
  bottom: 20px; }

.__navs .list-item {
  background: #fff;
  border: 1px solid #eaedf3;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  filter: alpha(opacity=50);
  height: 100%;
  margin: 0 4px;
  opacity: .5;
  transition: .3s ease;
  width: 50px; }

.__navs .list-item:hover,
.__navs .list-item.__selected {
  border-color: #a1c0d4;
  filter: alpha(opacity=100);
  opacity: 1; }

.__navs .list-item::after {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.__navs .list-item .list-img {
  display: inline-block;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle; }

.btn {
  align-items: center;
  border-radius: 2px;
  display: inline-flex;
  font-size: 11px;
  height: 28px;
  padding: 0 30px; }
  .btn:hover {
    opacity: 1; }
  .btn--orange {
    background-color: #FFBB0D; }
    .btn--orange:hover {
      background-color: #f3ae00; }
  .btn--blue {
    background-color: #3a9aff; }
    .btn--blue:hover {
      background-color: #218dff; }

.fa-gray {
  color: #a5a5a5;
  margin: 0 0 10px 0; }

.fa-window-maximize,
.fa-window-minimize,
.fa-times {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px !important; }

.fa-times {
  font-size: 16px !important; }
  .fa-times::before {
    transform: translateY(-1px); }

/* Drag and drop */
.drag-area, .themeSettingsBlade .uploader__drag-area {
  background: #eaedf3;
  border: 2px dashed #a1c0d4;
  height: 100px;
  margin: 0 0 20px;
  padding: 0 20px;
  text-align: center; }
  .drag-area::after, .themeSettingsBlade .uploader__drag-area::after {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }

.drag-area.bd-blue, .themeSettingsBlade .bd-blue.uploader__drag-area, .themeSettingsBlade .uploader__drag-area.uploader-preview__bd-blue, .themeSettingsBlade .drag-area.uploader-preview__bd-blue {
  background: #d2e0e8; }

.drag-content, .themeSettingsBlade .uploader__drag-content {
  color: #a1c0d4;
  display: inline-block;
  font-size: 18px;
  text-shadow: 1px 1px 1px #fff;
  vertical-align: middle; }

/* Dashboard */
.dashboard {
  background: #f5f6f9;
  font-family: "Roboto";
  position: relative;
  z-index: 50; }
  .dashboard .dashboard-head {
    height: 80px;
    position: relative; }
  .dashboard .dashboard-area {
    box-sizing: border-box;
    height: calc(100% - 80px);
    margin: 0 3px 0 0;
    overflow: hidden;
    position: relative;
    width: 950px; }
    .dashboard .dashboard-area:hover .dashboard-inner {
      overflow: auto; }
  .dashboard .dashboard-inner {
    height: calc(100% - 22px);
    padding: 22px 90px 0;
    position: relative; }
    .dashboard .dashboard-inner .gridster-loaded {
      width: 770px; }
  .dashboard .dashboard-title {
    position: absolute;
    top: 30px;
    font-weight: 300;
    left: 90px;
    text-shadow: 1px 2px rgba(255, 255, 255, 0.5), 2px -2px rgba(255, 255, 255, 0.5), -2px 2px rgba(255, 255, 255, 0.5), -2px -2px rgba(255, 255, 255, 0.5); }
    .dashboard .dashboard-title h1,
    .dashboard .dashboard-title .__logo {
      display: inline; }
    .dashboard .dashboard-title .__logo {
      max-height: 53px;
      vertical-align: top; }

/* Log */
.log {
  border: 1px solid #eaedf3;
  font-size: 12px;
  height: 300px;
  line-height: 1.4;
  margin: 15px 0;
  overflow: auto;
  padding: 20px;
  overflow-wrap: break-word; }

.log .__info, .log .themeSettingsBlade .uploader__form-group, .themeSettingsBlade .log .uploader__form-group {
  color: #43b0e6; }

.log .__warning {
  color: #FFBB0D; }

.log .__debug {
  color: #a6a6a6; }

.log .__error {
  color: #FF4A4A; }

/* Loader */
.loader {
  display: block;
  height: 75px;
  margin: 0 auto;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  width: 350px; }
  .loader span {
    background: #eaedf3;
    height: 20px;
    position: absolute;
    top: 25px;
    width: 20px;
    animation: loader 2.5s infinite ease; }
  .loader span:nth-child(1) {
    animation-delay: .8s; }
  .loader span:nth-child(2) {
    left: 30px;
    animation-delay: .6s; }
  .loader span:nth-child(3) {
    left: 60px;
    animation-delay: .4s; }
  .loader span:nth-child(4) {
    left: 90px;
    animation-delay: .2s; }
  .loader span:nth-child(5) {
    left: 120px; }

.uk-htmleditor-fullscreen {
  left: 240px !important; }
  .has-demo-warning .uk-htmleditor-fullscreen {
    top: 28px !important; }
  .nav-bar.__collapsed + .cnt .uk-htmleditor-fullscreen {
    left: 72px !important; }

.list-ico.__customers,
.menu-ico.__customers,
.blade-t_ico.__customers {
  text-align: center; }
  .list-ico.__customers i,
  .menu-ico.__customers i,
  .blade-t_ico.__customers i {
    bottom: 0;
    font-style: normal;
    left: 0;
    position: absolute;
    right: 0;
    top: 0; }
    .list-ico.__customers i:before, .list-ico.__customers i:after,
    .menu-ico.__customers i:before,
    .menu-ico.__customers i:after,
    .blade-t_ico.__customers i:before,
    .blade-t_ico.__customers i:after {
      content: '\F007';
      font-size: 16px;
      text-shadow: none;
      position: absolute;
      top: 2px; }
    .list-ico.__customers i:before,
    .menu-ico.__customers i:before,
    .blade-t_ico.__customers i:before {
      left: 0; }
    .list-ico.__customers i:after,
    .menu-ico.__customers i:after,
    .blade-t_ico.__customers i:after {
      right: 0; }

.list-ico.__customers,
.menu-ico.__customers {
  position: relative; }

/* Fix by angular ng-animate */
[ng\:cloak], [ng-cloak], .ng-cloak {
  display: none !important; }

.ng-hide,
.ng-hide-animate,
.__hide {
  display: none; }

/* Other */
.no-data,
.__gray {
  color: #999; }

.__lightblue {
  color: #B8D0DF; }

.block {
  margin: 0 0 20px; }

.alt-description {
  color: #43b0e6 !important; }

.demo-warning {
  align-items: center;
  background: #f15100;
  color: #fff;
  display: flex;
  font-family: "Roboto";
  font-size: 13px;
  justify-content: center;
  height: 30px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  z-index: 9000; }

/* CodeMirror */
.blade-content .CodeMirror, .themeSettingsBlade__blade-content .CodeMirror {
  border: 1px solid #ddd;
  direction: ltr;
  font-size: 13px; }

/* Scrollbar Chrome, Edge*/
*::-webkit-scrollbar {
  background-color: rgba(0, 0, 0, 0);
  width: 3px;
  height: 3px; }

*::-webkit-scrollbar-thumb {
  background-color: #A6A6A6;
  border-radius: 1px; }

/* Scrollbar Firefox*/
* {
  scrollbar-width: thin;
  scrollbar-color: #A6A6A6 rgba(0, 0, 0, 0); }

/* Scrollbar IE */
* {
  -ms-scrollbar-arrow-color: rgba(0, 0, 0, 0);
  -ms-scrollbar-face-color: #A6A6A6;
  -ms-scrollbar-shadow-color: #A6A6A6;
  -ms-scrollbar-track-color: rgba(0, 0, 0, 0); }

/* Platform error bar */
.platform-error-bar {
  background: #FF4A4A;
  color: #fff;
  font-family: "Roboto";
  font-size: 13px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  z-index: 9000; }
  .platform-error-bar a {
    color: #fff; }
  .platform-error-bar .close {
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 12px;
    z-index: 5; }
  .platform-error-bar .error-title {
    height: 60px;
    line-height: 60px;
    position: relative; }
  .platform-error-bar .more {
    color: #fff;
    font-size: 12px;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%); }
  .platform-error-bar .error-detail {
    margin: 5px 0;
    max-height: 250px;
    padding: 10px 20px;
    text-align: left;
    overflow: auto; }

/* Flags */
.langCode {
  display: inline-block;
  height: 11px;
  width: 16px; }

.flag {
  background: url(/images/flags.png) no-repeat;
  display: inline-block;
  height: 11px;
  width: 16px; }

.flag-ad {
  background-position: -16px 0; }

.flag-ae {
  background-position: -32px 0; }

.flag-af {
  background-position: -48px 0; }

.flag-ag {
  background-position: -64px 0; }

.flag-ai {
  background-position: -80px 0; }

.flag-al {
  background-position: -96px 0; }

.flag-am {
  background-position: -112px 0; }

.flag-an {
  background-position: -128px 0; }

.flag-ao {
  background-position: -144px 0; }

.flag-ar {
  background-position: -160px 0; }

.flag-as {
  background-position: -176px 0; }

.flag-at {
  background-position: -192px 0; }

.flag-au {
  background-position: -208px 0; }

.flag-aw {
  background-position: -224px 0; }

.flag-az {
  background-position: -240px 0; }

.flag-ba {
  background-position: 0 -11px; }

.flag-bb {
  background-position: -16px -11px; }

.flag-bd {
  background-position: -32px -11px; }

.flag-be {
  background-position: -48px -11px; }

.flag-bf {
  background-position: -64px -11px; }

.flag-bg {
  background-position: -80px -11px; }

.flag-bh {
  background-position: -96px -11px; }

.flag-bi {
  background-position: -112px -11px; }

.flag-bj {
  background-position: -128px -11px; }

.flag-bm {
  background-position: -144px -11px; }

.flag-bn {
  background-position: -160px -11px; }

.flag-bo {
  background-position: -176px -11px; }

.flag-br {
  background-position: -192px -11px; }

.flag-bs {
  background-position: -208px -11px; }

.flag-bt {
  background-position: -224px -11px; }

.flag-bv {
  background-position: -240px -11px; }

.flag-bw {
  background-position: 0 -22px; }

.flag-by {
  background-position: -16px -22px; }

.flag-bz {
  background-position: -32px -22px; }

.flag-ca {
  background-position: -48px -22px; }

.flag-catalonia {
  background-position: -64px -22px; }

.flag-cd {
  background-position: -80px -22px; }

.flag-cf {
  background-position: -96px -22px; }

.flag-cg {
  background-position: -112px -22px; }

.flag-ch {
  background-position: -128px -22px; }

.flag-ci {
  background-position: -144px -22px; }

.flag-ck {
  background-position: -160px -22px; }

.flag-cl {
  background-position: -176px -22px; }

.flag-cm {
  background-position: -192px -22px; }

.flag-cn {
  background-position: -208px -22px; }

.flag-co {
  background-position: -224px -22px; }

.flag-cr {
  background-position: -240px -22px; }

.flag-cu {
  background-position: 0 -33px; }

.flag-cv {
  background-position: -16px -33px; }

.flag-cw {
  background-position: -32px -33px; }

.flag-cy {
  background-position: -48px -33px; }

.flag-cz {
  background-position: -64px -33px; }

.flag-de {
  background-position: -80px -33px; }

.flag-dj {
  background-position: -96px -33px; }

.flag-dk {
  background-position: -112px -33px; }

.flag-dm {
  background-position: -128px -33px; }

.flag-do {
  background-position: -144px -33px; }

.flag-dz {
  background-position: -160px -33px; }

.flag-ec {
  background-position: -176px -33px; }

.flag-ee {
  background-position: -192px -33px; }

.flag-eg {
  background-position: -208px -33px; }

.flag-eh {
  background-position: -224px -33px; }

.flag-england {
  background-position: -240px -33px; }

.flag-er {
  background-position: 0 -44px; }

.flag-es {
  background-position: -16px -44px; }

.flag-et {
  background-position: -32px -44px; }

.flag-eu {
  background-position: -48px -44px; }

.flag-fi {
  background-position: -64px -44px; }

.flag-fj {
  background-position: -80px -44px; }

.flag-fk {
  background-position: -96px -44px; }

.flag-fm {
  background-position: -112px -44px; }

.flag-fo {
  background-position: -128px -44px; }

.flag-fr {
  background-position: -144px -44px; }

.flag-ga {
  background-position: -160px -44px; }

.flag-gb {
  background-position: -176px -44px; }

.flag-gd {
  background-position: -192px -44px; }

.flag-ge {
  background-position: -208px -44px; }

.flag-gf {
  background-position: -224px -44px; }

.flag-gg {
  background-position: -240px -44px; }

.flag-gh {
  background-position: 0 -55px; }

.flag-gi {
  background-position: -16px -55px; }

.flag-gl {
  background-position: -32px -55px; }

.flag-gm {
  background-position: -48px -55px; }

.flag-gn {
  background-position: -64px -55px; }

.flag-gp {
  background-position: -80px -55px; }

.flag-gq {
  background-position: -96px -55px; }

.flag-gr {
  background-position: -112px -55px; }

.flag-gs {
  background-position: -128px -55px; }

.flag-gt {
  background-position: -144px -55px; }

.flag-gu {
  background-position: -160px -55px; }

.flag-gw {
  background-position: -176px -55px; }

.flag-gy {
  background-position: -192px -55px; }

.flag-hk {
  background-position: -208px -55px; }

.flag-hm {
  background-position: -224px -55px; }

.flag-hn {
  background-position: -240px -55px; }

.flag-hr {
  background-position: 0 -66px; }

.flag-ht {
  background-position: -16px -66px; }

.flag-hu {
  background-position: -32px -66px; }

.flag-ic {
  background-position: -48px -66px; }

.flag-id {
  background-position: -64px -66px; }

.flag-ie {
  background-position: -80px -66px; }

.flag-il {
  background-position: -96px -66px; }

.flag-im {
  background-position: -112px -66px; }

.flag-in {
  background-position: -128px -66px; }

.flag-io {
  background-position: -144px -66px; }

.flag-iq {
  background-position: -160px -66px; }

.flag-ir {
  background-position: -176px -66px; }

.flag-is {
  background-position: -192px -66px; }

.flag-it {
  background-position: -208px -66px; }

.flag-je {
  background-position: -224px -66px; }

.flag-jm {
  background-position: -240px -66px; }

.flag-jo {
  background-position: 0 -77px; }

.flag-jp {
  background-position: -16px -77px; }

.flag-ke {
  background-position: -32px -77px; }

.flag-kg {
  background-position: -48px -77px; }

.flag-kh {
  background-position: -64px -77px; }

.flag-ki {
  background-position: -80px -77px; }

.flag-km {
  background-position: -96px -77px; }

.flag-kn {
  background-position: -112px -77px; }

.flag-kp {
  background-position: -128px -77px; }

.flag-kr {
  background-position: -144px -77px; }

.flag-kurdistan {
  background-position: -160px -77px; }

.flag-kw {
  background-position: -176px -77px; }

.flag-ky {
  background-position: -192px -77px; }

.flag-kz {
  background-position: -208px -77px; }

.flag-la {
  background-position: -224px -77px; }

.flag-lb {
  background-position: -240px -77px; }

.flag-lc {
  background-position: 0 -88px; }

.flag-li {
  background-position: -16px -88px; }

.flag-lk {
  background-position: -32px -88px; }

.flag-lr {
  background-position: -48px -88px; }

.flag-ls {
  background-position: -64px -88px; }

.flag-lt {
  background-position: -80px -88px; }

.flag-lu {
  background-position: -96px -88px; }

.flag-lv {
  background-position: -112px -88px; }

.flag-ly {
  background-position: -128px -88px; }

.flag-ma {
  background-position: -144px -88px; }

.flag-mc {
  background-position: -160px -88px; }

.flag-md {
  background-position: -176px -88px; }

.flag-me {
  background-position: -192px -88px; }

.flag-mg {
  background-position: -208px -88px; }

.flag-mh {
  background-position: -224px -88px; }

.flag-mk {
  background-position: -240px -88px; }

.flag-ml {
  background-position: 0 -99px; }

.flag-mm {
  background-position: -16px -99px; }

.flag-mn {
  background-position: -32px -99px; }

.flag-mo {
  background-position: -48px -99px; }

.flag-mp {
  background-position: -64px -99px; }

.flag-mq {
  background-position: -80px -99px; }

.flag-mr {
  background-position: -96px -99px; }

.flag-ms {
  background-position: -112px -99px; }

.flag-mt {
  background-position: -128px -99px; }

.flag-mu {
  background-position: -144px -99px; }

.flag-mv {
  background-position: -160px -99px; }

.flag-mw {
  background-position: -176px -99px; }

.flag-mx {
  background-position: -192px -99px; }

.flag-my {
  background-position: -208px -99px; }

.flag-mz {
  background-position: -224px -99px; }

.flag-na {
  background-position: -240px -99px; }

.flag-nc {
  background-position: 0 -110px; }

.flag-ne {
  background-position: -16px -110px; }

.flag-nf {
  background-position: -32px -110px; }

.flag-ng {
  background-position: -48px -110px; }

.flag-ni {
  background-position: -64px -110px; }

.flag-nl {
  background-position: -80px -110px; }

.flag-no {
  background-position: -96px -110px; }

.flag-np {
  background-position: -112px -110px; }

.flag-nr {
  background-position: -128px -110px; }

.flag-nu {
  background-position: -144px -110px; }

.flag-nz {
  background-position: -160px -110px; }

.flag-om {
  background-position: -176px -110px; }

.flag-pa {
  background-position: -192px -110px; }

.flag-pe {
  background-position: -208px -110px; }

.flag-pf {
  background-position: -224px -110px; }

.flag-pg {
  background-position: -240px -110px; }

.flag-ph {
  background-position: 0 -121px; }

.flag-pk {
  background-position: -16px -121px; }

.flag-pl {
  background-position: -32px -121px; }

.flag-pm {
  background-position: -48px -121px; }

.flag-pn {
  background-position: -64px -121px; }

.flag-pr {
  background-position: -80px -121px; }

.flag-ps {
  background-position: -96px -121px; }

.flag-pt {
  background-position: -112px -121px; }

.flag-pw {
  background-position: -128px -121px; }

.flag-py {
  background-position: -144px -121px; }

.flag-qa {
  background-position: -160px -121px; }

.flag-re {
  background-position: -176px -121px; }

.flag-ro {
  background-position: -192px -121px; }

.flag-rs {
  background-position: -208px -121px; }

.flag-ru {
  background-position: -224px -121px; }

.flag-rw {
  background-position: -240px -121px; }

.flag-sa {
  background-position: 0 -132px; }

.flag-sb {
  background-position: -16px -132px; }

.flag-sc {
  background-position: -32px -132px; }

.flag-scotland {
  background-position: -48px -132px; }

.flag-sd {
  background-position: -64px -132px; }

.flag-se {
  background-position: -80px -132px; }

.flag-sg {
  background-position: -96px -132px; }

.flag-sh {
  background-position: -112px -132px; }

.flag-si {
  background-position: -128px -132px; }

.flag-sk {
  background-position: -144px -132px; }

.flag-sl {
  background-position: -160px -132px; }

.flag-sm {
  background-position: -176px -132px; }

.flag-sn {
  background-position: -192px -132px; }

.flag-so {
  background-position: -208px -132px; }

.flag-somaliland {
  background-position: -224px -132px; }

.flag-sr {
  background-position: -240px -132px; }

.flag-ss {
  background-position: 0 -143px; }

.flag-st {
  background-position: -16px -143px; }

.flag-sv {
  background-position: -32px -143px; }

.flag-sx {
  background-position: -48px -143px; }

.flag-sy {
  background-position: -64px -143px; }

.flag-sz {
  background-position: -80px -143px; }

.flag-tc {
  background-position: -96px -143px; }

.flag-td {
  background-position: -112px -143px; }

.flag-tf {
  background-position: -128px -143px; }

.flag-tg {
  background-position: -144px -143px; }

.flag-th {
  background-position: -160px -143px; }

.flag-tj {
  background-position: -176px -143px; }

.flag-tk {
  background-position: -192px -143px; }

.flag-tl {
  background-position: -208px -143px; }

.flag-tm {
  background-position: -224px -143px; }

.flag-tn {
  background-position: -240px -143px; }

.flag-to {
  background-position: 0 -154px; }

.flag-tr {
  background-position: -16px -154px; }

.flag-tt {
  background-position: -32px -154px; }

.flag-tv {
  background-position: -48px -154px; }

.flag-tw {
  background-position: -64px -154px; }

.flag-tz {
  background-position: -80px -154px; }

.flag-ua {
  background-position: -96px -154px; }

.flag-ug {
  background-position: -112px -154px; }

.flag-um {
  background-position: -128px -154px; }

.flag-us {
  background-position: -144px -154px; }

.flag-uy {
  background-position: -160px -154px; }

.flag-uz {
  background-position: -176px -154px; }

.flag-va {
  background-position: -192px -154px; }

.flag-vc {
  background-position: -208px -154px; }

.flag-ve {
  background-position: -224px -154px; }

.flag-vg {
  background-position: -240px -154px; }

.flag-vi {
  background-position: 0 -165px; }

.flag-vn {
  background-position: -16px -165px; }

.flag-vu {
  background-position: -32px -165px; }

.flag-wales {
  background-position: -48px -165px; }

.flag-wf {
  background-position: -64px -165px; }

.flag-ws {
  background-position: -80px -165px; }

.flag-ye {
  background-position: -96px -165px; }

.flag-yt {
  background-position: -112px -165px; }

.flag-za {
  background-position: -128px -165px; }

.flag-zanzibar {
  background-position: -144px -165px; }

.flag-zm {
  background-position: -160px -165px; }

.flag-zw {
  background-position: -176px -165px; }

.error {
  color: #FF4A4A;
  display: block;
  font-size: 12px;
  line-height: 1.4;
  padding: 5px 0; }

.__disabled,
.__disabled > * {
  filter: alpha(opacity=60);
  opacity: .6;
  pointer-events: none; }

*:disabled {
  cursor: not-allowed;
  filter: alpha(opacity=60);
  opacity: .6; }

input:read-only {
  opacity: .6;
  pointer-events: none; }

.table .table-item:hover,
.__items .list-item:hover,
.__files .list-block:hover {
  background: #ecf7fc; }

.nav-bar .bar .__items .list-item:hover {
  background: #ecf7fc; }

.nav-bar .bar .__items .list-item.__animated {
  background: #43b0e6; }

.table .table-item.__selected,
.__items .list-item:focus,
.__items .list-item.__selected,
.__files .list-item.__selected > .list-block {
  background: #d9effa; }

.__items label.list-item.__selected {
  background: #fff; }

/* Icons */
.tile-ico,
.__items .menu-ico,
.__items .list-ico,
.__files .list-ico {
  color: #a6a6a6; }

.tile:hover .tile-ico,
.__items .list-item:hover .list-ico,
.__items .list-item.__selected .list-ico,
.__files .list-block:hover .list-ico,
.__files .list-item.__selected > .list-block .list-ico {
  color: #161d25;
  text-shadow: none; }

.nav-bar .bar .__items .list-item:hover .list-ico {
  color: #161d25;
  text-shadow: none; }

.nav-bar .bar .__items .list-item.__animated .list-ico,
.nav-bar .bar .__items .list-item.__animated:hover .list-ico {
  color: #fff;
  text-shadow: none; }

.dropdown.__more .dropdown-content .list-item .list-fav:hover .list-ico {
  color: #FFBB0D; }

/* Links */
a {
  color: #43b0e6;
  cursor: pointer;
  font-size: 12px;
  text-decoration: none; }

.link {
  text-decoration: underline; }

a:hover,
.link:hover {
  color: #52a2ca; }

.__link {
  cursor: pointer; }

.__blue {
  color: #43b0e6; }

/* Transitions */
.nav-bar .menu-link,
.dropdown .dropdown-close,
.dropdown-content .list-link,
.blade-toolbar .menu-btn,
.pagination .menu-link,
.__items .menu-ico,
.__items .list-ico,
.breadcrumbs .menu-link,
.text-mini.__link,
.menu.__context .menu-item,
.nav-bar .menu-ico {
  transition: color .25s ease-in-out 0s; }

.nav-bar {
  transition: width .25s ease-in-out 0s; }

.nav-bar .dropdown.__opened {
  transition: transform .25s ease-in-out 0s; }

.cnt,
.uk-htmleditor-fullscreen {
  transition: left .25s ease-in-out 0s, right .25s ease-in-out 0s; }

.dropdown-content .list-link,
.blade-nav .menu-item,
.table .table-item,
.pagination .menu-link,
.__items .list-item,
.product-img .image,
.btn,
.form-control.__switch .switch, .list.__notice .list-link, .themeSettingsBlade .__notice.uploader__form-group .list-link,
.nav-bar .bar .__items .list-item .__animated,
.tree-block {
  transition: background-color .35s ease-in-out 0s; }

.__items .list-item {
  transition: background-color .35s ease-in-out 0s, width .25s ease-in-out 0s; }

.dashboard .dashboard-account,
.form-input input,
.form-input textarea,
.tile-gallery .gallery-img {
  transition: border-color .2s ease-in-out 0s; }

.tile,
.gridster .list-item {
  transition: box-shadow .25s ease-in-out 0s, height .25s ease-in-out 0s, width .25s ease-in-out 0s; }

.tile-ico {
  transition: color .25s ease-in-out 0s, margin .25s ease-in-out 0s; }

.tile.__selected:after,
.tile.__selected:before,
.btn {
  transition: opacity .25s ease-in-out 0s; }

/* Progress bar */
.progress-bar {
  background-color: #444;
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
  background-image: linear, 45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0);
  background-size: 30px 30px;
  height: 20px;
  margin: 10px 0;
  animation: progress 5s infinite linear; }

.progress-bar.__auqa {
  background-color: #43b0e6; }

.progress-bar.__mini {
  background-size: 15px 15px;
  height: 8px;
  animation: 2s linear 0s infinite running progress-mini; }

/* Animations */
@keyframes progress {
  from {
    background-position: 0 0; }
  to {
    background-position: -60px 0; } }

@keyframes progress-mini {
  from {
    background-position: 0 0; }
  to {
    background-position: -30px 0; } }

/* Preloaders */
@keyframes loader {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: translateX(0); }
  30% {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: translateX(120px); }
  60% {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: translateX(120px); }
  90% {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: translateX(500px); }
  100% {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: translateX(500px); } }

@keyframes notify {
  0% {
    background-color: transparent; }
  30% {
    background-color: #43b0e6; }
  90% {
    background-color: #43b0e6; }
  100% {
    background-color: transparent; } }

@keyframes bell {
  0%,
  100% {
    transform: rotate(0); }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: rotate(-7deg); }
  20%,
  40%,
  60%,
  80% {
    transform: rotate(7deg); } }

@keyframes blade {
  0% {
    transform: translateX(-420px); }
  100% {
    transform: translateX(0); } }

.themeSettingsBlade__blade-content {
  overflow-y: auto; }

.themeSettingsBlade__blade-inner {
  width: 100%;
  height: auto; }

.themeSettingsBlade__inner-block {
  margin-left: auto;
  margin-right: auto; }

.themeSettingsBlade__title {
  margin: 15px 20px 0;
  border-bottom: 1px solid #eaedf3;
  display: block;
  font-size: 24px;
  font-weight: 300;
  padding: 0 0 5px;
  width: 100%; }

.themeSettingsBlade .uploader__form {
  padding-top: 0px;
  padding-bottom: 8px; }

.themeSettingsBlade .uploader__drag-area {
  margin-bottom: 0; }

.themeSettingsBlade .uploader__hint {
  line-height: 14px; }

.themeSettingsBlade .uploader__drag-content {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center; }

.themeSettingsBlade .uploader__icon-container {
  width: 20%; }

.themeSettingsBlade .uploader__comment {
  user-select: none;
  font-size: 15px; }
  .themeSettingsBlade .uploader__comment a {
    font-size: inherit; }

.themeSettingsBlade .uploader__pb-container {
  min-height: 90px; }

.themeSettingsBlade .uploader-preview {
  box-sizing: border-box; }
  .themeSettingsBlade .uploader-preview__container {
    margin-bottom: 40px; }
  .themeSettingsBlade .uploader-preview__bd-blue {
    margin-bottom: 6px; }
  .themeSettingsBlade .uploader-preview__tile {
    padding: 16px;
    width: 100%;
    height: auto;
    max-height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #161D25; }
    .themeSettingsBlade .uploader-preview__tile--centered {
      justify-content: center; }
    .themeSettingsBlade .uploader-preview__tile--relative {
      padding: 0;
      position: relative; }
  .themeSettingsBlade .uploader-preview__img {
    display: block; }
    .themeSettingsBlade .uploader-preview__img--absolute {
      position: absolute; }

.themeSettingsBlade hr {
  margin: 0; }

.error-feature .error-text {
  margin-left: 50px;
  width: 90%; }

.error-feature .textarea-error {
  color: red;
  height: 300px;
  overflow: auto;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  resize: none;
  font-size: 16px;
  background: transparent;
  overflow-y: scroll; }

.error-feature .collapsible {
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  margin-top: 10px; }

.error-feature .active, .error-feature .collapsible:hover {
  background-color: #555; }

.error-feature .content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  color: red; }

.error-dialog {
  overflow-y: auto;
  max-height: 500px; }
  .error-dialog .error-message {
    word-wrap: break-word; }

.lang-rtl {
  direction: rtl; }
  .lang-rtl .nav-bar {
    left: auto;
    right: 0; }
    .lang-rtl .nav-bar.__collapsed + .cnt {
      right: 72px; }
    .lang-rtl .nav-bar.__collapsed .dropdown.__opened {
      transform: translateX(-72px); }
    .lang-rtl .nav-bar .dropdown {
      transform: translateX(360px); }
      .lang-rtl .nav-bar .dropdown.__opened {
        transform: translateX(-240px); }
  .lang-rtl .bar .__items .list-item.__draggable:before {
    left: auto;
    right: 0; }
  .lang-rtl .bar .__items .list-count {
    left: auto;
    right: 44px; }
  .lang-rtl .dropdown .dropdown-close {
    left: 15px;
    right: auto; }
  .lang-rtl .dropdown.__more .dropdown-close {
    left: 10px; }
  .lang-rtl .dropdown .dropdown-head {
    text-align: left; }
  .lang-rtl .dropdown.__more .dropdown-head {
    text-align: right; }
  .lang-rtl .dropdown.__more .list-fav {
    left: 0;
    right: auto;
    padding: 10px 12px 10px 32px; }
  .lang-rtl .dropdown-content .list-ico {
    margin: 0 0 0 20px; }
  .lang-rtl .cnt {
    left: 0;
    right: 240px; }
    .lang-rtl .cnt .cnt-inner {
      padding-left: 90px;
      padding-right: 0; }
  .lang-rtl .dashboard .dashboard-area {
    margin: 0 0 0 3px; }
  .lang-rtl .dashboard-title {
    left: auto;
    right: 90px; }
  .lang-rtl .__items .list-item {
    padding: 10px 20px 10px 50px; }
    .lang-rtl .__items .list-item::after {
      content: '\F053';
      left: 30px;
      right: auto;
      transition: left 0.25s ease-in-out 0s; }
    .lang-rtl .__items .list-item:hover::after {
      left: 25px;
      right: auto; }
  .lang-rtl .__items .list-ico,
  .lang-rtl .__files .list-ico {
    margin: 0 0 0 5px; }
  .lang-rtl .blade .blade-container .blade-static .form-count {
    left: 0;
    right: auto; }
  .lang-rtl .blade .blade-container .blade-static .form-input.__search {
    margin-left: 80px;
    margin-right: auto; }
    .lang-rtl .blade .blade-container .blade-static .form-input.__search:last-child {
      margin-left: 0;
      margin-right: auto; }
  .lang-rtl .form-input.__langs .flag {
    left: auto;
    right: 11px; }
  .lang-rtl .form-input .btn {
    left: 0;
    right: auto; }
  .lang-rtl .ui-grid-menu-button {
    left: 4px;
    right: auto; }
  .lang-rtl .window-head .__logo {
    padding: 0 20px 0 0; }
    .lang-rtl .window-head .__logo ~ .window-t {
      padding: 0 10px 0 20px; }
  .lang-rtl .uk-htmleditor-fullscreen {
    left: auto;
    right: 240px !important; }
    .nav-bar.__collapsed + .cnt .lang-rtl .uk-htmleditor-fullscreen {
      left: auto;
      right: 72px !important; }

/*
    This file contains all actual styles, which used to override old incorrect styles

    Namespace -  bc
*/
body .blade .blade-wrapper .blade-container .bc.blade-static .form-group, body .blade .blade-wrapper .blade-container .bc.blade-static .themeSettingsBlade .uploader__form-group, .themeSettingsBlade body .blade .blade-wrapper .blade-container .bc.blade-static .uploader__form-group {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  body .blade .blade-wrapper .blade-container .bc.blade-static .form-group .blade-search-panel, body .blade .blade-wrapper .blade-container .bc.blade-static .themeSettingsBlade .uploader__form-group .blade-search-panel, .themeSettingsBlade body .blade .blade-wrapper .blade-container .bc.blade-static .uploader__form-group .blade-search-panel {
    display: flex;
    align-items: center; }
    body .blade .blade-wrapper .blade-container .bc.blade-static .form-group .blade-search-panel .form-input, body .blade .blade-wrapper .blade-container .bc.blade-static .themeSettingsBlade .uploader__form-group .blade-search-panel .form-input, .themeSettingsBlade body .blade .blade-wrapper .blade-container .bc.blade-static .uploader__form-group .blade-search-panel .form-input {
      min-width: 190px; }
      body .blade .blade-wrapper .blade-container .bc.blade-static .form-group .blade-search-panel .form-input input, body .blade .blade-wrapper .blade-container .bc.blade-static .themeSettingsBlade .uploader__form-group .blade-search-panel .form-input input, .themeSettingsBlade body .blade .blade-wrapper .blade-container .bc.blade-static .uploader__form-group .blade-search-panel .form-input input {
        padding-right: 30px; }
    body .blade .blade-wrapper .blade-container .bc.blade-static .form-group .blade-search-panel .__search, body .blade .blade-wrapper .blade-container .bc.blade-static .themeSettingsBlade .uploader__form-group .blade-search-panel .__search, .themeSettingsBlade body .blade .blade-wrapper .blade-container .bc.blade-static .uploader__form-group .blade-search-panel .__search {
      margin-right: 10px; }
    body .blade .blade-wrapper .blade-container .bc.blade-static .form-group .blade-search-panel .seacrh-filter, body .blade .blade-wrapper .blade-container .bc.blade-static .themeSettingsBlade .uploader__form-group .blade-search-panel .seacrh-filter, .themeSettingsBlade body .blade .blade-wrapper .blade-container .bc.blade-static .uploader__form-group .blade-search-panel .seacrh-filter {
      min-width: 190px; }
  body .blade .blade-wrapper .blade-container .bc.blade-static .form-group .form-count, body .blade .blade-wrapper .blade-container .bc.blade-static .themeSettingsBlade .uploader__form-group .form-count, .themeSettingsBlade body .blade .blade-wrapper .blade-container .bc.blade-static .uploader__form-group .form-count {
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none; }

